1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections;
- using System.Collections.Generic;
- using LitJson;
- using SC.XR.Unity;
- using UnityEngine;
- using XRTool.Util;
- public class GameStart : UnitySingleton<GameStart>
- {
- public static Action actionok;
-
- protected override void Awake()
- {
- base.Awake();
-
- }
-
- void Start()
- {
- ScenesManager.Instance.showWindow(ScenesManager.SceneType.GameStartLogo);
- }
- public void ShowDating()
- {
- }
- protected override void OnDestroy()
- {
- base.OnDestroy();
- }
- }
|