- Timestamp:
- 02/20/07 12:45:16 (18 years ago)
- Location:
- OGRE/trunk/ogre_changes/Ogre1.2/OgreMain
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
OGRE/trunk/ogre_changes/Ogre1.2/OgreMain/include/OgreFrameListener.h
r1591 r2129 84 84 #ifdef GAMETOOLS_ILLUMINATION_MODULE 85 85 protected: 86 int priority;86 unsigned int priority; 87 87 88 88 public: … … 91 91 return priority < l->priority; 92 92 } 93 int getPriority(){return priority;}94 void setPriority( int p){priority = p;}95 FrameListener(){priority = 0;}93 unsigned int getPriority(){return priority;} 94 void setPriority(unsigned int p){priority = p;} 95 FrameListener(){priority = 1;} 96 96 #endif 97 97 public: -
OGRE/trunk/ogre_changes/Ogre1.2/OgreMain/src/OgrePredefinedControllers.cpp
r1682 r2129 40 40 // Register self 41 41 #ifdef GAMETOOLS_ILLUMINATION_MODULE 42 this->setPriority( -1000);42 this->setPriority(0); 43 43 #endif 44 44 Root::getSingleton().addFrameListener(this);
Note: See TracChangeset
for help on using the changeset viewer.