Skip to main content

Configuration

You can configure your custom methods by using built-in function called Configure. Let's configure our custom method to use an unreliable remote event under the hood, so we can safely fire it a lot of times.

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

@VisualEffectDecorator
export class myEffect extends BaseEffect {
protected readonly DestroyOnEnd = false; // so our effect don't get destroyed instantly.
protected readonly MaxLifetime = 10;

@Config({ Unreliable: true }) // configuring to use an unreliable remote
public DoSomething(arg: number) { // our custom method
print(arg);
}
}