/new Update

This commit is contained in:
Jonathan Payne
2012-07-22 20:22:32 -07:00
parent 7d9441cbfe
commit 7fbfdb8904
19 changed files with 94 additions and 6 deletions
@@ -53,7 +53,8 @@ end;
end --]]
--
local t = Def.ActorFrame {}
-- Aux
t[#t+1] = LoadActor(THEME:GetPathB("ScreenSystemLayer","aux"));
-- Credits
t[#t+1] = Def.ActorFrame {
--[[ PlayerPane( PLAYER_1 ) .. {
@@ -85,7 +86,5 @@ t[#t+1] = Def.ActorFrame {
end;
HideSystemMessageMessageCommand = cmd(finishtweening);
};
-- Aux
t[#t+1] = LoadActor(THEME:GetPathB("ScreenSystemLayer","aux"));
return t;
@@ -0,0 +1,7 @@
local t = Def.ActorFrame {};
t[#t+1] = Def.ActorFrame {
Def.Quad {
InitCommand=cmd(vertalign,bottom;zoomto,SCREEN_WIDTH,32;diffuse,Color.Black;y,SCREEN_BOTTOM;x,SCREEN_CENTER_X);
};
};
return t;
@@ -0,0 +1,6 @@
local t = Def.ActorFrame {};
t[#t+1] = StandardDecorationFromFile("Logo","Logo");
t[#t+1] = StandardDecorationFromFile("Version","Version");
return t;
Binary file not shown.

After

Width:  |  Height:  |  Size: 487 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

@@ -0,0 +1,40 @@
local t = Def.ActorFrame {};
-- Background Color
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(Center);
--
Def.Quad {
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;diffuse,color("#005185"));
};
};
-- Additive Tint
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(Center);
--
Def.Quad {
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;fadetop,1;blend,"BlendMode_Add";diffusealpha,0.2);
}
};
-- Textures Frame
t[#t+1] = Def.ActorFrame {
InitCommand=cmd(Center);
-- Scanline
LoadActor("_texture scanline") .. {
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;
customtexturerect,0,0,SCREEN_WIDTH/16,SCREEN_HEIGHT/32;
diffuse,Color.Black;
diffusealpha,0.25;
);
};
-- Checkerboard
LoadActor("_texture checkerboard") .. {
InitCommand=cmd(zoomto,SCREEN_WIDTH,SCREEN_HEIGHT;
customtexturerect,0,0,SCREEN_WIDTH/64,SCREEN_HEIGHT/64;
texcoordvelocity,0.5,0;
diffuse,Color.Black;
diffusealpha,0.25;
);
};
};
--
return t;
Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

@@ -0,0 +1,15 @@
local t = Def.ActorFrame{
InitCommand=cmd(fov,70);
LoadActor("_arrow")..{
InitCommand=cmd(x,225;);
OnCommand=cmd(wag;effectmagnitude,0,0,16;effectperiod,2.5;);
};
LoadActor("_text");
LoadActor("_text")..{
Name="TextGlow";
InitCommand=cmd(blend,Blend.Add;diffusealpha,0.05;);
OnCommand=cmd(glowshift;effectperiod,2.5;effectcolor1,color("1,1,1,0.25");effectcolor2,color("1,1,1,1"););
};
};
return t;
@@ -0,0 +1,12 @@
local gc = Var("GameCommand");
--
return Def.ActorFrame {
--
LoadFont("Common Normal") .. {
Name="ScrollerItem";
Text=THEME:GetString("ScreenTitleMenu",gc:GetText());
InitCommand=function(self)
ActorUtil.LoadAllCommandsAndSetXY(self,Var "LoadingScreen");
end;
};
};
@@ -0,0 +1,4 @@
return LoadFont("Common Normal") .. {
Text=string.format("%s [%s]", ProductVersion(), VersionDate());
AltText="StepMania";
};
@@ -0,0 +1 @@
_silent
@@ -0,0 +1 @@
_silent
+6 -3
View File
@@ -31,6 +31,7 @@ StageDisplayY=SCREEN_TOP
StageDisplayOnCommand=draworder,155
StageDisplayOffCommand=
[ScreenTitleMenu]
# Menu Items
ScrollerX=SCREEN_CENTER_X
ScrollerY=SCREEN_CENTER_Y*1.5
ScrollerTransform=function(self,offset,itemIndex,numItems) \
@@ -41,12 +42,12 @@ ScrollerOffCommand=
#
ScrollerItemX=0
ScrollerItemY=0
ScrollerItemOnCommand=finishtweening;diffuse,Color.Red
ScrollerItemOnCommand=finishtweening;shadowlength,2;strokecolor,Color.Black;
ScrollerItemGainFocusCommand=stoptweening;linear,0.125;diffuse,Color.Blue;zoom,1;
ScrollerItemLoseFocusCommand=stoptweening;linear,0.125;diffuse,Color.White;zoom,0.5;
#
# Logo
LogoX=SCREEN_CENTER_X
LogoY=SCREEN_CENTER_Y*0.5
LogoY=SCREEN_CENTER_Y*0.75
LogoOnCommand=
LogoOffCommand=
#
@@ -54,3 +55,5 @@ VersionX=SCREEN_RIGHT-24
VersionY=SCREEN_TOP+24.5
VersionOnCommand=shadowlength,2;horizalign,right;vertalign,top;zoom,0.5
VersionOffCommand=
[ScreenSelectStyle]