Car_102.prefab 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418
  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__": 106
  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.2,
  157. 1.2,
  158. 1.2
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 180,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": true,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Node",
  176. "_name": "SM_Veh_Retro_Hover_01_Wheel_rl_Hover",
  177. "_objFlags": 0,
  178. "_parent": {
  179. "__id__": 2
  180. },
  181. "_children": [],
  182. "_active": true,
  183. "_components": [
  184. {
  185. "__id__": 4
  186. }
  187. ],
  188. "_prefab": {
  189. "__id__": 5
  190. },
  191. "_opacity": 255,
  192. "_color": {
  193. "__type__": "cc.Color",
  194. "r": 255,
  195. "g": 255,
  196. "b": 255,
  197. "a": 255
  198. },
  199. "_contentSize": {
  200. "__type__": "cc.Size",
  201. "width": 0,
  202. "height": 0
  203. },
  204. "_anchorPoint": {
  205. "__type__": "cc.Vec2",
  206. "x": 0.5,
  207. "y": 0.5
  208. },
  209. "_trs": {
  210. "__type__": "TypedArray",
  211. "ctor": "Float64Array",
  212. "array": [
  213. 0,
  214. 0,
  215. 0,
  216. 0,
  217. 0,
  218. 0,
  219. 1,
  220. 1,
  221. 1,
  222. 1
  223. ]
  224. },
  225. "_eulerAngles": {
  226. "__type__": "cc.Vec3",
  227. "x": 0,
  228. "y": 0,
  229. "z": 0
  230. },
  231. "_skewX": 0,
  232. "_skewY": 0,
  233. "_is3DNode": true,
  234. "_groupIndex": 0,
  235. "groupIndex": 0,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.MeshRenderer",
  240. "_name": "",
  241. "_objFlags": 0,
  242. "node": {
  243. "__id__": 3
  244. },
  245. "_enabled": true,
  246. "_materials": [
  247. {
  248. "__uuid__": "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__": 59
  1392. },
  1393. {
  1394. "__id__": 76
  1395. }
  1396. ],
  1397. "_active": true,
  1398. "_components": [],
  1399. "_prefab": {
  1400. "__id__": 105
  1401. },
  1402. "_opacity": 255,
  1403. "_color": {
  1404. "__type__": "cc.Color",
  1405. "r": 255,
  1406. "g": 255,
  1407. "b": 255,
  1408. "a": 255
  1409. },
  1410. "_contentSize": {
  1411. "__type__": "cc.Size",
  1412. "width": 0,
  1413. "height": 0
  1414. },
  1415. "_anchorPoint": {
  1416. "__type__": "cc.Vec2",
  1417. "x": 0.5,
  1418. "y": 0.5
  1419. },
  1420. "_trs": {
  1421. "__type__": "TypedArray",
  1422. "ctor": "Float64Array",
  1423. "array": [
  1424. 0,
  1425. -0.00001,
  1426. 0,
  1427. 0,
  1428. 0,
  1429. 0,
  1430. 1,
  1431. 1.00001,
  1432. 1.00001,
  1433. 1.00001
  1434. ]
  1435. },
  1436. "_eulerAngles": {
  1437. "__type__": "cc.Vec3",
  1438. "x": 0,
  1439. "y": 0,
  1440. "z": 0
  1441. },
  1442. "_skewX": 0,
  1443. "_skewY": 0,
  1444. "_is3DNode": true,
  1445. "_groupIndex": 0,
  1446. "groupIndex": 0,
  1447. "_id": ""
  1448. },
  1449. {
  1450. "__type__": "cc.Node",
  1451. "_name": "Particle_102_2",
  1452. "_objFlags": 0,
  1453. "_parent": {
  1454. "__id__": 41
  1455. },
  1456. "_children": [],
  1457. "_active": true,
  1458. "_components": [
  1459. {
  1460. "__id__": 43
  1461. }
  1462. ],
  1463. "_prefab": {
  1464. "__id__": 58
  1465. },
  1466. "_opacity": 255,
  1467. "_color": {
  1468. "__type__": "cc.Color",
  1469. "r": 255,
  1470. "g": 255,
  1471. "b": 255,
  1472. "a": 255
  1473. },
  1474. "_contentSize": {
  1475. "__type__": "cc.Size",
  1476. "width": 0,
  1477. "height": 0
  1478. },
  1479. "_anchorPoint": {
  1480. "__type__": "cc.Vec2",
  1481. "x": 0.5,
  1482. "y": 0.5
  1483. },
  1484. "_trs": {
  1485. "__type__": "TypedArray",
  1486. "ctor": "Float64Array",
  1487. "array": [
  1488. -1.24,
  1489. 0.374,
  1490. 2.979,
  1491. 0.17862480198447916,
  1492. 0.7661545877851637,
  1493. 0.5955313314664984,
  1494. 0.16261230265109328,
  1495. 2.5,
  1496. 2.5,
  1497. 2.5
  1498. ]
  1499. },
  1500. "_eulerAngles": {
  1501. "__type__": "cc.Vec3",
  1502. "x": -75.13,
  1503. "y": 177.639,
  1504. "z": 27.865
  1505. },
  1506. "_skewX": 0,
  1507. "_skewY": 0,
  1508. "_is3DNode": true,
  1509. "_groupIndex": 0,
  1510. "groupIndex": 0,
  1511. "_id": ""
  1512. },
  1513. {
  1514. "__type__": "cc.ParticleSystem3D",
  1515. "_name": "",
  1516. "_objFlags": 0,
  1517. "node": {
  1518. "__id__": 42
  1519. },
  1520. "_enabled": true,
  1521. "_materials": [
  1522. {
  1523. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1524. }
  1525. ],
  1526. "duration": 5,
  1527. "_capacity": 1000,
  1528. "loop": true,
  1529. "playOnAwake": true,
  1530. "_prewarm": false,
  1531. "_simulationSpace": 1,
  1532. "simulationSpeed": 1,
  1533. "startDelay": {
  1534. "__id__": 44
  1535. },
  1536. "startLifetime": {
  1537. "__id__": 45
  1538. },
  1539. "startColor": {
  1540. "__id__": 46
  1541. },
  1542. "scaleSpace": 1,
  1543. "startSize": {
  1544. "__id__": 47
  1545. },
  1546. "startSpeed": {
  1547. "__id__": 48
  1548. },
  1549. "startRotation": {
  1550. "__id__": 49
  1551. },
  1552. "gravityModifier": {
  1553. "__id__": 50
  1554. },
  1555. "rateOverTime": {
  1556. "__id__": 51
  1557. },
  1558. "rateOverDistance": {
  1559. "__id__": 52
  1560. },
  1561. "bursts": [],
  1562. "_shapeModule": {
  1563. "__id__": 53
  1564. },
  1565. "_textureAnimationModule": {
  1566. "__id__": 55
  1567. },
  1568. "_renderMode": 0,
  1569. "_velocityScale": 1,
  1570. "_lengthScale": 1,
  1571. "_mesh": null,
  1572. "_id": ""
  1573. },
  1574. {
  1575. "__type__": "cc.CurveRange",
  1576. "mode": 0,
  1577. "constant": 0,
  1578. "multiplier": 1
  1579. },
  1580. {
  1581. "__type__": "cc.CurveRange",
  1582. "mode": 0,
  1583. "constant": 0.01,
  1584. "multiplier": 1
  1585. },
  1586. {
  1587. "__type__": "cc.GradientRange",
  1588. "_mode": 0,
  1589. "color": {
  1590. "__type__": "cc.Color",
  1591. "r": 32,
  1592. "g": 157,
  1593. "b": 255,
  1594. "a": 255
  1595. }
  1596. },
  1597. {
  1598. "__type__": "cc.CurveRange",
  1599. "mode": 3,
  1600. "constantMin": 0.2,
  1601. "constantMax": 0.5,
  1602. "multiplier": 1
  1603. },
  1604. {
  1605. "__type__": "cc.CurveRange",
  1606. "mode": 0,
  1607. "constant": 0.01,
  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": 0,
  1620. "multiplier": 1
  1621. },
  1622. {
  1623. "__type__": "cc.CurveRange",
  1624. "mode": 0,
  1625. "constant": 5000,
  1626. "multiplier": 1
  1627. },
  1628. {
  1629. "__type__": "cc.CurveRange",
  1630. "mode": 0,
  1631. "constant": 0,
  1632. "multiplier": 1
  1633. },
  1634. {
  1635. "__type__": "cc.ShapeModule",
  1636. "enable": true,
  1637. "_shapeType": 2,
  1638. "emitFrom": 0,
  1639. "radius": 0.1,
  1640. "radiusThickness": 1,
  1641. "_angle": 0.06981317007977318,
  1642. "_arc": 6.283185307179586,
  1643. "arcMode": 0,
  1644. "arcSpread": 0,
  1645. "arcSpeed": {
  1646. "__id__": 54
  1647. },
  1648. "length": 2,
  1649. "boxThickness": {
  1650. "__type__": "cc.Vec3",
  1651. "x": 0,
  1652. "y": 0,
  1653. "z": 0
  1654. },
  1655. "_position": {
  1656. "__type__": "cc.Vec3",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0
  1660. },
  1661. "_rotation": {
  1662. "__type__": "cc.Vec3",
  1663. "x": 0,
  1664. "y": 0,
  1665. "z": 0
  1666. },
  1667. "_scale": {
  1668. "__type__": "cc.Vec3",
  1669. "x": 1,
  1670. "y": 1,
  1671. "z": 1
  1672. },
  1673. "alignToDirection": false,
  1674. "randomDirectionAmount": 0,
  1675. "sphericalDirectionAmount": 0,
  1676. "randomPositionAmount": 0
  1677. },
  1678. {
  1679. "__type__": "cc.CurveRange",
  1680. "mode": 0,
  1681. "constant": 1,
  1682. "multiplier": 1
  1683. },
  1684. {
  1685. "__type__": "cc.TextureAnimationModule",
  1686. "_enable": true,
  1687. "_mode": 0,
  1688. "numTilesX": 4,
  1689. "numTilesY": 1,
  1690. "animation": 0,
  1691. "randomRow": false,
  1692. "rowIndex": 0,
  1693. "frameOverTime": {
  1694. "__id__": 56
  1695. },
  1696. "startFrame": {
  1697. "__id__": 57
  1698. },
  1699. "cycleCount": 1
  1700. },
  1701. {
  1702. "__type__": "cc.CurveRange",
  1703. "mode": 0,
  1704. "constant": 0,
  1705. "multiplier": 1
  1706. },
  1707. {
  1708. "__type__": "cc.CurveRange",
  1709. "mode": 0,
  1710. "constant": 0,
  1711. "multiplier": 1
  1712. },
  1713. {
  1714. "__type__": "cc.PrefabInfo",
  1715. "root": {
  1716. "__id__": 1
  1717. },
  1718. "asset": {
  1719. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1720. },
  1721. "fileId": "56SR4URwpMYpuofuB1b+Fz",
  1722. "sync": false
  1723. },
  1724. {
  1725. "__type__": "cc.Node",
  1726. "_name": "Particle_102_2 copy",
  1727. "_objFlags": 0,
  1728. "_parent": {
  1729. "__id__": 41
  1730. },
  1731. "_children": [],
  1732. "_active": true,
  1733. "_components": [
  1734. {
  1735. "__id__": 60
  1736. }
  1737. ],
  1738. "_prefab": {
  1739. "__id__": 75
  1740. },
  1741. "_opacity": 255,
  1742. "_color": {
  1743. "__type__": "cc.Color",
  1744. "r": 255,
  1745. "g": 255,
  1746. "b": 255,
  1747. "a": 255
  1748. },
  1749. "_contentSize": {
  1750. "__type__": "cc.Size",
  1751. "width": 0,
  1752. "height": 0
  1753. },
  1754. "_anchorPoint": {
  1755. "__type__": "cc.Vec2",
  1756. "x": 0.5,
  1757. "y": 0.5
  1758. },
  1759. "_trs": {
  1760. "__type__": "TypedArray",
  1761. "ctor": "Float64Array",
  1762. "array": [
  1763. 1.469,
  1764. 0.338,
  1765. 2.751,
  1766. 0.10284279189869969,
  1767. -0.7591723647750526,
  1768. -0.613179590427999,
  1769. 0.19259146034777083,
  1770. 2.5,
  1771. 2.5,
  1772. 2.5
  1773. ]
  1774. },
  1775. "_eulerAngles": {
  1776. "__type__": "cc.Vec3",
  1777. "x": -75.721,
  1778. "y": -169.584,
  1779. "z": -23.1
  1780. },
  1781. "_skewX": 0,
  1782. "_skewY": 0,
  1783. "_is3DNode": true,
  1784. "_groupIndex": 0,
  1785. "groupIndex": 0,
  1786. "_id": ""
  1787. },
  1788. {
  1789. "__type__": "cc.ParticleSystem3D",
  1790. "_name": "",
  1791. "_objFlags": 0,
  1792. "node": {
  1793. "__id__": 59
  1794. },
  1795. "_enabled": true,
  1796. "_materials": [
  1797. {
  1798. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1799. }
  1800. ],
  1801. "duration": 5,
  1802. "_capacity": 1000,
  1803. "loop": true,
  1804. "playOnAwake": true,
  1805. "_prewarm": false,
  1806. "_simulationSpace": 1,
  1807. "simulationSpeed": 1,
  1808. "startDelay": {
  1809. "__id__": 61
  1810. },
  1811. "startLifetime": {
  1812. "__id__": 62
  1813. },
  1814. "startColor": {
  1815. "__id__": 63
  1816. },
  1817. "scaleSpace": 1,
  1818. "startSize": {
  1819. "__id__": 64
  1820. },
  1821. "startSpeed": {
  1822. "__id__": 65
  1823. },
  1824. "startRotation": {
  1825. "__id__": 66
  1826. },
  1827. "gravityModifier": {
  1828. "__id__": 67
  1829. },
  1830. "rateOverTime": {
  1831. "__id__": 68
  1832. },
  1833. "rateOverDistance": {
  1834. "__id__": 69
  1835. },
  1836. "bursts": [],
  1837. "_shapeModule": {
  1838. "__id__": 70
  1839. },
  1840. "_textureAnimationModule": {
  1841. "__id__": 72
  1842. },
  1843. "_renderMode": 0,
  1844. "_velocityScale": 1,
  1845. "_lengthScale": 1,
  1846. "_mesh": null,
  1847. "_id": ""
  1848. },
  1849. {
  1850. "__type__": "cc.CurveRange",
  1851. "mode": 0,
  1852. "constant": 0,
  1853. "multiplier": 1
  1854. },
  1855. {
  1856. "__type__": "cc.CurveRange",
  1857. "mode": 0,
  1858. "constant": 0.01,
  1859. "multiplier": 1
  1860. },
  1861. {
  1862. "__type__": "cc.GradientRange",
  1863. "_mode": 0,
  1864. "color": {
  1865. "__type__": "cc.Color",
  1866. "r": 32,
  1867. "g": 157,
  1868. "b": 255,
  1869. "a": 255
  1870. }
  1871. },
  1872. {
  1873. "__type__": "cc.CurveRange",
  1874. "mode": 3,
  1875. "constantMin": 0.2,
  1876. "constantMax": 0.5,
  1877. "multiplier": 1
  1878. },
  1879. {
  1880. "__type__": "cc.CurveRange",
  1881. "mode": 0,
  1882. "constant": 0.01,
  1883. "multiplier": 1
  1884. },
  1885. {
  1886. "__type__": "cc.CurveRange",
  1887. "mode": 0,
  1888. "constant": 0,
  1889. "multiplier": 1
  1890. },
  1891. {
  1892. "__type__": "cc.CurveRange",
  1893. "mode": 0,
  1894. "constant": 0,
  1895. "multiplier": 1
  1896. },
  1897. {
  1898. "__type__": "cc.CurveRange",
  1899. "mode": 0,
  1900. "constant": 5000,
  1901. "multiplier": 1
  1902. },
  1903. {
  1904. "__type__": "cc.CurveRange",
  1905. "mode": 0,
  1906. "constant": 0,
  1907. "multiplier": 1
  1908. },
  1909. {
  1910. "__type__": "cc.ShapeModule",
  1911. "enable": true,
  1912. "_shapeType": 2,
  1913. "emitFrom": 0,
  1914. "radius": 0.1,
  1915. "radiusThickness": 1,
  1916. "_angle": 0.06981317007977318,
  1917. "_arc": 6.283185307179586,
  1918. "arcMode": 0,
  1919. "arcSpread": 0,
  1920. "arcSpeed": {
  1921. "__id__": 71
  1922. },
  1923. "length": 2,
  1924. "boxThickness": {
  1925. "__type__": "cc.Vec3",
  1926. "x": 0,
  1927. "y": 0,
  1928. "z": 0
  1929. },
  1930. "_position": {
  1931. "__type__": "cc.Vec3",
  1932. "x": 0,
  1933. "y": 0,
  1934. "z": 0
  1935. },
  1936. "_rotation": {
  1937. "__type__": "cc.Vec3",
  1938. "x": 0,
  1939. "y": 0,
  1940. "z": 0
  1941. },
  1942. "_scale": {
  1943. "__type__": "cc.Vec3",
  1944. "x": 1,
  1945. "y": 1,
  1946. "z": 1
  1947. },
  1948. "alignToDirection": false,
  1949. "randomDirectionAmount": 0,
  1950. "sphericalDirectionAmount": 0,
  1951. "randomPositionAmount": 0
  1952. },
  1953. {
  1954. "__type__": "cc.CurveRange",
  1955. "mode": 0,
  1956. "constant": 1,
  1957. "multiplier": 1
  1958. },
  1959. {
  1960. "__type__": "cc.TextureAnimationModule",
  1961. "_enable": true,
  1962. "_mode": 0,
  1963. "numTilesX": 4,
  1964. "numTilesY": 1,
  1965. "animation": 0,
  1966. "randomRow": false,
  1967. "rowIndex": 0,
  1968. "frameOverTime": {
  1969. "__id__": 73
  1970. },
  1971. "startFrame": {
  1972. "__id__": 74
  1973. },
  1974. "cycleCount": 0
  1975. },
  1976. {
  1977. "__type__": "cc.CurveRange",
  1978. "mode": 3,
  1979. "constantMin": 0,
  1980. "constantMax": 1,
  1981. "multiplier": 1
  1982. },
  1983. {
  1984. "__type__": "cc.CurveRange",
  1985. "mode": 0,
  1986. "constant": 0,
  1987. "multiplier": 1
  1988. },
  1989. {
  1990. "__type__": "cc.PrefabInfo",
  1991. "root": {
  1992. "__id__": 1
  1993. },
  1994. "asset": {
  1995. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  1996. },
  1997. "fileId": "82CqyR5StM5bfLMGmi78YF",
  1998. "sync": false
  1999. },
  2000. {
  2001. "__type__": "cc.Node",
  2002. "_name": "Particle_101",
  2003. "_objFlags": 0,
  2004. "_parent": {
  2005. "__id__": 41
  2006. },
  2007. "_children": [],
  2008. "_active": true,
  2009. "_components": [
  2010. {
  2011. "__id__": 77
  2012. }
  2013. ],
  2014. "_prefab": {
  2015. "__id__": 104
  2016. },
  2017. "_opacity": 255,
  2018. "_color": {
  2019. "__type__": "cc.Color",
  2020. "r": 255,
  2021. "g": 255,
  2022. "b": 255,
  2023. "a": 255
  2024. },
  2025. "_contentSize": {
  2026. "__type__": "cc.Size",
  2027. "width": 0,
  2028. "height": 0
  2029. },
  2030. "_anchorPoint": {
  2031. "__type__": "cc.Vec2",
  2032. "x": 0.5,
  2033. "y": 0.5
  2034. },
  2035. "_trs": {
  2036. "__type__": "TypedArray",
  2037. "ctor": "Float64Array",
  2038. "array": [
  2039. 0.001,
  2040. 0.562,
  2041. 3.324,
  2042. 0,
  2043. 0.9999646152399649,
  2044. 0,
  2045. 0.008412387769767512,
  2046. 2.5,
  2047. 2.5,
  2048. 2.5
  2049. ]
  2050. },
  2051. "_eulerAngles": {
  2052. "__type__": "cc.Vec3",
  2053. "x": 0,
  2054. "y": 179.036,
  2055. "z": 0
  2056. },
  2057. "_skewX": 0,
  2058. "_skewY": 0,
  2059. "_is3DNode": true,
  2060. "_groupIndex": 0,
  2061. "groupIndex": 0,
  2062. "_id": ""
  2063. },
  2064. {
  2065. "__type__": "cc.ParticleSystem3D",
  2066. "_name": "",
  2067. "_objFlags": 0,
  2068. "node": {
  2069. "__id__": 76
  2070. },
  2071. "_enabled": true,
  2072. "_materials": [
  2073. {
  2074. "__uuid__": "69620f8a-5815-4401-8b72-b77eb984c219"
  2075. }
  2076. ],
  2077. "duration": 5,
  2078. "_capacity": 100,
  2079. "loop": true,
  2080. "playOnAwake": true,
  2081. "_prewarm": false,
  2082. "_simulationSpace": 1,
  2083. "simulationSpeed": 3,
  2084. "startDelay": {
  2085. "__id__": 78
  2086. },
  2087. "startLifetime": {
  2088. "__id__": 79
  2089. },
  2090. "startColor": {
  2091. "__id__": 83
  2092. },
  2093. "scaleSpace": 1,
  2094. "startSize": {
  2095. "__id__": 90
  2096. },
  2097. "startSpeed": {
  2098. "__id__": 91
  2099. },
  2100. "startRotation": {
  2101. "__id__": 92
  2102. },
  2103. "gravityModifier": {
  2104. "__id__": 93
  2105. },
  2106. "rateOverTime": {
  2107. "__id__": 94
  2108. },
  2109. "rateOverDistance": {
  2110. "__id__": 95
  2111. },
  2112. "bursts": [],
  2113. "_shapeModule": {
  2114. "__id__": 96
  2115. },
  2116. "_textureAnimationModule": {
  2117. "__id__": 98
  2118. },
  2119. "_renderMode": 0,
  2120. "_velocityScale": 1,
  2121. "_lengthScale": 1,
  2122. "_mesh": null,
  2123. "_id": ""
  2124. },
  2125. {
  2126. "__type__": "cc.CurveRange",
  2127. "mode": 0,
  2128. "constant": 0,
  2129. "multiplier": 1
  2130. },
  2131. {
  2132. "__type__": "cc.CurveRange",
  2133. "mode": 1,
  2134. "curve": {
  2135. "__id__": 80
  2136. },
  2137. "multiplier": 1
  2138. },
  2139. {
  2140. "__type__": "cc.AnimationCurve",
  2141. "keyFrames": [
  2142. {
  2143. "__id__": 81
  2144. },
  2145. {
  2146. "__id__": 82
  2147. }
  2148. ],
  2149. "preWrapMode": 2,
  2150. "postWrapMode": 2
  2151. },
  2152. {
  2153. "__type__": "cc.Keyframe",
  2154. "time": 0,
  2155. "value": 1,
  2156. "inTangent": 0,
  2157. "outTangent": 0
  2158. },
  2159. {
  2160. "__type__": "cc.Keyframe",
  2161. "time": 1,
  2162. "value": 1,
  2163. "inTangent": 0,
  2164. "outTangent": 0
  2165. },
  2166. {
  2167. "__type__": "cc.GradientRange",
  2168. "_mode": 1,
  2169. "gradient": {
  2170. "__id__": 84
  2171. }
  2172. },
  2173. {
  2174. "__type__": "cc.Gradient",
  2175. "colorKeys": [
  2176. {
  2177. "__id__": 85
  2178. },
  2179. {
  2180. "__id__": 86
  2181. },
  2182. {
  2183. "__id__": 87
  2184. }
  2185. ],
  2186. "alphaKeys": [
  2187. {
  2188. "__id__": 88
  2189. },
  2190. {
  2191. "__id__": 89
  2192. }
  2193. ],
  2194. "mode": 0
  2195. },
  2196. {
  2197. "__type__": "cc.ColorKey",
  2198. "color": {
  2199. "__type__": "cc.Color",
  2200. "r": 255,
  2201. "g": 7,
  2202. "b": 7,
  2203. "a": 255
  2204. },
  2205. "time": 0
  2206. },
  2207. {
  2208. "__type__": "cc.ColorKey",
  2209. "color": {
  2210. "__type__": "cc.Color",
  2211. "r": 255,
  2212. "g": 224,
  2213. "b": 0,
  2214. "a": 255
  2215. },
  2216. "time": 0.4772727272727272
  2217. },
  2218. {
  2219. "__type__": "cc.ColorKey",
  2220. "color": {
  2221. "__type__": "cc.Color",
  2222. "r": 20,
  2223. "g": 255,
  2224. "b": 0,
  2225. "a": 255
  2226. },
  2227. "time": 1
  2228. },
  2229. {
  2230. "__type__": "cc.AlphaKey",
  2231. "alpha": 255,
  2232. "time": 0
  2233. },
  2234. {
  2235. "__type__": "cc.AlphaKey",
  2236. "alpha": 255,
  2237. "time": 1
  2238. },
  2239. {
  2240. "__type__": "cc.CurveRange",
  2241. "mode": 3,
  2242. "constantMin": 0.5,
  2243. "constantMax": 3,
  2244. "multiplier": 1
  2245. },
  2246. {
  2247. "__type__": "cc.CurveRange",
  2248. "mode": 0,
  2249. "constant": 2,
  2250. "multiplier": 1
  2251. },
  2252. {
  2253. "__type__": "cc.CurveRange",
  2254. "mode": 3,
  2255. "constantMin": 1,
  2256. "constantMax": 3,
  2257. "multiplier": 1
  2258. },
  2259. {
  2260. "__type__": "cc.CurveRange",
  2261. "mode": 0,
  2262. "constant": 0,
  2263. "multiplier": 1
  2264. },
  2265. {
  2266. "__type__": "cc.CurveRange",
  2267. "mode": 0,
  2268. "constant": 100,
  2269. "multiplier": 1
  2270. },
  2271. {
  2272. "__type__": "cc.CurveRange",
  2273. "mode": 0,
  2274. "constant": 0,
  2275. "multiplier": 1
  2276. },
  2277. {
  2278. "__type__": "cc.ShapeModule",
  2279. "enable": true,
  2280. "_shapeType": 2,
  2281. "emitFrom": 2,
  2282. "radius": 0.07,
  2283. "radiusThickness": 1,
  2284. "_angle": 0.06981317007977318,
  2285. "_arc": 6.283185307179586,
  2286. "arcMode": 0,
  2287. "arcSpread": 0,
  2288. "arcSpeed": {
  2289. "__id__": 97
  2290. },
  2291. "length": 2,
  2292. "boxThickness": {
  2293. "__type__": "cc.Vec3",
  2294. "x": 0,
  2295. "y": 0,
  2296. "z": 0
  2297. },
  2298. "_position": {
  2299. "__type__": "cc.Vec3",
  2300. "x": 0,
  2301. "y": 0,
  2302. "z": 0
  2303. },
  2304. "_rotation": {
  2305. "__type__": "cc.Vec3",
  2306. "x": 0,
  2307. "y": 0,
  2308. "z": 0
  2309. },
  2310. "_scale": {
  2311. "__type__": "cc.Vec3",
  2312. "x": 1,
  2313. "y": 1,
  2314. "z": 1
  2315. },
  2316. "alignToDirection": false,
  2317. "randomDirectionAmount": 0,
  2318. "sphericalDirectionAmount": 0,
  2319. "randomPositionAmount": 0
  2320. },
  2321. {
  2322. "__type__": "cc.CurveRange",
  2323. "mode": 0,
  2324. "constant": 1,
  2325. "multiplier": 1
  2326. },
  2327. {
  2328. "__type__": "cc.TextureAnimationModule",
  2329. "_enable": true,
  2330. "_mode": 0,
  2331. "numTilesX": 4,
  2332. "numTilesY": 1,
  2333. "animation": 0,
  2334. "randomRow": false,
  2335. "rowIndex": 0,
  2336. "frameOverTime": {
  2337. "__id__": 99
  2338. },
  2339. "startFrame": {
  2340. "__id__": 103
  2341. },
  2342. "cycleCount": 1
  2343. },
  2344. {
  2345. "__type__": "cc.CurveRange",
  2346. "mode": 1,
  2347. "curve": {
  2348. "__id__": 100
  2349. },
  2350. "multiplier": 1
  2351. },
  2352. {
  2353. "__type__": "cc.AnimationCurve",
  2354. "keyFrames": [
  2355. {
  2356. "__id__": 101
  2357. },
  2358. {
  2359. "__id__": 102
  2360. }
  2361. ],
  2362. "preWrapMode": 2,
  2363. "postWrapMode": 2
  2364. },
  2365. {
  2366. "__type__": "cc.Keyframe",
  2367. "time": 0,
  2368. "value": 1,
  2369. "inTangent": 0,
  2370. "outTangent": 0
  2371. },
  2372. {
  2373. "__type__": "cc.Keyframe",
  2374. "time": 1,
  2375. "value": 1,
  2376. "inTangent": 0,
  2377. "outTangent": 0
  2378. },
  2379. {
  2380. "__type__": "cc.CurveRange",
  2381. "mode": 0,
  2382. "constant": 0,
  2383. "multiplier": 1
  2384. },
  2385. {
  2386. "__type__": "cc.PrefabInfo",
  2387. "root": {
  2388. "__id__": 1
  2389. },
  2390. "asset": {
  2391. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  2392. },
  2393. "fileId": "c9Y853MSBGH6j4fRclWvHf",
  2394. "sync": false
  2395. },
  2396. {
  2397. "__type__": "cc.PrefabInfo",
  2398. "root": {
  2399. "__id__": 1
  2400. },
  2401. "asset": {
  2402. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  2403. },
  2404. "fileId": "91c69st85GQJ8fIgAZ6Fqi",
  2405. "sync": false
  2406. },
  2407. {
  2408. "__type__": "cc.PrefabInfo",
  2409. "root": {
  2410. "__id__": 1
  2411. },
  2412. "asset": {
  2413. "__uuid__": "08579ea4-f7eb-4b92-ac6e-a3b657ca7d81"
  2414. },
  2415. "fileId": "92Bj+tFztP7Yb6SW63ik8Q",
  2416. "sync": false
  2417. }
  2418. ]