Car_102.prefab 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085
  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_102",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 41
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [],
  29. "_prefab": {
  30. "__id__": 84
  31. },
  32. "_opacity": 255,
  33. "_color": {
  34. "__type__": "cc.Color",
  35. "r": 255,
  36. "g": 255,
  37. "b": 255,
  38. "a": 255
  39. },
  40. "_contentSize": {
  41. "__type__": "cc.Size",
  42. "width": 0,
  43. "height": 0
  44. },
  45. "_anchorPoint": {
  46. "__type__": "cc.Vec2",
  47. "x": 0.5,
  48. "y": 0.5
  49. },
  50. "_trs": {
  51. "__type__": "TypedArray",
  52. "ctor": "Float64Array",
  53. "array": [
  54. 0,
  55. 0,
  56. 0,
  57. 0,
  58. 0,
  59. 0,
  60. 1,
  61. 1,
  62. 1,
  63. 1
  64. ]
  65. },
  66. "_eulerAngles": {
  67. "__type__": "cc.Vec3",
  68. "x": 0,
  69. "y": 0,
  70. "z": 0
  71. },
  72. "_skewX": 0,
  73. "_skewY": 0,
  74. "_is3DNode": true,
  75. "_groupIndex": 0,
  76. "groupIndex": 0,
  77. "_id": ""
  78. },
  79. {
  80. "__type__": "cc.Node",
  81. "_name": "SM_Veh_Retro_01_Hover",
  82. "_objFlags": 0,
  83. "_parent": {
  84. "__id__": 1
  85. },
  86. "_children": [
  87. {
  88. "__id__": 3
  89. },
  90. {
  91. "__id__": 6
  92. },
  93. {
  94. "__id__": 9
  95. },
  96. {
  97. "__id__": 12
  98. },
  99. {
  100. "__id__": 15
  101. },
  102. {
  103. "__id__": 21
  104. },
  105. {
  106. "__id__": 27
  107. },
  108. {
  109. "__id__": 30
  110. },
  111. {
  112. "__id__": 33
  113. },
  114. {
  115. "__id__": 36
  116. }
  117. ],
  118. "_active": true,
  119. "_components": [
  120. {
  121. "__id__": 39
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 40
  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,
  151. 0,
  152. 0,
  153. 1,
  154. 0,
  155. 6.123233995736766e-17,
  156. 1.922,
  157. 1.922,
  158. 1.922
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  267. },
  268. "fileId": "dfHfBQVFNLqJliJCzzFGbn",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  364. },
  365. "fileId": "beJiDXqNdJsJu6mEgJLQMr",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  461. },
  462. "fileId": "b5hs2QEJtEf6hq+JlSW+ni",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  558. },
  559. "fileId": "3c64nKYRRNjpMtY836QvSN",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  723. },
  724. "fileId": "caKh/V4WBGabvj7ROn+R73",
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  756. },
  757. "fileId": "38Bx6mSm5ND4WglE9Ii+HR",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  921. },
  922. "fileId": "38TlRF9NZEVrGNZPktSkh9",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  954. },
  955. "fileId": "59tEGlYgNCM554hGgGZ8oX",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1051. },
  1052. "fileId": "66kHUJd1ZBhYgxVRvQOLl6",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1148. },
  1149. "fileId": "11BILoalZGPo9UvCADHQWc",
  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__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  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__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1245. },
  1246. "fileId": "6990DkI75Oq73UECIHMCLW",
  1247. "sync": false
  1248. },
  1249. {
  1250. "__type__": "cc.Node",
  1251. "_name": "pPlane1",
  1252. "_objFlags": 0,
  1253. "_parent": {
  1254. "__id__": 2
  1255. },
  1256. "_children": [],
  1257. "_active": false,
  1258. "_components": [
  1259. {
  1260. "__id__": 37
  1261. }
  1262. ],
  1263. "_prefab": {
  1264. "__id__": 38
  1265. },
  1266. "_opacity": 38.25,
  1267. "_color": {
  1268. "__type__": "cc.Color",
  1269. "r": 255,
  1270. "g": 255,
  1271. "b": 255,
  1272. "a": 255
  1273. },
  1274. "_contentSize": {
  1275. "__type__": "cc.Size",
  1276. "width": 0,
  1277. "height": 0
  1278. },
  1279. "_anchorPoint": {
  1280. "__type__": "cc.Vec2",
  1281. "x": 0.5,
  1282. "y": 0.5
  1283. },
  1284. "_trs": {
  1285. "__type__": "TypedArray",
  1286. "ctor": "Float64Array",
  1287. "array": [
  1288. 0,
  1289. -0.633,
  1290. -0.294,
  1291. -4.329780281177466e-17,
  1292. -0.7071067811865476,
  1293. -0.7071067811865475,
  1294. 4.329780281177467e-17,
  1295. 0.216,
  1296. 0.234,
  1297. 0.257
  1298. ]
  1299. },
  1300. "_eulerAngles": {
  1301. "__type__": "cc.Vec3",
  1302. "x": -90,
  1303. "y": -180,
  1304. "z": 0
  1305. },
  1306. "_skewX": 0,
  1307. "_skewY": 0,
  1308. "_is3DNode": true,
  1309. "_groupIndex": 0,
  1310. "groupIndex": 0,
  1311. "_id": ""
  1312. },
  1313. {
  1314. "__type__": "cc.MeshRenderer",
  1315. "_name": "",
  1316. "_objFlags": 0,
  1317. "node": {
  1318. "__id__": 36
  1319. },
  1320. "_enabled": true,
  1321. "_materials": [
  1322. {
  1323. "__uuid__": "f73ebd00-03e0-4a45-ba82-69c44f19bb7d"
  1324. }
  1325. ],
  1326. "_mesh": {
  1327. "__uuid__": "7a42e48a-88ae-4d78-a283-83c9e3007f8e"
  1328. },
  1329. "_receiveShadows": false,
  1330. "_shadowCastingMode": 0,
  1331. "_enableAutoBatch": false,
  1332. "textures": [],
  1333. "_id": ""
  1334. },
  1335. {
  1336. "__type__": "cc.PrefabInfo",
  1337. "root": {
  1338. "__id__": 1
  1339. },
  1340. "asset": {
  1341. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1342. },
  1343. "fileId": "25H1N31dNEZqNDcUFR3Fti",
  1344. "sync": false
  1345. },
  1346. {
  1347. "__type__": "cc.MeshRenderer",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 2
  1352. },
  1353. "_enabled": true,
  1354. "_materials": [
  1355. {
  1356. "__uuid__": "b11d0ccb-245e-468f-a1ed-8cabb5dcac11"
  1357. }
  1358. ],
  1359. "_mesh": {
  1360. "__uuid__": "14d1a472-facc-452e-a6bb-03467ba35a1b"
  1361. },
  1362. "_receiveShadows": false,
  1363. "_shadowCastingMode": 0,
  1364. "_enableAutoBatch": false,
  1365. "textures": [],
  1366. "_id": ""
  1367. },
  1368. {
  1369. "__type__": "cc.PrefabInfo",
  1370. "root": {
  1371. "__id__": 1
  1372. },
  1373. "asset": {
  1374. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1375. },
  1376. "fileId": "60IEYTsVtOWp+0/5xNbfn0",
  1377. "sync": false
  1378. },
  1379. {
  1380. "__type__": "cc.Node",
  1381. "_name": "ParticleRoot",
  1382. "_objFlags": 0,
  1383. "_parent": {
  1384. "__id__": 1
  1385. },
  1386. "_children": [
  1387. {
  1388. "__id__": 42
  1389. },
  1390. {
  1391. "__id__": 56
  1392. }
  1393. ],
  1394. "_active": true,
  1395. "_components": [],
  1396. "_prefab": {
  1397. "__id__": 83
  1398. },
  1399. "_opacity": 255,
  1400. "_color": {
  1401. "__type__": "cc.Color",
  1402. "r": 255,
  1403. "g": 255,
  1404. "b": 255,
  1405. "a": 255
  1406. },
  1407. "_contentSize": {
  1408. "__type__": "cc.Size",
  1409. "width": 0,
  1410. "height": 0
  1411. },
  1412. "_anchorPoint": {
  1413. "__type__": "cc.Vec2",
  1414. "x": 0.5,
  1415. "y": 0.5
  1416. },
  1417. "_trs": {
  1418. "__type__": "TypedArray",
  1419. "ctor": "Float64Array",
  1420. "array": [
  1421. 0,
  1422. 0,
  1423. 0,
  1424. 0,
  1425. 0,
  1426. 0,
  1427. 1,
  1428. 1,
  1429. 1,
  1430. 1
  1431. ]
  1432. },
  1433. "_eulerAngles": {
  1434. "__type__": "cc.Vec3",
  1435. "x": 0,
  1436. "y": 0,
  1437. "z": 0
  1438. },
  1439. "_skewX": 0,
  1440. "_skewY": 0,
  1441. "_is3DNode": false,
  1442. "_groupIndex": 0,
  1443. "groupIndex": 0,
  1444. "_id": ""
  1445. },
  1446. {
  1447. "__type__": "cc.Node",
  1448. "_name": "Particle_102_2",
  1449. "_objFlags": 0,
  1450. "_parent": {
  1451. "__id__": 41
  1452. },
  1453. "_children": [],
  1454. "_active": true,
  1455. "_components": [
  1456. {
  1457. "__id__": 43
  1458. }
  1459. ],
  1460. "_prefab": {
  1461. "__id__": 55
  1462. },
  1463. "_opacity": 255,
  1464. "_color": {
  1465. "__type__": "cc.Color",
  1466. "r": 255,
  1467. "g": 255,
  1468. "b": 255,
  1469. "a": 255
  1470. },
  1471. "_contentSize": {
  1472. "__type__": "cc.Size",
  1473. "width": 0,
  1474. "height": 0
  1475. },
  1476. "_anchorPoint": {
  1477. "__type__": "cc.Vec2",
  1478. "x": 0.5,
  1479. "y": 0.5
  1480. },
  1481. "_trs": {
  1482. "__type__": "TypedArray",
  1483. "ctor": "Float64Array",
  1484. "array": [
  1485. -2.089,
  1486. 0.225,
  1487. 4.311,
  1488. 0.17862480198447916,
  1489. 0.7661545877851637,
  1490. 0.5955313314664984,
  1491. 0.16261230265109328,
  1492. 4.93,
  1493. 4.93,
  1494. 4.93
  1495. ]
  1496. },
  1497. "_eulerAngles": {
  1498. "__type__": "cc.Vec3",
  1499. "x": -75.13,
  1500. "y": 177.639,
  1501. "z": 27.865
  1502. },
  1503. "_skewX": 0,
  1504. "_skewY": 0,
  1505. "_is3DNode": true,
  1506. "_groupIndex": 0,
  1507. "groupIndex": 0,
  1508. "_id": ""
  1509. },
  1510. {
  1511. "__type__": "cc.ParticleSystem3D",
  1512. "_name": "",
  1513. "_objFlags": 0,
  1514. "node": {
  1515. "__id__": 42
  1516. },
  1517. "_enabled": true,
  1518. "_materials": [
  1519. {
  1520. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1521. }
  1522. ],
  1523. "duration": 5,
  1524. "_capacity": 1000,
  1525. "loop": true,
  1526. "playOnAwake": true,
  1527. "_prewarm": false,
  1528. "_simulationSpace": 1,
  1529. "simulationSpeed": 1,
  1530. "startDelay": {
  1531. "__id__": 44
  1532. },
  1533. "startLifetime": {
  1534. "__id__": 45
  1535. },
  1536. "startColor": {
  1537. "__id__": 46
  1538. },
  1539. "scaleSpace": 1,
  1540. "startSize": {
  1541. "__id__": 47
  1542. },
  1543. "startSpeed": {
  1544. "__id__": 48
  1545. },
  1546. "startRotation": {
  1547. "__id__": 49
  1548. },
  1549. "gravityModifier": {
  1550. "__id__": 50
  1551. },
  1552. "rateOverTime": {
  1553. "__id__": 51
  1554. },
  1555. "rateOverDistance": {
  1556. "__id__": 52
  1557. },
  1558. "bursts": [],
  1559. "_shapeModule": {
  1560. "__id__": 53
  1561. },
  1562. "_renderMode": 0,
  1563. "_velocityScale": 1,
  1564. "_lengthScale": 1,
  1565. "_mesh": null,
  1566. "_id": ""
  1567. },
  1568. {
  1569. "__type__": "cc.CurveRange",
  1570. "mode": 0,
  1571. "constant": 0,
  1572. "multiplier": 1
  1573. },
  1574. {
  1575. "__type__": "cc.CurveRange",
  1576. "mode": 0,
  1577. "constant": 0.01,
  1578. "multiplier": 1
  1579. },
  1580. {
  1581. "__type__": "cc.GradientRange",
  1582. "_mode": 0,
  1583. "color": {
  1584. "__type__": "cc.Color",
  1585. "r": 0,
  1586. "g": 102,
  1587. "b": 255,
  1588. "a": 255
  1589. }
  1590. },
  1591. {
  1592. "__type__": "cc.CurveRange",
  1593. "mode": 3,
  1594. "constantMin": 0.2,
  1595. "constantMax": 0.5,
  1596. "multiplier": 1
  1597. },
  1598. {
  1599. "__type__": "cc.CurveRange",
  1600. "mode": 0,
  1601. "constant": 0.01,
  1602. "multiplier": 1
  1603. },
  1604. {
  1605. "__type__": "cc.CurveRange",
  1606. "mode": 0,
  1607. "constant": 0,
  1608. "multiplier": 1
  1609. },
  1610. {
  1611. "__type__": "cc.CurveRange",
  1612. "mode": 0,
  1613. "constant": 0,
  1614. "multiplier": 1
  1615. },
  1616. {
  1617. "__type__": "cc.CurveRange",
  1618. "mode": 0,
  1619. "constant": 5000,
  1620. "multiplier": 1
  1621. },
  1622. {
  1623. "__type__": "cc.CurveRange",
  1624. "mode": 0,
  1625. "constant": 0,
  1626. "multiplier": 1
  1627. },
  1628. {
  1629. "__type__": "cc.ShapeModule",
  1630. "enable": true,
  1631. "_shapeType": 2,
  1632. "emitFrom": 0,
  1633. "radius": 0.16,
  1634. "radiusThickness": 1,
  1635. "_angle": 0.06981317007977318,
  1636. "_arc": 6.283185307179586,
  1637. "arcMode": 0,
  1638. "arcSpread": 0,
  1639. "arcSpeed": {
  1640. "__id__": 54
  1641. },
  1642. "length": 2,
  1643. "boxThickness": {
  1644. "__type__": "cc.Vec3",
  1645. "x": 0,
  1646. "y": 0,
  1647. "z": 0
  1648. },
  1649. "_position": {
  1650. "__type__": "cc.Vec3",
  1651. "x": 0,
  1652. "y": 0,
  1653. "z": 0
  1654. },
  1655. "_rotation": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0
  1660. },
  1661. "_scale": {
  1662. "__type__": "cc.Vec3",
  1663. "x": 1,
  1664. "y": 1,
  1665. "z": 1
  1666. },
  1667. "alignToDirection": false,
  1668. "randomDirectionAmount": 0,
  1669. "sphericalDirectionAmount": 0,
  1670. "randomPositionAmount": 0
  1671. },
  1672. {
  1673. "__type__": "cc.CurveRange",
  1674. "mode": 0,
  1675. "constant": 1,
  1676. "multiplier": 1
  1677. },
  1678. {
  1679. "__type__": "cc.PrefabInfo",
  1680. "root": {
  1681. "__id__": 1
  1682. },
  1683. "asset": {
  1684. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1685. },
  1686. "fileId": "36Bj5AuzVKRZK/CAKckEab",
  1687. "sync": false
  1688. },
  1689. {
  1690. "__type__": "cc.Node",
  1691. "_name": "Particle_102",
  1692. "_objFlags": 0,
  1693. "_parent": {
  1694. "__id__": 41
  1695. },
  1696. "_children": [],
  1697. "_active": true,
  1698. "_components": [
  1699. {
  1700. "__id__": 57
  1701. }
  1702. ],
  1703. "_prefab": {
  1704. "__id__": 82
  1705. },
  1706. "_opacity": 255,
  1707. "_color": {
  1708. "__type__": "cc.Color",
  1709. "r": 255,
  1710. "g": 255,
  1711. "b": 255,
  1712. "a": 255
  1713. },
  1714. "_contentSize": {
  1715. "__type__": "cc.Size",
  1716. "width": 0,
  1717. "height": 0
  1718. },
  1719. "_anchorPoint": {
  1720. "__type__": "cc.Vec2",
  1721. "x": 0.5,
  1722. "y": 0.5
  1723. },
  1724. "_trs": {
  1725. "__type__": "TypedArray",
  1726. "ctor": "Float64Array",
  1727. "array": [
  1728. -0.006,
  1729. 0.892,
  1730. 5.758,
  1731. 0,
  1732. 0.9999646152399649,
  1733. 0,
  1734. 0.008412387769767512,
  1735. 4.93001,
  1736. 4.93001,
  1737. 4.93001
  1738. ]
  1739. },
  1740. "_eulerAngles": {
  1741. "__type__": "cc.Vec3",
  1742. "x": 0,
  1743. "y": 179.036,
  1744. "z": 0
  1745. },
  1746. "_skewX": 0,
  1747. "_skewY": 0,
  1748. "_is3DNode": true,
  1749. "_groupIndex": 0,
  1750. "groupIndex": 0,
  1751. "_id": ""
  1752. },
  1753. {
  1754. "__type__": "cc.ParticleSystem3D",
  1755. "_name": "",
  1756. "_objFlags": 0,
  1757. "node": {
  1758. "__id__": 56
  1759. },
  1760. "_enabled": true,
  1761. "_materials": [
  1762. {
  1763. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1764. }
  1765. ],
  1766. "duration": 5,
  1767. "_capacity": 100,
  1768. "loop": true,
  1769. "playOnAwake": true,
  1770. "_prewarm": false,
  1771. "_simulationSpace": 1,
  1772. "simulationSpeed": 1,
  1773. "startDelay": {
  1774. "__id__": 58
  1775. },
  1776. "startLifetime": {
  1777. "__id__": 59
  1778. },
  1779. "startColor": {
  1780. "__id__": 60
  1781. },
  1782. "scaleSpace": 1,
  1783. "startSize": {
  1784. "__id__": 68
  1785. },
  1786. "startSpeed": {
  1787. "__id__": 69
  1788. },
  1789. "startRotation": {
  1790. "__id__": 70
  1791. },
  1792. "gravityModifier": {
  1793. "__id__": 71
  1794. },
  1795. "rateOverTime": {
  1796. "__id__": 72
  1797. },
  1798. "rateOverDistance": {
  1799. "__id__": 73
  1800. },
  1801. "bursts": [],
  1802. "_shapeModule": {
  1803. "__id__": 74
  1804. },
  1805. "_textureAnimationModule": {
  1806. "__id__": 76
  1807. },
  1808. "_renderMode": 0,
  1809. "_velocityScale": 1,
  1810. "_lengthScale": 1,
  1811. "_mesh": null,
  1812. "_id": ""
  1813. },
  1814. {
  1815. "__type__": "cc.CurveRange",
  1816. "mode": 0,
  1817. "constant": 0,
  1818. "multiplier": 1
  1819. },
  1820. {
  1821. "__type__": "cc.CurveRange",
  1822. "mode": 0,
  1823. "constant": 1,
  1824. "multiplier": 1
  1825. },
  1826. {
  1827. "__type__": "cc.GradientRange",
  1828. "_mode": 4,
  1829. "gradient": {
  1830. "__id__": 61
  1831. }
  1832. },
  1833. {
  1834. "__type__": "cc.Gradient",
  1835. "colorKeys": [
  1836. {
  1837. "__id__": 62
  1838. },
  1839. {
  1840. "__id__": 63
  1841. },
  1842. {
  1843. "__id__": 64
  1844. }
  1845. ],
  1846. "alphaKeys": [
  1847. {
  1848. "__id__": 65
  1849. },
  1850. {
  1851. "__id__": 66
  1852. },
  1853. {
  1854. "__id__": 67
  1855. }
  1856. ],
  1857. "mode": 0
  1858. },
  1859. {
  1860. "__type__": "cc.ColorKey",
  1861. "color": {
  1862. "__type__": "cc.Color",
  1863. "r": 0,
  1864. "g": 237,
  1865. "b": 255,
  1866. "a": 255
  1867. },
  1868. "time": 0
  1869. },
  1870. {
  1871. "__type__": "cc.ColorKey",
  1872. "color": {
  1873. "__type__": "cc.Color",
  1874. "r": 0,
  1875. "g": 12,
  1876. "b": 255,
  1877. "a": 255
  1878. },
  1879. "time": 0.4772727272727273
  1880. },
  1881. {
  1882. "__type__": "cc.ColorKey",
  1883. "color": {
  1884. "__type__": "cc.Color",
  1885. "r": 0,
  1886. "g": 84,
  1887. "b": 255,
  1888. "a": 255
  1889. },
  1890. "time": 0.9931818181818182
  1891. },
  1892. {
  1893. "__type__": "cc.AlphaKey",
  1894. "alpha": 1,
  1895. "time": 0
  1896. },
  1897. {
  1898. "__type__": "cc.AlphaKey",
  1899. "alpha": 1,
  1900. "time": 0
  1901. },
  1902. {
  1903. "__type__": "cc.AlphaKey",
  1904. "alpha": 255,
  1905. "time": 0.9931818181818182
  1906. },
  1907. {
  1908. "__type__": "cc.CurveRange",
  1909. "mode": 3,
  1910. "constantMin": 0.5,
  1911. "constantMax": 1.5,
  1912. "multiplier": 1
  1913. },
  1914. {
  1915. "__type__": "cc.CurveRange",
  1916. "mode": 0,
  1917. "constant": 2,
  1918. "multiplier": 1
  1919. },
  1920. {
  1921. "__type__": "cc.CurveRange",
  1922. "mode": 0,
  1923. "constant": 0,
  1924. "multiplier": 1
  1925. },
  1926. {
  1927. "__type__": "cc.CurveRange",
  1928. "mode": 0,
  1929. "constant": 0,
  1930. "multiplier": 1
  1931. },
  1932. {
  1933. "__type__": "cc.CurveRange",
  1934. "mode": 0,
  1935. "constant": 22,
  1936. "multiplier": 1
  1937. },
  1938. {
  1939. "__type__": "cc.CurveRange",
  1940. "mode": 0,
  1941. "constant": 0,
  1942. "multiplier": 1
  1943. },
  1944. {
  1945. "__type__": "cc.ShapeModule",
  1946. "enable": true,
  1947. "_shapeType": 2,
  1948. "emitFrom": 0,
  1949. "radius": 0.05,
  1950. "radiusThickness": 1,
  1951. "_angle": 0.06981317007977318,
  1952. "_arc": 6.283185307179586,
  1953. "arcMode": 0,
  1954. "arcSpread": 0,
  1955. "arcSpeed": {
  1956. "__id__": 75
  1957. },
  1958. "length": 2,
  1959. "boxThickness": {
  1960. "__type__": "cc.Vec3",
  1961. "x": 0,
  1962. "y": 0,
  1963. "z": 0
  1964. },
  1965. "_position": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 0,
  1968. "y": 0,
  1969. "z": 0
  1970. },
  1971. "_rotation": {
  1972. "__type__": "cc.Vec3",
  1973. "x": 0,
  1974. "y": 0,
  1975. "z": 0
  1976. },
  1977. "_scale": {
  1978. "__type__": "cc.Vec3",
  1979. "x": 1,
  1980. "y": 1,
  1981. "z": 1
  1982. },
  1983. "alignToDirection": false,
  1984. "randomDirectionAmount": 0,
  1985. "sphericalDirectionAmount": 0,
  1986. "randomPositionAmount": 0
  1987. },
  1988. {
  1989. "__type__": "cc.CurveRange",
  1990. "mode": 0,
  1991. "constant": 1,
  1992. "multiplier": 1
  1993. },
  1994. {
  1995. "__type__": "cc.TextureAnimationModule",
  1996. "_enable": true,
  1997. "_mode": 0,
  1998. "numTilesX": 4,
  1999. "numTilesY": 1,
  2000. "animation": 0,
  2001. "randomRow": false,
  2002. "rowIndex": 0,
  2003. "frameOverTime": {
  2004. "__id__": 77
  2005. },
  2006. "startFrame": {
  2007. "__id__": 81
  2008. },
  2009. "cycleCount": 1
  2010. },
  2011. {
  2012. "__type__": "cc.CurveRange",
  2013. "mode": 1,
  2014. "curve": {
  2015. "__id__": 78
  2016. },
  2017. "multiplier": 1
  2018. },
  2019. {
  2020. "__type__": "cc.AnimationCurve",
  2021. "keyFrames": [
  2022. {
  2023. "__id__": 79
  2024. },
  2025. {
  2026. "__id__": 80
  2027. }
  2028. ],
  2029. "preWrapMode": 2,
  2030. "postWrapMode": 2
  2031. },
  2032. {
  2033. "__type__": "cc.Keyframe",
  2034. "time": 0,
  2035. "value": 1,
  2036. "inTangent": 0,
  2037. "outTangent": 0
  2038. },
  2039. {
  2040. "__type__": "cc.Keyframe",
  2041. "time": 1,
  2042. "value": 1,
  2043. "inTangent": 0,
  2044. "outTangent": 0
  2045. },
  2046. {
  2047. "__type__": "cc.CurveRange",
  2048. "mode": 0,
  2049. "constant": 0,
  2050. "multiplier": 1
  2051. },
  2052. {
  2053. "__type__": "cc.PrefabInfo",
  2054. "root": {
  2055. "__id__": 1
  2056. },
  2057. "asset": {
  2058. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  2059. },
  2060. "fileId": "d6UT2fMgFMa5uC3sVpNvKf",
  2061. "sync": false
  2062. },
  2063. {
  2064. "__type__": "cc.PrefabInfo",
  2065. "root": {
  2066. "__id__": 1
  2067. },
  2068. "asset": {
  2069. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  2070. },
  2071. "fileId": "3bcLYnn+xB4bB+rzUglhBT",
  2072. "sync": false
  2073. },
  2074. {
  2075. "__type__": "cc.PrefabInfo",
  2076. "root": {
  2077. "__id__": 1
  2078. },
  2079. "asset": {
  2080. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  2081. },
  2082. "fileId": "92Bj+tFztP7Yb6SW63ik8Q",
  2083. "sync": false
  2084. }
  2085. ]