コード例 #1
0
 public Player(GameObject player) : base(player)
 {
     this.m_playerFsm           = new PlayerFsm(this);
     this.m_characterController = this.TargetGameObject.GetComponent <CharacterController>();
 }
コード例 #2
0
 public NPC(GameObject gameObject) : base(gameObject)
 {
     m_npcFsm = new NpcFsm(this);
 }