2021-08-31 18:24:48 +02:00
|
|
|
|
|
|
|
local baseImage = gfx.CreateSkinImage("gameplay/crit_line/base.png", 0)
|
|
|
|
local textImage = gfx.CreateSkinImage("gameplay/crit_line/text.png", 0)
|
|
|
|
|
|
|
|
local CRITBAR_W = 1496
|
|
|
|
local CRITBAR_H = 348
|
|
|
|
|
|
|
|
local setUpTransforms = function (x,y,rotation)
|
2021-10-28 17:27:26 +02:00
|
|
|
local resx, resy = game.GetResolution()
|
|
|
|
local desw = 1080
|
|
|
|
local desh = 1920
|
|
|
|
local scale = resx / desw
|
|
|
|
|
2021-08-31 18:24:48 +02:00
|
|
|
gfx.Translate(x, y)
|
|
|
|
gfx.Rotate(rotation)
|
2021-10-28 17:27:26 +02:00
|
|
|
gfx.Scale(scale,scale)
|
2021-08-31 18:24:48 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
local renderBase = function (deltaTime, centerX, centerY, rotation)
|
|
|
|
setUpTransforms(centerX, centerY, rotation)
|
|
|
|
|
|
|
|
gfx.BeginPath();
|
|
|
|
gfx.ImageRect(
|
|
|
|
-CRITBAR_W/2,
|
|
|
|
-CRITBAR_H/2,
|
|
|
|
CRITBAR_W,
|
|
|
|
CRITBAR_H,
|
|
|
|
baseImage,
|
|
|
|
1,
|
|
|
|
0
|
|
|
|
);
|
|
|
|
|
|
|
|
gfx.ResetTransform()
|
|
|
|
end
|
|
|
|
|
|
|
|
local renderOverlay = function (deltaTime)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
return {
|
|
|
|
renderBase=renderBase,
|
|
|
|
renderOverlay=renderOverlay
|
|
|
|
}
|