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
The current implementation is hard-locked to just check for Group, via objType()==="Group". This means it doesn't play well with extreme group derivatives, such as the forthcoming buffered rendering plugin. It would be better to check for children that implement getAllChildren() themselves.
The text was updated successfully, but these errors were encountered:
Addendum thought: There's a possibility of getting infinite loops if the group derivative doesn't prevent such behavior. For example, buffers can form simple feedback loops, although they cannot self-feedback in a single step. We should at least point out that getAllChildren() implementations should self-avert in some fashion.
The current implementation is hard-locked to just check for
Group
, viaobjType()==="Group"
. This means it doesn't play well with extreme group derivatives, such as the forthcoming buffered rendering plugin. It would be better to check for children that implementgetAllChildren()
themselves.The text was updated successfully, but these errors were encountered: