forked from zxl/LaboratoryProtection
19 lines
338 B
C#
19 lines
338 B
C#
|
using PMaker.DependencyInjection;
|
|||
|
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
public class TestMark : SingletonMonobehaviour
|
|||
|
{
|
|||
|
[SerializeField]
|
|||
|
private GameObject[] _hideObjects;
|
|||
|
|
|||
|
protected override void Awake()
|
|||
|
{
|
|||
|
base.Awake();
|
|||
|
foreach (var item in _hideObjects)
|
|||
|
{
|
|||
|
item.SetActive(false);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|