Files
ZHGD_Web/Assets/Scripts/UI/WorkShipAnimPage.cs
2025-07-13 23:16:20 +08:00

17 lines
340 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class WorkShipAnimPage : MonoBehaviour
{
public List<GameObject> m_ActiveObjs = new List<GameObject>();
private void OnEnable()
{
foreach (GameObject obj in m_ActiveObjs)
{
obj.SetActive(true);
}
}
}