Almost done with implementation of Transition! Settings and UI side

pannel are operational. View is stable and animation with UpdateCallback
implemented.
This commit is contained in:
brunoherbelin
2020-07-06 00:06:49 +02:00
parent d4a22992eb
commit b5985847bf
14 changed files with 229 additions and 78 deletions

View File

@@ -79,14 +79,14 @@ struct History
struct TransitionConfig
{
bool auto_start;
bool cross_fade;
bool auto_open;
int duration;
int profile;
TransitionConfig() {
auto_start = false;
cross_fade = false;
cross_fade = true;
auto_open = true;
duration = 1000;
profile = 0;
}