Changeset 11420
- Timestamp:
- May 18, 2017, 2:16:01 PM (8 years ago)
- Location:
- code/branches/SuperOrxoBros_FS17
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/SuperOrxoBros_FS17/data/levels/SOB.oxw
r11419 r11420 1 1 <LevelInfo 2 name = "S OOOOOOOOOOOB"3 description = " Jump as high as you can. Use the mouse to guide the jumper."2 name = "Super Orxo Bros." 3 description = "The retro-game Super Mario Bros. in Orxonox." 4 4 tags = "minigame" 5 5 screenshot = "jump.png" … … 130 130 <!--Gumba--> 131 131 132 <SOBGumba collisionType="dynamic" speed=40 0position = "240,0,0">132 <SOBGumba collisionType="dynamic" speed=40 position = "240,0,0"> 133 133 <attached> 134 134 <Model mesh="Goomba.mesh" position="0,0,1" scale=3 pitch=90/> -
code/branches/SuperOrxoBros_FS17/src/modules/superorxobros/SOBCoin.cc
r11416 r11420 73 73 Vector3 velocity = getVelocity(); 74 74 velocity.z = speed_; 75 75 setOrientation(Vector3::UNIT_Z, getOrientation().getRoll() + 2*dt*Radian(6)); 76 76 setVelocity(velocity); 77 77 -
code/branches/SuperOrxoBros_FS17/src/modules/superorxobros/SOBFigure.cc
r11418 r11420 251 251 252 252 253 //Left-right movement with acceleration 253 //Left-right movement with acceleration and rotation 254 254 float rot = getOrientation().getRoll().valueDegrees(); 255 255 if (moveRightPressed_) {
Note: See TracChangeset
for help on using the changeset viewer.