ExecuteAttack() 공개 메소드

NPC tries to hit the player.
public ExecuteAttack ( ) : void
리턴 void
예제 #1
0
    public override ActionResult Execute(RAIN.Core.AI ai)
    {
        NPC npc = ai.Body.GetComponent <NPC>();

        npc.ExecuteAttack();

        return(ActionResult.SUCCESS);
    }