Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Oct 31, 2008, 1:27:44 AM (16 years ago)
Author:
landauf
Message:

renamed CameraHandler as CameraManager

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/objecthierarchy/src/orxonox/objects/worldentities/Camera.cc

    r2030 r2073  
    4141#include "core/ConfigValueIncludes.h"
    4242#include "objects/Scene.h"
    43 #include "CameraHandler.h"
     43#include "CameraManager.h"
    4444
    4545namespace orxonox
     
    102102    void Camera::requestFocus()
    103103    {
    104         CameraHandler::getInstance().requestFocus(this);
     104        CameraManager::getInstance().requestFocus(this);
    105105    }
    106106
    107107    void Camera::releaseFocus()
    108108    {
    109         CameraHandler::getInstance().releaseFocus(this);
     109        CameraManager::getInstance().releaseFocus(this);
    110110    }
    111111
    112112    /**
    113113        what to do when camera loses focus (do not request focus in this function!!)
    114         this is called by the CameraHandler singleton class to notify the camera
     114        this is called by the CameraManager singleton class to notify the camera
    115115    */
    116116    void Camera::removeFocus()
Note: See TracChangeset for help on using the changeset viewer.