mirror of
https://gitlab.com/MaddoScientisto/cirnogodot.git
synced 2026-06-12 22:45:54 +00:00
Enemy Navigation Movement
This commit is contained in:
parent
388747ccb3
commit
9d302e48e6
5 changed files with 247 additions and 15 deletions
12
Scripts/Components/Actors/ActorAi.cs
Normal file
12
Scripts/Components/Actors/ActorAi.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using Godot;
|
||||
|
||||
public partial class ActorAi : Node2D
|
||||
{
|
||||
|
||||
public EnemyState State { get; set; } = EnemyState.Idle;
|
||||
|
||||
[Export] // Temp until the special actor tha sets it
|
||||
public AiState Ai { get; set; } = AiState.Disabled;
|
||||
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue