Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 650


Ignore:
Timestamp:
Dec 19, 2007, 10:05:34 AM (16 years ago)
Author:
rgrieder
Message:
  • little changes, added Fighter (commented)
Location:
code/branches/FICN
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FICN/bin/levels/sample.oxw

    r648 r650  
    3030  <world>
    3131    <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" /-->
    3435    <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" />
    3536
  • code/branches/FICN/src/orxonox/objects/Fighter.cc

    r645 r650  
    4747        RegisterObject(Fighter);
    4848
    49         SetConfigValue(bInvertMouse_, true);
     49        SetConfigValue(bInvertMouse_, false);
    5050
    5151        this->setMouseEventCallback_ = false;
     
    203203    {
    204204        this->mouseX += e.state.X.rel;
    205         if (this->bInvertMouse_)
    206             this->mouseY += e.state.Y.rel;
    207         else
     205        //if (this->bInvertMouse_)
     206            //this->mouseY += e.state.Y.rel;
     207        //else
    208208            this->mouseY -= e.state.Y.rel;
    209209
Note: See TracChangeset for help on using the changeset viewer.