mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
9 lines
219 B
JavaScript
Executable File
9 lines
219 B
JavaScript
Executable File
import MouseClickDrag from "./MouseClickDrag"
|
|
|
|
export default class DragScroll extends MouseClickDrag {
|
|
|
|
dragTo(location, movement) {
|
|
this.blueprint.scrollDelta([-movement[0], -movement[1]])
|
|
}
|
|
}
|