mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-13 00:24:48 +08:00
19 lines
442 B
JavaScript
Executable File
19 lines
442 B
JavaScript
Executable File
// @ts-check
|
|
|
|
import IMouseClickDrag from "./IMouseClickDrag"
|
|
|
|
export default class MouseScrollGraph extends IMouseClickDrag {
|
|
|
|
startDrag() {
|
|
this.blueprint.template.applyStartDragScrolling(this.blueprint)
|
|
}
|
|
|
|
dragTo(location, movement) {
|
|
this.blueprint.scrollDelta([-movement[0], -movement[1]])
|
|
}
|
|
|
|
endDrag() {
|
|
this.blueprint.template.applyEndDragScrolling(this.blueprint)
|
|
}
|
|
}
|