feat: 按键打开读档

This commit is contained in:
unanmed 2025-06-24 21:07:30 +08:00
parent 2d301cf0d0
commit 5adeff1a11
2 changed files with 4 additions and 4 deletions

View File

@ -485,9 +485,6 @@ gameKey
.realize('book', () => {
core.openBook(true);
})
.realize('load', () => {
core.load(true);
})
.realize('toolbox', () => {
core.openToolbox(true);
})

View File

@ -1,6 +1,6 @@
import { gameKey } from '@motajs/system-action';
import { MAIN_WIDTH, MAIN_HEIGHT } from './shared';
import { saveSave, mainUIController, openStatistics } from './ui';
import { saveSave, mainUIController, openStatistics, saveLoad } from './ui';
export function createAction() {
gameKey
@ -9,5 +9,8 @@ export function createAction() {
})
.realize('statistics', () => {
openStatistics(mainUIController);
})
.realize('load', () => {
saveLoad(mainUIController, [0, 0, MAIN_WIDTH, MAIN_HEIGHT]);
});
}