You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#createGroups(parentName,parent){for(const[name,config]ofObject.entries(CONFIG.Canvas.groups)){if(config.parent!==parentName)continue;constgroup=newconfig.groupClass();Object.defineProperty(this,name,{value: group,writable: false});// Reference on the CanvasObject.defineProperty(parent,name,{value: group,writable: false});// Reference on the parentparent.addChild(group);this.#createGroups(name,group);// Recursive}}
Which means everything under Config.Canvas.groups has profound effect on typing now, in a similar fashion to how Documents can be configured.
The text was updated successfully, but these errors were encountered:
There is code like this:
Which means everything under
Config.Canvas.groups
has profound effect on typing now, in a similar fashion to howDocument
s can be configured.The text was updated successfully, but these errors were encountered: