CapersProject/Assets/Icons - Picto Total Pack/Scripts/PanelPictoTotalPack.cs
2024-06-04 03:26:03 +09:00

22 lines
526 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace LayerLab.PictoTotalPack
{
public class PanelPictoTotalPack : 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);
}
}
}