Files
itgmania212121/stepmania/Themes/default/BGAnimations/ScreenCaution overlay.lua
T

14 lines
464 B
Lua
Raw Normal View History

2007-05-20 18:05:35 +00:00
local t = Def.ActorFrame {
LoadFont("blaster") .. {
2007-08-12 03:51:54 +00:00
Text=THEME:GetString( "ScreenCaution", "Caution" );
2007-05-13 00:14:53 +00:00
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_TOP+60;diffuse,1,0,0,1;zoom,1.5;diffusebottomedge,0.25,0,0,1;shadowlength,0);
};
2007-05-20 18:05:35 +00:00
LoadFont("_zeroesthree") .. {
2007-08-12 03:51:54 +00:00
Text=THEME:GetString( "ScreenCaution", "CautionText" );
InitCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;horizalign,center;shadowlength,0;wrapwidthpixels,SCREEN_WIDTH-80);
2007-05-13 00:14:53 +00:00
};
};
2007-05-20 18:05:35 +00:00
return t;