Changeset 650
- Timestamp:
- Dec 19, 2007, 10:05:34 AM (17 years ago)
- Location:
- code/branches/FICN
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FICN/bin/levels/sample.oxw
r648 r650 30 30 <world> 31 31 <Ambient colourvalue="1,1,1" /> 32 <Skybox src="Orxonox/StarfieldSkyBox" /> 33 32 <Skybox src="Orxonox/StarSkyBox" /> 33 34 <!--Fighter camera="true" position="0,0,0" scale="10" yaw="-90" pitch="-90" mesh="assf3.mesh" forward="500" rotateupdown="200" rotaterightleft="200" looprightleft="200" /--> 34 35 <SpaceShip camera="true" position="0,0,0" scale="10" yaw="-90" pitch="-90" mesh="assf3.mesh" maxSpeed="500" maxSideAndBackSpeed="50" maxRotation="1.0" transAcc="200" rotAcc="3.0" transDamp="75" rotDamp="1.0" /> 35 36 -
code/branches/FICN/src/orxonox/objects/Fighter.cc
r645 r650 47 47 RegisterObject(Fighter); 48 48 49 SetConfigValue(bInvertMouse_, true);49 SetConfigValue(bInvertMouse_, false); 50 50 51 51 this->setMouseEventCallback_ = false; … … 203 203 { 204 204 this->mouseX += e.state.X.rel; 205 if (this->bInvertMouse_)206 this->mouseY += e.state.Y.rel;207 else205 //if (this->bInvertMouse_) 206 //this->mouseY += e.state.Y.rel; 207 //else 208 208 this->mouseY -= e.state.Y.rel; 209 209
Note: See TracChangeset
for help on using the changeset viewer.