mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-18 11:37:33 +08:00
Avoid using arrays when unnecessary
This commit is contained in:
@@ -30,8 +30,9 @@ export default class MouseClickDrag extends MouseMoveDraggable {
|
||||
}
|
||||
}
|
||||
|
||||
clicked() {
|
||||
super.clicked()
|
||||
/** @param {[Number, Number]} location */
|
||||
clicked(location) {
|
||||
super.clicked(location)
|
||||
this.#onClicked?.()
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user