Select all nodes functionality added

This commit is contained in:
barsdeveloper
2022-01-13 20:07:58 +01:00
parent 41b741e8b8
commit ce5b184b3d
10 changed files with 389 additions and 59 deletions

View File

@@ -8,7 +8,10 @@ export default class Copy extends Context {
super(target, blueprint, options)
this.serializer = new ObjectSerializer()
let self = this
this.copyHandler = _ => self.copied()
this.copyHandler = _ => {
self.copied()
return true
}
}
blueprintFocused() {

View File

@@ -47,5 +47,6 @@ export default class Paste extends Context {
node.setSelected(true)
node.snapToGrid()
})
return true
}
}