コード例 #1
0
 public virtual void Destroy()
 {
     if (DestroyHandler != null)
     {
         DestroyHandler(this);
     }
     if (gameObject != null)
     {
         U3DMod.Destroy(gameObject);
     }
 }
コード例 #2
0
ファイル: U3DComponent.cs プロジェクト: ChestnutGames/boxing
 public virtual void DestroyThisComponent()
 {
     U3DMod.Destroy(this);
 }