コード例 #1
0
ファイル: UISimpleLoading.cs プロジェクト: swordlegend/SGF
 protected override void OnOpen(object arg = null)
 {
     base.OnOpen(arg);
     m_arg = arg as UILoadingArg;
     if (m_arg == null)
     {
         m_arg = new UILoadingArg();
     }
     UpdateText();
 }
コード例 #2
0
ファイル: UISimpleLoading.cs プロジェクト: swordlegend/SGF
 protected override void OnClose(object arg = null)
 {
     m_arg = null;
     base.OnClose(arg);
 }