Skip to main content

Create effect

Let's create our first effect by using a function called CreateEffect, exported by the refx module.

note

Just like WCS TypeScript implementation of myEffect is done via classes.

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

@VisualEffectDecorator
export class myEffect extends BaseEffect {
public override OnStart() {
print("myEffect just started! 😅");
}
}

As you can see, we're overriding one of the built-in special methods provided by refx - OnStart.
This method fires whenever your effect starts. You can view list of all special methods in the api.

Constructor Arguments​

You can also accept arguments in OnStart() and pass them to .new() or .locally(), when you start your effect later on:

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

@VisualEffectDecorator
export class myEffect extends BaseEffect<[number]> {
public override OnStart(someArg: number) {
print("myEffect just started! 😅", someArg);
}
}
somewhere.ts
import { myEffect } from "./myEffect";
const effect = new myEffect(10);