minor changes
This commit is contained in:
parent
df5684e8f2
commit
c0498446c8
|
@ -99,11 +99,34 @@ local render = function (deltaTime, bpm, laneSpeed, jacketPath, diff, level, pro
|
||||||
0
|
0
|
||||||
);
|
);
|
||||||
|
|
||||||
if gameplay.autoplay then
|
if gameplay.autoplay and gameplay.demoMode == false and gameplay.practice_setup == false then
|
||||||
|
|
||||||
gfx.BeginPath();
|
gfx.BeginPath();
|
||||||
gfx.ImageRect(0,y+310,245,67,notify,1,0);
|
gfx.ImageRect(0,y+310,245,67,notify,1,0);
|
||||||
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE)
|
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE)
|
||||||
renderOutlinedText(30,y+354.5, "AUTOPLAY IS ENABLED", 1.5);
|
renderOutlinedText(30,y+354.5, "AUTOPLAY IS ENABLED", 1.5);
|
||||||
|
|
||||||
|
elseif gameplay.demoMode == true and gameplay.practice_setup == false then
|
||||||
|
|
||||||
|
gfx.BeginPath();
|
||||||
|
gfx.ImageRect(0,y+310,245,67,notify,1,0);
|
||||||
|
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE)
|
||||||
|
renderOutlinedText(30,y+354.5, "DEMO MODE IS ENABLED", 1.5);
|
||||||
|
|
||||||
|
elseif gameplay.scoreReplays and gameplay.demoMode == false and gameplay.practice_setup == false then
|
||||||
|
|
||||||
|
gfx.BeginPath();
|
||||||
|
gfx.ImageRect(0,y+310,245,67,notify,1,0);
|
||||||
|
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE)
|
||||||
|
renderOutlinedText(30,y+354.5, "REPLAY MODE IS ENABLED", 1.5);
|
||||||
|
|
||||||
|
elseif gameplay.practice_setup == true then
|
||||||
|
|
||||||
|
gfx.BeginPath();
|
||||||
|
gfx.ImageRect(0,y+310,245,67,notify,1,0);
|
||||||
|
gfx.TextAlign(gfx.TEXT_ALIGN_LEFT + gfx.TEXT_ALIGN_MIDDLE)
|
||||||
|
renderOutlinedText(30,y+354.5, "PRACTICE MODE IS ENABLED", 1.5);
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Draw diff rectangle
|
-- Draw diff rectangle
|
||||||
|
|
|
@ -518,8 +518,8 @@ local drawRightPanelContent = function()
|
||||||
gfx.ClosePath();
|
gfx.ClosePath();
|
||||||
gfx.FillColor(255, 255, 255, 255);
|
gfx.FillColor(255, 255, 255, 255);
|
||||||
gfx.FontSize(19.25)
|
gfx.FontSize(19.25)
|
||||||
gfx.Text(Fillmihd.."ms",timmingX + 420,timmingY + 9 + detailTextMargin)
|
gfx.Text(Fillmihd.."ms",timmingX + 420,timmingY + 9 + 25 + detailTextMargin)
|
||||||
gfx.Text(Fillmhd.."ms",timmingX + 420,timmingY + 9 + 25 + detailTextMargin)
|
gfx.Text(Fillmhd.."ms",timmingX + 420,timmingY + 9 + detailTextMargin)
|
||||||
|
|
||||||
|
|
||||||
gfx.FontSize(24)
|
gfx.FontSize(24)
|
||||||
|
|
|
@ -1,13 +0,0 @@
|
||||||
local idols ={
|
|
||||||
-- SDVX IV
|
|
||||||
nearnoah_summer={"crew/anim/nearnoah_summer", 1 / 30, 0, true}
|
|
||||||
-- SDVX V
|
|
||||||
|
|
||||||
-- SDVX III
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
return idols
|
|
Loading…
Reference in New Issue