InLoading.cs 340 B

1234567891011121314151617
  1. using UnityEngine;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. /// <summary>
  5. /// 用于关卡读取
  6. /// </summary>
  7. public class InLoading : MonoBehaviour
  8. {
  9. /// <summary>
  10. /// 初始化
  11. /// </summary>
  12. void Start()
  13. {
  14. AssemblyHelper.Instance.BindScript("Entrance_LevelLoading", gameObject);
  15. }
  16. }