Replies: 2 comments 3 replies
-
I came across a similar problem; sometimes you have to keep moving objects between containers and doing so you also have to redo all the relations... for giving you an example. Using globs feels like hacking and it seems to be not efficient, I mean, compiling a file with globals takes more time. Another approach is using "vars" like in this example:
You can use your vars inside any container, it feels faster and looks better than using globals, but I think it can be improved by having a "resources" section were you can define your objects for later use. I describe my idea about "resources" here #1891 I really wish it can be implemented. Hope it helps you. |
Beta Was this translation helpful? Give feedback.
-
Oh interesting. |
Beta Was this translation helpful? Give feedback.
-
I have a shape class called "question". I want to add a glob to make every shape with a name starting with "Question" use that class.
Some shapes are in containers, other are not. At the moment to match everything I have to do this:
Is there a way to do this in one line?
Beta Was this translation helpful? Give feedback.
All reactions