예제 #1
0
파일: Actor.cs 프로젝트: mengtest/skilldemo
 public override void Init()
 {
     Debug.LogError("Init");
     mActorPathFinding = new ActorPathFinding(this);
     this.InitFSM();
     this.InitAction();
     this.InitAI();
     this.AddCommands();
     this.InitBehavior();
     this.CreateBoard();
     ChangeEquip();
 }
예제 #2
0
파일: Actor.cs 프로젝트: 977567460/Escapes
    public override void Init()
    {
        InitAttr();
        mActorPathFinding = new ActorPathFinding(this);
        InitAction();
        InitFSM();
        InitBehavior();

        InitAI();

        this.AddCommands();
    }