Platformer2DUserControl.Update C# (CSharp) 메소드

Update() 개인적인 메소드

private Update ( ) : void
리턴 void
    void Update()
    {
        // Read the jump input in Update so button presses aren't missed.
        if (CrossPlatformInput.GetButtonDown("Jump"))
            jump = true;
    }
Platformer2DUserControl