mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-02-04 08:50:33 +08:00
26 lines
639 B
JavaScript
Executable File
26 lines
639 B
JavaScript
Executable File
import IMouseClickDrag from "./IMouseClickDrag"
|
|
|
|
export default class Select extends IMouseClickDrag {
|
|
|
|
constructor(target, blueprint, options) {
|
|
super(target, blueprint, options)
|
|
this.selectorElement = this.blueprint.selectorElement
|
|
}
|
|
|
|
startDrag() {
|
|
this.selectorElement.startSelecting(this.clickedPosition)
|
|
}
|
|
|
|
dragTo(location, movement) {
|
|
this.selectorElement.doSelecting(location)
|
|
}
|
|
|
|
endDrag() {
|
|
if (this.started) {
|
|
this.selectorElement.finishSelecting()
|
|
} else {
|
|
this.blueprint.unselectAll()
|
|
}
|
|
}
|
|
}
|