After relaese 0.27 BaseEffect no longer contain OnRooted/OnUnrooted methods?

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