Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10044 in orxonox.OLD


Ignore:
Timestamp:
Dec 12, 2006, 8:52:37 PM (17 years ago)
Author:
nicolasc
Message:

moved bolt.* to lbolt.* for maning consistency, plz rebuild
messing around in lbolt, something serious
updated lbolt model + texture

Location:
branches/playability/src/world_entities
Files:
2 added
2 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • branches/playability/src/world_entities/WorldEntities.am

    r10023 r10044  
    4242                world_entities/weapons/swarm_launcher.cc \
    4343                \
    44                 world_entities/projectiles/bolt.cc \
     44                world_entities/projectiles/lbolt.cc \
    4545                world_entities/projectiles/mbolt.cc \
    4646                world_entities/projectiles/hbolt.cc \
     
    154154                weapons/swarm_launcher.h \
    155155                \
    156                 projectiles/bolt.h \
     156                projectiles/lbolt.h \
    157157                projectiles/mbolt.h \
    158158                projectiles/hbolt.h \
  • branches/playability/src/world_entities/weapons/heavy_blaster.cc

    r9998 r10044  
    9595  pj->setParent(PNode::getNullParent());
    9696
    97   pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
     97//   pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
     98  pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*130 + VECTOR_RAND(1));
    9899
    99100  pj->setAbsCoor(this->getEmissionPoint());
  • branches/playability/src/world_entities/weapons/light_blaster.cc

    r9998 r10044  
    6363  this->setCapability(WTYPE_ALLDIRS | WTYPE_DIRECTIONAL | WTYPE_LIGHT);
    6464  //this->setProjectileTypeC("RailProjectile");   // FIXME temp project type until the blaste class exist
    65   this->setProjectileTypeC("Bolt");   // Working; FIXME: add textures
     65  this->setProjectileTypeC("LBolt");   // Working; FIXME: add textures
    6666  this->prepareProjectiles(100);
    6767
     
    9393  pj->setParent(PNode::getNullParent());
    9494
    95   pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
     95//   pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*250 + VECTOR_RAND(5));
     96  pj->setVelocity(this->getAbsDir().apply(Vector(1,0,0))*80);
    9697
    9798  pj->setAbsCoor(this->getEmissionPoint());
Note: See TracChangeset for help on using the changeset viewer.