Skip to content

Instantly share code, notes, and snippets.

@nasser
Created May 14, 2014 16:23
Show Gist options
  • Save nasser/65275d4db6c34a0d6ff4 to your computer and use it in GitHub Desktop.
Save nasser/65275d4db6c34a0d6ff4 to your computer and use it in GitHub Desktop.
function Update () {
if(Input.GetKeyDown("space")) {
GetComponent(WeirdGravity).gravity.y = 30;
}
}
var gravity : Vector2;
function Update () {
rigidbody2D.AddForce(gravity);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment