12345678910111213141516171819202122232425262728293031323334353637383940 |
- using FairyGUI;
- using UI.ClothingFoster;
- namespace GFGGame
- {
- public class SuitFosterFinishView : BaseWindow
- {
- private UI_SuitFosterFinishUI _ui;
- public override void Dispose()
- {
- base.Dispose();
- }
- protected override void OnInit()
- {
- base.OnInit();
- packageName = UI_SuitFosterFinishUI.PACKAGE_NAME;
- _ui = UI_SuitFosterFinishUI.Create();
- this.viewCom = _ui.target;
- this.viewCom.Center();
- // this.modal = true;
- // viewAnimationType = EnumViewAnimationType.ZOOM_CENTER;
- }
- protected override void OnShown()
- {
- base.OnShown();
- }
- protected override void OnHide()
- {
- base.OnHide();
- }
- }
- }
|