At the arcade flex is the best layout in attract mode. In horizontal it is perfect. on my Arcade 1UP with 1024 Width By 1280 Height it needs some tweaks in vertical.
I just want the wheel a little wider.
if (my_config["wheel_logo_size"] == "Larger")
slot_width *= 1.5;
Change to
if (my_config["wheel_logo_size"] == "Larger")
slot_width *= 2.2;
ALSO move wheel to left
if (my_config["wheel_logo_size"] == "Larger")
wheel_offset_x -= flw * 0.04;
CHANGE TO
if (my_config["wheel_logo_size"] == "Larger")
wheel_offset_x -= flw * 0.10;
For some reason the cab is low and there is lots of wasted space above it. I think I want to try to move the Game info background frame up top.
local title_line_y = fly - line_h;
Or
1280-76.8=1203.2
We should try 80.
Also try Info and Enumerate for Game Info to show filter.
Changed to
local title_line_y = line_h; //fly - line_h;
I ended up changing a bunch of stuff.