using System.Collections; using System.Collections.Generic; using UnityEngine; public class NetWait : MonoBehaviourSingletonTemplate { public GameObject go_child; protected override void Awake() { base.Awake(); Set(false); } public void Set(bool _on) { go_child.SetActive(_on); } }