Changeset 9925 in orxonox.OLD for branches/network/src/world_entities/weather_effects
- Timestamp:
- Nov 9, 2006, 7:20:19 PM (18 years ago)
- Location:
- branches/network/src/world_entities/weather_effects
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/world_entities/weather_effects/cloud_effect.cc
r9869 r9925 30 30 #include "resource_shader.h" 31 31 32 #include "class_id_DEPRECATED.h" 32 33 33 34 34 Vector CloudEffect::cloudColor; … … 41 41 float CloudEffect::fadeTime; 42 42 43 ObjectListDefinition ID(CloudEffect, CL_CLOUD_EFFECT);43 ObjectListDefinition(CloudEffect); 44 44 45 45 -
branches/network/src/world_entities/weather_effects/fog_effect.cc
r9869 r9925 30 30 SHELL_COMMAND(fadeout, FogEffect, fadeOutFog); 31 31 32 #include "class_id_DEPRECATED.h" 32 33 33 34 34 CREATE_SCRIPTABLE_CLASS(FogEffect, -
branches/network/src/world_entities/weather_effects/lense_flare.cc
r9869 r9925 34 34 #include "camera.h" 35 35 36 #include "class_id_DEPRECATED.h" 37 38 ObjectListDefinition ID(LenseFlare, CL_LENSE_FLARE);36 37 38 ObjectListDefinition(LenseFlare); 39 39 CREATE_FACTORY(LenseFlare); 40 40 -
branches/network/src/world_entities/weather_effects/lightning_effect.cc
r9869 r9925 28 28 #include "script_class.h" 29 29 #include "debug.h" 30 #include "class_id_DEPRECATED.h" 31 32 ObjectListDefinition ID(LightningEffect, CL_LIGHTNING_EFFECT);30 31 32 ObjectListDefinition(LightningEffect); 33 33 34 34 SHELL_COMMAND(activate, LightningEffect, activateLightning); -
branches/network/src/world_entities/weather_effects/rain_effect.cc
r9869 r9925 32 32 #include "debug.h" 33 33 34 #include "class_id_DEPRECATED.h" 35 36 ObjectListDefinition ID(RainEffect, CL_RAIN_EFFECT);34 35 36 ObjectListDefinition(RainEffect); 37 37 38 38 // Define shell commands -
branches/network/src/world_entities/weather_effects/snow_effect.cc
r9869 r9925 30 30 #include "cloud_effect.h" 31 31 32 #include "class_id_DEPRECATED.h" 33 34 ObjectListDefinition ID(SnowEffect, CL_SNOW_EFFECT);32 33 34 ObjectListDefinition(SnowEffect); 35 35 SHELL_COMMAND(activate, SnowEffect, activateSnow); 36 36 SHELL_COMMAND(deactivate, SnowEffect, deactivateSnow); -
branches/network/src/world_entities/weather_effects/volfog_effect.cc
r9869 r9925 49 49 50 50 51 #include "class_id_DEPRECATED.h" 52 ObjectListDefinition ID(VolFogEffect, CL_VOLFOG_EFFECT);51 52 ObjectListDefinition(VolFogEffect); 53 53 CREATE_FACTORY(VolFogEffect); 54 54
Note: See TracChangeset
for help on using the changeset viewer.