This commit is contained in:
2026-02-12 22:15:15 +08:00
parent 47a5cff08b
commit 502c6efedc
58 changed files with 2114 additions and 708 deletions

View File

@@ -12,9 +12,12 @@ namespace NBF
public const string URL = "ui://hxr7rc7pt33p1hg";
public Controller pauseCtrl;
public Controller stageCtrl;
public GGraph PlayBack;
public GLoader VideoVer;
public GComponent BtnPause;
public PlayerBottomInfo BottomInfo;
public PlayRightGroup LeftInfo;
public Transition pause;
public Transition play;
public Transition StartedAnim;
@@ -24,9 +27,12 @@ namespace NBF
base.ConstructFromXML(xml);
pauseCtrl = GetController("pauseCtrl");
stageCtrl = GetController("stageCtrl");
PlayBack = (GGraph)GetChild("PlayBack");
VideoVer = (GLoader)GetChild("VideoVer");
BtnPause = (GComponent)GetChild("BtnPause");
BottomInfo = (PlayerBottomInfo)GetChild("BottomInfo");
LeftInfo = (PlayRightGroup)GetChild("LeftInfo");
pause = GetTransition("pause");
play = GetTransition("play");
StartedAnim = GetTransition("StartedAnim");