新增画布类,三联,九宫格控件

This commit is contained in:
2025-10-25 13:42:36 +08:00
parent 5d78244ef0
commit 77fe539809
16 changed files with 953 additions and 9 deletions

View File

@@ -17,4 +17,18 @@ class Window_hud extends GameWindow {
Sp.SetPos((1280 - 403) / 2, 720 - 75);
AddChild(Sp);
}
/**
* 鼠标事件重载函数
* @function override
* @param {any} Type
* @param {any} Data
* @param {boolean} EventInteractiveFlag
* @returns {void}
*/
function OnMouseEvent(Type, Data, EventInteractiveFlag) {
base.OnMouseEvent(Type, Data, EventInteractiveFlag)
if(Type == UI_EVENT.MOUSEBUTTONDOWN) {
}
}
}