2021-08-31 18:24:48 +02:00
|
|
|
|
2022-04-27 02:03:42 +02:00
|
|
|
local Dimensions = require 'common.dimensions'
|
|
|
|
|
2021-08-31 18:24:48 +02:00
|
|
|
local consoleBaseImage = gfx.CreateSkinImage("gameplay/console/base.png", 0)
|
|
|
|
|
|
|
|
local CONSOLE_W = 1352;
|
|
|
|
local CONSOLE_H = 712;
|
|
|
|
|
|
|
|
local render = function (deltaTime, critLineCenterX, critLineCenterY, critLineRotation)
|
2021-11-25 18:49:50 +01:00
|
|
|
local resx, resy = game.GetResolution();
|
|
|
|
if (resx > resy) then
|
|
|
|
return
|
|
|
|
end
|
2022-04-27 02:03:42 +02:00
|
|
|
|
|
|
|
Dimensions.setUpTransforms(
|
2021-08-31 18:24:48 +02:00
|
|
|
critLineCenterX,
|
2021-10-28 17:27:26 +02:00
|
|
|
critLineCenterY,
|
2021-08-31 18:24:48 +02:00
|
|
|
critLineRotation
|
|
|
|
)
|
|
|
|
|
|
|
|
gfx.BeginPath();
|
|
|
|
gfx.ImageRect(
|
|
|
|
-CONSOLE_W/2,
|
2021-10-28 17:27:26 +02:00
|
|
|
-CONSOLE_H/2+350,
|
2021-08-31 18:24:48 +02:00
|
|
|
CONSOLE_W,
|
|
|
|
CONSOLE_H,
|
|
|
|
consoleBaseImage,
|
|
|
|
1,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
render=render
|
|
|
|
}
|