Changeset 12400 for code/branches/OrxoBlox_FS19/src/modules
- Timestamp:
- May 20, 2019, 2:26:49 PM (5 years ago)
- Location:
- code/branches/OrxoBlox_FS19/src/modules
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBlox.h
r12396 r12400 71 71 WeakPtr<OrxoBloxWall> futureWall_; 72 72 int counter; 73 const int max_counter = 4;73 const int max_counter = 5; 74 74 75 75 }; -
code/branches/OrxoBlox_FS19/src/modules/OrxoBlox/OrxoBloxWall.cc
r12395 r12400 43 43 float x_=(this->center_->getFieldDimension()).x; 44 44 float y_=(this->center_->getFieldDimension()).y; 45 stone->setPosition(size_*i -x_/2 +4.5f, -3.5f, -y_/2 + 6.5f);45 stone->setPosition(size_*i -x_/2 +4.5f, -3.5f, -y_/2 - 2.25f); 46 46 47 47 -
code/branches/OrxoBlox_FS19/src/modules/weapons/projectiles/BallProjectile.cc
r12396 r12400 28 28 this->setCollisionShapeRadius(2.5); 29 29 this->setDamage(1000); 30 30 orxoblox_->count(); 31 31 //setEffect("Orxonox/sparks2"); 32 32 } … … 146 146 position.z = this-> fieldHeight_; 147 147 148 orxoblox_->count();149 148 suicidal = true; 150 149
Note: See TracChangeset
for help on using the changeset viewer.