Files
itgmania212121/stepmania/Themes/default/Graphics/ScreenWithMenuElements StyleIcon/default.lua
T

11 lines
316 B
Lua
Raw Normal View History

2006-11-22 01:58:11 +00:00
local style = GAMESTATE:GetCurrentStyle();
if not style then return Def.Actor {}; end
2006-11-24 19:08:57 +00:00
local s = StyleTypeToString( style:GetStyleType() );
2006-11-22 01:58:11 +00:00
local Reverse = PlayerNumber:Reverse();
local t = LoadActor("_icon " .. s)() .. {
InitCommand = cmd(pause;setstate,Reverse[GAMESTATE:GetMasterPlayerNumber()]);
};
2006-11-24 19:08:57 +00:00
return t;