2011-04-10 21:52:58 -04:00
|
|
|
local t = Def.ActorFrame {};
|
|
|
|
|
|
2011-04-12 02:29:57 -04:00
|
|
|
if( not GAMESTATE:IsCourseMode() ) then
|
2011-04-10 21:52:58 -04:00
|
|
|
t[#t+1] = Def.Actor{
|
|
|
|
|
JudgmentMessageCommand = function(self, params)
|
2011-09-25 12:06:15 -05:00
|
|
|
if params.TapNoteScore and
|
|
|
|
|
params.TapNoteScore ~= 'TapNoteScore_Invalid' and
|
|
|
|
|
params.TapNoteScore ~= 'TapNoteScore_None'
|
|
|
|
|
then
|
|
|
|
|
Scoring[GetUserPref("UserPrefScoringMode")](params,
|
|
|
|
|
STATSMAN:GetCurStageStats():GetPlayerStageStats(params.Player))
|
|
|
|
|
end
|
2011-04-10 21:52:58 -04:00
|
|
|
end;
|
|
|
|
|
};
|
2011-04-12 02:29:57 -04:00
|
|
|
end;
|
2011-04-10 21:52:58 -04:00
|
|
|
return t;
|