diff options
| author | Cameron Katri <me@cameronkatri.com> | 2021-06-13 00:51:49 -0400 |
|---|---|---|
| committer | Cameron Katri <me@cameronkatri.com> | 2021-06-13 00:51:49 -0400 |
| commit | 853b013d3c0127fb2c04a7cfeab23c77d52fc51f (patch) | |
| tree | 76848d5ea30ff10c37161eceff90fc1954689ec7 /Assets/Scripts/Controllers/AIController.cs | |
| parent | 13b102b0055d1780255d083f01ae5672ccc7ade7 (diff) | |
| download | gmtk-gamejam-853b013d3c0127fb2c04a7cfeab23c77d52fc51f.tar.gz gmtk-gamejam-853b013d3c0127fb2c04a7cfeab23c77d52fc51f.zip | |
Hold ball away from face
Diffstat (limited to 'Assets/Scripts/Controllers/AIController.cs')
| -rw-r--r-- | Assets/Scripts/Controllers/AIController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Assets/Scripts/Controllers/AIController.cs b/Assets/Scripts/Controllers/AIController.cs index cdfc9a8..a7de4fb 100644 --- a/Assets/Scripts/Controllers/AIController.cs +++ b/Assets/Scripts/Controllers/AIController.cs @@ -95,10 +95,10 @@ namespace Controllers flipper.transform.localScale = new Vector3(1f, 1f, 1f); else flipper.transform.localScale = new Vector3(-1f, 1f, 1f); + + game.enemy.Move(transform.position + new Vector3(0f, BoxCollider.size.y * 3/4, 0f) + (transform.right * (0.5f * (turn && currentTurn ? -1 : 1)))); turn = currentTurn; - game.enemy.Move(transform.position + new Vector3(0f, BoxCollider.size.y * 3/4, 0f)); - leftLeg.top.transform.localRotation = Quaternion.Euler(0, 0, maxLegAngle * Mathf.Sin(animationStep * legSpeed)); leftLeg.bottom.transform.localRotation = Quaternion.Euler(0, 0, maxLegAngle + maxLegAngle * Mathf.Sin(animationStep * legSpeed)); rightLeg.top.transform.localRotation = Quaternion.Euler(0, 0, maxLegAngle * Mathf.Sin(animationStep * -legSpeed)); |
