Forums » General StepMania » Stepmania 5 beta 4a default theme - GraphDisplay and ComboGraph not showing

1
Hi,

for some reason unknown to me, ComboGraph and GraphView are not showing on the evaluation screen. They do show in StepMania 5 beta 3, but as far as I can tell, nothing related in the theme itself had been changed. The ultralight theme + SM5b4a shows the graphs.

I can also get the graphs to show if I comment out
if ShowStandardDecoration("GraphDisplay") and not GAMESTATE:GetPlayMode() == "PlayMode_Rave" then
and the matching
end
in
Themes/default/BGAnimations/ScreenEvaluation decorations/default.lua
and the same stuff in the next block.

But that doesn't really seem like the right approach. Any ideas what's going on?
Reply
Take out the "not" and change the "==" to "~=", so it's like this:
if ShowStandardDecoration("GraphDisplay") and GAMESTATE:GetPlayMode() ~= "PlayMode_Rave" then


My guess is that the operator precedence was wrong, and the above line is what I've changed it to in the github repository.
< cybik> til Kyzentun fixes bugs for breakfast
--
< maxvg1> shakesoda: then why do i still play lol
<@shakesoda> because you're an ITG player. And thus, a masochist
--
<@shakesoda> Kyzentun: I think you might need to put down the meshes for a bit
Reply
Cool, thanks:)!
Reply