コード例 #1
0
ファイル: Actor.cs プロジェクト: nhutkhanhng/GameDesign
 private void OnDisable()
 {
     Actors.Unregister(this);
 }
コード例 #2
0
ファイル: Actor.cs プロジェクト: nhutkhanhng/GameDesign
 private void OnDestroy()
 {
     Actors.Unregister(this);
 }
コード例 #3
0
ファイル: Actor.cs プロジェクト: nhutkhanhng/GameDesign
 /// <summary>
 /// Notified by components that the actor is no longer alive.
 /// </summary>
 public void OnDead()
 {
     _isAlive = false;
     Actors.Unregister(this);
 }