Changeset 11069
- Timestamp:
- Jan 17, 2016, 6:44:19 PM (9 years ago)
- 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 55 55 this->enableCollisionCallback(); 56 56 this->setCollisionResponse(true); 57 this->setCollisionType( Static);57 this->setCollisionType(CollisionType::Static); 58 58 } 59 59 -
code/branches/cpp11_v3/src/modules/hover/HoverWall.cc
r11065 r11069 51 51 this->enableCollisionCallback(); 52 52 this->setCollisionResponse(true); 53 this->setCollisionType( Static);53 this->setCollisionType(CollisionType::Static); 54 54 } 55 55 -
code/branches/cpp11_v3/src/modules/overlays/hud/HUDWeaponMode.cc
r11065 r11069 76 76 textOverlayLeft_->setPickPoint(Vector2(0.0f,0.0f)); 77 77 textOverlayLeft_->setVisible(true); 78 textOverlayLeft_->setAlignment(OverlayText:: Center);78 textOverlayLeft_->setAlignment(OverlayText::Alignment::Center); 79 79 textOverlayLeft_->setTextSize(0.02f); 80 80 textOverlayLeft_->setColour(ColourValue(0.21,0.70,0.21,1.0)); … … 87 87 textOverlayRight_->setPickPoint(Vector2(0.0f,0.0f)); 88 88 textOverlayRight_->setVisible(true); 89 textOverlayRight_->setAlignment(OverlayText:: Center);89 textOverlayRight_->setAlignment(OverlayText::Alignment::Center); 90 90 textOverlayRight_->setTextSize(0.02f); 91 91 textOverlayRight_->setColour(ColourValue(0.21,0.70,0.21,1.0)); -
code/branches/cpp11_v3/src/modules/weapons/projectiles/MineProjectile.cc
r11065 r11069 121 121 this->enableCollisionCallback(); 122 122 this->setCollisionResponse(true); 123 this->setCollisionType( Dynamic);123 this->setCollisionType(CollisionType::Dynamic); 124 124 125 125 // Create a sphere collision shape and attach it to the projectile.
Note: See TracChangeset
for help on using the changeset viewer.