Zoom in fixed

This commit is contained in:
barsdeveloper
2022-03-25 21:43:34 +01:00
parent 8a4e60c9ae
commit f6cd5bba05
6 changed files with 63 additions and 38 deletions

View File

@@ -21,11 +21,11 @@ export default class KeyboardEnableZoom extends IKeyboardShortcut {
}
fire() {
this.zoomInputObject = this.blueprint.getInputObject(Zoom)
zoomInputObject.enableZoonIn = true
this.#zoomInputObject = this.blueprint.getInputObject(Zoom)
this.#zoomInputObject.enableZoonIn = true
}
unfire() {
this.#zoomInputObject.enableZoom = false
this.#zoomInputObject.enableZoonIn = false
}
}