123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108 |
- using Fort23.Core;
- using Fort23.UTool;
- using UnityEngine.UI;
- using UnityEngine;
- using System.Collections.Generic;
- using Core.UI.UTool.UITween;
- namespace Fort23.Mono
- {
- public partial class ZhuanPanPanel
- {
- #region 自定义数据
- private GameObject _gf_widget;
- public GameObject gf_widget
- {
- get{
- if (_gf_widget == null)
- {
- _gf_widget = GetUIUnit<GameObject>("gf_widget");
- }
- return _gf_widget;
- }
- }
- private RectTransform _Gf_root;
- public RectTransform Gf_root
- {
- get{
- if (_Gf_root == null)
- {
- _Gf_root = GetUIUnit<RectTransform>("Gf_root");
- }
- return _Gf_root;
- }
- }
- private UITweenController _jin;
- public UITweenController jin
- {
- get{
- if (_jin == null)
- {
- _jin = GetUIUnit<UITweenController>("jin");
- }
- return _jin;
- }
- }
- private UITweenController _mu;
- public UITweenController mu
- {
- get{
- if (_mu == null)
- {
- _mu = GetUIUnit<UITweenController>("mu");
- }
- return _mu;
- }
- }
- private UITweenController _shui;
- public UITweenController shui
- {
- get{
- if (_shui == null)
- {
- _shui = GetUIUnit<UITweenController>("shui");
- }
- return _shui;
- }
- }
- private UITweenController _huo;
- public UITweenController huo
- {
- get{
- if (_huo == null)
- {
- _huo = GetUIUnit<UITweenController>("huo");
- }
- return _huo;
- }
- }
- private UITweenController _tu;
- public UITweenController tu
- {
- get{
- if (_tu == null)
- {
- _tu = GetUIUnit<UITweenController>("tu");
- }
- return _tu;
- }
- }
- private Image _lanLiang;
- public Image lanLiang
- {
- get{
- if (_lanLiang == null)
- {
- _lanLiang = GetUIUnit<Image>("lanLiang");
- }
- return _lanLiang;
- }
- }
- #endregion 自定义数据结束
- public override async CTask SetUIGameObject(GameObject gObjectPoolInterface)
- {
- await base.SetUIGameObject(gObjectPoolInterface);
- Init();
- }
- }
- }
|