2022-11-22 02:19:56 +00:00
|
|
|
// Listen for shortcuts
|
|
|
|
keyboard.onShortcut({ctrl: true, key: "KeyZ"}, () => {
|
|
|
|
commands.undo();
|
|
|
|
});
|
|
|
|
|
|
|
|
keyboard.onShortcut({ctrl: true, key: "KeyY"}, () => {
|
|
|
|
commands.redo();
|
|
|
|
});
|
2022-11-22 22:24:55 +00:00
|
|
|
|
|
|
|
// Tool shortcuts
|
|
|
|
keyboard.onShortcut({key: "KeyD"}, () => {
|
|
|
|
tools.dream.enable();
|
|
|
|
});
|
|
|
|
keyboard.onShortcut({key: "KeyM"}, () => {
|
|
|
|
tools.maskbrush.enable();
|
|
|
|
});
|