Skip to content

Instantly share code, notes, and snippets.

@N-Carter
Created September 16, 2012 23:49
Show Gist options
  • Save N-Carter/3734859 to your computer and use it in GitHub Desktop.
Save N-Carter/3734859 to your computer and use it in GitHub Desktop.
Properties in Javascript
#pragma strict
var whatever = 0;
function Start()
{
Whatever = 1;
Debug.Log(Whatever);
}
function set Whatever(value : int)
{
whatever = value;
}
function get Whatever() : int
{
return whatever;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment