using Fort23.Core; using Fort23.UTool; using UnityEngine.UI; using UnityEngine; using System.Collections.Generic; namespace Fort23.Mono { public partial class BtnFaBaoWidget { #region 自定义数据 private RectTransform _FaBaoRoot; public RectTransform FaBaoRoot { get{ if (_FaBaoRoot == null) { _FaBaoRoot = GetUIUnit("FaBaoRoot"); } return _FaBaoRoot; } } private GameObject _Text_Tips; public GameObject Text_Tips { get{ if (_Text_Tips == null) { _Text_Tips = GetUIUnit("Text_Tips"); } return _Text_Tips; } } #endregion 自定义数据结束 public override async CTask SetUIGameObject(GameObject gObjectPoolInterface) { await base.SetUIGameObject(gObjectPoolInterface); Init(); } } }