- Timestamp:
- Oct 26, 2005, 11:31:18 PM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/debug.h
r5362 r5439 59 59 //////////////////// 60 60 // FRAMEWORK 61 #define DEBUG_MODULE_ORXONOX 2 62 #define DEBUG_MODULE_WORLD 2 63 #define DEBUG_MODULE_NETWORK 2 61 #define DEBUG_MODULE_BASE 2 62 #define DEBUG_MODULE_ORXONOX 2 63 #define DEBUG_MODULE_WORLD 2 64 #define DEBUG_MODULE_NETWORK 2 64 65 65 66 // LOADING 66 #define DEBUG_MODULE_LOAD 267 #define DEBUG_MODULE_IMPORTER 267 #define DEBUG_MODULE_LOAD 2 68 #define DEBUG_MODULE_IMPORTER 2 68 69 69 70 // ENGINES 70 #define DEBUG_MODULE_GRAPHICS 271 #define DEBUG_MODULE_EVENT 272 #define DEBUG_MODULE_PHYSICS 273 #define DEBUG_MODULE_GARBAGE_COLLECTOR 274 #define DEBUG_MODULE_OBJECT_MANAGER 275 #define DEBUG_MODULE_ANIM 276 #define DEBUG_MODULE_COLLISON_DETECTION 277 #define DEBUG_MODULE_SPATIAL_SEPARATION 278 #define DEBUG_MODULE_GUI 271 #define DEBUG_MODULE_GRAPHICS 2 72 #define DEBUG_MODULE_EVENT 2 73 #define DEBUG_MODULE_PHYSICS 2 74 #define DEBUG_MODULE_GARBAGE_COLLECTOR 2 75 #define DEBUG_MODULE_OBJECT_MANAGER 2 76 #define DEBUG_MODULE_ANIM 2 77 #define DEBUG_MODULE_COLLISON_DETECTION 2 78 #define DEBUG_MODULE_SPATIAL_SEPARATION 2 79 #define DEBUG_MODULE_GUI 2 79 80 80 81 // MISC 81 #define DEBUG_MODULE_TRACK_MANAGER 282 #define DEBUG_MODULE_MATH 283 84 #define DEBUG_MODULE_PNODE 285 #define DEBUG_MODULE_WORLD_ENTITY 286 87 #define DEBUG_MODULE_WEAPON 282 #define DEBUG_MODULE_TRACK_MANAGER 2 83 #define DEBUG_MODULE_MATH 2 84 85 #define DEBUG_MODULE_PNODE 2 86 #define DEBUG_MODULE_WORLD_ENTITY 2 87 88 #define DEBUG_MODULE_WEAPON 2 88 89 89 90 #define HARD_DEBUG_LEVEL DEBUG_SPECIAL_MODULE -
trunk/src/lib/lang/base_object.cc
r5113 r5439 15 15 co-programmer: ... 16 16 */ 17 17 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_BASE 18 18 19 19 #include "base_object.h" … … 29 29 * sets the name from a LoadXML-Element 30 30 * @param root the element to load from 31 */31 */ 32 32 BaseObject::BaseObject(const TiXmlElement* root) 33 33 { … … 57 57 * loads parameters 58 58 * @param root the element to load from 59 */59 */ 60 60 void BaseObject::loadParams(const TiXmlElement* root) 61 61 { -
trunk/src/lib/particles/particle_engine.cc
r5357 r5439 120 120 121 121 /** 122 \brief Connects a ParticleSystem to a ParticleSystem thus emitting Particles.122 * @brief Connects a ParticleSystem to a ParticleSystem thus emitting Particles. 123 123 * @param emitter the Emitter to connect to the System 124 124 * @param system the System to connect to the Emitter -
trunk/src/world_entities/power_ups/power_up.cc
r5434 r5439 1 2 3 1 /* 4 2 orxonox - the future of 3D-vertical-scrollers … … 12 10 13 11 ### File Specific: 14 main-programmer: ...12 main-programmer: Benjamin Grauer 15 13 co-programmer: ... 16 14 */ 15 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY 17 17 18 18 -
trunk/src/world_entities/power_ups/turret_power_up.cc
r5437 r5439 14 14 */ 15 15 16 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_WORLD_ENTITY 16 17 17 18 #include "turret_power_up.h" … … 53 54 this->sphereModel = new PrimitiveModel(PRIM_SPHERE, 7, 5); 54 55 this->sphereMaterial = new Material; 55 this->sphereMaterial->setTransparency(. 0001);56 this->sphereMaterial->setTransparency(.1); 56 57 this->sphereMaterial->setDiffuse(.1, .1, .8); 57 58
Note: See TracChangeset
for help on using the changeset viewer.