xoffset -> addx

yoffset -> addy
diffuse,1,1,1,0 -> diffusealpha,0
diffuse,1,1,1,1 -> diffusealpha,1
This commit is contained in:
Chris Danford
2003-04-11 21:51:28 +00:00
parent a3513ac7f3
commit 1bedf3b206
2 changed files with 243 additions and 243 deletions
+3 -3
View File
@@ -644,9 +644,9 @@ void Actor::Command( CString sCommandString )
else if( sName=="x" ) SetX( fParam(1) );
else if( sName=="y" ) SetY( fParam(1) );
else if( sName=="z" ) SetZ( fParam(1) );
else if( sName=="xoffset" ) SetX( GetX()+fParam(1) );
else if( sName=="yoffset" ) SetY( GetY()+fParam(1) );
else if( sName=="zoffset" ) SetZ( GetZ()+fParam(1) );
else if( sName=="addx" ) SetX( GetX()+fParam(1) );
else if( sName=="addy" ) SetY( GetY()+fParam(1) );
else if( sName=="addz" ) SetZ( GetZ()+fParam(1) );
else if( sName=="zoom" ) SetZoom( fParam(1) );
else if( sName=="zoomx" ) SetZoomX( fParam(1) );
else if( sName=="zoomy" ) SetZoomY( fParam(1) );