Changeset 11596 for code/branches/FlappyOrx_HS17/data/levels/Invaders.oxw
- Timestamp:
- Nov 27, 2017, 2:05:12 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/FlappyOrx_HS17/data/levels/Invaders.oxw
r11589 r11596 49 49 50 50 <InvaderCenterPoint name=invadercenter /> 51 <?lua 52 for i = 1, 30, 1 do 53 j = math.random() 54 ?> 55 56 <MovableEntity 57 position = "<?lua print(i* 3000) ?>,0, <?lua print(j* 200) ?>" 51 52 <MovableEntity 53 position = "3000,0,0" 58 54 collisionType = dynamic 59 55 linearDamping = 0.8 60 56 angularDamping = 0 61 scale = " <?lua print(10)?>"57 scale = "10" 62 58 collisiondamage = 0 63 59 enablecollisiondamage = true … … 65 61 66 62 <attached> 67 <Model mass="1000" mesh="ast <?lua print( math.mod(i,6) + 1) ?>.mesh" />63 <Model mass="1000" mesh="ast6.mesh" /> 68 64 </attached> 69 65 <collisionShapes> 70 <SphereCollisionShape radius=" <?lua print(10) ?>" />66 <SphereCollisionShape radius="10" /> 71 67 </collisionShapes> 72 68 </MovableEntity> 73 69 74 <MovableEntity75 position = "<?lua print(i* 3000) ?>,0,<?lua print(-150 + j* 200) ?>"76 collisionType = dynamic77 linearDamping = 0.878 angularDamping = 079 scale = "<?lua print(10)?>"80 collisiondamage = 081 enablecollisiondamage = true82 >83 70 84 <attached>85 <Model mass="1000" mesh="ast<?lua print( math.mod(i,6) + 1) ?>.mesh" />86 </attached>87 <collisionShapes>88 <SphereCollisionShape radius="<?lua print(10) ?>" />89 </collisionShapes>90 </MovableEntity>91 92 <?lua93 end94 ?>95 71 96 72 </Scene>
Note: See TracChangeset
for help on using the changeset viewer.