Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1482


Ignore:
Timestamp:
May 29, 2008, 11:38:07 AM (16 years ago)
Author:
scheusso
Message:

rotatingprojectiles are now synchronisable 'cough cough' @x3n ;)

Location:
code/branches/network
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/branches/network/bin/run-script

    r1293 r1482  
    88fi
    99
    10 if [[ ! -f orge.cfg ]] ; then
     10if [[ -ne orge.cfg ]] ; then
    1111        cp ogre.cfg-init ogre.cfg
    1212fi
  • code/branches/network/src/orxonox/objects/RotatingProjectile.cc

    r1480 r1482  
    4343        this->time_ = 0;
    4444
    45         if (this->owner_)
     45        if (/*this->owner_*/true)
    4646        {
    4747            this->rotatingBillboard1_.setBillboardSet("Examples/Flare", ColourValue(1.0, 0.0, 0.0), 1);
  • code/branches/network/src/orxonox/objects/RotatingProjectile.h

    r1479 r1482  
    88namespace orxonox
    99{
    10     class _OrxonoxExport RotatingProjectile : public Projectile
     10    class _OrxonoxExport RotatingProjectile : public Projectile/*, public network::Synchronisable*/
    1111    {
    1212        public:
     
    1515            void setConfigValues();
    1616            virtual void tick(float dt);
     17            virtual bool create(){return Projectile::create();}
    1718
    1819        private:
Note: See TracChangeset for help on using the changeset viewer.