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
I noticed this when working on another project but when adding, removing, then readding (or basically having to reconstruct a effect) single effect it's not guaranteed to show up in the effect layering in the same order as composed.
Here's a simple example showing the issue based on the CSB from the README. The effects are composed like so:
but when logging the effects in the effect pass they are constructed in the following order:
['DepthOfFieldEffect','ToneMappingEffect']
I suspect it may have something to do with these lines and the use of the internal useInstanceHandle to get access to the child effect which may not return the children in a consistent order.
The text was updated successfully, but these errors were encountered:
I noticed this when working on another project but when adding, removing, then readding (or basically having to reconstruct a effect) single effect it's not guaranteed to show up in the effect layering in the same order as composed.
Here's a simple example showing the issue based on the CSB from the README. The effects are composed like so:
but when logging the effects in the effect pass they are constructed in the following order:
I suspect it may have something to do with these lines and the use of the internal
useInstanceHandle
to get access to the child effect which may not return the children in a consistent order.The text was updated successfully, but these errors were encountered: