private static void UpdateItemInformation(CollectibleItem.CollectibleTypes itemType) { var text = $"{itemGetCount[itemType]}/{totalItemCount[itemType]}"; Text[itemType].text = text; Shadow[itemType].text = text; }
public void GetItem(CollectibleItem.CollectibleTypes itemType) { itemGetCount[itemType]++; UpdateItemInformation(itemType); CheckVictoryCondition(); }