Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Dec 2, 2009, 2:40:22 PM (15 years ago)
Author:
wirthmi
Message:

More camera easing, new center overlay and pauseControl/resumeControl

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation2/src/orxonox/controllers/HumanController.cc

    r6191 r6195  
    6969        RegisterObject(HumanController);
    7070
     71        controlPaused_ = false;
     72
    7173        HumanController::localController_s = this;
    7274    }
     
    250252            HumanController::localController_s->controllableEntity_->getScene()->getRadar()->releaseFocus();
    251253    }
     254
     255    void HumanController::pauseControl()
     256    {
     257        if (HumanController::localController_s)
     258            HumanController::localController_s->doPauseControl();
     259    }
     260
     261    void HumanController::resumeControl()
     262    {
     263        if (HumanController::localController_s)
     264            HumanController::localController_s->doResumeControl();
     265    }
    252266}
Note: See TracChangeset for help on using the changeset viewer.