[Visualization]: Change peaks to float on top

Change the peak sphere positions so they float on top of the bottom or
the bars, instead of clipping into them.

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
swiftingly
Christopher Snowhill 2022-05-22 17:25:21 -07:00
parent f4712ad219
commit 438634d6df
1 changed files with 2 additions and 2 deletions

View File

@ -290,7 +290,7 @@ extern NSString *CogPlaybackDidStopNotficiation;
node.position = position;
position = dotNode.position;
position.y = 0;
position.y = 0.072;
dotNode.position = position;
}
@ -330,7 +330,7 @@ extern NSString *CogPlaybackDidStopNotficiation;
node.position = position;
position = dotNode.position;
position.y = maxMax;
position.y = maxMax + 0.072;
dotNode.position = position;
}