Skip to main content

Manual Destruction

If you want to manually destroy your effects, you can turn off automatic destruction on lifetime end by setting DestroyOnLifecycleEnd to false. However, if you don't call Destroy manually refx will warn you about a memory leak:

warning

It's not recommended to turn off DestroyOnLifecycleEnd, because you can still manually call Destroy() on your proxy without setting the flag.

myEffect.ts
import { BaseEffect, VisualEffectDecorator, Config } from "@rbxts/refx";

@VisualEffectDecorator
export class myEffect extends BaseEffect {
protected readonly DestroyOnEnd = false;
protected readonly DestroyOnLifecycleEnd = false;
}
Warning

danger

You can silence the memory leak warning by setting DisableLeakWarning to true. This is not recommended.