Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 6514 in orxonox.OLD for branches/network/src


Ignore:
Timestamp:
Jan 17, 2006, 10:44:34 PM (18 years ago)
Author:
patrick
Message:

network: added the ImageEntity WorldEntity class which will soon display an image

Location:
branches/network/src
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/network/src/defs/class_id.h

    r6502 r6514  
    9999  CL_PLAYER                     =    0x00202000,
    100100  CL_NPC                        =    0x00204000,
     101  CL_IMAGE_ENTITY               =    0x00206000,
    101102  CL_PROJECTILE                 =    0x00208000,
    102103  CL_WEAPON                     =    0x00210000,
  • branches/network/src/world_entities/Makefile.am

    r6455 r6514  
    2222                  world_entities/character_attributes.cc \
    2323                  world_entities/test_entity.cc \
     24                  world_entities/image_entity.cc \
    2425                  \
    2526                  world_entities/weapons/weapon_manager.cc \
     
    7071                 world_entities/character_attributes.h \
    7172                 world_entities/test_entity.h \
     73                 world_entities/image_entity.h \
    7274                 \
    7375                 world_entities/weapons/weapon_manager.h \
  • branches/network/src/world_entities/skybox.cc

    r6511 r6514  
    210210void SkyBox::draw()
    211211{
    212   glPushAttrib(GL_LIGHTING_BIT);
     212  glPushAttrib(GL_ENABLE_BIT);
     213//   glPushAttrib(GL_LIGHTING_BIT);
    213214  glDisable(GL_LIGHTING);
     215
    214216  WorldEntity::draw();
    215 //   glEnable(GL_LIGHTING);
     217
    216218  glPopAttrib();
    217219
Note: See TracChangeset for help on using the changeset viewer.