Metrics now include the current effect's name.

This commit is contained in:
2019-09-25 18:11:03 +02:00
parent d396b68191
commit 36edb94ff0
25 changed files with 51 additions and 30 deletions

View File

@ -47,3 +47,9 @@ void CycleEffect::loop() {
}
}
}
String CycleEffect::get_name() {
String s = "cycle/";
s += effect->get_name();
return s;
}