mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
17 lines
426 B
JavaScript
Executable File
17 lines
426 B
JavaScript
Executable File
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)
|
|
}
|
|
}
|