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