Variables in Script
Basics
using Force;
public class Player : MonoScript {
public string name;
public int age;
// Runs when scene starts to play.
public void OnStart() {
Debug.Log("Hello! Im " + name + ", and my age is " + age);
}
}

Attributes
Properties
Last updated