├── .gitattributes ├── AIData.cs ├── Agent Scripts ├── Agent.cs ├── AgentAnimations.cs └── AgentMover.cs ├── ContextSolver.cs ├── Detector.cs ├── EnemyAI.cs ├── LICENSE ├── ObstacleAvoidanceBehaviour.cs ├── ObstacleDetector.cs ├── README.md ├── SeekBehaviour.cs ├── SteeringBehaviour.cs └── TargetDetector.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/.gitattributes -------------------------------------------------------------------------------- /AIData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/AIData.cs -------------------------------------------------------------------------------- /Agent Scripts/Agent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/Agent Scripts/Agent.cs -------------------------------------------------------------------------------- /Agent Scripts/AgentAnimations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/Agent Scripts/AgentAnimations.cs -------------------------------------------------------------------------------- /Agent Scripts/AgentMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/Agent Scripts/AgentMover.cs -------------------------------------------------------------------------------- /ContextSolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/ContextSolver.cs -------------------------------------------------------------------------------- /Detector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/Detector.cs -------------------------------------------------------------------------------- /EnemyAI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/EnemyAI.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /ObstacleAvoidanceBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/ObstacleAvoidanceBehaviour.cs -------------------------------------------------------------------------------- /ObstacleDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/ObstacleDetector.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/README.md -------------------------------------------------------------------------------- /SeekBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/SeekBehaviour.cs -------------------------------------------------------------------------------- /SteeringBehaviour.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/SteeringBehaviour.cs -------------------------------------------------------------------------------- /TargetDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SunnyValleyStudio/Unity-2D-Context-steering-AI/HEAD/TargetDetector.cs --------------------------------------------------------------------------------