コード例 #1
0
ファイル: Character.cs プロジェクト: Lerocia-Online/common
 public void Death()
 {
     DeathTime = Time.time;
     IsDead    = true;
     Gold      = 0;
     WeaponId  = -1;
     ApparelId = -1;
     Inventory.Clear();
     Avatar.transform.position = Origin;
     Avatar.SetActive(false);
 }