bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/custom-tools/noop-tool/component.ts
2024-05-02 00:28:22 +00:00

15 lines
324 B
TypeScript

import { StateNode } from 'tldraw'
export class NoopTool extends StateNode {
static override id = 'noop'
static override initial = 'idle'
override onEnter = () => {
this.editor.setCursor({ type: 'default', rotation: 0 });
}
override onExit = () => {
this.editor.setCursor({ type: 'default', rotation: 0 });
}
}