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

@@ -14,20 +14,20 @@ namespace NBF
public override string UIPackName => "Main";
public override string UIResName => "PlayerPanel";
[AutoFind(Name = "stageCtrl")]
public Controller stageCtrl;
[AutoFind(Name = "PlayBack")]
public GGraph PlayBack;
[AutoFind(Name = "Video")]
public VideoPlayer Video;
[AutoFind(Name = "VideoMask")]
public GGraph VideoMask;
[AutoFind(Name = "bottomBack")]
public GGraph bottomBack;
[AutoFind(Name = "BtnNext")]
public GButton BtnNext;
[AutoFind(Name = "BtnPrev")]
public GButton BtnPrev;
[AutoFind(Name = "VideoTop")]
public VideoPlayer VideoTop;
[AutoFind(Name = "Video")]
public VideoPlayer Video;
[AutoFind(Name = "VideoBottom")]
public VideoPlayer VideoBottom;
[AutoFind(Name = "Progress")]
public GProgressBar Progress;
[AutoFind(Name = "BtnPause")]
public GComponent BtnPause;
public override string[] GetDependPackages(){ return new string[] {}; }
public static void Show(object param = null){ UI.Inst.OpenUI<PlayerPanel>(param); }