Built out a simple level with some puzzles

This commit is contained in:
2018-04-21 21:46:34 +10:00
parent a8741ccc26
commit 011a1ce0c3
37 changed files with 12006 additions and 93 deletions
+4 -1
View File
@@ -29,11 +29,14 @@ public class Player : MonoBehaviour {
animator = GetComponent<Animator> ();
rigidBody = GetComponent<Rigidbody2D> ();
speed = 1f;
speed = 0.79f;
}
void Update() {
HandleInput ();
}
void FixedUpdate() {
Move ();
Attack ();
SendAnimationInfo ();