Foerming/Assets/Scripts/ShopSwitcher.cs
dhain acd602c85a fixed first Shop Slot
started on shop switcher button (for animal shop)
2022-06-23 15:01:13 +02:00

13 lines
379 B
C#

using UnityEngine;
public class ShopSwitcher : MonoBehaviour {
public Sprite animalShopSprite;
public Sprite itemShopSprite;
public void SwitchShops() {
// switch text in Shop Title
// switch image on switch Button
// turn off one content and turn on the other
// remove undo purchase button when switching to an animal shop
}
}