Skip to content
Snippets Groups Projects
Commit 1958283f authored by Pascal Engeler's avatar Pascal Engeler
Browse files

Added visibility manager for opacity and enable tracking

parent 618f6800
Branches master
No related tags found
No related merge requests found
#pragma once
struct VisibilityManager {
static bool enableTop;
static bool enableBottom;
static float opacityMixer;
static float topOpacity();
static float bottomOpacity();
/*
Opacity Mixer:
0.f - top transparent
1.f - bottom transparent
0.5f - nothing transparent
alphaTop = std::max( 2.f * opacityMixer, 1.f );
alphaBottom = std::max( 2.f * ( 1.f - opacityMixer ) );
*/
};
\ No newline at end of file
#include <visibility_manager.hpp>
#include <algorithm>
bool VisibilityManager::enableTop = true;
bool VisibilityManager::enableBottom = true;
float VisibilityManager::opacityMixer = 0.5;
float VisibilityManager::topOpacity() {
return std::min(2.f * opacityMixer, 1.f);
}
float VisibilityManager::bottomOpacity() {
return std::min(2.f * (1.f - opacityMixer), 1.f);
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment