Added basic enemy

Does not attack the player currently
This commit is contained in:
Pasha Bibko
2025-11-18 15:52:13 +00:00
parent 321dc1f149
commit 0dce94924c
10 changed files with 234 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
using UnityEngine;
public class EnemyController : OrbitalPositionBehaviour
{
public override void OnStart()
{
m_OrbitalPosition.m_DeletedAtCentre = true;
}
}