2026-04-21 가격창, 사운드

This commit is contained in:
2026-04-21 18:19:24 +09:00
parent 1feebc9a85
commit abaf994ebf
8293 changed files with 514567 additions and 17 deletions

View File

@@ -0,0 +1,19 @@
using UnityEngine;
namespace LayerLab.CasualGame
{
public class PanelView : MonoBehaviour
{
[SerializeField] private GameObject[] otherPanels;
public void OnEnable()
{
for (int i = 0; i < otherPanels.Length; i++) otherPanels[i].SetActive(true);
}
public void OnDisable()
{
for (int i = 0; i < otherPanels.Length; i++) otherPanels[i].SetActive(false);
}
}
}