Export Effects
The effects designed with Feelix can be exported as plain text and used in combination with the Feelix C++ library.
Last updated
Was this helpful?
The effects designed with Feelix can be exported as plain text and used in combination with the Feelix C++ library.
Last updated
Was this helpful?
Was this helpful?
/* initialize */
EffectConfig_s sawtooth_config {
.data_size = 4,
.angle = 120,
.quality = 40,
.effect_type = Effect_type::DEPENDENT,
.control_type = Control_type::TORQUE
};
float data_sawtooth[] = {0.0, 0.95, -0.95, 0.0};
FeelixEffect sawtooth = FeelixEffect(sawtooth_copy_config, data_sawtooth_copy);