Skip to content

Commit 9a120b5

Browse files
committed
going to work
1 parent 5dbcee9 commit 9a120b5

File tree

3 files changed

+21
-19
lines changed

3 files changed

+21
-19
lines changed

BGAnimations/ScreenEvaluation overlay.lua

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
local t = Def.ActorFrame {};
22

33
local iidxgrade = {
4-
["Grade_Tier01"] = "AAAA",
5-
["Grade_Tier02"] = "AAA",
6-
["Grade_Tier03"] = "AA",
7-
["Grade_Tier04"] = "A",
8-
["Grade_Tier05"] = "B",
9-
["Grade_Tier06"] = "C",
10-
["Grade_Tier07"] = "D",
11-
["Grade_Tier08"] = "E",
4+
["Grade_Tier01"] = "AAA",
5+
["Grade_Tier02"] = "AA",
6+
["Grade_Tier03"] = "A",
7+
["Grade_Tier04"] = "B",
8+
["Grade_Tier05"] = "C",
9+
["Grade_Tier06"] = "D",
10+
["Grade_Tier07"] = "E",
1211
["Grade_Failed"] = "F",
1312
}
1413

1514
t[#t+1] = Def.ActorFrame {
16-
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y);
15+
InitCommand=cmd(x,SCREEN_CENTER_X-240;y,SCREEN_CENTER_Y-200);
1716
LoadFont("Common Normal") .. {
1817
Text=tonumber(string.format("%.0f", totaliidxscore));
19-
InitCommand=cmd(x,0;y,-30);
18+
InitCommand=cmd(x,0;y,160);
2019
OnCommand=function(self)
2120
local stageaward = STATSMAN:GetCurStageStats():GetPlayerStageStats(PLAYER_1):GetStageAward()
2221
if stageaward == "StageAward_FullComboW1" then
@@ -27,10 +26,10 @@ t[#t+1] = Def.ActorFrame {
2726
end
2827
};
2928
Def.Quad {
30-
InitCommand=cmd(zoomto,150,90;diffuse,color("0,0.5,0,1");valign,0);
29+
InitCommand=cmd(zoomto,280,90*1.6;diffuse,color("0,0.5,0,0.5");valign,0);
3130
};
3231
Def.Quad {
33-
InitCommand=cmd(zoomto,150,20;diffuse,color("0.5,0,0,1");valign,1);
32+
InitCommand=cmd(zoomto,280,20*1.6;diffuse,color("0.5,0,0,0.5");valign,1);
3433
};
3534
};
3635
local lifetable = {};
@@ -39,17 +38,17 @@ local iidxlinecolour = color("0,1,0,1")
3938
if iidxlifetable[i] > 79 then
4039
iidxlinecolour = color("1,0,0,1")
4140
end
42-
lifetable[i] = {{i/(#iidxlifetable/150), -iidxlifetable[i], 0}, iidxlinecolour}
41+
lifetable[i] = {{i/(#iidxlifetable/280), -iidxlifetable[i]*1.6, 0}, iidxlinecolour}
4342
--[[t[#t+1] = Def.ActorFrame {
44-
InitCommand=cmd(x,SCREEN_CENTER_X-75;y,SCREEN_CENTER_Y+80);
43+
InitCommand=cmd(x,SCREEN_CENTER_X-90;y,SCREEN_CENTER_Y+80);
4544
Def.Quad {
4645
InitCommand=cmd(zoomto,1,1;diffuse,color("0,0,0,1");y,-iidxlifetable[i];x,i/(#iidxlifetable/150));
4746
};
4847
};--]]
4948
end
5049

5150
t[#t+1] = Def.ActorFrame {
52-
InitCommand=cmd(x,SCREEN_CENTER_X-75;y,SCREEN_CENTER_Y+80);
51+
InitCommand=cmd(x,SCREEN_CENTER_X-140-240;y,SCREEN_CENTER_Y+80*1.6-200);
5352
Def.ActorMultiVertex{
5453
OnCommand=function(self)
5554
self:SetDrawState{Mode="DrawMode_LineStrip"};
@@ -61,13 +60,13 @@ t[#t+1] = Def.ActorFrame {
6160
};
6261

6362
t[#t+1] = Def.ActorFrame {
64-
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y);
63+
InitCommand=cmd(x,SCREEN_CENTER_X-240;y,SCREEN_CENTER_Y-200);
6564
LoadFont("Common Normal") .. {
6665
Text="DJ LEVEL";
67-
InitCommand=cmd(x,-70;y,80;zoom,0.5;halign,0);
66+
InitCommand=cmd(x,-115;y,80*1.6;zoomy,0.5;halign,0);
6867
};
6968
LoadFont("Common Normal") .. {
70-
InitCommand=cmd(x,60;y,60;halign,1;diffuse,0,0,1,1;strokecolor,color("#000000");zoom,2);
69+
InitCommand=cmd(x,107.5;y,40*1.6;halign,1;diffuse,color("#a2f1f3");strokecolor,color("#000000");zoom,4.5);
7170
OnCommand=function(self)
7271
if iidxlifetable[#iidxlifetable] > 79 then
7372
self:settext(iidxgrade[STATSMAN:GetCurStageStats():GetPlayerStageStats(PLAYER_1):GetGrade()])
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
return Def.Quad{
22
InitCommand=cmd(FullScreen;diffuse,color("0,0,0,0"));
3-
OnCommand=cmd(linear,1.5;diffusealpha,1);
3+
OnCommand=cmd(linear,2;diffusealpha,1);
44
};

metrics.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ ShowOptionsMessageSeconds=0.3
8686
BannerOnCommand=diffusealpha,0
8787
TimerOnCommand=visible,false
8888

89+
[ScreenEvaluation]
90+
TimerOnCommand=visible,false
91+
8992
[MusicWheelItem]
9093
SectionExpandedX=-20
9194
SectionExpandedOnCommand=

0 commit comments

Comments
 (0)