using System.Collections; using System.Collections.Generic; using TMPro; using UnityEngine; /// /// 起重机视图界面 /// public class UI_CraneViewPanel : BasePanel { protected override void Awake() { base.Awake(); } public void OnInit() { Debug.Log("我被初始化了OnInit"); } public override void ShowMe() { base.ShowMe(); } public override void HideMe() { base.HideMe(); } }