Replaced most D3DX dependencies. Added Brendan's not-yet-functional networking code.

This commit is contained in:
Chris Danford
2002-10-28 05:30:45 +00:00
parent 5110da12d3
commit 73f7db6b15
99 changed files with 1203 additions and 718 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ HoldGhostArrow::HoldGhostArrow()
m_fHeatLevel = 0;
// LoadFromSpriteFile( THEME->GetPathTo(GRAPHIC_HOLD_GHOST_ARROW) );
SetDiffuse( D3DXCOLOR(1,1,1,1) );
SetDiffuse( RageColor(1,1,1,1) );
// SetZoom( 1.1f );
}
@@ -53,7 +53,7 @@ void HoldGhostArrow::Update( float fDeltaTime )
else
SetZoom( 1 );
SetDiffuse( D3DXCOLOR(1,1,1,m_fHeatLevel*3) );
SetDiffuse( RageColor(1,1,1,m_fHeatLevel*3) );
m_bWasSteppedOnLastFrame = false; // reset for next frame
}