Car_101.prefab 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169
  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__": 41
  25. },
  26. {
  27. "__id__": 69
  28. }
  29. ],
  30. "_active": true,
  31. "_components": [],
  32. "_prefab": {
  33. "__id__": 97
  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. "__id__": 36
  119. }
  120. ],
  121. "_active": true,
  122. "_components": [
  123. {
  124. "__id__": 39
  125. }
  126. ],
  127. "_prefab": {
  128. "__id__": 40
  129. },
  130. "_opacity": 255,
  131. "_color": {
  132. "__type__": "cc.Color",
  133. "r": 255,
  134. "g": 255,
  135. "b": 255,
  136. "a": 255
  137. },
  138. "_contentSize": {
  139. "__type__": "cc.Size",
  140. "width": 0,
  141. "height": 0
  142. },
  143. "_anchorPoint": {
  144. "__type__": "cc.Vec2",
  145. "x": 0.5,
  146. "y": 0.5
  147. },
  148. "_trs": {
  149. "__type__": "TypedArray",
  150. "ctor": "Float64Array",
  151. "array": [
  152. 0,
  153. 0,
  154. 0,
  155. 0,
  156. 1,
  157. 0,
  158. 6.123233995736766e-17,
  159. 1.922,
  160. 1.922,
  161. 1.922
  162. ]
  163. },
  164. "_eulerAngles": {
  165. "__type__": "cc.Vec3",
  166. "x": 0,
  167. "y": 180,
  168. "z": 0
  169. },
  170. "_skewX": 0,
  171. "_skewY": 0,
  172. "_is3DNode": true,
  173. "_groupIndex": 0,
  174. "groupIndex": 0,
  175. "_id": ""
  176. },
  177. {
  178. "__type__": "cc.Node",
  179. "_name": "SM_Veh_Retro_Hover_01_Wheel_rl_Hover",
  180. "_objFlags": 0,
  181. "_parent": {
  182. "__id__": 2
  183. },
  184. "_children": [],
  185. "_active": true,
  186. "_components": [
  187. {
  188. "__id__": 4
  189. }
  190. ],
  191. "_prefab": {
  192. "__id__": 5
  193. },
  194. "_opacity": 255,
  195. "_color": {
  196. "__type__": "cc.Color",
  197. "r": 255,
  198. "g": 255,
  199. "b": 255,
  200. "a": 255
  201. },
  202. "_contentSize": {
  203. "__type__": "cc.Size",
  204. "width": 0,
  205. "height": 0
  206. },
  207. "_anchorPoint": {
  208. "__type__": "cc.Vec2",
  209. "x": 0.5,
  210. "y": 0.5
  211. },
  212. "_trs": {
  213. "__type__": "TypedArray",
  214. "ctor": "Float64Array",
  215. "array": [
  216. 0,
  217. 0,
  218. 0,
  219. 0,
  220. 0,
  221. 0,
  222. 1,
  223. 1,
  224. 1,
  225. 1
  226. ]
  227. },
  228. "_eulerAngles": {
  229. "__type__": "cc.Vec3",
  230. "x": 0,
  231. "y": 0,
  232. "z": 0
  233. },
  234. "_skewX": 0,
  235. "_skewY": 0,
  236. "_is3DNode": true,
  237. "_groupIndex": 0,
  238. "groupIndex": 0,
  239. "_id": ""
  240. },
  241. {
  242. "__type__": "cc.MeshRenderer",
  243. "_name": "",
  244. "_objFlags": 0,
  245. "node": {
  246. "__id__": 3
  247. },
  248. "_enabled": true,
  249. "_materials": [
  250. {
  251. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  252. }
  253. ],
  254. "_mesh": {
  255. "__uuid__": "520145d7-497f-4c64-b29b-09ae6c54702c"
  256. },
  257. "_receiveShadows": false,
  258. "_shadowCastingMode": 0,
  259. "_enableAutoBatch": false,
  260. "textures": [],
  261. "_id": ""
  262. },
  263. {
  264. "__type__": "cc.PrefabInfo",
  265. "root": {
  266. "__id__": 1
  267. },
  268. "asset": {
  269. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  270. },
  271. "fileId": "8bgU6LV2xEMY3WtOOnuhkr",
  272. "sync": false
  273. },
  274. {
  275. "__type__": "cc.Node",
  276. "_name": "SM_Veh_Retro_Hover_01_Wheel_fl_Hover",
  277. "_objFlags": 0,
  278. "_parent": {
  279. "__id__": 2
  280. },
  281. "_children": [],
  282. "_active": true,
  283. "_components": [
  284. {
  285. "__id__": 7
  286. }
  287. ],
  288. "_prefab": {
  289. "__id__": 8
  290. },
  291. "_opacity": 255,
  292. "_color": {
  293. "__type__": "cc.Color",
  294. "r": 255,
  295. "g": 255,
  296. "b": 255,
  297. "a": 255
  298. },
  299. "_contentSize": {
  300. "__type__": "cc.Size",
  301. "width": 0,
  302. "height": 0
  303. },
  304. "_anchorPoint": {
  305. "__type__": "cc.Vec2",
  306. "x": 0.5,
  307. "y": 0.5
  308. },
  309. "_trs": {
  310. "__type__": "TypedArray",
  311. "ctor": "Float64Array",
  312. "array": [
  313. 0,
  314. 0,
  315. 0,
  316. 0,
  317. 0,
  318. 0,
  319. 1,
  320. 1,
  321. 1,
  322. 1
  323. ]
  324. },
  325. "_eulerAngles": {
  326. "__type__": "cc.Vec3",
  327. "x": 0,
  328. "y": 0,
  329. "z": 0
  330. },
  331. "_skewX": 0,
  332. "_skewY": 0,
  333. "_is3DNode": true,
  334. "_groupIndex": 0,
  335. "groupIndex": 0,
  336. "_id": ""
  337. },
  338. {
  339. "__type__": "cc.MeshRenderer",
  340. "_name": "",
  341. "_objFlags": 0,
  342. "node": {
  343. "__id__": 6
  344. },
  345. "_enabled": true,
  346. "_materials": [
  347. {
  348. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  349. }
  350. ],
  351. "_mesh": {
  352. "__uuid__": "8030a8f3-ff43-429e-a29b-17837ad6d395"
  353. },
  354. "_receiveShadows": false,
  355. "_shadowCastingMode": 0,
  356. "_enableAutoBatch": false,
  357. "textures": [],
  358. "_id": ""
  359. },
  360. {
  361. "__type__": "cc.PrefabInfo",
  362. "root": {
  363. "__id__": 1
  364. },
  365. "asset": {
  366. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  367. },
  368. "fileId": "bcF0upew5CwIw0TGTMzfij",
  369. "sync": false
  370. },
  371. {
  372. "__type__": "cc.Node",
  373. "_name": "SM_Veh_Retro_Fins_01_Hover",
  374. "_objFlags": 0,
  375. "_parent": {
  376. "__id__": 2
  377. },
  378. "_children": [],
  379. "_active": true,
  380. "_components": [
  381. {
  382. "__id__": 10
  383. }
  384. ],
  385. "_prefab": {
  386. "__id__": 11
  387. },
  388. "_opacity": 255,
  389. "_color": {
  390. "__type__": "cc.Color",
  391. "r": 255,
  392. "g": 255,
  393. "b": 255,
  394. "a": 255
  395. },
  396. "_contentSize": {
  397. "__type__": "cc.Size",
  398. "width": 0,
  399. "height": 0
  400. },
  401. "_anchorPoint": {
  402. "__type__": "cc.Vec2",
  403. "x": 0.5,
  404. "y": 0.5
  405. },
  406. "_trs": {
  407. "__type__": "TypedArray",
  408. "ctor": "Float64Array",
  409. "array": [
  410. 0,
  411. 0,
  412. 0,
  413. 0,
  414. 0,
  415. 0,
  416. 1,
  417. 1,
  418. 1,
  419. 1
  420. ]
  421. },
  422. "_eulerAngles": {
  423. "__type__": "cc.Vec3",
  424. "x": 0,
  425. "y": 0,
  426. "z": 0
  427. },
  428. "_skewX": 0,
  429. "_skewY": 0,
  430. "_is3DNode": true,
  431. "_groupIndex": 0,
  432. "groupIndex": 0,
  433. "_id": ""
  434. },
  435. {
  436. "__type__": "cc.MeshRenderer",
  437. "_name": "",
  438. "_objFlags": 0,
  439. "node": {
  440. "__id__": 9
  441. },
  442. "_enabled": true,
  443. "_materials": [
  444. {
  445. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  446. }
  447. ],
  448. "_mesh": {
  449. "__uuid__": "2a358fc2-fbe1-4c41-aae4-cd7e512452ee"
  450. },
  451. "_receiveShadows": false,
  452. "_shadowCastingMode": 0,
  453. "_enableAutoBatch": false,
  454. "textures": [],
  455. "_id": ""
  456. },
  457. {
  458. "__type__": "cc.PrefabInfo",
  459. "root": {
  460. "__id__": 1
  461. },
  462. "asset": {
  463. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  464. },
  465. "fileId": "95lwV0vrNNEYljyTkT/p2V",
  466. "sync": false
  467. },
  468. {
  469. "__type__": "cc.Node",
  470. "_name": "SM_Veh_Retro_01_Glass_Hover",
  471. "_objFlags": 0,
  472. "_parent": {
  473. "__id__": 2
  474. },
  475. "_children": [],
  476. "_active": true,
  477. "_components": [
  478. {
  479. "__id__": 13
  480. }
  481. ],
  482. "_prefab": {
  483. "__id__": 14
  484. },
  485. "_opacity": 255,
  486. "_color": {
  487. "__type__": "cc.Color",
  488. "r": 255,
  489. "g": 255,
  490. "b": 255,
  491. "a": 255
  492. },
  493. "_contentSize": {
  494. "__type__": "cc.Size",
  495. "width": 0,
  496. "height": 0
  497. },
  498. "_anchorPoint": {
  499. "__type__": "cc.Vec2",
  500. "x": 0.5,
  501. "y": 0.5
  502. },
  503. "_trs": {
  504. "__type__": "TypedArray",
  505. "ctor": "Float64Array",
  506. "array": [
  507. 0,
  508. 0,
  509. 0,
  510. 0,
  511. 0,
  512. 0,
  513. 1,
  514. 1,
  515. 1,
  516. 1
  517. ]
  518. },
  519. "_eulerAngles": {
  520. "__type__": "cc.Vec3",
  521. "x": 0,
  522. "y": 0,
  523. "z": 0
  524. },
  525. "_skewX": 0,
  526. "_skewY": 0,
  527. "_is3DNode": true,
  528. "_groupIndex": 0,
  529. "groupIndex": 0,
  530. "_id": ""
  531. },
  532. {
  533. "__type__": "cc.MeshRenderer",
  534. "_name": "",
  535. "_objFlags": 0,
  536. "node": {
  537. "__id__": 12
  538. },
  539. "_enabled": true,
  540. "_materials": [
  541. {
  542. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  543. }
  544. ],
  545. "_mesh": {
  546. "__uuid__": "0e6ab063-271c-4b5d-803b-a6986cc66925"
  547. },
  548. "_receiveShadows": false,
  549. "_shadowCastingMode": 0,
  550. "_enableAutoBatch": false,
  551. "textures": [],
  552. "_id": ""
  553. },
  554. {
  555. "__type__": "cc.PrefabInfo",
  556. "root": {
  557. "__id__": 1
  558. },
  559. "asset": {
  560. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  561. },
  562. "fileId": "760WZuPQZLXr3MQExv5zVb",
  563. "sync": false
  564. },
  565. {
  566. "__type__": "cc.Node",
  567. "_name": "SM_Veh_Retro_01_Door_L_Hover",
  568. "_objFlags": 0,
  569. "_parent": {
  570. "__id__": 2
  571. },
  572. "_children": [
  573. {
  574. "__id__": 16
  575. }
  576. ],
  577. "_active": true,
  578. "_components": [
  579. {
  580. "__id__": 19
  581. }
  582. ],
  583. "_prefab": {
  584. "__id__": 20
  585. },
  586. "_opacity": 255,
  587. "_color": {
  588. "__type__": "cc.Color",
  589. "r": 255,
  590. "g": 255,
  591. "b": 255,
  592. "a": 255
  593. },
  594. "_contentSize": {
  595. "__type__": "cc.Size",
  596. "width": 0,
  597. "height": 0
  598. },
  599. "_anchorPoint": {
  600. "__type__": "cc.Vec2",
  601. "x": 0.5,
  602. "y": 0.5
  603. },
  604. "_trs": {
  605. "__type__": "TypedArray",
  606. "ctor": "Float64Array",
  607. "array": [
  608. 0,
  609. 0,
  610. 0,
  611. 0,
  612. 0,
  613. 0,
  614. 1,
  615. 1,
  616. 1,
  617. 1
  618. ]
  619. },
  620. "_eulerAngles": {
  621. "__type__": "cc.Vec3",
  622. "x": 0,
  623. "y": 0,
  624. "z": 0
  625. },
  626. "_skewX": 0,
  627. "_skewY": 0,
  628. "_is3DNode": true,
  629. "_groupIndex": 0,
  630. "groupIndex": 0,
  631. "_id": ""
  632. },
  633. {
  634. "__type__": "cc.Node",
  635. "_name": "SM_Veh_Retro_01_Door_L_Glass_Hover",
  636. "_objFlags": 0,
  637. "_parent": {
  638. "__id__": 15
  639. },
  640. "_children": [],
  641. "_active": true,
  642. "_components": [
  643. {
  644. "__id__": 17
  645. }
  646. ],
  647. "_prefab": {
  648. "__id__": 18
  649. },
  650. "_opacity": 255,
  651. "_color": {
  652. "__type__": "cc.Color",
  653. "r": 255,
  654. "g": 255,
  655. "b": 255,
  656. "a": 255
  657. },
  658. "_contentSize": {
  659. "__type__": "cc.Size",
  660. "width": 0,
  661. "height": 0
  662. },
  663. "_anchorPoint": {
  664. "__type__": "cc.Vec2",
  665. "x": 0.5,
  666. "y": 0.5
  667. },
  668. "_trs": {
  669. "__type__": "TypedArray",
  670. "ctor": "Float64Array",
  671. "array": [
  672. 0,
  673. 0,
  674. 0,
  675. 0,
  676. 0,
  677. 0,
  678. 1,
  679. 1,
  680. 1,
  681. 1
  682. ]
  683. },
  684. "_eulerAngles": {
  685. "__type__": "cc.Vec3",
  686. "x": 0,
  687. "y": 0,
  688. "z": 0
  689. },
  690. "_skewX": 0,
  691. "_skewY": 0,
  692. "_is3DNode": true,
  693. "_groupIndex": 0,
  694. "groupIndex": 0,
  695. "_id": ""
  696. },
  697. {
  698. "__type__": "cc.MeshRenderer",
  699. "_name": "",
  700. "_objFlags": 0,
  701. "node": {
  702. "__id__": 16
  703. },
  704. "_enabled": true,
  705. "_materials": [
  706. {
  707. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  708. }
  709. ],
  710. "_mesh": {
  711. "__uuid__": "a68eafad-7e6d-41c7-a429-6e1865db4ebf"
  712. },
  713. "_receiveShadows": false,
  714. "_shadowCastingMode": 0,
  715. "_enableAutoBatch": false,
  716. "textures": [],
  717. "_id": ""
  718. },
  719. {
  720. "__type__": "cc.PrefabInfo",
  721. "root": {
  722. "__id__": 1
  723. },
  724. "asset": {
  725. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  726. },
  727. "fileId": "9cpXT1GzZIbYFNE49c5dO6",
  728. "sync": false
  729. },
  730. {
  731. "__type__": "cc.MeshRenderer",
  732. "_name": "",
  733. "_objFlags": 0,
  734. "node": {
  735. "__id__": 15
  736. },
  737. "_enabled": true,
  738. "_materials": [
  739. {
  740. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  741. }
  742. ],
  743. "_mesh": {
  744. "__uuid__": "5965f333-dd1a-4c3c-b120-610645d0cd3a"
  745. },
  746. "_receiveShadows": false,
  747. "_shadowCastingMode": 0,
  748. "_enableAutoBatch": false,
  749. "textures": [],
  750. "_id": ""
  751. },
  752. {
  753. "__type__": "cc.PrefabInfo",
  754. "root": {
  755. "__id__": 1
  756. },
  757. "asset": {
  758. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  759. },
  760. "fileId": "38SGHyd3tAjo19VNAkG60O",
  761. "sync": false
  762. },
  763. {
  764. "__type__": "cc.Node",
  765. "_name": "SM_Veh_Retro_01_Door_R_Hover",
  766. "_objFlags": 0,
  767. "_parent": {
  768. "__id__": 2
  769. },
  770. "_children": [
  771. {
  772. "__id__": 22
  773. }
  774. ],
  775. "_active": true,
  776. "_components": [
  777. {
  778. "__id__": 25
  779. }
  780. ],
  781. "_prefab": {
  782. "__id__": 26
  783. },
  784. "_opacity": 255,
  785. "_color": {
  786. "__type__": "cc.Color",
  787. "r": 255,
  788. "g": 255,
  789. "b": 255,
  790. "a": 255
  791. },
  792. "_contentSize": {
  793. "__type__": "cc.Size",
  794. "width": 0,
  795. "height": 0
  796. },
  797. "_anchorPoint": {
  798. "__type__": "cc.Vec2",
  799. "x": 0.5,
  800. "y": 0.5
  801. },
  802. "_trs": {
  803. "__type__": "TypedArray",
  804. "ctor": "Float64Array",
  805. "array": [
  806. 0,
  807. 0,
  808. 0,
  809. 0,
  810. 0,
  811. 0,
  812. 1,
  813. 1,
  814. 1,
  815. 1
  816. ]
  817. },
  818. "_eulerAngles": {
  819. "__type__": "cc.Vec3",
  820. "x": 0,
  821. "y": 0,
  822. "z": 0
  823. },
  824. "_skewX": 0,
  825. "_skewY": 0,
  826. "_is3DNode": true,
  827. "_groupIndex": 0,
  828. "groupIndex": 0,
  829. "_id": ""
  830. },
  831. {
  832. "__type__": "cc.Node",
  833. "_name": "SM_Veh_Retro_01_Door_R_Glass_Hover",
  834. "_objFlags": 0,
  835. "_parent": {
  836. "__id__": 21
  837. },
  838. "_children": [],
  839. "_active": true,
  840. "_components": [
  841. {
  842. "__id__": 23
  843. }
  844. ],
  845. "_prefab": {
  846. "__id__": 24
  847. },
  848. "_opacity": 255,
  849. "_color": {
  850. "__type__": "cc.Color",
  851. "r": 255,
  852. "g": 255,
  853. "b": 255,
  854. "a": 255
  855. },
  856. "_contentSize": {
  857. "__type__": "cc.Size",
  858. "width": 0,
  859. "height": 0
  860. },
  861. "_anchorPoint": {
  862. "__type__": "cc.Vec2",
  863. "x": 0.5,
  864. "y": 0.5
  865. },
  866. "_trs": {
  867. "__type__": "TypedArray",
  868. "ctor": "Float64Array",
  869. "array": [
  870. 0,
  871. 0,
  872. 0,
  873. 0,
  874. 0,
  875. 0,
  876. 1,
  877. 1,
  878. 1,
  879. 1
  880. ]
  881. },
  882. "_eulerAngles": {
  883. "__type__": "cc.Vec3",
  884. "x": 0,
  885. "y": 0,
  886. "z": 0
  887. },
  888. "_skewX": 0,
  889. "_skewY": 0,
  890. "_is3DNode": true,
  891. "_groupIndex": 0,
  892. "groupIndex": 0,
  893. "_id": ""
  894. },
  895. {
  896. "__type__": "cc.MeshRenderer",
  897. "_name": "",
  898. "_objFlags": 0,
  899. "node": {
  900. "__id__": 22
  901. },
  902. "_enabled": true,
  903. "_materials": [
  904. {
  905. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  906. }
  907. ],
  908. "_mesh": {
  909. "__uuid__": "bbb222b4-5959-455f-9979-77aff4876c8a"
  910. },
  911. "_receiveShadows": false,
  912. "_shadowCastingMode": 0,
  913. "_enableAutoBatch": false,
  914. "textures": [],
  915. "_id": ""
  916. },
  917. {
  918. "__type__": "cc.PrefabInfo",
  919. "root": {
  920. "__id__": 1
  921. },
  922. "asset": {
  923. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  924. },
  925. "fileId": "82f6/sqQ5L35Fp0gjrWOp4",
  926. "sync": false
  927. },
  928. {
  929. "__type__": "cc.MeshRenderer",
  930. "_name": "",
  931. "_objFlags": 0,
  932. "node": {
  933. "__id__": 21
  934. },
  935. "_enabled": true,
  936. "_materials": [
  937. {
  938. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  939. }
  940. ],
  941. "_mesh": {
  942. "__uuid__": "036541d0-d64f-4710-bc10-8f762671a58d"
  943. },
  944. "_receiveShadows": false,
  945. "_shadowCastingMode": 0,
  946. "_enableAutoBatch": false,
  947. "textures": [],
  948. "_id": ""
  949. },
  950. {
  951. "__type__": "cc.PrefabInfo",
  952. "root": {
  953. "__id__": 1
  954. },
  955. "asset": {
  956. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  957. },
  958. "fileId": "1097jgG81APoOn27s0SBnD",
  959. "sync": false
  960. },
  961. {
  962. "__type__": "cc.Node",
  963. "_name": "SM_Veh_Retro_Hover_01_Wheel_fr_Hover",
  964. "_objFlags": 0,
  965. "_parent": {
  966. "__id__": 2
  967. },
  968. "_children": [],
  969. "_active": true,
  970. "_components": [
  971. {
  972. "__id__": 28
  973. }
  974. ],
  975. "_prefab": {
  976. "__id__": 29
  977. },
  978. "_opacity": 255,
  979. "_color": {
  980. "__type__": "cc.Color",
  981. "r": 255,
  982. "g": 255,
  983. "b": 255,
  984. "a": 255
  985. },
  986. "_contentSize": {
  987. "__type__": "cc.Size",
  988. "width": 0,
  989. "height": 0
  990. },
  991. "_anchorPoint": {
  992. "__type__": "cc.Vec2",
  993. "x": 0.5,
  994. "y": 0.5
  995. },
  996. "_trs": {
  997. "__type__": "TypedArray",
  998. "ctor": "Float64Array",
  999. "array": [
  1000. 0,
  1001. 0,
  1002. 0,
  1003. 0,
  1004. 0,
  1005. 0,
  1006. 1,
  1007. 1,
  1008. 1,
  1009. 1
  1010. ]
  1011. },
  1012. "_eulerAngles": {
  1013. "__type__": "cc.Vec3",
  1014. "x": 0,
  1015. "y": 0,
  1016. "z": 0
  1017. },
  1018. "_skewX": 0,
  1019. "_skewY": 0,
  1020. "_is3DNode": true,
  1021. "_groupIndex": 0,
  1022. "groupIndex": 0,
  1023. "_id": ""
  1024. },
  1025. {
  1026. "__type__": "cc.MeshRenderer",
  1027. "_name": "",
  1028. "_objFlags": 0,
  1029. "node": {
  1030. "__id__": 27
  1031. },
  1032. "_enabled": true,
  1033. "_materials": [
  1034. {
  1035. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1036. }
  1037. ],
  1038. "_mesh": {
  1039. "__uuid__": "b14e37e4-8648-4965-802f-e7094f2e220d"
  1040. },
  1041. "_receiveShadows": false,
  1042. "_shadowCastingMode": 0,
  1043. "_enableAutoBatch": false,
  1044. "textures": [],
  1045. "_id": ""
  1046. },
  1047. {
  1048. "__type__": "cc.PrefabInfo",
  1049. "root": {
  1050. "__id__": 1
  1051. },
  1052. "asset": {
  1053. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1054. },
  1055. "fileId": "c6bK0D7qpE1JjZrKEMPDp7",
  1056. "sync": false
  1057. },
  1058. {
  1059. "__type__": "cc.Node",
  1060. "_name": "SM_Veh_Retro_Hover_01_Wheel_rr_Hover",
  1061. "_objFlags": 0,
  1062. "_parent": {
  1063. "__id__": 2
  1064. },
  1065. "_children": [],
  1066. "_active": true,
  1067. "_components": [
  1068. {
  1069. "__id__": 31
  1070. }
  1071. ],
  1072. "_prefab": {
  1073. "__id__": 32
  1074. },
  1075. "_opacity": 255,
  1076. "_color": {
  1077. "__type__": "cc.Color",
  1078. "r": 255,
  1079. "g": 255,
  1080. "b": 255,
  1081. "a": 255
  1082. },
  1083. "_contentSize": {
  1084. "__type__": "cc.Size",
  1085. "width": 0,
  1086. "height": 0
  1087. },
  1088. "_anchorPoint": {
  1089. "__type__": "cc.Vec2",
  1090. "x": 0.5,
  1091. "y": 0.5
  1092. },
  1093. "_trs": {
  1094. "__type__": "TypedArray",
  1095. "ctor": "Float64Array",
  1096. "array": [
  1097. 0,
  1098. 0,
  1099. 0,
  1100. 0,
  1101. 0,
  1102. 0,
  1103. 1,
  1104. 1,
  1105. 1,
  1106. 1
  1107. ]
  1108. },
  1109. "_eulerAngles": {
  1110. "__type__": "cc.Vec3",
  1111. "x": 0,
  1112. "y": 0,
  1113. "z": 0
  1114. },
  1115. "_skewX": 0,
  1116. "_skewY": 0,
  1117. "_is3DNode": true,
  1118. "_groupIndex": 0,
  1119. "groupIndex": 0,
  1120. "_id": ""
  1121. },
  1122. {
  1123. "__type__": "cc.MeshRenderer",
  1124. "_name": "",
  1125. "_objFlags": 0,
  1126. "node": {
  1127. "__id__": 30
  1128. },
  1129. "_enabled": true,
  1130. "_materials": [
  1131. {
  1132. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1133. }
  1134. ],
  1135. "_mesh": {
  1136. "__uuid__": "f52cd8d1-53fc-4a19-8d83-ea974651ebd2"
  1137. },
  1138. "_receiveShadows": false,
  1139. "_shadowCastingMode": 0,
  1140. "_enableAutoBatch": false,
  1141. "textures": [],
  1142. "_id": ""
  1143. },
  1144. {
  1145. "__type__": "cc.PrefabInfo",
  1146. "root": {
  1147. "__id__": 1
  1148. },
  1149. "asset": {
  1150. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1151. },
  1152. "fileId": "25evaeahxNBbQtSVecizgH",
  1153. "sync": false
  1154. },
  1155. {
  1156. "__type__": "cc.Node",
  1157. "_name": "SM_Veh_Retro_01_SteeringW_Hover",
  1158. "_objFlags": 0,
  1159. "_parent": {
  1160. "__id__": 2
  1161. },
  1162. "_children": [],
  1163. "_active": true,
  1164. "_components": [
  1165. {
  1166. "__id__": 34
  1167. }
  1168. ],
  1169. "_prefab": {
  1170. "__id__": 35
  1171. },
  1172. "_opacity": 255,
  1173. "_color": {
  1174. "__type__": "cc.Color",
  1175. "r": 255,
  1176. "g": 255,
  1177. "b": 255,
  1178. "a": 255
  1179. },
  1180. "_contentSize": {
  1181. "__type__": "cc.Size",
  1182. "width": 0,
  1183. "height": 0
  1184. },
  1185. "_anchorPoint": {
  1186. "__type__": "cc.Vec2",
  1187. "x": 0.5,
  1188. "y": 0.5
  1189. },
  1190. "_trs": {
  1191. "__type__": "TypedArray",
  1192. "ctor": "Float64Array",
  1193. "array": [
  1194. 0,
  1195. 0.245831727981567,
  1196. -0.413729548454285,
  1197. 0.20618481860794652,
  1198. 0,
  1199. 0,
  1200. 0.9785130661241107,
  1201. 1,
  1202. 1,
  1203. 1
  1204. ]
  1205. },
  1206. "_eulerAngles": {
  1207. "__type__": "cc.Vec3",
  1208. "x": 23.797731992332874,
  1209. "y": 0,
  1210. "z": 0
  1211. },
  1212. "_skewX": 0,
  1213. "_skewY": 0,
  1214. "_is3DNode": true,
  1215. "_groupIndex": 0,
  1216. "groupIndex": 0,
  1217. "_id": ""
  1218. },
  1219. {
  1220. "__type__": "cc.MeshRenderer",
  1221. "_name": "",
  1222. "_objFlags": 0,
  1223. "node": {
  1224. "__id__": 33
  1225. },
  1226. "_enabled": true,
  1227. "_materials": [
  1228. {
  1229. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1230. }
  1231. ],
  1232. "_mesh": {
  1233. "__uuid__": "92593536-57dc-4706-b658-2d20a4e665e7"
  1234. },
  1235. "_receiveShadows": false,
  1236. "_shadowCastingMode": 0,
  1237. "_enableAutoBatch": false,
  1238. "textures": [],
  1239. "_id": ""
  1240. },
  1241. {
  1242. "__type__": "cc.PrefabInfo",
  1243. "root": {
  1244. "__id__": 1
  1245. },
  1246. "asset": {
  1247. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1248. },
  1249. "fileId": "61t0GRLM9L5Z0maSUpTF6T",
  1250. "sync": false
  1251. },
  1252. {
  1253. "__type__": "cc.Node",
  1254. "_name": "pPlane1",
  1255. "_objFlags": 0,
  1256. "_parent": {
  1257. "__id__": 2
  1258. },
  1259. "_children": [],
  1260. "_active": true,
  1261. "_components": [
  1262. {
  1263. "__id__": 37
  1264. }
  1265. ],
  1266. "_prefab": {
  1267. "__id__": 38
  1268. },
  1269. "_opacity": 38.25,
  1270. "_color": {
  1271. "__type__": "cc.Color",
  1272. "r": 255,
  1273. "g": 255,
  1274. "b": 255,
  1275. "a": 255
  1276. },
  1277. "_contentSize": {
  1278. "__type__": "cc.Size",
  1279. "width": 0,
  1280. "height": 0
  1281. },
  1282. "_anchorPoint": {
  1283. "__type__": "cc.Vec2",
  1284. "x": 0.5,
  1285. "y": 0.5
  1286. },
  1287. "_trs": {
  1288. "__type__": "TypedArray",
  1289. "ctor": "Float64Array",
  1290. "array": [
  1291. 0,
  1292. -0.109,
  1293. -0.294,
  1294. -4.329780281177466e-17,
  1295. -0.7071067811865476,
  1296. -0.7071067811865475,
  1297. 4.329780281177467e-17,
  1298. 0.216,
  1299. 0.234,
  1300. 0.257
  1301. ]
  1302. },
  1303. "_eulerAngles": {
  1304. "__type__": "cc.Vec3",
  1305. "x": -90,
  1306. "y": -180,
  1307. "z": 0
  1308. },
  1309. "_skewX": 0,
  1310. "_skewY": 0,
  1311. "_is3DNode": true,
  1312. "_groupIndex": 0,
  1313. "groupIndex": 0,
  1314. "_id": ""
  1315. },
  1316. {
  1317. "__type__": "cc.MeshRenderer",
  1318. "_name": "",
  1319. "_objFlags": 0,
  1320. "node": {
  1321. "__id__": 36
  1322. },
  1323. "_enabled": true,
  1324. "_materials": [
  1325. {
  1326. "__uuid__": "f73ebd00-03e0-4a45-ba82-69c44f19bb7d"
  1327. }
  1328. ],
  1329. "_mesh": {
  1330. "__uuid__": "7a42e48a-88ae-4d78-a283-83c9e3007f8e"
  1331. },
  1332. "_receiveShadows": false,
  1333. "_shadowCastingMode": 0,
  1334. "_enableAutoBatch": false,
  1335. "textures": [],
  1336. "_id": ""
  1337. },
  1338. {
  1339. "__type__": "cc.PrefabInfo",
  1340. "root": {
  1341. "__id__": 1
  1342. },
  1343. "asset": {
  1344. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1345. },
  1346. "fileId": "b5FiOgzP5Kc7ceUMHde4Wm",
  1347. "sync": false
  1348. },
  1349. {
  1350. "__type__": "cc.MeshRenderer",
  1351. "_name": "",
  1352. "_objFlags": 0,
  1353. "node": {
  1354. "__id__": 2
  1355. },
  1356. "_enabled": true,
  1357. "_materials": [
  1358. {
  1359. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1360. }
  1361. ],
  1362. "_mesh": {
  1363. "__uuid__": "14d1a472-facc-452e-a6bb-03467ba35a1b"
  1364. },
  1365. "_receiveShadows": false,
  1366. "_shadowCastingMode": 0,
  1367. "_enableAutoBatch": false,
  1368. "textures": [],
  1369. "_id": ""
  1370. },
  1371. {
  1372. "__type__": "cc.PrefabInfo",
  1373. "root": {
  1374. "__id__": 1
  1375. },
  1376. "asset": {
  1377. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1378. },
  1379. "fileId": "9bOhqhJEdD/aWQ5gmJW7Ih",
  1380. "sync": false
  1381. },
  1382. {
  1383. "__type__": "cc.Node",
  1384. "_name": "Particle_101",
  1385. "_objFlags": 0,
  1386. "_parent": {
  1387. "__id__": 1
  1388. },
  1389. "_children": [],
  1390. "_active": true,
  1391. "_components": [
  1392. {
  1393. "__id__": 42
  1394. }
  1395. ],
  1396. "_prefab": {
  1397. "__id__": 68
  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. -1.693,
  1422. 0.892,
  1423. 5.73,
  1424. 0,
  1425. 0.9999646152399649,
  1426. 0,
  1427. 0.008412387769767512,
  1428. 4.93,
  1429. 4.93,
  1430. 4.93
  1431. ]
  1432. },
  1433. "_eulerAngles": {
  1434. "__type__": "cc.Vec3",
  1435. "x": 0,
  1436. "y": 179.036,
  1437. "z": 0
  1438. },
  1439. "_skewX": 0,
  1440. "_skewY": 0,
  1441. "_is3DNode": true,
  1442. "_groupIndex": 0,
  1443. "groupIndex": 0,
  1444. "_id": ""
  1445. },
  1446. {
  1447. "__type__": "cc.ParticleSystem3D",
  1448. "_name": "",
  1449. "_objFlags": 0,
  1450. "node": {
  1451. "__id__": 41
  1452. },
  1453. "_enabled": true,
  1454. "_materials": [
  1455. {
  1456. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1457. }
  1458. ],
  1459. "duration": 5,
  1460. "_capacity": 100,
  1461. "loop": true,
  1462. "playOnAwake": true,
  1463. "_prewarm": false,
  1464. "_simulationSpace": 1,
  1465. "simulationSpeed": 1,
  1466. "startDelay": {
  1467. "__id__": 43
  1468. },
  1469. "startLifetime": {
  1470. "__id__": 44
  1471. },
  1472. "startColor": {
  1473. "__id__": 45
  1474. },
  1475. "scaleSpace": 1,
  1476. "startSize": {
  1477. "__id__": 54
  1478. },
  1479. "startSpeed": {
  1480. "__id__": 55
  1481. },
  1482. "startRotation": {
  1483. "__id__": 56
  1484. },
  1485. "gravityModifier": {
  1486. "__id__": 57
  1487. },
  1488. "rateOverTime": {
  1489. "__id__": 58
  1490. },
  1491. "rateOverDistance": {
  1492. "__id__": 59
  1493. },
  1494. "bursts": [],
  1495. "_shapeModule": {
  1496. "__id__": 60
  1497. },
  1498. "_textureAnimationModule": {
  1499. "__id__": 62
  1500. },
  1501. "_renderMode": 0,
  1502. "_velocityScale": 1,
  1503. "_lengthScale": 1,
  1504. "_mesh": null,
  1505. "_id": ""
  1506. },
  1507. {
  1508. "__type__": "cc.CurveRange",
  1509. "mode": 0,
  1510. "constant": 0,
  1511. "multiplier": 1
  1512. },
  1513. {
  1514. "__type__": "cc.CurveRange",
  1515. "mode": 0,
  1516. "constant": 1,
  1517. "multiplier": 1
  1518. },
  1519. {
  1520. "__type__": "cc.GradientRange",
  1521. "_mode": 4,
  1522. "gradient": {
  1523. "__id__": 46
  1524. }
  1525. },
  1526. {
  1527. "__type__": "cc.Gradient",
  1528. "colorKeys": [
  1529. {
  1530. "__id__": 47
  1531. },
  1532. {
  1533. "__id__": 48
  1534. },
  1535. {
  1536. "__id__": 49
  1537. },
  1538. {
  1539. "__id__": 50
  1540. }
  1541. ],
  1542. "alphaKeys": [
  1543. {
  1544. "__id__": 51
  1545. },
  1546. {
  1547. "__id__": 52
  1548. },
  1549. {
  1550. "__id__": 53
  1551. }
  1552. ],
  1553. "mode": 0
  1554. },
  1555. {
  1556. "__type__": "cc.ColorKey",
  1557. "color": {
  1558. "__type__": "cc.Color",
  1559. "r": 255,
  1560. "g": 0,
  1561. "b": 186,
  1562. "a": 255
  1563. },
  1564. "time": 0
  1565. },
  1566. {
  1567. "__type__": "cc.ColorKey",
  1568. "color": {
  1569. "__type__": "cc.Color",
  1570. "r": 202,
  1571. "g": 0,
  1572. "b": 255,
  1573. "a": 255
  1574. },
  1575. "time": 0.0022727272727272726
  1576. },
  1577. {
  1578. "__type__": "cc.ColorKey",
  1579. "color": {
  1580. "__type__": "cc.Color",
  1581. "r": 255,
  1582. "g": 100,
  1583. "b": 0,
  1584. "a": 255
  1585. },
  1586. "time": 0.4772727272727273
  1587. },
  1588. {
  1589. "__type__": "cc.ColorKey",
  1590. "color": {
  1591. "__type__": "cc.Color",
  1592. "r": 255,
  1593. "g": 0,
  1594. "b": 2,
  1595. "a": 255
  1596. },
  1597. "time": 0.9931818181818182
  1598. },
  1599. {
  1600. "__type__": "cc.AlphaKey",
  1601. "alpha": 1,
  1602. "time": 0
  1603. },
  1604. {
  1605. "__type__": "cc.AlphaKey",
  1606. "alpha": 1,
  1607. "time": 0
  1608. },
  1609. {
  1610. "__type__": "cc.AlphaKey",
  1611. "alpha": 255,
  1612. "time": 0.9931818181818182
  1613. },
  1614. {
  1615. "__type__": "cc.CurveRange",
  1616. "mode": 3,
  1617. "constantMin": 0.5,
  1618. "constantMax": 1.5,
  1619. "multiplier": 1
  1620. },
  1621. {
  1622. "__type__": "cc.CurveRange",
  1623. "mode": 0,
  1624. "constant": 2,
  1625. "multiplier": 1
  1626. },
  1627. {
  1628. "__type__": "cc.CurveRange",
  1629. "mode": 0,
  1630. "constant": 0,
  1631. "multiplier": 1
  1632. },
  1633. {
  1634. "__type__": "cc.CurveRange",
  1635. "mode": 0,
  1636. "constant": 0,
  1637. "multiplier": 1
  1638. },
  1639. {
  1640. "__type__": "cc.CurveRange",
  1641. "mode": 0,
  1642. "constant": 22,
  1643. "multiplier": 1
  1644. },
  1645. {
  1646. "__type__": "cc.CurveRange",
  1647. "mode": 0,
  1648. "constant": 0,
  1649. "multiplier": 1
  1650. },
  1651. {
  1652. "__type__": "cc.ShapeModule",
  1653. "enable": true,
  1654. "_shapeType": 2,
  1655. "emitFrom": 0,
  1656. "radius": 0.05,
  1657. "radiusThickness": 1,
  1658. "_angle": 0.06981317007977318,
  1659. "_arc": 6.283185307179586,
  1660. "arcMode": 0,
  1661. "arcSpread": 0,
  1662. "arcSpeed": {
  1663. "__id__": 61
  1664. },
  1665. "length": 2,
  1666. "boxThickness": {
  1667. "__type__": "cc.Vec3",
  1668. "x": 0,
  1669. "y": 0,
  1670. "z": 0
  1671. },
  1672. "_position": {
  1673. "__type__": "cc.Vec3",
  1674. "x": 0,
  1675. "y": 0,
  1676. "z": 0
  1677. },
  1678. "_rotation": {
  1679. "__type__": "cc.Vec3",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0
  1683. },
  1684. "_scale": {
  1685. "__type__": "cc.Vec3",
  1686. "x": 1,
  1687. "y": 1,
  1688. "z": 1
  1689. },
  1690. "alignToDirection": false,
  1691. "randomDirectionAmount": 0,
  1692. "sphericalDirectionAmount": 0,
  1693. "randomPositionAmount": 0
  1694. },
  1695. {
  1696. "__type__": "cc.CurveRange",
  1697. "mode": 0,
  1698. "constant": 1,
  1699. "multiplier": 1
  1700. },
  1701. {
  1702. "__type__": "cc.TextureAnimationModule",
  1703. "_enable": true,
  1704. "_mode": 0,
  1705. "numTilesX": 4,
  1706. "numTilesY": 1,
  1707. "animation": 0,
  1708. "randomRow": false,
  1709. "rowIndex": 0,
  1710. "frameOverTime": {
  1711. "__id__": 63
  1712. },
  1713. "startFrame": {
  1714. "__id__": 67
  1715. },
  1716. "cycleCount": 1
  1717. },
  1718. {
  1719. "__type__": "cc.CurveRange",
  1720. "mode": 1,
  1721. "curve": {
  1722. "__id__": 64
  1723. },
  1724. "multiplier": 1
  1725. },
  1726. {
  1727. "__type__": "cc.AnimationCurve",
  1728. "keyFrames": [
  1729. {
  1730. "__id__": 65
  1731. },
  1732. {
  1733. "__id__": 66
  1734. }
  1735. ],
  1736. "preWrapMode": 2,
  1737. "postWrapMode": 2
  1738. },
  1739. {
  1740. "__type__": "cc.Keyframe",
  1741. "time": 0,
  1742. "value": 1,
  1743. "inTangent": 0,
  1744. "outTangent": 0
  1745. },
  1746. {
  1747. "__type__": "cc.Keyframe",
  1748. "time": 1,
  1749. "value": 1,
  1750. "inTangent": 0,
  1751. "outTangent": 0
  1752. },
  1753. {
  1754. "__type__": "cc.CurveRange",
  1755. "mode": 0,
  1756. "constant": 0,
  1757. "multiplier": 1
  1758. },
  1759. {
  1760. "__type__": "cc.PrefabInfo",
  1761. "root": {
  1762. "__id__": 1
  1763. },
  1764. "asset": {
  1765. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1766. },
  1767. "fileId": "ed0p2N8g1PEZHZWG1tB5Ay",
  1768. "sync": false
  1769. },
  1770. {
  1771. "__type__": "cc.Node",
  1772. "_name": "Particle_101 copy",
  1773. "_objFlags": 0,
  1774. "_parent": {
  1775. "__id__": 1
  1776. },
  1777. "_children": [],
  1778. "_active": true,
  1779. "_components": [
  1780. {
  1781. "__id__": 70
  1782. }
  1783. ],
  1784. "_prefab": {
  1785. "__id__": 96
  1786. },
  1787. "_opacity": 255,
  1788. "_color": {
  1789. "__type__": "cc.Color",
  1790. "r": 255,
  1791. "g": 255,
  1792. "b": 255,
  1793. "a": 255
  1794. },
  1795. "_contentSize": {
  1796. "__type__": "cc.Size",
  1797. "width": 0,
  1798. "height": 0
  1799. },
  1800. "_anchorPoint": {
  1801. "__type__": "cc.Vec2",
  1802. "x": 0.5,
  1803. "y": 0.5
  1804. },
  1805. "_trs": {
  1806. "__type__": "TypedArray",
  1807. "ctor": "Float64Array",
  1808. "array": [
  1809. 1.477,
  1810. 0.892,
  1811. 5.783,
  1812. 0,
  1813. 0.9999646152399649,
  1814. 0,
  1815. 0.008412387769767512,
  1816. 4.93,
  1817. 4.93,
  1818. 4.93
  1819. ]
  1820. },
  1821. "_eulerAngles": {
  1822. "__type__": "cc.Vec3",
  1823. "x": 0,
  1824. "y": 179.036,
  1825. "z": 0
  1826. },
  1827. "_skewX": 0,
  1828. "_skewY": 0,
  1829. "_is3DNode": true,
  1830. "_groupIndex": 0,
  1831. "groupIndex": 0,
  1832. "_id": ""
  1833. },
  1834. {
  1835. "__type__": "cc.ParticleSystem3D",
  1836. "_name": "",
  1837. "_objFlags": 0,
  1838. "node": {
  1839. "__id__": 69
  1840. },
  1841. "_enabled": true,
  1842. "_materials": [
  1843. {
  1844. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1845. }
  1846. ],
  1847. "duration": 5,
  1848. "_capacity": 100,
  1849. "loop": true,
  1850. "playOnAwake": true,
  1851. "_prewarm": false,
  1852. "_simulationSpace": 1,
  1853. "simulationSpeed": 1,
  1854. "startDelay": {
  1855. "__id__": 71
  1856. },
  1857. "startLifetime": {
  1858. "__id__": 72
  1859. },
  1860. "startColor": {
  1861. "__id__": 73
  1862. },
  1863. "scaleSpace": 1,
  1864. "startSize": {
  1865. "__id__": 82
  1866. },
  1867. "startSpeed": {
  1868. "__id__": 83
  1869. },
  1870. "startRotation": {
  1871. "__id__": 84
  1872. },
  1873. "gravityModifier": {
  1874. "__id__": 85
  1875. },
  1876. "rateOverTime": {
  1877. "__id__": 86
  1878. },
  1879. "rateOverDistance": {
  1880. "__id__": 87
  1881. },
  1882. "bursts": [],
  1883. "_shapeModule": {
  1884. "__id__": 88
  1885. },
  1886. "_textureAnimationModule": {
  1887. "__id__": 90
  1888. },
  1889. "_renderMode": 0,
  1890. "_velocityScale": 1,
  1891. "_lengthScale": 1,
  1892. "_mesh": null,
  1893. "_id": ""
  1894. },
  1895. {
  1896. "__type__": "cc.CurveRange",
  1897. "mode": 0,
  1898. "constant": 0,
  1899. "multiplier": 1
  1900. },
  1901. {
  1902. "__type__": "cc.CurveRange",
  1903. "mode": 0,
  1904. "constant": 1,
  1905. "multiplier": 1
  1906. },
  1907. {
  1908. "__type__": "cc.GradientRange",
  1909. "_mode": 4,
  1910. "gradient": {
  1911. "__id__": 74
  1912. }
  1913. },
  1914. {
  1915. "__type__": "cc.Gradient",
  1916. "colorKeys": [
  1917. {
  1918. "__id__": 75
  1919. },
  1920. {
  1921. "__id__": 76
  1922. },
  1923. {
  1924. "__id__": 77
  1925. },
  1926. {
  1927. "__id__": 78
  1928. }
  1929. ],
  1930. "alphaKeys": [
  1931. {
  1932. "__id__": 79
  1933. },
  1934. {
  1935. "__id__": 80
  1936. },
  1937. {
  1938. "__id__": 81
  1939. }
  1940. ],
  1941. "mode": 0
  1942. },
  1943. {
  1944. "__type__": "cc.ColorKey",
  1945. "color": {
  1946. "__type__": "cc.Color",
  1947. "r": 255,
  1948. "g": 0,
  1949. "b": 186,
  1950. "a": 255
  1951. },
  1952. "time": 0
  1953. },
  1954. {
  1955. "__type__": "cc.ColorKey",
  1956. "color": {
  1957. "__type__": "cc.Color",
  1958. "r": 202,
  1959. "g": 0,
  1960. "b": 255,
  1961. "a": 255
  1962. },
  1963. "time": 0.0022727272727272726
  1964. },
  1965. {
  1966. "__type__": "cc.ColorKey",
  1967. "color": {
  1968. "__type__": "cc.Color",
  1969. "r": 255,
  1970. "g": 100,
  1971. "b": 0,
  1972. "a": 255
  1973. },
  1974. "time": 0.4772727272727273
  1975. },
  1976. {
  1977. "__type__": "cc.ColorKey",
  1978. "color": {
  1979. "__type__": "cc.Color",
  1980. "r": 255,
  1981. "g": 0,
  1982. "b": 2,
  1983. "a": 255
  1984. },
  1985. "time": 0.9931818181818182
  1986. },
  1987. {
  1988. "__type__": "cc.AlphaKey",
  1989. "alpha": 1,
  1990. "time": 0
  1991. },
  1992. {
  1993. "__type__": "cc.AlphaKey",
  1994. "alpha": 1,
  1995. "time": 0
  1996. },
  1997. {
  1998. "__type__": "cc.AlphaKey",
  1999. "alpha": 255,
  2000. "time": 0.9931818181818182
  2001. },
  2002. {
  2003. "__type__": "cc.CurveRange",
  2004. "mode": 3,
  2005. "constantMin": 0.5,
  2006. "constantMax": 1.5,
  2007. "multiplier": 1
  2008. },
  2009. {
  2010. "__type__": "cc.CurveRange",
  2011. "mode": 0,
  2012. "constant": 2,
  2013. "multiplier": 1
  2014. },
  2015. {
  2016. "__type__": "cc.CurveRange",
  2017. "mode": 0,
  2018. "constant": 0,
  2019. "multiplier": 1
  2020. },
  2021. {
  2022. "__type__": "cc.CurveRange",
  2023. "mode": 0,
  2024. "constant": 0,
  2025. "multiplier": 1
  2026. },
  2027. {
  2028. "__type__": "cc.CurveRange",
  2029. "mode": 0,
  2030. "constant": 22,
  2031. "multiplier": 1
  2032. },
  2033. {
  2034. "__type__": "cc.CurveRange",
  2035. "mode": 0,
  2036. "constant": 0,
  2037. "multiplier": 1
  2038. },
  2039. {
  2040. "__type__": "cc.ShapeModule",
  2041. "enable": true,
  2042. "_shapeType": 2,
  2043. "emitFrom": 0,
  2044. "radius": 0.05,
  2045. "radiusThickness": 1,
  2046. "_angle": 0.06981317007977318,
  2047. "_arc": 6.283185307179586,
  2048. "arcMode": 0,
  2049. "arcSpread": 0,
  2050. "arcSpeed": {
  2051. "__id__": 89
  2052. },
  2053. "length": 2,
  2054. "boxThickness": {
  2055. "__type__": "cc.Vec3",
  2056. "x": 0,
  2057. "y": 0,
  2058. "z": 0
  2059. },
  2060. "_position": {
  2061. "__type__": "cc.Vec3",
  2062. "x": 0,
  2063. "y": 0,
  2064. "z": 0
  2065. },
  2066. "_rotation": {
  2067. "__type__": "cc.Vec3",
  2068. "x": 0,
  2069. "y": 0,
  2070. "z": 0
  2071. },
  2072. "_scale": {
  2073. "__type__": "cc.Vec3",
  2074. "x": 1,
  2075. "y": 1,
  2076. "z": 1
  2077. },
  2078. "alignToDirection": false,
  2079. "randomDirectionAmount": 0,
  2080. "sphericalDirectionAmount": 0,
  2081. "randomPositionAmount": 0
  2082. },
  2083. {
  2084. "__type__": "cc.CurveRange",
  2085. "mode": 0,
  2086. "constant": 1,
  2087. "multiplier": 1
  2088. },
  2089. {
  2090. "__type__": "cc.TextureAnimationModule",
  2091. "_enable": true,
  2092. "_mode": 0,
  2093. "numTilesX": 4,
  2094. "numTilesY": 1,
  2095. "animation": 0,
  2096. "randomRow": false,
  2097. "rowIndex": 0,
  2098. "frameOverTime": {
  2099. "__id__": 91
  2100. },
  2101. "startFrame": {
  2102. "__id__": 95
  2103. },
  2104. "cycleCount": 1
  2105. },
  2106. {
  2107. "__type__": "cc.CurveRange",
  2108. "mode": 1,
  2109. "curve": {
  2110. "__id__": 92
  2111. },
  2112. "multiplier": 1
  2113. },
  2114. {
  2115. "__type__": "cc.AnimationCurve",
  2116. "keyFrames": [
  2117. {
  2118. "__id__": 93
  2119. },
  2120. {
  2121. "__id__": 94
  2122. }
  2123. ],
  2124. "preWrapMode": 2,
  2125. "postWrapMode": 2
  2126. },
  2127. {
  2128. "__type__": "cc.Keyframe",
  2129. "time": 0,
  2130. "value": 1,
  2131. "inTangent": 0,
  2132. "outTangent": 0
  2133. },
  2134. {
  2135. "__type__": "cc.Keyframe",
  2136. "time": 1,
  2137. "value": 1,
  2138. "inTangent": 0,
  2139. "outTangent": 0
  2140. },
  2141. {
  2142. "__type__": "cc.CurveRange",
  2143. "mode": 0,
  2144. "constant": 0,
  2145. "multiplier": 1
  2146. },
  2147. {
  2148. "__type__": "cc.PrefabInfo",
  2149. "root": {
  2150. "__id__": 1
  2151. },
  2152. "asset": {
  2153. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2154. },
  2155. "fileId": "d3UmEHCSZBOIXBOGutJU4c",
  2156. "sync": false
  2157. },
  2158. {
  2159. "__type__": "cc.PrefabInfo",
  2160. "root": {
  2161. "__id__": 1
  2162. },
  2163. "asset": {
  2164. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2165. },
  2166. "fileId": "964WDEQiFCUpvmEqONj2zj",
  2167. "sync": false
  2168. }
  2169. ]