FastLED 3.9.15
Loading...
Searching...
No Matches

◆ fxName()

string fl::Blend2d::fxName ( ) const
overridevirtual

Implements fl::Fx.

Definition at line 26 of file blend.cpp.hpp.

26 {
27 fl::string out = "LayeredFx2d(";
28 for (size_t i = 0; i < mLayers.size(); ++i) {
29 out += mLayers[i].fx->fxName();
30 if (i != mLayers.size() - 1) {
31 out += ",";
32 }
33 }
34 out += ")";
35 return out;
36}
vector< Entry > mLayers
Definition blend.h:57

References mLayers.