You've already forked taptap2024_GJ_chidouren
14 lines
284 B
C#
14 lines
284 B
C#
namespace Game.Component.EnemyFSM_AI
|
|
{
|
|
public class Follow : EnemyFSMState
|
|
{
|
|
public override void OnEnter ()
|
|
{
|
|
}
|
|
|
|
public override void OnUpdate ()
|
|
{
|
|
this.SetAiTarget (MapContent.Instance.PlayerPosition);
|
|
}
|
|
}
|
|
} |