11 lines
317 B
Lua
11 lines
317 B
Lua
local children = {
|
|
LoadActor( "_music scroll background" ) .. {
|
|
InitCommand = cmd(scale_or_crop_background);
|
|
};
|
|
LoadFont( "ScreenMusicScroll", "thanks" ) .. {
|
|
Text = "Thank you for playing!";
|
|
InitCommand = cmd(align,0,1;x,SCREEN_LEFT+20;y,SCREEN_BOTTOM-40;zoom,.8)
|
|
};
|
|
}
|
|
return WrapInActorFrame( children )
|