- Timestamp:
- Jan 20, 2006, 12:54:48 AM (19 years ago)
- Location:
- trunk/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/defs/class_id.h
r6621 r6624 224 224 CL_FONT = 0x00000802, 225 225 226 CL_PARTICLE_EMITTER = 0x002018 12,226 CL_PARTICLE_EMITTER = 0x00201852, 227 227 CL_PARTICLE_SYSTEM = 0x00202000, 228 CL_SPRITE_PARTICLES = 0x00000813, 229 228 CL_SPRITE_PARTICLES = 0x00000853, 229 CL_SPARK_PARTICLES = 0x00000854, 230 CL_PNODE_PARTICLES = 0x00000855, 231 CL_DOT_PARTICLES = 0x00000856, 232 CL_MODEL_PARTICLES = 0x00000857, 233 // CL_TEMPLATE_PARTICLES = 0x00000857, 230 234 231 235 CL_MATERIAL = 0x00000804, -
trunk/src/lib/coord/p_node.cc
r6616 r6624 748 748 { 749 749 this->toStep += fabs(dt) * bias; 750 printf("%s::%s %f\n", this->getClassName(), this->getName(), this->toStep );750 //printf("%s::%s %f\n", this->getClassName(), this->getName(), this->toStep ); 751 751 Quaternion rotQuat = Quaternion::quatSlerp(this->relDirection,*this->toDirection, toStep); 752 752 if (this->relDirection.distance(rotQuat) >PNODE_ITERATION_DELTA) -
trunk/src/lib/event/event_handler.cc
r6619 r6624 262 262 SDL_WM_GrabInput(SDL_GRAB_OFF); 263 263 else 264 SDL_WM_GrabInput(SDL_GRAB_ON);264 ;//SDL_WM_GrabInput(SDL_GRAB_ON); 265 265 } 266 266 -
trunk/src/world_entities/projectiles/test_bullet.h
r6622 r6624 32 32 virtual void draw () const; 33 33 34 35 34 private: 36 35 static FastFactory* fastFactory;
Note: See TracChangeset
for help on using the changeset viewer.