New: implementation of fading slider in MixingView. Needed to implement

decoration Disk and to update picking visitor.
This commit is contained in:
brunoherbelin
2020-07-29 17:06:08 +02:00
parent 714f2bea3c
commit 837eb2d569
13 changed files with 284 additions and 128 deletions

View File

@@ -59,8 +59,7 @@ public:
// manipulate fading of output
void setFading(float f);
void fadeIn();
void fadeOut();
inline float fading() const { return fading_target_; }
// configuration for group nodes of views
inline Group *config (View::Mode m) const { return config_.at(m); }
@@ -77,7 +76,7 @@ protected:
std::map<View::Mode, Group*> config_;
bool active_;
std::list<Recorder *> recorders_;
float fading_target_;
};
#endif // SESSION_H