MyExampleScript.cs 212 B

123456789
  1. using UnityEngine;
  2. using System.Collections;
  3. /* An example script */
  4. public class MyExampleScript : MonoBehaviour
  5. {
  6. public int[] intArray = new int[]{1,2,3,4,5};
  7. public string myString = "myString";
  8. }