Changeset 5365 for data/media/levels
- Timestamp:
- Dec 16, 2008, 7:10:01 PM (16 years ago)
- Location:
- data/media/levels
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
data/media/levels/CuboidSpaceStation.lua
r5341 r5365 38 38 if ranSeed == 0 then 39 39 math.randomseed(os.time()) 40 math.random()41 40 else 42 41 math.randomseed(ranSeed) 43 math.random()44 42 end 45 43 -- End create randomseed. … … 196 194 -- Insert the CuboidConnectionBody, it is three griddimensions long and one wide and high and can have only connections at griddimension 1 197 195 -- (except the side in direction of griddimension 2) and griddimension 3 (except the side in direction of griddimension 2). 198 bodyParts[3][0][0][0][4]="CuboidConn ectionBody.mesh"196 bodyParts[3][0][0][0][4]="CuboidConnBody.mesh" 199 197 bodyParts[3][0][0][0][5]="pitch=-90" 200 198 … … 219 217 backPartsIndex[0]="" 220 218 221 -- Insert the thruster, which is one griddimension long, wide and high, it can only have a connection into the negative z-direction.219 -- Insert the thruster, which is one griddimension long, two wide and high, it can only have a connection into the negative z-direction. 222 220 backPartsIndex[1]=4 223 221 bodyParts[backPartsIndex[1]][0][0][0][4]="Thruster.mesh" … … 228 226 bodyParts[backPartsIndex[1]][0][0][0][0]=1 229 227 bodyParts[backPartsIndex[1]][0][0][0][3]="-" 228 bodyParts[backPartsIndex[1]][1][0][0][0]=1 229 bodyParts[backPartsIndex[1]][-1][0][0][0]=1 230 bodyParts[backPartsIndex[1]][0][1][0][0]=1 231 bodyParts[backPartsIndex[1]][0][-1][0][0]=1 230 232 -- End insert the thruster. 231 233 … … 242 244 bodyParts[frontPartsIndex[1]][0][0][0][4]="SemiCircleCockpit.mesh" 243 245 bodyParts[frontPartsIndex[1]][0][0][0][5]="pitch=-90 yaw=180" 244 bodyParts[frontPartsIndex[1]][0][0][0][9]="<B linkingBillboard position=\"0,-0.1,2.2\" material=\"Examples/Flare\" colour=\"1.0, 1.0, 1.0\" amplitude=0.01 frequency=0.5 quadratic=1 /> <BlinkingBillboard position=\"0.5,-0.1,2.2\" material=\"Examples/Flare\" colour=\"1.0, 1.0, 1.0\" amplitude=0.01 frequency=0.5 phase=120 quadratic=1 /> <BlinkingBillboard position=\"-0.5,-0.1,2.2\" material=\"Examples/Flare\" colour=\"1.0, 1.0, 1.0\" amplitude=0.01 frequency=0.5 phase=240 quadratic=1/>"246 bodyParts[frontPartsIndex[1]][0][0][0][9]="<Billboard scale=0.01 position=\"0,-0.1,2.2\" colour=\"1.0,1.0,1.0\" material=\"Examples/Flare\" /> <Billboard scale=0.01 position=\"0.5,-0.1,2.2\" colour=\"1.0,1.0,1.0\" material=\"Examples/Flare\" /> <Billboard scale=0.01 position=\"-0.5,-0.1,2.2\" colour=\"1.0,1.0,1.0\" material=\"Examples/Flare\" />" 245 247 246 248 bodyParts[frontPartsIndex[1]][0][0][0][0]=1 -
data/media/levels/CuboidSpaceStation.oxw
r5341 r5365 27 27 28 28 <!-- Here I add a space station at position 0,0,0 without velocity and no rotation. 29 ---- The argument false is the value for ranSeed, which means the space station will be different each time.30 29 ---> 31 30 <?lua
Note: See TracChangeset
for help on using the changeset viewer.