mirror of
https://github.com/barsdeveloper/ueblueprint.git
synced 2026-05-12 22:47:30 +08:00
Various fixes, smaller refactoring
This commit is contained in:
@@ -90,7 +90,11 @@ export default class LinkTemplate extends IFromToPositionedTemplate {
|
||||
this.blueprint,
|
||||
undefined,
|
||||
/** @param {[Number, Number]} location */
|
||||
location => this.#createKnot(location)
|
||||
location => {
|
||||
location[0] += Configuration.knotOffset[0]
|
||||
location[1] += Configuration.knotOffset[1]
|
||||
this.#createKnot(location)
|
||||
}
|
||||
)
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user