コード例 #1
0
 public void AlertAllEnemies(Vector3 _lastKnownPlayerLocation)
 {
     PlayerSpotted?.Invoke(_lastKnownPlayerLocation);
 }
コード例 #2
0
ファイル: PlayerSpotted.cs プロジェクト: kcreanor87/Shetland
 void Start()
 {
     _thisScript   = gameObject.GetComponent <PlayerSpotted>();
     _parentScript = transform.GetComponentInParent <EnemyWM>();
     _saveGame     = GameObject.Find("Loader").GetComponent <SaveGame>();
 }