Changeset 824
- Timestamp:
- Feb 17, 2008, 5:58:28 PM (17 years ago)
- Location:
- code/branches/hud
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/hud/cmake/FindOGRE.cmake
r823 r824 18 18 IF (WIN32) #Windows 19 19 MESSAGE(STATUS "Looking for OGRE") 20 SET(OGRE_INCLUDE_DIR /usr/include/OGRE../libs/ogre/OgreMain/include)21 SET(OGRE_LIB_DIR ${CMAKE_CURRENT_SOURCE_DIR}/usr/include/OGRE${CMAKE_CURRENT_SOURCE_DIR}/../libs/ogre/Samples/Common/bin/Release)20 SET(OGRE_INCLUDE_DIR ../libs/ogre/OgreMain/include) 21 SET(OGRE_LIB_DIR${CMAKE_CURRENT_SOURCE_DIR}/../libs/ogre/Samples/Common/bin/Release) 22 22 SET(OGRE_LIBRARIES debug OgreMain_d optimized OgreMain) 23 23 ELSE (WIN32) #Unix -
code/branches/hud/src/orxonox/OrxonoxPrereqs.h
r790 r824 92 92 class ParticleInterface; 93 93 class HUD; 94 class Bar; 94 95 } 95 96 -
code/branches/hud/src/orxonox/hud/Bar.cc
r823 r824 37 37 { 38 38 using namespace Ogre; 39 39 40 40 Bar::Bar(void){} 41 41 42 42 Bar::~Bar(void){} 43 44 43 44 45 45 /* void Bar::setPercentage(Ogre::Real percentage){ 46 46 percentage_=percentage; … … 57 57 58 58 59 59 60 60 void Bar::setColor(ColourValue color){ 61 61 color_=color; 62 62 setColour(color); 63 63 } 64 65 66 64 67 65 68 66 }
Note: See TracChangeset
for help on using the changeset viewer.