Changeset 11772 for code/branches/Presentation_HS17_merge
- Timestamp:
- Feb 18, 2018, 5:49:32 PM (7 years ago)
- Location:
- code/branches/Presentation_HS17_merge
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/Presentation_HS17_merge/data/levels/SOB.oxw
r11766 r11772 7 7 8 8 <?lua 9 include("HUDTemplates3.oxo")10 include("jumpHUD.oxo")11 9 include("stats.oxo") 12 10 include("templates/lodInformation.oxt") … … 80 78 81 79 <Template name=gumbaShootable> 82 <SOBGumba BosscollisionType="dynamic" speed=60>80 <SOBGumba collisionType="dynamic" speed=60> 83 81 <attached> 84 82 <Model mesh="Goomba.mesh" position="0,0,1" scale=3 pitch=90/> … … 87 85 <BoxCollisionShape position="0,0,0" halfExtents="5,5,3" /> 88 86 </collisionShapes> 89 </SOBGumba Boss>87 </SOBGumba> 90 88 </Template> 91 89 -
code/branches/Presentation_HS17_merge/src/modules/superorxobros/SOB.cc
r11769 r11772 91 91 } 92 92 93 center_->attach(figure_);94 93 figure_->setPosition(0, 0, 0); 95 94 } -
code/branches/Presentation_HS17_merge/src/modules/superorxobros/SOBFireball.cc
r11769 r11772 183 183 setVelocity(velocity); 184 184 185 if(abs(this->getPosition().z) > 1000) delete this;185 if(abs(this->getPosition().z) > 1000) this->destroyLater(); 186 186 187 187 } -
code/branches/Presentation_HS17_merge/src/modules/superorxobros/SOBGumba.cc
r11769 r11772 140 140 } 141 141 142 if(abs(this->getPosition().z) > 1000) delete this;142 if(abs(this->getPosition().z) > 1000) this->destroyLater(); 143 143 144 144 }
Note: See TracChangeset
for help on using the changeset viewer.