Files
itgmania212121/Themes/_fallback/BGAnimations/ScreenGameplay decorations/default.lua
T

11 lines
285 B
Lua
Raw Normal View History

2011-04-10 21:52:58 -04:00
local t = Def.ActorFrame {};
if( not GAMESTATE:IsCourseMode() ) then
2011-04-10 21:52:58 -04:00
t[#t+1] = Def.Actor{
JudgmentMessageCommand = function(self, params)
Scoring[GetUserPref("UserPrefScoringMode")](params,
2011-04-10 21:52:58 -04:00
STATSMAN:GetCurStageStats():GetPlayerStageStats(params.Player))
end;
};
end;
2011-04-10 21:52:58 -04:00
return t;