From a524f24128a4653bbc06eede2379107f9255faf9 Mon Sep 17 00:00:00 2001 From: Carson Katri Date: Sat, 12 Jun 2021 18:07:32 -0400 Subject: Tweak AI --- Assets/Scripts/Controllers/GameController.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Assets/Scripts/Controllers/GameController.cs') diff --git a/Assets/Scripts/Controllers/GameController.cs b/Assets/Scripts/Controllers/GameController.cs index 1573405..8dd6fc4 100644 --- a/Assets/Scripts/Controllers/GameController.cs +++ b/Assets/Scripts/Controllers/GameController.cs @@ -85,7 +85,7 @@ namespace Controllers if (controller.state == shoot || controller.state == dribble) return false; // Make sure its within their grab area. - if (Vector2.Distance(controller.ball.transform.position, handPosition) > 0.75f) return false; + if (Vector2.Distance(controller.ball.transform.position, handPosition) >= 1f) return false; controller.state = dribble; Move(handPosition); -- cgit v1.2.3-56-ge451