Changeset 9760 in orxonox.OLD for branches/new_class_id/src/world_entities
- Timestamp:
- Sep 19, 2006, 3:44:38 PM (18 years ago)
- Location:
- branches/new_class_id/src/world_entities
- Files:
-
- 3 edited
- 22 copied
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/world_entities/WorldEntities.am
r9758 r9760 86 86 world_entities/particles/dot_particles.cc \ 87 87 \ 88 world_entities/particles/quick_animation.cc 88 world_entities/particles/quick_animation.cc \ 89 \ 90 \ 91 world_entities/weather_effects/graphics_effect.cc \ 92 world_entities/weather_effects/atmospheric_engine.cc \ 93 world_entities/weather_effects/weather_effect.cc \ 94 world_entities/weather_effects/sun_effect.cc \ 95 world_entities/weather_effects/fog_effect.cc \ 96 world_entities/weather_effects/volfog_effect.cc \ 97 world_entities/weather_effects/rain_effect.cc \ 98 world_entities/weather_effects/snow_effect.cc \ 99 world_entities/weather_effects/cloud_effect.cc \ 100 world_entities/weather_effects/lightning_effect.cc \ 101 world_entities/weather_effects/lense_flare.cc 102 89 103 90 104 … … 175 189 particles/dot_particles.h \ 176 190 \ 177 particles/quick_animation.h 178 191 particles/quick_animation.h \ 192 \ 193 \ 194 weather_effects/graphics_effect.h \ 195 weather_effects/atmospheric_engine.h \ 196 weather_effects/weather_effect.h \ 197 weather_effects/sun_effect.h \ 198 weather_effects/fog_effect.h \ 199 weather_effects/volfog_effect.h \ 200 weather_effects/rain_effect.h \ 201 weather_effects/snow_effect.h \ 202 weather_effects/cloud_effect.h \ 203 weather_effects/lightning_effect.h \ 204 weather_effects/lense_flare.h 205 -
branches/new_class_id/src/world_entities/particles/dot_particles.cc
r9716 r9760 22 22 #include "material.h" 23 23 #include "state.h" 24 #include "shell_command.h"25 24 26 25 #include "class_id_DEPRECATED.h" … … 28 27 ObjectListDefinitionID(DotParticles, CL_DOT_PARTICLES); 29 28 CREATE_FACTORY(DotParticles); 30 31 SHELL_COMMAND(texture, DotParticles, setMaterialTexture)32 ->defaultValues("maps/evil-flower.png");33 34 29 35 30 … … 80 75 { 81 76 ParticleSystem::loadParams(root); 82 83 LoadParam(root, "texture", this, DotParticles, setMaterialTexture);84 77 } 85 78 -
branches/new_class_id/src/world_entities/particles/dot_particles.h
r9715 r9760 22 22 virtual void loadParams(const TiXmlElement* root); 23 23 24 void setMaterialTexture(const std::string& textureFile);25 26 24 /** @returns the Material that lies on this particles */ 27 25 inline const Material* getMaterial() const { return &this->material; }; -
branches/new_class_id/src/world_entities/weather_effects/atmospheric_engine.cc
r9759 r9760 18 18 #include "util/loading/resource_manager.h" 19 19 20 #include " effects/fog_effect.h"20 #include "weather_effects/fog_effect.h" 21 21 22 22 #include "util/loading/load_param_xml.h"
Note: See TracChangeset
for help on using the changeset viewer.