15 lines
198 B
Lua
15 lines
198 B
Lua
|
|
|
|
if ( SERVER ) then return end
|
|
|
|
|
|
function ScreenScale( width )
|
|
return width * ( ScrW() / 640.0 )
|
|
end
|
|
|
|
function ScreenScaleH( height )
|
|
return height * ( ScrH() / 480.0 )
|
|
end
|
|
|
|
SScale = ScreenScale
|