Changeset 4318 in orxonox.OLD for orxonox/trunk/src/world_entities
- Timestamp:
- May 27, 2005, 12:53:34 AM (20 years ago)
- Location:
- orxonox/trunk/src/world_entities
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/world_entities/camera.cc
r3966 r4318 33 33 Camera::Camera(void) 34 34 { 35 this->setClass Name("Camera");35 this->setClassID(CL_CAMERA); 36 36 this->target = new CameraTarget(); 37 37 … … 190 190 CameraTarget::CameraTarget() 191 191 { 192 this->setClass Name("CameraTarget");192 this->setClassID(CL_CAMERA_TARGET); 193 193 this->setMode(PNODE_MOVEMENT); 194 194 } -
orxonox/trunk/src/world_entities/character_attributes.cc
r3583 r4318 29 29 CharacterAttributes::CharacterAttributes () 30 30 { 31 this->setClass Name ("CharacterAttributes");31 this->setClassID(CL_CHARACTER_ATTRIBUTES); 32 32 } 33 33 -
orxonox/trunk/src/world_entities/satellite.cc
r3750 r4318 31 31 Satellite::Satellite (Vector axis, float speed) 32 32 { 33 this->setClass Name ("Satellite");33 this->setClassID(CL_SATELLITE); 34 34 this->model = (Model*) ResourceManager::getInstance()->load("cube", RP_LEVEL); 35 35 this->speed = speed; -
orxonox/trunk/src/world_entities/skybox.cc
r4261 r4318 62 62 void SkyBox::preInit(void) 63 63 { 64 this->setClass Name("SkyBox");64 this->setClassID(CL_SKYBOX); 65 65 this->skyModel = NULL; 66 66 this->material = new Material*[6]; -
orxonox/trunk/src/world_entities/terrain.cc
r4136 r4318 77 77 void Terrain::init(void) 78 78 { 79 this->setClassName ("Terrain"); 80 79 this->setClassID(CL_TERRAIN); 81 80 this->objectList = 0; 82 81 } -
orxonox/trunk/src/world_entities/world_entity.cc
r4261 r4318 30 30 WorldEntity::WorldEntity(const TiXmlElement* root) 31 31 { 32 this->setClass Name ("WorldEntity");32 this->setClassID(CL_WORLD_ENTITY); 33 33 this->model = NULL; 34 34
Note: See TracChangeset
for help on using the changeset viewer.