迁移赛马悬浮按钮脚本

This commit is contained in:
2026-04-25 18:13:00 +08:00
parent 414dc52a3b
commit d5f9cf7371
3 changed files with 133 additions and 53 deletions
+7
View File
@@ -29,6 +29,7 @@
* - game-hall.js:处理娱乐大厅弹窗和游戏入口卡片。
* - game-bootstrap.js:提供非关键游戏延迟初始化工具。
* - game-panels.js:处理通用游戏面板关闭事件。
* - horse-race-fab.js:处理赛马竞猜悬浮按钮拖动与打开面板。
* - holiday-modal.js:处理节日福利弹窗、广播监听、领取状态和系统消息入口。
* - initial-state.js:恢复首屏历史消息、欢迎消息、入场特效和挂起婚姻事件。
* - bank-modal.js:处理银行弹窗、转账、排行和标签切换。
@@ -106,6 +107,7 @@ export {
export { bindGameHallControls, closeGameHall, openGameHall } from "./chat-room/game-hall.js";
export { bindGameBootstrapControls, deferChatGameBootstrap } from "./chat-room/game-bootstrap.js";
export { bindGamePanelControls } from "./chat-room/game-panels.js";
export { bindHorseRaceFabControls, horseRaceFab } from "./chat-room/horse-race-fab.js";
export {
bindHolidayModalControls,
buildHolidayClaimActionButton,
@@ -250,6 +252,7 @@ import {
import { bindGameHallControls, closeGameHall, openGameHall } from "./chat-room/game-hall.js";
import { bindGameBootstrapControls, deferChatGameBootstrap } from "./chat-room/game-bootstrap.js";
import { bindGamePanelControls } from "./chat-room/game-panels.js";
import { bindHorseRaceFabControls, horseRaceFab } from "./chat-room/horse-race-fab.js";
import {
bindHolidayModalControls,
buildHolidayClaimActionButton,
@@ -401,6 +404,8 @@ if (typeof window !== "undefined") {
bindGameBootstrapControls,
deferChatGameBootstrap,
bindGamePanelControls,
bindHorseRaceFabControls,
horseRaceFab,
bindHolidayModalControls,
buildHolidayClaimActionButton,
buildHolidaySystemMessage,
@@ -559,6 +564,7 @@ if (typeof window !== "undefined") {
window.deferChatGameBootstrap = deferChatGameBootstrap;
window.lotteryPanel = lotteryPanel;
window.openGameHall = openGameHall;
window.horseRaceFab = horseRaceFab;
window.openLotteryPanel = openLotteryPanel;
window.openBankModal = openBankModal;
window.showLotteryMsg = showLotteryMsg;
@@ -638,6 +644,7 @@ if (typeof window !== "undefined") {
bindGameHallControls();
bindGameBootstrapControls();
bindGamePanelControls();
bindHorseRaceFabControls();
bindHolidayModalControls();
bindChatInitialStateControls();
bindBankControls();