Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 11069


Ignore:
Timestamp:
Jan 17, 2016, 6:44:19 PM (8 years ago)
Author:
landauf
Message:

fixed enums

Location:
code/branches/cpp11_v3/src/modules
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • code/branches/cpp11_v3/src/modules/hover/HoverFlag.cc

    r11065 r11069  
    5555        this->enableCollisionCallback();
    5656        this->setCollisionResponse(true);
    57         this->setCollisionType(Static);
     57        this->setCollisionType(CollisionType::Static);
    5858    }
    5959
  • code/branches/cpp11_v3/src/modules/hover/HoverWall.cc

    r11065 r11069  
    5151        this->enableCollisionCallback();
    5252        this->setCollisionResponse(true);
    53         this->setCollisionType(Static);
     53        this->setCollisionType(CollisionType::Static);
    5454    }
    5555
  • code/branches/cpp11_v3/src/modules/overlays/hud/HUDWeaponMode.cc

    r11065 r11069  
    7676        textOverlayLeft_->setPickPoint(Vector2(0.0f,0.0f));
    7777        textOverlayLeft_->setVisible(true);
    78         textOverlayLeft_->setAlignment(OverlayText::Center);
     78        textOverlayLeft_->setAlignment(OverlayText::Alignment::Center);
    7979        textOverlayLeft_->setTextSize(0.02f);
    8080        textOverlayLeft_->setColour(ColourValue(0.21,0.70,0.21,1.0));
     
    8787        textOverlayRight_->setPickPoint(Vector2(0.0f,0.0f));
    8888        textOverlayRight_->setVisible(true);
    89         textOverlayRight_->setAlignment(OverlayText::Center);
     89        textOverlayRight_->setAlignment(OverlayText::Alignment::Center);
    9090        textOverlayRight_->setTextSize(0.02f);
    9191        textOverlayRight_->setColour(ColourValue(0.21,0.70,0.21,1.0));
  • code/branches/cpp11_v3/src/modules/weapons/projectiles/MineProjectile.cc

    r11065 r11069  
    121121            this->enableCollisionCallback();
    122122            this->setCollisionResponse(true);
    123             this->setCollisionType(Dynamic);
     123            this->setCollisionType(CollisionType::Dynamic);
    124124
    125125            // Create a sphere collision shape and attach it to the projectile.
Note: See TracChangeset for help on using the changeset viewer.