📄️ Setup
All you need to do for refx to work is to register the folder where you will be storing effects on client using
📄️ Create effect
Let's create our first effect by using a function called CreateEffect, exported by the refx module.
📄️ Start Effect
You can start your effect on server by requiring the module and calling .new() on your effect class.
📄️ Lifetime
Sometimes, you want your effect to live longer than execution time of OnStart().
📄️ Invoking Methods
Now, we can easily define custom methods and call them from our server proxy.
📄️ Configuration
You can configure your custom methods by using built-in function called Configure.
📄️ Manual Destruction
If you want to manually destroy your effects, you can turn off automatic destruction on lifetime end by setting DestroyOnLifecycleEnd to false.