コード例 #1
0
ファイル: GardenManager.cs プロジェクト: aimozs/perma
	public void ResetParcel(Parcel parcel){
		PlantPrefab thisPlant = parcel.GetComponentInChildren<PlantPrefab>();
		if(thisPlant != null){
			Destroy(thisPlant.gameObject);
		}
	}