-
Is it ok to create nested effect? |
Beta Was this translation helpful? Give feedback.
Answered by
ryansolid
Mar 24, 2021
Replies: 1 comment 2 replies
-
Yes. And only the nearest parent effect tracks. So if the internal one re-evals it does so as you'd expect. If the external one does it disposes of the internal one, and through re-running recreates it. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
zhaoyao91
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes. And only the nearest parent effect tracks. So if the internal one re-evals it does so as you'd expect. If the external one does it disposes of the internal one, and through re-running recreates it.