Changeset 650 for code/branches/FICN/src
- Timestamp:
- Dec 19, 2007, 10:05:34 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.