Added more AnimationEffects.

This commit is contained in:
Fabian Schlenz 2020-04-29 20:27:16 +02:00
parent 4762a852d8
commit cfb25d6030
1 changed files with 4 additions and 1 deletions

View File

@ -61,8 +61,11 @@ EffectEntry effects[] = {
/* 26 */ {"sinematrix3_rainbow", true, [](){ return new Sinematrix3Effect(SINEMATRIX_COLOR_RAINBOW); }},
/* 27 */ {"sinematrix3_purplefly", true, [](){ return new Sinematrix3Effect(SINEMATRIX_COLOR_PURPLEFLY); }},
/* 28 */ {"lightspeed", true, [](){ return new LightspeedEffect(); }},
/* 29 */ {"koopa", 0, [](){ return new AnimationEffect("/koopa.pia"); }},
/* 30 */ {"cake", 0, [](){ return new AnimationEffect("/cake.pia"); }},
/* 31 */ {"kid", 0, [](){ return new AnimationEffect("/kid.pia"); }},
};
const uint8_t effects_size = 29;
const uint8_t effects_size = 32;
Effect* select_effect(const char* name) {