home *** CD-ROM | disk | FTP | other *** search
/ PC Play 129 / pc play 129.iso / Demo / man2 / man2.exe / data / scripts / environment_effects_scripts / environment_explosion2.lua < prev    next >
Encoding:
Text File  |  2007-01-25  |  13.6 KB  |  522 lines

  1. desc = getEffectDescriptionP(ENET_EFFECT_PS_ENVIRONMENT_EXPLOSION2)
  2.  
  3. desc.ClassID = ENCLASS_SIMPLEPARTICLESYSTEM
  4. desc.EffectClassType = ENECT_PARTICLESYSTEM
  5. desc.ActivityType = ENACT_ACTIVE
  6.  
  7. desc.ScriptSet = ENSCRIPTSET_UNKNOWN
  8. desc.RelativePosition = ENLOCALPOS_NOTSPECIFIED
  9. local vzbzd1 = D3DXVECTOR3:new(0,0,0)
  10. desc.LocalPosition = vzbzd1
  11. vzbzd1:delete()
  12. desc.isAnimateTexture = false
  13. desc.RenderType = ENRENDERTYPE_GEOMETRY
  14.  
  15. Emitter = desc.PS.PSDescription
  16. Emitter.ParticleTypesNumber = 4
  17. local vzbzd2 = D3DXVECTOR3:new(0,0,0)
  18. Emitter.EmitterPosition = vzbzd2
  19. vzbzd2:delete()
  20. local vzbzd3 = D3DXVECTOR3:new(0,0,0)
  21. Emitter.EmitterDirection = vzbzd3
  22. vzbzd3:delete()
  23. Emitter.EmitterLifeTime = 1
  24.  
  25.  
  26. PT = Emitter.ParticleTypesParams[1]
  27. PT.IsEmitterLocked = false
  28. PT.DrawOrder = 2
  29. PT.Material = ENMAT_3DSPRITE_ALPHED
  30.  
  31. PT.TextureName = "environment_effect_explosion_trash1.dds"
  32.  
  33. PT.ParticlesPerSecond = 0.1;
  34. PT.InitialNumberOfParticles = 10.0;
  35. PT.BaseLifeTime = 3.0;
  36. PT.BaseLifeTimeVariance = 0.0;
  37. PT.BaseSpeed = 2.0;
  38. PT.BaseSpeedVariance = 1.0;
  39.  
  40. PT.TangentSpeed = 1.0;
  41. PT.TangentSpeedVariance = 1.5;
  42. local vzbzd4 = D3DXVECTOR3:new(1.0,0.0,0.0)
  43. PT.TangentDirection = vzbzd4
  44. vzbzd4:delete()
  45. PT.TangentAngleMin = 0.0;
  46. PT.TangentAngleMax = 6.28;
  47. PT.IsTangentDependOnBase = false;
  48.  
  49. PT.BaseAngle = 3.0;
  50. PT.BaseAngleVariance = 5.0;
  51. PT.BaseAngleSpeed = 0.2;
  52. PT.BaseAngleSpeedVariance = 0.3;
  53. PT.BaseAngleSpeedDirection = 0;
  54. local vzbzd5 = D3DXVECTOR3:new(0.0,1.0,0.0)
  55. PT.BaseDirection = vzbzd5
  56. vzbzd5:delete()
  57. local vzbzd6 = D3DXVECTOR3:new(0.0,0.0,0.0)
  58. PT.BaseDirectionVariance = vzbzd6
  59. vzbzd6:delete()
  60. local vzbzd7 = D3DXVECTOR3:new(0,5,0)
  61. PT.BasePosition = vzbzd7
  62. vzbzd7:delete()
  63. local vzbzd8 = D3DXVECTOR3:new(5,2,5)
  64. PT.BasePositionVariance = vzbzd8
  65. vzbzd8:delete()
  66. PT.BaseSize = 4.0;
  67. PT.BaseSizeVariance = 2.0;
  68.  
  69. -- color over time
  70. PT.ColorOverTimeR[1].TimePercent = 0.0;
  71. PT.ColorOverTimeR[1].Value = 0.5;
  72. PT.ColorOverTimeG[1].TimePercent = 0.0;
  73. PT.ColorOverTimeG[1].Value = 0.5;
  74. PT.ColorOverTimeB[1].TimePercent = 0.0;
  75. PT.ColorOverTimeB[1].Value = 0.5;
  76.  
  77. PT.ColorOverTimeR[2].TimePercent = 1.0;
  78. PT.ColorOverTimeR[2].Value = 0.5;
  79. PT.ColorOverTimeG[2].TimePercent = 1.0;
  80. PT.ColorOverTimeG[2].Value = 0.5;
  81. PT.ColorOverTimeB[2].TimePercent = 1.0;
  82. PT.ColorOverTimeB[2].Value = 0.5;
  83.  
  84. -- transparency over time
  85. PT.TransparencyOverTime[1].TimePercent = 0.0;
  86. PT.TransparencyOverTime[1].Value = 1.0;
  87.  
  88. PT.TransparencyOverTime[2].TimePercent = 0.1;
  89. PT.TransparencyOverTime[2].Value = 1.0;
  90.  
  91. PT.TransparencyOverTime[3].TimePercent = 0.2;
  92. PT.TransparencyOverTime[3].Value = 1.0;
  93.  
  94. -- size over time
  95. PT.SizeOverTime[1].TimePercent = 0.0;
  96. PT.SizeOverTime[1].Value = 1.0;
  97.  
  98. PT.SizeOverTime[2].TimePercent = 0.2;
  99. PT.SizeOverTime[2].Value = 2.0;
  100.  
  101. PT.SizeOverTime[3].TimePercent = 1.0;
  102. PT.SizeOverTime[3].Value = 3.0;
  103.  
  104. -- Speed over time
  105. PT.SpeedOverTime[1].TimePercent = 0.0;
  106. PT.SpeedOverTime[1].Value = 10.0;
  107.  
  108. PT.SpeedOverTime[2].TimePercent = 0.5;
  109. PT.SpeedOverTime[2].Value = 0.0;
  110.  
  111. PT.SpeedOverTime[3].TimePercent = 1.0;
  112. PT.SpeedOverTime[3].Value = 0.0;
  113.  
  114. -- Tangent Speed over time
  115. PT.TangentSpeedOverTime[1].TimePercent = 0.0;
  116. PT.TangentSpeedOverTime[1].Value = 0.0;
  117.  
  118. PT.TangentSpeedOverTime[2].TimePercent = 0.03;
  119. PT.TangentSpeedOverTime[2].Value = 10.0;
  120.  
  121. PT.TangentSpeedOverTime[3].TimePercent = 1.0;
  122. PT.TangentSpeedOverTime[3].Value = 20.0;
  123.  
  124.  
  125. -- GravityAcceleration over time
  126. PT.GravityAccelerationOverTime[1].TimePercent = 0.0;
  127. PT.GravityAccelerationOverTime[1].Value = 20.0;
  128.  
  129. PT.GravityAccelerationOverTime[2].TimePercent = 0.1;
  130. PT.GravityAccelerationOverTime[2].Value = -50.0;
  131.  
  132. PT.GravityAccelerationOverTime[3].TimePercent = 1.0;
  133. PT.GravityAccelerationOverTime[3].Value = -100.0;
  134.  
  135. -- AngleSpeed over time
  136. PT.AngleSpeedOverTime[1].TimePercent = 0.0;
  137. PT.AngleSpeedOverTime[1].Value = 1.0;
  138.  
  139. PT.AngleSpeedOverTime[2].TimePercent = 1.0;
  140. PT.AngleSpeedOverTime[2].Value = 2.0;
  141.  
  142.  
  143.  
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150.  
  151.  
  152.  
  153. PT = Emitter.ParticleTypesParams[2]
  154. PT.IsEmitterLocked = false
  155. PT.DrawOrder = 3
  156. PT.Material = ENMAT_3DSPRITE_ALPHED
  157.  
  158. PT.TextureName = "environment_effect_explosion_trash2.dds"
  159.  
  160. PT.ParticlesPerSecond = 0.1;
  161. PT.InitialNumberOfParticles = 10.0;
  162. PT.BaseLifeTime = 3.0;
  163. PT.BaseLifeTimeVariance = 0.0;
  164. PT.BaseSpeed = 2.0;
  165. PT.BaseSpeedVariance = 1.0;
  166.  
  167. PT.TangentSpeed = 1.0;
  168. PT.TangentSpeedVariance = 1.5;
  169. local vzbzd9 = D3DXVECTOR3:new(1.0,0.0,0.0)
  170. PT.TangentDirection = vzbzd9
  171. vzbzd9:delete()
  172. PT.TangentAngleMin = 0.0;
  173. PT.TangentAngleMax = 6.28;
  174. PT.IsTangentDependOnBase = false;
  175.  
  176. PT.BaseAngle = 3.0;
  177. PT.BaseAngleVariance = 5.0;
  178. PT.BaseAngleSpeed = 0.2;
  179. PT.BaseAngleSpeedVariance = 0.3;
  180. PT.BaseAngleSpeedDirection = 0;
  181. local vzbzd10 = D3DXVECTOR3:new(0.0,1.0,0.0)
  182. PT.BaseDirection = vzbzd10
  183. vzbzd10:delete()
  184. local vzbzd11 = D3DXVECTOR3:new(0.0,0.0,0.0)
  185. PT.BaseDirectionVariance = vzbzd11
  186. vzbzd11:delete()
  187. local vzbzd12 = D3DXVECTOR3:new(0,5,0)
  188. PT.BasePosition = vzbzd12
  189. vzbzd12:delete()
  190. local vzbzd13 = D3DXVECTOR3:new(5,2,5)
  191. PT.BasePositionVariance = vzbzd13
  192. vzbzd13:delete()
  193. PT.BaseSize = 4.0;
  194. PT.BaseSizeVariance = 2.0;
  195.  
  196. -- color over time
  197. PT.ColorOverTimeR[1].TimePercent = 0.0;
  198. PT.ColorOverTimeR[1].Value = 0.5;
  199. PT.ColorOverTimeG[1].TimePercent = 0.0;
  200. PT.ColorOverTimeG[1].Value = 0.5;
  201. PT.ColorOverTimeB[1].TimePercent = 0.0;
  202. PT.ColorOverTimeB[1].Value = 0.5;
  203.  
  204. PT.ColorOverTimeR[2].TimePercent = 1.0;
  205. PT.ColorOverTimeR[2].Value = 0.5;
  206. PT.ColorOverTimeG[2].TimePercent = 1.0;
  207. PT.ColorOverTimeG[2].Value = 0.5;
  208. PT.ColorOverTimeB[2].TimePercent = 1.0;
  209. PT.ColorOverTimeB[2].Value = 0.5;
  210.  
  211. -- transparency over time
  212. PT.TransparencyOverTime[1].TimePercent = 0.0;
  213. PT.TransparencyOverTime[1].Value = 1.0;
  214.  
  215. PT.TransparencyOverTime[2].TimePercent = 0.1;
  216. PT.TransparencyOverTime[2].Value = 1.0;
  217.  
  218. PT.TransparencyOverTime[3].TimePercent = 0.2;
  219. PT.TransparencyOverTime[3].Value = 1.0;
  220.  
  221. -- size over time
  222. PT.SizeOverTime[1].TimePercent = 0.0;
  223. PT.SizeOverTime[1].Value = 1.0;
  224.  
  225. PT.SizeOverTime[2].TimePercent = 0.2;
  226. PT.SizeOverTime[2].Value = 2.0;
  227.  
  228. PT.SizeOverTime[3].TimePercent = 1.0;
  229. PT.SizeOverTime[3].Value = 3.0;
  230.  
  231. -- Speed over time
  232. PT.SpeedOverTime[1].TimePercent = 0.0;
  233. PT.SpeedOverTime[1].Value = 10.0;
  234.  
  235. PT.SpeedOverTime[2].TimePercent = 0.5;
  236. PT.SpeedOverTime[2].Value = 0.0;
  237.  
  238. PT.SpeedOverTime[3].TimePercent = 1.0;
  239. PT.SpeedOverTime[3].Value = 0.0;
  240.  
  241. -- Tangent Speed over time
  242. PT.TangentSpeedOverTime[1].TimePercent = 0.0;
  243. PT.TangentSpeedOverTime[1].Value = 0.0;
  244.  
  245. PT.TangentSpeedOverTime[2].TimePercent = 0.03;
  246. PT.TangentSpeedOverTime[2].Value = 10.0;
  247.  
  248. PT.TangentSpeedOverTime[3].TimePercent = 1.0;
  249. PT.TangentSpeedOverTime[3].Value = 20.0;
  250.  
  251.  
  252. -- GravityAcceleration over time
  253. PT.GravityAccelerationOverTime[1].TimePercent = 0.0;
  254. PT.GravityAccelerationOverTime[1].Value = 20.0;
  255.  
  256. PT.GravityAccelerationOverTime[2].TimePercent = 0.1;
  257. PT.GravityAccelerationOverTime[2].Value = -50.0;
  258.  
  259. PT.GravityAccelerationOverTime[3].TimePercent = 1.0;
  260. PT.GravityAccelerationOverTime[3].Value = -100.0;
  261.  
  262. -- AngleSpeed over time
  263. PT.AngleSpeedOverTime[1].TimePercent = 0.0;
  264. PT.AngleSpeedOverTime[1].Value = 1.0;
  265.  
  266. PT.AngleSpeedOverTime[2].TimePercent = 1.0;
  267. PT.AngleSpeedOverTime[2].Value = 2.0;
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279. PT = Emitter.ParticleTypesParams[3]
  280. PT.IsEmitterLocked = false
  281. PT.DrawOrder = 4
  282. PT.Material = ENMAT_3DSPRITE_ALPHED
  283.  
  284. PT.TextureName = "environment_effect_explosion_trash5.dds"
  285.  
  286. PT.ParticlesPerSecond = 0.1;
  287. PT.InitialNumberOfParticles = 10.0;
  288. PT.BaseLifeTime = 3.0;
  289. PT.BaseLifeTimeVariance = 0.0;
  290. PT.BaseSpeed = 2.0;
  291. PT.BaseSpeedVariance = 1.0;
  292.  
  293. PT.TangentSpeed = 1.0;
  294. PT.TangentSpeedVariance = 1.5;
  295. local vzbzd14 = D3DXVECTOR3:new(1.0,0.0,0.0)
  296. PT.TangentDirection = vzbzd14
  297. vzbzd14:delete()
  298. PT.TangentAngleMin = 0.0;
  299. PT.TangentAngleMax = 6.28;
  300. PT.IsTangentDependOnBase = false;
  301.  
  302. PT.BaseAngle = 3.0;
  303. PT.BaseAngleVariance = 5.0;
  304. PT.BaseAngleSpeed = 0.2;
  305. PT.BaseAngleSpeedVariance = 0.3;
  306. PT.BaseAngleSpeedDirection = 0;
  307. local vzbzd15 = D3DXVECTOR3:new(0.0,1.0,0.0)
  308. PT.BaseDirection = vzbzd15
  309. vzbzd15:delete()
  310. local vzbzd16 = D3DXVECTOR3:new(0.0,0.0,0.0)
  311. PT.BaseDirectionVariance = vzbzd16
  312. vzbzd16:delete()
  313. local vzbzd17 = D3DXVECTOR3:new(0,5,0)
  314. PT.BasePosition = vzbzd17
  315. vzbzd17:delete()
  316. local vzbzd18 = D3DXVECTOR3:new(5,2,5)
  317. PT.BasePositionVariance = vzbzd18
  318. vzbzd18:delete()
  319. PT.BaseSize = 4.0;
  320. PT.BaseSizeVariance = 2.0;
  321.  
  322. -- color over time
  323. PT.ColorOverTimeR[1].TimePercent = 0.0;
  324. PT.ColorOverTimeR[1].Value = 0.5;
  325. PT.ColorOverTimeG[1].TimePercent = 0.0;
  326. PT.ColorOverTimeG[1].Value = 0.5;
  327. PT.ColorOverTimeB[1].TimePercent = 0.0;
  328. PT.ColorOverTimeB[1].Value = 0.5;
  329.  
  330. PT.ColorOverTimeR[2].TimePercent = 1.0;
  331. PT.ColorOverTimeR[2].Value = 0.5;
  332. PT.ColorOverTimeG[2].TimePercent = 1.0;
  333. PT.ColorOverTimeG[2].Value = 0.5;
  334. PT.ColorOverTimeB[2].TimePercent = 1.0;
  335. PT.ColorOverTimeB[2].Value = 0.5;
  336.  
  337. -- transparency over time
  338. PT.TransparencyOverTime[1].TimePercent = 0.0;
  339. PT.TransparencyOverTime[1].Value = 1.0;
  340.  
  341. PT.TransparencyOverTime[2].TimePercent = 0.1;
  342. PT.TransparencyOverTime[2].Value = 1.0;
  343.  
  344. PT.TransparencyOverTime[3].TimePercent = 0.2;
  345. PT.TransparencyOverTime[3].Value = 1.0;
  346.  
  347. -- size over time
  348. PT.SizeOverTime[1].TimePercent = 0.0;
  349. PT.SizeOverTime[1].Value = 1.0;
  350.  
  351. PT.SizeOverTime[2].TimePercent = 0.2;
  352. PT.SizeOverTime[2].Value = 2.0;
  353.  
  354. PT.SizeOverTime[3].TimePercent = 1.0;
  355. PT.SizeOverTime[3].Value = 3.0;
  356.  
  357. -- Speed over time
  358. PT.SpeedOverTime[1].TimePercent = 0.0;
  359. PT.SpeedOverTime[1].Value = 10.0;
  360.  
  361. PT.SpeedOverTime[2].TimePercent = 0.5;
  362. PT.SpeedOverTime[2].Value = 0.0;
  363.  
  364. PT.SpeedOverTime[3].TimePercent = 1.0;
  365. PT.SpeedOverTime[3].Value = 0.0;
  366.  
  367. -- Tangent Speed over time
  368. PT.TangentSpeedOverTime[1].TimePercent = 0.0;
  369. PT.TangentSpeedOverTime[1].Value = 0.0;
  370.  
  371. PT.TangentSpeedOverTime[2].TimePercent = 0.03;
  372. PT.TangentSpeedOverTime[2].Value = 10.0;
  373.  
  374. PT.TangentSpeedOverTime[3].TimePercent = 1.0;
  375. PT.TangentSpeedOverTime[3].Value = 20.0;
  376.  
  377.  
  378. -- GravityAcceleration over time
  379. PT.GravityAccelerationOverTime[1].TimePercent = 0.0;
  380. PT.GravityAccelerationOverTime[1].Value = 20.0;
  381.  
  382. PT.GravityAccelerationOverTime[2].TimePercent = 0.1;
  383. PT.GravityAccelerationOverTime[2].Value = -50.0;
  384.  
  385. PT.GravityAccelerationOverTime[3].TimePercent = 1.0;
  386. PT.GravityAccelerationOverTime[3].Value = -100.0;
  387.  
  388. -- AngleSpeed over time
  389. PT.AngleSpeedOverTime[1].TimePercent = 0.0;
  390. PT.AngleSpeedOverTime[1].Value = 1.0;
  391.  
  392. PT.AngleSpeedOverTime[2].TimePercent = 1.0;
  393. PT.AngleSpeedOverTime[2].Value = 2.0;
  394.  
  395.  
  396.  
  397.  
  398.  
  399.  
  400.  
  401.  
  402.  
  403.  
  404.  
  405.  
  406.  
  407. PT = Emitter.ParticleTypesParams[4]
  408. PT.IsEmitterLocked = false
  409. PT.DrawOrder = 1
  410. PT.Material = ENMAT_PARTICLE_LIGHT
  411.  
  412. PT.TextureName = "cruiser_effect_smokecloud7.dds"
  413.  
  414. PT.ParticlesPerSecond = 0.1;
  415. PT.InitialNumberOfParticles = 45.0;
  416. PT.BaseLifeTime = 1.5;
  417. PT.BaseLifeTimeVariance = 0.0;
  418. PT.BaseSpeed = 3.0;
  419. PT.BaseSpeedVariance = 1.0;
  420.  
  421. PT.TangentSpeed = 1.0;
  422. PT.TangentSpeedVariance = 0.1;
  423. local vzbzd19 = D3DXVECTOR3:new(1.0,0.0,0.0)
  424. PT.TangentDirection = vzbzd19
  425. vzbzd19:delete()
  426. PT.TangentAngleMin = 0.0;
  427. PT.TangentAngleMax = 6.28;
  428. PT.IsTangentDependOnBase = false;
  429.  
  430. PT.BaseAngle = 3.0;
  431. PT.BaseAngleVariance = 5.0;
  432. PT.BaseAngleSpeed = 0.5;
  433. PT.BaseAngleSpeedVariance = 0.3;
  434. PT.BaseAngleSpeedDirection = 0;
  435. local vzbzd20 = D3DXVECTOR3:new(0.0,1.0,0.0)
  436. PT.BaseDirection = vzbzd20
  437. vzbzd20:delete()
  438. local vzbzd21 = D3DXVECTOR3:new(0.0,0.0,0.0)
  439. PT.BaseDirectionVariance = vzbzd21
  440. vzbzd21:delete()
  441. local vzbzd22 = D3DXVECTOR3:new(0,2,0)
  442. PT.BasePosition = vzbzd22
  443. vzbzd22:delete()
  444. local vzbzd23 = D3DXVECTOR3:new(5,5,5)
  445. PT.BasePositionVariance = vzbzd23
  446. vzbzd23:delete()
  447. PT.BaseSize = 4.0;
  448. PT.BaseSizeVariance = 1.0;
  449.  
  450. -- color over time
  451. PT.ColorOverTimeR[1].TimePercent = 0.0;
  452. PT.ColorOverTimeR[1].Value = 0.5;
  453. PT.ColorOverTimeG[1].TimePercent = 0.0;
  454. PT.ColorOverTimeG[1].Value = 0.5;
  455. PT.ColorOverTimeB[1].TimePercent = 0.0;
  456. PT.ColorOverTimeB[1].Value = 0.5;
  457.  
  458. PT.ColorOverTimeR[2].TimePercent = 1.0;
  459. PT.ColorOverTimeR[2].Value = 0.5;
  460. PT.ColorOverTimeG[2].TimePercent = 1.0;
  461. PT.ColorOverTimeG[2].Value = 0.5;
  462. PT.ColorOverTimeB[2].TimePercent = 1.0;
  463. PT.ColorOverTimeB[2].Value = 0.5;
  464.  
  465. -- transparency over time
  466. PT.TransparencyOverTime[1].TimePercent = 0.0;
  467. PT.TransparencyOverTime[1].Value = 0.0;
  468.  
  469. PT.TransparencyOverTime[2].TimePercent = 0.3;
  470. PT.TransparencyOverTime[2].Value = 0.8;
  471.  
  472. PT.TransparencyOverTime[3].TimePercent = 0.4;
  473. PT.TransparencyOverTime[3].Value = 0.8;
  474.  
  475. PT.TransparencyOverTime[4].TimePercent = 1.0;
  476. PT.TransparencyOverTime[4].Value = 0.0;
  477.  
  478. -- size over time
  479. PT.SizeOverTime[1].TimePercent = 0.0;
  480. PT.SizeOverTime[1].Value = 2.0;
  481.  
  482. PT.SizeOverTime[2].TimePercent = 1.0;
  483. PT.SizeOverTime[2].Value = 4.0;
  484.  
  485. -- Speed over time
  486. PT.SpeedOverTime[1].TimePercent = 0.0;
  487. PT.SpeedOverTime[1].Value = 5.0;
  488.  
  489. PT.SpeedOverTime[2].TimePercent = 0.5;
  490. PT.SpeedOverTime[2].Value = 0.0;
  491.  
  492. PT.SpeedOverTime[3].TimePercent = 1.0;
  493. PT.SpeedOverTime[3].Value = 0.0;
  494.  
  495. -- Tangent Speed over time
  496. PT.TangentSpeedOverTime[1].TimePercent = 0.0;
  497. PT.TangentSpeedOverTime[1].Value = 0.0;
  498.  
  499. PT.TangentSpeedOverTime[2].TimePercent = 0.1;
  500. PT.TangentSpeedOverTime[2].Value = 10.0;
  501.  
  502. PT.TangentSpeedOverTime[3].TimePercent = 1.0;
  503. PT.TangentSpeedOverTime[3].Value = 20.0;
  504.  
  505.  
  506. -- GravityAcceleration over time
  507. PT.GravityAccelerationOverTime[1].TimePercent = 0.0;
  508. PT.GravityAccelerationOverTime[1].Value = 5.0;
  509.  
  510. PT.GravityAccelerationOverTime[2].TimePercent = 0.1;
  511. PT.GravityAccelerationOverTime[2].Value = -10.0;
  512.  
  513. PT.GravityAccelerationOverTime[3].TimePercent = 1.0;
  514. PT.GravityAccelerationOverTime[3].Value = 0.0;
  515.  
  516. -- AngleSpeed over time
  517. PT.AngleSpeedOverTime[1].TimePercent = 0.0;
  518. PT.AngleSpeedOverTime[1].Value = 2.0;
  519.  
  520. PT.AngleSpeedOverTime[2].TimePercent = 1.0;
  521. PT.AngleSpeedOverTime[2].Value = 3.0;
  522.