Skip to content

Commit

Permalink
State: enable waves and pedals by default.
Browse files Browse the repository at this point in the history
This should help discoverability.
  • Loading branch information
kosua20 committed Dec 3, 2020
1 parent f6f8370 commit b50966d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/rendering/State.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -568,14 +568,14 @@ void State::reset(){
minKey = 21;
maxKey = 108;

showPedal = false;
showPedal = true;
pedals.color = baseColors[0];
pedals.size = 0.2f;
pedals.opacity = 0.4f;
pedals.merge = false;
pedals.location = PedalsState::BOTTOMRIGHT;

showWave = false;
showWave = true;
waves.color = baseColors[0];
waves.amplitude = 1.0f;
waves.frequency = 1.0f;
Expand Down

0 comments on commit b50966d

Please sign in to comment.