Work in progress OSC Control manager

Support for log, output and source targets. Now needs to be developed for all attributes.
This commit is contained in:
Bruno Herbelin
2021-12-19 01:11:29 +01:00
parent a612154123
commit 3a9c6f56bf
8 changed files with 213 additions and 14 deletions

View File

@@ -473,7 +473,7 @@ View::Cursor MixingView::grab (Source *s, glm::vec2 from, glm::vec2 to, std::pai
// cursor feedback
slider_->color = glm::vec4( COLOR_CIRCLE_OVER, 0.9f );
std::ostringstream info;
info << "Global opacity " << 100 - int(Mixer::manager().session()->fading() * 100.0) << " %";
info << "Output " << 100 - int(Mixer::manager().session()->fading() * 100.0) << " %";
return Cursor(Cursor_Hand, info.str() );
}
else if (pick.first == limbo_slider_) {