コード例 #1
0
ファイル: GameManager.cs プロジェクト: ahoopes16/ggj2021
 public void PutItemInBox(GameObject item, Box boxComponent)
 {
     Debug.Log("GameManager is putting item " + item + " in box " + boxComponent);
     boxComponent.AddObject(item);
     item.SetActive(false);
 }