I get following errors:
E4022: Modifiers does not match base class declaration 'Fuse.Effects.Effect.OnRooted()'
Please tell me how current behavior for that?
I get following errors:
E4022: Modifiers does not match base class declaration 'Fuse.Effects.Effect.OnRooted()'
Please tell me how current behavior for that?
Effect is now a Node (changelog). So the access modifiers for OnRooted() and OnUnrooted() are now protected instead of public. If you just change that your code should be working again
Thanks, change to protected works for me