Car_101.prefab 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207
  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__": 68
  25. }
  26. ],
  27. "_active": true,
  28. "_components": [],
  29. "_prefab": {
  30. "__id__": 162
  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. "__id__": 39
  119. }
  120. ],
  121. "_active": true,
  122. "_components": [
  123. {
  124. "__id__": 66
  125. }
  126. ],
  127. "_prefab": {
  128. "__id__": 67
  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.484,
  154. 0,
  155. 0,
  156. 1,
  157. 0,
  158. 6.123233995736766e-17,
  159. 1.2,
  160. 1.2,
  161. 1.2
  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.00417,
  1293. -0.075,
  1294. -0.7071067811865475,
  1295. -8.659560562354934e-17,
  1296. 8.659560562354932e-17,
  1297. -0.7071067811865476,
  1298. 0.20583,
  1299. 0.27667,
  1300. 0.20583
  1301. ]
  1302. },
  1303. "_eulerAngles": {
  1304. "__type__": "cc.Vec3",
  1305. "x": 90,
  1306. "y": -360,
  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": "5efnUfsEpNb6rRfvAfA7Lr",
  1347. "sync": false
  1348. },
  1349. {
  1350. "__type__": "cc.Node",
  1351. "_name": "Particle_101",
  1352. "_objFlags": 0,
  1353. "_parent": {
  1354. "__id__": 2
  1355. },
  1356. "_children": [],
  1357. "_active": true,
  1358. "_components": [
  1359. {
  1360. "__id__": 40
  1361. }
  1362. ],
  1363. "_prefab": {
  1364. "__id__": 65
  1365. },
  1366. "_opacity": 255,
  1367. "_color": {
  1368. "__type__": "cc.Color",
  1369. "r": 255,
  1370. "g": 255,
  1371. "b": 255,
  1372. "a": 255
  1373. },
  1374. "_contentSize": {
  1375. "__type__": "cc.Size",
  1376. "width": 0,
  1377. "height": 0
  1378. },
  1379. "_anchorPoint": {
  1380. "__type__": "cc.Vec2",
  1381. "x": 0.5,
  1382. "y": 0.5
  1383. },
  1384. "_trs": {
  1385. "__type__": "TypedArray",
  1386. "ctor": "Float64Array",
  1387. "array": [
  1388. -0.09083,
  1389. 0.40833,
  1390. -2.73833,
  1391. 0,
  1392. -0.008412387769767384,
  1393. 0,
  1394. 0.9999646152399649,
  1395. 2.08333,
  1396. 2.08333,
  1397. 2.08333
  1398. ]
  1399. },
  1400. "_eulerAngles": {
  1401. "__type__": "cc.Vec3",
  1402. "x": 0,
  1403. "y": -0.9639999999999986,
  1404. "z": 0
  1405. },
  1406. "_skewX": 0,
  1407. "_skewY": 0,
  1408. "_is3DNode": true,
  1409. "_groupIndex": 0,
  1410. "groupIndex": 0,
  1411. "_id": ""
  1412. },
  1413. {
  1414. "__type__": "cc.ParticleSystem3D",
  1415. "_name": "",
  1416. "_objFlags": 0,
  1417. "node": {
  1418. "__id__": 39
  1419. },
  1420. "_enabled": true,
  1421. "_materials": [
  1422. {
  1423. "__uuid__": "69620f8a-5815-4401-8b72-b77eb984c219"
  1424. }
  1425. ],
  1426. "duration": 5,
  1427. "_capacity": 100,
  1428. "loop": true,
  1429. "playOnAwake": true,
  1430. "_prewarm": false,
  1431. "_simulationSpace": 1,
  1432. "simulationSpeed": 3,
  1433. "startDelay": {
  1434. "__id__": 41
  1435. },
  1436. "startLifetime": {
  1437. "__id__": 42
  1438. },
  1439. "startColor": {
  1440. "__id__": 43
  1441. },
  1442. "scaleSpace": 1,
  1443. "startSize": {
  1444. "__id__": 51
  1445. },
  1446. "startSpeed": {
  1447. "__id__": 52
  1448. },
  1449. "startRotation": {
  1450. "__id__": 53
  1451. },
  1452. "gravityModifier": {
  1453. "__id__": 54
  1454. },
  1455. "rateOverTime": {
  1456. "__id__": 55
  1457. },
  1458. "rateOverDistance": {
  1459. "__id__": 56
  1460. },
  1461. "bursts": [],
  1462. "_shapeModule": {
  1463. "__id__": 57
  1464. },
  1465. "_textureAnimationModule": {
  1466. "__id__": 59
  1467. },
  1468. "_renderMode": 0,
  1469. "_velocityScale": 1,
  1470. "_lengthScale": 1,
  1471. "_mesh": null,
  1472. "_id": ""
  1473. },
  1474. {
  1475. "__type__": "cc.CurveRange",
  1476. "mode": 0,
  1477. "constant": 0,
  1478. "multiplier": 1
  1479. },
  1480. {
  1481. "__type__": "cc.CurveRange",
  1482. "mode": 0,
  1483. "constant": 0.3,
  1484. "multiplier": 1
  1485. },
  1486. {
  1487. "__type__": "cc.GradientRange",
  1488. "_mode": 1,
  1489. "gradient": {
  1490. "__id__": 44
  1491. }
  1492. },
  1493. {
  1494. "__type__": "cc.Gradient",
  1495. "colorKeys": [
  1496. {
  1497. "__id__": 45
  1498. },
  1499. {
  1500. "__id__": 46
  1501. },
  1502. {
  1503. "__id__": 47
  1504. },
  1505. {
  1506. "__id__": 48
  1507. }
  1508. ],
  1509. "alphaKeys": [
  1510. {
  1511. "__id__": 49
  1512. },
  1513. {
  1514. "__id__": 50
  1515. }
  1516. ],
  1517. "mode": 0
  1518. },
  1519. {
  1520. "__type__": "cc.ColorKey",
  1521. "color": {
  1522. "__type__": "cc.Color",
  1523. "r": 0,
  1524. "g": 255,
  1525. "b": 243,
  1526. "a": 255
  1527. },
  1528. "time": 0
  1529. },
  1530. {
  1531. "__type__": "cc.ColorKey",
  1532. "color": {
  1533. "__type__": "cc.Color",
  1534. "r": 203,
  1535. "g": 7,
  1536. "b": 255,
  1537. "a": 255
  1538. },
  1539. "time": 0.2318181818181818
  1540. },
  1541. {
  1542. "__type__": "cc.ColorKey",
  1543. "color": {
  1544. "__type__": "cc.Color",
  1545. "r": 255,
  1546. "g": 100,
  1547. "b": 0,
  1548. "a": 255
  1549. },
  1550. "time": 0.6477272727272727
  1551. },
  1552. {
  1553. "__type__": "cc.ColorKey",
  1554. "color": {
  1555. "__type__": "cc.Color",
  1556. "r": 0,
  1557. "g": 255,
  1558. "b": 243,
  1559. "a": 255
  1560. },
  1561. "time": 1
  1562. },
  1563. {
  1564. "__type__": "cc.AlphaKey",
  1565. "alpha": 255,
  1566. "time": 0
  1567. },
  1568. {
  1569. "__type__": "cc.AlphaKey",
  1570. "alpha": 255,
  1571. "time": 1
  1572. },
  1573. {
  1574. "__type__": "cc.CurveRange",
  1575. "mode": 3,
  1576. "constantMin": 0.5,
  1577. "constantMax": 2,
  1578. "multiplier": 1
  1579. },
  1580. {
  1581. "__type__": "cc.CurveRange",
  1582. "mode": 0,
  1583. "constant": 2,
  1584. "multiplier": 1
  1585. },
  1586. {
  1587. "__type__": "cc.CurveRange",
  1588. "mode": 3,
  1589. "constantMin": 1,
  1590. "constantMax": 3,
  1591. "multiplier": 1
  1592. },
  1593. {
  1594. "__type__": "cc.CurveRange",
  1595. "mode": 0,
  1596. "constant": 0,
  1597. "multiplier": 1
  1598. },
  1599. {
  1600. "__type__": "cc.CurveRange",
  1601. "mode": 0,
  1602. "constant": 100,
  1603. "multiplier": 1
  1604. },
  1605. {
  1606. "__type__": "cc.CurveRange",
  1607. "mode": 0,
  1608. "constant": 0,
  1609. "multiplier": 1
  1610. },
  1611. {
  1612. "__type__": "cc.ShapeModule",
  1613. "enable": true,
  1614. "_shapeType": 2,
  1615. "emitFrom": 2,
  1616. "radius": 0.07,
  1617. "radiusThickness": 1,
  1618. "_angle": 0.06981317007977318,
  1619. "_arc": 6.283185307179586,
  1620. "arcMode": 0,
  1621. "arcSpread": 0,
  1622. "arcSpeed": {
  1623. "__id__": 58
  1624. },
  1625. "length": 2,
  1626. "boxThickness": {
  1627. "__type__": "cc.Vec3",
  1628. "x": 0,
  1629. "y": 0,
  1630. "z": 0
  1631. },
  1632. "_position": {
  1633. "__type__": "cc.Vec3",
  1634. "x": 0,
  1635. "y": 0,
  1636. "z": 0
  1637. },
  1638. "_rotation": {
  1639. "__type__": "cc.Vec3",
  1640. "x": 0,
  1641. "y": 0,
  1642. "z": 0
  1643. },
  1644. "_scale": {
  1645. "__type__": "cc.Vec3",
  1646. "x": 1,
  1647. "y": 1,
  1648. "z": 1
  1649. },
  1650. "alignToDirection": false,
  1651. "randomDirectionAmount": 0,
  1652. "sphericalDirectionAmount": 0,
  1653. "randomPositionAmount": 0
  1654. },
  1655. {
  1656. "__type__": "cc.CurveRange",
  1657. "mode": 0,
  1658. "constant": 1,
  1659. "multiplier": 1
  1660. },
  1661. {
  1662. "__type__": "cc.TextureAnimationModule",
  1663. "_enable": true,
  1664. "_mode": 0,
  1665. "numTilesX": 4,
  1666. "numTilesY": 1,
  1667. "animation": 0,
  1668. "randomRow": false,
  1669. "rowIndex": 0,
  1670. "frameOverTime": {
  1671. "__id__": 60
  1672. },
  1673. "startFrame": {
  1674. "__id__": 64
  1675. },
  1676. "cycleCount": 1
  1677. },
  1678. {
  1679. "__type__": "cc.CurveRange",
  1680. "mode": 1,
  1681. "curve": {
  1682. "__id__": 61
  1683. },
  1684. "multiplier": 1
  1685. },
  1686. {
  1687. "__type__": "cc.AnimationCurve",
  1688. "keyFrames": [
  1689. {
  1690. "__id__": 62
  1691. },
  1692. {
  1693. "__id__": 63
  1694. }
  1695. ],
  1696. "preWrapMode": 2,
  1697. "postWrapMode": 2
  1698. },
  1699. {
  1700. "__type__": "cc.Keyframe",
  1701. "time": 0,
  1702. "value": 1,
  1703. "inTangent": 0,
  1704. "outTangent": 0
  1705. },
  1706. {
  1707. "__type__": "cc.Keyframe",
  1708. "time": 1,
  1709. "value": 1,
  1710. "inTangent": 0,
  1711. "outTangent": 0
  1712. },
  1713. {
  1714. "__type__": "cc.CurveRange",
  1715. "mode": 0,
  1716. "constant": 0,
  1717. "multiplier": 1
  1718. },
  1719. {
  1720. "__type__": "cc.PrefabInfo",
  1721. "root": {
  1722. "__id__": 1
  1723. },
  1724. "asset": {
  1725. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1726. },
  1727. "fileId": "65Z8EmPS9K1bi3QZkZNdc0",
  1728. "sync": false
  1729. },
  1730. {
  1731. "__type__": "cc.MeshRenderer",
  1732. "_name": "",
  1733. "_objFlags": 0,
  1734. "node": {
  1735. "__id__": 2
  1736. },
  1737. "_enabled": true,
  1738. "_materials": [
  1739. {
  1740. "__uuid__": "e39424e4-93d1-4781-8cef-b475b006bb8f"
  1741. }
  1742. ],
  1743. "_mesh": {
  1744. "__uuid__": "14d1a472-facc-452e-a6bb-03467ba35a1b"
  1745. },
  1746. "_receiveShadows": false,
  1747. "_shadowCastingMode": 0,
  1748. "_enableAutoBatch": false,
  1749. "textures": [],
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.PrefabInfo",
  1754. "root": {
  1755. "__id__": 1
  1756. },
  1757. "asset": {
  1758. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  1759. },
  1760. "fileId": "9bOhqhJEdD/aWQ5gmJW7Ih",
  1761. "sync": false
  1762. },
  1763. {
  1764. "__type__": "cc.Node",
  1765. "_name": "ParticleRoot",
  1766. "_objFlags": 0,
  1767. "_parent": {
  1768. "__id__": 1
  1769. },
  1770. "_children": [
  1771. {
  1772. "__id__": 69
  1773. },
  1774. {
  1775. "__id__": 97
  1776. },
  1777. {
  1778. "__id__": 127
  1779. },
  1780. {
  1781. "__id__": 144
  1782. }
  1783. ],
  1784. "_active": true,
  1785. "_components": [],
  1786. "_prefab": {
  1787. "__id__": 161
  1788. },
  1789. "_opacity": 255,
  1790. "_color": {
  1791. "__type__": "cc.Color",
  1792. "r": 255,
  1793. "g": 255,
  1794. "b": 255,
  1795. "a": 255
  1796. },
  1797. "_contentSize": {
  1798. "__type__": "cc.Size",
  1799. "width": 0,
  1800. "height": 0
  1801. },
  1802. "_anchorPoint": {
  1803. "__type__": "cc.Vec2",
  1804. "x": 0.5,
  1805. "y": 0.5
  1806. },
  1807. "_trs": {
  1808. "__type__": "TypedArray",
  1809. "ctor": "Float64Array",
  1810. "array": [
  1811. 0,
  1812. -0.00001,
  1813. 0,
  1814. 0,
  1815. 0,
  1816. 0,
  1817. 1,
  1818. 1.00001,
  1819. 1.00001,
  1820. 1.00001
  1821. ]
  1822. },
  1823. "_eulerAngles": {
  1824. "__type__": "cc.Vec3",
  1825. "x": 0,
  1826. "y": 0,
  1827. "z": 0
  1828. },
  1829. "_skewX": 0,
  1830. "_skewY": 0,
  1831. "_is3DNode": true,
  1832. "_groupIndex": 0,
  1833. "groupIndex": 0,
  1834. "_id": ""
  1835. },
  1836. {
  1837. "__type__": "cc.Node",
  1838. "_name": "Particle_101 copy",
  1839. "_objFlags": 0,
  1840. "_parent": {
  1841. "__id__": 68
  1842. },
  1843. "_children": [],
  1844. "_active": false,
  1845. "_components": [
  1846. {
  1847. "__id__": 70
  1848. }
  1849. ],
  1850. "_prefab": {
  1851. "__id__": 96
  1852. },
  1853. "_opacity": 255,
  1854. "_color": {
  1855. "__type__": "cc.Color",
  1856. "r": 255,
  1857. "g": 255,
  1858. "b": 255,
  1859. "a": 255
  1860. },
  1861. "_contentSize": {
  1862. "__type__": "cc.Size",
  1863. "width": 0,
  1864. "height": 0
  1865. },
  1866. "_anchorPoint": {
  1867. "__type__": "cc.Vec2",
  1868. "x": 0.5,
  1869. "y": 0.5
  1870. },
  1871. "_trs": {
  1872. "__type__": "TypedArray",
  1873. "ctor": "Float64Array",
  1874. "array": [
  1875. 1.477,
  1876. 0.892,
  1877. 5.783,
  1878. 0,
  1879. 0.9999646152399649,
  1880. 0,
  1881. 0.008412387769767512,
  1882. 4.93,
  1883. 4.93,
  1884. 4.93
  1885. ]
  1886. },
  1887. "_eulerAngles": {
  1888. "__type__": "cc.Vec3",
  1889. "x": 0,
  1890. "y": 179.036,
  1891. "z": 0
  1892. },
  1893. "_skewX": 0,
  1894. "_skewY": 0,
  1895. "_is3DNode": true,
  1896. "_groupIndex": 0,
  1897. "groupIndex": 0,
  1898. "_id": ""
  1899. },
  1900. {
  1901. "__type__": "cc.ParticleSystem3D",
  1902. "_name": "",
  1903. "_objFlags": 0,
  1904. "node": {
  1905. "__id__": 69
  1906. },
  1907. "_enabled": true,
  1908. "_materials": [
  1909. {
  1910. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  1911. }
  1912. ],
  1913. "duration": 5,
  1914. "_capacity": 100,
  1915. "loop": true,
  1916. "playOnAwake": true,
  1917. "_prewarm": false,
  1918. "_simulationSpace": 1,
  1919. "simulationSpeed": 5,
  1920. "startDelay": {
  1921. "__id__": 71
  1922. },
  1923. "startLifetime": {
  1924. "__id__": 72
  1925. },
  1926. "startColor": {
  1927. "__id__": 73
  1928. },
  1929. "scaleSpace": 1,
  1930. "startSize": {
  1931. "__id__": 82
  1932. },
  1933. "startSpeed": {
  1934. "__id__": 83
  1935. },
  1936. "startRotation": {
  1937. "__id__": 84
  1938. },
  1939. "gravityModifier": {
  1940. "__id__": 85
  1941. },
  1942. "rateOverTime": {
  1943. "__id__": 86
  1944. },
  1945. "rateOverDistance": {
  1946. "__id__": 87
  1947. },
  1948. "bursts": [],
  1949. "_shapeModule": {
  1950. "__id__": 88
  1951. },
  1952. "_textureAnimationModule": {
  1953. "__id__": 90
  1954. },
  1955. "_renderMode": 0,
  1956. "_velocityScale": 1,
  1957. "_lengthScale": 1,
  1958. "_mesh": null,
  1959. "_id": ""
  1960. },
  1961. {
  1962. "__type__": "cc.CurveRange",
  1963. "mode": 0,
  1964. "constant": 0,
  1965. "multiplier": 1
  1966. },
  1967. {
  1968. "__type__": "cc.CurveRange",
  1969. "mode": 0,
  1970. "constant": 1,
  1971. "multiplier": 1
  1972. },
  1973. {
  1974. "__type__": "cc.GradientRange",
  1975. "_mode": 4,
  1976. "gradient": {
  1977. "__id__": 74
  1978. }
  1979. },
  1980. {
  1981. "__type__": "cc.Gradient",
  1982. "colorKeys": [
  1983. {
  1984. "__id__": 75
  1985. },
  1986. {
  1987. "__id__": 76
  1988. },
  1989. {
  1990. "__id__": 77
  1991. },
  1992. {
  1993. "__id__": 78
  1994. }
  1995. ],
  1996. "alphaKeys": [
  1997. {
  1998. "__id__": 79
  1999. },
  2000. {
  2001. "__id__": 80
  2002. },
  2003. {
  2004. "__id__": 81
  2005. }
  2006. ],
  2007. "mode": 0
  2008. },
  2009. {
  2010. "__type__": "cc.ColorKey",
  2011. "color": {
  2012. "__type__": "cc.Color",
  2013. "r": 255,
  2014. "g": 0,
  2015. "b": 186,
  2016. "a": 255
  2017. },
  2018. "time": 0
  2019. },
  2020. {
  2021. "__type__": "cc.ColorKey",
  2022. "color": {
  2023. "__type__": "cc.Color",
  2024. "r": 202,
  2025. "g": 0,
  2026. "b": 255,
  2027. "a": 255
  2028. },
  2029. "time": 0.0022727272727272726
  2030. },
  2031. {
  2032. "__type__": "cc.ColorKey",
  2033. "color": {
  2034. "__type__": "cc.Color",
  2035. "r": 255,
  2036. "g": 100,
  2037. "b": 0,
  2038. "a": 255
  2039. },
  2040. "time": 0.4772727272727273
  2041. },
  2042. {
  2043. "__type__": "cc.ColorKey",
  2044. "color": {
  2045. "__type__": "cc.Color",
  2046. "r": 255,
  2047. "g": 0,
  2048. "b": 2,
  2049. "a": 255
  2050. },
  2051. "time": 0.9931818181818182
  2052. },
  2053. {
  2054. "__type__": "cc.AlphaKey",
  2055. "alpha": 1,
  2056. "time": 0
  2057. },
  2058. {
  2059. "__type__": "cc.AlphaKey",
  2060. "alpha": 1,
  2061. "time": 0
  2062. },
  2063. {
  2064. "__type__": "cc.AlphaKey",
  2065. "alpha": 255,
  2066. "time": 0.9931818181818182
  2067. },
  2068. {
  2069. "__type__": "cc.CurveRange",
  2070. "mode": 3,
  2071. "constantMin": 0.5,
  2072. "constantMax": 1.5,
  2073. "multiplier": 1
  2074. },
  2075. {
  2076. "__type__": "cc.CurveRange",
  2077. "mode": 0,
  2078. "constant": 2,
  2079. "multiplier": 1
  2080. },
  2081. {
  2082. "__type__": "cc.CurveRange",
  2083. "mode": 0,
  2084. "constant": 0,
  2085. "multiplier": 1
  2086. },
  2087. {
  2088. "__type__": "cc.CurveRange",
  2089. "mode": 0,
  2090. "constant": 0,
  2091. "multiplier": 1
  2092. },
  2093. {
  2094. "__type__": "cc.CurveRange",
  2095. "mode": 0,
  2096. "constant": 22,
  2097. "multiplier": 1
  2098. },
  2099. {
  2100. "__type__": "cc.CurveRange",
  2101. "mode": 0,
  2102. "constant": 0,
  2103. "multiplier": 1
  2104. },
  2105. {
  2106. "__type__": "cc.ShapeModule",
  2107. "enable": true,
  2108. "_shapeType": 2,
  2109. "emitFrom": 0,
  2110. "radius": 0.05,
  2111. "radiusThickness": 1,
  2112. "_angle": 0.06981317007977318,
  2113. "_arc": 6.283185307179586,
  2114. "arcMode": 0,
  2115. "arcSpread": 0,
  2116. "arcSpeed": {
  2117. "__id__": 89
  2118. },
  2119. "length": 2,
  2120. "boxThickness": {
  2121. "__type__": "cc.Vec3",
  2122. "x": 0,
  2123. "y": 0,
  2124. "z": 0
  2125. },
  2126. "_position": {
  2127. "__type__": "cc.Vec3",
  2128. "x": 0,
  2129. "y": 0,
  2130. "z": 0
  2131. },
  2132. "_rotation": {
  2133. "__type__": "cc.Vec3",
  2134. "x": 0,
  2135. "y": 0,
  2136. "z": 0
  2137. },
  2138. "_scale": {
  2139. "__type__": "cc.Vec3",
  2140. "x": 1,
  2141. "y": 1,
  2142. "z": 1
  2143. },
  2144. "alignToDirection": false,
  2145. "randomDirectionAmount": 0,
  2146. "sphericalDirectionAmount": 0,
  2147. "randomPositionAmount": 0
  2148. },
  2149. {
  2150. "__type__": "cc.CurveRange",
  2151. "mode": 0,
  2152. "constant": 1,
  2153. "multiplier": 1
  2154. },
  2155. {
  2156. "__type__": "cc.TextureAnimationModule",
  2157. "_enable": true,
  2158. "_mode": 0,
  2159. "numTilesX": 4,
  2160. "numTilesY": 1,
  2161. "animation": 0,
  2162. "randomRow": false,
  2163. "rowIndex": 0,
  2164. "frameOverTime": {
  2165. "__id__": 91
  2166. },
  2167. "startFrame": {
  2168. "__id__": 95
  2169. },
  2170. "cycleCount": 1
  2171. },
  2172. {
  2173. "__type__": "cc.CurveRange",
  2174. "mode": 1,
  2175. "curve": {
  2176. "__id__": 92
  2177. },
  2178. "multiplier": 1
  2179. },
  2180. {
  2181. "__type__": "cc.AnimationCurve",
  2182. "keyFrames": [
  2183. {
  2184. "__id__": 93
  2185. },
  2186. {
  2187. "__id__": 94
  2188. }
  2189. ],
  2190. "preWrapMode": 2,
  2191. "postWrapMode": 2
  2192. },
  2193. {
  2194. "__type__": "cc.Keyframe",
  2195. "time": 0,
  2196. "value": 1,
  2197. "inTangent": 0,
  2198. "outTangent": 0
  2199. },
  2200. {
  2201. "__type__": "cc.Keyframe",
  2202. "time": 1,
  2203. "value": 1,
  2204. "inTangent": 0,
  2205. "outTangent": 0
  2206. },
  2207. {
  2208. "__type__": "cc.CurveRange",
  2209. "mode": 0,
  2210. "constant": 0,
  2211. "multiplier": 1
  2212. },
  2213. {
  2214. "__type__": "cc.PrefabInfo",
  2215. "root": {
  2216. "__id__": 1
  2217. },
  2218. "asset": {
  2219. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2220. },
  2221. "fileId": "ba3K49FPRBvI0IAgqUnr/5",
  2222. "sync": false
  2223. },
  2224. {
  2225. "__type__": "cc.Node",
  2226. "_name": "Particle_101",
  2227. "_objFlags": 0,
  2228. "_parent": {
  2229. "__id__": 68
  2230. },
  2231. "_children": [],
  2232. "_active": true,
  2233. "_components": [
  2234. {
  2235. "__id__": 98
  2236. }
  2237. ],
  2238. "_prefab": {
  2239. "__id__": 126
  2240. },
  2241. "_opacity": 255,
  2242. "_color": {
  2243. "__type__": "cc.Color",
  2244. "r": 255,
  2245. "g": 255,
  2246. "b": 255,
  2247. "a": 255
  2248. },
  2249. "_contentSize": {
  2250. "__type__": "cc.Size",
  2251. "width": 0,
  2252. "height": 0
  2253. },
  2254. "_anchorPoint": {
  2255. "__type__": "cc.Vec2",
  2256. "x": 0.5,
  2257. "y": 0.5
  2258. },
  2259. "_trs": {
  2260. "__type__": "TypedArray",
  2261. "ctor": "Float64Array",
  2262. "array": [
  2263. 0.109,
  2264. 0.006,
  2265. 3.286,
  2266. 0,
  2267. 0.9999646152399649,
  2268. 0,
  2269. 0.008412387769767512,
  2270. 2.5,
  2271. 2.5,
  2272. 2.5
  2273. ]
  2274. },
  2275. "_eulerAngles": {
  2276. "__type__": "cc.Vec3",
  2277. "x": 0,
  2278. "y": 179.036,
  2279. "z": 0
  2280. },
  2281. "_skewX": 0,
  2282. "_skewY": 0,
  2283. "_is3DNode": true,
  2284. "_groupIndex": 0,
  2285. "groupIndex": 0,
  2286. "_id": ""
  2287. },
  2288. {
  2289. "__type__": "cc.ParticleSystem3D",
  2290. "_name": "",
  2291. "_objFlags": 0,
  2292. "node": {
  2293. "__id__": 97
  2294. },
  2295. "_enabled": true,
  2296. "_materials": [
  2297. {
  2298. "__uuid__": "69620f8a-5815-4401-8b72-b77eb984c219"
  2299. }
  2300. ],
  2301. "duration": 5,
  2302. "_capacity": 100,
  2303. "loop": true,
  2304. "playOnAwake": true,
  2305. "_prewarm": false,
  2306. "_simulationSpace": 1,
  2307. "simulationSpeed": 3,
  2308. "startDelay": {
  2309. "__id__": 99
  2310. },
  2311. "startLifetime": {
  2312. "__id__": 100
  2313. },
  2314. "startColor": {
  2315. "__id__": 104
  2316. },
  2317. "scaleSpace": 1,
  2318. "startSize": {
  2319. "__id__": 112
  2320. },
  2321. "startSpeed": {
  2322. "__id__": 113
  2323. },
  2324. "startRotation": {
  2325. "__id__": 114
  2326. },
  2327. "gravityModifier": {
  2328. "__id__": 115
  2329. },
  2330. "rateOverTime": {
  2331. "__id__": 116
  2332. },
  2333. "rateOverDistance": {
  2334. "__id__": 117
  2335. },
  2336. "bursts": [],
  2337. "_shapeModule": {
  2338. "__id__": 118
  2339. },
  2340. "_textureAnimationModule": {
  2341. "__id__": 120
  2342. },
  2343. "_renderMode": 0,
  2344. "_velocityScale": 1,
  2345. "_lengthScale": 1,
  2346. "_mesh": null,
  2347. "_id": ""
  2348. },
  2349. {
  2350. "__type__": "cc.CurveRange",
  2351. "mode": 0,
  2352. "constant": 0,
  2353. "multiplier": 1
  2354. },
  2355. {
  2356. "__type__": "cc.CurveRange",
  2357. "mode": 1,
  2358. "curve": {
  2359. "__id__": 101
  2360. },
  2361. "multiplier": 1
  2362. },
  2363. {
  2364. "__type__": "cc.AnimationCurve",
  2365. "keyFrames": [
  2366. {
  2367. "__id__": 102
  2368. },
  2369. {
  2370. "__id__": 103
  2371. }
  2372. ],
  2373. "preWrapMode": 2,
  2374. "postWrapMode": 2
  2375. },
  2376. {
  2377. "__type__": "cc.Keyframe",
  2378. "time": 0,
  2379. "value": 1,
  2380. "inTangent": 0,
  2381. "outTangent": 0
  2382. },
  2383. {
  2384. "__type__": "cc.Keyframe",
  2385. "time": 1,
  2386. "value": 1,
  2387. "inTangent": 0,
  2388. "outTangent": 0
  2389. },
  2390. {
  2391. "__type__": "cc.GradientRange",
  2392. "_mode": 1,
  2393. "gradient": {
  2394. "__id__": 105
  2395. }
  2396. },
  2397. {
  2398. "__type__": "cc.Gradient",
  2399. "colorKeys": [
  2400. {
  2401. "__id__": 106
  2402. },
  2403. {
  2404. "__id__": 107
  2405. },
  2406. {
  2407. "__id__": 108
  2408. },
  2409. {
  2410. "__id__": 109
  2411. }
  2412. ],
  2413. "alphaKeys": [
  2414. {
  2415. "__id__": 110
  2416. },
  2417. {
  2418. "__id__": 111
  2419. }
  2420. ],
  2421. "mode": 0
  2422. },
  2423. {
  2424. "__type__": "cc.ColorKey",
  2425. "color": {
  2426. "__type__": "cc.Color",
  2427. "r": 0,
  2428. "g": 255,
  2429. "b": 243,
  2430. "a": 255
  2431. },
  2432. "time": 0
  2433. },
  2434. {
  2435. "__type__": "cc.ColorKey",
  2436. "color": {
  2437. "__type__": "cc.Color",
  2438. "r": 203,
  2439. "g": 7,
  2440. "b": 255,
  2441. "a": 255
  2442. },
  2443. "time": 0.2318181818181818
  2444. },
  2445. {
  2446. "__type__": "cc.ColorKey",
  2447. "color": {
  2448. "__type__": "cc.Color",
  2449. "r": 255,
  2450. "g": 100,
  2451. "b": 0,
  2452. "a": 255
  2453. },
  2454. "time": 0.6477272727272727
  2455. },
  2456. {
  2457. "__type__": "cc.ColorKey",
  2458. "color": {
  2459. "__type__": "cc.Color",
  2460. "r": 0,
  2461. "g": 255,
  2462. "b": 243,
  2463. "a": 255
  2464. },
  2465. "time": 1
  2466. },
  2467. {
  2468. "__type__": "cc.AlphaKey",
  2469. "alpha": 255,
  2470. "time": 0
  2471. },
  2472. {
  2473. "__type__": "cc.AlphaKey",
  2474. "alpha": 255,
  2475. "time": 1
  2476. },
  2477. {
  2478. "__type__": "cc.CurveRange",
  2479. "mode": 3,
  2480. "constantMin": 0.5,
  2481. "constantMax": 3,
  2482. "multiplier": 1
  2483. },
  2484. {
  2485. "__type__": "cc.CurveRange",
  2486. "mode": 0,
  2487. "constant": 2,
  2488. "multiplier": 1
  2489. },
  2490. {
  2491. "__type__": "cc.CurveRange",
  2492. "mode": 3,
  2493. "constantMin": 1,
  2494. "constantMax": 3,
  2495. "multiplier": 1
  2496. },
  2497. {
  2498. "__type__": "cc.CurveRange",
  2499. "mode": 0,
  2500. "constant": 0,
  2501. "multiplier": 1
  2502. },
  2503. {
  2504. "__type__": "cc.CurveRange",
  2505. "mode": 0,
  2506. "constant": 100,
  2507. "multiplier": 1
  2508. },
  2509. {
  2510. "__type__": "cc.CurveRange",
  2511. "mode": 0,
  2512. "constant": 0,
  2513. "multiplier": 1
  2514. },
  2515. {
  2516. "__type__": "cc.ShapeModule",
  2517. "enable": true,
  2518. "_shapeType": 2,
  2519. "emitFrom": 2,
  2520. "radius": 0.07,
  2521. "radiusThickness": 1,
  2522. "_angle": 0.06981317007977318,
  2523. "_arc": 6.283185307179586,
  2524. "arcMode": 0,
  2525. "arcSpread": 0,
  2526. "arcSpeed": {
  2527. "__id__": 119
  2528. },
  2529. "length": 2,
  2530. "boxThickness": {
  2531. "__type__": "cc.Vec3",
  2532. "x": 0,
  2533. "y": 0,
  2534. "z": 0
  2535. },
  2536. "_position": {
  2537. "__type__": "cc.Vec3",
  2538. "x": 0,
  2539. "y": 0,
  2540. "z": 0
  2541. },
  2542. "_rotation": {
  2543. "__type__": "cc.Vec3",
  2544. "x": 0,
  2545. "y": 0,
  2546. "z": 0
  2547. },
  2548. "_scale": {
  2549. "__type__": "cc.Vec3",
  2550. "x": 1,
  2551. "y": 1,
  2552. "z": 1
  2553. },
  2554. "alignToDirection": false,
  2555. "randomDirectionAmount": 0,
  2556. "sphericalDirectionAmount": 0,
  2557. "randomPositionAmount": 0
  2558. },
  2559. {
  2560. "__type__": "cc.CurveRange",
  2561. "mode": 0,
  2562. "constant": 1,
  2563. "multiplier": 1
  2564. },
  2565. {
  2566. "__type__": "cc.TextureAnimationModule",
  2567. "_enable": true,
  2568. "_mode": 0,
  2569. "numTilesX": 4,
  2570. "numTilesY": 1,
  2571. "animation": 0,
  2572. "randomRow": false,
  2573. "rowIndex": 0,
  2574. "frameOverTime": {
  2575. "__id__": 121
  2576. },
  2577. "startFrame": {
  2578. "__id__": 125
  2579. },
  2580. "cycleCount": 1
  2581. },
  2582. {
  2583. "__type__": "cc.CurveRange",
  2584. "mode": 1,
  2585. "curve": {
  2586. "__id__": 122
  2587. },
  2588. "multiplier": 1
  2589. },
  2590. {
  2591. "__type__": "cc.AnimationCurve",
  2592. "keyFrames": [
  2593. {
  2594. "__id__": 123
  2595. },
  2596. {
  2597. "__id__": 124
  2598. }
  2599. ],
  2600. "preWrapMode": 2,
  2601. "postWrapMode": 2
  2602. },
  2603. {
  2604. "__type__": "cc.Keyframe",
  2605. "time": 0,
  2606. "value": 1,
  2607. "inTangent": 0,
  2608. "outTangent": 0
  2609. },
  2610. {
  2611. "__type__": "cc.Keyframe",
  2612. "time": 1,
  2613. "value": 1,
  2614. "inTangent": 0,
  2615. "outTangent": 0
  2616. },
  2617. {
  2618. "__type__": "cc.CurveRange",
  2619. "mode": 0,
  2620. "constant": 0,
  2621. "multiplier": 1
  2622. },
  2623. {
  2624. "__type__": "cc.PrefabInfo",
  2625. "root": {
  2626. "__id__": 1
  2627. },
  2628. "asset": {
  2629. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2630. },
  2631. "fileId": "87g/uL8rFI9KulRkikDvb6",
  2632. "sync": false
  2633. },
  2634. {
  2635. "__type__": "cc.Node",
  2636. "_name": "Particle_102_2",
  2637. "_objFlags": 0,
  2638. "_parent": {
  2639. "__id__": 68
  2640. },
  2641. "_children": [],
  2642. "_active": true,
  2643. "_components": [
  2644. {
  2645. "__id__": 128
  2646. }
  2647. ],
  2648. "_prefab": {
  2649. "__id__": 143
  2650. },
  2651. "_opacity": 255,
  2652. "_color": {
  2653. "__type__": "cc.Color",
  2654. "r": 255,
  2655. "g": 255,
  2656. "b": 255,
  2657. "a": 255
  2658. },
  2659. "_contentSize": {
  2660. "__type__": "cc.Size",
  2661. "width": 0,
  2662. "height": 0
  2663. },
  2664. "_anchorPoint": {
  2665. "__type__": "cc.Vec2",
  2666. "x": 0.5,
  2667. "y": 0.5
  2668. },
  2669. "_trs": {
  2670. "__type__": "TypedArray",
  2671. "ctor": "Float64Array",
  2672. "array": [
  2673. -1.4,
  2674. -0.245,
  2675. 2.933,
  2676. 0.17862480198447916,
  2677. 0.7661545877851637,
  2678. 0.5955313314664984,
  2679. 0.16261230265109328,
  2680. 2.5,
  2681. 2.5,
  2682. 2.5
  2683. ]
  2684. },
  2685. "_eulerAngles": {
  2686. "__type__": "cc.Vec3",
  2687. "x": -75.13,
  2688. "y": 177.639,
  2689. "z": 27.865
  2690. },
  2691. "_skewX": 0,
  2692. "_skewY": 0,
  2693. "_is3DNode": true,
  2694. "_groupIndex": 0,
  2695. "groupIndex": 0,
  2696. "_id": ""
  2697. },
  2698. {
  2699. "__type__": "cc.ParticleSystem3D",
  2700. "_name": "",
  2701. "_objFlags": 0,
  2702. "node": {
  2703. "__id__": 127
  2704. },
  2705. "_enabled": true,
  2706. "_materials": [
  2707. {
  2708. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  2709. }
  2710. ],
  2711. "duration": 5,
  2712. "_capacity": 1000,
  2713. "loop": true,
  2714. "playOnAwake": true,
  2715. "_prewarm": false,
  2716. "_simulationSpace": 1,
  2717. "simulationSpeed": 1,
  2718. "startDelay": {
  2719. "__id__": 129
  2720. },
  2721. "startLifetime": {
  2722. "__id__": 130
  2723. },
  2724. "startColor": {
  2725. "__id__": 131
  2726. },
  2727. "scaleSpace": 1,
  2728. "startSize": {
  2729. "__id__": 132
  2730. },
  2731. "startSpeed": {
  2732. "__id__": 133
  2733. },
  2734. "startRotation": {
  2735. "__id__": 134
  2736. },
  2737. "gravityModifier": {
  2738. "__id__": 135
  2739. },
  2740. "rateOverTime": {
  2741. "__id__": 136
  2742. },
  2743. "rateOverDistance": {
  2744. "__id__": 137
  2745. },
  2746. "bursts": [],
  2747. "_shapeModule": {
  2748. "__id__": 138
  2749. },
  2750. "_textureAnimationModule": {
  2751. "__id__": 140
  2752. },
  2753. "_renderMode": 0,
  2754. "_velocityScale": 1,
  2755. "_lengthScale": 1,
  2756. "_mesh": null,
  2757. "_id": ""
  2758. },
  2759. {
  2760. "__type__": "cc.CurveRange",
  2761. "mode": 0,
  2762. "constant": 0,
  2763. "multiplier": 1
  2764. },
  2765. {
  2766. "__type__": "cc.CurveRange",
  2767. "mode": 0,
  2768. "constant": 0.01,
  2769. "multiplier": 1
  2770. },
  2771. {
  2772. "__type__": "cc.GradientRange",
  2773. "_mode": 0,
  2774. "color": {
  2775. "__type__": "cc.Color",
  2776. "r": 255,
  2777. "g": 130,
  2778. "b": 32,
  2779. "a": 255
  2780. }
  2781. },
  2782. {
  2783. "__type__": "cc.CurveRange",
  2784. "mode": 3,
  2785. "constantMin": 0.2,
  2786. "constantMax": 0.5,
  2787. "multiplier": 1
  2788. },
  2789. {
  2790. "__type__": "cc.CurveRange",
  2791. "mode": 0,
  2792. "constant": 0.01,
  2793. "multiplier": 1
  2794. },
  2795. {
  2796. "__type__": "cc.CurveRange",
  2797. "mode": 0,
  2798. "constant": 0,
  2799. "multiplier": 1
  2800. },
  2801. {
  2802. "__type__": "cc.CurveRange",
  2803. "mode": 0,
  2804. "constant": 0,
  2805. "multiplier": 1
  2806. },
  2807. {
  2808. "__type__": "cc.CurveRange",
  2809. "mode": 0,
  2810. "constant": 5000,
  2811. "multiplier": 1
  2812. },
  2813. {
  2814. "__type__": "cc.CurveRange",
  2815. "mode": 0,
  2816. "constant": 0,
  2817. "multiplier": 1
  2818. },
  2819. {
  2820. "__type__": "cc.ShapeModule",
  2821. "enable": true,
  2822. "_shapeType": 2,
  2823. "emitFrom": 0,
  2824. "radius": 0.1,
  2825. "radiusThickness": 1,
  2826. "_angle": 0.06981317007977318,
  2827. "_arc": 6.283185307179586,
  2828. "arcMode": 0,
  2829. "arcSpread": 0,
  2830. "arcSpeed": {
  2831. "__id__": 139
  2832. },
  2833. "length": 2,
  2834. "boxThickness": {
  2835. "__type__": "cc.Vec3",
  2836. "x": 0,
  2837. "y": 0,
  2838. "z": 0
  2839. },
  2840. "_position": {
  2841. "__type__": "cc.Vec3",
  2842. "x": 0,
  2843. "y": 0,
  2844. "z": 0
  2845. },
  2846. "_rotation": {
  2847. "__type__": "cc.Vec3",
  2848. "x": 0,
  2849. "y": 0,
  2850. "z": 0
  2851. },
  2852. "_scale": {
  2853. "__type__": "cc.Vec3",
  2854. "x": 1,
  2855. "y": 1,
  2856. "z": 1
  2857. },
  2858. "alignToDirection": false,
  2859. "randomDirectionAmount": 0,
  2860. "sphericalDirectionAmount": 0,
  2861. "randomPositionAmount": 0
  2862. },
  2863. {
  2864. "__type__": "cc.CurveRange",
  2865. "mode": 0,
  2866. "constant": 1,
  2867. "multiplier": 1
  2868. },
  2869. {
  2870. "__type__": "cc.TextureAnimationModule",
  2871. "_enable": true,
  2872. "_mode": 0,
  2873. "numTilesX": 4,
  2874. "numTilesY": 1,
  2875. "animation": 0,
  2876. "randomRow": false,
  2877. "rowIndex": 0,
  2878. "frameOverTime": {
  2879. "__id__": 141
  2880. },
  2881. "startFrame": {
  2882. "__id__": 142
  2883. },
  2884. "cycleCount": 1
  2885. },
  2886. {
  2887. "__type__": "cc.CurveRange",
  2888. "mode": 0,
  2889. "constant": 0,
  2890. "multiplier": 1
  2891. },
  2892. {
  2893. "__type__": "cc.CurveRange",
  2894. "mode": 0,
  2895. "constant": 0,
  2896. "multiplier": 1
  2897. },
  2898. {
  2899. "__type__": "cc.PrefabInfo",
  2900. "root": {
  2901. "__id__": 1
  2902. },
  2903. "asset": {
  2904. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  2905. },
  2906. "fileId": "10Hv2MIxJIHL9ZI3Y1bJHb",
  2907. "sync": false
  2908. },
  2909. {
  2910. "__type__": "cc.Node",
  2911. "_name": "Particle_102_2 copy",
  2912. "_objFlags": 0,
  2913. "_parent": {
  2914. "__id__": 68
  2915. },
  2916. "_children": [],
  2917. "_active": true,
  2918. "_components": [
  2919. {
  2920. "__id__": 145
  2921. }
  2922. ],
  2923. "_prefab": {
  2924. "__id__": 160
  2925. },
  2926. "_opacity": 255,
  2927. "_color": {
  2928. "__type__": "cc.Color",
  2929. "r": 255,
  2930. "g": 255,
  2931. "b": 255,
  2932. "a": 255
  2933. },
  2934. "_contentSize": {
  2935. "__type__": "cc.Size",
  2936. "width": 0,
  2937. "height": 0
  2938. },
  2939. "_anchorPoint": {
  2940. "__type__": "cc.Vec2",
  2941. "x": 0.5,
  2942. "y": 0.5
  2943. },
  2944. "_trs": {
  2945. "__type__": "TypedArray",
  2946. "ctor": "Float64Array",
  2947. "array": [
  2948. 1.451,
  2949. -0.246,
  2950. 2.753,
  2951. 0.10284279189869969,
  2952. -0.7591723647750526,
  2953. -0.613179590427999,
  2954. 0.19259146034777083,
  2955. 2.5,
  2956. 2.5,
  2957. 2.5
  2958. ]
  2959. },
  2960. "_eulerAngles": {
  2961. "__type__": "cc.Vec3",
  2962. "x": -75.721,
  2963. "y": -169.584,
  2964. "z": -23.1
  2965. },
  2966. "_skewX": 0,
  2967. "_skewY": 0,
  2968. "_is3DNode": true,
  2969. "_groupIndex": 0,
  2970. "groupIndex": 0,
  2971. "_id": ""
  2972. },
  2973. {
  2974. "__type__": "cc.ParticleSystem3D",
  2975. "_name": "",
  2976. "_objFlags": 0,
  2977. "node": {
  2978. "__id__": 144
  2979. },
  2980. "_enabled": true,
  2981. "_materials": [
  2982. {
  2983. "__uuid__": "64fb2cbb-d719-468a-b5f4-2e9733478239"
  2984. }
  2985. ],
  2986. "duration": 5,
  2987. "_capacity": 1000,
  2988. "loop": true,
  2989. "playOnAwake": true,
  2990. "_prewarm": false,
  2991. "_simulationSpace": 1,
  2992. "simulationSpeed": 1,
  2993. "startDelay": {
  2994. "__id__": 146
  2995. },
  2996. "startLifetime": {
  2997. "__id__": 147
  2998. },
  2999. "startColor": {
  3000. "__id__": 148
  3001. },
  3002. "scaleSpace": 1,
  3003. "startSize": {
  3004. "__id__": 149
  3005. },
  3006. "startSpeed": {
  3007. "__id__": 150
  3008. },
  3009. "startRotation": {
  3010. "__id__": 151
  3011. },
  3012. "gravityModifier": {
  3013. "__id__": 152
  3014. },
  3015. "rateOverTime": {
  3016. "__id__": 153
  3017. },
  3018. "rateOverDistance": {
  3019. "__id__": 154
  3020. },
  3021. "bursts": [],
  3022. "_shapeModule": {
  3023. "__id__": 155
  3024. },
  3025. "_textureAnimationModule": {
  3026. "__id__": 157
  3027. },
  3028. "_renderMode": 0,
  3029. "_velocityScale": 1,
  3030. "_lengthScale": 1,
  3031. "_mesh": null,
  3032. "_id": ""
  3033. },
  3034. {
  3035. "__type__": "cc.CurveRange",
  3036. "mode": 0,
  3037. "constant": 0,
  3038. "multiplier": 1
  3039. },
  3040. {
  3041. "__type__": "cc.CurveRange",
  3042. "mode": 0,
  3043. "constant": 0.01,
  3044. "multiplier": 1
  3045. },
  3046. {
  3047. "__type__": "cc.GradientRange",
  3048. "_mode": 0,
  3049. "color": {
  3050. "__type__": "cc.Color",
  3051. "r": 255,
  3052. "g": 130,
  3053. "b": 32,
  3054. "a": 255
  3055. }
  3056. },
  3057. {
  3058. "__type__": "cc.CurveRange",
  3059. "mode": 3,
  3060. "constantMin": 0.2,
  3061. "constantMax": 0.5,
  3062. "multiplier": 1
  3063. },
  3064. {
  3065. "__type__": "cc.CurveRange",
  3066. "mode": 0,
  3067. "constant": 0.01,
  3068. "multiplier": 1
  3069. },
  3070. {
  3071. "__type__": "cc.CurveRange",
  3072. "mode": 0,
  3073. "constant": 0,
  3074. "multiplier": 1
  3075. },
  3076. {
  3077. "__type__": "cc.CurveRange",
  3078. "mode": 0,
  3079. "constant": 0,
  3080. "multiplier": 1
  3081. },
  3082. {
  3083. "__type__": "cc.CurveRange",
  3084. "mode": 0,
  3085. "constant": 5000,
  3086. "multiplier": 1
  3087. },
  3088. {
  3089. "__type__": "cc.CurveRange",
  3090. "mode": 0,
  3091. "constant": 0,
  3092. "multiplier": 1
  3093. },
  3094. {
  3095. "__type__": "cc.ShapeModule",
  3096. "enable": true,
  3097. "_shapeType": 2,
  3098. "emitFrom": 0,
  3099. "radius": 0.1,
  3100. "radiusThickness": 1,
  3101. "_angle": 0.06981317007977318,
  3102. "_arc": 6.283185307179586,
  3103. "arcMode": 0,
  3104. "arcSpread": 0,
  3105. "arcSpeed": {
  3106. "__id__": 156
  3107. },
  3108. "length": 2,
  3109. "boxThickness": {
  3110. "__type__": "cc.Vec3",
  3111. "x": 0,
  3112. "y": 0,
  3113. "z": 0
  3114. },
  3115. "_position": {
  3116. "__type__": "cc.Vec3",
  3117. "x": 0,
  3118. "y": 0,
  3119. "z": 0
  3120. },
  3121. "_rotation": {
  3122. "__type__": "cc.Vec3",
  3123. "x": 0,
  3124. "y": 0,
  3125. "z": 0
  3126. },
  3127. "_scale": {
  3128. "__type__": "cc.Vec3",
  3129. "x": 1,
  3130. "y": 1,
  3131. "z": 1
  3132. },
  3133. "alignToDirection": false,
  3134. "randomDirectionAmount": 0,
  3135. "sphericalDirectionAmount": 0,
  3136. "randomPositionAmount": 0
  3137. },
  3138. {
  3139. "__type__": "cc.CurveRange",
  3140. "mode": 0,
  3141. "constant": 1,
  3142. "multiplier": 1
  3143. },
  3144. {
  3145. "__type__": "cc.TextureAnimationModule",
  3146. "_enable": true,
  3147. "_mode": 0,
  3148. "numTilesX": 4,
  3149. "numTilesY": 1,
  3150. "animation": 0,
  3151. "randomRow": false,
  3152. "rowIndex": 0,
  3153. "frameOverTime": {
  3154. "__id__": 158
  3155. },
  3156. "startFrame": {
  3157. "__id__": 159
  3158. },
  3159. "cycleCount": 0
  3160. },
  3161. {
  3162. "__type__": "cc.CurveRange",
  3163. "mode": 3,
  3164. "constantMin": 0,
  3165. "constantMax": 1,
  3166. "multiplier": 1
  3167. },
  3168. {
  3169. "__type__": "cc.CurveRange",
  3170. "mode": 0,
  3171. "constant": 0,
  3172. "multiplier": 1
  3173. },
  3174. {
  3175. "__type__": "cc.PrefabInfo",
  3176. "root": {
  3177. "__id__": 1
  3178. },
  3179. "asset": {
  3180. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  3181. },
  3182. "fileId": "0ckda/AR9PEr+hKx/cRBvd",
  3183. "sync": false
  3184. },
  3185. {
  3186. "__type__": "cc.PrefabInfo",
  3187. "root": {
  3188. "__id__": 1
  3189. },
  3190. "asset": {
  3191. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  3192. },
  3193. "fileId": "6cWeLQJOROIYNaQ5kh6nkw",
  3194. "sync": false
  3195. },
  3196. {
  3197. "__type__": "cc.PrefabInfo",
  3198. "root": {
  3199. "__id__": 1
  3200. },
  3201. "asset": {
  3202. "__uuid__": "58604cb6-b4f3-45f5-8d00-81e53c71d04d"
  3203. },
  3204. "fileId": "964WDEQiFCUpvmEqONj2zj",
  3205. "sync": false
  3206. }
  3207. ]