SceneEventGate.cs 392 B

1234567891011121314151617
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using UnityEngine.UI;
  5. using UnityGameFramework.Runtime;
  6. /// <summary>
  7. /// 场景组件 大门
  8. /// </summary>
  9. public class SceneEventGate : MonoBehaviour
  10. {
  11. public bool isEntry = false;
  12. public void Start()
  13. {
  14. AssemblyHelper.Instance.BindScript("SceneEventGateLogic", this.gameObject);
  15. }
  16. }