Changeset 3226 in orxonox.OLD for orxonox/trunk/src/world.cc
- Timestamp:
- Dec 20, 2004, 12:27:51 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world.cc
r3225 r3226 52 52 { 53 53 printf("World::~World() - deleting current world\n"); 54 CommandNode* cn = Orxonox::getInstance()->get _localinput();54 CommandNode* cn = Orxonox::getInstance()->getLocalInput(); 55 55 cn->unbind(this->localPlayer); 56 56 cn->reset(); … … 75 75 { 76 76 this->bPause = false; 77 CommandNode* cn = Orxonox::getInstance()->get _localinput();77 CommandNode* cn = Orxonox::getInstance()->getLocalInput(); 78 78 cn->addToWorld(this); 79 79 cn->enable(true); … … 148 148 // bind input 149 149 Orxonox *orx = Orxonox::getInstance(); 150 orx->get _localinput()->bind (myPlayer);150 orx->getLocalInput()->bind (myPlayer); 151 151 152 152 // bind camera … … 188 188 // bind input 189 189 Orxonox *orx = Orxonox::getInstance(); 190 orx->get _localinput()->bind (myPlayer);190 orx->getLocalInput()->bind (myPlayer); 191 191 192 192 // bind camera … … 601 601 synchronize(); 602 602 // Process input 603 handle _input();603 handleInput(); 604 604 if( this->bQuitCurrentGame || this->bQuitOrxonox) 605 605 {
Note: See TracChangeset
for help on using the changeset viewer.