- Timestamp:
- May 29, 2008, 11:38:07 AM (16 years ago)
- Location:
- code/branches/network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/network/bin/run-script
r1293 r1482 8 8 fi 9 9 10 if [[ ! -forge.cfg ]] ; then10 if [[ -ne orge.cfg ]] ; then 11 11 cp ogre.cfg-init ogre.cfg 12 12 fi -
code/branches/network/src/orxonox/objects/RotatingProjectile.cc
r1480 r1482 43 43 this->time_ = 0; 44 44 45 if ( this->owner_)45 if (/*this->owner_*/true) 46 46 { 47 47 this->rotatingBillboard1_.setBillboardSet("Examples/Flare", ColourValue(1.0, 0.0, 0.0), 1); -
code/branches/network/src/orxonox/objects/RotatingProjectile.h
r1479 r1482 8 8 namespace orxonox 9 9 { 10 class _OrxonoxExport RotatingProjectile : public Projectile 10 class _OrxonoxExport RotatingProjectile : public Projectile/*, public network::Synchronisable*/ 11 11 { 12 12 public: … … 15 15 void setConfigValues(); 16 16 virtual void tick(float dt); 17 virtual bool create(){return Projectile::create();} 17 18 18 19 private:
Note: See TracChangeset
for help on using the changeset viewer.