forked from etternagame/etterna
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4,163 changed files
with
589,097 additions
and
544,108 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Place announcer folders in this directory. | ||
Place announcer folders in this directory. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Place BGAnimation folders in here. | ||
Place BGAnimation folders in here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
return Def.Quad | ||
{ | ||
return Def.Quad{ | ||
OnCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;zoomtowidth,SCREEN_WIDTH;zoomtoheight,SCREEN_HEIGHT); | ||
GainFocusCommand=cmd(diffusealpha,1.0;accelerate,0.6;diffusealpha,0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
return Def.Quad | ||
{ | ||
return Def.Quad{ | ||
OnCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;zoomtowidth,SCREEN_WIDTH;zoomtoheight,SCREEN_HEIGHT); | ||
GainFocusCommand=cmd(diffuse,color("#FFFFA0");accelerate,0.6;diffusealpha,0); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
local Color = color(Var "Color1"); | ||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
local Color = color(Var "Color1"); | ||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
local Color = color(Var "Color1"); | ||
|
||
local a = LoadActor(Var "File1") .. { | ||
OnCommand=cmd(zoomtowidth,SCREEN_WIDTH/2;zoomtoheight,SCREEN_HEIGHT/2;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
|
||
local t = Def.ActorFrame { | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
}; | ||
|
||
return t; | ||
local Color = color(Var "Color1"); | ||
|
||
local a = LoadActor(Var "File1") .. { | ||
OnCommand=cmd(zoomtowidth,SCREEN_WIDTH/2;zoomtoheight,SCREEN_HEIGHT/2;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
|
||
local t = Def.ActorFrame { | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
local Color = color(Var "Color1"); | ||
local a = LoadActor(Var "File2") .. { | ||
OnCommand=cmd(zoomtowidth,SCREEN_WIDTH/2;zoomtoheight,SCREEN_HEIGHT/2;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
|
||
local t = Def.ActorFrame { | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
}; | ||
|
||
return t; | ||
|
||
local Color = color(Var "Color1"); | ||
local a = LoadActor(Var "File2") .. { | ||
OnCommand=cmd(zoomtowidth,SCREEN_WIDTH/2;zoomtoheight,SCREEN_HEIGHT/2;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
|
||
local t = Def.ActorFrame { | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
}; | ||
|
||
return t; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,16 @@ | ||
local Color = color(Var "Color1"); | ||
|
||
local a = LoadActor(Var "File1") .. { | ||
OnCommand=cmd(zoomtowidth,SCREEN_WIDTH/2;zoomtoheight,SCREEN_HEIGHT/2;diffuse,Color;zoomx,self:GetZoomX()*-1;zoomy,self:GetZoomY()*-1;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
|
||
local t = Def.ActorFrame { | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
}; | ||
|
||
return t; | ||
local Color = color(Var "Color1"); | ||
|
||
local a = LoadActor(Var "File1") .. { | ||
OnCommand=cmd(zoomtowidth,SCREEN_WIDTH/2;zoomtoheight,SCREEN_HEIGHT/2;diffuse,Color;zoomx,self:GetZoomX()*-1;zoomy,self:GetZoomY()*-1;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
|
||
local t = Def.ActorFrame { | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(1,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(1,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
a .. { OnCommand=cmd(x,scale(3,0,4,SCREEN_LEFT,SCREEN_RIGHT);y,scale(3,0,4,SCREEN_TOP,SCREEN_BOTTOM)); }; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
local Color1 = color(Var "Color1"); | ||
local Color2 = color(Var "Color2"); | ||
|
||
local t = Def.ActorFrame { | ||
Def.Sprite { | ||
OnCommand=cmd(x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;zoomtowidth,SCREEN_WIDTH;zoomtoheight,SCREEN_HEIGHT;diffuse,Color1;effectclock,"music"); | ||
}; | ||
|
||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(blend,"BlendMode_Add";x,SCREEN_CENTER_X;y,SCREEN_CENTER_Y;zoomtowidth,SCREEN_WIDTH;zoomtoheight,SCREEN_HEIGHT;diffuse,Color2;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
local Color = color(Var "Color1"); | ||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;loop,false;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
local Color = color(Var "Color1"); | ||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;loop,false;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
-- Align left when cropping to 4:3. | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(horizalign,left;scaletocover,0,0,SCREEN_WIDTH,SCREEN_HEIGHT;diffuse,color(Color);effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
-- Align left when cropping to 4:3. | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(horizalign,left;scaletocover,0,0,SCREEN_WIDTH,SCREEN_HEIGHT;diffuse,color(Color);effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;pause;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;pause;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;position,0;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
|
||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(scale_or_crop_background;diffuse,Color;position,0;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
-- upper left corner | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
|
||
-- upper left corner | ||
local Color = color(Var "Color1"); | ||
|
||
local t = Def.ActorFrame { | ||
LoadActor(Var "File1") .. { | ||
OnCommand=cmd(diffuse,Color;effectclock,"music"); | ||
GainFocusCommand=cmd(play); | ||
LoseFocusCommand=cmd(pause); | ||
}; | ||
}; | ||
|
||
return t; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="stoptweening;linear,1.0;diffusealpha,0" | ||
RootCommand="" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="stoptweening;linear,1.0;diffusealpha,0" | ||
RootCommand="" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="croptop,-0.3;fadetop,0.3;linear,1.0;croptop,1.3" | ||
RootCommand="" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="croptop,-0.3;fadetop,0.3;linear,1.0;croptop,1.3" | ||
RootCommand="" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="cropright,-0.3;faderight,0.3;linear,1.0;cropright,1.3" | ||
RootCommand="" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="cropright,-0.3;faderight,0.3;linear,1.0;cropright,1.3" | ||
RootCommand="" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="cropleft,-0.3;fadeleft,0.3;linear,1.0;cropleft,1.3" | ||
RootCommand="" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="cropleft,-0.3;fadeleft,0.3;linear,1.0;cropleft,1.3" | ||
RootCommand="" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="cropbottom,-0.3;fadebottom,0.3;linear,1.0;cropbottom,1.3" | ||
RootCommand="" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="cropbottom,-0.3;fadebottom,0.3;linear,1.0;cropbottom,1.3" | ||
RootCommand="" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addy,SCREEN_HEIGHT" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addy,SCREEN_HEIGHT" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addx,-SCREEN_WIDTH" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addx,-SCREEN_WIDTH" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addx,SCREEN_WIDTH" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addx,SCREEN_WIDTH" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addy,-SCREEN_HEIGHT" | ||
/> | ||
<BackgroundTransition | ||
LeavesCommand="linear,1.0;diffusealpha,0" | ||
RootCommand="stoptweening;linear,1.0;addy,-SCREEN_HEIGHT" | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
DWI-style CDTiltes can be placed here. | ||
|
||
However, you are highly encouraged to place the CDTitle graphics | ||
inside the song folder since the package manager cannot use the | ||
DWI-style CDTitles or Music folders. | ||
DWI-style CDTitles can be placed here. | ||
However, you are highly encouraged to place the CDTitle graphics | ||
inside the song folder since the package manager cannot use the | ||
DWI-style CDTitles or Music folders. |
Oops, something went wrong.