the sprite fairy visited in your sleep

This commit is contained in:
Logic Monkey
2018-04-21 19:28:30 -04:00
parent 011a1ce0c3
commit 39c0636b4a
11 changed files with 1360 additions and 28 deletions
+3 -1
View File
@@ -39,7 +39,7 @@ public class Player : MonoBehaviour {
void FixedUpdate() {
Move ();
Attack ();
SendAnimationInfo ();
//SendAnimationInfo ();
}
void HandleInput() {
@@ -101,11 +101,13 @@ public class Player : MonoBehaviour {
}
}
/*
void SendAnimationInfo() {
animator.SetFloat ("xSpeed", lastDirection.x);
animator.SetFloat ("ySpeed", lastDirection.y);
animator.SetBool ("isShooting", isShooting);
}
*/
//utilities
Vector2 GetShootingPoint() {