pump receptors code tweak
ignore crashinfo adding new simile format idea
This commit is contained in:
@@ -43,6 +43,7 @@ src/verstub.cpp
|
||||
nsis_strings_temp.inc
|
||||
Data/SpeedMods.txt
|
||||
Program/StepMania*.lib
|
||||
crashinfo.txt
|
||||
|
||||
syntax: regexp
|
||||
.*\#.*\#$
|
||||
|
||||
@@ -0,0 +1,47 @@
|
||||
$INFORMATION:maintitle:subtitle:artist:genre:credit;
|
||||
$TRANSLITS:main:sub:artist;
|
||||
$GRAPHICS:banner:background:disc:cdtitle;
|
||||
$MUSIC:music-file:base-track:intro-file:lyrics;
|
||||
// should be used if a intro file is not defined
|
||||
$SAMPLEPREVIEW:start:length;
|
||||
$DISPLAYBPM:[from:to]|[one]|[show yes/no];
|
||||
$BGCHANGES:
|
||||
beat=file:p,r,o,p,s
|
||||
;
|
||||
$FGCHANGES:;
|
||||
$KEYSOUNDS:;
|
||||
|
||||
// cache tags here
|
||||
$CACHE:
|
||||
firstbeat:
|
||||
lastbeat:
|
||||
songfilename:
|
||||
hasmusic:
|
||||
hasbanner
|
||||
;
|
||||
|
||||
// note data
|
||||
#NOTEDATA#
|
||||
$META:
|
||||
STEPSTYPE=stepstype:
|
||||
DIFFICULTY=difficulty:
|
||||
DESCRIPTION=description:
|
||||
METER=meter:
|
||||
RADARVALUES=r,a,d,a,r,v,a,l,u,e,s;
|
||||
$TIMINGDATA:
|
||||
BPM=bpms:
|
||||
SPEED=speed:
|
||||
STOPS=stops:
|
||||
DELAYS=delays:
|
||||
TIMESIGNATURES=timesigs;
|
||||
$NOTES:
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
,
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
00000
|
||||
;
|
||||
@@ -0,0 +1 @@
|
||||
_blank
|
||||
@@ -19,20 +19,26 @@ return Def.ActorFrame {
|
||||
|
||||
-- LAYERS --
|
||||
NOTESKIN:LoadActor("Center", "Outline Receptor")..{
|
||||
Name="Outline";
|
||||
Condition=Var "Button" == "Center";
|
||||
Name="Outline Full";
|
||||
Condition=Var "Button" == "Center" and GAMESTATE:GetCurrentStyle():GetStepsType() ~= 'StepsType_Pump_Halfdouble';
|
||||
--InitCommand=cmd(x,96);
|
||||
};
|
||||
NOTESKIN:LoadActor("DownLeft", "Outline Receptor")..{
|
||||
Name="Outline Half";
|
||||
Condition=Var "Button" == "DownLeft" and GAMESTATE:GetCurrentStyle():GetStepsType() == 'StepsType_Pump_Halfdouble';
|
||||
--InitCommand=cmd(x,96);
|
||||
};
|
||||
|
||||
NOTESKIN:LoadActor(Var "Button", "Ready Receptor")..{
|
||||
Name="Base";
|
||||
Frames = { { Frame = 0 } };
|
||||
--PressCommand=cmd(finishtweening;glow,1,1,1,1;linear,0.1;glow,1,1,1,0);
|
||||
PressCommand=cmd(finishtweening;linear,0.05;zoom,0.9;linear,0.1;zoom,1);
|
||||
};
|
||||
NOTESKIN:LoadActor(Var "Button", "Ready Receptor")..{
|
||||
Name="Glow";
|
||||
Frames = { { Frame = 1 } };
|
||||
InitCommand=cmd(blend,'BlendMode_Add');
|
||||
--PressCommand=cmd(finishtweening;linear,0.05;zoom,0.9;linear,0.1;zoom,1);
|
||||
PressCommand=cmd(finishtweening;linear,0.05;zoom,0.9;linear,0.1;zoom,1);
|
||||
};
|
||||
--[[
|
||||
NOTESKIN:LoadActor(Var "Button", "Ready Receptor")..{
|
||||
|
||||
Reference in New Issue
Block a user