예제 #1
0
파일: DlgView.cs 프로젝트: luffyGame/source
 public void Release()
 {
     behavior = null;
     injector = null;
     if (null != model)
     {
         model.Release();
         model = null;
     }
 }
예제 #2
0
파일: DlgView.cs 프로젝트: luffyGame/source
 private void OnLoaded()
 {
     behavior = model.GetComponent <DlgBehavior>();
     injector = model.GetComponent <LuaInjector>();
 }