mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
17 lines
366 B
JavaScript
Executable File
17 lines
366 B
JavaScript
Executable File
import IMouseClickDrag from "./IMouseClickDrag.js"
|
|
|
|
export default class MouseScrollGraph extends IMouseClickDrag {
|
|
|
|
startDrag() {
|
|
this.blueprint.scrolling = true
|
|
}
|
|
|
|
dragTo(location, movement) {
|
|
this.blueprint.scrollDelta(-movement[0], -movement[1])
|
|
}
|
|
|
|
endDrag() {
|
|
this.blueprint.scrolling = false
|
|
}
|
|
}
|