boom.lh 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":71,
  6. "props":{
  7. "name":"boom",
  8. "active":true,
  9. "isStatic":false,
  10. "layer":0,
  11. "position":[
  12. 0,
  13. 0,
  14. 0
  15. ],
  16. "rotation":[
  17. 0,
  18. 0,
  19. 0,
  20. -1
  21. ],
  22. "scale":[
  23. 1,
  24. 1,
  25. 1
  26. ]
  27. },
  28. "components":[],
  29. "child":[
  30. {
  31. "type":"ShuriKenParticle3D",
  32. "instanceID":72,
  33. "props":{
  34. "name":"boom",
  35. "active":true,
  36. "isStatic":false,
  37. "layer":0,
  38. "position":[
  39. 0,
  40. 0,
  41. 0
  42. ],
  43. "rotation":[
  44. 0.7071068,
  45. 0,
  46. 0,
  47. -0.7071068
  48. ],
  49. "scale":[
  50. 2.25,
  51. 2.250005,
  52. 2.250005
  53. ],
  54. "isPerformanceMode":true,
  55. "duration":0.3,
  56. "looping":false,
  57. "prewarm":false,
  58. "startDelayType":0,
  59. "startDelay":0,
  60. "startDelayMin":0,
  61. "startDelayMax":0,
  62. "startLifetimeType":2,
  63. "startLifetimeConstant":0.4,
  64. "startLifetimeConstantMin":0.2,
  65. "startLifetimeConstantMax":0.4,
  66. "startLifetimeGradient":{
  67. "startLifetimes":[]
  68. },
  69. "startLifetimeGradientMin":{
  70. "startLifetimes":[]
  71. },
  72. "startLifetimeGradientMax":{
  73. "startLifetimes":[]
  74. },
  75. "startSpeedType":2,
  76. "startSpeedConstant":1,
  77. "startSpeedConstantMin":0.5,
  78. "startSpeedConstantMax":1,
  79. "threeDStartSize":false,
  80. "startSizeType":2,
  81. "startSizeConstant":2,
  82. "startSizeConstantMin":1,
  83. "startSizeConstantMax":2,
  84. "startSizeConstantSeparate":[
  85. 2,
  86. 1,
  87. 1
  88. ],
  89. "startSizeConstantMinSeparate":[
  90. 1,
  91. 0,
  92. 0
  93. ],
  94. "startSizeConstantMaxSeparate":[
  95. 2,
  96. 1,
  97. 1
  98. ],
  99. "threeDStartRotation":false,
  100. "startRotationType":2,
  101. "startRotationConstant":89.99999,
  102. "startRotationConstantMin":-89.99999,
  103. "startRotationConstantMax":89.99999,
  104. "startRotationConstantSeparate":[
  105. 0,
  106. 0,
  107. -89.99999
  108. ],
  109. "startRotationConstantMinSeparate":[
  110. 0,
  111. 0,
  112. 89.99999
  113. ],
  114. "startRotationConstantMaxSeparate":[
  115. 0,
  116. 0,
  117. -89.99999
  118. ],
  119. "randomizeRotationDirection":0,
  120. "startColorType":0,
  121. "startColorConstant":[
  122. 1,
  123. 1,
  124. 1,
  125. 1
  126. ],
  127. "startColorConstantMin":[
  128. 0,
  129. 0,
  130. 0,
  131. 0
  132. ],
  133. "startColorConstantMax":[
  134. 1,
  135. 1,
  136. 1,
  137. 1
  138. ],
  139. "gravity":[
  140. 0,
  141. -9.81,
  142. 0
  143. ],
  144. "gravityModifier":0,
  145. "simulationSpace":1,
  146. "simulationSpeed":1,
  147. "scaleMode":2,
  148. "playOnAwake":true,
  149. "maxParticles":1000,
  150. "autoRandomSeed":true,
  151. "randomSeed":2.280997E+09,
  152. "emission":{
  153. "enable":true,
  154. "emissionRate":0,
  155. "emissionRateTip":"Time",
  156. "bursts":[
  157. {
  158. "time":0,
  159. "min":5,
  160. "max":5
  161. },
  162. {
  163. "time":0.05,
  164. "min":5,
  165. "max":5
  166. },
  167. {
  168. "time":0.12,
  169. "min":5,
  170. "max":5
  171. }
  172. ]
  173. },
  174. "shape":{
  175. "enable":true,
  176. "shapeType":0,
  177. "sphereRadius":0.66,
  178. "sphereEmitFromShell":false,
  179. "sphereRandomDirection":0,
  180. "hemiSphereRadius":0.66,
  181. "hemiSphereEmitFromShell":false,
  182. "hemiSphereRandomDirection":0,
  183. "coneAngle":20,
  184. "coneRadius":0.66,
  185. "coneLength":5,
  186. "coneEmitType":0,
  187. "coneRandomDirection":0,
  188. "boxX":1,
  189. "boxY":1,
  190. "boxZ":1,
  191. "boxRandomDirection":0,
  192. "circleRadius":0.66,
  193. "circleArc":0.6,
  194. "circleEmitFromEdge":false,
  195. "circleRandomDirection":0
  196. },
  197. "colorOverLifetime":{
  198. "enable":true,
  199. "color":{
  200. "type":1,
  201. "constant":[
  202. 0,
  203. 0,
  204. 0,
  205. 0
  206. ],
  207. "gradient":{
  208. "alphas":[
  209. {
  210. "key":0,
  211. "value":1
  212. },
  213. {
  214. "key":1,
  215. "value":0
  216. }
  217. ],
  218. "rgbs":[
  219. {
  220. "key":0,
  221. "value":[
  222. 1,
  223. 0.8896552,
  224. 0
  225. ]
  226. },
  227. {
  228. "key":0.02941939,
  229. "value":[
  230. 1,
  231. 0.8896552,
  232. 0
  233. ]
  234. },
  235. {
  236. "key":1,
  237. "value":[
  238. 1,
  239. 0.1019608,
  240. 0
  241. ]
  242. }
  243. ]
  244. },
  245. "constantMin":[
  246. 0,
  247. 0,
  248. 0,
  249. 0
  250. ],
  251. "constantMax":[
  252. 0,
  253. 0,
  254. 0,
  255. 0
  256. ],
  257. "gradientMax":{
  258. "alphas":[
  259. {
  260. "key":0,
  261. "value":1
  262. },
  263. {
  264. "key":1,
  265. "value":0
  266. }
  267. ],
  268. "rgbs":[
  269. {
  270. "key":0,
  271. "value":[
  272. 1,
  273. 0.8896552,
  274. 0
  275. ]
  276. },
  277. {
  278. "key":0.02941939,
  279. "value":[
  280. 1,
  281. 0.8896552,
  282. 0
  283. ]
  284. },
  285. {
  286. "key":1,
  287. "value":[
  288. 1,
  289. 0.1019608,
  290. 0
  291. ]
  292. }
  293. ]
  294. }
  295. }
  296. },
  297. "sizeOverLifetime":{
  298. "enable":true,
  299. "size":{
  300. "type":0,
  301. "separateAxes":false,
  302. "gradient":{
  303. "sizes":[
  304. {
  305. "key":0,
  306. "value":0.4258065
  307. },
  308. {
  309. "key":1,
  310. "value":1
  311. }
  312. ]
  313. },
  314. "gradientX":{
  315. "sizes":[
  316. {
  317. "key":0,
  318. "value":0.4258065
  319. },
  320. {
  321. "key":1,
  322. "value":1
  323. }
  324. ]
  325. },
  326. "gradientY":{
  327. "sizes":[
  328. {
  329. "key":0,
  330. "value":1
  331. },
  332. {
  333. "key":1,
  334. "value":1
  335. }
  336. ]
  337. },
  338. "gradientZ":{
  339. "sizes":[
  340. {
  341. "key":0,
  342. "value":1
  343. },
  344. {
  345. "key":1,
  346. "value":1
  347. }
  348. ]
  349. },
  350. "constantMin":0,
  351. "constantMax":0,
  352. "constantMinSeparate":[
  353. 0,
  354. 0,
  355. 0
  356. ],
  357. "constantMaxSeparate":[
  358. 0,
  359. 0,
  360. 0
  361. ],
  362. "gradientMin":{
  363. "sizes":[]
  364. },
  365. "gradientMax":{
  366. "sizes":[
  367. {
  368. "key":0,
  369. "value":0.4258065
  370. },
  371. {
  372. "key":1,
  373. "value":1
  374. }
  375. ]
  376. },
  377. "gradientXMin":{
  378. "sizes":[]
  379. },
  380. "gradientXMax":{
  381. "sizes":[
  382. {
  383. "key":0,
  384. "value":0.4258065
  385. },
  386. {
  387. "key":1,
  388. "value":1
  389. }
  390. ]
  391. },
  392. "gradientYMin":{
  393. "sizes":[]
  394. },
  395. "gradientYMax":{
  396. "sizes":[
  397. {
  398. "key":0,
  399. "value":1
  400. },
  401. {
  402. "key":1,
  403. "value":1
  404. }
  405. ]
  406. },
  407. "gradientZMin":{
  408. "sizes":[]
  409. },
  410. "gradientZMax":{
  411. "sizes":[
  412. {
  413. "key":0,
  414. "value":1
  415. },
  416. {
  417. "key":1,
  418. "value":1
  419. }
  420. ]
  421. }
  422. }
  423. },
  424. "rotationOverLifetime":{
  425. "enable":true,
  426. "angularVelocity":{
  427. "type":2,
  428. "separateAxes":false,
  429. "constant":50,
  430. "constantMin":-50,
  431. "constantMax":50,
  432. "constantSeparate":[
  433. 0,
  434. 0,
  435. -50
  436. ],
  437. "constantMinSeparate":[
  438. 0,
  439. 0,
  440. -50
  441. ],
  442. "constantMaxSeparate":[
  443. 0,
  444. 0,
  445. 50
  446. ],
  447. "gradient":{
  448. "angularVelocitys":[]
  449. },
  450. "gradientX":{
  451. "angularVelocitys":[]
  452. },
  453. "gradientY":{
  454. "angularVelocitys":[]
  455. },
  456. "gradientZ":{
  457. "angularVelocitys":[]
  458. },
  459. "gradientMin":{
  460. "angularVelocitys":[]
  461. },
  462. "gradientMax":{
  463. "angularVelocitys":[]
  464. },
  465. "gradientXMin":{
  466. "angularVelocitys":[]
  467. },
  468. "gradientXMax":{
  469. "angularVelocitys":[]
  470. },
  471. "gradientYMin":{
  472. "angularVelocitys":[]
  473. },
  474. "gradientYMax":{
  475. "angularVelocitys":[]
  476. },
  477. "gradientZMin":{
  478. "angularVelocitys":[]
  479. },
  480. "gradientZMax":{
  481. "angularVelocitys":[]
  482. }
  483. }
  484. },
  485. "textureSheetAnimation":{
  486. "enable":true,
  487. "tiles":[
  488. 4,
  489. 4
  490. ],
  491. "type":0,
  492. "randomRow":true,
  493. "rowIndex":0,
  494. "frame":{
  495. "type":1,
  496. "constant":0,
  497. "overTime":{
  498. "frames":[
  499. {
  500. "key":0,
  501. "value":0
  502. },
  503. {
  504. "key":1,
  505. "value":15.9984
  506. }
  507. ]
  508. },
  509. "constantMin":0,
  510. "constantMax":0,
  511. "overTimeMin":{
  512. "frames":[]
  513. },
  514. "overTimeMax":{
  515. "frames":[
  516. {
  517. "key":0,
  518. "value":0
  519. },
  520. {
  521. "key":1,
  522. "value":15.9984
  523. }
  524. ]
  525. }
  526. },
  527. "startFrame":{
  528. "type":0,
  529. "constant":0,
  530. "constantMin":0,
  531. "constantMax":0
  532. },
  533. "cycles":1,
  534. "enableUVChannels":1,
  535. "enableUVChannelsTip":"-1"
  536. },
  537. "renderMode":0,
  538. "stretchedBillboardCameraSpeedScale":0,
  539. "stretchedBillboardSpeedScale":0,
  540. "stretchedBillboardLengthScale":2,
  541. "sortingFudge":0,
  542. "material":{
  543. "type":"Laya.ShurikenParticleMaterial",
  544. "path":"Assets/LatestRes/FX/Materials/boom2.lmat"
  545. }
  546. },
  547. "components":[],
  548. "child":[
  549. {
  550. "type":"ShuriKenParticle3D",
  551. "instanceID":73,
  552. "props":{
  553. "name":"boom1",
  554. "active":true,
  555. "isStatic":false,
  556. "layer":0,
  557. "position":[
  558. 0,
  559. 0,
  560. 0
  561. ],
  562. "rotation":[
  563. 0,
  564. 0,
  565. 0,
  566. -1
  567. ],
  568. "scale":[
  569. 1,
  570. 1,
  571. 1
  572. ],
  573. "isPerformanceMode":true,
  574. "duration":0.3,
  575. "looping":false,
  576. "prewarm":false,
  577. "startDelayType":0,
  578. "startDelay":0,
  579. "startDelayMin":0,
  580. "startDelayMax":0,
  581. "startLifetimeType":2,
  582. "startLifetimeConstant":0.3,
  583. "startLifetimeConstantMin":0.15,
  584. "startLifetimeConstantMax":0.3,
  585. "startLifetimeGradient":{
  586. "startLifetimes":[]
  587. },
  588. "startLifetimeGradientMin":{
  589. "startLifetimes":[]
  590. },
  591. "startLifetimeGradientMax":{
  592. "startLifetimes":[]
  593. },
  594. "startSpeedType":0,
  595. "startSpeedConstant":1,
  596. "startSpeedConstantMin":0,
  597. "startSpeedConstantMax":1,
  598. "threeDStartSize":false,
  599. "startSizeType":2,
  600. "startSizeConstant":1,
  601. "startSizeConstantMin":1,
  602. "startSizeConstantMax":1,
  603. "startSizeConstantSeparate":[
  604. 1,
  605. 1,
  606. 1
  607. ],
  608. "startSizeConstantMinSeparate":[
  609. 1,
  610. 0,
  611. 0
  612. ],
  613. "startSizeConstantMaxSeparate":[
  614. 1,
  615. 1,
  616. 1
  617. ],
  618. "threeDStartRotation":false,
  619. "startRotationType":2,
  620. "startRotationConstant":89.99999,
  621. "startRotationConstantMin":-89.99999,
  622. "startRotationConstantMax":89.99999,
  623. "startRotationConstantSeparate":[
  624. 0,
  625. 0,
  626. -89.99999
  627. ],
  628. "startRotationConstantMinSeparate":[
  629. 0,
  630. 0,
  631. 89.99999
  632. ],
  633. "startRotationConstantMaxSeparate":[
  634. 0,
  635. 0,
  636. -89.99999
  637. ],
  638. "randomizeRotationDirection":0,
  639. "startColorType":0,
  640. "startColorConstant":[
  641. 1,
  642. 1,
  643. 1,
  644. 1
  645. ],
  646. "startColorConstantMin":[
  647. 0,
  648. 0,
  649. 0,
  650. 0
  651. ],
  652. "startColorConstantMax":[
  653. 1,
  654. 1,
  655. 1,
  656. 1
  657. ],
  658. "gravity":[
  659. 0,
  660. -9.81,
  661. 0
  662. ],
  663. "gravityModifier":0,
  664. "simulationSpace":1,
  665. "simulationSpeed":1,
  666. "scaleMode":2,
  667. "playOnAwake":true,
  668. "maxParticles":1000,
  669. "autoRandomSeed":true,
  670. "randomSeed":3.024334E+09,
  671. "emission":{
  672. "enable":true,
  673. "emissionRate":0,
  674. "emissionRateTip":"Time",
  675. "bursts":[
  676. {
  677. "time":0,
  678. "min":3,
  679. "max":30
  680. },
  681. {
  682. "time":0.05,
  683. "min":1,
  684. "max":30
  685. }
  686. ]
  687. },
  688. "shape":{
  689. "enable":true,
  690. "shapeType":0,
  691. "sphereRadius":0.6,
  692. "sphereEmitFromShell":false,
  693. "sphereRandomDirection":0,
  694. "hemiSphereRadius":0.6,
  695. "hemiSphereEmitFromShell":false,
  696. "hemiSphereRandomDirection":0,
  697. "coneAngle":20,
  698. "coneRadius":0.6,
  699. "coneLength":5,
  700. "coneEmitType":0,
  701. "coneRandomDirection":0,
  702. "boxX":1,
  703. "boxY":1,
  704. "boxZ":1,
  705. "boxRandomDirection":0,
  706. "circleRadius":0.6,
  707. "circleArc":0.6,
  708. "circleEmitFromEdge":false,
  709. "circleRandomDirection":0
  710. },
  711. "colorOverLifetime":{
  712. "enable":true,
  713. "color":{
  714. "type":1,
  715. "constant":[
  716. 0,
  717. 0,
  718. 0,
  719. 0
  720. ],
  721. "gradient":{
  722. "alphas":[
  723. {
  724. "key":0,
  725. "value":1
  726. },
  727. {
  728. "key":1,
  729. "value":0
  730. }
  731. ],
  732. "rgbs":[
  733. {
  734. "key":0,
  735. "value":[
  736. 1,
  737. 0.8896552,
  738. 0
  739. ]
  740. },
  741. {
  742. "key":1,
  743. "value":[
  744. 1,
  745. 0,
  746. 0
  747. ]
  748. }
  749. ]
  750. },
  751. "constantMin":[
  752. 0,
  753. 0,
  754. 0,
  755. 0
  756. ],
  757. "constantMax":[
  758. 0,
  759. 0,
  760. 0,
  761. 0
  762. ],
  763. "gradientMax":{
  764. "alphas":[
  765. {
  766. "key":0,
  767. "value":1
  768. },
  769. {
  770. "key":1,
  771. "value":0
  772. }
  773. ],
  774. "rgbs":[
  775. {
  776. "key":0,
  777. "value":[
  778. 1,
  779. 0.8896552,
  780. 0
  781. ]
  782. },
  783. {
  784. "key":1,
  785. "value":[
  786. 1,
  787. 0,
  788. 0
  789. ]
  790. }
  791. ]
  792. }
  793. }
  794. },
  795. "sizeOverLifetime":{
  796. "enable":true,
  797. "size":{
  798. "type":0,
  799. "separateAxes":false,
  800. "gradient":{
  801. "sizes":[
  802. {
  803. "key":0,
  804. "value":0.4258065
  805. },
  806. {
  807. "key":1,
  808. "value":1
  809. }
  810. ]
  811. },
  812. "gradientX":{
  813. "sizes":[
  814. {
  815. "key":0,
  816. "value":0.4258065
  817. },
  818. {
  819. "key":1,
  820. "value":1
  821. }
  822. ]
  823. },
  824. "gradientY":{
  825. "sizes":[
  826. {
  827. "key":0,
  828. "value":1
  829. },
  830. {
  831. "key":1,
  832. "value":1
  833. }
  834. ]
  835. },
  836. "gradientZ":{
  837. "sizes":[
  838. {
  839. "key":0,
  840. "value":1
  841. },
  842. {
  843. "key":1,
  844. "value":1
  845. }
  846. ]
  847. },
  848. "constantMin":0,
  849. "constantMax":0,
  850. "constantMinSeparate":[
  851. 0,
  852. 0,
  853. 0
  854. ],
  855. "constantMaxSeparate":[
  856. 0,
  857. 0,
  858. 0
  859. ],
  860. "gradientMin":{
  861. "sizes":[]
  862. },
  863. "gradientMax":{
  864. "sizes":[
  865. {
  866. "key":0,
  867. "value":0.4258065
  868. },
  869. {
  870. "key":1,
  871. "value":1
  872. }
  873. ]
  874. },
  875. "gradientXMin":{
  876. "sizes":[]
  877. },
  878. "gradientXMax":{
  879. "sizes":[
  880. {
  881. "key":0,
  882. "value":0.4258065
  883. },
  884. {
  885. "key":1,
  886. "value":1
  887. }
  888. ]
  889. },
  890. "gradientYMin":{
  891. "sizes":[]
  892. },
  893. "gradientYMax":{
  894. "sizes":[
  895. {
  896. "key":0,
  897. "value":1
  898. },
  899. {
  900. "key":1,
  901. "value":1
  902. }
  903. ]
  904. },
  905. "gradientZMin":{
  906. "sizes":[]
  907. },
  908. "gradientZMax":{
  909. "sizes":[
  910. {
  911. "key":0,
  912. "value":1
  913. },
  914. {
  915. "key":1,
  916. "value":1
  917. }
  918. ]
  919. }
  920. }
  921. },
  922. "textureSheetAnimation":{
  923. "enable":true,
  924. "tiles":[
  925. 2,
  926. 2
  927. ],
  928. "type":0,
  929. "randomRow":true,
  930. "rowIndex":0,
  931. "frame":{
  932. "type":1,
  933. "constant":0,
  934. "overTime":{
  935. "frames":[
  936. {
  937. "key":0,
  938. "value":0
  939. },
  940. {
  941. "key":1,
  942. "value":3.9996
  943. }
  944. ]
  945. },
  946. "constantMin":0,
  947. "constantMax":0,
  948. "overTimeMin":{
  949. "frames":[]
  950. },
  951. "overTimeMax":{
  952. "frames":[
  953. {
  954. "key":0,
  955. "value":0
  956. },
  957. {
  958. "key":1,
  959. "value":3.9996
  960. }
  961. ]
  962. }
  963. },
  964. "startFrame":{
  965. "type":0,
  966. "constant":0,
  967. "constantMin":0,
  968. "constantMax":0
  969. },
  970. "cycles":1,
  971. "enableUVChannels":1,
  972. "enableUVChannelsTip":"-1"
  973. },
  974. "renderMode":0,
  975. "stretchedBillboardCameraSpeedScale":0,
  976. "stretchedBillboardSpeedScale":0,
  977. "stretchedBillboardLengthScale":2,
  978. "sortingFudge":0,
  979. "material":{
  980. "type":"Laya.ShurikenParticleMaterial",
  981. "path":"Assets/LatestRes/FX/Materials/boom8.lmat"
  982. }
  983. },
  984. "components":[],
  985. "child":[]
  986. },
  987. {
  988. "type":"ShuriKenParticle3D",
  989. "instanceID":74,
  990. "props":{
  991. "name":"boom2",
  992. "active":true,
  993. "isStatic":false,
  994. "layer":0,
  995. "position":[
  996. 0,
  997. 0,
  998. -0.8136742
  999. ],
  1000. "rotation":[
  1001. -0.7071068,
  1002. 0,
  1003. 0,
  1004. -0.7071068
  1005. ],
  1006. "scale":[
  1007. 1,
  1008. 1,
  1009. 1
  1010. ],
  1011. "isPerformanceMode":true,
  1012. "duration":0.12,
  1013. "looping":false,
  1014. "prewarm":false,
  1015. "startDelayType":0,
  1016. "startDelay":0,
  1017. "startDelayMin":0,
  1018. "startDelayMax":0,
  1019. "startLifetimeType":0,
  1020. "startLifetimeConstant":0.95,
  1021. "startLifetimeConstantMin":0,
  1022. "startLifetimeConstantMax":0.95,
  1023. "startLifetimeGradient":{
  1024. "startLifetimes":[]
  1025. },
  1026. "startLifetimeGradientMin":{
  1027. "startLifetimes":[]
  1028. },
  1029. "startLifetimeGradientMax":{
  1030. "startLifetimes":[]
  1031. },
  1032. "startSpeedType":0,
  1033. "startSpeedConstant":0,
  1034. "startSpeedConstantMin":0,
  1035. "startSpeedConstantMax":0,
  1036. "threeDStartSize":false,
  1037. "startSizeType":0,
  1038. "startSizeConstant":11,
  1039. "startSizeConstantMin":0,
  1040. "startSizeConstantMax":11,
  1041. "startSizeConstantSeparate":[
  1042. 11,
  1043. 1,
  1044. 1
  1045. ],
  1046. "startSizeConstantMinSeparate":[
  1047. 0,
  1048. 0,
  1049. 0
  1050. ],
  1051. "startSizeConstantMaxSeparate":[
  1052. 11,
  1053. 1,
  1054. 1
  1055. ],
  1056. "threeDStartRotation":false,
  1057. "startRotationType":2,
  1058. "startRotationConstant":89.99999,
  1059. "startRotationConstantMin":-89.99999,
  1060. "startRotationConstantMax":89.99999,
  1061. "startRotationConstantSeparate":[
  1062. 0,
  1063. 0,
  1064. -89.99999
  1065. ],
  1066. "startRotationConstantMinSeparate":[
  1067. 0,
  1068. 0,
  1069. 89.99999
  1070. ],
  1071. "startRotationConstantMaxSeparate":[
  1072. 0,
  1073. 0,
  1074. -89.99999
  1075. ],
  1076. "randomizeRotationDirection":0,
  1077. "startColorType":0,
  1078. "startColorConstant":[
  1079. 1,
  1080. 1,
  1081. 1,
  1082. 1
  1083. ],
  1084. "startColorConstantMin":[
  1085. 0,
  1086. 0,
  1087. 0,
  1088. 0
  1089. ],
  1090. "startColorConstantMax":[
  1091. 1,
  1092. 1,
  1093. 1,
  1094. 1
  1095. ],
  1096. "gravity":[
  1097. 0,
  1098. -9.81,
  1099. 0
  1100. ],
  1101. "gravityModifier":0,
  1102. "simulationSpace":1,
  1103. "simulationSpeed":1,
  1104. "scaleMode":2,
  1105. "playOnAwake":true,
  1106. "maxParticles":1000,
  1107. "autoRandomSeed":true,
  1108. "randomSeed":1.53936E+09,
  1109. "emission":{
  1110. "enable":true,
  1111. "emissionRate":0,
  1112. "emissionRateTip":"Time",
  1113. "bursts":[
  1114. {
  1115. "time":0,
  1116. "min":1,
  1117. "max":1
  1118. }
  1119. ]
  1120. },
  1121. "colorOverLifetime":{
  1122. "enable":true,
  1123. "color":{
  1124. "type":1,
  1125. "constant":[
  1126. 0,
  1127. 0,
  1128. 0,
  1129. 0
  1130. ],
  1131. "gradient":{
  1132. "alphas":[
  1133. {
  1134. "key":0,
  1135. "value":1
  1136. },
  1137. {
  1138. "key":1,
  1139. "value":0
  1140. }
  1141. ],
  1142. "rgbs":[
  1143. {
  1144. "key":0,
  1145. "value":[
  1146. 1,
  1147. 1,
  1148. 1
  1149. ]
  1150. },
  1151. {
  1152. "key":1,
  1153. "value":[
  1154. 1,
  1155. 1,
  1156. 1
  1157. ]
  1158. }
  1159. ]
  1160. },
  1161. "constantMin":[
  1162. 0,
  1163. 0,
  1164. 0,
  1165. 0
  1166. ],
  1167. "constantMax":[
  1168. 0,
  1169. 0,
  1170. 0,
  1171. 0
  1172. ],
  1173. "gradientMax":{
  1174. "alphas":[
  1175. {
  1176. "key":0,
  1177. "value":1
  1178. },
  1179. {
  1180. "key":1,
  1181. "value":0
  1182. }
  1183. ],
  1184. "rgbs":[
  1185. {
  1186. "key":0,
  1187. "value":[
  1188. 1,
  1189. 1,
  1190. 1
  1191. ]
  1192. },
  1193. {
  1194. "key":1,
  1195. "value":[
  1196. 1,
  1197. 1,
  1198. 1
  1199. ]
  1200. }
  1201. ]
  1202. }
  1203. }
  1204. },
  1205. "renderMode":2,
  1206. "stretchedBillboardCameraSpeedScale":0,
  1207. "stretchedBillboardSpeedScale":0,
  1208. "stretchedBillboardLengthScale":2,
  1209. "sortingFudge":0,
  1210. "material":{
  1211. "type":"Laya.ShurikenParticleMaterial",
  1212. "path":"Assets/LatestRes/FX/Materials/boom1.lmat"
  1213. }
  1214. },
  1215. "components":[],
  1216. "child":[]
  1217. },
  1218. {
  1219. "type":"ShuriKenParticle3D",
  1220. "instanceID":75,
  1221. "props":{
  1222. "name":"boom3",
  1223. "active":true,
  1224. "isStatic":false,
  1225. "layer":0,
  1226. "position":[
  1227. 0,
  1228. 0,
  1229. 0.2292682
  1230. ],
  1231. "rotation":[
  1232. -0.7071068,
  1233. 0,
  1234. 0,
  1235. -0.7071068
  1236. ],
  1237. "scale":[
  1238. 1,
  1239. 1,
  1240. 1
  1241. ],
  1242. "isPerformanceMode":true,
  1243. "duration":0.12,
  1244. "looping":false,
  1245. "prewarm":false,
  1246. "startDelayType":0,
  1247. "startDelay":0,
  1248. "startDelayMin":0,
  1249. "startDelayMax":0,
  1250. "startLifetimeType":0,
  1251. "startLifetimeConstant":0.4,
  1252. "startLifetimeConstantMin":0,
  1253. "startLifetimeConstantMax":0.4,
  1254. "startLifetimeGradient":{
  1255. "startLifetimes":[]
  1256. },
  1257. "startLifetimeGradientMin":{
  1258. "startLifetimes":[]
  1259. },
  1260. "startLifetimeGradientMax":{
  1261. "startLifetimes":[]
  1262. },
  1263. "startSpeedType":0,
  1264. "startSpeedConstant":0,
  1265. "startSpeedConstantMin":0,
  1266. "startSpeedConstantMax":0,
  1267. "threeDStartSize":false,
  1268. "startSizeType":0,
  1269. "startSizeConstant":10,
  1270. "startSizeConstantMin":0,
  1271. "startSizeConstantMax":10,
  1272. "startSizeConstantSeparate":[
  1273. 10,
  1274. 1,
  1275. 1
  1276. ],
  1277. "startSizeConstantMinSeparate":[
  1278. 0,
  1279. 0,
  1280. 0
  1281. ],
  1282. "startSizeConstantMaxSeparate":[
  1283. 10,
  1284. 1,
  1285. 1
  1286. ],
  1287. "threeDStartRotation":false,
  1288. "startRotationType":2,
  1289. "startRotationConstant":89.99999,
  1290. "startRotationConstantMin":-89.99999,
  1291. "startRotationConstantMax":89.99999,
  1292. "startRotationConstantSeparate":[
  1293. 0,
  1294. 0,
  1295. -89.99999
  1296. ],
  1297. "startRotationConstantMinSeparate":[
  1298. 0,
  1299. 0,
  1300. 89.99999
  1301. ],
  1302. "startRotationConstantMaxSeparate":[
  1303. 0,
  1304. 0,
  1305. -89.99999
  1306. ],
  1307. "randomizeRotationDirection":0,
  1308. "startColorType":0,
  1309. "startColorConstant":[
  1310. 1,
  1311. 1,
  1312. 1,
  1313. 1
  1314. ],
  1315. "startColorConstantMin":[
  1316. 0,
  1317. 0,
  1318. 0,
  1319. 0
  1320. ],
  1321. "startColorConstantMax":[
  1322. 1,
  1323. 1,
  1324. 1,
  1325. 1
  1326. ],
  1327. "gravity":[
  1328. 0,
  1329. -9.81,
  1330. 0
  1331. ],
  1332. "gravityModifier":0,
  1333. "simulationSpace":1,
  1334. "simulationSpeed":1,
  1335. "scaleMode":2,
  1336. "playOnAwake":true,
  1337. "maxParticles":1000,
  1338. "autoRandomSeed":true,
  1339. "randomSeed":2.542223E+07,
  1340. "emission":{
  1341. "enable":true,
  1342. "emissionRate":0,
  1343. "emissionRateTip":"Time",
  1344. "bursts":[
  1345. {
  1346. "time":0,
  1347. "min":2,
  1348. "max":3
  1349. }
  1350. ]
  1351. },
  1352. "colorOverLifetime":{
  1353. "enable":true,
  1354. "color":{
  1355. "type":1,
  1356. "constant":[
  1357. 0,
  1358. 0,
  1359. 0,
  1360. 0
  1361. ],
  1362. "gradient":{
  1363. "alphas":[
  1364. {
  1365. "key":0,
  1366. "value":1
  1367. },
  1368. {
  1369. "key":0.3264668,
  1370. "value":1
  1371. },
  1372. {
  1373. "key":1,
  1374. "value":0
  1375. }
  1376. ],
  1377. "rgbs":[
  1378. {
  1379. "key":0,
  1380. "value":[
  1381. 1,
  1382. 0.9286004,
  1383. 0.3529412
  1384. ]
  1385. },
  1386. {
  1387. "key":0.02058442,
  1388. "value":[
  1389. 1,
  1390. 0.9286004,
  1391. 0.3529412
  1392. ]
  1393. },
  1394. {
  1395. "key":0.9823605,
  1396. "value":[
  1397. 1,
  1398. 0.2275862,
  1399. 0
  1400. ]
  1401. },
  1402. {
  1403. "key":1,
  1404. "value":[
  1405. 1,
  1406. 0.4745098,
  1407. 0
  1408. ]
  1409. }
  1410. ]
  1411. },
  1412. "constantMin":[
  1413. 0,
  1414. 0,
  1415. 0,
  1416. 0
  1417. ],
  1418. "constantMax":[
  1419. 0,
  1420. 0,
  1421. 0,
  1422. 0
  1423. ],
  1424. "gradientMax":{
  1425. "alphas":[
  1426. {
  1427. "key":0,
  1428. "value":1
  1429. },
  1430. {
  1431. "key":0.3264668,
  1432. "value":1
  1433. },
  1434. {
  1435. "key":1,
  1436. "value":0
  1437. }
  1438. ],
  1439. "rgbs":[
  1440. {
  1441. "key":0,
  1442. "value":[
  1443. 1,
  1444. 0.9286004,
  1445. 0.3529412
  1446. ]
  1447. },
  1448. {
  1449. "key":0.02058442,
  1450. "value":[
  1451. 1,
  1452. 0.9286004,
  1453. 0.3529412
  1454. ]
  1455. },
  1456. {
  1457. "key":0.9823605,
  1458. "value":[
  1459. 1,
  1460. 0.2275862,
  1461. 0
  1462. ]
  1463. },
  1464. {
  1465. "key":1,
  1466. "value":[
  1467. 1,
  1468. 0.4745098,
  1469. 0
  1470. ]
  1471. }
  1472. ]
  1473. }
  1474. }
  1475. },
  1476. "renderMode":0,
  1477. "stretchedBillboardCameraSpeedScale":0,
  1478. "stretchedBillboardSpeedScale":0,
  1479. "stretchedBillboardLengthScale":2,
  1480. "sortingFudge":0,
  1481. "material":{
  1482. "type":"Laya.ShurikenParticleMaterial",
  1483. "path":"Assets/LatestRes/FX/Materials/boom7.lmat"
  1484. }
  1485. },
  1486. "components":[],
  1487. "child":[]
  1488. },
  1489. {
  1490. "type":"ShuriKenParticle3D",
  1491. "instanceID":76,
  1492. "props":{
  1493. "name":"boom4",
  1494. "active":true,
  1495. "isStatic":false,
  1496. "layer":0,
  1497. "position":[
  1498. 0,
  1499. 0,
  1500. -0.8136742
  1501. ],
  1502. "rotation":[
  1503. -0.7071068,
  1504. 0,
  1505. 0,
  1506. -0.7071068
  1507. ],
  1508. "scale":[
  1509. 1,
  1510. 1,
  1511. 1
  1512. ],
  1513. "isPerformanceMode":true,
  1514. "duration":0.12,
  1515. "looping":false,
  1516. "prewarm":false,
  1517. "startDelayType":0,
  1518. "startDelay":0,
  1519. "startDelayMin":0,
  1520. "startDelayMax":0,
  1521. "startLifetimeType":0,
  1522. "startLifetimeConstant":1,
  1523. "startLifetimeConstantMin":0,
  1524. "startLifetimeConstantMax":1,
  1525. "startLifetimeGradient":{
  1526. "startLifetimes":[]
  1527. },
  1528. "startLifetimeGradientMin":{
  1529. "startLifetimes":[]
  1530. },
  1531. "startLifetimeGradientMax":{
  1532. "startLifetimes":[]
  1533. },
  1534. "startSpeedType":0,
  1535. "startSpeedConstant":0,
  1536. "startSpeedConstantMin":0,
  1537. "startSpeedConstantMax":0,
  1538. "threeDStartSize":false,
  1539. "startSizeType":0,
  1540. "startSizeConstant":16,
  1541. "startSizeConstantMin":0,
  1542. "startSizeConstantMax":16,
  1543. "startSizeConstantSeparate":[
  1544. 16,
  1545. 1,
  1546. 1
  1547. ],
  1548. "startSizeConstantMinSeparate":[
  1549. 0,
  1550. 0,
  1551. 0
  1552. ],
  1553. "startSizeConstantMaxSeparate":[
  1554. 16,
  1555. 1,
  1556. 1
  1557. ],
  1558. "threeDStartRotation":false,
  1559. "startRotationType":2,
  1560. "startRotationConstant":89.99999,
  1561. "startRotationConstantMin":-89.99999,
  1562. "startRotationConstantMax":89.99999,
  1563. "startRotationConstantSeparate":[
  1564. 0,
  1565. 0,
  1566. -89.99999
  1567. ],
  1568. "startRotationConstantMinSeparate":[
  1569. 0,
  1570. 0,
  1571. 89.99999
  1572. ],
  1573. "startRotationConstantMaxSeparate":[
  1574. 0,
  1575. 0,
  1576. -89.99999
  1577. ],
  1578. "randomizeRotationDirection":0,
  1579. "startColorType":0,
  1580. "startColorConstant":[
  1581. 1,
  1582. 1,
  1583. 1,
  1584. 0.434
  1585. ],
  1586. "startColorConstantMin":[
  1587. 0,
  1588. 0,
  1589. 0,
  1590. 0
  1591. ],
  1592. "startColorConstantMax":[
  1593. 1,
  1594. 1,
  1595. 1,
  1596. 0.434
  1597. ],
  1598. "gravity":[
  1599. 0,
  1600. -9.81,
  1601. 0
  1602. ],
  1603. "gravityModifier":0,
  1604. "simulationSpace":1,
  1605. "simulationSpeed":1,
  1606. "scaleMode":2,
  1607. "playOnAwake":true,
  1608. "maxParticles":1000,
  1609. "autoRandomSeed":true,
  1610. "randomSeed":7.434768E+08,
  1611. "emission":{
  1612. "enable":true,
  1613. "emissionRate":0,
  1614. "emissionRateTip":"Time",
  1615. "bursts":[
  1616. {
  1617. "time":0,
  1618. "min":2,
  1619. "max":2
  1620. }
  1621. ]
  1622. },
  1623. "colorOverLifetime":{
  1624. "enable":true,
  1625. "color":{
  1626. "type":1,
  1627. "constant":[
  1628. 0,
  1629. 0,
  1630. 0,
  1631. 0
  1632. ],
  1633. "gradient":{
  1634. "alphas":[
  1635. {
  1636. "key":0,
  1637. "value":1
  1638. },
  1639. {
  1640. "key":1,
  1641. "value":0
  1642. }
  1643. ],
  1644. "rgbs":[
  1645. {
  1646. "key":0,
  1647. "value":[
  1648. 0.5441177,
  1649. 0.504716,
  1650. 0.3760813
  1651. ]
  1652. },
  1653. {
  1654. "key":1,
  1655. "value":[
  1656. 0.4117647,
  1657. 0.3269896,
  1658. 0.3269896
  1659. ]
  1660. }
  1661. ]
  1662. },
  1663. "constantMin":[
  1664. 0,
  1665. 0,
  1666. 0,
  1667. 0
  1668. ],
  1669. "constantMax":[
  1670. 0,
  1671. 0,
  1672. 0,
  1673. 0
  1674. ],
  1675. "gradientMax":{
  1676. "alphas":[
  1677. {
  1678. "key":0,
  1679. "value":1
  1680. },
  1681. {
  1682. "key":1,
  1683. "value":0
  1684. }
  1685. ],
  1686. "rgbs":[
  1687. {
  1688. "key":0,
  1689. "value":[
  1690. 0.5441177,
  1691. 0.504716,
  1692. 0.3760813
  1693. ]
  1694. },
  1695. {
  1696. "key":1,
  1697. "value":[
  1698. 0.4117647,
  1699. 0.3269896,
  1700. 0.3269896
  1701. ]
  1702. }
  1703. ]
  1704. }
  1705. }
  1706. },
  1707. "sizeOverLifetime":{
  1708. "enable":true,
  1709. "size":{
  1710. "type":0,
  1711. "separateAxes":false,
  1712. "gradient":{
  1713. "sizes":[
  1714. {
  1715. "key":0,
  1716. "value":0.3765432
  1717. },
  1718. {
  1719. "key":1,
  1720. "value":1
  1721. }
  1722. ]
  1723. },
  1724. "gradientX":{
  1725. "sizes":[
  1726. {
  1727. "key":0,
  1728. "value":0.3765432
  1729. },
  1730. {
  1731. "key":1,
  1732. "value":1
  1733. }
  1734. ]
  1735. },
  1736. "gradientY":{
  1737. "sizes":[
  1738. {
  1739. "key":0,
  1740. "value":1
  1741. },
  1742. {
  1743. "key":1,
  1744. "value":1
  1745. }
  1746. ]
  1747. },
  1748. "gradientZ":{
  1749. "sizes":[
  1750. {
  1751. "key":0,
  1752. "value":1
  1753. },
  1754. {
  1755. "key":1,
  1756. "value":1
  1757. }
  1758. ]
  1759. },
  1760. "constantMin":0,
  1761. "constantMax":0,
  1762. "constantMinSeparate":[
  1763. 0,
  1764. 0,
  1765. 0
  1766. ],
  1767. "constantMaxSeparate":[
  1768. 0,
  1769. 0,
  1770. 0
  1771. ],
  1772. "gradientMin":{
  1773. "sizes":[]
  1774. },
  1775. "gradientMax":{
  1776. "sizes":[
  1777. {
  1778. "key":0,
  1779. "value":0.3765432
  1780. },
  1781. {
  1782. "key":1,
  1783. "value":1
  1784. }
  1785. ]
  1786. },
  1787. "gradientXMin":{
  1788. "sizes":[]
  1789. },
  1790. "gradientXMax":{
  1791. "sizes":[
  1792. {
  1793. "key":0,
  1794. "value":0.3765432
  1795. },
  1796. {
  1797. "key":1,
  1798. "value":1
  1799. }
  1800. ]
  1801. },
  1802. "gradientYMin":{
  1803. "sizes":[]
  1804. },
  1805. "gradientYMax":{
  1806. "sizes":[
  1807. {
  1808. "key":0,
  1809. "value":1
  1810. },
  1811. {
  1812. "key":1,
  1813. "value":1
  1814. }
  1815. ]
  1816. },
  1817. "gradientZMin":{
  1818. "sizes":[]
  1819. },
  1820. "gradientZMax":{
  1821. "sizes":[
  1822. {
  1823. "key":0,
  1824. "value":1
  1825. },
  1826. {
  1827. "key":1,
  1828. "value":1
  1829. }
  1830. ]
  1831. }
  1832. }
  1833. },
  1834. "renderMode":2,
  1835. "stretchedBillboardCameraSpeedScale":0,
  1836. "stretchedBillboardSpeedScale":0,
  1837. "stretchedBillboardLengthScale":2,
  1838. "sortingFudge":0,
  1839. "material":{
  1840. "type":"Laya.ShurikenParticleMaterial",
  1841. "path":"Assets/LatestRes/FX/Materials/boom3.lmat"
  1842. }
  1843. },
  1844. "components":[],
  1845. "child":[]
  1846. },
  1847. {
  1848. "type":"ShuriKenParticle3D",
  1849. "instanceID":77,
  1850. "props":{
  1851. "name":"boom5",
  1852. "active":true,
  1853. "isStatic":false,
  1854. "layer":0,
  1855. "position":[
  1856. 0,
  1857. 0,
  1858. 0
  1859. ],
  1860. "rotation":[
  1861. 0,
  1862. 0,
  1863. 0,
  1864. -1
  1865. ],
  1866. "scale":[
  1867. 1,
  1868. 1,
  1869. 1
  1870. ],
  1871. "isPerformanceMode":true,
  1872. "duration":0.3,
  1873. "looping":false,
  1874. "prewarm":false,
  1875. "startDelayType":0,
  1876. "startDelay":0,
  1877. "startDelayMin":0,
  1878. "startDelayMax":0,
  1879. "startLifetimeType":2,
  1880. "startLifetimeConstant":1,
  1881. "startLifetimeConstantMin":0.5,
  1882. "startLifetimeConstantMax":1,
  1883. "startLifetimeGradient":{
  1884. "startLifetimes":[]
  1885. },
  1886. "startLifetimeGradientMin":{
  1887. "startLifetimes":[]
  1888. },
  1889. "startLifetimeGradientMax":{
  1890. "startLifetimes":[]
  1891. },
  1892. "startSpeedType":2,
  1893. "startSpeedConstant":1,
  1894. "startSpeedConstantMin":0.2,
  1895. "startSpeedConstantMax":1,
  1896. "threeDStartSize":false,
  1897. "startSizeType":2,
  1898. "startSizeConstant":10,
  1899. "startSizeConstantMin":4.5,
  1900. "startSizeConstantMax":10,
  1901. "startSizeConstantSeparate":[
  1902. 10,
  1903. 1,
  1904. 1
  1905. ],
  1906. "startSizeConstantMinSeparate":[
  1907. 4.5,
  1908. 0,
  1909. 0
  1910. ],
  1911. "startSizeConstantMaxSeparate":[
  1912. 10,
  1913. 1,
  1914. 1
  1915. ],
  1916. "threeDStartRotation":false,
  1917. "startRotationType":2,
  1918. "startRotationConstant":89.99999,
  1919. "startRotationConstantMin":-89.99999,
  1920. "startRotationConstantMax":89.99999,
  1921. "startRotationConstantSeparate":[
  1922. 0,
  1923. 0,
  1924. -89.99999
  1925. ],
  1926. "startRotationConstantMinSeparate":[
  1927. 0,
  1928. 0,
  1929. 89.99999
  1930. ],
  1931. "startRotationConstantMaxSeparate":[
  1932. 0,
  1933. 0,
  1934. -89.99999
  1935. ],
  1936. "randomizeRotationDirection":0,
  1937. "startColorType":0,
  1938. "startColorConstant":[
  1939. 1,
  1940. 1,
  1941. 1,
  1942. 1
  1943. ],
  1944. "startColorConstantMin":[
  1945. 0,
  1946. 0,
  1947. 0,
  1948. 0
  1949. ],
  1950. "startColorConstantMax":[
  1951. 1,
  1952. 1,
  1953. 1,
  1954. 1
  1955. ],
  1956. "gravity":[
  1957. 0,
  1958. -9.81,
  1959. 0
  1960. ],
  1961. "gravityModifier":0,
  1962. "simulationSpace":1,
  1963. "simulationSpeed":1,
  1964. "scaleMode":2,
  1965. "playOnAwake":true,
  1966. "maxParticles":1000,
  1967. "autoRandomSeed":true,
  1968. "randomSeed":2.245238E+09,
  1969. "emission":{
  1970. "enable":true,
  1971. "emissionRate":0,
  1972. "emissionRateTip":"Time",
  1973. "bursts":[
  1974. {
  1975. "time":0,
  1976. "min":2,
  1977. "max":2
  1978. },
  1979. {
  1980. "time":0.05,
  1981. "min":2,
  1982. "max":2
  1983. },
  1984. {
  1985. "time":0.12,
  1986. "min":2,
  1987. "max":2
  1988. }
  1989. ]
  1990. },
  1991. "shape":{
  1992. "enable":true,
  1993. "shapeType":0,
  1994. "sphereRadius":0.8,
  1995. "sphereEmitFromShell":false,
  1996. "sphereRandomDirection":0,
  1997. "hemiSphereRadius":0.8,
  1998. "hemiSphereEmitFromShell":false,
  1999. "hemiSphereRandomDirection":0,
  2000. "coneAngle":0,
  2001. "coneRadius":0.8,
  2002. "coneLength":5,
  2003. "coneEmitType":0,
  2004. "coneRandomDirection":0,
  2005. "boxX":1,
  2006. "boxY":1,
  2007. "boxZ":1,
  2008. "boxRandomDirection":0,
  2009. "circleRadius":0.8,
  2010. "circleArc":0.6,
  2011. "circleEmitFromEdge":false,
  2012. "circleRandomDirection":0
  2013. },
  2014. "colorOverLifetime":{
  2015. "enable":true,
  2016. "color":{
  2017. "type":1,
  2018. "constant":[
  2019. 0,
  2020. 0,
  2021. 0,
  2022. 0
  2023. ],
  2024. "gradient":{
  2025. "alphas":[
  2026. {
  2027. "key":0,
  2028. "value":1
  2029. },
  2030. {
  2031. "key":0.4970626,
  2032. "value":1
  2033. },
  2034. {
  2035. "key":1,
  2036. "value":0
  2037. }
  2038. ],
  2039. "rgbs":[
  2040. {
  2041. "key":0,
  2042. "value":[
  2043. 1,
  2044. 0.9815416,
  2045. 0.3308824
  2046. ]
  2047. },
  2048. {
  2049. "key":0.5117723,
  2050. "value":[
  2051. 1,
  2052. 0.4745098,
  2053. 0
  2054. ]
  2055. },
  2056. {
  2057. "key":1,
  2058. "value":[
  2059. 0,
  2060. 0,
  2061. 0
  2062. ]
  2063. }
  2064. ]
  2065. },
  2066. "constantMin":[
  2067. 0,
  2068. 0,
  2069. 0,
  2070. 0
  2071. ],
  2072. "constantMax":[
  2073. 0,
  2074. 0,
  2075. 0,
  2076. 0
  2077. ],
  2078. "gradientMax":{
  2079. "alphas":[
  2080. {
  2081. "key":0,
  2082. "value":1
  2083. },
  2084. {
  2085. "key":0.4970626,
  2086. "value":1
  2087. },
  2088. {
  2089. "key":1,
  2090. "value":0
  2091. }
  2092. ],
  2093. "rgbs":[
  2094. {
  2095. "key":0,
  2096. "value":[
  2097. 1,
  2098. 0.9815416,
  2099. 0.3308824
  2100. ]
  2101. },
  2102. {
  2103. "key":0.5117723,
  2104. "value":[
  2105. 1,
  2106. 0.4745098,
  2107. 0
  2108. ]
  2109. },
  2110. {
  2111. "key":1,
  2112. "value":[
  2113. 0,
  2114. 0,
  2115. 0
  2116. ]
  2117. }
  2118. ]
  2119. }
  2120. }
  2121. },
  2122. "sizeOverLifetime":{
  2123. "enable":true,
  2124. "size":{
  2125. "type":0,
  2126. "separateAxes":false,
  2127. "gradient":{
  2128. "sizes":[
  2129. {
  2130. "key":0,
  2131. "value":0.4258065
  2132. },
  2133. {
  2134. "key":1,
  2135. "value":1
  2136. }
  2137. ]
  2138. },
  2139. "gradientX":{
  2140. "sizes":[
  2141. {
  2142. "key":0,
  2143. "value":0.4258065
  2144. },
  2145. {
  2146. "key":1,
  2147. "value":1
  2148. }
  2149. ]
  2150. },
  2151. "gradientY":{
  2152. "sizes":[
  2153. {
  2154. "key":0,
  2155. "value":1
  2156. },
  2157. {
  2158. "key":1,
  2159. "value":1
  2160. }
  2161. ]
  2162. },
  2163. "gradientZ":{
  2164. "sizes":[
  2165. {
  2166. "key":0,
  2167. "value":1
  2168. },
  2169. {
  2170. "key":1,
  2171. "value":1
  2172. }
  2173. ]
  2174. },
  2175. "constantMin":0,
  2176. "constantMax":0,
  2177. "constantMinSeparate":[
  2178. 0,
  2179. 0,
  2180. 0
  2181. ],
  2182. "constantMaxSeparate":[
  2183. 0,
  2184. 0,
  2185. 0
  2186. ],
  2187. "gradientMin":{
  2188. "sizes":[]
  2189. },
  2190. "gradientMax":{
  2191. "sizes":[
  2192. {
  2193. "key":0,
  2194. "value":0.4258065
  2195. },
  2196. {
  2197. "key":1,
  2198. "value":1
  2199. }
  2200. ]
  2201. },
  2202. "gradientXMin":{
  2203. "sizes":[]
  2204. },
  2205. "gradientXMax":{
  2206. "sizes":[
  2207. {
  2208. "key":0,
  2209. "value":0.4258065
  2210. },
  2211. {
  2212. "key":1,
  2213. "value":1
  2214. }
  2215. ]
  2216. },
  2217. "gradientYMin":{
  2218. "sizes":[]
  2219. },
  2220. "gradientYMax":{
  2221. "sizes":[
  2222. {
  2223. "key":0,
  2224. "value":1
  2225. },
  2226. {
  2227. "key":1,
  2228. "value":1
  2229. }
  2230. ]
  2231. },
  2232. "gradientZMin":{
  2233. "sizes":[]
  2234. },
  2235. "gradientZMax":{
  2236. "sizes":[
  2237. {
  2238. "key":0,
  2239. "value":1
  2240. },
  2241. {
  2242. "key":1,
  2243. "value":1
  2244. }
  2245. ]
  2246. }
  2247. }
  2248. },
  2249. "rotationOverLifetime":{
  2250. "enable":true,
  2251. "angularVelocity":{
  2252. "type":2,
  2253. "separateAxes":false,
  2254. "constant":50,
  2255. "constantMin":-50,
  2256. "constantMax":50,
  2257. "constantSeparate":[
  2258. 0,
  2259. 0,
  2260. -50
  2261. ],
  2262. "constantMinSeparate":[
  2263. 0,
  2264. 0,
  2265. -50
  2266. ],
  2267. "constantMaxSeparate":[
  2268. 0,
  2269. 0,
  2270. 50
  2271. ],
  2272. "gradient":{
  2273. "angularVelocitys":[]
  2274. },
  2275. "gradientX":{
  2276. "angularVelocitys":[]
  2277. },
  2278. "gradientY":{
  2279. "angularVelocitys":[]
  2280. },
  2281. "gradientZ":{
  2282. "angularVelocitys":[]
  2283. },
  2284. "gradientMin":{
  2285. "angularVelocitys":[]
  2286. },
  2287. "gradientMax":{
  2288. "angularVelocitys":[]
  2289. },
  2290. "gradientXMin":{
  2291. "angularVelocitys":[]
  2292. },
  2293. "gradientXMax":{
  2294. "angularVelocitys":[]
  2295. },
  2296. "gradientYMin":{
  2297. "angularVelocitys":[]
  2298. },
  2299. "gradientYMax":{
  2300. "angularVelocitys":[]
  2301. },
  2302. "gradientZMin":{
  2303. "angularVelocitys":[]
  2304. },
  2305. "gradientZMax":{
  2306. "angularVelocitys":[]
  2307. }
  2308. }
  2309. },
  2310. "textureSheetAnimation":{
  2311. "enable":true,
  2312. "tiles":[
  2313. 2,
  2314. 1
  2315. ],
  2316. "type":0,
  2317. "randomRow":true,
  2318. "rowIndex":0,
  2319. "frame":{
  2320. "type":2,
  2321. "constant":1.9998,
  2322. "overTime":{
  2323. "frames":[]
  2324. },
  2325. "constantMin":0,
  2326. "constantMax":1.9998,
  2327. "overTimeMin":{
  2328. "frames":[]
  2329. },
  2330. "overTimeMax":{
  2331. "frames":[]
  2332. }
  2333. },
  2334. "startFrame":{
  2335. "type":0,
  2336. "constant":0,
  2337. "constantMin":0,
  2338. "constantMax":0
  2339. },
  2340. "cycles":1,
  2341. "enableUVChannels":1,
  2342. "enableUVChannelsTip":"-1"
  2343. },
  2344. "renderMode":0,
  2345. "stretchedBillboardCameraSpeedScale":0,
  2346. "stretchedBillboardSpeedScale":0,
  2347. "stretchedBillboardLengthScale":2,
  2348. "sortingFudge":0,
  2349. "material":{
  2350. "type":"Laya.ShurikenParticleMaterial",
  2351. "path":"Assets/LatestRes/FX/Materials/boom9.lmat"
  2352. }
  2353. },
  2354. "components":[],
  2355. "child":[]
  2356. },
  2357. {
  2358. "type":"ShuriKenParticle3D",
  2359. "instanceID":78,
  2360. "props":{
  2361. "name":"boom6",
  2362. "active":true,
  2363. "isStatic":false,
  2364. "layer":0,
  2365. "position":[
  2366. 0,
  2367. 0,
  2368. -0.8226979
  2369. ],
  2370. "rotation":[
  2371. 0,
  2372. 0,
  2373. 0,
  2374. -1
  2375. ],
  2376. "scale":[
  2377. 1,
  2378. 1,
  2379. 1
  2380. ],
  2381. "isPerformanceMode":true,
  2382. "duration":0.3,
  2383. "looping":false,
  2384. "prewarm":false,
  2385. "startDelayType":0,
  2386. "startDelay":0,
  2387. "startDelayMin":0,
  2388. "startDelayMax":0,
  2389. "startLifetimeType":2,
  2390. "startLifetimeConstant":0.6,
  2391. "startLifetimeConstantMin":0.6,
  2392. "startLifetimeConstantMax":0.6,
  2393. "startLifetimeGradient":{
  2394. "startLifetimes":[]
  2395. },
  2396. "startLifetimeGradientMin":{
  2397. "startLifetimes":[]
  2398. },
  2399. "startLifetimeGradientMax":{
  2400. "startLifetimes":[]
  2401. },
  2402. "startSpeedType":2,
  2403. "startSpeedConstant":22.5,
  2404. "startSpeedConstantMin":9,
  2405. "startSpeedConstantMax":22.5,
  2406. "threeDStartSize":false,
  2407. "startSizeType":2,
  2408. "startSizeConstant":5.25,
  2409. "startSizeConstantMin":3,
  2410. "startSizeConstantMax":5.25,
  2411. "startSizeConstantSeparate":[
  2412. 5.25,
  2413. 1,
  2414. 1
  2415. ],
  2416. "startSizeConstantMinSeparate":[
  2417. 3,
  2418. 0,
  2419. 0
  2420. ],
  2421. "startSizeConstantMaxSeparate":[
  2422. 5.25,
  2423. 1,
  2424. 1
  2425. ],
  2426. "threeDStartRotation":false,
  2427. "startRotationType":2,
  2428. "startRotationConstant":0,
  2429. "startRotationConstantMin":0,
  2430. "startRotationConstantMax":0,
  2431. "startRotationConstantSeparate":[
  2432. 0,
  2433. 0,
  2434. 0
  2435. ],
  2436. "startRotationConstantMinSeparate":[
  2437. 0,
  2438. 0,
  2439. 0
  2440. ],
  2441. "startRotationConstantMaxSeparate":[
  2442. 0,
  2443. 0,
  2444. 0
  2445. ],
  2446. "randomizeRotationDirection":0,
  2447. "startColorType":0,
  2448. "startColorConstant":[
  2449. 1,
  2450. 1,
  2451. 1,
  2452. 1
  2453. ],
  2454. "startColorConstantMin":[
  2455. 0,
  2456. 0,
  2457. 0,
  2458. 0
  2459. ],
  2460. "startColorConstantMax":[
  2461. 1,
  2462. 1,
  2463. 1,
  2464. 1
  2465. ],
  2466. "gravity":[
  2467. 0,
  2468. -9.81,
  2469. 0
  2470. ],
  2471. "gravityModifier":3,
  2472. "simulationSpace":1,
  2473. "simulationSpeed":1,
  2474. "scaleMode":2,
  2475. "playOnAwake":true,
  2476. "maxParticles":1000,
  2477. "autoRandomSeed":true,
  2478. "randomSeed":3.630425E+09,
  2479. "emission":{
  2480. "enable":true,
  2481. "emissionRate":0,
  2482. "emissionRateTip":"Time",
  2483. "bursts":[
  2484. {
  2485. "time":0,
  2486. "min":5,
  2487. "max":5
  2488. },
  2489. {
  2490. "time":0.05,
  2491. "min":5,
  2492. "max":5
  2493. },
  2494. {
  2495. "time":0.12,
  2496. "min":3,
  2497. "max":5
  2498. }
  2499. ]
  2500. },
  2501. "shape":{
  2502. "enable":true,
  2503. "shapeType":2,
  2504. "sphereRadius":0.3,
  2505. "sphereEmitFromShell":false,
  2506. "sphereRandomDirection":0,
  2507. "hemiSphereRadius":0.3,
  2508. "hemiSphereEmitFromShell":false,
  2509. "hemiSphereRandomDirection":0,
  2510. "coneAngle":0,
  2511. "coneRadius":0.3,
  2512. "coneLength":5,
  2513. "coneEmitType":0,
  2514. "coneRandomDirection":0,
  2515. "boxX":1,
  2516. "boxY":1,
  2517. "boxZ":1,
  2518. "boxRandomDirection":0,
  2519. "circleRadius":0.3,
  2520. "circleArc":0.3,
  2521. "circleEmitFromEdge":false,
  2522. "circleRandomDirection":0
  2523. },
  2524. "colorOverLifetime":{
  2525. "enable":true,
  2526. "color":{
  2527. "type":1,
  2528. "constant":[
  2529. 0,
  2530. 0,
  2531. 0,
  2532. 0
  2533. ],
  2534. "gradient":{
  2535. "alphas":[
  2536. {
  2537. "key":0,
  2538. "value":1
  2539. },
  2540. {
  2541. "key":1,
  2542. "value":0
  2543. }
  2544. ],
  2545. "rgbs":[
  2546. {
  2547. "key":0,
  2548. "value":[
  2549. 0,
  2550. 0,
  2551. 0
  2552. ]
  2553. },
  2554. {
  2555. "key":1,
  2556. "value":[
  2557. 0,
  2558. 0,
  2559. 0
  2560. ]
  2561. }
  2562. ]
  2563. },
  2564. "constantMin":[
  2565. 0,
  2566. 0,
  2567. 0,
  2568. 0
  2569. ],
  2570. "constantMax":[
  2571. 0,
  2572. 0,
  2573. 0,
  2574. 0
  2575. ],
  2576. "gradientMax":{
  2577. "alphas":[
  2578. {
  2579. "key":0,
  2580. "value":1
  2581. },
  2582. {
  2583. "key":1,
  2584. "value":0
  2585. }
  2586. ],
  2587. "rgbs":[
  2588. {
  2589. "key":0,
  2590. "value":[
  2591. 0,
  2592. 0,
  2593. 0
  2594. ]
  2595. },
  2596. {
  2597. "key":1,
  2598. "value":[
  2599. 0,
  2600. 0,
  2601. 0
  2602. ]
  2603. }
  2604. ]
  2605. }
  2606. }
  2607. },
  2608. "sizeOverLifetime":{
  2609. "enable":true,
  2610. "size":{
  2611. "type":0,
  2612. "separateAxes":false,
  2613. "gradient":{
  2614. "sizes":[
  2615. {
  2616. "key":0,
  2617. "value":0.8333333
  2618. },
  2619. {
  2620. "key":1,
  2621. "value":1
  2622. }
  2623. ]
  2624. },
  2625. "gradientX":{
  2626. "sizes":[
  2627. {
  2628. "key":0,
  2629. "value":0.8333333
  2630. },
  2631. {
  2632. "key":1,
  2633. "value":1
  2634. }
  2635. ]
  2636. },
  2637. "gradientY":{
  2638. "sizes":[
  2639. {
  2640. "key":0,
  2641. "value":1
  2642. },
  2643. {
  2644. "key":1,
  2645. "value":1
  2646. }
  2647. ]
  2648. },
  2649. "gradientZ":{
  2650. "sizes":[
  2651. {
  2652. "key":0,
  2653. "value":1
  2654. },
  2655. {
  2656. "key":1,
  2657. "value":1
  2658. }
  2659. ]
  2660. },
  2661. "constantMin":0,
  2662. "constantMax":0,
  2663. "constantMinSeparate":[
  2664. 0,
  2665. 0,
  2666. 0
  2667. ],
  2668. "constantMaxSeparate":[
  2669. 0,
  2670. 0,
  2671. 0
  2672. ],
  2673. "gradientMin":{
  2674. "sizes":[]
  2675. },
  2676. "gradientMax":{
  2677. "sizes":[
  2678. {
  2679. "key":0,
  2680. "value":0.8333333
  2681. },
  2682. {
  2683. "key":1,
  2684. "value":1
  2685. }
  2686. ]
  2687. },
  2688. "gradientXMin":{
  2689. "sizes":[]
  2690. },
  2691. "gradientXMax":{
  2692. "sizes":[
  2693. {
  2694. "key":0,
  2695. "value":0.8333333
  2696. },
  2697. {
  2698. "key":1,
  2699. "value":1
  2700. }
  2701. ]
  2702. },
  2703. "gradientYMin":{
  2704. "sizes":[]
  2705. },
  2706. "gradientYMax":{
  2707. "sizes":[
  2708. {
  2709. "key":0,
  2710. "value":1
  2711. },
  2712. {
  2713. "key":1,
  2714. "value":1
  2715. }
  2716. ]
  2717. },
  2718. "gradientZMin":{
  2719. "sizes":[]
  2720. },
  2721. "gradientZMax":{
  2722. "sizes":[
  2723. {
  2724. "key":0,
  2725. "value":1
  2726. },
  2727. {
  2728. "key":1,
  2729. "value":1
  2730. }
  2731. ]
  2732. }
  2733. }
  2734. },
  2735. "textureSheetAnimation":{
  2736. "enable":true,
  2737. "tiles":[
  2738. 1,
  2739. 1
  2740. ],
  2741. "type":0,
  2742. "randomRow":true,
  2743. "rowIndex":0,
  2744. "frame":{
  2745. "type":2,
  2746. "constant":0.5,
  2747. "overTime":{
  2748. "frames":[]
  2749. },
  2750. "constantMin":0,
  2751. "constantMax":0.5,
  2752. "overTimeMin":{
  2753. "frames":[]
  2754. },
  2755. "overTimeMax":{
  2756. "frames":[]
  2757. }
  2758. },
  2759. "startFrame":{
  2760. "type":0,
  2761. "constant":0,
  2762. "constantMin":0,
  2763. "constantMax":0
  2764. },
  2765. "cycles":1,
  2766. "enableUVChannels":1,
  2767. "enableUVChannelsTip":"-1"
  2768. },
  2769. "renderMode":0,
  2770. "stretchedBillboardCameraSpeedScale":0,
  2771. "stretchedBillboardSpeedScale":0,
  2772. "stretchedBillboardLengthScale":2,
  2773. "sortingFudge":0,
  2774. "material":{
  2775. "type":"Laya.ShurikenParticleMaterial",
  2776. "path":"Assets/LatestRes/FX/Materials/boom5.lmat"
  2777. }
  2778. },
  2779. "components":[],
  2780. "child":[]
  2781. },
  2782. {
  2783. "type":"ShuriKenParticle3D",
  2784. "instanceID":79,
  2785. "props":{
  2786. "name":"boom9",
  2787. "active":true,
  2788. "isStatic":false,
  2789. "layer":0,
  2790. "position":[
  2791. 0,
  2792. 0,
  2793. -0.8236742
  2794. ],
  2795. "rotation":[
  2796. 0,
  2797. 0,
  2798. -1,
  2799. 4.371139E-08
  2800. ],
  2801. "scale":[
  2802. 1,
  2803. 1,
  2804. 1
  2805. ],
  2806. "isPerformanceMode":true,
  2807. "duration":0.1,
  2808. "looping":false,
  2809. "prewarm":false,
  2810. "startDelayType":0,
  2811. "startDelay":0,
  2812. "startDelayMin":0,
  2813. "startDelayMax":0,
  2814. "startLifetimeType":2,
  2815. "startLifetimeConstant":0.8,
  2816. "startLifetimeConstantMin":0.2,
  2817. "startLifetimeConstantMax":0.8,
  2818. "startLifetimeGradient":{
  2819. "startLifetimes":[]
  2820. },
  2821. "startLifetimeGradientMin":{
  2822. "startLifetimes":[]
  2823. },
  2824. "startLifetimeGradientMax":{
  2825. "startLifetimes":[]
  2826. },
  2827. "startSpeedType":2,
  2828. "startSpeedConstant":0.75,
  2829. "startSpeedConstantMin":0.45,
  2830. "startSpeedConstantMax":0.75,
  2831. "threeDStartSize":false,
  2832. "startSizeType":2,
  2833. "startSizeConstant":4,
  2834. "startSizeConstantMin":2,
  2835. "startSizeConstantMax":4,
  2836. "startSizeConstantSeparate":[
  2837. 4,
  2838. 1,
  2839. 1
  2840. ],
  2841. "startSizeConstantMinSeparate":[
  2842. 2,
  2843. 0,
  2844. 0
  2845. ],
  2846. "startSizeConstantMaxSeparate":[
  2847. 4,
  2848. 1,
  2849. 1
  2850. ],
  2851. "threeDStartRotation":false,
  2852. "startRotationType":2,
  2853. "startRotationConstant":180,
  2854. "startRotationConstantMin":-180,
  2855. "startRotationConstantMax":180,
  2856. "startRotationConstantSeparate":[
  2857. 0,
  2858. 0,
  2859. -180
  2860. ],
  2861. "startRotationConstantMinSeparate":[
  2862. 0,
  2863. 0,
  2864. 180
  2865. ],
  2866. "startRotationConstantMaxSeparate":[
  2867. 0,
  2868. 0,
  2869. -180
  2870. ],
  2871. "randomizeRotationDirection":0,
  2872. "startColorType":0,
  2873. "startColorConstant":[
  2874. 1,
  2875. 1,
  2876. 1,
  2877. 0.4784314
  2878. ],
  2879. "startColorConstantMin":[
  2880. 0,
  2881. 0,
  2882. 0,
  2883. 0
  2884. ],
  2885. "startColorConstantMax":[
  2886. 1,
  2887. 1,
  2888. 1,
  2889. 0.4784314
  2890. ],
  2891. "gravity":[
  2892. 0,
  2893. -9.81,
  2894. 0
  2895. ],
  2896. "gravityModifier":0,
  2897. "simulationSpace":1,
  2898. "simulationSpeed":1,
  2899. "scaleMode":2,
  2900. "playOnAwake":true,
  2901. "maxParticles":1000,
  2902. "autoRandomSeed":true,
  2903. "randomSeed":3.333581E+09,
  2904. "emission":{
  2905. "enable":true,
  2906. "emissionRate":200,
  2907. "emissionRateTip":"Time",
  2908. "bursts":[]
  2909. },
  2910. "shape":{
  2911. "enable":true,
  2912. "shapeType":2,
  2913. "sphereRadius":0.05,
  2914. "sphereEmitFromShell":false,
  2915. "sphereRandomDirection":0,
  2916. "hemiSphereRadius":0.05,
  2917. "hemiSphereEmitFromShell":false,
  2918. "hemiSphereRandomDirection":0,
  2919. "coneAngle":55,
  2920. "coneRadius":0.05,
  2921. "coneLength":5,
  2922. "coneEmitType":0,
  2923. "coneRandomDirection":0,
  2924. "boxX":1,
  2925. "boxY":1,
  2926. "boxZ":1,
  2927. "boxRandomDirection":0,
  2928. "circleRadius":0.05,
  2929. "circleArc":360,
  2930. "circleEmitFromEdge":false,
  2931. "circleRandomDirection":0
  2932. },
  2933. "colorOverLifetime":{
  2934. "enable":true,
  2935. "color":{
  2936. "type":1,
  2937. "constant":[
  2938. 0,
  2939. 0,
  2940. 0,
  2941. 0
  2942. ],
  2943. "gradient":{
  2944. "alphas":[
  2945. {
  2946. "key":0,
  2947. "value":1
  2948. },
  2949. {
  2950. "key":1,
  2951. "value":0
  2952. }
  2953. ],
  2954. "rgbs":[
  2955. {
  2956. "key":0,
  2957. "value":[
  2958. 0,
  2959. 0,
  2960. 0
  2961. ]
  2962. },
  2963. {
  2964. "key":1,
  2965. "value":[
  2966. 0,
  2967. 0,
  2968. 0
  2969. ]
  2970. }
  2971. ]
  2972. },
  2973. "constantMin":[
  2974. 0,
  2975. 0,
  2976. 0,
  2977. 0
  2978. ],
  2979. "constantMax":[
  2980. 0,
  2981. 0,
  2982. 0,
  2983. 0
  2984. ],
  2985. "gradientMax":{
  2986. "alphas":[
  2987. {
  2988. "key":0,
  2989. "value":1
  2990. },
  2991. {
  2992. "key":1,
  2993. "value":0
  2994. }
  2995. ],
  2996. "rgbs":[
  2997. {
  2998. "key":0,
  2999. "value":[
  3000. 0,
  3001. 0,
  3002. 0
  3003. ]
  3004. },
  3005. {
  3006. "key":1,
  3007. "value":[
  3008. 0,
  3009. 0,
  3010. 0
  3011. ]
  3012. }
  3013. ]
  3014. }
  3015. }
  3016. },
  3017. "sizeOverLifetime":{
  3018. "enable":true,
  3019. "size":{
  3020. "type":0,
  3021. "separateAxes":false,
  3022. "gradient":{
  3023. "sizes":[
  3024. {
  3025. "key":0,
  3026. "value":0
  3027. },
  3028. {
  3029. "key":1,
  3030. "value":1
  3031. }
  3032. ]
  3033. },
  3034. "gradientX":{
  3035. "sizes":[
  3036. {
  3037. "key":0,
  3038. "value":0
  3039. },
  3040. {
  3041. "key":1,
  3042. "value":1
  3043. }
  3044. ]
  3045. },
  3046. "gradientY":{
  3047. "sizes":[
  3048. {
  3049. "key":0,
  3050. "value":1
  3051. },
  3052. {
  3053. "key":1,
  3054. "value":1
  3055. }
  3056. ]
  3057. },
  3058. "gradientZ":{
  3059. "sizes":[
  3060. {
  3061. "key":0,
  3062. "value":1
  3063. },
  3064. {
  3065. "key":1,
  3066. "value":1
  3067. }
  3068. ]
  3069. },
  3070. "constantMin":0,
  3071. "constantMax":0,
  3072. "constantMinSeparate":[
  3073. 0,
  3074. 0,
  3075. 0
  3076. ],
  3077. "constantMaxSeparate":[
  3078. 0,
  3079. 0,
  3080. 0
  3081. ],
  3082. "gradientMin":{
  3083. "sizes":[]
  3084. },
  3085. "gradientMax":{
  3086. "sizes":[
  3087. {
  3088. "key":0,
  3089. "value":0
  3090. },
  3091. {
  3092. "key":1,
  3093. "value":1
  3094. }
  3095. ]
  3096. },
  3097. "gradientXMin":{
  3098. "sizes":[]
  3099. },
  3100. "gradientXMax":{
  3101. "sizes":[
  3102. {
  3103. "key":0,
  3104. "value":0
  3105. },
  3106. {
  3107. "key":1,
  3108. "value":1
  3109. }
  3110. ]
  3111. },
  3112. "gradientYMin":{
  3113. "sizes":[]
  3114. },
  3115. "gradientYMax":{
  3116. "sizes":[
  3117. {
  3118. "key":0,
  3119. "value":1
  3120. },
  3121. {
  3122. "key":1,
  3123. "value":1
  3124. }
  3125. ]
  3126. },
  3127. "gradientZMin":{
  3128. "sizes":[]
  3129. },
  3130. "gradientZMax":{
  3131. "sizes":[
  3132. {
  3133. "key":0,
  3134. "value":1
  3135. },
  3136. {
  3137. "key":1,
  3138. "value":1
  3139. }
  3140. ]
  3141. }
  3142. }
  3143. },
  3144. "renderMode":1,
  3145. "stretchedBillboardCameraSpeedScale":0,
  3146. "stretchedBillboardSpeedScale":0,
  3147. "stretchedBillboardLengthScale":-2,
  3148. "sortingFudge":0,
  3149. "material":{
  3150. "type":"Laya.ShurikenParticleMaterial",
  3151. "path":"Assets/LatestRes/FX/Materials/boom6.lmat"
  3152. }
  3153. },
  3154. "components":[],
  3155. "child":[]
  3156. },
  3157. {
  3158. "type":"ShuriKenParticle3D",
  3159. "instanceID":80,
  3160. "props":{
  3161. "name":"boom10",
  3162. "active":true,
  3163. "isStatic":false,
  3164. "layer":0,
  3165. "position":[
  3166. 0,
  3167. 0,
  3168. -0.8236742
  3169. ],
  3170. "rotation":[
  3171. 0,
  3172. 0,
  3173. 0,
  3174. -1
  3175. ],
  3176. "scale":[
  3177. 0.6666667,
  3178. 0.6666668,
  3179. 0.6666668
  3180. ],
  3181. "isPerformanceMode":true,
  3182. "duration":0.1,
  3183. "looping":false,
  3184. "prewarm":false,
  3185. "startDelayType":0,
  3186. "startDelay":0,
  3187. "startDelayMin":0,
  3188. "startDelayMax":0,
  3189. "startLifetimeType":2,
  3190. "startLifetimeConstant":1,
  3191. "startLifetimeConstantMin":0.6,
  3192. "startLifetimeConstantMax":1,
  3193. "startLifetimeGradient":{
  3194. "startLifetimes":[]
  3195. },
  3196. "startLifetimeGradientMin":{
  3197. "startLifetimes":[]
  3198. },
  3199. "startLifetimeGradientMax":{
  3200. "startLifetimes":[]
  3201. },
  3202. "startSpeedType":2,
  3203. "startSpeedConstant":5,
  3204. "startSpeedConstantMin":1,
  3205. "startSpeedConstantMax":5,
  3206. "threeDStartSize":false,
  3207. "startSizeType":2,
  3208. "startSizeConstant":6,
  3209. "startSizeConstantMin":3,
  3210. "startSizeConstantMax":6,
  3211. "startSizeConstantSeparate":[
  3212. 6,
  3213. 1,
  3214. 1
  3215. ],
  3216. "startSizeConstantMinSeparate":[
  3217. 3,
  3218. 0,
  3219. 0
  3220. ],
  3221. "startSizeConstantMaxSeparate":[
  3222. 6,
  3223. 1,
  3224. 1
  3225. ],
  3226. "threeDStartRotation":false,
  3227. "startRotationType":2,
  3228. "startRotationConstant":180,
  3229. "startRotationConstantMin":-180,
  3230. "startRotationConstantMax":180,
  3231. "startRotationConstantSeparate":[
  3232. 0,
  3233. 0,
  3234. -180
  3235. ],
  3236. "startRotationConstantMinSeparate":[
  3237. 0,
  3238. 0,
  3239. 180
  3240. ],
  3241. "startRotationConstantMaxSeparate":[
  3242. 0,
  3243. 0,
  3244. -180
  3245. ],
  3246. "randomizeRotationDirection":0,
  3247. "startColorType":0,
  3248. "startColorConstant":[
  3249. 1,
  3250. 1,
  3251. 1,
  3252. 0.641
  3253. ],
  3254. "startColorConstantMin":[
  3255. 0,
  3256. 0,
  3257. 0,
  3258. 0
  3259. ],
  3260. "startColorConstantMax":[
  3261. 1,
  3262. 1,
  3263. 1,
  3264. 0.641
  3265. ],
  3266. "gravity":[
  3267. 0,
  3268. -9.81,
  3269. 0
  3270. ],
  3271. "gravityModifier":0,
  3272. "simulationSpace":1,
  3273. "simulationSpeed":1,
  3274. "scaleMode":2,
  3275. "playOnAwake":true,
  3276. "maxParticles":1000,
  3277. "autoRandomSeed":true,
  3278. "randomSeed":1.849229E+09,
  3279. "emission":{
  3280. "enable":true,
  3281. "emissionRate":300,
  3282. "emissionRateTip":"Time",
  3283. "bursts":[]
  3284. },
  3285. "shape":{
  3286. "enable":true,
  3287. "shapeType":1,
  3288. "sphereRadius":0.6,
  3289. "sphereEmitFromShell":false,
  3290. "sphereRandomDirection":0,
  3291. "hemiSphereRadius":0.6,
  3292. "hemiSphereEmitFromShell":true,
  3293. "hemiSphereRandomDirection":0,
  3294. "coneAngle":90,
  3295. "coneRadius":0.6,
  3296. "coneLength":5,
  3297. "coneEmitType":1,
  3298. "coneRandomDirection":0,
  3299. "boxX":1,
  3300. "boxY":1,
  3301. "boxZ":1,
  3302. "boxRandomDirection":0,
  3303. "circleRadius":0.6,
  3304. "circleArc":0.6,
  3305. "circleEmitFromEdge":false,
  3306. "circleRandomDirection":0
  3307. },
  3308. "colorOverLifetime":{
  3309. "enable":true,
  3310. "color":{
  3311. "type":1,
  3312. "constant":[
  3313. 0,
  3314. 0,
  3315. 0,
  3316. 0
  3317. ],
  3318. "gradient":{
  3319. "alphas":[
  3320. {
  3321. "key":0,
  3322. "value":0
  3323. },
  3324. {
  3325. "key":0.1323568,
  3326. "value":0
  3327. },
  3328. {
  3329. "key":0.6176547,
  3330. "value":0.4196078
  3331. },
  3332. {
  3333. "key":1,
  3334. "value":0
  3335. }
  3336. ],
  3337. "rgbs":[
  3338. {
  3339. "key":0,
  3340. "value":[
  3341. 0.1323529,
  3342. 0.1323529,
  3343. 0.1323529
  3344. ]
  3345. },
  3346. {
  3347. "key":0.1852903,
  3348. "value":[
  3349. 0.1323529,
  3350. 0.1323529,
  3351. 0.1323529
  3352. ]
  3353. },
  3354. {
  3355. "key":1,
  3356. "value":[
  3357. 0,
  3358. 0,
  3359. 0
  3360. ]
  3361. }
  3362. ]
  3363. },
  3364. "constantMin":[
  3365. 0,
  3366. 0,
  3367. 0,
  3368. 0
  3369. ],
  3370. "constantMax":[
  3371. 0,
  3372. 0,
  3373. 0,
  3374. 0
  3375. ],
  3376. "gradientMax":{
  3377. "alphas":[
  3378. {
  3379. "key":0,
  3380. "value":0
  3381. },
  3382. {
  3383. "key":0.1323568,
  3384. "value":0
  3385. },
  3386. {
  3387. "key":0.6176547,
  3388. "value":0.4196078
  3389. },
  3390. {
  3391. "key":1,
  3392. "value":0
  3393. }
  3394. ],
  3395. "rgbs":[
  3396. {
  3397. "key":0,
  3398. "value":[
  3399. 0.1323529,
  3400. 0.1323529,
  3401. 0.1323529
  3402. ]
  3403. },
  3404. {
  3405. "key":0.1852903,
  3406. "value":[
  3407. 0.1323529,
  3408. 0.1323529,
  3409. 0.1323529
  3410. ]
  3411. },
  3412. {
  3413. "key":1,
  3414. "value":[
  3415. 0,
  3416. 0,
  3417. 0
  3418. ]
  3419. }
  3420. ]
  3421. }
  3422. }
  3423. },
  3424. "sizeOverLifetime":{
  3425. "enable":true,
  3426. "size":{
  3427. "type":0,
  3428. "separateAxes":false,
  3429. "gradient":{
  3430. "sizes":[
  3431. {
  3432. "key":0,
  3433. "value":0.8208682
  3434. },
  3435. {
  3436. "key":1,
  3437. "value":1
  3438. }
  3439. ]
  3440. },
  3441. "gradientX":{
  3442. "sizes":[
  3443. {
  3444. "key":0,
  3445. "value":0.8208682
  3446. },
  3447. {
  3448. "key":1,
  3449. "value":1
  3450. }
  3451. ]
  3452. },
  3453. "gradientY":{
  3454. "sizes":[
  3455. {
  3456. "key":0,
  3457. "value":1
  3458. },
  3459. {
  3460. "key":1,
  3461. "value":1
  3462. }
  3463. ]
  3464. },
  3465. "gradientZ":{
  3466. "sizes":[
  3467. {
  3468. "key":0,
  3469. "value":1
  3470. },
  3471. {
  3472. "key":1,
  3473. "value":1
  3474. }
  3475. ]
  3476. },
  3477. "constantMin":0,
  3478. "constantMax":0,
  3479. "constantMinSeparate":[
  3480. 0,
  3481. 0,
  3482. 0
  3483. ],
  3484. "constantMaxSeparate":[
  3485. 0,
  3486. 0,
  3487. 0
  3488. ],
  3489. "gradientMin":{
  3490. "sizes":[]
  3491. },
  3492. "gradientMax":{
  3493. "sizes":[
  3494. {
  3495. "key":0,
  3496. "value":0.8208682
  3497. },
  3498. {
  3499. "key":1,
  3500. "value":1
  3501. }
  3502. ]
  3503. },
  3504. "gradientXMin":{
  3505. "sizes":[]
  3506. },
  3507. "gradientXMax":{
  3508. "sizes":[
  3509. {
  3510. "key":0,
  3511. "value":0.8208682
  3512. },
  3513. {
  3514. "key":1,
  3515. "value":1
  3516. }
  3517. ]
  3518. },
  3519. "gradientYMin":{
  3520. "sizes":[]
  3521. },
  3522. "gradientYMax":{
  3523. "sizes":[
  3524. {
  3525. "key":0,
  3526. "value":1
  3527. },
  3528. {
  3529. "key":1,
  3530. "value":1
  3531. }
  3532. ]
  3533. },
  3534. "gradientZMin":{
  3535. "sizes":[]
  3536. },
  3537. "gradientZMax":{
  3538. "sizes":[
  3539. {
  3540. "key":0,
  3541. "value":1
  3542. },
  3543. {
  3544. "key":1,
  3545. "value":1
  3546. }
  3547. ]
  3548. }
  3549. }
  3550. },
  3551. "rotationOverLifetime":{
  3552. "enable":true,
  3553. "angularVelocity":{
  3554. "type":2,
  3555. "separateAxes":false,
  3556. "constant":5,
  3557. "constantMin":-5,
  3558. "constantMax":5,
  3559. "constantSeparate":[
  3560. 0,
  3561. 0,
  3562. -5
  3563. ],
  3564. "constantMinSeparate":[
  3565. 0,
  3566. 0,
  3567. -5
  3568. ],
  3569. "constantMaxSeparate":[
  3570. 0,
  3571. 0,
  3572. 5
  3573. ],
  3574. "gradient":{
  3575. "angularVelocitys":[]
  3576. },
  3577. "gradientX":{
  3578. "angularVelocitys":[]
  3579. },
  3580. "gradientY":{
  3581. "angularVelocitys":[]
  3582. },
  3583. "gradientZ":{
  3584. "angularVelocitys":[]
  3585. },
  3586. "gradientMin":{
  3587. "angularVelocitys":[]
  3588. },
  3589. "gradientMax":{
  3590. "angularVelocitys":[]
  3591. },
  3592. "gradientXMin":{
  3593. "angularVelocitys":[]
  3594. },
  3595. "gradientXMax":{
  3596. "angularVelocitys":[]
  3597. },
  3598. "gradientYMin":{
  3599. "angularVelocitys":[]
  3600. },
  3601. "gradientYMax":{
  3602. "angularVelocitys":[]
  3603. },
  3604. "gradientZMin":{
  3605. "angularVelocitys":[]
  3606. },
  3607. "gradientZMax":{
  3608. "angularVelocitys":[]
  3609. }
  3610. }
  3611. },
  3612. "textureSheetAnimation":{
  3613. "enable":true,
  3614. "tiles":[
  3615. 2,
  3616. 1
  3617. ],
  3618. "type":0,
  3619. "randomRow":true,
  3620. "rowIndex":0,
  3621. "frame":{
  3622. "type":2,
  3623. "constant":1.9998,
  3624. "overTime":{
  3625. "frames":[]
  3626. },
  3627. "constantMin":0,
  3628. "constantMax":1.9998,
  3629. "overTimeMin":{
  3630. "frames":[]
  3631. },
  3632. "overTimeMax":{
  3633. "frames":[]
  3634. }
  3635. },
  3636. "startFrame":{
  3637. "type":0,
  3638. "constant":0,
  3639. "constantMin":0,
  3640. "constantMax":0
  3641. },
  3642. "cycles":1,
  3643. "enableUVChannels":1,
  3644. "enableUVChannelsTip":"-1"
  3645. },
  3646. "renderMode":0,
  3647. "stretchedBillboardCameraSpeedScale":0,
  3648. "stretchedBillboardSpeedScale":0,
  3649. "stretchedBillboardLengthScale":2,
  3650. "sortingFudge":0,
  3651. "material":{
  3652. "type":"Laya.ShurikenParticleMaterial",
  3653. "path":"Assets/LatestRes/FX/Materials/boom4.lmat"
  3654. }
  3655. },
  3656. "components":[],
  3657. "child":[]
  3658. }
  3659. ]
  3660. }
  3661. ]
  3662. }
  3663. }