26 lines
624 B
C#
26 lines
624 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using TMPro;
|
|
using Framework;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityEngine.UIElements;
|
|
using Button = UnityEngine.UI.Button;
|
|
using Image = UnityEngine.UI.Image;
|
|
using Toggle = UnityEngine.UI.Toggle;
|
|
using ScrollView = PhxhSDK.PhxhScrollView;
|
|
|
|
public class UIFightTeamBinder
|
|
{
|
|
|
|
public static void GetComponents(UIFightTeamController window)
|
|
{
|
|
window.Image_SkillsBg = window.GetComponent<Image>("UI_LiuHaiLeft/UI_Skills/Image_SkillsBg");
|
|
|
|
}
|
|
|
|
/****** 定义变量语句 ******
|
|
public Image Image_SkillsBg;
|
|
|
|
****** End ******/
|
|
} |