Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
May 30, 2011, 10:20:27 AM (13 years ago)
Author:
dafrick
Message:

Hack-ish Hack to just have one HUD at a time.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/orxonox/infos/PlayerInfo.cc

    r8561 r8682  
    176176        if (!entity)
    177177            return;
    178        
     178
     179        this->controllableEntity_->destroyHud(); // HACK-ish
    179180        this->previousControllableEntity_.push_back(WeakPtr<ControllableEntity>(this->controllableEntity_));
    180181        this->controllableEntity_ = entity;
     
    234235
    235236        this->controllableEntity_->setController(0);
     237        this->controllableEntity_->destroyHud(); // HACK-ish
    236238       
    237239//        this->controllableEntity_ = this->previousControllableEntity_.back();
     
    245247            this->controller_->setControllableEntity(this->controllableEntity_);
    246248
     249         // HACK-ish
     250        if(this->controllableEntity_ != NULL)
     251            this->controllableEntity_->createHud();
     252
    247253        if ( GameMode::isMaster() )
    248254            entity->removePlayer();
Note: See TracChangeset for help on using the changeset viewer.