コード例 #1
0
ファイル: Tank.cs プロジェクト: Shophorn/encounter-suburb
 public void Disable()
 {
     tank.gameObject.SetActive(false);
     path             = null;
     pathUpdateTime   = 0f;
     hasRequestedPath = false;
     targetBreakable  = null;
     shootEnumerator  = null;
 }
コード例 #2
0
ファイル: Tank.cs プロジェクト: Shophorn/encounter-suburb
 public TankInstance(Tank tank)
 {
     this.tank        = tank;
     path             = null;
     pathUpdateTime   = 0f;
     hasRequestedPath = false;
     targetBreakable  = null;
     shootEnumerator  = null;
 }
コード例 #3
0
 public void MoveAlong(PathFinding.Path path, PathFinding.ReplanCallback onReplan)
 {
     throw new System.NotImplementedException();
 }
コード例 #4
0
 public void MoveAlong(PathFinding.Path path)
 {
     throw new System.NotImplementedException();
 }