Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Nov 20, 2017, 2:00:56 PM (7 years ago)
Author:
pascscha
Message:

skybox

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/FlappyOrx_HS17/src/modules/flappyorx/FlappyOrxHUDinfo.cc

    r11565 r11566  
    6868            if(not this->FlappyOrxGame->isDead()){
    6969                if(this->bShowPoints_){
    70                     const std::string& points = multi_cast<std::string>(this->FlappyOrxGame->getPoints());
     70                    const std::string& points = "Score: "+multi_cast<std::string>(this->FlappyOrxGame->getPoints());
    7171                    setTextSize(0.04);
    7272                    setPosition(Vector2(0.14, 0.02));
     
    7979            }
    8080            else{
    81                 if(this->bShowGameOver_){
     81                if(this->bShowPoints_){
     82                    setTextSize(0);
     83                }
     84                else if(this->bShowGameOver_){
    8285                    std::string message = this->FlappyOrxGame->getDeathMessage();
    8386                    setTextSize(0.1);
    8487                    setPosition(Vector2(.5, .5));
     88
     89                    setAlignment(OverlayText::Alignment::Center);
     90                   
    8591                    this->setCaption(message);
    8692                    this->setColour(ColourValue(1, 0, 0, 1));
Note: See TracChangeset for help on using the changeset viewer.