Skip to content
dexied edited this page Aug 11, 2026 · 8 revisions

Welcome to the Curve Player wiki!

Installing the plugin

  1. Download the Curve Player plugin from FAB and then enable it in your project.
image
image
  1. If you downloaded the plugin from another source, place it in your project folder. The plugin path will look like this: YourProject/Plugins/CurvePlayer


Using the plugin

The plugin contains several functions:


  • Play Float Curve - Used to play a simple float curve. Double-clicking this node will open the full curve editor.
image image
  • Play Vector Curve - Used to play the Vector curve. Double-clicking this node will open the full curve editor.
image image
  • Play Color Curve - Used to play the Color Curve. Double-clicking this node will open the full curve editor with color selection.
image image

About inputs and outputs:

image

Inputs:


  • Curve Play Speed - The speed at which the curve will play. This value should always be greater than or equal to 0. Typically, PlaySpeed ​​can be set to 0 if you want to pause playback.

  • Curve Direction Mode - The direction of movement along the curve. If Forward, it will play from MinCurveTime to MaxCurveTime. If Backward, it will play from MaxCurveTime to MinCurveTime. MinCurveTime is always equal to the time of the very first key on the curve, and MaxCurveTime is equal to the time of the very last key.

As an example, see the image below. MinCurveTime will be equal to the first key of the red curve, and MaxCurveTime will be equal to the last key of the green curve. image


  • CurveLoopMode - If None, the curve will be played once and will call Completed when playback is complete. If Repeat, the curve will be played infinitely from start to finish or from finish to start depending on CurveDirectionMode , and Completed will not be called! If PingPong, the curve will be played back and forth infinitely, without Completed being called. You can manually stop the curve by calling the Destroy function. The built-in visualizer will display how the curve will be played!

Outputs:


Clone this wiki locally