Car_101.prefab 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "Car_101",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 38
  25. },
  26. {
  27. "__id__": 132
  28. }
  29. ],
  30. "_active": true,
  31. "_components": [],
  32. "_prefab": {
  33. "__id__": 135
  34. },
  35. "_opacity": 255,
  36. "_color": {
  37. "__type__": "cc.Color",
  38. "r": 255,
  39. "g": 255,
  40. "b": 255,
  41. "a": 255
  42. },
  43. "_contentSize": {
  44. "__type__": "cc.Size",
  45. "width": 0,
  46. "height": 0
  47. },
  48. "_anchorPoint": {
  49. "__type__": "cc.Vec2",
  50. "x": 0.5,
  51. "y": 0.5
  52. },
  53. "_trs": {
  54. "__type__": "TypedArray",
  55. "ctor": "Float64Array",
  56. "array": [
  57. 0,
  58. 0,
  59. 0,
  60. 0,
  61. 0,
  62. 0,
  63. 1,
  64. 1,
  65. 1,
  66. 1
  67. ]
  68. },
  69. "_eulerAngles": {
  70. "__type__": "cc.Vec3",
  71. "x": 0,
  72. "y": 0,
  73. "z": 0
  74. },
  75. "_skewX": 0,
  76. "_skewY": 0,
  77. "_is3DNode": true,
  78. "_groupIndex": 0,
  79. "groupIndex": 0,
  80. "_id": ""
  81. },
  82. {
  83. "__type__": "cc.Node",
  84. "_name": "SM_Veh_Retro_01_Hover",
  85. "_objFlags": 0,
  86. "_parent": {
  87. "__id__": 1
  88. },
  89. "_children": [
  90. {
  91. "__id__": 3
  92. },
  93. {
  94. "__id__": 6
  95. },
  96. {
  97. "__id__": 9
  98. },
  99. {
  100. "__id__": 12
  101. },
  102. {
  103. "__id__": 15
  104. },
  105. {
  106. "__id__": 21
  107. },
  108. {
  109. "__id__": 27
  110. },
  111. {
  112. "__id__": 30
  113. },
  114. {
  115. "__id__": 33
  116. }
  117. ],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 36
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 37
  126. },
  127. "_opacity": 255,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 255,
  131. "g": 255,
  132. "b": 255,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 0,
  138. "height": 0
  139. },
  140. "_anchorPoint": {
  141. "__type__": "cc.Vec2",
  142. "x": 0.5,
  143. "y": 0.5
  144. },
  145. "_trs": {
  146. "__type__": "TypedArray",
  147. "ctor": "Float64Array",
  148. "array": [
  149. 0,
  150. -0.484,
  151. 0,
  152. 0,
  153. 1,
  154. 0,
  155. 6.123233995736766e-17,
  156. 1.2,
  157. 1.2,
  158. 1.2
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 180,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": true,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Node",
  176. "_name": "SM_Veh_Retro_Hover_01_Wheel_rl_Hover",
  177. "_objFlags": 0,
  178. "_parent": {
  179. "__id__": 2
  180. },
  181. "_children": [],
  182. "_active": true,
  183. "_components": [
  184. {
  185. "__id__": 4
  186. }
  187. ],
  188. "_prefab": {
  189. "__id__": 5
  190. },
  191. "_opacity": 255,
  192. "_color": {
  193. "__type__": "cc.Color",
  194. "r": 255,
  195. "g": 255,
  196. "b": 255,
  197. "a": 255
  198. },
  199. "_contentSize": {
  200. "__type__": "cc.Size",
  201. "width": 0,
  202. "height": 0
  203. },
  204. "_anchorPoint": {
  205. "__type__": "cc.Vec2",
  206. "x": 0.5,
  207. "y": 0.5
  208. },
  209. "_trs": {
  210. "__type__": "TypedArray",
  211. "ctor": "Float64Array",
  212. "array": [
  213. 0,
  214. 0,
  215. 0,
  216. 0,
  217. 0,
  218. 0,
  219. 1,
  220. 1,
  221. 1,
  222. 1
  223. ]
  224. },
  225. "_eulerAngles": {
  226. "__type__": "cc.Vec3",
  227. "x": 0,
  228. "y": 0,
  229. "z": 0
  230. },
  231. "_skewX": 0,
  232. "_skewY": 0,
  233. "_is3DNode": true,
  234. "_groupIndex": 0,
  235. "groupIndex": 0,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.MeshRenderer",
  240. "_name": "",
  241. "_objFlags": 0,
  242. "node": {
  243. "__id__": 3
  244. },
  245. "_enabled": true,
  246. "_materials": [
  247. {
  248. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  249. }
  250. ],
  251. "_mesh": {
  252. "__uuid__": "520145d7-497f-4c64-b29b-09ae6c54702c"
  253. },
  254. "_receiveShadows": false,
  255. "_shadowCastingMode": 0,
  256. "_enableAutoBatch": false,
  257. "textures": [],
  258. "_id": ""
  259. },
  260. {
  261. "__type__": "cc.PrefabInfo",
  262. "root": {
  263. "__id__": 1
  264. },
  265. "asset": {
  266. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  267. },
  268. "fileId": "8bgU6LV2xEMY3WtOOnuhkr",
  269. "sync": false
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "SM_Veh_Retro_Hover_01_Wheel_fl_Hover",
  274. "_objFlags": 0,
  275. "_parent": {
  276. "__id__": 2
  277. },
  278. "_children": [],
  279. "_active": true,
  280. "_components": [
  281. {
  282. "__id__": 7
  283. }
  284. ],
  285. "_prefab": {
  286. "__id__": 8
  287. },
  288. "_opacity": 255,
  289. "_color": {
  290. "__type__": "cc.Color",
  291. "r": 255,
  292. "g": 255,
  293. "b": 255,
  294. "a": 255
  295. },
  296. "_contentSize": {
  297. "__type__": "cc.Size",
  298. "width": 0,
  299. "height": 0
  300. },
  301. "_anchorPoint": {
  302. "__type__": "cc.Vec2",
  303. "x": 0.5,
  304. "y": 0.5
  305. },
  306. "_trs": {
  307. "__type__": "TypedArray",
  308. "ctor": "Float64Array",
  309. "array": [
  310. 0,
  311. 0,
  312. 0,
  313. 0,
  314. 0,
  315. 0,
  316. 1,
  317. 1,
  318. 1,
  319. 1
  320. ]
  321. },
  322. "_eulerAngles": {
  323. "__type__": "cc.Vec3",
  324. "x": 0,
  325. "y": 0,
  326. "z": 0
  327. },
  328. "_skewX": 0,
  329. "_skewY": 0,
  330. "_is3DNode": true,
  331. "_groupIndex": 0,
  332. "groupIndex": 0,
  333. "_id": ""
  334. },
  335. {
  336. "__type__": "cc.MeshRenderer",
  337. "_name": "",
  338. "_objFlags": 0,
  339. "node": {
  340. "__id__": 6
  341. },
  342. "_enabled": true,
  343. "_materials": [
  344. {
  345. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  346. }
  347. ],
  348. "_mesh": {
  349. "__uuid__": "8030a8f3-ff43-429e-a29b-17837ad6d395"
  350. },
  351. "_receiveShadows": false,
  352. "_shadowCastingMode": 0,
  353. "_enableAutoBatch": false,
  354. "textures": [],
  355. "_id": ""
  356. },
  357. {
  358. "__type__": "cc.PrefabInfo",
  359. "root": {
  360. "__id__": 1
  361. },
  362. "asset": {
  363. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  364. },
  365. "fileId": "bcF0upew5CwIw0TGTMzfij",
  366. "sync": false
  367. },
  368. {
  369. "__type__": "cc.Node",
  370. "_name": "SM_Veh_Retro_Fins_01_Hover",
  371. "_objFlags": 0,
  372. "_parent": {
  373. "__id__": 2
  374. },
  375. "_children": [],
  376. "_active": true,
  377. "_components": [
  378. {
  379. "__id__": 10
  380. }
  381. ],
  382. "_prefab": {
  383. "__id__": 11
  384. },
  385. "_opacity": 255,
  386. "_color": {
  387. "__type__": "cc.Color",
  388. "r": 255,
  389. "g": 255,
  390. "b": 255,
  391. "a": 255
  392. },
  393. "_contentSize": {
  394. "__type__": "cc.Size",
  395. "width": 0,
  396. "height": 0
  397. },
  398. "_anchorPoint": {
  399. "__type__": "cc.Vec2",
  400. "x": 0.5,
  401. "y": 0.5
  402. },
  403. "_trs": {
  404. "__type__": "TypedArray",
  405. "ctor": "Float64Array",
  406. "array": [
  407. 0,
  408. 0,
  409. 0,
  410. 0,
  411. 0,
  412. 0,
  413. 1,
  414. 1,
  415. 1,
  416. 1
  417. ]
  418. },
  419. "_eulerAngles": {
  420. "__type__": "cc.Vec3",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0
  424. },
  425. "_skewX": 0,
  426. "_skewY": 0,
  427. "_is3DNode": true,
  428. "_groupIndex": 0,
  429. "groupIndex": 0,
  430. "_id": ""
  431. },
  432. {
  433. "__type__": "cc.MeshRenderer",
  434. "_name": "",
  435. "_objFlags": 0,
  436. "node": {
  437. "__id__": 9
  438. },
  439. "_enabled": true,
  440. "_materials": [
  441. {
  442. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  443. }
  444. ],
  445. "_mesh": {
  446. "__uuid__": "2a358fc2-fbe1-4c41-aae4-cd7e512452ee"
  447. },
  448. "_receiveShadows": false,
  449. "_shadowCastingMode": 0,
  450. "_enableAutoBatch": false,
  451. "textures": [],
  452. "_id": ""
  453. },
  454. {
  455. "__type__": "cc.PrefabInfo",
  456. "root": {
  457. "__id__": 1
  458. },
  459. "asset": {
  460. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  461. },
  462. "fileId": "95lwV0vrNNEYljyTkT/p2V",
  463. "sync": false
  464. },
  465. {
  466. "__type__": "cc.Node",
  467. "_name": "SM_Veh_Retro_01_Glass_Hover",
  468. "_objFlags": 0,
  469. "_parent": {
  470. "__id__": 2
  471. },
  472. "_children": [],
  473. "_active": true,
  474. "_components": [
  475. {
  476. "__id__": 13
  477. }
  478. ],
  479. "_prefab": {
  480. "__id__": 14
  481. },
  482. "_opacity": 255,
  483. "_color": {
  484. "__type__": "cc.Color",
  485. "r": 255,
  486. "g": 255,
  487. "b": 255,
  488. "a": 255
  489. },
  490. "_contentSize": {
  491. "__type__": "cc.Size",
  492. "width": 0,
  493. "height": 0
  494. },
  495. "_anchorPoint": {
  496. "__type__": "cc.Vec2",
  497. "x": 0.5,
  498. "y": 0.5
  499. },
  500. "_trs": {
  501. "__type__": "TypedArray",
  502. "ctor": "Float64Array",
  503. "array": [
  504. 0,
  505. 0,
  506. 0,
  507. 0,
  508. 0,
  509. 0,
  510. 1,
  511. 1,
  512. 1,
  513. 1
  514. ]
  515. },
  516. "_eulerAngles": {
  517. "__type__": "cc.Vec3",
  518. "x": 0,
  519. "y": 0,
  520. "z": 0
  521. },
  522. "_skewX": 0,
  523. "_skewY": 0,
  524. "_is3DNode": true,
  525. "_groupIndex": 0,
  526. "groupIndex": 0,
  527. "_id": ""
  528. },
  529. {
  530. "__type__": "cc.MeshRenderer",
  531. "_name": "",
  532. "_objFlags": 0,
  533. "node": {
  534. "__id__": 12
  535. },
  536. "_enabled": true,
  537. "_materials": [
  538. {
  539. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  540. }
  541. ],
  542. "_mesh": {
  543. "__uuid__": "0e6ab063-271c-4b5d-803b-a6986cc66925"
  544. },
  545. "_receiveShadows": false,
  546. "_shadowCastingMode": 0,
  547. "_enableAutoBatch": false,
  548. "textures": [],
  549. "_id": ""
  550. },
  551. {
  552. "__type__": "cc.PrefabInfo",
  553. "root": {
  554. "__id__": 1
  555. },
  556. "asset": {
  557. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  558. },
  559. "fileId": "760WZuPQZLXr3MQExv5zVb",
  560. "sync": false
  561. },
  562. {
  563. "__type__": "cc.Node",
  564. "_name": "SM_Veh_Retro_01_Door_L_Hover",
  565. "_objFlags": 0,
  566. "_parent": {
  567. "__id__": 2
  568. },
  569. "_children": [
  570. {
  571. "__id__": 16
  572. }
  573. ],
  574. "_active": true,
  575. "_components": [
  576. {
  577. "__id__": 19
  578. }
  579. ],
  580. "_prefab": {
  581. "__id__": 20
  582. },
  583. "_opacity": 255,
  584. "_color": {
  585. "__type__": "cc.Color",
  586. "r": 255,
  587. "g": 255,
  588. "b": 255,
  589. "a": 255
  590. },
  591. "_contentSize": {
  592. "__type__": "cc.Size",
  593. "width": 0,
  594. "height": 0
  595. },
  596. "_anchorPoint": {
  597. "__type__": "cc.Vec2",
  598. "x": 0.5,
  599. "y": 0.5
  600. },
  601. "_trs": {
  602. "__type__": "TypedArray",
  603. "ctor": "Float64Array",
  604. "array": [
  605. 0,
  606. 0,
  607. 0,
  608. 0,
  609. 0,
  610. 0,
  611. 1,
  612. 1,
  613. 1,
  614. 1
  615. ]
  616. },
  617. "_eulerAngles": {
  618. "__type__": "cc.Vec3",
  619. "x": 0,
  620. "y": 0,
  621. "z": 0
  622. },
  623. "_skewX": 0,
  624. "_skewY": 0,
  625. "_is3DNode": true,
  626. "_groupIndex": 0,
  627. "groupIndex": 0,
  628. "_id": ""
  629. },
  630. {
  631. "__type__": "cc.Node",
  632. "_name": "SM_Veh_Retro_01_Door_L_Glass_Hover",
  633. "_objFlags": 0,
  634. "_parent": {
  635. "__id__": 15
  636. },
  637. "_children": [],
  638. "_active": true,
  639. "_components": [
  640. {
  641. "__id__": 17
  642. }
  643. ],
  644. "_prefab": {
  645. "__id__": 18
  646. },
  647. "_opacity": 255,
  648. "_color": {
  649. "__type__": "cc.Color",
  650. "r": 255,
  651. "g": 255,
  652. "b": 255,
  653. "a": 255
  654. },
  655. "_contentSize": {
  656. "__type__": "cc.Size",
  657. "width": 0,
  658. "height": 0
  659. },
  660. "_anchorPoint": {
  661. "__type__": "cc.Vec2",
  662. "x": 0.5,
  663. "y": 0.5
  664. },
  665. "_trs": {
  666. "__type__": "TypedArray",
  667. "ctor": "Float64Array",
  668. "array": [
  669. 0,
  670. 0,
  671. 0,
  672. 0,
  673. 0,
  674. 0,
  675. 1,
  676. 1,
  677. 1,
  678. 1
  679. ]
  680. },
  681. "_eulerAngles": {
  682. "__type__": "cc.Vec3",
  683. "x": 0,
  684. "y": 0,
  685. "z": 0
  686. },
  687. "_skewX": 0,
  688. "_skewY": 0,
  689. "_is3DNode": true,
  690. "_groupIndex": 0,
  691. "groupIndex": 0,
  692. "_id": ""
  693. },
  694. {
  695. "__type__": "cc.MeshRenderer",
  696. "_name": "",
  697. "_objFlags": 0,
  698. "node": {
  699. "__id__": 16
  700. },
  701. "_enabled": true,
  702. "_materials": [
  703. {
  704. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  705. }
  706. ],
  707. "_mesh": {
  708. "__uuid__": "a68eafad-7e6d-41c7-a429-6e1865db4ebf"
  709. },
  710. "_receiveShadows": false,
  711. "_shadowCastingMode": 0,
  712. "_enableAutoBatch": false,
  713. "textures": [],
  714. "_id": ""
  715. },
  716. {
  717. "__type__": "cc.PrefabInfo",
  718. "root": {
  719. "__id__": 1
  720. },
  721. "asset": {
  722. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  723. },
  724. "fileId": "9cpXT1GzZIbYFNE49c5dO6",
  725. "sync": false
  726. },
  727. {
  728. "__type__": "cc.MeshRenderer",
  729. "_name": "",
  730. "_objFlags": 0,
  731. "node": {
  732. "__id__": 15
  733. },
  734. "_enabled": true,
  735. "_materials": [
  736. {
  737. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  738. }
  739. ],
  740. "_mesh": {
  741. "__uuid__": "5965f333-dd1a-4c3c-b120-610645d0cd3a"
  742. },
  743. "_receiveShadows": false,
  744. "_shadowCastingMode": 0,
  745. "_enableAutoBatch": false,
  746. "textures": [],
  747. "_id": ""
  748. },
  749. {
  750. "__type__": "cc.PrefabInfo",
  751. "root": {
  752. "__id__": 1
  753. },
  754. "asset": {
  755. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  756. },
  757. "fileId": "38SGHyd3tAjo19VNAkG60O",
  758. "sync": false
  759. },
  760. {
  761. "__type__": "cc.Node",
  762. "_name": "SM_Veh_Retro_01_Door_R_Hover",
  763. "_objFlags": 0,
  764. "_parent": {
  765. "__id__": 2
  766. },
  767. "_children": [
  768. {
  769. "__id__": 22
  770. }
  771. ],
  772. "_active": true,
  773. "_components": [
  774. {
  775. "__id__": 25
  776. }
  777. ],
  778. "_prefab": {
  779. "__id__": 26
  780. },
  781. "_opacity": 255,
  782. "_color": {
  783. "__type__": "cc.Color",
  784. "r": 255,
  785. "g": 255,
  786. "b": 255,
  787. "a": 255
  788. },
  789. "_contentSize": {
  790. "__type__": "cc.Size",
  791. "width": 0,
  792. "height": 0
  793. },
  794. "_anchorPoint": {
  795. "__type__": "cc.Vec2",
  796. "x": 0.5,
  797. "y": 0.5
  798. },
  799. "_trs": {
  800. "__type__": "TypedArray",
  801. "ctor": "Float64Array",
  802. "array": [
  803. 0,
  804. 0,
  805. 0,
  806. 0,
  807. 0,
  808. 0,
  809. 1,
  810. 1,
  811. 1,
  812. 1
  813. ]
  814. },
  815. "_eulerAngles": {
  816. "__type__": "cc.Vec3",
  817. "x": 0,
  818. "y": 0,
  819. "z": 0
  820. },
  821. "_skewX": 0,
  822. "_skewY": 0,
  823. "_is3DNode": true,
  824. "_groupIndex": 0,
  825. "groupIndex": 0,
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.Node",
  830. "_name": "SM_Veh_Retro_01_Door_R_Glass_Hover",
  831. "_objFlags": 0,
  832. "_parent": {
  833. "__id__": 21
  834. },
  835. "_children": [],
  836. "_active": true,
  837. "_components": [
  838. {
  839. "__id__": 23
  840. }
  841. ],
  842. "_prefab": {
  843. "__id__": 24
  844. },
  845. "_opacity": 255,
  846. "_color": {
  847. "__type__": "cc.Color",
  848. "r": 255,
  849. "g": 255,
  850. "b": 255,
  851. "a": 255
  852. },
  853. "_contentSize": {
  854. "__type__": "cc.Size",
  855. "width": 0,
  856. "height": 0
  857. },
  858. "_anchorPoint": {
  859. "__type__": "cc.Vec2",
  860. "x": 0.5,
  861. "y": 0.5
  862. },
  863. "_trs": {
  864. "__type__": "TypedArray",
  865. "ctor": "Float64Array",
  866. "array": [
  867. 0,
  868. 0,
  869. 0,
  870. 0,
  871. 0,
  872. 0,
  873. 1,
  874. 1,
  875. 1,
  876. 1
  877. ]
  878. },
  879. "_eulerAngles": {
  880. "__type__": "cc.Vec3",
  881. "x": 0,
  882. "y": 0,
  883. "z": 0
  884. },
  885. "_skewX": 0,
  886. "_skewY": 0,
  887. "_is3DNode": true,
  888. "_groupIndex": 0,
  889. "groupIndex": 0,
  890. "_id": ""
  891. },
  892. {
  893. "__type__": "cc.MeshRenderer",
  894. "_name": "",
  895. "_objFlags": 0,
  896. "node": {
  897. "__id__": 22
  898. },
  899. "_enabled": true,
  900. "_materials": [
  901. {
  902. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  903. }
  904. ],
  905. "_mesh": {
  906. "__uuid__": "bbb222b4-5959-455f-9979-77aff4876c8a"
  907. },
  908. "_receiveShadows": false,
  909. "_shadowCastingMode": 0,
  910. "_enableAutoBatch": false,
  911. "textures": [],
  912. "_id": ""
  913. },
  914. {
  915. "__type__": "cc.PrefabInfo",
  916. "root": {
  917. "__id__": 1
  918. },
  919. "asset": {
  920. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  921. },
  922. "fileId": "82f6/sqQ5L35Fp0gjrWOp4",
  923. "sync": false
  924. },
  925. {
  926. "__type__": "cc.MeshRenderer",
  927. "_name": "",
  928. "_objFlags": 0,
  929. "node": {
  930. "__id__": 21
  931. },
  932. "_enabled": true,
  933. "_materials": [
  934. {
  935. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  936. }
  937. ],
  938. "_mesh": {
  939. "__uuid__": "036541d0-d64f-4710-bc10-8f762671a58d"
  940. },
  941. "_receiveShadows": false,
  942. "_shadowCastingMode": 0,
  943. "_enableAutoBatch": false,
  944. "textures": [],
  945. "_id": ""
  946. },
  947. {
  948. "__type__": "cc.PrefabInfo",
  949. "root": {
  950. "__id__": 1
  951. },
  952. "asset": {
  953. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  954. },
  955. "fileId": "1097jgG81APoOn27s0SBnD",
  956. "sync": false
  957. },
  958. {
  959. "__type__": "cc.Node",
  960. "_name": "SM_Veh_Retro_Hover_01_Wheel_fr_Hover",
  961. "_objFlags": 0,
  962. "_parent": {
  963. "__id__": 2
  964. },
  965. "_children": [],
  966. "_active": true,
  967. "_components": [
  968. {
  969. "__id__": 28
  970. }
  971. ],
  972. "_prefab": {
  973. "__id__": 29
  974. },
  975. "_opacity": 255,
  976. "_color": {
  977. "__type__": "cc.Color",
  978. "r": 255,
  979. "g": 255,
  980. "b": 255,
  981. "a": 255
  982. },
  983. "_contentSize": {
  984. "__type__": "cc.Size",
  985. "width": 0,
  986. "height": 0
  987. },
  988. "_anchorPoint": {
  989. "__type__": "cc.Vec2",
  990. "x": 0.5,
  991. "y": 0.5
  992. },
  993. "_trs": {
  994. "__type__": "TypedArray",
  995. "ctor": "Float64Array",
  996. "array": [
  997. 0,
  998. 0,
  999. 0,
  1000. 0,
  1001. 0,
  1002. 0,
  1003. 1,
  1004. 1,
  1005. 1,
  1006. 1
  1007. ]
  1008. },
  1009. "_eulerAngles": {
  1010. "__type__": "cc.Vec3",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0
  1014. },
  1015. "_skewX": 0,
  1016. "_skewY": 0,
  1017. "_is3DNode": true,
  1018. "_groupIndex": 0,
  1019. "groupIndex": 0,
  1020. "_id": ""
  1021. },
  1022. {
  1023. "__type__": "cc.MeshRenderer",
  1024. "_name": "",
  1025. "_objFlags": 0,
  1026. "node": {
  1027. "__id__": 27
  1028. },
  1029. "_enabled": true,
  1030. "_materials": [
  1031. {
  1032. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1033. }
  1034. ],
  1035. "_mesh": {
  1036. "__uuid__": "b14e37e4-8648-4965-802f-e7094f2e220d"
  1037. },
  1038. "_receiveShadows": false,
  1039. "_shadowCastingMode": 0,
  1040. "_enableAutoBatch": false,
  1041. "textures": [],
  1042. "_id": ""
  1043. },
  1044. {
  1045. "__type__": "cc.PrefabInfo",
  1046. "root": {
  1047. "__id__": 1
  1048. },
  1049. "asset": {
  1050. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1051. },
  1052. "fileId": "c6bK0D7qpE1JjZrKEMPDp7",
  1053. "sync": false
  1054. },
  1055. {
  1056. "__type__": "cc.Node",
  1057. "_name": "SM_Veh_Retro_Hover_01_Wheel_rr_Hover",
  1058. "_objFlags": 0,
  1059. "_parent": {
  1060. "__id__": 2
  1061. },
  1062. "_children": [],
  1063. "_active": true,
  1064. "_components": [
  1065. {
  1066. "__id__": 31
  1067. }
  1068. ],
  1069. "_prefab": {
  1070. "__id__": 32
  1071. },
  1072. "_opacity": 255,
  1073. "_color": {
  1074. "__type__": "cc.Color",
  1075. "r": 255,
  1076. "g": 255,
  1077. "b": 255,
  1078. "a": 255
  1079. },
  1080. "_contentSize": {
  1081. "__type__": "cc.Size",
  1082. "width": 0,
  1083. "height": 0
  1084. },
  1085. "_anchorPoint": {
  1086. "__type__": "cc.Vec2",
  1087. "x": 0.5,
  1088. "y": 0.5
  1089. },
  1090. "_trs": {
  1091. "__type__": "TypedArray",
  1092. "ctor": "Float64Array",
  1093. "array": [
  1094. 0,
  1095. 0,
  1096. 0,
  1097. 0,
  1098. 0,
  1099. 0,
  1100. 1,
  1101. 1,
  1102. 1,
  1103. 1
  1104. ]
  1105. },
  1106. "_eulerAngles": {
  1107. "__type__": "cc.Vec3",
  1108. "x": 0,
  1109. "y": 0,
  1110. "z": 0
  1111. },
  1112. "_skewX": 0,
  1113. "_skewY": 0,
  1114. "_is3DNode": true,
  1115. "_groupIndex": 0,
  1116. "groupIndex": 0,
  1117. "_id": ""
  1118. },
  1119. {
  1120. "__type__": "cc.MeshRenderer",
  1121. "_name": "",
  1122. "_objFlags": 0,
  1123. "node": {
  1124. "__id__": 30
  1125. },
  1126. "_enabled": true,
  1127. "_materials": [
  1128. {
  1129. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1130. }
  1131. ],
  1132. "_mesh": {
  1133. "__uuid__": "f52cd8d1-53fc-4a19-8d83-ea974651ebd2"
  1134. },
  1135. "_receiveShadows": false,
  1136. "_shadowCastingMode": 0,
  1137. "_enableAutoBatch": false,
  1138. "textures": [],
  1139. "_id": ""
  1140. },
  1141. {
  1142. "__type__": "cc.PrefabInfo",
  1143. "root": {
  1144. "__id__": 1
  1145. },
  1146. "asset": {
  1147. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1148. },
  1149. "fileId": "25evaeahxNBbQtSVecizgH",
  1150. "sync": false
  1151. },
  1152. {
  1153. "__type__": "cc.Node",
  1154. "_name": "SM_Veh_Retro_01_SteeringW_Hover",
  1155. "_objFlags": 0,
  1156. "_parent": {
  1157. "__id__": 2
  1158. },
  1159. "_children": [],
  1160. "_active": true,
  1161. "_components": [
  1162. {
  1163. "__id__": 34
  1164. }
  1165. ],
  1166. "_prefab": {
  1167. "__id__": 35
  1168. },
  1169. "_opacity": 255,
  1170. "_color": {
  1171. "__type__": "cc.Color",
  1172. "r": 255,
  1173. "g": 255,
  1174. "b": 255,
  1175. "a": 255
  1176. },
  1177. "_contentSize": {
  1178. "__type__": "cc.Size",
  1179. "width": 0,
  1180. "height": 0
  1181. },
  1182. "_anchorPoint": {
  1183. "__type__": "cc.Vec2",
  1184. "x": 0.5,
  1185. "y": 0.5
  1186. },
  1187. "_trs": {
  1188. "__type__": "TypedArray",
  1189. "ctor": "Float64Array",
  1190. "array": [
  1191. 0,
  1192. 0.245831727981567,
  1193. -0.413729548454285,
  1194. 0.20618481860794652,
  1195. 0,
  1196. 0,
  1197. 0.9785130661241107,
  1198. 1,
  1199. 1,
  1200. 1
  1201. ]
  1202. },
  1203. "_eulerAngles": {
  1204. "__type__": "cc.Vec3",
  1205. "x": 23.797731992332874,
  1206. "y": 0,
  1207. "z": 0
  1208. },
  1209. "_skewX": 0,
  1210. "_skewY": 0,
  1211. "_is3DNode": true,
  1212. "_groupIndex": 0,
  1213. "groupIndex": 0,
  1214. "_id": ""
  1215. },
  1216. {
  1217. "__type__": "cc.MeshRenderer",
  1218. "_name": "",
  1219. "_objFlags": 0,
  1220. "node": {
  1221. "__id__": 33
  1222. },
  1223. "_enabled": true,
  1224. "_materials": [
  1225. {
  1226. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1227. }
  1228. ],
  1229. "_mesh": {
  1230. "__uuid__": "92593536-57dc-4706-b658-2d20a4e665e7"
  1231. },
  1232. "_receiveShadows": false,
  1233. "_shadowCastingMode": 0,
  1234. "_enableAutoBatch": false,
  1235. "textures": [],
  1236. "_id": ""
  1237. },
  1238. {
  1239. "__type__": "cc.PrefabInfo",
  1240. "root": {
  1241. "__id__": 1
  1242. },
  1243. "asset": {
  1244. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1245. },
  1246. "fileId": "61t0GRLM9L5Z0maSUpTF6T",
  1247. "sync": false
  1248. },
  1249. {
  1250. "__type__": "cc.MeshRenderer",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "node": {
  1254. "__id__": 2
  1255. },
  1256. "_enabled": true,
  1257. "_materials": [
  1258. {
  1259. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1260. }
  1261. ],
  1262. "_mesh": {
  1263. "__uuid__": "14d1a472-facc-452e-a6bb-03467ba35a1b"
  1264. },
  1265. "_receiveShadows": false,
  1266. "_shadowCastingMode": 0,
  1267. "_enableAutoBatch": false,
  1268. "textures": [],
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.PrefabInfo",
  1273. "root": {
  1274. "__id__": 1
  1275. },
  1276. "asset": {
  1277. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1278. },
  1279. "fileId": "9bOhqhJEdD/aWQ5gmJW7Ih",
  1280. "sync": false
  1281. },
  1282. {
  1283. "__type__": "cc.Node",
  1284. "_name": "ParticleRoot",
  1285. "_objFlags": 0,
  1286. "_parent": {
  1287. "__id__": 1
  1288. },
  1289. "_children": [
  1290. {
  1291. "__id__": 39
  1292. },
  1293. {
  1294. "__id__": 67
  1295. },
  1296. {
  1297. "__id__": 97
  1298. },
  1299. {
  1300. "__id__": 114
  1301. }
  1302. ],
  1303. "_active": true,
  1304. "_components": [],
  1305. "_prefab": {
  1306. "__id__": 131
  1307. },
  1308. "_opacity": 255,
  1309. "_color": {
  1310. "__type__": "cc.Color",
  1311. "r": 255,
  1312. "g": 255,
  1313. "b": 255,
  1314. "a": 255
  1315. },
  1316. "_contentSize": {
  1317. "__type__": "cc.Size",
  1318. "width": 0,
  1319. "height": 0
  1320. },
  1321. "_anchorPoint": {
  1322. "__type__": "cc.Vec2",
  1323. "x": 0.5,
  1324. "y": 0.5
  1325. },
  1326. "_trs": {
  1327. "__type__": "TypedArray",
  1328. "ctor": "Float64Array",
  1329. "array": [
  1330. 0,
  1331. -0.00001,
  1332. 0,
  1333. 0,
  1334. 0,
  1335. 0,
  1336. 1,
  1337. 1.00001,
  1338. 1.00001,
  1339. 1.00001
  1340. ]
  1341. },
  1342. "_eulerAngles": {
  1343. "__type__": "cc.Vec3",
  1344. "x": 0,
  1345. "y": 0,
  1346. "z": 0
  1347. },
  1348. "_skewX": 0,
  1349. "_skewY": 0,
  1350. "_is3DNode": true,
  1351. "_groupIndex": 0,
  1352. "groupIndex": 0,
  1353. "_id": ""
  1354. },
  1355. {
  1356. "__type__": "cc.Node",
  1357. "_name": "Particle_101 copy",
  1358. "_objFlags": 0,
  1359. "_parent": {
  1360. "__id__": 38
  1361. },
  1362. "_children": [],
  1363. "_active": false,
  1364. "_components": [
  1365. {
  1366. "__id__": 40
  1367. }
  1368. ],
  1369. "_prefab": {
  1370. "__id__": 66
  1371. },
  1372. "_opacity": 255,
  1373. "_color": {
  1374. "__type__": "cc.Color",
  1375. "r": 255,
  1376. "g": 255,
  1377. "b": 255,
  1378. "a": 255
  1379. },
  1380. "_contentSize": {
  1381. "__type__": "cc.Size",
  1382. "width": 0,
  1383. "height": 0
  1384. },
  1385. "_anchorPoint": {
  1386. "__type__": "cc.Vec2",
  1387. "x": 0.5,
  1388. "y": 0.5
  1389. },
  1390. "_trs": {
  1391. "__type__": "TypedArray",
  1392. "ctor": "Float64Array",
  1393. "array": [
  1394. 1.477,
  1395. 0.892,
  1396. 5.783,
  1397. 0,
  1398. 0.9999646152399649,
  1399. 0,
  1400. 0.008412387769767512,
  1401. 4.93,
  1402. 4.93,
  1403. 4.93
  1404. ]
  1405. },
  1406. "_eulerAngles": {
  1407. "__type__": "cc.Vec3",
  1408. "x": 0,
  1409. "y": 179.036,
  1410. "z": 0
  1411. },
  1412. "_skewX": 0,
  1413. "_skewY": 0,
  1414. "_is3DNode": true,
  1415. "_groupIndex": 0,
  1416. "groupIndex": 0,
  1417. "_id": ""
  1418. },
  1419. {
  1420. "__type__": "cc.ParticleSystem3D",
  1421. "_name": "",
  1422. "_objFlags": 0,
  1423. "node": {
  1424. "__id__": 39
  1425. },
  1426. "_enabled": true,
  1427. "_materials": [
  1428. {
  1429. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1430. }
  1431. ],
  1432. "duration": 5,
  1433. "_capacity": 100,
  1434. "loop": true,
  1435. "playOnAwake": true,
  1436. "_prewarm": false,
  1437. "_simulationSpace": 1,
  1438. "simulationSpeed": 5,
  1439. "startDelay": {
  1440. "__id__": 41
  1441. },
  1442. "startLifetime": {
  1443. "__id__": 42
  1444. },
  1445. "startColor": {
  1446. "__id__": 43
  1447. },
  1448. "scaleSpace": 1,
  1449. "startSize": {
  1450. "__id__": 52
  1451. },
  1452. "startSpeed": {
  1453. "__id__": 53
  1454. },
  1455. "startRotation": {
  1456. "__id__": 54
  1457. },
  1458. "gravityModifier": {
  1459. "__id__": 55
  1460. },
  1461. "rateOverTime": {
  1462. "__id__": 56
  1463. },
  1464. "rateOverDistance": {
  1465. "__id__": 57
  1466. },
  1467. "bursts": [],
  1468. "_shapeModule": {
  1469. "__id__": 58
  1470. },
  1471. "_textureAnimationModule": {
  1472. "__id__": 60
  1473. },
  1474. "_renderMode": 0,
  1475. "_velocityScale": 1,
  1476. "_lengthScale": 1,
  1477. "_mesh": null,
  1478. "_id": ""
  1479. },
  1480. {
  1481. "__type__": "cc.CurveRange",
  1482. "mode": 0,
  1483. "constant": 0,
  1484. "multiplier": 1
  1485. },
  1486. {
  1487. "__type__": "cc.CurveRange",
  1488. "mode": 0,
  1489. "constant": 1,
  1490. "multiplier": 1
  1491. },
  1492. {
  1493. "__type__": "cc.GradientRange",
  1494. "_mode": 4,
  1495. "gradient": {
  1496. "__id__": 44
  1497. }
  1498. },
  1499. {
  1500. "__type__": "cc.Gradient",
  1501. "colorKeys": [
  1502. {
  1503. "__id__": 45
  1504. },
  1505. {
  1506. "__id__": 46
  1507. },
  1508. {
  1509. "__id__": 47
  1510. },
  1511. {
  1512. "__id__": 48
  1513. }
  1514. ],
  1515. "alphaKeys": [
  1516. {
  1517. "__id__": 49
  1518. },
  1519. {
  1520. "__id__": 50
  1521. },
  1522. {
  1523. "__id__": 51
  1524. }
  1525. ],
  1526. "mode": 0
  1527. },
  1528. {
  1529. "__type__": "cc.ColorKey",
  1530. "color": {
  1531. "__type__": "cc.Color",
  1532. "r": 255,
  1533. "g": 0,
  1534. "b": 186,
  1535. "a": 255
  1536. },
  1537. "time": 0
  1538. },
  1539. {
  1540. "__type__": "cc.ColorKey",
  1541. "color": {
  1542. "__type__": "cc.Color",
  1543. "r": 202,
  1544. "g": 0,
  1545. "b": 255,
  1546. "a": 255
  1547. },
  1548. "time": 0.0022727272727272726
  1549. },
  1550. {
  1551. "__type__": "cc.ColorKey",
  1552. "color": {
  1553. "__type__": "cc.Color",
  1554. "r": 255,
  1555. "g": 100,
  1556. "b": 0,
  1557. "a": 255
  1558. },
  1559. "time": 0.4772727272727273
  1560. },
  1561. {
  1562. "__type__": "cc.ColorKey",
  1563. "color": {
  1564. "__type__": "cc.Color",
  1565. "r": 255,
  1566. "g": 0,
  1567. "b": 2,
  1568. "a": 255
  1569. },
  1570. "time": 0.9931818181818182
  1571. },
  1572. {
  1573. "__type__": "cc.AlphaKey",
  1574. "alpha": 1,
  1575. "time": 0
  1576. },
  1577. {
  1578. "__type__": "cc.AlphaKey",
  1579. "alpha": 1,
  1580. "time": 0
  1581. },
  1582. {
  1583. "__type__": "cc.AlphaKey",
  1584. "alpha": 255,
  1585. "time": 0.9931818181818182
  1586. },
  1587. {
  1588. "__type__": "cc.CurveRange",
  1589. "mode": 3,
  1590. "constantMin": 0.5,
  1591. "constantMax": 1.5,
  1592. "multiplier": 1
  1593. },
  1594. {
  1595. "__type__": "cc.CurveRange",
  1596. "mode": 0,
  1597. "constant": 2,
  1598. "multiplier": 1
  1599. },
  1600. {
  1601. "__type__": "cc.CurveRange",
  1602. "mode": 0,
  1603. "constant": 0,
  1604. "multiplier": 1
  1605. },
  1606. {
  1607. "__type__": "cc.CurveRange",
  1608. "mode": 0,
  1609. "constant": 0,
  1610. "multiplier": 1
  1611. },
  1612. {
  1613. "__type__": "cc.CurveRange",
  1614. "mode": 0,
  1615. "constant": 22,
  1616. "multiplier": 1
  1617. },
  1618. {
  1619. "__type__": "cc.CurveRange",
  1620. "mode": 0,
  1621. "constant": 0,
  1622. "multiplier": 1
  1623. },
  1624. {
  1625. "__type__": "cc.ShapeModule",
  1626. "enable": true,
  1627. "_shapeType": 2,
  1628. "emitFrom": 0,
  1629. "radius": 0.05,
  1630. "radiusThickness": 1,
  1631. "_angle": 0.06981317007977318,
  1632. "_arc": 6.283185307179586,
  1633. "arcMode": 0,
  1634. "arcSpread": 0,
  1635. "arcSpeed": {
  1636. "__id__": 59
  1637. },
  1638. "length": 2,
  1639. "boxThickness": {
  1640. "__type__": "cc.Vec3",
  1641. "x": 0,
  1642. "y": 0,
  1643. "z": 0
  1644. },
  1645. "_position": {
  1646. "__type__": "cc.Vec3",
  1647. "x": 0,
  1648. "y": 0,
  1649. "z": 0
  1650. },
  1651. "_rotation": {
  1652. "__type__": "cc.Vec3",
  1653. "x": 0,
  1654. "y": 0,
  1655. "z": 0
  1656. },
  1657. "_scale": {
  1658. "__type__": "cc.Vec3",
  1659. "x": 1,
  1660. "y": 1,
  1661. "z": 1
  1662. },
  1663. "alignToDirection": false,
  1664. "randomDirectionAmount": 0,
  1665. "sphericalDirectionAmount": 0,
  1666. "randomPositionAmount": 0
  1667. },
  1668. {
  1669. "__type__": "cc.CurveRange",
  1670. "mode": 0,
  1671. "constant": 1,
  1672. "multiplier": 1
  1673. },
  1674. {
  1675. "__type__": "cc.TextureAnimationModule",
  1676. "_enable": true,
  1677. "_mode": 0,
  1678. "numTilesX": 4,
  1679. "numTilesY": 1,
  1680. "animation": 0,
  1681. "randomRow": false,
  1682. "rowIndex": 0,
  1683. "frameOverTime": {
  1684. "__id__": 61
  1685. },
  1686. "startFrame": {
  1687. "__id__": 65
  1688. },
  1689. "cycleCount": 1
  1690. },
  1691. {
  1692. "__type__": "cc.CurveRange",
  1693. "mode": 1,
  1694. "curve": {
  1695. "__id__": 62
  1696. },
  1697. "multiplier": 1
  1698. },
  1699. {
  1700. "__type__": "cc.AnimationCurve",
  1701. "keyFrames": [
  1702. {
  1703. "__id__": 63
  1704. },
  1705. {
  1706. "__id__": 64
  1707. }
  1708. ],
  1709. "preWrapMode": 2,
  1710. "postWrapMode": 2
  1711. },
  1712. {
  1713. "__type__": "cc.Keyframe",
  1714. "time": 0,
  1715. "value": 1,
  1716. "inTangent": 0,
  1717. "outTangent": 0
  1718. },
  1719. {
  1720. "__type__": "cc.Keyframe",
  1721. "time": 1,
  1722. "value": 1,
  1723. "inTangent": 0,
  1724. "outTangent": 0
  1725. },
  1726. {
  1727. "__type__": "cc.CurveRange",
  1728. "mode": 0,
  1729. "constant": 0,
  1730. "multiplier": 1
  1731. },
  1732. {
  1733. "__type__": "cc.PrefabInfo",
  1734. "root": {
  1735. "__id__": 1
  1736. },
  1737. "asset": {
  1738. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1739. },
  1740. "fileId": "ba3K49FPRBvI0IAgqUnr/5",
  1741. "sync": false
  1742. },
  1743. {
  1744. "__type__": "cc.Node",
  1745. "_name": "Particle_101",
  1746. "_objFlags": 0,
  1747. "_parent": {
  1748. "__id__": 38
  1749. },
  1750. "_children": [],
  1751. "_active": true,
  1752. "_components": [
  1753. {
  1754. "__id__": 68
  1755. }
  1756. ],
  1757. "_prefab": {
  1758. "__id__": 96
  1759. },
  1760. "_opacity": 255,
  1761. "_color": {
  1762. "__type__": "cc.Color",
  1763. "r": 255,
  1764. "g": 255,
  1765. "b": 255,
  1766. "a": 255
  1767. },
  1768. "_contentSize": {
  1769. "__type__": "cc.Size",
  1770. "width": 0,
  1771. "height": 0
  1772. },
  1773. "_anchorPoint": {
  1774. "__type__": "cc.Vec2",
  1775. "x": 0.5,
  1776. "y": 0.5
  1777. },
  1778. "_trs": {
  1779. "__type__": "TypedArray",
  1780. "ctor": "Float64Array",
  1781. "array": [
  1782. 0.109,
  1783. 0.006,
  1784. 3.286,
  1785. 0,
  1786. 0.9999646152399649,
  1787. 0,
  1788. 0.008412387769767512,
  1789. 2.5,
  1790. 2.5,
  1791. 2.5
  1792. ]
  1793. },
  1794. "_eulerAngles": {
  1795. "__type__": "cc.Vec3",
  1796. "x": 0,
  1797. "y": 179.036,
  1798. "z": 0
  1799. },
  1800. "_skewX": 0,
  1801. "_skewY": 0,
  1802. "_is3DNode": true,
  1803. "_groupIndex": 0,
  1804. "groupIndex": 0,
  1805. "_id": ""
  1806. },
  1807. {
  1808. "__type__": "cc.ParticleSystem3D",
  1809. "_name": "",
  1810. "_objFlags": 0,
  1811. "node": {
  1812. "__id__": 67
  1813. },
  1814. "_enabled": true,
  1815. "_materials": [
  1816. {
  1817. "__uuid__": "69620f8a-5815-4401-8b72-b77eb984c219"
  1818. }
  1819. ],
  1820. "duration": 5,
  1821. "_capacity": 100,
  1822. "loop": true,
  1823. "playOnAwake": true,
  1824. "_prewarm": false,
  1825. "_simulationSpace": 1,
  1826. "simulationSpeed": 3,
  1827. "startDelay": {
  1828. "__id__": 69
  1829. },
  1830. "startLifetime": {
  1831. "__id__": 70
  1832. },
  1833. "startColor": {
  1834. "__id__": 74
  1835. },
  1836. "scaleSpace": 1,
  1837. "startSize": {
  1838. "__id__": 82
  1839. },
  1840. "startSpeed": {
  1841. "__id__": 83
  1842. },
  1843. "startRotation": {
  1844. "__id__": 84
  1845. },
  1846. "gravityModifier": {
  1847. "__id__": 85
  1848. },
  1849. "rateOverTime": {
  1850. "__id__": 86
  1851. },
  1852. "rateOverDistance": {
  1853. "__id__": 87
  1854. },
  1855. "bursts": [],
  1856. "_shapeModule": {
  1857. "__id__": 88
  1858. },
  1859. "_textureAnimationModule": {
  1860. "__id__": 90
  1861. },
  1862. "_renderMode": 0,
  1863. "_velocityScale": 1,
  1864. "_lengthScale": 1,
  1865. "_mesh": null,
  1866. "_id": ""
  1867. },
  1868. {
  1869. "__type__": "cc.CurveRange",
  1870. "mode": 0,
  1871. "constant": 0,
  1872. "multiplier": 1
  1873. },
  1874. {
  1875. "__type__": "cc.CurveRange",
  1876. "mode": 1,
  1877. "curve": {
  1878. "__id__": 71
  1879. },
  1880. "multiplier": 1
  1881. },
  1882. {
  1883. "__type__": "cc.AnimationCurve",
  1884. "keyFrames": [
  1885. {
  1886. "__id__": 72
  1887. },
  1888. {
  1889. "__id__": 73
  1890. }
  1891. ],
  1892. "preWrapMode": 2,
  1893. "postWrapMode": 2
  1894. },
  1895. {
  1896. "__type__": "cc.Keyframe",
  1897. "time": 0,
  1898. "value": 1,
  1899. "inTangent": 0,
  1900. "outTangent": 0
  1901. },
  1902. {
  1903. "__type__": "cc.Keyframe",
  1904. "time": 1,
  1905. "value": 1,
  1906. "inTangent": 0,
  1907. "outTangent": 0
  1908. },
  1909. {
  1910. "__type__": "cc.GradientRange",
  1911. "_mode": 1,
  1912. "gradient": {
  1913. "__id__": 75
  1914. }
  1915. },
  1916. {
  1917. "__type__": "cc.Gradient",
  1918. "colorKeys": [
  1919. {
  1920. "__id__": 76
  1921. },
  1922. {
  1923. "__id__": 77
  1924. },
  1925. {
  1926. "__id__": 78
  1927. },
  1928. {
  1929. "__id__": 79
  1930. }
  1931. ],
  1932. "alphaKeys": [
  1933. {
  1934. "__id__": 80
  1935. },
  1936. {
  1937. "__id__": 81
  1938. }
  1939. ],
  1940. "mode": 0
  1941. },
  1942. {
  1943. "__type__": "cc.ColorKey",
  1944. "color": {
  1945. "__type__": "cc.Color",
  1946. "r": 0,
  1947. "g": 255,
  1948. "b": 243,
  1949. "a": 255
  1950. },
  1951. "time": 0
  1952. },
  1953. {
  1954. "__type__": "cc.ColorKey",
  1955. "color": {
  1956. "__type__": "cc.Color",
  1957. "r": 203,
  1958. "g": 7,
  1959. "b": 255,
  1960. "a": 255
  1961. },
  1962. "time": 0.2318181818181818
  1963. },
  1964. {
  1965. "__type__": "cc.ColorKey",
  1966. "color": {
  1967. "__type__": "cc.Color",
  1968. "r": 255,
  1969. "g": 100,
  1970. "b": 0,
  1971. "a": 255
  1972. },
  1973. "time": 0.6477272727272727
  1974. },
  1975. {
  1976. "__type__": "cc.ColorKey",
  1977. "color": {
  1978. "__type__": "cc.Color",
  1979. "r": 0,
  1980. "g": 255,
  1981. "b": 243,
  1982. "a": 255
  1983. },
  1984. "time": 1
  1985. },
  1986. {
  1987. "__type__": "cc.AlphaKey",
  1988. "alpha": 255,
  1989. "time": 0
  1990. },
  1991. {
  1992. "__type__": "cc.AlphaKey",
  1993. "alpha": 255,
  1994. "time": 1
  1995. },
  1996. {
  1997. "__type__": "cc.CurveRange",
  1998. "mode": 3,
  1999. "constantMin": 0.5,
  2000. "constantMax": 3,
  2001. "multiplier": 1
  2002. },
  2003. {
  2004. "__type__": "cc.CurveRange",
  2005. "mode": 0,
  2006. "constant": 2,
  2007. "multiplier": 1
  2008. },
  2009. {
  2010. "__type__": "cc.CurveRange",
  2011. "mode": 3,
  2012. "constantMin": 1,
  2013. "constantMax": 3,
  2014. "multiplier": 1
  2015. },
  2016. {
  2017. "__type__": "cc.CurveRange",
  2018. "mode": 0,
  2019. "constant": 0,
  2020. "multiplier": 1
  2021. },
  2022. {
  2023. "__type__": "cc.CurveRange",
  2024. "mode": 0,
  2025. "constant": 100,
  2026. "multiplier": 1
  2027. },
  2028. {
  2029. "__type__": "cc.CurveRange",
  2030. "mode": 0,
  2031. "constant": 0,
  2032. "multiplier": 1
  2033. },
  2034. {
  2035. "__type__": "cc.ShapeModule",
  2036. "enable": true,
  2037. "_shapeType": 2,
  2038. "emitFrom": 2,
  2039. "radius": 0.07,
  2040. "radiusThickness": 1,
  2041. "_angle": 0.06981317007977318,
  2042. "_arc": 6.283185307179586,
  2043. "arcMode": 0,
  2044. "arcSpread": 0,
  2045. "arcSpeed": {
  2046. "__id__": 89
  2047. },
  2048. "length": 2,
  2049. "boxThickness": {
  2050. "__type__": "cc.Vec3",
  2051. "x": 0,
  2052. "y": 0,
  2053. "z": 0
  2054. },
  2055. "_position": {
  2056. "__type__": "cc.Vec3",
  2057. "x": 0,
  2058. "y": 0,
  2059. "z": 0
  2060. },
  2061. "_rotation": {
  2062. "__type__": "cc.Vec3",
  2063. "x": 0,
  2064. "y": 0,
  2065. "z": 0
  2066. },
  2067. "_scale": {
  2068. "__type__": "cc.Vec3",
  2069. "x": 1,
  2070. "y": 1,
  2071. "z": 1
  2072. },
  2073. "alignToDirection": false,
  2074. "randomDirectionAmount": 0,
  2075. "sphericalDirectionAmount": 0,
  2076. "randomPositionAmount": 0
  2077. },
  2078. {
  2079. "__type__": "cc.CurveRange",
  2080. "mode": 0,
  2081. "constant": 1,
  2082. "multiplier": 1
  2083. },
  2084. {
  2085. "__type__": "cc.TextureAnimationModule",
  2086. "_enable": true,
  2087. "_mode": 0,
  2088. "numTilesX": 4,
  2089. "numTilesY": 1,
  2090. "animation": 0,
  2091. "randomRow": false,
  2092. "rowIndex": 0,
  2093. "frameOverTime": {
  2094. "__id__": 91
  2095. },
  2096. "startFrame": {
  2097. "__id__": 95
  2098. },
  2099. "cycleCount": 1
  2100. },
  2101. {
  2102. "__type__": "cc.CurveRange",
  2103. "mode": 1,
  2104. "curve": {
  2105. "__id__": 92
  2106. },
  2107. "multiplier": 1
  2108. },
  2109. {
  2110. "__type__": "cc.AnimationCurve",
  2111. "keyFrames": [
  2112. {
  2113. "__id__": 93
  2114. },
  2115. {
  2116. "__id__": 94
  2117. }
  2118. ],
  2119. "preWrapMode": 2,
  2120. "postWrapMode": 2
  2121. },
  2122. {
  2123. "__type__": "cc.Keyframe",
  2124. "time": 0,
  2125. "value": 1,
  2126. "inTangent": 0,
  2127. "outTangent": 0
  2128. },
  2129. {
  2130. "__type__": "cc.Keyframe",
  2131. "time": 1,
  2132. "value": 1,
  2133. "inTangent": 0,
  2134. "outTangent": 0
  2135. },
  2136. {
  2137. "__type__": "cc.CurveRange",
  2138. "mode": 0,
  2139. "constant": 0,
  2140. "multiplier": 1
  2141. },
  2142. {
  2143. "__type__": "cc.PrefabInfo",
  2144. "root": {
  2145. "__id__": 1
  2146. },
  2147. "asset": {
  2148. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2149. },
  2150. "fileId": "87g/uL8rFI9KulRkikDvb6",
  2151. "sync": false
  2152. },
  2153. {
  2154. "__type__": "cc.Node",
  2155. "_name": "Particle_102_2",
  2156. "_objFlags": 0,
  2157. "_parent": {
  2158. "__id__": 38
  2159. },
  2160. "_children": [],
  2161. "_active": true,
  2162. "_components": [
  2163. {
  2164. "__id__": 98
  2165. }
  2166. ],
  2167. "_prefab": {
  2168. "__id__": 113
  2169. },
  2170. "_opacity": 255,
  2171. "_color": {
  2172. "__type__": "cc.Color",
  2173. "r": 255,
  2174. "g": 255,
  2175. "b": 255,
  2176. "a": 255
  2177. },
  2178. "_contentSize": {
  2179. "__type__": "cc.Size",
  2180. "width": 0,
  2181. "height": 0
  2182. },
  2183. "_anchorPoint": {
  2184. "__type__": "cc.Vec2",
  2185. "x": 0.5,
  2186. "y": 0.5
  2187. },
  2188. "_trs": {
  2189. "__type__": "TypedArray",
  2190. "ctor": "Float64Array",
  2191. "array": [
  2192. -1.4,
  2193. -0.245,
  2194. 2.933,
  2195. 0.17862480198447916,
  2196. 0.7661545877851637,
  2197. 0.5955313314664984,
  2198. 0.16261230265109328,
  2199. 2.5,
  2200. 2.5,
  2201. 2.5
  2202. ]
  2203. },
  2204. "_eulerAngles": {
  2205. "__type__": "cc.Vec3",
  2206. "x": -75.13,
  2207. "y": 177.639,
  2208. "z": 27.865
  2209. },
  2210. "_skewX": 0,
  2211. "_skewY": 0,
  2212. "_is3DNode": true,
  2213. "_groupIndex": 0,
  2214. "groupIndex": 0,
  2215. "_id": ""
  2216. },
  2217. {
  2218. "__type__": "cc.ParticleSystem3D",
  2219. "_name": "",
  2220. "_objFlags": 0,
  2221. "node": {
  2222. "__id__": 97
  2223. },
  2224. "_enabled": true,
  2225. "_materials": [
  2226. {
  2227. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  2228. }
  2229. ],
  2230. "duration": 5,
  2231. "_capacity": 1000,
  2232. "loop": true,
  2233. "playOnAwake": true,
  2234. "_prewarm": false,
  2235. "_simulationSpace": 1,
  2236. "simulationSpeed": 1,
  2237. "startDelay": {
  2238. "__id__": 99
  2239. },
  2240. "startLifetime": {
  2241. "__id__": 100
  2242. },
  2243. "startColor": {
  2244. "__id__": 101
  2245. },
  2246. "scaleSpace": 1,
  2247. "startSize": {
  2248. "__id__": 102
  2249. },
  2250. "startSpeed": {
  2251. "__id__": 103
  2252. },
  2253. "startRotation": {
  2254. "__id__": 104
  2255. },
  2256. "gravityModifier": {
  2257. "__id__": 105
  2258. },
  2259. "rateOverTime": {
  2260. "__id__": 106
  2261. },
  2262. "rateOverDistance": {
  2263. "__id__": 107
  2264. },
  2265. "bursts": [],
  2266. "_shapeModule": {
  2267. "__id__": 108
  2268. },
  2269. "_textureAnimationModule": {
  2270. "__id__": 110
  2271. },
  2272. "_renderMode": 0,
  2273. "_velocityScale": 1,
  2274. "_lengthScale": 1,
  2275. "_mesh": null,
  2276. "_id": ""
  2277. },
  2278. {
  2279. "__type__": "cc.CurveRange",
  2280. "mode": 0,
  2281. "constant": 0,
  2282. "multiplier": 1
  2283. },
  2284. {
  2285. "__type__": "cc.CurveRange",
  2286. "mode": 0,
  2287. "constant": 0.01,
  2288. "multiplier": 1
  2289. },
  2290. {
  2291. "__type__": "cc.GradientRange",
  2292. "_mode": 0,
  2293. "color": {
  2294. "__type__": "cc.Color",
  2295. "r": 255,
  2296. "g": 130,
  2297. "b": 32,
  2298. "a": 255
  2299. }
  2300. },
  2301. {
  2302. "__type__": "cc.CurveRange",
  2303. "mode": 3,
  2304. "constantMin": 0.2,
  2305. "constantMax": 0.5,
  2306. "multiplier": 1
  2307. },
  2308. {
  2309. "__type__": "cc.CurveRange",
  2310. "mode": 0,
  2311. "constant": 0.01,
  2312. "multiplier": 1
  2313. },
  2314. {
  2315. "__type__": "cc.CurveRange",
  2316. "mode": 0,
  2317. "constant": 0,
  2318. "multiplier": 1
  2319. },
  2320. {
  2321. "__type__": "cc.CurveRange",
  2322. "mode": 0,
  2323. "constant": 0,
  2324. "multiplier": 1
  2325. },
  2326. {
  2327. "__type__": "cc.CurveRange",
  2328. "mode": 0,
  2329. "constant": 5000,
  2330. "multiplier": 1
  2331. },
  2332. {
  2333. "__type__": "cc.CurveRange",
  2334. "mode": 0,
  2335. "constant": 0,
  2336. "multiplier": 1
  2337. },
  2338. {
  2339. "__type__": "cc.ShapeModule",
  2340. "enable": true,
  2341. "_shapeType": 2,
  2342. "emitFrom": 0,
  2343. "radius": 0.1,
  2344. "radiusThickness": 1,
  2345. "_angle": 0.06981317007977318,
  2346. "_arc": 6.283185307179586,
  2347. "arcMode": 0,
  2348. "arcSpread": 0,
  2349. "arcSpeed": {
  2350. "__id__": 109
  2351. },
  2352. "length": 2,
  2353. "boxThickness": {
  2354. "__type__": "cc.Vec3",
  2355. "x": 0,
  2356. "y": 0,
  2357. "z": 0
  2358. },
  2359. "_position": {
  2360. "__type__": "cc.Vec3",
  2361. "x": 0,
  2362. "y": 0,
  2363. "z": 0
  2364. },
  2365. "_rotation": {
  2366. "__type__": "cc.Vec3",
  2367. "x": 0,
  2368. "y": 0,
  2369. "z": 0
  2370. },
  2371. "_scale": {
  2372. "__type__": "cc.Vec3",
  2373. "x": 1,
  2374. "y": 1,
  2375. "z": 1
  2376. },
  2377. "alignToDirection": false,
  2378. "randomDirectionAmount": 0,
  2379. "sphericalDirectionAmount": 0,
  2380. "randomPositionAmount": 0
  2381. },
  2382. {
  2383. "__type__": "cc.CurveRange",
  2384. "mode": 0,
  2385. "constant": 1,
  2386. "multiplier": 1
  2387. },
  2388. {
  2389. "__type__": "cc.TextureAnimationModule",
  2390. "_enable": true,
  2391. "_mode": 0,
  2392. "numTilesX": 4,
  2393. "numTilesY": 1,
  2394. "animation": 0,
  2395. "randomRow": false,
  2396. "rowIndex": 0,
  2397. "frameOverTime": {
  2398. "__id__": 111
  2399. },
  2400. "startFrame": {
  2401. "__id__": 112
  2402. },
  2403. "cycleCount": 1
  2404. },
  2405. {
  2406. "__type__": "cc.CurveRange",
  2407. "mode": 0,
  2408. "constant": 0,
  2409. "multiplier": 1
  2410. },
  2411. {
  2412. "__type__": "cc.CurveRange",
  2413. "mode": 0,
  2414. "constant": 0,
  2415. "multiplier": 1
  2416. },
  2417. {
  2418. "__type__": "cc.PrefabInfo",
  2419. "root": {
  2420. "__id__": 1
  2421. },
  2422. "asset": {
  2423. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2424. },
  2425. "fileId": "10Hv2MIxJIHL9ZI3Y1bJHb",
  2426. "sync": false
  2427. },
  2428. {
  2429. "__type__": "cc.Node",
  2430. "_name": "Particle_102_2 copy",
  2431. "_objFlags": 0,
  2432. "_parent": {
  2433. "__id__": 38
  2434. },
  2435. "_children": [],
  2436. "_active": true,
  2437. "_components": [
  2438. {
  2439. "__id__": 115
  2440. }
  2441. ],
  2442. "_prefab": {
  2443. "__id__": 130
  2444. },
  2445. "_opacity": 255,
  2446. "_color": {
  2447. "__type__": "cc.Color",
  2448. "r": 255,
  2449. "g": 255,
  2450. "b": 255,
  2451. "a": 255
  2452. },
  2453. "_contentSize": {
  2454. "__type__": "cc.Size",
  2455. "width": 0,
  2456. "height": 0
  2457. },
  2458. "_anchorPoint": {
  2459. "__type__": "cc.Vec2",
  2460. "x": 0.5,
  2461. "y": 0.5
  2462. },
  2463. "_trs": {
  2464. "__type__": "TypedArray",
  2465. "ctor": "Float64Array",
  2466. "array": [
  2467. 1.451,
  2468. -0.246,
  2469. 2.753,
  2470. 0.10284279189869969,
  2471. -0.7591723647750526,
  2472. -0.613179590427999,
  2473. 0.19259146034777083,
  2474. 2.5,
  2475. 2.5,
  2476. 2.5
  2477. ]
  2478. },
  2479. "_eulerAngles": {
  2480. "__type__": "cc.Vec3",
  2481. "x": -75.721,
  2482. "y": -169.584,
  2483. "z": -23.1
  2484. },
  2485. "_skewX": 0,
  2486. "_skewY": 0,
  2487. "_is3DNode": true,
  2488. "_groupIndex": 0,
  2489. "groupIndex": 0,
  2490. "_id": ""
  2491. },
  2492. {
  2493. "__type__": "cc.ParticleSystem3D",
  2494. "_name": "",
  2495. "_objFlags": 0,
  2496. "node": {
  2497. "__id__": 114
  2498. },
  2499. "_enabled": true,
  2500. "_materials": [
  2501. {
  2502. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  2503. }
  2504. ],
  2505. "duration": 5,
  2506. "_capacity": 1000,
  2507. "loop": true,
  2508. "playOnAwake": true,
  2509. "_prewarm": false,
  2510. "_simulationSpace": 1,
  2511. "simulationSpeed": 1,
  2512. "startDelay": {
  2513. "__id__": 116
  2514. },
  2515. "startLifetime": {
  2516. "__id__": 117
  2517. },
  2518. "startColor": {
  2519. "__id__": 118
  2520. },
  2521. "scaleSpace": 1,
  2522. "startSize": {
  2523. "__id__": 119
  2524. },
  2525. "startSpeed": {
  2526. "__id__": 120
  2527. },
  2528. "startRotation": {
  2529. "__id__": 121
  2530. },
  2531. "gravityModifier": {
  2532. "__id__": 122
  2533. },
  2534. "rateOverTime": {
  2535. "__id__": 123
  2536. },
  2537. "rateOverDistance": {
  2538. "__id__": 124
  2539. },
  2540. "bursts": [],
  2541. "_shapeModule": {
  2542. "__id__": 125
  2543. },
  2544. "_textureAnimationModule": {
  2545. "__id__": 127
  2546. },
  2547. "_renderMode": 0,
  2548. "_velocityScale": 1,
  2549. "_lengthScale": 1,
  2550. "_mesh": null,
  2551. "_id": ""
  2552. },
  2553. {
  2554. "__type__": "cc.CurveRange",
  2555. "mode": 0,
  2556. "constant": 0,
  2557. "multiplier": 1
  2558. },
  2559. {
  2560. "__type__": "cc.CurveRange",
  2561. "mode": 0,
  2562. "constant": 0.01,
  2563. "multiplier": 1
  2564. },
  2565. {
  2566. "__type__": "cc.GradientRange",
  2567. "_mode": 0,
  2568. "color": {
  2569. "__type__": "cc.Color",
  2570. "r": 255,
  2571. "g": 130,
  2572. "b": 32,
  2573. "a": 255
  2574. }
  2575. },
  2576. {
  2577. "__type__": "cc.CurveRange",
  2578. "mode": 3,
  2579. "constantMin": 0.2,
  2580. "constantMax": 0.5,
  2581. "multiplier": 1
  2582. },
  2583. {
  2584. "__type__": "cc.CurveRange",
  2585. "mode": 0,
  2586. "constant": 0.01,
  2587. "multiplier": 1
  2588. },
  2589. {
  2590. "__type__": "cc.CurveRange",
  2591. "mode": 0,
  2592. "constant": 0,
  2593. "multiplier": 1
  2594. },
  2595. {
  2596. "__type__": "cc.CurveRange",
  2597. "mode": 0,
  2598. "constant": 0,
  2599. "multiplier": 1
  2600. },
  2601. {
  2602. "__type__": "cc.CurveRange",
  2603. "mode": 0,
  2604. "constant": 5000,
  2605. "multiplier": 1
  2606. },
  2607. {
  2608. "__type__": "cc.CurveRange",
  2609. "mode": 0,
  2610. "constant": 0,
  2611. "multiplier": 1
  2612. },
  2613. {
  2614. "__type__": "cc.ShapeModule",
  2615. "enable": true,
  2616. "_shapeType": 2,
  2617. "emitFrom": 0,
  2618. "radius": 0.1,
  2619. "radiusThickness": 1,
  2620. "_angle": 0.06981317007977318,
  2621. "_arc": 6.283185307179586,
  2622. "arcMode": 0,
  2623. "arcSpread": 0,
  2624. "arcSpeed": {
  2625. "__id__": 126
  2626. },
  2627. "length": 2,
  2628. "boxThickness": {
  2629. "__type__": "cc.Vec3",
  2630. "x": 0,
  2631. "y": 0,
  2632. "z": 0
  2633. },
  2634. "_position": {
  2635. "__type__": "cc.Vec3",
  2636. "x": 0,
  2637. "y": 0,
  2638. "z": 0
  2639. },
  2640. "_rotation": {
  2641. "__type__": "cc.Vec3",
  2642. "x": 0,
  2643. "y": 0,
  2644. "z": 0
  2645. },
  2646. "_scale": {
  2647. "__type__": "cc.Vec3",
  2648. "x": 1,
  2649. "y": 1,
  2650. "z": 1
  2651. },
  2652. "alignToDirection": false,
  2653. "randomDirectionAmount": 0,
  2654. "sphericalDirectionAmount": 0,
  2655. "randomPositionAmount": 0
  2656. },
  2657. {
  2658. "__type__": "cc.CurveRange",
  2659. "mode": 0,
  2660. "constant": 1,
  2661. "multiplier": 1
  2662. },
  2663. {
  2664. "__type__": "cc.TextureAnimationModule",
  2665. "_enable": true,
  2666. "_mode": 0,
  2667. "numTilesX": 4,
  2668. "numTilesY": 1,
  2669. "animation": 0,
  2670. "randomRow": false,
  2671. "rowIndex": 0,
  2672. "frameOverTime": {
  2673. "__id__": 128
  2674. },
  2675. "startFrame": {
  2676. "__id__": 129
  2677. },
  2678. "cycleCount": 0
  2679. },
  2680. {
  2681. "__type__": "cc.CurveRange",
  2682. "mode": 3,
  2683. "constantMin": 0,
  2684. "constantMax": 1,
  2685. "multiplier": 1
  2686. },
  2687. {
  2688. "__type__": "cc.CurveRange",
  2689. "mode": 0,
  2690. "constant": 0,
  2691. "multiplier": 1
  2692. },
  2693. {
  2694. "__type__": "cc.PrefabInfo",
  2695. "root": {
  2696. "__id__": 1
  2697. },
  2698. "asset": {
  2699. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2700. },
  2701. "fileId": "0ckda/AR9PEr+hKx/cRBvd",
  2702. "sync": false
  2703. },
  2704. {
  2705. "__type__": "cc.PrefabInfo",
  2706. "root": {
  2707. "__id__": 1
  2708. },
  2709. "asset": {
  2710. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2711. },
  2712. "fileId": "6cWeLQJOROIYNaQ5kh6nkw",
  2713. "sync": false
  2714. },
  2715. {
  2716. "__type__": "cc.Node",
  2717. "_name": "pPlane1",
  2718. "_objFlags": 0,
  2719. "_parent": {
  2720. "__id__": 1
  2721. },
  2722. "_children": [],
  2723. "_active": true,
  2724. "_components": [
  2725. {
  2726. "__id__": 133
  2727. }
  2728. ],
  2729. "_prefab": {
  2730. "__id__": 134
  2731. },
  2732. "_opacity": 38.25,
  2733. "_color": {
  2734. "__type__": "cc.Color",
  2735. "r": 255,
  2736. "g": 255,
  2737. "b": 255,
  2738. "a": 255
  2739. },
  2740. "_contentSize": {
  2741. "__type__": "cc.Size",
  2742. "width": 0,
  2743. "height": 0
  2744. },
  2745. "_anchorPoint": {
  2746. "__type__": "cc.Vec2",
  2747. "x": 0.5,
  2748. "y": 0.5
  2749. },
  2750. "_trs": {
  2751. "__type__": "TypedArray",
  2752. "ctor": "Float64Array",
  2753. "array": [
  2754. 0,
  2755. -0.149,
  2756. 0.647,
  2757. -0.7071067811865475,
  2758. 0,
  2759. 0,
  2760. 0.7071067811865476,
  2761. 0.304,
  2762. 0.408,
  2763. 0.475
  2764. ]
  2765. },
  2766. "_eulerAngles": {
  2767. "__type__": "cc.Vec3",
  2768. "x": -90,
  2769. "y": 0,
  2770. "z": 0
  2771. },
  2772. "_skewX": 0,
  2773. "_skewY": 0,
  2774. "_is3DNode": true,
  2775. "_groupIndex": 0,
  2776. "groupIndex": 0,
  2777. "_id": ""
  2778. },
  2779. {
  2780. "__type__": "cc.MeshRenderer",
  2781. "_name": "",
  2782. "_objFlags": 0,
  2783. "node": {
  2784. "__id__": 132
  2785. },
  2786. "_enabled": true,
  2787. "_materials": [
  2788. {
  2789. "__uuid__": "f73ebd00-03e0-4a45-ba82-69c44f19bb7d"
  2790. }
  2791. ],
  2792. "_mesh": {
  2793. "__uuid__": "7a42e48a-88ae-4d78-a283-83c9e3007f8e"
  2794. },
  2795. "_receiveShadows": false,
  2796. "_shadowCastingMode": 0,
  2797. "_enableAutoBatch": false,
  2798. "textures": [],
  2799. "_id": ""
  2800. },
  2801. {
  2802. "__type__": "cc.PrefabInfo",
  2803. "root": {
  2804. "__id__": 1
  2805. },
  2806. "asset": {
  2807. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2808. },
  2809. "fileId": "02uFqALhZEEImuiYOFLf0l",
  2810. "sync": false
  2811. },
  2812. {
  2813. "__type__": "cc.PrefabInfo",
  2814. "root": {
  2815. "__id__": 1
  2816. },
  2817. "asset": {
  2818. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2819. },
  2820. "fileId": "964WDEQiFCUpvmEqONj2zj",
  2821. "sync": false
  2822. }
  2823. ]