Changeset 11353 for code/trunk/src/orxonox
- Timestamp:
- Mar 9, 2017, 2:46:20 PM (8 years ago)
- Location:
- code/trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
/code/branches/HUD_HS16 (added) merged: 11212,11222-11223,11240-11241,11252-11253,11262-11264,11277,11293,11295,11305,11314,11323,11325,11336
- Property svn:mergeinfo changed
-
code/trunk/src/orxonox/CMakeLists.txt
r11080 r11353 20 20 INCLUDE_DIRECTORIES( 21 21 ${CMAKE_SOURCE_DIR}/src/libraries 22 ${CMAKE_SOURCE_DIR}/src/modules 22 23 ${CMAKE_CURRENT_SOURCE_DIR} 23 24 ) -
code/trunk/src/orxonox/controllers/HumanController.h
r11071 r11353 69 69 void stopBoosting(void); 70 70 71 72 71 static void greet(); 73 72 static void switchCamera(); -
code/trunk/src/orxonox/gamestates/GSLevel.cc
r11071 r11353 50 50 #include "PlayerManager.h" 51 51 #include "GSRoot.h" 52 // #include "overlays/hud/HUDPickupSystem.h" 52 53 53 54 namespace orxonox … … 126 127 InputManager::getInstance().leaveState("game"); 127 128 129 // HUDPickupSystem* pickupSystem; 130 131 // for (HUDPickupSystem* hud : ObjectList<HUDPickupSystem>()) 132 // pickupSystem = hud; 133 134 // pickupSystem->repaint=false; 135 128 136 // disconnect all HumanPlayers 129 137 PlayerManager::getInstance().disconnectAllClients(); -
code/trunk/src/orxonox/gamestates/GSLevel.h
r11071 r11353 31 31 32 32 #include "OrxonoxPrereqs.h" 33 // #include "overlays/OverlaysPrereqs.h" 33 34 34 35 #include <string> -
code/trunk/src/orxonox/interfaces/Pickupable.h
r11071 r11353 96 96 97 97 /** 98 @brief Check whether the Pickupable is in the process of being destroyed. 99 @return Returns true if so. 100 */ 101 inline bool isBeingDestroyed(void) 102 { return this->beingDestroyed_; } 103 104 /** 98 105 @brief Returns whether the Pickupable is currently picked up. 99 106 @return Returns true if the Pickupable is currently picked up, false if not. … … 155 162 156 163 /** 157 @brief Check whether the Pickupable is in the process of being destroyed.158 @return Returns true if so.159 */160 inline bool isBeingDestroyed(void)161 { return this->beingDestroyed_; }162 163 /**164 164 @brief Facilitates the creation of a PickupSpawner upon dropping of the Pickupable. 165 165 This method must be implemented by any class directly inheriting from Pickupable.
Note: See TracChangeset
for help on using the changeset viewer.