From c562bc41cedb6987ce0dbcc7c7872400c846616b Mon Sep 17 00:00:00 2001 From: Benjamin Kraft Date: Fri, 7 Apr 2023 20:23:43 +0200 Subject: [PATCH] AI improvement todos --- Assets/Scripts/Game/Player.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Assets/Scripts/Game/Player.cs b/Assets/Scripts/Game/Player.cs index b8eaa2d..3cca02e 100644 --- a/Assets/Scripts/Game/Player.cs +++ b/Assets/Scripts/Game/Player.cs @@ -65,6 +65,15 @@ namespace Game { } public class AIPlayer : Player { + + /* + * Possible optimizations: + * + * - Move to center when idle + * - Ignore impossible balls + * - Try to hit ball with edge + */ + public enum EDifficulty { VeryEasy, Easy, Medium, Hard, VeryHard }