コード例 #1
0
ファイル: Unit.cs プロジェクト: U3DC/RTS
 protected void Start()
 {
     mInteraction.Deselect();
     MapManager.Instance.AddUnit(transform);
 }
コード例 #2
0
ファイル: UnitInput.cs プロジェクト: U3DC/RTS
 void HandleClickOtherPlayers(GameObject player)
 {
     mInteraction.Deselect();
     player.GetComponent <UnitInteraction>().Select();
 }