GameBg.prefab 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "GameBg",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "persistent": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "GameBg",
  16. "_objFlags": 0,
  17. "__editorExtras__": {},
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 14
  25. },
  26. {
  27. "__id__": 22
  28. },
  29. {
  30. "__id__": 46
  31. },
  32. {
  33. "__id__": 64
  34. },
  35. {
  36. "__id__": 82
  37. },
  38. {
  39. "__id__": 100
  40. }
  41. ],
  42. "_active": true,
  43. "_components": [
  44. {
  45. "__id__": 110
  46. },
  47. {
  48. "__id__": 112
  49. },
  50. {
  51. "__id__": 114
  52. }
  53. ],
  54. "_prefab": {
  55. "__id__": 116
  56. },
  57. "_lpos": {
  58. "__type__": "cc.Vec3",
  59. "x": 0,
  60. "y": 0,
  61. "z": 0
  62. },
  63. "_lrot": {
  64. "__type__": "cc.Quat",
  65. "x": 0,
  66. "y": 0,
  67. "z": 0,
  68. "w": 1
  69. },
  70. "_lscale": {
  71. "__type__": "cc.Vec3",
  72. "x": 1,
  73. "y": 1,
  74. "z": 1
  75. },
  76. "_mobility": 0,
  77. "_layer": 33554432,
  78. "_euler": {
  79. "__type__": "cc.Vec3",
  80. "x": 0,
  81. "y": 0,
  82. "z": 0
  83. },
  84. "_id": ""
  85. },
  86. {
  87. "__type__": "cc.Node",
  88. "_name": "bgLayout",
  89. "_objFlags": 0,
  90. "_parent": {
  91. "__id__": 1
  92. },
  93. "_children": [
  94. {
  95. "__id__": 3
  96. }
  97. ],
  98. "_active": true,
  99. "_components": [
  100. {
  101. "__id__": 9
  102. },
  103. {
  104. "__id__": 11
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 13
  109. },
  110. "_lpos": {
  111. "__type__": "cc.Vec3",
  112. "x": 0,
  113. "y": -610,
  114. "z": 0
  115. },
  116. "_lrot": {
  117. "__type__": "cc.Quat",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0,
  121. "w": 1
  122. },
  123. "_lscale": {
  124. "__type__": "cc.Vec3",
  125. "x": 1,
  126. "y": 1,
  127. "z": 1
  128. },
  129. "_mobility": 0,
  130. "_layer": 33554432,
  131. "_euler": {
  132. "__type__": "cc.Vec3",
  133. "x": 0,
  134. "y": 0,
  135. "z": 0
  136. },
  137. "_id": ""
  138. },
  139. {
  140. "__type__": "cc.Node",
  141. "_name": "背景-3",
  142. "_objFlags": 0,
  143. "_parent": {
  144. "__id__": 2
  145. },
  146. "_children": [],
  147. "_active": true,
  148. "_components": [
  149. {
  150. "__id__": 4
  151. },
  152. {
  153. "__id__": 6
  154. }
  155. ],
  156. "_prefab": {
  157. "__id__": 8
  158. },
  159. "_lpos": {
  160. "__type__": "cc.Vec3",
  161. "x": 0,
  162. "y": 1830,
  163. "z": 0
  164. },
  165. "_lrot": {
  166. "__type__": "cc.Quat",
  167. "x": 0,
  168. "y": 0,
  169. "z": 0,
  170. "w": 1
  171. },
  172. "_lscale": {
  173. "__type__": "cc.Vec3",
  174. "x": 1,
  175. "y": 1,
  176. "z": 1
  177. },
  178. "_mobility": 0,
  179. "_layer": 33554432,
  180. "_euler": {
  181. "__type__": "cc.Vec3",
  182. "x": 0,
  183. "y": 0,
  184. "z": 0
  185. },
  186. "_id": ""
  187. },
  188. {
  189. "__type__": "cc.UITransform",
  190. "_name": "",
  191. "_objFlags": 0,
  192. "node": {
  193. "__id__": 3
  194. },
  195. "_enabled": true,
  196. "__prefab": {
  197. "__id__": 5
  198. },
  199. "_contentSize": {
  200. "__type__": "cc.Size",
  201. "width": 1406,
  202. "height": 3660
  203. },
  204. "_anchorPoint": {
  205. "__type__": "cc.Vec2",
  206. "x": 0.5,
  207. "y": 0.5
  208. },
  209. "_id": ""
  210. },
  211. {
  212. "__type__": "cc.CompPrefabInfo",
  213. "fileId": "4aiD7m5HtDEbgekPj0Ob3C"
  214. },
  215. {
  216. "__type__": "cc.Sprite",
  217. "_name": "",
  218. "_objFlags": 0,
  219. "node": {
  220. "__id__": 3
  221. },
  222. "_enabled": true,
  223. "__prefab": {
  224. "__id__": 7
  225. },
  226. "_customMaterial": null,
  227. "_srcBlendFactor": 2,
  228. "_dstBlendFactor": 4,
  229. "_color": {
  230. "__type__": "cc.Color",
  231. "r": 255,
  232. "g": 255,
  233. "b": 255,
  234. "a": 255
  235. },
  236. "_spriteFrame": {
  237. "__uuid__": "24fc4419-ec3a-4259-ba6d-942f8273ada2@f9941",
  238. "__expectedType__": "cc.SpriteFrame"
  239. },
  240. "_type": 0,
  241. "_fillType": 0,
  242. "_sizeMode": 1,
  243. "_fillCenter": {
  244. "__type__": "cc.Vec2",
  245. "x": 0,
  246. "y": 0
  247. },
  248. "_fillStart": 0,
  249. "_fillRange": 0,
  250. "_isTrimmedMode": true,
  251. "_useGrayscale": false,
  252. "_atlas": null,
  253. "_id": ""
  254. },
  255. {
  256. "__type__": "cc.CompPrefabInfo",
  257. "fileId": "42KXPFQzxDq6U4rvyQ8bcd"
  258. },
  259. {
  260. "__type__": "cc.PrefabInfo",
  261. "root": {
  262. "__id__": 1
  263. },
  264. "asset": {
  265. "__id__": 0
  266. },
  267. "fileId": "45Lr2gMKZAQ5HeqF1HFoix",
  268. "instance": null,
  269. "targetOverrides": null,
  270. "nestedPrefabInstanceRoots": null
  271. },
  272. {
  273. "__type__": "cc.UITransform",
  274. "_name": "",
  275. "_objFlags": 0,
  276. "node": {
  277. "__id__": 2
  278. },
  279. "_enabled": true,
  280. "__prefab": {
  281. "__id__": 10
  282. },
  283. "_contentSize": {
  284. "__type__": "cc.Size",
  285. "width": 1406,
  286. "height": 3660
  287. },
  288. "_anchorPoint": {
  289. "__type__": "cc.Vec2",
  290. "x": 0.5,
  291. "y": 0
  292. },
  293. "_id": ""
  294. },
  295. {
  296. "__type__": "cc.CompPrefabInfo",
  297. "fileId": "4575XO6INH0aSWlwlDmDX2"
  298. },
  299. {
  300. "__type__": "cc.Layout",
  301. "_name": "",
  302. "_objFlags": 0,
  303. "node": {
  304. "__id__": 2
  305. },
  306. "_enabled": true,
  307. "__prefab": {
  308. "__id__": 12
  309. },
  310. "_resizeMode": 1,
  311. "_layoutType": 2,
  312. "_cellSize": {
  313. "__type__": "cc.Size",
  314. "width": 40,
  315. "height": 40
  316. },
  317. "_startAxis": 0,
  318. "_paddingLeft": 0,
  319. "_paddingRight": 0,
  320. "_paddingTop": 0,
  321. "_paddingBottom": 0,
  322. "_spacingX": 0,
  323. "_spacingY": 0,
  324. "_verticalDirection": 1,
  325. "_horizontalDirection": 0,
  326. "_constraint": 0,
  327. "_constraintNum": 2,
  328. "_affectedByScale": false,
  329. "_isAlign": false,
  330. "_id": ""
  331. },
  332. {
  333. "__type__": "cc.CompPrefabInfo",
  334. "fileId": "bdk7dfHdVNzYKNOx0e14/N"
  335. },
  336. {
  337. "__type__": "cc.PrefabInfo",
  338. "root": {
  339. "__id__": 1
  340. },
  341. "asset": {
  342. "__id__": 0
  343. },
  344. "fileId": "5aljWY7lpF+ZBN0DdPuU9h",
  345. "instance": null,
  346. "targetOverrides": null,
  347. "nestedPrefabInstanceRoots": null
  348. },
  349. {
  350. "__type__": "cc.Node",
  351. "_name": "山海",
  352. "_objFlags": 0,
  353. "_parent": {
  354. "__id__": 1
  355. },
  356. "_children": [],
  357. "_active": true,
  358. "_components": [
  359. {
  360. "__id__": 15
  361. },
  362. {
  363. "__id__": 17
  364. },
  365. {
  366. "__id__": 19
  367. }
  368. ],
  369. "_prefab": {
  370. "__id__": 21
  371. },
  372. "_lpos": {
  373. "__type__": "cc.Vec3",
  374. "x": 0,
  375. "y": -400.5,
  376. "z": 0
  377. },
  378. "_lrot": {
  379. "__type__": "cc.Quat",
  380. "x": 0,
  381. "y": 0,
  382. "z": 0,
  383. "w": 1
  384. },
  385. "_lscale": {
  386. "__type__": "cc.Vec3",
  387. "x": 1,
  388. "y": 1,
  389. "z": 1
  390. },
  391. "_mobility": 0,
  392. "_layer": 33554432,
  393. "_euler": {
  394. "__type__": "cc.Vec3",
  395. "x": 0,
  396. "y": 0,
  397. "z": 0
  398. },
  399. "_id": ""
  400. },
  401. {
  402. "__type__": "cc.UITransform",
  403. "_name": "",
  404. "_objFlags": 0,
  405. "node": {
  406. "__id__": 14
  407. },
  408. "_enabled": true,
  409. "__prefab": {
  410. "__id__": 16
  411. },
  412. "_contentSize": {
  413. "__type__": "cc.Size",
  414. "width": 1500,
  415. "height": 419
  416. },
  417. "_anchorPoint": {
  418. "__type__": "cc.Vec2",
  419. "x": 0.5,
  420. "y": 0.5
  421. },
  422. "_id": ""
  423. },
  424. {
  425. "__type__": "cc.CompPrefabInfo",
  426. "fileId": "e01p1cuLRLJZRz0UkCaaE8"
  427. },
  428. {
  429. "__type__": "cc.Sprite",
  430. "_name": "",
  431. "_objFlags": 0,
  432. "node": {
  433. "__id__": 14
  434. },
  435. "_enabled": true,
  436. "__prefab": {
  437. "__id__": 18
  438. },
  439. "_customMaterial": null,
  440. "_srcBlendFactor": 2,
  441. "_dstBlendFactor": 4,
  442. "_color": {
  443. "__type__": "cc.Color",
  444. "r": 255,
  445. "g": 255,
  446. "b": 255,
  447. "a": 255
  448. },
  449. "_spriteFrame": {
  450. "__uuid__": "42aa7213-6aab-44fc-b325-fc4cf7d252d3@f9941",
  451. "__expectedType__": "cc.SpriteFrame"
  452. },
  453. "_type": 0,
  454. "_fillType": 0,
  455. "_sizeMode": 1,
  456. "_fillCenter": {
  457. "__type__": "cc.Vec2",
  458. "x": 0,
  459. "y": 0
  460. },
  461. "_fillStart": 0,
  462. "_fillRange": 0,
  463. "_isTrimmedMode": true,
  464. "_useGrayscale": false,
  465. "_atlas": null,
  466. "_id": ""
  467. },
  468. {
  469. "__type__": "cc.CompPrefabInfo",
  470. "fileId": "20gnD7XWpGfKDOMSzga/UW"
  471. },
  472. {
  473. "__type__": "cc.Widget",
  474. "_name": "",
  475. "_objFlags": 0,
  476. "node": {
  477. "__id__": 14
  478. },
  479. "_enabled": true,
  480. "__prefab": {
  481. "__id__": 20
  482. },
  483. "_alignFlags": 4,
  484. "_target": null,
  485. "_left": 0,
  486. "_right": 0,
  487. "_top": 0,
  488. "_bottom": 0,
  489. "_horizontalCenter": 0,
  490. "_verticalCenter": 0,
  491. "_isAbsLeft": true,
  492. "_isAbsRight": true,
  493. "_isAbsTop": true,
  494. "_isAbsBottom": true,
  495. "_isAbsHorizontalCenter": true,
  496. "_isAbsVerticalCenter": true,
  497. "_originalWidth": 0,
  498. "_originalHeight": 0,
  499. "_alignMode": 2,
  500. "_lockFlags": 0,
  501. "_id": ""
  502. },
  503. {
  504. "__type__": "cc.CompPrefabInfo",
  505. "fileId": "48a80cfdhGy5/RlB9idPyb"
  506. },
  507. {
  508. "__type__": "cc.PrefabInfo",
  509. "root": {
  510. "__id__": 1
  511. },
  512. "asset": {
  513. "__id__": 0
  514. },
  515. "fileId": "984KOCArRDRqi1eI2lM2rv",
  516. "instance": null,
  517. "targetOverrides": null,
  518. "nestedPrefabInstanceRoots": null
  519. },
  520. {
  521. "__type__": "cc.Node",
  522. "_name": "标尺",
  523. "_objFlags": 0,
  524. "_parent": {
  525. "__id__": 1
  526. },
  527. "_children": [
  528. {
  529. "__id__": 23
  530. },
  531. {
  532. "__id__": 29
  533. },
  534. {
  535. "__id__": 35
  536. }
  537. ],
  538. "_active": true,
  539. "_components": [
  540. {
  541. "__id__": 41
  542. },
  543. {
  544. "__id__": 43
  545. }
  546. ],
  547. "_prefab": {
  548. "__id__": 45
  549. },
  550. "_lpos": {
  551. "__type__": "cc.Vec3",
  552. "x": -575,
  553. "y": -140,
  554. "z": 0
  555. },
  556. "_lrot": {
  557. "__type__": "cc.Quat",
  558. "x": 0,
  559. "y": 0,
  560. "z": 0,
  561. "w": 1
  562. },
  563. "_lscale": {
  564. "__type__": "cc.Vec3",
  565. "x": 1,
  566. "y": 1,
  567. "z": 1
  568. },
  569. "_mobility": 0,
  570. "_layer": 33554432,
  571. "_euler": {
  572. "__type__": "cc.Vec3",
  573. "x": 0,
  574. "y": 0,
  575. "z": 0
  576. },
  577. "_id": ""
  578. },
  579. {
  580. "__type__": "cc.Node",
  581. "_name": "4",
  582. "_objFlags": 0,
  583. "_parent": {
  584. "__id__": 22
  585. },
  586. "_children": [],
  587. "_active": true,
  588. "_components": [
  589. {
  590. "__id__": 24
  591. },
  592. {
  593. "__id__": 26
  594. }
  595. ],
  596. "_prefab": {
  597. "__id__": 28
  598. },
  599. "_lpos": {
  600. "__type__": "cc.Vec3",
  601. "x": 185,
  602. "y": 0,
  603. "z": 0
  604. },
  605. "_lrot": {
  606. "__type__": "cc.Quat",
  607. "x": 0,
  608. "y": 0,
  609. "z": 0,
  610. "w": 1
  611. },
  612. "_lscale": {
  613. "__type__": "cc.Vec3",
  614. "x": 1,
  615. "y": 1,
  616. "z": 1
  617. },
  618. "_mobility": 0,
  619. "_layer": 33554432,
  620. "_euler": {
  621. "__type__": "cc.Vec3",
  622. "x": 0,
  623. "y": 0,
  624. "z": 0
  625. },
  626. "_id": ""
  627. },
  628. {
  629. "__type__": "cc.UITransform",
  630. "_name": "",
  631. "_objFlags": 0,
  632. "node": {
  633. "__id__": 23
  634. },
  635. "_enabled": true,
  636. "__prefab": {
  637. "__id__": 25
  638. },
  639. "_contentSize": {
  640. "__type__": "cc.Size",
  641. "width": 253,
  642. "height": 372
  643. },
  644. "_anchorPoint": {
  645. "__type__": "cc.Vec2",
  646. "x": 0.5,
  647. "y": 0
  648. },
  649. "_id": ""
  650. },
  651. {
  652. "__type__": "cc.CompPrefabInfo",
  653. "fileId": "0c/+GR5tdB94y4xIQ49Rhp"
  654. },
  655. {
  656. "__type__": "cc.Sprite",
  657. "_name": "",
  658. "_objFlags": 0,
  659. "node": {
  660. "__id__": 23
  661. },
  662. "_enabled": true,
  663. "__prefab": {
  664. "__id__": 27
  665. },
  666. "_customMaterial": null,
  667. "_srcBlendFactor": 2,
  668. "_dstBlendFactor": 4,
  669. "_color": {
  670. "__type__": "cc.Color",
  671. "r": 255,
  672. "g": 255,
  673. "b": 255,
  674. "a": 255
  675. },
  676. "_spriteFrame": {
  677. "__uuid__": "5497a090-d682-4bab-bb4e-ab12892462d5@f9941",
  678. "__expectedType__": "cc.SpriteFrame"
  679. },
  680. "_type": 0,
  681. "_fillType": 0,
  682. "_sizeMode": 1,
  683. "_fillCenter": {
  684. "__type__": "cc.Vec2",
  685. "x": 0,
  686. "y": 0
  687. },
  688. "_fillStart": 0,
  689. "_fillRange": 0,
  690. "_isTrimmedMode": true,
  691. "_useGrayscale": false,
  692. "_atlas": null,
  693. "_id": ""
  694. },
  695. {
  696. "__type__": "cc.CompPrefabInfo",
  697. "fileId": "01hBF/NWVDyoJv9NbXsstp"
  698. },
  699. {
  700. "__type__": "cc.PrefabInfo",
  701. "root": {
  702. "__id__": 1
  703. },
  704. "asset": {
  705. "__id__": 0
  706. },
  707. "fileId": "08sJ2JVWZEdJRq0Z1d9Mt0",
  708. "instance": null,
  709. "targetOverrides": null,
  710. "nestedPrefabInstanceRoots": null
  711. },
  712. {
  713. "__type__": "cc.Node",
  714. "_name": "5",
  715. "_objFlags": 0,
  716. "_parent": {
  717. "__id__": 22
  718. },
  719. "_children": [],
  720. "_active": true,
  721. "_components": [
  722. {
  723. "__id__": 30
  724. },
  725. {
  726. "__id__": 32
  727. }
  728. ],
  729. "_prefab": {
  730. "__id__": 34
  731. },
  732. "_lpos": {
  733. "__type__": "cc.Vec3",
  734. "x": 625,
  735. "y": 0,
  736. "z": 0
  737. },
  738. "_lrot": {
  739. "__type__": "cc.Quat",
  740. "x": 0,
  741. "y": 0,
  742. "z": 0,
  743. "w": 1
  744. },
  745. "_lscale": {
  746. "__type__": "cc.Vec3",
  747. "x": 1,
  748. "y": 1,
  749. "z": 1
  750. },
  751. "_mobility": 0,
  752. "_layer": 33554432,
  753. "_euler": {
  754. "__type__": "cc.Vec3",
  755. "x": 0,
  756. "y": 0,
  757. "z": 0
  758. },
  759. "_id": ""
  760. },
  761. {
  762. "__type__": "cc.UITransform",
  763. "_name": "",
  764. "_objFlags": 0,
  765. "node": {
  766. "__id__": 29
  767. },
  768. "_enabled": true,
  769. "__prefab": {
  770. "__id__": 31
  771. },
  772. "_contentSize": {
  773. "__type__": "cc.Size",
  774. "width": 304,
  775. "height": 448
  776. },
  777. "_anchorPoint": {
  778. "__type__": "cc.Vec2",
  779. "x": 0.5,
  780. "y": 0
  781. },
  782. "_id": ""
  783. },
  784. {
  785. "__type__": "cc.CompPrefabInfo",
  786. "fileId": "60BIec7JlGiafErwuHO5MQ"
  787. },
  788. {
  789. "__type__": "cc.Sprite",
  790. "_name": "",
  791. "_objFlags": 0,
  792. "node": {
  793. "__id__": 29
  794. },
  795. "_enabled": true,
  796. "__prefab": {
  797. "__id__": 33
  798. },
  799. "_customMaterial": null,
  800. "_srcBlendFactor": 2,
  801. "_dstBlendFactor": 4,
  802. "_color": {
  803. "__type__": "cc.Color",
  804. "r": 255,
  805. "g": 255,
  806. "b": 255,
  807. "a": 255
  808. },
  809. "_spriteFrame": {
  810. "__uuid__": "e7ada4f4-f1ac-48e6-ad87-92b6d40b089a@f9941",
  811. "__expectedType__": "cc.SpriteFrame"
  812. },
  813. "_type": 0,
  814. "_fillType": 0,
  815. "_sizeMode": 1,
  816. "_fillCenter": {
  817. "__type__": "cc.Vec2",
  818. "x": 0,
  819. "y": 0
  820. },
  821. "_fillStart": 0,
  822. "_fillRange": 0,
  823. "_isTrimmedMode": true,
  824. "_useGrayscale": false,
  825. "_atlas": null,
  826. "_id": ""
  827. },
  828. {
  829. "__type__": "cc.CompPrefabInfo",
  830. "fileId": "f05mpIWmBB6pkvI8UFrHsf"
  831. },
  832. {
  833. "__type__": "cc.PrefabInfo",
  834. "root": {
  835. "__id__": 1
  836. },
  837. "asset": {
  838. "__id__": 0
  839. },
  840. "fileId": "f3TBK79T1IAJO/rzq3VF+Y",
  841. "instance": null,
  842. "targetOverrides": null,
  843. "nestedPrefabInstanceRoots": null
  844. },
  845. {
  846. "__type__": "cc.Node",
  847. "_name": "6",
  848. "_objFlags": 0,
  849. "_parent": {
  850. "__id__": 22
  851. },
  852. "_children": [],
  853. "_active": true,
  854. "_components": [
  855. {
  856. "__id__": 36
  857. },
  858. {
  859. "__id__": 38
  860. }
  861. ],
  862. "_prefab": {
  863. "__id__": 40
  864. },
  865. "_lpos": {
  866. "__type__": "cc.Vec3",
  867. "x": 1065,
  868. "y": 0,
  869. "z": 0
  870. },
  871. "_lrot": {
  872. "__type__": "cc.Quat",
  873. "x": 0,
  874. "y": 0,
  875. "z": 0,
  876. "w": 1
  877. },
  878. "_lscale": {
  879. "__type__": "cc.Vec3",
  880. "x": 1,
  881. "y": 1,
  882. "z": 1
  883. },
  884. "_mobility": 0,
  885. "_layer": 33554432,
  886. "_euler": {
  887. "__type__": "cc.Vec3",
  888. "x": 0,
  889. "y": 0,
  890. "z": 0
  891. },
  892. "_id": ""
  893. },
  894. {
  895. "__type__": "cc.UITransform",
  896. "_name": "",
  897. "_objFlags": 0,
  898. "node": {
  899. "__id__": 35
  900. },
  901. "_enabled": true,
  902. "__prefab": {
  903. "__id__": 37
  904. },
  905. "_contentSize": {
  906. "__type__": "cc.Size",
  907. "width": 250,
  908. "height": 368
  909. },
  910. "_anchorPoint": {
  911. "__type__": "cc.Vec2",
  912. "x": 0.5,
  913. "y": 0
  914. },
  915. "_id": ""
  916. },
  917. {
  918. "__type__": "cc.CompPrefabInfo",
  919. "fileId": "ac3UP+fANABrVraH6zdXTX"
  920. },
  921. {
  922. "__type__": "cc.Sprite",
  923. "_name": "",
  924. "_objFlags": 0,
  925. "node": {
  926. "__id__": 35
  927. },
  928. "_enabled": true,
  929. "__prefab": {
  930. "__id__": 39
  931. },
  932. "_customMaterial": null,
  933. "_srcBlendFactor": 2,
  934. "_dstBlendFactor": 4,
  935. "_color": {
  936. "__type__": "cc.Color",
  937. "r": 255,
  938. "g": 255,
  939. "b": 255,
  940. "a": 255
  941. },
  942. "_spriteFrame": {
  943. "__uuid__": "123859c7-e0ff-45c0-b28e-c3456679f264@f9941",
  944. "__expectedType__": "cc.SpriteFrame"
  945. },
  946. "_type": 0,
  947. "_fillType": 0,
  948. "_sizeMode": 1,
  949. "_fillCenter": {
  950. "__type__": "cc.Vec2",
  951. "x": 0,
  952. "y": 0
  953. },
  954. "_fillStart": 0,
  955. "_fillRange": 0,
  956. "_isTrimmedMode": true,
  957. "_useGrayscale": false,
  958. "_atlas": null,
  959. "_id": ""
  960. },
  961. {
  962. "__type__": "cc.CompPrefabInfo",
  963. "fileId": "f7KQwPLflMEpOI4IL58VI5"
  964. },
  965. {
  966. "__type__": "cc.PrefabInfo",
  967. "root": {
  968. "__id__": 1
  969. },
  970. "asset": {
  971. "__id__": 0
  972. },
  973. "fileId": "68BsJ5rsJG+Zb7BYw6hCNW",
  974. "instance": null,
  975. "targetOverrides": null,
  976. "nestedPrefabInstanceRoots": null
  977. },
  978. {
  979. "__type__": "cc.UITransform",
  980. "_name": "",
  981. "_objFlags": 0,
  982. "node": {
  983. "__id__": 22
  984. },
  985. "_enabled": true,
  986. "__prefab": {
  987. "__id__": 42
  988. },
  989. "_contentSize": {
  990. "__type__": "cc.Size",
  991. "width": 120,
  992. "height": 2067
  993. },
  994. "_anchorPoint": {
  995. "__type__": "cc.Vec2",
  996. "x": 0.5,
  997. "y": 0
  998. },
  999. "_id": ""
  1000. },
  1001. {
  1002. "__type__": "cc.CompPrefabInfo",
  1003. "fileId": "0eNLPqS5dOq5i5l0AqROFC"
  1004. },
  1005. {
  1006. "__type__": "cc.Sprite",
  1007. "_name": "",
  1008. "_objFlags": 0,
  1009. "node": {
  1010. "__id__": 22
  1011. },
  1012. "_enabled": true,
  1013. "__prefab": {
  1014. "__id__": 44
  1015. },
  1016. "_customMaterial": null,
  1017. "_srcBlendFactor": 2,
  1018. "_dstBlendFactor": 4,
  1019. "_color": {
  1020. "__type__": "cc.Color",
  1021. "r": 255,
  1022. "g": 255,
  1023. "b": 255,
  1024. "a": 255
  1025. },
  1026. "_spriteFrame": {
  1027. "__uuid__": "b6ca6a93-2ff1-4e95-8a91-87e3ed28d7b8@f9941",
  1028. "__expectedType__": "cc.SpriteFrame"
  1029. },
  1030. "_type": 0,
  1031. "_fillType": 0,
  1032. "_sizeMode": 1,
  1033. "_fillCenter": {
  1034. "__type__": "cc.Vec2",
  1035. "x": 0,
  1036. "y": 0
  1037. },
  1038. "_fillStart": 0,
  1039. "_fillRange": 0,
  1040. "_isTrimmedMode": true,
  1041. "_useGrayscale": false,
  1042. "_atlas": null,
  1043. "_id": ""
  1044. },
  1045. {
  1046. "__type__": "cc.CompPrefabInfo",
  1047. "fileId": "45WFA+BJFIz5hzZvpQfTlf"
  1048. },
  1049. {
  1050. "__type__": "cc.PrefabInfo",
  1051. "root": {
  1052. "__id__": 1
  1053. },
  1054. "asset": {
  1055. "__id__": 0
  1056. },
  1057. "fileId": "24EyFUfThJ8a/WDR1xMd0E",
  1058. "instance": null,
  1059. "targetOverrides": null,
  1060. "nestedPrefabInstanceRoots": null
  1061. },
  1062. {
  1063. "__type__": "cc.Node",
  1064. "_name": "1",
  1065. "_objFlags": 0,
  1066. "_parent": {
  1067. "__id__": 1
  1068. },
  1069. "_children": [
  1070. {
  1071. "__id__": 47
  1072. },
  1073. {
  1074. "__id__": 53
  1075. }
  1076. ],
  1077. "_active": true,
  1078. "_components": [
  1079. {
  1080. "__id__": 59
  1081. },
  1082. {
  1083. "__id__": 61
  1084. }
  1085. ],
  1086. "_prefab": {
  1087. "__id__": 63
  1088. },
  1089. "_lpos": {
  1090. "__type__": "cc.Vec3",
  1091. "x": -390,
  1092. "y": -461.5,
  1093. "z": 0
  1094. },
  1095. "_lrot": {
  1096. "__type__": "cc.Quat",
  1097. "x": 0,
  1098. "y": 0,
  1099. "z": 0,
  1100. "w": 1
  1101. },
  1102. "_lscale": {
  1103. "__type__": "cc.Vec3",
  1104. "x": 1,
  1105. "y": 1,
  1106. "z": 1
  1107. },
  1108. "_mobility": 0,
  1109. "_layer": 33554432,
  1110. "_euler": {
  1111. "__type__": "cc.Vec3",
  1112. "x": 0,
  1113. "y": 0,
  1114. "z": 0
  1115. },
  1116. "_id": ""
  1117. },
  1118. {
  1119. "__type__": "cc.Node",
  1120. "_name": "编组 2",
  1121. "_objFlags": 0,
  1122. "_parent": {
  1123. "__id__": 46
  1124. },
  1125. "_children": [],
  1126. "_active": true,
  1127. "_components": [
  1128. {
  1129. "__id__": 48
  1130. },
  1131. {
  1132. "__id__": 50
  1133. }
  1134. ],
  1135. "_prefab": {
  1136. "__id__": 52
  1137. },
  1138. "_lpos": {
  1139. "__type__": "cc.Vec3",
  1140. "x": 0,
  1141. "y": 40,
  1142. "z": 0
  1143. },
  1144. "_lrot": {
  1145. "__type__": "cc.Quat",
  1146. "x": 0,
  1147. "y": 0,
  1148. "z": 0,
  1149. "w": 1
  1150. },
  1151. "_lscale": {
  1152. "__type__": "cc.Vec3",
  1153. "x": 1,
  1154. "y": 1,
  1155. "z": 1
  1156. },
  1157. "_mobility": 0,
  1158. "_layer": 33554432,
  1159. "_euler": {
  1160. "__type__": "cc.Vec3",
  1161. "x": 0,
  1162. "y": 0,
  1163. "z": 0
  1164. },
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.UITransform",
  1169. "_name": "",
  1170. "_objFlags": 0,
  1171. "node": {
  1172. "__id__": 47
  1173. },
  1174. "_enabled": true,
  1175. "__prefab": {
  1176. "__id__": 49
  1177. },
  1178. "_contentSize": {
  1179. "__type__": "cc.Size",
  1180. "width": 220,
  1181. "height": 76
  1182. },
  1183. "_anchorPoint": {
  1184. "__type__": "cc.Vec2",
  1185. "x": 0.5,
  1186. "y": 0.5
  1187. },
  1188. "_id": ""
  1189. },
  1190. {
  1191. "__type__": "cc.CompPrefabInfo",
  1192. "fileId": "f22vn006RN5qIuz1c0U+uJ"
  1193. },
  1194. {
  1195. "__type__": "cc.Sprite",
  1196. "_name": "",
  1197. "_objFlags": 0,
  1198. "node": {
  1199. "__id__": 47
  1200. },
  1201. "_enabled": true,
  1202. "__prefab": {
  1203. "__id__": 51
  1204. },
  1205. "_customMaterial": null,
  1206. "_srcBlendFactor": 2,
  1207. "_dstBlendFactor": 4,
  1208. "_color": {
  1209. "__type__": "cc.Color",
  1210. "r": 255,
  1211. "g": 255,
  1212. "b": 255,
  1213. "a": 255
  1214. },
  1215. "_spriteFrame": {
  1216. "__uuid__": "8865c79f-baa9-4aa7-8dcf-1f9fed2e32ea@f9941",
  1217. "__expectedType__": "cc.SpriteFrame"
  1218. },
  1219. "_type": 0,
  1220. "_fillType": 0,
  1221. "_sizeMode": 1,
  1222. "_fillCenter": {
  1223. "__type__": "cc.Vec2",
  1224. "x": 0,
  1225. "y": 0
  1226. },
  1227. "_fillStart": 0,
  1228. "_fillRange": 0,
  1229. "_isTrimmedMode": true,
  1230. "_useGrayscale": false,
  1231. "_atlas": null,
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.CompPrefabInfo",
  1236. "fileId": "beGvycCDtCA4j5EYC9i4Q/"
  1237. },
  1238. {
  1239. "__type__": "cc.PrefabInfo",
  1240. "root": {
  1241. "__id__": 1
  1242. },
  1243. "asset": {
  1244. "__id__": 0
  1245. },
  1246. "fileId": "6fdrZx0P9BE6uIg0GoQQh/",
  1247. "instance": null,
  1248. "targetOverrides": null,
  1249. "nestedPrefabInstanceRoots": null
  1250. },
  1251. {
  1252. "__type__": "cc.Node",
  1253. "_name": "timeLab",
  1254. "_objFlags": 0,
  1255. "_parent": {
  1256. "__id__": 46
  1257. },
  1258. "_children": [],
  1259. "_active": true,
  1260. "_components": [
  1261. {
  1262. "__id__": 54
  1263. },
  1264. {
  1265. "__id__": 56
  1266. }
  1267. ],
  1268. "_prefab": {
  1269. "__id__": 58
  1270. },
  1271. "_lpos": {
  1272. "__type__": "cc.Vec3",
  1273. "x": 0,
  1274. "y": -60,
  1275. "z": 0
  1276. },
  1277. "_lrot": {
  1278. "__type__": "cc.Quat",
  1279. "x": 0,
  1280. "y": 0,
  1281. "z": 0,
  1282. "w": 1
  1283. },
  1284. "_lscale": {
  1285. "__type__": "cc.Vec3",
  1286. "x": 1,
  1287. "y": 1,
  1288. "z": 1
  1289. },
  1290. "_mobility": 0,
  1291. "_layer": 33554432,
  1292. "_euler": {
  1293. "__type__": "cc.Vec3",
  1294. "x": 0,
  1295. "y": 0,
  1296. "z": 0
  1297. },
  1298. "_id": ""
  1299. },
  1300. {
  1301. "__type__": "cc.UITransform",
  1302. "_name": "",
  1303. "_objFlags": 0,
  1304. "node": {
  1305. "__id__": 53
  1306. },
  1307. "_enabled": true,
  1308. "__prefab": {
  1309. "__id__": 55
  1310. },
  1311. "_contentSize": {
  1312. "__type__": "cc.Size",
  1313. "width": 160.12,
  1314. "height": 100.8
  1315. },
  1316. "_anchorPoint": {
  1317. "__type__": "cc.Vec2",
  1318. "x": 0.5,
  1319. "y": 0.5
  1320. },
  1321. "_id": ""
  1322. },
  1323. {
  1324. "__type__": "cc.CompPrefabInfo",
  1325. "fileId": "a3Hcv9bxRFl6KTUE1uQUl6"
  1326. },
  1327. {
  1328. "__type__": "cc.Label",
  1329. "_name": "",
  1330. "_objFlags": 0,
  1331. "node": {
  1332. "__id__": 53
  1333. },
  1334. "_enabled": true,
  1335. "__prefab": {
  1336. "__id__": 57
  1337. },
  1338. "_customMaterial": null,
  1339. "_srcBlendFactor": 2,
  1340. "_dstBlendFactor": 4,
  1341. "_color": {
  1342. "__type__": "cc.Color",
  1343. "r": 0,
  1344. "g": 0,
  1345. "b": 0,
  1346. "a": 255
  1347. },
  1348. "_string": "80%",
  1349. "_horizontalAlign": 1,
  1350. "_verticalAlign": 1,
  1351. "_actualFontSize": 80,
  1352. "_fontSize": 80,
  1353. "_fontFamily": "Arial",
  1354. "_lineHeight": 80,
  1355. "_overflow": 0,
  1356. "_enableWrapText": false,
  1357. "_font": null,
  1358. "_isSystemFontUsed": true,
  1359. "_spacingX": 0,
  1360. "_isItalic": false,
  1361. "_isBold": false,
  1362. "_isUnderline": false,
  1363. "_underlineHeight": 2,
  1364. "_cacheMode": 0,
  1365. "_id": ""
  1366. },
  1367. {
  1368. "__type__": "cc.CompPrefabInfo",
  1369. "fileId": "a1QO01ypZIp69a9Mp1DqHQ"
  1370. },
  1371. {
  1372. "__type__": "cc.PrefabInfo",
  1373. "root": {
  1374. "__id__": 1
  1375. },
  1376. "asset": {
  1377. "__id__": 0
  1378. },
  1379. "fileId": "8fXhngngZM0pohutSSJpjP",
  1380. "instance": null,
  1381. "targetOverrides": null,
  1382. "nestedPrefabInstanceRoots": null
  1383. },
  1384. {
  1385. "__type__": "cc.UITransform",
  1386. "_name": "",
  1387. "_objFlags": 0,
  1388. "node": {
  1389. "__id__": 46
  1390. },
  1391. "_enabled": true,
  1392. "__prefab": {
  1393. "__id__": 60
  1394. },
  1395. "_contentSize": {
  1396. "__type__": "cc.Size",
  1397. "width": 316,
  1398. "height": 264
  1399. },
  1400. "_anchorPoint": {
  1401. "__type__": "cc.Vec2",
  1402. "x": 0.5,
  1403. "y": 0.5
  1404. },
  1405. "_id": ""
  1406. },
  1407. {
  1408. "__type__": "cc.CompPrefabInfo",
  1409. "fileId": "2fX2rOIzRCpLkOzNzURZfV"
  1410. },
  1411. {
  1412. "__type__": "cc.Sprite",
  1413. "_name": "",
  1414. "_objFlags": 0,
  1415. "node": {
  1416. "__id__": 46
  1417. },
  1418. "_enabled": true,
  1419. "__prefab": {
  1420. "__id__": 62
  1421. },
  1422. "_customMaterial": null,
  1423. "_srcBlendFactor": 2,
  1424. "_dstBlendFactor": 4,
  1425. "_color": {
  1426. "__type__": "cc.Color",
  1427. "r": 255,
  1428. "g": 255,
  1429. "b": 255,
  1430. "a": 255
  1431. },
  1432. "_spriteFrame": {
  1433. "__uuid__": "8e29118f-42ed-4c22-ba16-749678427760@f9941",
  1434. "__expectedType__": "cc.SpriteFrame"
  1435. },
  1436. "_type": 0,
  1437. "_fillType": 0,
  1438. "_sizeMode": 0,
  1439. "_fillCenter": {
  1440. "__type__": "cc.Vec2",
  1441. "x": 0,
  1442. "y": 0
  1443. },
  1444. "_fillStart": 0,
  1445. "_fillRange": 0,
  1446. "_isTrimmedMode": true,
  1447. "_useGrayscale": false,
  1448. "_atlas": null,
  1449. "_id": ""
  1450. },
  1451. {
  1452. "__type__": "cc.CompPrefabInfo",
  1453. "fileId": "70LFk2eTRMRpcasVi4VrIH"
  1454. },
  1455. {
  1456. "__type__": "cc.PrefabInfo",
  1457. "root": {
  1458. "__id__": 1
  1459. },
  1460. "asset": {
  1461. "__id__": 0
  1462. },
  1463. "fileId": "41mgVta9hLBZl5yxN5hDb1",
  1464. "instance": null,
  1465. "targetOverrides": null,
  1466. "nestedPrefabInstanceRoots": null
  1467. },
  1468. {
  1469. "__type__": "cc.Node",
  1470. "_name": "2",
  1471. "_objFlags": 0,
  1472. "_parent": {
  1473. "__id__": 1
  1474. },
  1475. "_children": [
  1476. {
  1477. "__id__": 65
  1478. },
  1479. {
  1480. "__id__": 71
  1481. }
  1482. ],
  1483. "_active": true,
  1484. "_components": [
  1485. {
  1486. "__id__": 77
  1487. },
  1488. {
  1489. "__id__": 79
  1490. }
  1491. ],
  1492. "_prefab": {
  1493. "__id__": 81
  1494. },
  1495. "_lpos": {
  1496. "__type__": "cc.Vec3",
  1497. "x": 50,
  1498. "y": -461.5,
  1499. "z": 0
  1500. },
  1501. "_lrot": {
  1502. "__type__": "cc.Quat",
  1503. "x": 0,
  1504. "y": 0,
  1505. "z": 0,
  1506. "w": 1
  1507. },
  1508. "_lscale": {
  1509. "__type__": "cc.Vec3",
  1510. "x": 1,
  1511. "y": 1,
  1512. "z": 1
  1513. },
  1514. "_mobility": 0,
  1515. "_layer": 33554432,
  1516. "_euler": {
  1517. "__type__": "cc.Vec3",
  1518. "x": 0,
  1519. "y": 0,
  1520. "z": 0
  1521. },
  1522. "_id": ""
  1523. },
  1524. {
  1525. "__type__": "cc.Node",
  1526. "_name": "编组 2",
  1527. "_objFlags": 0,
  1528. "_parent": {
  1529. "__id__": 64
  1530. },
  1531. "_children": [],
  1532. "_active": true,
  1533. "_components": [
  1534. {
  1535. "__id__": 66
  1536. },
  1537. {
  1538. "__id__": 68
  1539. }
  1540. ],
  1541. "_prefab": {
  1542. "__id__": 70
  1543. },
  1544. "_lpos": {
  1545. "__type__": "cc.Vec3",
  1546. "x": 0,
  1547. "y": 40,
  1548. "z": 0
  1549. },
  1550. "_lrot": {
  1551. "__type__": "cc.Quat",
  1552. "x": 0,
  1553. "y": 0,
  1554. "z": 0,
  1555. "w": 1
  1556. },
  1557. "_lscale": {
  1558. "__type__": "cc.Vec3",
  1559. "x": 1,
  1560. "y": 1,
  1561. "z": 1
  1562. },
  1563. "_mobility": 0,
  1564. "_layer": 33554432,
  1565. "_euler": {
  1566. "__type__": "cc.Vec3",
  1567. "x": 0,
  1568. "y": 0,
  1569. "z": 0
  1570. },
  1571. "_id": ""
  1572. },
  1573. {
  1574. "__type__": "cc.UITransform",
  1575. "_name": "",
  1576. "_objFlags": 0,
  1577. "node": {
  1578. "__id__": 65
  1579. },
  1580. "_enabled": true,
  1581. "__prefab": {
  1582. "__id__": 67
  1583. },
  1584. "_contentSize": {
  1585. "__type__": "cc.Size",
  1586. "width": 220,
  1587. "height": 76
  1588. },
  1589. "_anchorPoint": {
  1590. "__type__": "cc.Vec2",
  1591. "x": 0.5,
  1592. "y": 0.5
  1593. },
  1594. "_id": ""
  1595. },
  1596. {
  1597. "__type__": "cc.CompPrefabInfo",
  1598. "fileId": "c7+4syabtCw6/j0eNM+pA2"
  1599. },
  1600. {
  1601. "__type__": "cc.Sprite",
  1602. "_name": "",
  1603. "_objFlags": 0,
  1604. "node": {
  1605. "__id__": 65
  1606. },
  1607. "_enabled": true,
  1608. "__prefab": {
  1609. "__id__": 69
  1610. },
  1611. "_customMaterial": null,
  1612. "_srcBlendFactor": 2,
  1613. "_dstBlendFactor": 4,
  1614. "_color": {
  1615. "__type__": "cc.Color",
  1616. "r": 255,
  1617. "g": 255,
  1618. "b": 255,
  1619. "a": 255
  1620. },
  1621. "_spriteFrame": {
  1622. "__uuid__": "8865c79f-baa9-4aa7-8dcf-1f9fed2e32ea@f9941",
  1623. "__expectedType__": "cc.SpriteFrame"
  1624. },
  1625. "_type": 0,
  1626. "_fillType": 0,
  1627. "_sizeMode": 1,
  1628. "_fillCenter": {
  1629. "__type__": "cc.Vec2",
  1630. "x": 0,
  1631. "y": 0
  1632. },
  1633. "_fillStart": 0,
  1634. "_fillRange": 0,
  1635. "_isTrimmedMode": true,
  1636. "_useGrayscale": false,
  1637. "_atlas": null,
  1638. "_id": ""
  1639. },
  1640. {
  1641. "__type__": "cc.CompPrefabInfo",
  1642. "fileId": "88dC9diEVH3InfE7cBxazf"
  1643. },
  1644. {
  1645. "__type__": "cc.PrefabInfo",
  1646. "root": {
  1647. "__id__": 1
  1648. },
  1649. "asset": {
  1650. "__id__": 0
  1651. },
  1652. "fileId": "c6k2Dl/8FMXJo7K6BsZnYa",
  1653. "instance": null,
  1654. "targetOverrides": null,
  1655. "nestedPrefabInstanceRoots": null
  1656. },
  1657. {
  1658. "__type__": "cc.Node",
  1659. "_name": "timeLab-001",
  1660. "_objFlags": 0,
  1661. "_parent": {
  1662. "__id__": 64
  1663. },
  1664. "_children": [],
  1665. "_active": true,
  1666. "_components": [
  1667. {
  1668. "__id__": 72
  1669. },
  1670. {
  1671. "__id__": 74
  1672. }
  1673. ],
  1674. "_prefab": {
  1675. "__id__": 76
  1676. },
  1677. "_lpos": {
  1678. "__type__": "cc.Vec3",
  1679. "x": 0,
  1680. "y": -60,
  1681. "z": 0
  1682. },
  1683. "_lrot": {
  1684. "__type__": "cc.Quat",
  1685. "x": 0,
  1686. "y": 0,
  1687. "z": 0,
  1688. "w": 1
  1689. },
  1690. "_lscale": {
  1691. "__type__": "cc.Vec3",
  1692. "x": 1,
  1693. "y": 1,
  1694. "z": 1
  1695. },
  1696. "_mobility": 0,
  1697. "_layer": 33554432,
  1698. "_euler": {
  1699. "__type__": "cc.Vec3",
  1700. "x": 0,
  1701. "y": 0,
  1702. "z": 0
  1703. },
  1704. "_id": ""
  1705. },
  1706. {
  1707. "__type__": "cc.UITransform",
  1708. "_name": "",
  1709. "_objFlags": 0,
  1710. "node": {
  1711. "__id__": 71
  1712. },
  1713. "_enabled": true,
  1714. "__prefab": {
  1715. "__id__": 73
  1716. },
  1717. "_contentSize": {
  1718. "__type__": "cc.Size",
  1719. "width": 160.12,
  1720. "height": 100.8
  1721. },
  1722. "_anchorPoint": {
  1723. "__type__": "cc.Vec2",
  1724. "x": 0.5,
  1725. "y": 0.5
  1726. },
  1727. "_id": ""
  1728. },
  1729. {
  1730. "__type__": "cc.CompPrefabInfo",
  1731. "fileId": "ccBfDzrSFCSo2kzZdISVEL"
  1732. },
  1733. {
  1734. "__type__": "cc.Label",
  1735. "_name": "",
  1736. "_objFlags": 0,
  1737. "node": {
  1738. "__id__": 71
  1739. },
  1740. "_enabled": true,
  1741. "__prefab": {
  1742. "__id__": 75
  1743. },
  1744. "_customMaterial": null,
  1745. "_srcBlendFactor": 2,
  1746. "_dstBlendFactor": 4,
  1747. "_color": {
  1748. "__type__": "cc.Color",
  1749. "r": 0,
  1750. "g": 0,
  1751. "b": 0,
  1752. "a": 255
  1753. },
  1754. "_string": "80%",
  1755. "_horizontalAlign": 1,
  1756. "_verticalAlign": 1,
  1757. "_actualFontSize": 80,
  1758. "_fontSize": 80,
  1759. "_fontFamily": "Arial",
  1760. "_lineHeight": 80,
  1761. "_overflow": 0,
  1762. "_enableWrapText": false,
  1763. "_font": null,
  1764. "_isSystemFontUsed": true,
  1765. "_spacingX": 0,
  1766. "_isItalic": false,
  1767. "_isBold": false,
  1768. "_isUnderline": false,
  1769. "_underlineHeight": 2,
  1770. "_cacheMode": 0,
  1771. "_id": ""
  1772. },
  1773. {
  1774. "__type__": "cc.CompPrefabInfo",
  1775. "fileId": "9eh0U4IxpCfaUPo4XXOoqI"
  1776. },
  1777. {
  1778. "__type__": "cc.PrefabInfo",
  1779. "root": {
  1780. "__id__": 1
  1781. },
  1782. "asset": {
  1783. "__id__": 0
  1784. },
  1785. "fileId": "40/ceLLi9IZ4aY0vNwBgny",
  1786. "instance": null,
  1787. "targetOverrides": null,
  1788. "nestedPrefabInstanceRoots": null
  1789. },
  1790. {
  1791. "__type__": "cc.UITransform",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 64
  1796. },
  1797. "_enabled": true,
  1798. "__prefab": {
  1799. "__id__": 78
  1800. },
  1801. "_contentSize": {
  1802. "__type__": "cc.Size",
  1803. "width": 316,
  1804. "height": 264
  1805. },
  1806. "_anchorPoint": {
  1807. "__type__": "cc.Vec2",
  1808. "x": 0.5,
  1809. "y": 0.5
  1810. },
  1811. "_id": ""
  1812. },
  1813. {
  1814. "__type__": "cc.CompPrefabInfo",
  1815. "fileId": "76Y2xF281D9YFPLPy6ckHz"
  1816. },
  1817. {
  1818. "__type__": "cc.Sprite",
  1819. "_name": "",
  1820. "_objFlags": 0,
  1821. "node": {
  1822. "__id__": 64
  1823. },
  1824. "_enabled": true,
  1825. "__prefab": {
  1826. "__id__": 80
  1827. },
  1828. "_customMaterial": null,
  1829. "_srcBlendFactor": 2,
  1830. "_dstBlendFactor": 4,
  1831. "_color": {
  1832. "__type__": "cc.Color",
  1833. "r": 255,
  1834. "g": 255,
  1835. "b": 255,
  1836. "a": 255
  1837. },
  1838. "_spriteFrame": {
  1839. "__uuid__": "429914f0-b672-4f90-b818-7409828df6c5@f9941",
  1840. "__expectedType__": "cc.SpriteFrame"
  1841. },
  1842. "_type": 0,
  1843. "_fillType": 0,
  1844. "_sizeMode": 0,
  1845. "_fillCenter": {
  1846. "__type__": "cc.Vec2",
  1847. "x": 0,
  1848. "y": 0
  1849. },
  1850. "_fillStart": 0,
  1851. "_fillRange": 0,
  1852. "_isTrimmedMode": true,
  1853. "_useGrayscale": false,
  1854. "_atlas": null,
  1855. "_id": ""
  1856. },
  1857. {
  1858. "__type__": "cc.CompPrefabInfo",
  1859. "fileId": "dc8qNVCiJBwag78zA029rN"
  1860. },
  1861. {
  1862. "__type__": "cc.PrefabInfo",
  1863. "root": {
  1864. "__id__": 1
  1865. },
  1866. "asset": {
  1867. "__id__": 0
  1868. },
  1869. "fileId": "a62MA1p9ZGIYxQzCfzhmBP",
  1870. "instance": null,
  1871. "targetOverrides": null,
  1872. "nestedPrefabInstanceRoots": null
  1873. },
  1874. {
  1875. "__type__": "cc.Node",
  1876. "_name": "3",
  1877. "_objFlags": 0,
  1878. "_parent": {
  1879. "__id__": 1
  1880. },
  1881. "_children": [
  1882. {
  1883. "__id__": 83
  1884. },
  1885. {
  1886. "__id__": 89
  1887. }
  1888. ],
  1889. "_active": true,
  1890. "_components": [
  1891. {
  1892. "__id__": 95
  1893. },
  1894. {
  1895. "__id__": 97
  1896. }
  1897. ],
  1898. "_prefab": {
  1899. "__id__": 99
  1900. },
  1901. "_lpos": {
  1902. "__type__": "cc.Vec3",
  1903. "x": 490,
  1904. "y": -461.5,
  1905. "z": 0
  1906. },
  1907. "_lrot": {
  1908. "__type__": "cc.Quat",
  1909. "x": 0,
  1910. "y": 0,
  1911. "z": 0,
  1912. "w": 1
  1913. },
  1914. "_lscale": {
  1915. "__type__": "cc.Vec3",
  1916. "x": 1,
  1917. "y": 1,
  1918. "z": 1
  1919. },
  1920. "_mobility": 0,
  1921. "_layer": 33554432,
  1922. "_euler": {
  1923. "__type__": "cc.Vec3",
  1924. "x": 0,
  1925. "y": 0,
  1926. "z": 0
  1927. },
  1928. "_id": ""
  1929. },
  1930. {
  1931. "__type__": "cc.Node",
  1932. "_name": "编组 2",
  1933. "_objFlags": 0,
  1934. "_parent": {
  1935. "__id__": 82
  1936. },
  1937. "_children": [],
  1938. "_active": true,
  1939. "_components": [
  1940. {
  1941. "__id__": 84
  1942. },
  1943. {
  1944. "__id__": 86
  1945. }
  1946. ],
  1947. "_prefab": {
  1948. "__id__": 88
  1949. },
  1950. "_lpos": {
  1951. "__type__": "cc.Vec3",
  1952. "x": 0,
  1953. "y": 40,
  1954. "z": 0
  1955. },
  1956. "_lrot": {
  1957. "__type__": "cc.Quat",
  1958. "x": 0,
  1959. "y": 0,
  1960. "z": 0,
  1961. "w": 1
  1962. },
  1963. "_lscale": {
  1964. "__type__": "cc.Vec3",
  1965. "x": 1,
  1966. "y": 1,
  1967. "z": 1
  1968. },
  1969. "_mobility": 0,
  1970. "_layer": 33554432,
  1971. "_euler": {
  1972. "__type__": "cc.Vec3",
  1973. "x": 0,
  1974. "y": 0,
  1975. "z": 0
  1976. },
  1977. "_id": ""
  1978. },
  1979. {
  1980. "__type__": "cc.UITransform",
  1981. "_name": "",
  1982. "_objFlags": 0,
  1983. "node": {
  1984. "__id__": 83
  1985. },
  1986. "_enabled": true,
  1987. "__prefab": {
  1988. "__id__": 85
  1989. },
  1990. "_contentSize": {
  1991. "__type__": "cc.Size",
  1992. "width": 220,
  1993. "height": 76
  1994. },
  1995. "_anchorPoint": {
  1996. "__type__": "cc.Vec2",
  1997. "x": 0.5,
  1998. "y": 0.5
  1999. },
  2000. "_id": ""
  2001. },
  2002. {
  2003. "__type__": "cc.CompPrefabInfo",
  2004. "fileId": "b9xUkK94tAkIOvpob9BX/M"
  2005. },
  2006. {
  2007. "__type__": "cc.Sprite",
  2008. "_name": "",
  2009. "_objFlags": 0,
  2010. "node": {
  2011. "__id__": 83
  2012. },
  2013. "_enabled": true,
  2014. "__prefab": {
  2015. "__id__": 87
  2016. },
  2017. "_customMaterial": null,
  2018. "_srcBlendFactor": 2,
  2019. "_dstBlendFactor": 4,
  2020. "_color": {
  2021. "__type__": "cc.Color",
  2022. "r": 255,
  2023. "g": 255,
  2024. "b": 255,
  2025. "a": 255
  2026. },
  2027. "_spriteFrame": {
  2028. "__uuid__": "8865c79f-baa9-4aa7-8dcf-1f9fed2e32ea@f9941",
  2029. "__expectedType__": "cc.SpriteFrame"
  2030. },
  2031. "_type": 0,
  2032. "_fillType": 0,
  2033. "_sizeMode": 1,
  2034. "_fillCenter": {
  2035. "__type__": "cc.Vec2",
  2036. "x": 0,
  2037. "y": 0
  2038. },
  2039. "_fillStart": 0,
  2040. "_fillRange": 0,
  2041. "_isTrimmedMode": true,
  2042. "_useGrayscale": false,
  2043. "_atlas": null,
  2044. "_id": ""
  2045. },
  2046. {
  2047. "__type__": "cc.CompPrefabInfo",
  2048. "fileId": "a5BmWyYcREtaNvFzBDckqN"
  2049. },
  2050. {
  2051. "__type__": "cc.PrefabInfo",
  2052. "root": {
  2053. "__id__": 1
  2054. },
  2055. "asset": {
  2056. "__id__": 0
  2057. },
  2058. "fileId": "84f7W1/hpFtqU91/PpGWW1",
  2059. "instance": null,
  2060. "targetOverrides": null,
  2061. "nestedPrefabInstanceRoots": null
  2062. },
  2063. {
  2064. "__type__": "cc.Node",
  2065. "_name": "timeLab",
  2066. "_objFlags": 0,
  2067. "_parent": {
  2068. "__id__": 82
  2069. },
  2070. "_children": [],
  2071. "_active": true,
  2072. "_components": [
  2073. {
  2074. "__id__": 90
  2075. },
  2076. {
  2077. "__id__": 92
  2078. }
  2079. ],
  2080. "_prefab": {
  2081. "__id__": 94
  2082. },
  2083. "_lpos": {
  2084. "__type__": "cc.Vec3",
  2085. "x": 0,
  2086. "y": -60,
  2087. "z": 0
  2088. },
  2089. "_lrot": {
  2090. "__type__": "cc.Quat",
  2091. "x": 0,
  2092. "y": 0,
  2093. "z": 0,
  2094. "w": 1
  2095. },
  2096. "_lscale": {
  2097. "__type__": "cc.Vec3",
  2098. "x": 1,
  2099. "y": 1,
  2100. "z": 1
  2101. },
  2102. "_mobility": 0,
  2103. "_layer": 33554432,
  2104. "_euler": {
  2105. "__type__": "cc.Vec3",
  2106. "x": 0,
  2107. "y": 0,
  2108. "z": 0
  2109. },
  2110. "_id": ""
  2111. },
  2112. {
  2113. "__type__": "cc.UITransform",
  2114. "_name": "",
  2115. "_objFlags": 0,
  2116. "node": {
  2117. "__id__": 89
  2118. },
  2119. "_enabled": true,
  2120. "__prefab": {
  2121. "__id__": 91
  2122. },
  2123. "_contentSize": {
  2124. "__type__": "cc.Size",
  2125. "width": 160.12,
  2126. "height": 100.8
  2127. },
  2128. "_anchorPoint": {
  2129. "__type__": "cc.Vec2",
  2130. "x": 0.5,
  2131. "y": 0.5
  2132. },
  2133. "_id": ""
  2134. },
  2135. {
  2136. "__type__": "cc.CompPrefabInfo",
  2137. "fileId": "63Vmi7lgdHDKro699KCh/0"
  2138. },
  2139. {
  2140. "__type__": "cc.Label",
  2141. "_name": "",
  2142. "_objFlags": 0,
  2143. "node": {
  2144. "__id__": 89
  2145. },
  2146. "_enabled": true,
  2147. "__prefab": {
  2148. "__id__": 93
  2149. },
  2150. "_customMaterial": null,
  2151. "_srcBlendFactor": 2,
  2152. "_dstBlendFactor": 4,
  2153. "_color": {
  2154. "__type__": "cc.Color",
  2155. "r": 0,
  2156. "g": 0,
  2157. "b": 0,
  2158. "a": 255
  2159. },
  2160. "_string": "80%",
  2161. "_horizontalAlign": 1,
  2162. "_verticalAlign": 1,
  2163. "_actualFontSize": 80,
  2164. "_fontSize": 80,
  2165. "_fontFamily": "Arial",
  2166. "_lineHeight": 80,
  2167. "_overflow": 0,
  2168. "_enableWrapText": false,
  2169. "_font": null,
  2170. "_isSystemFontUsed": true,
  2171. "_spacingX": 0,
  2172. "_isItalic": false,
  2173. "_isBold": false,
  2174. "_isUnderline": false,
  2175. "_underlineHeight": 2,
  2176. "_cacheMode": 0,
  2177. "_id": ""
  2178. },
  2179. {
  2180. "__type__": "cc.CompPrefabInfo",
  2181. "fileId": "9aFfMeIOdJNLV4ADpiEGv4"
  2182. },
  2183. {
  2184. "__type__": "cc.PrefabInfo",
  2185. "root": {
  2186. "__id__": 1
  2187. },
  2188. "asset": {
  2189. "__id__": 0
  2190. },
  2191. "fileId": "1eHtA2cwNIo6TbM1Y3w000",
  2192. "instance": null,
  2193. "targetOverrides": null,
  2194. "nestedPrefabInstanceRoots": null
  2195. },
  2196. {
  2197. "__type__": "cc.UITransform",
  2198. "_name": "",
  2199. "_objFlags": 0,
  2200. "node": {
  2201. "__id__": 82
  2202. },
  2203. "_enabled": true,
  2204. "__prefab": {
  2205. "__id__": 96
  2206. },
  2207. "_contentSize": {
  2208. "__type__": "cc.Size",
  2209. "width": 316,
  2210. "height": 264
  2211. },
  2212. "_anchorPoint": {
  2213. "__type__": "cc.Vec2",
  2214. "x": 0.5,
  2215. "y": 0.5
  2216. },
  2217. "_id": ""
  2218. },
  2219. {
  2220. "__type__": "cc.CompPrefabInfo",
  2221. "fileId": "efx9PXjzhAa7TTG8AbHhsi"
  2222. },
  2223. {
  2224. "__type__": "cc.Sprite",
  2225. "_name": "",
  2226. "_objFlags": 0,
  2227. "node": {
  2228. "__id__": 82
  2229. },
  2230. "_enabled": true,
  2231. "__prefab": {
  2232. "__id__": 98
  2233. },
  2234. "_customMaterial": null,
  2235. "_srcBlendFactor": 2,
  2236. "_dstBlendFactor": 4,
  2237. "_color": {
  2238. "__type__": "cc.Color",
  2239. "r": 255,
  2240. "g": 255,
  2241. "b": 255,
  2242. "a": 255
  2243. },
  2244. "_spriteFrame": {
  2245. "__uuid__": "e330aeff-4155-4d05-808a-e500173aa487@f9941",
  2246. "__expectedType__": "cc.SpriteFrame"
  2247. },
  2248. "_type": 0,
  2249. "_fillType": 0,
  2250. "_sizeMode": 0,
  2251. "_fillCenter": {
  2252. "__type__": "cc.Vec2",
  2253. "x": 0,
  2254. "y": 0
  2255. },
  2256. "_fillStart": 0,
  2257. "_fillRange": 0,
  2258. "_isTrimmedMode": true,
  2259. "_useGrayscale": false,
  2260. "_atlas": null,
  2261. "_id": ""
  2262. },
  2263. {
  2264. "__type__": "cc.CompPrefabInfo",
  2265. "fileId": "7b+ZdKLVxGj4wEh7OGtT2L"
  2266. },
  2267. {
  2268. "__type__": "cc.PrefabInfo",
  2269. "root": {
  2270. "__id__": 1
  2271. },
  2272. "asset": {
  2273. "__id__": 0
  2274. },
  2275. "fileId": "596MXvt11CNJxA9VS6Z02J",
  2276. "instance": null,
  2277. "targetOverrides": null,
  2278. "nestedPrefabInstanceRoots": null
  2279. },
  2280. {
  2281. "__type__": "cc.Node",
  2282. "_name": "boom",
  2283. "_objFlags": 0,
  2284. "_parent": {
  2285. "__id__": 1
  2286. },
  2287. "_children": [],
  2288. "_active": true,
  2289. "_components": [
  2290. {
  2291. "__id__": 101
  2292. },
  2293. {
  2294. "__id__": 103
  2295. },
  2296. {
  2297. "__id__": 105
  2298. },
  2299. {
  2300. "__id__": 107
  2301. }
  2302. ],
  2303. "_prefab": {
  2304. "__id__": 109
  2305. },
  2306. "_lpos": {
  2307. "__type__": "cc.Vec3",
  2308. "x": 0,
  2309. "y": 0,
  2310. "z": 0
  2311. },
  2312. "_lrot": {
  2313. "__type__": "cc.Quat",
  2314. "x": 0,
  2315. "y": 0,
  2316. "z": 0,
  2317. "w": 1
  2318. },
  2319. "_lscale": {
  2320. "__type__": "cc.Vec3",
  2321. "x": 1,
  2322. "y": 1,
  2323. "z": 1
  2324. },
  2325. "_mobility": 0,
  2326. "_layer": 33554432,
  2327. "_euler": {
  2328. "__type__": "cc.Vec3",
  2329. "x": 0,
  2330. "y": 0,
  2331. "z": 0
  2332. },
  2333. "_id": ""
  2334. },
  2335. {
  2336. "__type__": "cc.UITransform",
  2337. "_name": "",
  2338. "_objFlags": 0,
  2339. "node": {
  2340. "__id__": 100
  2341. },
  2342. "_enabled": true,
  2343. "__prefab": {
  2344. "__id__": 102
  2345. },
  2346. "_contentSize": {
  2347. "__type__": "cc.Size",
  2348. "width": 284,
  2349. "height": 212
  2350. },
  2351. "_anchorPoint": {
  2352. "__type__": "cc.Vec2",
  2353. "x": 0.5,
  2354. "y": 0.5
  2355. },
  2356. "_id": ""
  2357. },
  2358. {
  2359. "__type__": "cc.CompPrefabInfo",
  2360. "fileId": "ddOZh271ZNHKMb8n1EahVS"
  2361. },
  2362. {
  2363. "__type__": "cc.Sprite",
  2364. "_name": "",
  2365. "_objFlags": 0,
  2366. "node": {
  2367. "__id__": 100
  2368. },
  2369. "_enabled": true,
  2370. "__prefab": {
  2371. "__id__": 104
  2372. },
  2373. "_customMaterial": null,
  2374. "_srcBlendFactor": 2,
  2375. "_dstBlendFactor": 4,
  2376. "_color": {
  2377. "__type__": "cc.Color",
  2378. "r": 255,
  2379. "g": 255,
  2380. "b": 255,
  2381. "a": 255
  2382. },
  2383. "_spriteFrame": {
  2384. "__uuid__": "b943dbfd-1dde-4fa6-9925-ad7484007b1e@f9941",
  2385. "__expectedType__": "cc.SpriteFrame"
  2386. },
  2387. "_type": 0,
  2388. "_fillType": 0,
  2389. "_sizeMode": 1,
  2390. "_fillCenter": {
  2391. "__type__": "cc.Vec2",
  2392. "x": 0,
  2393. "y": 0
  2394. },
  2395. "_fillStart": 0,
  2396. "_fillRange": 0,
  2397. "_isTrimmedMode": true,
  2398. "_useGrayscale": false,
  2399. "_atlas": null,
  2400. "_id": ""
  2401. },
  2402. {
  2403. "__type__": "cc.CompPrefabInfo",
  2404. "fileId": "6aezaaR8dPPrzYUP3fLzCO"
  2405. },
  2406. {
  2407. "__type__": "cc.Animation",
  2408. "_name": "",
  2409. "_objFlags": 0,
  2410. "node": {
  2411. "__id__": 100
  2412. },
  2413. "_enabled": true,
  2414. "__prefab": {
  2415. "__id__": 106
  2416. },
  2417. "playOnLoad": false,
  2418. "_clips": [
  2419. {
  2420. "__uuid__": "59a753d4-e24a-430f-86f2-8a3e13cdac40",
  2421. "__expectedType__": "cc.AnimationClip"
  2422. }
  2423. ],
  2424. "_defaultClip": {
  2425. "__uuid__": "59a753d4-e24a-430f-86f2-8a3e13cdac40",
  2426. "__expectedType__": "cc.AnimationClip"
  2427. },
  2428. "_id": ""
  2429. },
  2430. {
  2431. "__type__": "cc.CompPrefabInfo",
  2432. "fileId": "61uGL2Vm5IpbREK+vml4kR"
  2433. },
  2434. {
  2435. "__type__": "cc.UIOpacity",
  2436. "_name": "",
  2437. "_objFlags": 0,
  2438. "node": {
  2439. "__id__": 100
  2440. },
  2441. "_enabled": true,
  2442. "__prefab": {
  2443. "__id__": 108
  2444. },
  2445. "_opacity": 0,
  2446. "_id": ""
  2447. },
  2448. {
  2449. "__type__": "cc.CompPrefabInfo",
  2450. "fileId": "b1Cg9vtG1Cl6HfTGYmFAGM"
  2451. },
  2452. {
  2453. "__type__": "cc.PrefabInfo",
  2454. "root": {
  2455. "__id__": 1
  2456. },
  2457. "asset": {
  2458. "__id__": 0
  2459. },
  2460. "fileId": "c7QSIUnjxE0rMgzkd+wHTD",
  2461. "instance": null,
  2462. "targetOverrides": null,
  2463. "nestedPrefabInstanceRoots": null
  2464. },
  2465. {
  2466. "__type__": "cc.UITransform",
  2467. "_name": "",
  2468. "_objFlags": 0,
  2469. "node": {
  2470. "__id__": 1
  2471. },
  2472. "_enabled": true,
  2473. "__prefab": {
  2474. "__id__": 111
  2475. },
  2476. "_contentSize": {
  2477. "__type__": "cc.Size",
  2478. "width": 1406,
  2479. "height": 1220
  2480. },
  2481. "_anchorPoint": {
  2482. "__type__": "cc.Vec2",
  2483. "x": 0.5,
  2484. "y": 0.5
  2485. },
  2486. "_id": ""
  2487. },
  2488. {
  2489. "__type__": "cc.CompPrefabInfo",
  2490. "fileId": "7a9bGKT5VKrKe0Q+XYzsVB"
  2491. },
  2492. {
  2493. "__type__": "502b8yvt3NDXoH5HaNjxDyA",
  2494. "_name": "",
  2495. "_objFlags": 0,
  2496. "node": {
  2497. "__id__": 1
  2498. },
  2499. "_enabled": true,
  2500. "__prefab": {
  2501. "__id__": 113
  2502. },
  2503. "bg": {
  2504. "__id__": 2
  2505. },
  2506. "ruler": {
  2507. "__id__": 22
  2508. },
  2509. "boom": {
  2510. "__id__": 105
  2511. },
  2512. "btnList": [
  2513. {
  2514. "__id__": 46
  2515. },
  2516. {
  2517. "__id__": 64
  2518. },
  2519. {
  2520. "__id__": 82
  2521. }
  2522. ],
  2523. "sprList": [
  2524. {
  2525. "__id__": 23
  2526. },
  2527. {
  2528. "__id__": 29
  2529. },
  2530. {
  2531. "__id__": 35
  2532. }
  2533. ],
  2534. "labList": [
  2535. {
  2536. "__id__": 56
  2537. },
  2538. {
  2539. "__id__": 74
  2540. },
  2541. {
  2542. "__id__": 92
  2543. }
  2544. ],
  2545. "audioList": [
  2546. {
  2547. "__uuid__": "e3818485-2598-4c36-a24b-21c85e519b21",
  2548. "__expectedType__": "cc.AudioClip"
  2549. },
  2550. {
  2551. "__uuid__": "c5ada446-2665-4602-bbfb-ca95585e1f3b",
  2552. "__expectedType__": "cc.AudioClip"
  2553. },
  2554. {
  2555. "__uuid__": "abd8821f-c74e-4bed-8cb9-13edf2063b43",
  2556. "__expectedType__": "cc.AudioClip"
  2557. },
  2558. {
  2559. "__uuid__": "e39ab938-8b9d-4884-a382-a2e00c578b73",
  2560. "__expectedType__": "cc.AudioClip"
  2561. }
  2562. ],
  2563. "_id": ""
  2564. },
  2565. {
  2566. "__type__": "cc.CompPrefabInfo",
  2567. "fileId": "36JcqtoClDArYp8Mu8wcLB"
  2568. },
  2569. {
  2570. "__type__": "cc.AudioSource",
  2571. "_name": "",
  2572. "_objFlags": 0,
  2573. "node": {
  2574. "__id__": 1
  2575. },
  2576. "_enabled": true,
  2577. "__prefab": {
  2578. "__id__": 115
  2579. },
  2580. "_clip": null,
  2581. "_loop": false,
  2582. "_playOnAwake": false,
  2583. "_volume": 1,
  2584. "_id": ""
  2585. },
  2586. {
  2587. "__type__": "cc.CompPrefabInfo",
  2588. "fileId": "9dUUqu4+hPxYGs+1Ac9334"
  2589. },
  2590. {
  2591. "__type__": "cc.PrefabInfo",
  2592. "root": {
  2593. "__id__": 1
  2594. },
  2595. "asset": {
  2596. "__id__": 0
  2597. },
  2598. "fileId": "52c3R0caFALJkQBoIB8nwi",
  2599. "targetOverrides": null
  2600. }
  2601. ]