[BeginnerHelper] Made BeginnerHelper run the OnCommand. Also added missing files and fixed metrics.

This commit is contained in:
AJ Kelly
2011-08-07 18:50:57 -05:00
parent 508e53bf02
commit a4c6b21b1e
6 changed files with 10 additions and 6 deletions
+1
View File
@@ -15,6 +15,7 @@ StepMania 5.0 Preview 3 | 20110???
* [TimingData] Add HasDelays() Lua binding; HasStops() now only checks stops. [AJ]
* [GameState, SongUtil] Fix Issue 263 by not charging 2x stages for doubles when
not using joint premium. [AJ]
* [BeginnerHelper] Made BeginnerHelper run the OnCommand. [AJ]
2011/08/06
----------
@@ -0,0 +1 @@
_blank
@@ -0,0 +1 @@
_blank
@@ -0,0 +1 @@
_blank
+5 -5
View File
@@ -230,14 +230,14 @@ ScrollSortOrder=false
ScrollSpeedDivisor=2
[BeginnerHelper]
HelperX=SCREEN_CENTER_X
HelperY=SCREEN_CENTER_Y+80
HelperX=0
HelperY=SCREEN_CENTER_Y-80
# All X,Y coordinates are relative to the HelperX,Y
Player1X=-125
Player1X=-(SCREEN_CENTER_X/2)
PlayerP1OnCommand=halign,0;rotationx,40;zoom,20
Player2X=195
PlayerP2OnCommand=halign,0;rotationx,40;zoom,20
Player2X=(SCREEN_CENTER_X/2)
PlayerP2OnCommand=halign,1;rotationx,40;zoom,20
ShowDancePad=false
# "Pad should always be 3 units bigger in zoom than the dancer."
+1 -1
View File
@@ -167,7 +167,7 @@ bool BeginnerHelper::Init( int iDancePadType )
m_pDancer[pl]->PlayAnimation( "rest" );
m_pDancer[pl]->SetX( HELPER_X+PLAYER_X(pl) );
m_pDancer[pl]->SetY( HELPER_Y+10 );
ActorUtil::LoadAllCommands( m_pDancer[pl], "BeginnerHelper" );
ActorUtil::LoadAllCommandsAndOnCommand( m_pDancer[pl], "BeginnerHelper" );
// many of the models floating around have the vertex order flipped, so force this.
m_pDancer[pl]->SetCullMode( CULL_NONE );
}