Changeset 10154 in orxonox.OLD for branches/playability/src/world_entities
- Timestamp:
- Jan 1, 2007, 3:32:36 AM (18 years ago)
- Location:
- branches/playability/src/world_entities
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/playability/src/world_entities/Makefile.am
r10107 r10154 10 10 weapons/weapon.cc weapons/ammo_container.cc projectiles/projectile.cc \ 11 11 extendable.cc power_ups/power_up.cc power_ups/param_power_up.cc \ 12 power_ups/weapon_power_up.cc spawning_point.cc effects/explosion.cc effects/billboard.cc \12 power_ups/weapon_power_up.cc spawning_point.cc effects/explosion.cc effects/billboard.cc effects/wobblegrid.cc\ 13 13 effects/trail.cc elements/glgui_energywidget.cc elements/glgui_energywidgetvertical.cc 14 14 … … 18 18 weapons/weapon.h weapons/ammo_container.h projectiles/projectile.h \ 19 19 power_ups/power_up.h power_ups/param_power_up.h power_ups/weapon_power_up.h \ 20 spawning_point.h effects/explosion.h effects/billboard.h effects/trail.h \20 spawning_point.h effects/explosion.h effects/billboard.h effects/trail.h effects/wobblegrid.h\ 21 21 elements/glgui_energywidget.h elements/glgui_energywidgetvertical.h 22 22 -
branches/playability/src/world_entities/space_ships/space_ship.cc
r10152 r10154 37 37 #include "particles/sprite_particles.h" 38 38 #include "effects/trail.h" 39 40 #include "effects/wobblegrid.h" 39 41 40 42 #include "util/loading/factory.h" … … 370 372 371 373 this->toList(OM_GROUP_00); 374 375 Wobblegrid* test = new Wobblegrid(5); 376 test->setTexture("maps/fichte_ast6.tga"); 377 378 test->setAbsCoor( this->getAbsCoor() + Vector(0, 2, 0)); 379 test->setParent( this); 380 372 381 } 373 382
Note: See TracChangeset
for help on using the changeset viewer.