Files
itgmania212121/Themes/_fallback/Scripts/04 WidescreenHelpers.lua
T

14 lines
530 B
Lua
Raw Normal View History

2011-08-18 13:29:34 -05:00
-- supported aspect ratios
2011-03-17 01:47:30 -04:00
AspectRatios = {
2011-08-18 13:29:34 -05:00
ThreeFour = 0.75, -- (576x760 at 1024x768; meant for rotated monitors?)
OneOne = 1.0, -- 480x480 (uses Y value of specified resolution)
2011-03-17 01:47:30 -04:00
FiveFour = 1.25, -- 600x480 (1280x1024 is a real use case)
2011-08-18 13:29:34 -05:00
FourThree = 1.33333, -- 640x480 (common)
SixteenTen = 1.6, -- 720x480 (common)
SixteenNine = 1.77778, -- 853x480 (common)
EightThree = 2.66666 -- 1280x480 (two monitors)
2011-03-17 01:47:30 -04:00
}
function WideScale(AR4_3, AR16_9)
return scale( SCREEN_WIDTH, 640, 854, AR4_3, AR16_9 )
2011-10-27 18:56:23 -05:00
end