mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 16:44:49 +08:00
9 lines
259 B
JavaScript
9 lines
259 B
JavaScript
import MouseWheel from "./MouseWheel";
|
|
|
|
export default class Zoom extends MouseWheel {
|
|
wheel(variation, location) {
|
|
let zoomLevel = this.blueprint.getZoom()
|
|
zoomLevel -= variation
|
|
this.blueprint.setZoom(zoomLevel, location)
|
|
}
|
|
} |