Exemple #1
0
 void Start()
 {
     FrameMgr.GetInstance();
     TimerMgr.GetInstance();
     PathMgr.GetInstance();
     ConfigMgr.GetInstance();
     AssetMgr.GetInstance();
     UIMgr.GetInstance();
     SoundMgr.GetInstance();
     LoadSceneMgr.LoadSence("test");
 }
Exemple #2
0
 public void Init()
 {
     FrameMgr.Register(this, this.UpdateCallback);
 }
Exemple #3
0
 void LateUpdate()
 {
     FrameMgr.GetInstance().DoLateUpdate();
 }
Exemple #4
0
 void Update()
 {
     FrameMgr.GetInstance().DoUpdate();
 }
Exemple #5
0
 void FixedUpdate()
 {
     FrameMgr.GetInstance().DoFixedUpdate();
 }