Changeset 6514 in orxonox.OLD for branches/network
- Timestamp:
- Jan 17, 2006, 10:44:34 PM (19 years ago)
- Location:
- branches/network/src
- Files:
-
- 2 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/defs/class_id.h
r6502 r6514 99 99 CL_PLAYER = 0x00202000, 100 100 CL_NPC = 0x00204000, 101 CL_IMAGE_ENTITY = 0x00206000, 101 102 CL_PROJECTILE = 0x00208000, 102 103 CL_WEAPON = 0x00210000, -
branches/network/src/world_entities/Makefile.am
r6455 r6514 22 22 world_entities/character_attributes.cc \ 23 23 world_entities/test_entity.cc \ 24 world_entities/image_entity.cc \ 24 25 \ 25 26 world_entities/weapons/weapon_manager.cc \ … … 70 71 world_entities/character_attributes.h \ 71 72 world_entities/test_entity.h \ 73 world_entities/image_entity.h \ 72 74 \ 73 75 world_entities/weapons/weapon_manager.h \ -
branches/network/src/world_entities/skybox.cc
r6511 r6514 210 210 void SkyBox::draw() 211 211 { 212 glPushAttrib(GL_LIGHTING_BIT); 212 glPushAttrib(GL_ENABLE_BIT); 213 // glPushAttrib(GL_LIGHTING_BIT); 213 214 glDisable(GL_LIGHTING); 215 214 216 WorldEntity::draw(); 215 // glEnable(GL_LIGHTING); 217 216 218 glPopAttrib(); 217 219
Note: See TracChangeset
for help on using the changeset viewer.