PageStorage.prefab 56 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "PageStorage",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "PageStorage",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 30
  26. },
  27. {
  28. "__id__": 122
  29. },
  30. {
  31. "__id__": 134
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 140
  38. },
  39. {
  40. "__id__": 142
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 144
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 33554432,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "ScrollView",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [
  84. {
  85. "__id__": 3
  86. }
  87. ],
  88. "_active": true,
  89. "_components": [
  90. {
  91. "__id__": 21
  92. },
  93. {
  94. "__id__": 23
  95. },
  96. {
  97. "__id__": 25
  98. },
  99. {
  100. "__id__": 27
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 29
  105. },
  106. "_lpos": {
  107. "__type__": "cc.Vec3",
  108. "x": 0,
  109. "y": -24.999999999999943,
  110. "z": 0
  111. },
  112. "_lrot": {
  113. "__type__": "cc.Quat",
  114. "x": 0,
  115. "y": 0,
  116. "z": 0,
  117. "w": 1
  118. },
  119. "_lscale": {
  120. "__type__": "cc.Vec3",
  121. "x": 1,
  122. "y": 1,
  123. "z": 1
  124. },
  125. "_mobility": 0,
  126. "_layer": 33554432,
  127. "_euler": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_id": ""
  134. },
  135. {
  136. "__type__": "cc.Node",
  137. "_name": "view",
  138. "_objFlags": 0,
  139. "__editorExtras__": {},
  140. "_parent": {
  141. "__id__": 2
  142. },
  143. "_children": [
  144. {
  145. "__id__": 4
  146. }
  147. ],
  148. "_active": true,
  149. "_components": [
  150. {
  151. "__id__": 12
  152. },
  153. {
  154. "__id__": 14
  155. },
  156. {
  157. "__id__": 16
  158. },
  159. {
  160. "__id__": 18
  161. }
  162. ],
  163. "_prefab": {
  164. "__id__": 20
  165. },
  166. "_lpos": {
  167. "__type__": "cc.Vec3",
  168. "x": 0,
  169. "y": 0,
  170. "z": 0
  171. },
  172. "_lrot": {
  173. "__type__": "cc.Quat",
  174. "x": 0,
  175. "y": 0,
  176. "z": 0,
  177. "w": 1
  178. },
  179. "_lscale": {
  180. "__type__": "cc.Vec3",
  181. "x": 1,
  182. "y": 1,
  183. "z": 1
  184. },
  185. "_mobility": 0,
  186. "_layer": 33554432,
  187. "_euler": {
  188. "__type__": "cc.Vec3",
  189. "x": 0,
  190. "y": 0,
  191. "z": 0
  192. },
  193. "_id": ""
  194. },
  195. {
  196. "__type__": "cc.Node",
  197. "_name": "content",
  198. "_objFlags": 0,
  199. "__editorExtras__": {},
  200. "_parent": {
  201. "__id__": 3
  202. },
  203. "_children": [],
  204. "_active": true,
  205. "_components": [
  206. {
  207. "__id__": 5
  208. },
  209. {
  210. "__id__": 7
  211. },
  212. {
  213. "__id__": 9
  214. }
  215. ],
  216. "_prefab": {
  217. "__id__": 11
  218. },
  219. "_lpos": {
  220. "__type__": "cc.Vec3",
  221. "x": 0,
  222. "y": 475,
  223. "z": 0
  224. },
  225. "_lrot": {
  226. "__type__": "cc.Quat",
  227. "x": 0,
  228. "y": 0,
  229. "z": 0,
  230. "w": 1
  231. },
  232. "_lscale": {
  233. "__type__": "cc.Vec3",
  234. "x": 1,
  235. "y": 1,
  236. "z": 1
  237. },
  238. "_mobility": 0,
  239. "_layer": 33554432,
  240. "_euler": {
  241. "__type__": "cc.Vec3",
  242. "x": 0,
  243. "y": 0,
  244. "z": 0
  245. },
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.UITransform",
  250. "_name": "",
  251. "_objFlags": 0,
  252. "__editorExtras__": {},
  253. "node": {
  254. "__id__": 4
  255. },
  256. "_enabled": true,
  257. "__prefab": {
  258. "__id__": 6
  259. },
  260. "_contentSize": {
  261. "__type__": "cc.Size",
  262. "width": 720,
  263. "height": 10
  264. },
  265. "_anchorPoint": {
  266. "__type__": "cc.Vec2",
  267. "x": 0.5,
  268. "y": 1
  269. },
  270. "_id": ""
  271. },
  272. {
  273. "__type__": "cc.CompPrefabInfo",
  274. "fileId": "dcxB0UDWlN4IYlIC5dLEdg"
  275. },
  276. {
  277. "__type__": "cc.Layout",
  278. "_name": "",
  279. "_objFlags": 0,
  280. "__editorExtras__": {},
  281. "node": {
  282. "__id__": 4
  283. },
  284. "_enabled": true,
  285. "__prefab": {
  286. "__id__": 8
  287. },
  288. "_resizeMode": 1,
  289. "_layoutType": 3,
  290. "_cellSize": {
  291. "__type__": "cc.Size",
  292. "width": 40,
  293. "height": 40
  294. },
  295. "_startAxis": 0,
  296. "_paddingLeft": 40,
  297. "_paddingRight": 0,
  298. "_paddingTop": 10,
  299. "_paddingBottom": 0,
  300. "_spacingX": 40,
  301. "_spacingY": 40,
  302. "_verticalDirection": 1,
  303. "_horizontalDirection": 0,
  304. "_constraint": 2,
  305. "_constraintNum": 2,
  306. "_affectedByScale": false,
  307. "_isAlign": false,
  308. "_id": ""
  309. },
  310. {
  311. "__type__": "cc.CompPrefabInfo",
  312. "fileId": "48TzkA1R5OHLx1D47wLfwd"
  313. },
  314. {
  315. "__type__": "cc.Widget",
  316. "_name": "",
  317. "_objFlags": 0,
  318. "__editorExtras__": {},
  319. "node": {
  320. "__id__": 4
  321. },
  322. "_enabled": true,
  323. "__prefab": {
  324. "__id__": 10
  325. },
  326. "_alignFlags": 41,
  327. "_target": null,
  328. "_left": 0,
  329. "_right": 0,
  330. "_top": 0,
  331. "_bottom": 0,
  332. "_horizontalCenter": 0,
  333. "_verticalCenter": 0,
  334. "_isAbsLeft": true,
  335. "_isAbsRight": true,
  336. "_isAbsTop": true,
  337. "_isAbsBottom": true,
  338. "_isAbsHorizontalCenter": true,
  339. "_isAbsVerticalCenter": true,
  340. "_originalWidth": 220,
  341. "_originalHeight": 0,
  342. "_alignMode": 2,
  343. "_lockFlags": 0,
  344. "_id": ""
  345. },
  346. {
  347. "__type__": "cc.CompPrefabInfo",
  348. "fileId": "53I/nNy7BAb69YlCNw+UwZ"
  349. },
  350. {
  351. "__type__": "cc.PrefabInfo",
  352. "root": {
  353. "__id__": 1
  354. },
  355. "asset": {
  356. "__id__": 0
  357. },
  358. "fileId": "e4QgJF/OFE4rYORWP8hDvP",
  359. "instance": null,
  360. "targetOverrides": null,
  361. "nestedPrefabInstanceRoots": null
  362. },
  363. {
  364. "__type__": "cc.UITransform",
  365. "_name": "",
  366. "_objFlags": 0,
  367. "__editorExtras__": {},
  368. "node": {
  369. "__id__": 3
  370. },
  371. "_enabled": true,
  372. "__prefab": {
  373. "__id__": 13
  374. },
  375. "_contentSize": {
  376. "__type__": "cc.Size",
  377. "width": 720,
  378. "height": 950
  379. },
  380. "_anchorPoint": {
  381. "__type__": "cc.Vec2",
  382. "x": 0.5,
  383. "y": 0.5
  384. },
  385. "_id": ""
  386. },
  387. {
  388. "__type__": "cc.CompPrefabInfo",
  389. "fileId": "9ff3EA81FL0JMqRdSYXScp"
  390. },
  391. {
  392. "__type__": "cc.Mask",
  393. "_name": "",
  394. "_objFlags": 0,
  395. "__editorExtras__": {},
  396. "node": {
  397. "__id__": 3
  398. },
  399. "_enabled": true,
  400. "__prefab": {
  401. "__id__": 15
  402. },
  403. "_type": 0,
  404. "_inverted": false,
  405. "_segments": 64,
  406. "_alphaThreshold": 0.1,
  407. "_id": ""
  408. },
  409. {
  410. "__type__": "cc.CompPrefabInfo",
  411. "fileId": "c4vLP6A/ZMgLu4QmOJJeke"
  412. },
  413. {
  414. "__type__": "cc.Graphics",
  415. "_name": "",
  416. "_objFlags": 0,
  417. "__editorExtras__": {},
  418. "node": {
  419. "__id__": 3
  420. },
  421. "_enabled": true,
  422. "__prefab": {
  423. "__id__": 17
  424. },
  425. "_customMaterial": null,
  426. "_srcBlendFactor": 2,
  427. "_dstBlendFactor": 4,
  428. "_color": {
  429. "__type__": "cc.Color",
  430. "r": 255,
  431. "g": 255,
  432. "b": 255,
  433. "a": 255
  434. },
  435. "_lineWidth": 1,
  436. "_strokeColor": {
  437. "__type__": "cc.Color",
  438. "r": 0,
  439. "g": 0,
  440. "b": 0,
  441. "a": 255
  442. },
  443. "_lineJoin": 2,
  444. "_lineCap": 0,
  445. "_fillColor": {
  446. "__type__": "cc.Color",
  447. "r": 255,
  448. "g": 255,
  449. "b": 255,
  450. "a": 0
  451. },
  452. "_miterLimit": 10,
  453. "_id": ""
  454. },
  455. {
  456. "__type__": "cc.CompPrefabInfo",
  457. "fileId": "92VQQS3ptBVZeoVVzeIEp+"
  458. },
  459. {
  460. "__type__": "cc.Widget",
  461. "_name": "",
  462. "_objFlags": 0,
  463. "__editorExtras__": {},
  464. "node": {
  465. "__id__": 3
  466. },
  467. "_enabled": true,
  468. "__prefab": {
  469. "__id__": 19
  470. },
  471. "_alignFlags": 45,
  472. "_target": null,
  473. "_left": 0,
  474. "_right": 0,
  475. "_top": 0,
  476. "_bottom": 0,
  477. "_horizontalCenter": 0,
  478. "_verticalCenter": 0,
  479. "_isAbsLeft": true,
  480. "_isAbsRight": true,
  481. "_isAbsTop": true,
  482. "_isAbsBottom": true,
  483. "_isAbsHorizontalCenter": true,
  484. "_isAbsVerticalCenter": true,
  485. "_originalWidth": 240,
  486. "_originalHeight": 250,
  487. "_alignMode": 2,
  488. "_lockFlags": 0,
  489. "_id": ""
  490. },
  491. {
  492. "__type__": "cc.CompPrefabInfo",
  493. "fileId": "949YsNpp1Ii68Xd+F9Fq7z"
  494. },
  495. {
  496. "__type__": "cc.PrefabInfo",
  497. "root": {
  498. "__id__": 1
  499. },
  500. "asset": {
  501. "__id__": 0
  502. },
  503. "fileId": "66hGIeSChPfJxdOauE69Xl",
  504. "instance": null,
  505. "targetOverrides": null,
  506. "nestedPrefabInstanceRoots": null
  507. },
  508. {
  509. "__type__": "cc.UITransform",
  510. "_name": "",
  511. "_objFlags": 0,
  512. "__editorExtras__": {},
  513. "node": {
  514. "__id__": 2
  515. },
  516. "_enabled": true,
  517. "__prefab": {
  518. "__id__": 22
  519. },
  520. "_contentSize": {
  521. "__type__": "cc.Size",
  522. "width": 720,
  523. "height": 950
  524. },
  525. "_anchorPoint": {
  526. "__type__": "cc.Vec2",
  527. "x": 0.5,
  528. "y": 0.5
  529. },
  530. "_id": ""
  531. },
  532. {
  533. "__type__": "cc.CompPrefabInfo",
  534. "fileId": "40Mwno8dlLHbYLpGD8UNyF"
  535. },
  536. {
  537. "__type__": "cc.Sprite",
  538. "_name": "",
  539. "_objFlags": 0,
  540. "__editorExtras__": {},
  541. "node": {
  542. "__id__": 2
  543. },
  544. "_enabled": false,
  545. "__prefab": {
  546. "__id__": 24
  547. },
  548. "_customMaterial": null,
  549. "_srcBlendFactor": 2,
  550. "_dstBlendFactor": 4,
  551. "_color": {
  552. "__type__": "cc.Color",
  553. "r": 255,
  554. "g": 255,
  555. "b": 255,
  556. "a": 255
  557. },
  558. "_spriteFrame": {
  559. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  560. "__expectedType__": "cc.SpriteFrame"
  561. },
  562. "_type": 1,
  563. "_fillType": 0,
  564. "_sizeMode": 0,
  565. "_fillCenter": {
  566. "__type__": "cc.Vec2",
  567. "x": 0,
  568. "y": 0
  569. },
  570. "_fillStart": 0,
  571. "_fillRange": 0,
  572. "_isTrimmedMode": true,
  573. "_useGrayscale": false,
  574. "_atlas": null,
  575. "_id": ""
  576. },
  577. {
  578. "__type__": "cc.CompPrefabInfo",
  579. "fileId": "ef9KEK6BVPtq2yXXRtz0tZ"
  580. },
  581. {
  582. "__type__": "cc.ScrollView",
  583. "_name": "",
  584. "_objFlags": 0,
  585. "__editorExtras__": {},
  586. "node": {
  587. "__id__": 2
  588. },
  589. "_enabled": true,
  590. "__prefab": {
  591. "__id__": 26
  592. },
  593. "bounceDuration": 0.23,
  594. "brake": 0.75,
  595. "elastic": true,
  596. "inertia": true,
  597. "horizontal": false,
  598. "vertical": true,
  599. "cancelInnerEvents": true,
  600. "scrollEvents": [],
  601. "_content": {
  602. "__id__": 4
  603. },
  604. "_horizontalScrollBar": null,
  605. "_verticalScrollBar": null,
  606. "_id": ""
  607. },
  608. {
  609. "__type__": "cc.CompPrefabInfo",
  610. "fileId": "ceAts+b5FLY4BSZFj96JtM"
  611. },
  612. {
  613. "__type__": "cc.Widget",
  614. "_name": "",
  615. "_objFlags": 0,
  616. "__editorExtras__": {},
  617. "node": {
  618. "__id__": 2
  619. },
  620. "_enabled": true,
  621. "__prefab": {
  622. "__id__": 28
  623. },
  624. "_alignFlags": 45,
  625. "_target": null,
  626. "_left": 0,
  627. "_right": 0,
  628. "_top": 50,
  629. "_bottom": 3.375077994860476e-14,
  630. "_horizontalCenter": 0,
  631. "_verticalCenter": 0,
  632. "_isAbsLeft": true,
  633. "_isAbsRight": true,
  634. "_isAbsTop": true,
  635. "_isAbsBottom": true,
  636. "_isAbsHorizontalCenter": true,
  637. "_isAbsVerticalCenter": true,
  638. "_originalWidth": 240,
  639. "_originalHeight": 250,
  640. "_alignMode": 2,
  641. "_lockFlags": 0,
  642. "_id": ""
  643. },
  644. {
  645. "__type__": "cc.CompPrefabInfo",
  646. "fileId": "bbxTve/iFC25my3WRGX0V5"
  647. },
  648. {
  649. "__type__": "cc.PrefabInfo",
  650. "root": {
  651. "__id__": 1
  652. },
  653. "asset": {
  654. "__id__": 0
  655. },
  656. "fileId": "31eZTAxB1NgJM1FMTH/3N8",
  657. "instance": null,
  658. "targetOverrides": null,
  659. "nestedPrefabInstanceRoots": null
  660. },
  661. {
  662. "__type__": "cc.Node",
  663. "_name": "RewardItem",
  664. "_objFlags": 0,
  665. "__editorExtras__": {},
  666. "_parent": {
  667. "__id__": 1
  668. },
  669. "_children": [
  670. {
  671. "__id__": 31
  672. },
  673. {
  674. "__id__": 37
  675. },
  676. {
  677. "__id__": 45
  678. },
  679. {
  680. "__id__": 103
  681. },
  682. {
  683. "__id__": 109
  684. }
  685. ],
  686. "_active": true,
  687. "_components": [
  688. {
  689. "__id__": 115
  690. },
  691. {
  692. "__id__": 117
  693. },
  694. {
  695. "__id__": 119
  696. }
  697. ],
  698. "_prefab": {
  699. "__id__": 121
  700. },
  701. "_lpos": {
  702. "__type__": "cc.Vec3",
  703. "x": -598.238,
  704. "y": 133.76400000000004,
  705. "z": 0
  706. },
  707. "_lrot": {
  708. "__type__": "cc.Quat",
  709. "x": 0,
  710. "y": 0,
  711. "z": 0,
  712. "w": 1
  713. },
  714. "_lscale": {
  715. "__type__": "cc.Vec3",
  716. "x": 1,
  717. "y": 1,
  718. "z": 1
  719. },
  720. "_mobility": 0,
  721. "_layer": 33554432,
  722. "_euler": {
  723. "__type__": "cc.Vec3",
  724. "x": 0,
  725. "y": 0,
  726. "z": 0
  727. },
  728. "_id": ""
  729. },
  730. {
  731. "__type__": "cc.Node",
  732. "_name": "btn_click",
  733. "_objFlags": 0,
  734. "__editorExtras__": {},
  735. "_parent": {
  736. "__id__": 30
  737. },
  738. "_children": [],
  739. "_active": true,
  740. "_components": [
  741. {
  742. "__id__": 32
  743. },
  744. {
  745. "__id__": 34
  746. }
  747. ],
  748. "_prefab": {
  749. "__id__": 36
  750. },
  751. "_lpos": {
  752. "__type__": "cc.Vec3",
  753. "x": 0,
  754. "y": 0,
  755. "z": 0
  756. },
  757. "_lrot": {
  758. "__type__": "cc.Quat",
  759. "x": 0,
  760. "y": 0,
  761. "z": 0,
  762. "w": 1
  763. },
  764. "_lscale": {
  765. "__type__": "cc.Vec3",
  766. "x": 1,
  767. "y": 1,
  768. "z": 1
  769. },
  770. "_mobility": 0,
  771. "_layer": 33554432,
  772. "_euler": {
  773. "__type__": "cc.Vec3",
  774. "x": 0,
  775. "y": 0,
  776. "z": 0
  777. },
  778. "_id": ""
  779. },
  780. {
  781. "__type__": "cc.UITransform",
  782. "_name": "",
  783. "_objFlags": 0,
  784. "__editorExtras__": {},
  785. "node": {
  786. "__id__": 31
  787. },
  788. "_enabled": true,
  789. "__prefab": {
  790. "__id__": 33
  791. },
  792. "_contentSize": {
  793. "__type__": "cc.Size",
  794. "width": 300,
  795. "height": 313.718
  796. },
  797. "_anchorPoint": {
  798. "__type__": "cc.Vec2",
  799. "x": 0.5,
  800. "y": 0.5
  801. },
  802. "_id": ""
  803. },
  804. {
  805. "__type__": "cc.CompPrefabInfo",
  806. "fileId": "75VujpMgJONL6QB3IGhc8n"
  807. },
  808. {
  809. "__type__": "cc.Widget",
  810. "_name": "",
  811. "_objFlags": 0,
  812. "__editorExtras__": {},
  813. "node": {
  814. "__id__": 31
  815. },
  816. "_enabled": true,
  817. "__prefab": {
  818. "__id__": 35
  819. },
  820. "_alignFlags": 45,
  821. "_target": null,
  822. "_left": 0,
  823. "_right": 0,
  824. "_top": 0,
  825. "_bottom": 0,
  826. "_horizontalCenter": 0,
  827. "_verticalCenter": 0,
  828. "_isAbsLeft": true,
  829. "_isAbsRight": true,
  830. "_isAbsTop": true,
  831. "_isAbsBottom": true,
  832. "_isAbsHorizontalCenter": true,
  833. "_isAbsVerticalCenter": true,
  834. "_originalWidth": 100,
  835. "_originalHeight": 100,
  836. "_alignMode": 2,
  837. "_lockFlags": 0,
  838. "_id": ""
  839. },
  840. {
  841. "__type__": "cc.CompPrefabInfo",
  842. "fileId": "b86GcdR35AH6mJwfbnRyIS"
  843. },
  844. {
  845. "__type__": "cc.PrefabInfo",
  846. "root": {
  847. "__id__": 1
  848. },
  849. "asset": {
  850. "__id__": 0
  851. },
  852. "fileId": "c3QyVQWXVOp6YZaF32+T4+",
  853. "instance": null,
  854. "targetOverrides": null,
  855. "nestedPrefabInstanceRoots": null
  856. },
  857. {
  858. "__type__": "cc.Node",
  859. "_name": "icon_bg",
  860. "_objFlags": 0,
  861. "__editorExtras__": {},
  862. "_parent": {
  863. "__id__": 30
  864. },
  865. "_children": [],
  866. "_active": true,
  867. "_components": [
  868. {
  869. "__id__": 38
  870. },
  871. {
  872. "__id__": 40
  873. },
  874. {
  875. "__id__": 42
  876. }
  877. ],
  878. "_prefab": {
  879. "__id__": 44
  880. },
  881. "_lpos": {
  882. "__type__": "cc.Vec3",
  883. "x": 0,
  884. "y": 0,
  885. "z": 0
  886. },
  887. "_lrot": {
  888. "__type__": "cc.Quat",
  889. "x": 0,
  890. "y": 0,
  891. "z": 0,
  892. "w": 1
  893. },
  894. "_lscale": {
  895. "__type__": "cc.Vec3",
  896. "x": 1,
  897. "y": 1,
  898. "z": 1
  899. },
  900. "_mobility": 0,
  901. "_layer": 33554432,
  902. "_euler": {
  903. "__type__": "cc.Vec3",
  904. "x": 0,
  905. "y": 0,
  906. "z": 0
  907. },
  908. "_id": ""
  909. },
  910. {
  911. "__type__": "cc.UITransform",
  912. "_name": "",
  913. "_objFlags": 0,
  914. "__editorExtras__": {},
  915. "node": {
  916. "__id__": 37
  917. },
  918. "_enabled": true,
  919. "__prefab": {
  920. "__id__": 39
  921. },
  922. "_contentSize": {
  923. "__type__": "cc.Size",
  924. "width": 300,
  925. "height": 313.718
  926. },
  927. "_anchorPoint": {
  928. "__type__": "cc.Vec2",
  929. "x": 0.5,
  930. "y": 0.5
  931. },
  932. "_id": ""
  933. },
  934. {
  935. "__type__": "cc.CompPrefabInfo",
  936. "fileId": "d2HZEsTqJFyYX9uv0Oeyjo"
  937. },
  938. {
  939. "__type__": "cc.Sprite",
  940. "_name": "",
  941. "_objFlags": 0,
  942. "__editorExtras__": {},
  943. "node": {
  944. "__id__": 37
  945. },
  946. "_enabled": true,
  947. "__prefab": {
  948. "__id__": 41
  949. },
  950. "_customMaterial": null,
  951. "_srcBlendFactor": 2,
  952. "_dstBlendFactor": 4,
  953. "_color": {
  954. "__type__": "cc.Color",
  955. "r": 255,
  956. "g": 255,
  957. "b": 255,
  958. "a": 255
  959. },
  960. "_spriteFrame": {
  961. "__uuid__": "f1fa8edd-957f-4cd3-93a8-9fc4e783c5a5@f9941",
  962. "__expectedType__": "cc.SpriteFrame"
  963. },
  964. "_type": 0,
  965. "_fillType": 0,
  966. "_sizeMode": 0,
  967. "_fillCenter": {
  968. "__type__": "cc.Vec2",
  969. "x": 0,
  970. "y": 0
  971. },
  972. "_fillStart": 0,
  973. "_fillRange": 0,
  974. "_isTrimmedMode": true,
  975. "_useGrayscale": false,
  976. "_atlas": null,
  977. "_id": ""
  978. },
  979. {
  980. "__type__": "cc.CompPrefabInfo",
  981. "fileId": "08ckNB25tG75ZPcZs1eGvM"
  982. },
  983. {
  984. "__type__": "cc.Widget",
  985. "_name": "",
  986. "_objFlags": 0,
  987. "__editorExtras__": {},
  988. "node": {
  989. "__id__": 37
  990. },
  991. "_enabled": true,
  992. "__prefab": {
  993. "__id__": 43
  994. },
  995. "_alignFlags": 45,
  996. "_target": null,
  997. "_left": 0,
  998. "_right": 0,
  999. "_top": 0,
  1000. "_bottom": 0,
  1001. "_horizontalCenter": 0,
  1002. "_verticalCenter": 0,
  1003. "_isAbsLeft": true,
  1004. "_isAbsRight": true,
  1005. "_isAbsTop": true,
  1006. "_isAbsBottom": true,
  1007. "_isAbsHorizontalCenter": true,
  1008. "_isAbsVerticalCenter": true,
  1009. "_originalWidth": 360,
  1010. "_originalHeight": 360,
  1011. "_alignMode": 2,
  1012. "_lockFlags": 0,
  1013. "_id": ""
  1014. },
  1015. {
  1016. "__type__": "cc.CompPrefabInfo",
  1017. "fileId": "1ftwCDD11NQrNzDS1UgvRK"
  1018. },
  1019. {
  1020. "__type__": "cc.PrefabInfo",
  1021. "root": {
  1022. "__id__": 1
  1023. },
  1024. "asset": {
  1025. "__id__": 0
  1026. },
  1027. "fileId": "7fSBWQJcRBCYbGhc6MdvHp",
  1028. "instance": null,
  1029. "targetOverrides": null,
  1030. "nestedPrefabInstanceRoots": null
  1031. },
  1032. {
  1033. "__type__": "cc.Node",
  1034. "_name": "icon_layout",
  1035. "_objFlags": 0,
  1036. "__editorExtras__": {},
  1037. "_parent": {
  1038. "__id__": 30
  1039. },
  1040. "_children": [
  1041. {
  1042. "__id__": 46
  1043. },
  1044. {
  1045. "__id__": 52
  1046. },
  1047. {
  1048. "__id__": 58
  1049. },
  1050. {
  1051. "__id__": 64
  1052. },
  1053. {
  1054. "__id__": 70
  1055. },
  1056. {
  1057. "__id__": 76
  1058. },
  1059. {
  1060. "__id__": 82
  1061. },
  1062. {
  1063. "__id__": 88
  1064. },
  1065. {
  1066. "__id__": 94
  1067. }
  1068. ],
  1069. "_active": true,
  1070. "_components": [
  1071. {
  1072. "__id__": 100
  1073. }
  1074. ],
  1075. "_prefab": {
  1076. "__id__": 102
  1077. },
  1078. "_lpos": {
  1079. "__type__": "cc.Vec3",
  1080. "x": 5.684341886080802e-14,
  1081. "y": 40.28499999999997,
  1082. "z": 0
  1083. },
  1084. "_lrot": {
  1085. "__type__": "cc.Quat",
  1086. "x": 0,
  1087. "y": 0,
  1088. "z": 0,
  1089. "w": 1
  1090. },
  1091. "_lscale": {
  1092. "__type__": "cc.Vec3",
  1093. "x": 1.5,
  1094. "y": 1.5,
  1095. "z": 1
  1096. },
  1097. "_mobility": 0,
  1098. "_layer": 33554432,
  1099. "_euler": {
  1100. "__type__": "cc.Vec3",
  1101. "x": 0,
  1102. "y": 0,
  1103. "z": 0
  1104. },
  1105. "_id": ""
  1106. },
  1107. {
  1108. "__type__": "cc.Node",
  1109. "_name": "icon_pog",
  1110. "_objFlags": 0,
  1111. "__editorExtras__": {},
  1112. "_parent": {
  1113. "__id__": 45
  1114. },
  1115. "_children": [],
  1116. "_active": false,
  1117. "_components": [
  1118. {
  1119. "__id__": 47
  1120. },
  1121. {
  1122. "__id__": 49
  1123. }
  1124. ],
  1125. "_prefab": {
  1126. "__id__": 51
  1127. },
  1128. "_lpos": {
  1129. "__type__": "cc.Vec3",
  1130. "x": 0,
  1131. "y": 0,
  1132. "z": 0
  1133. },
  1134. "_lrot": {
  1135. "__type__": "cc.Quat",
  1136. "x": 0,
  1137. "y": 0,
  1138. "z": 0,
  1139. "w": 1
  1140. },
  1141. "_lscale": {
  1142. "__type__": "cc.Vec3",
  1143. "x": 1,
  1144. "y": 1,
  1145. "z": 1
  1146. },
  1147. "_mobility": 0,
  1148. "_layer": 33554432,
  1149. "_euler": {
  1150. "__type__": "cc.Vec3",
  1151. "x": 0,
  1152. "y": 0,
  1153. "z": 0
  1154. },
  1155. "_id": ""
  1156. },
  1157. {
  1158. "__type__": "cc.UITransform",
  1159. "_name": "",
  1160. "_objFlags": 0,
  1161. "__editorExtras__": {},
  1162. "node": {
  1163. "__id__": 46
  1164. },
  1165. "_enabled": true,
  1166. "__prefab": {
  1167. "__id__": 48
  1168. },
  1169. "_contentSize": {
  1170. "__type__": "cc.Size",
  1171. "width": 45,
  1172. "height": 45
  1173. },
  1174. "_anchorPoint": {
  1175. "__type__": "cc.Vec2",
  1176. "x": 0.5,
  1177. "y": 0.5
  1178. },
  1179. "_id": ""
  1180. },
  1181. {
  1182. "__type__": "cc.CompPrefabInfo",
  1183. "fileId": "44UTtz2NlHi5QfgZR+3Y09"
  1184. },
  1185. {
  1186. "__type__": "cc.Sprite",
  1187. "_name": "",
  1188. "_objFlags": 0,
  1189. "__editorExtras__": {},
  1190. "node": {
  1191. "__id__": 46
  1192. },
  1193. "_enabled": true,
  1194. "__prefab": {
  1195. "__id__": 50
  1196. },
  1197. "_customMaterial": null,
  1198. "_srcBlendFactor": 2,
  1199. "_dstBlendFactor": 4,
  1200. "_color": {
  1201. "__type__": "cc.Color",
  1202. "r": 255,
  1203. "g": 255,
  1204. "b": 255,
  1205. "a": 255
  1206. },
  1207. "_spriteFrame": {
  1208. "__uuid__": "a02ea29d-ce4c-481a-a758-2b08eafe1ab1@f9941",
  1209. "__expectedType__": "cc.SpriteFrame"
  1210. },
  1211. "_type": 0,
  1212. "_fillType": 0,
  1213. "_sizeMode": 0,
  1214. "_fillCenter": {
  1215. "__type__": "cc.Vec2",
  1216. "x": 0,
  1217. "y": 0
  1218. },
  1219. "_fillStart": 0,
  1220. "_fillRange": 0,
  1221. "_isTrimmedMode": true,
  1222. "_useGrayscale": false,
  1223. "_atlas": null,
  1224. "_id": ""
  1225. },
  1226. {
  1227. "__type__": "cc.CompPrefabInfo",
  1228. "fileId": "25H7xhzBVGnacXL8NbldWn"
  1229. },
  1230. {
  1231. "__type__": "cc.PrefabInfo",
  1232. "root": {
  1233. "__id__": 1
  1234. },
  1235. "asset": {
  1236. "__id__": 0
  1237. },
  1238. "fileId": "808Gg6YNpOIIqscNpC0Mfg",
  1239. "instance": null,
  1240. "targetOverrides": null,
  1241. "nestedPrefabInstanceRoots": null
  1242. },
  1243. {
  1244. "__type__": "cc.Node",
  1245. "_name": "icon_crit",
  1246. "_objFlags": 0,
  1247. "__editorExtras__": {},
  1248. "_parent": {
  1249. "__id__": 45
  1250. },
  1251. "_children": [],
  1252. "_active": false,
  1253. "_components": [
  1254. {
  1255. "__id__": 53
  1256. },
  1257. {
  1258. "__id__": 55
  1259. }
  1260. ],
  1261. "_prefab": {
  1262. "__id__": 57
  1263. },
  1264. "_lpos": {
  1265. "__type__": "cc.Vec3",
  1266. "x": 0,
  1267. "y": 0,
  1268. "z": 0
  1269. },
  1270. "_lrot": {
  1271. "__type__": "cc.Quat",
  1272. "x": 0,
  1273. "y": 0,
  1274. "z": 0,
  1275. "w": 1
  1276. },
  1277. "_lscale": {
  1278. "__type__": "cc.Vec3",
  1279. "x": 1,
  1280. "y": 1,
  1281. "z": 1
  1282. },
  1283. "_mobility": 0,
  1284. "_layer": 33554432,
  1285. "_euler": {
  1286. "__type__": "cc.Vec3",
  1287. "x": 0,
  1288. "y": 0,
  1289. "z": 0
  1290. },
  1291. "_id": ""
  1292. },
  1293. {
  1294. "__type__": "cc.UITransform",
  1295. "_name": "",
  1296. "_objFlags": 0,
  1297. "__editorExtras__": {},
  1298. "node": {
  1299. "__id__": 52
  1300. },
  1301. "_enabled": true,
  1302. "__prefab": {
  1303. "__id__": 54
  1304. },
  1305. "_contentSize": {
  1306. "__type__": "cc.Size",
  1307. "width": 109,
  1308. "height": 128
  1309. },
  1310. "_anchorPoint": {
  1311. "__type__": "cc.Vec2",
  1312. "x": 0.5,
  1313. "y": 0.5
  1314. },
  1315. "_id": ""
  1316. },
  1317. {
  1318. "__type__": "cc.CompPrefabInfo",
  1319. "fileId": "1303J83BNCLp4zOrQqxK2N"
  1320. },
  1321. {
  1322. "__type__": "cc.Sprite",
  1323. "_name": "",
  1324. "_objFlags": 0,
  1325. "__editorExtras__": {},
  1326. "node": {
  1327. "__id__": 52
  1328. },
  1329. "_enabled": true,
  1330. "__prefab": {
  1331. "__id__": 56
  1332. },
  1333. "_customMaterial": null,
  1334. "_srcBlendFactor": 2,
  1335. "_dstBlendFactor": 4,
  1336. "_color": {
  1337. "__type__": "cc.Color",
  1338. "r": 255,
  1339. "g": 255,
  1340. "b": 255,
  1341. "a": 255
  1342. },
  1343. "_spriteFrame": {
  1344. "__uuid__": "acaa2033-4af6-4d9c-9b45-b729786f9e4a@f9941",
  1345. "__expectedType__": "cc.SpriteFrame"
  1346. },
  1347. "_type": 0,
  1348. "_fillType": 0,
  1349. "_sizeMode": 0,
  1350. "_fillCenter": {
  1351. "__type__": "cc.Vec2",
  1352. "x": 0,
  1353. "y": 0
  1354. },
  1355. "_fillStart": 0,
  1356. "_fillRange": 0,
  1357. "_isTrimmedMode": true,
  1358. "_useGrayscale": false,
  1359. "_atlas": null,
  1360. "_id": ""
  1361. },
  1362. {
  1363. "__type__": "cc.CompPrefabInfo",
  1364. "fileId": "a4kilY4qhBf7saDpnJfCbi"
  1365. },
  1366. {
  1367. "__type__": "cc.PrefabInfo",
  1368. "root": {
  1369. "__id__": 1
  1370. },
  1371. "asset": {
  1372. "__id__": 0
  1373. },
  1374. "fileId": "48bAIpZx1Pr6MA6ByIPazA",
  1375. "instance": null,
  1376. "targetOverrides": null,
  1377. "nestedPrefabInstanceRoots": null
  1378. },
  1379. {
  1380. "__type__": "cc.Node",
  1381. "_name": "icon_tog",
  1382. "_objFlags": 0,
  1383. "__editorExtras__": {},
  1384. "_parent": {
  1385. "__id__": 45
  1386. },
  1387. "_children": [],
  1388. "_active": false,
  1389. "_components": [
  1390. {
  1391. "__id__": 59
  1392. },
  1393. {
  1394. "__id__": 61
  1395. }
  1396. ],
  1397. "_prefab": {
  1398. "__id__": 63
  1399. },
  1400. "_lpos": {
  1401. "__type__": "cc.Vec3",
  1402. "x": 0,
  1403. "y": 0,
  1404. "z": 0
  1405. },
  1406. "_lrot": {
  1407. "__type__": "cc.Quat",
  1408. "x": 0,
  1409. "y": 0,
  1410. "z": 0,
  1411. "w": 1
  1412. },
  1413. "_lscale": {
  1414. "__type__": "cc.Vec3",
  1415. "x": 0.6,
  1416. "y": 0.6,
  1417. "z": 1
  1418. },
  1419. "_mobility": 0,
  1420. "_layer": 33554432,
  1421. "_euler": {
  1422. "__type__": "cc.Vec3",
  1423. "x": 0,
  1424. "y": 0,
  1425. "z": 0
  1426. },
  1427. "_id": ""
  1428. },
  1429. {
  1430. "__type__": "cc.UITransform",
  1431. "_name": "",
  1432. "_objFlags": 0,
  1433. "__editorExtras__": {},
  1434. "node": {
  1435. "__id__": 58
  1436. },
  1437. "_enabled": true,
  1438. "__prefab": {
  1439. "__id__": 60
  1440. },
  1441. "_contentSize": {
  1442. "__type__": "cc.Size",
  1443. "width": 128,
  1444. "height": 128
  1445. },
  1446. "_anchorPoint": {
  1447. "__type__": "cc.Vec2",
  1448. "x": 0.5,
  1449. "y": 0.5
  1450. },
  1451. "_id": ""
  1452. },
  1453. {
  1454. "__type__": "cc.CompPrefabInfo",
  1455. "fileId": "0aejLbd6hPmayzWJf7ttEI"
  1456. },
  1457. {
  1458. "__type__": "cc.Sprite",
  1459. "_name": "",
  1460. "_objFlags": 0,
  1461. "__editorExtras__": {},
  1462. "node": {
  1463. "__id__": 58
  1464. },
  1465. "_enabled": true,
  1466. "__prefab": {
  1467. "__id__": 62
  1468. },
  1469. "_customMaterial": null,
  1470. "_srcBlendFactor": 2,
  1471. "_dstBlendFactor": 4,
  1472. "_color": {
  1473. "__type__": "cc.Color",
  1474. "r": 255,
  1475. "g": 255,
  1476. "b": 255,
  1477. "a": 255
  1478. },
  1479. "_spriteFrame": {
  1480. "__uuid__": "04378452-f01a-47ac-a43f-75adc3f5934e@f9941",
  1481. "__expectedType__": "cc.SpriteFrame"
  1482. },
  1483. "_type": 0,
  1484. "_fillType": 0,
  1485. "_sizeMode": 1,
  1486. "_fillCenter": {
  1487. "__type__": "cc.Vec2",
  1488. "x": 0,
  1489. "y": 0
  1490. },
  1491. "_fillStart": 0,
  1492. "_fillRange": 0,
  1493. "_isTrimmedMode": true,
  1494. "_useGrayscale": false,
  1495. "_atlas": null,
  1496. "_id": ""
  1497. },
  1498. {
  1499. "__type__": "cc.CompPrefabInfo",
  1500. "fileId": "c7wfiFah1Da4bRQWzWdFkx"
  1501. },
  1502. {
  1503. "__type__": "cc.PrefabInfo",
  1504. "root": {
  1505. "__id__": 1
  1506. },
  1507. "asset": {
  1508. "__id__": 0
  1509. },
  1510. "fileId": "3cddbFoCBHUYLFhsYn13Tm",
  1511. "instance": null,
  1512. "targetOverrides": null,
  1513. "nestedPrefabInstanceRoots": null
  1514. },
  1515. {
  1516. "__type__": "cc.Node",
  1517. "_name": "icon_estog",
  1518. "_objFlags": 0,
  1519. "__editorExtras__": {},
  1520. "_parent": {
  1521. "__id__": 45
  1522. },
  1523. "_children": [],
  1524. "_active": false,
  1525. "_components": [
  1526. {
  1527. "__id__": 65
  1528. },
  1529. {
  1530. "__id__": 67
  1531. }
  1532. ],
  1533. "_prefab": {
  1534. "__id__": 69
  1535. },
  1536. "_lpos": {
  1537. "__type__": "cc.Vec3",
  1538. "x": 0,
  1539. "y": 0,
  1540. "z": 0
  1541. },
  1542. "_lrot": {
  1543. "__type__": "cc.Quat",
  1544. "x": 0,
  1545. "y": 0,
  1546. "z": 0,
  1547. "w": 1
  1548. },
  1549. "_lscale": {
  1550. "__type__": "cc.Vec3",
  1551. "x": 1,
  1552. "y": 1,
  1553. "z": 1
  1554. },
  1555. "_mobility": 0,
  1556. "_layer": 33554432,
  1557. "_euler": {
  1558. "__type__": "cc.Vec3",
  1559. "x": 0,
  1560. "y": 0,
  1561. "z": 0
  1562. },
  1563. "_id": ""
  1564. },
  1565. {
  1566. "__type__": "cc.UITransform",
  1567. "_name": "",
  1568. "_objFlags": 0,
  1569. "__editorExtras__": {},
  1570. "node": {
  1571. "__id__": 64
  1572. },
  1573. "_enabled": true,
  1574. "__prefab": {
  1575. "__id__": 66
  1576. },
  1577. "_contentSize": {
  1578. "__type__": "cc.Size",
  1579. "width": 128,
  1580. "height": 128
  1581. },
  1582. "_anchorPoint": {
  1583. "__type__": "cc.Vec2",
  1584. "x": 0.5,
  1585. "y": 0.5
  1586. },
  1587. "_id": ""
  1588. },
  1589. {
  1590. "__type__": "cc.CompPrefabInfo",
  1591. "fileId": "c1rTpd2ktJ/KIQol9/CixY"
  1592. },
  1593. {
  1594. "__type__": "cc.Sprite",
  1595. "_name": "",
  1596. "_objFlags": 0,
  1597. "__editorExtras__": {},
  1598. "node": {
  1599. "__id__": 64
  1600. },
  1601. "_enabled": true,
  1602. "__prefab": {
  1603. "__id__": 68
  1604. },
  1605. "_customMaterial": null,
  1606. "_srcBlendFactor": 2,
  1607. "_dstBlendFactor": 4,
  1608. "_color": {
  1609. "__type__": "cc.Color",
  1610. "r": 255,
  1611. "g": 255,
  1612. "b": 255,
  1613. "a": 255
  1614. },
  1615. "_spriteFrame": {
  1616. "__uuid__": "a0699f15-5847-44fe-a8f9-c96b4915a75d@f9941",
  1617. "__expectedType__": "cc.SpriteFrame"
  1618. },
  1619. "_type": 0,
  1620. "_fillType": 0,
  1621. "_sizeMode": 1,
  1622. "_fillCenter": {
  1623. "__type__": "cc.Vec2",
  1624. "x": 0,
  1625. "y": 0
  1626. },
  1627. "_fillStart": 0,
  1628. "_fillRange": 0,
  1629. "_isTrimmedMode": true,
  1630. "_useGrayscale": false,
  1631. "_atlas": null,
  1632. "_id": ""
  1633. },
  1634. {
  1635. "__type__": "cc.CompPrefabInfo",
  1636. "fileId": "47hpEU5mNOFKMwlqpFF3Hi"
  1637. },
  1638. {
  1639. "__type__": "cc.PrefabInfo",
  1640. "root": {
  1641. "__id__": 1
  1642. },
  1643. "asset": {
  1644. "__id__": 0
  1645. },
  1646. "fileId": "82wInV+wpPqoZQlKPTu6J0",
  1647. "instance": null,
  1648. "targetOverrides": null,
  1649. "nestedPrefabInstanceRoots": null
  1650. },
  1651. {
  1652. "__type__": "cc.Node",
  1653. "_name": "icon_item_box",
  1654. "_objFlags": 0,
  1655. "__editorExtras__": {},
  1656. "_parent": {
  1657. "__id__": 45
  1658. },
  1659. "_children": [],
  1660. "_active": false,
  1661. "_components": [
  1662. {
  1663. "__id__": 71
  1664. },
  1665. {
  1666. "__id__": 73
  1667. }
  1668. ],
  1669. "_prefab": {
  1670. "__id__": 75
  1671. },
  1672. "_lpos": {
  1673. "__type__": "cc.Vec3",
  1674. "x": 6.361,
  1675. "y": 0,
  1676. "z": 0
  1677. },
  1678. "_lrot": {
  1679. "__type__": "cc.Quat",
  1680. "x": 0,
  1681. "y": 0,
  1682. "z": 0,
  1683. "w": 1
  1684. },
  1685. "_lscale": {
  1686. "__type__": "cc.Vec3",
  1687. "x": 1,
  1688. "y": 1,
  1689. "z": 1
  1690. },
  1691. "_mobility": 0,
  1692. "_layer": 33554432,
  1693. "_euler": {
  1694. "__type__": "cc.Vec3",
  1695. "x": 0,
  1696. "y": 0,
  1697. "z": 0
  1698. },
  1699. "_id": ""
  1700. },
  1701. {
  1702. "__type__": "cc.UITransform",
  1703. "_name": "",
  1704. "_objFlags": 0,
  1705. "__editorExtras__": {},
  1706. "node": {
  1707. "__id__": 70
  1708. },
  1709. "_enabled": true,
  1710. "__prefab": {
  1711. "__id__": 72
  1712. },
  1713. "_contentSize": {
  1714. "__type__": "cc.Size",
  1715. "width": 150,
  1716. "height": 93
  1717. },
  1718. "_anchorPoint": {
  1719. "__type__": "cc.Vec2",
  1720. "x": 0.5,
  1721. "y": 0.5
  1722. },
  1723. "_id": ""
  1724. },
  1725. {
  1726. "__type__": "cc.CompPrefabInfo",
  1727. "fileId": "ddNo0J73lN55QKTcwCWm/b"
  1728. },
  1729. {
  1730. "__type__": "cc.Sprite",
  1731. "_name": "",
  1732. "_objFlags": 0,
  1733. "__editorExtras__": {},
  1734. "node": {
  1735. "__id__": 70
  1736. },
  1737. "_enabled": true,
  1738. "__prefab": {
  1739. "__id__": 74
  1740. },
  1741. "_customMaterial": null,
  1742. "_srcBlendFactor": 2,
  1743. "_dstBlendFactor": 4,
  1744. "_color": {
  1745. "__type__": "cc.Color",
  1746. "r": 255,
  1747. "g": 255,
  1748. "b": 255,
  1749. "a": 255
  1750. },
  1751. "_spriteFrame": {
  1752. "__uuid__": "f96bdc07-35bc-4357-a6b6-4fcaecf87c86@f9941",
  1753. "__expectedType__": "cc.SpriteFrame"
  1754. },
  1755. "_type": 0,
  1756. "_fillType": 0,
  1757. "_sizeMode": 1,
  1758. "_fillCenter": {
  1759. "__type__": "cc.Vec2",
  1760. "x": 0,
  1761. "y": 0
  1762. },
  1763. "_fillStart": 0,
  1764. "_fillRange": 0,
  1765. "_isTrimmedMode": true,
  1766. "_useGrayscale": false,
  1767. "_atlas": null,
  1768. "_id": ""
  1769. },
  1770. {
  1771. "__type__": "cc.CompPrefabInfo",
  1772. "fileId": "5a9f60pCVK2rifV6AAAujC"
  1773. },
  1774. {
  1775. "__type__": "cc.PrefabInfo",
  1776. "root": {
  1777. "__id__": 1
  1778. },
  1779. "asset": {
  1780. "__id__": 0
  1781. },
  1782. "fileId": "7evvVCqjJOKq1TnkA+wbI1",
  1783. "instance": null,
  1784. "targetOverrides": null,
  1785. "nestedPrefabInstanceRoots": null
  1786. },
  1787. {
  1788. "__type__": "cc.Node",
  1789. "_name": "icon_pog_box",
  1790. "_objFlags": 0,
  1791. "__editorExtras__": {},
  1792. "_parent": {
  1793. "__id__": 45
  1794. },
  1795. "_children": [],
  1796. "_active": false,
  1797. "_components": [
  1798. {
  1799. "__id__": 77
  1800. },
  1801. {
  1802. "__id__": 79
  1803. }
  1804. ],
  1805. "_prefab": {
  1806. "__id__": 81
  1807. },
  1808. "_lpos": {
  1809. "__type__": "cc.Vec3",
  1810. "x": 0,
  1811. "y": 0,
  1812. "z": 0
  1813. },
  1814. "_lrot": {
  1815. "__type__": "cc.Quat",
  1816. "x": 0,
  1817. "y": 0,
  1818. "z": 0,
  1819. "w": 1
  1820. },
  1821. "_lscale": {
  1822. "__type__": "cc.Vec3",
  1823. "x": 1,
  1824. "y": 1,
  1825. "z": 1
  1826. },
  1827. "_mobility": 0,
  1828. "_layer": 33554432,
  1829. "_euler": {
  1830. "__type__": "cc.Vec3",
  1831. "x": 0,
  1832. "y": 0,
  1833. "z": 0
  1834. },
  1835. "_id": ""
  1836. },
  1837. {
  1838. "__type__": "cc.UITransform",
  1839. "_name": "",
  1840. "_objFlags": 0,
  1841. "__editorExtras__": {},
  1842. "node": {
  1843. "__id__": 76
  1844. },
  1845. "_enabled": true,
  1846. "__prefab": {
  1847. "__id__": 78
  1848. },
  1849. "_contentSize": {
  1850. "__type__": "cc.Size",
  1851. "width": 127,
  1852. "height": 90
  1853. },
  1854. "_anchorPoint": {
  1855. "__type__": "cc.Vec2",
  1856. "x": 0.5,
  1857. "y": 0.5
  1858. },
  1859. "_id": ""
  1860. },
  1861. {
  1862. "__type__": "cc.CompPrefabInfo",
  1863. "fileId": "66CGYAZndDv6ilMPqZrhLW"
  1864. },
  1865. {
  1866. "__type__": "cc.Sprite",
  1867. "_name": "",
  1868. "_objFlags": 0,
  1869. "__editorExtras__": {},
  1870. "node": {
  1871. "__id__": 76
  1872. },
  1873. "_enabled": true,
  1874. "__prefab": {
  1875. "__id__": 80
  1876. },
  1877. "_customMaterial": null,
  1878. "_srcBlendFactor": 2,
  1879. "_dstBlendFactor": 4,
  1880. "_color": {
  1881. "__type__": "cc.Color",
  1882. "r": 255,
  1883. "g": 255,
  1884. "b": 255,
  1885. "a": 255
  1886. },
  1887. "_spriteFrame": {
  1888. "__uuid__": "90e045d3-1dcb-4350-a7e4-8fbb37a60430@f9941",
  1889. "__expectedType__": "cc.SpriteFrame"
  1890. },
  1891. "_type": 0,
  1892. "_fillType": 0,
  1893. "_sizeMode": 1,
  1894. "_fillCenter": {
  1895. "__type__": "cc.Vec2",
  1896. "x": 0,
  1897. "y": 0
  1898. },
  1899. "_fillStart": 0,
  1900. "_fillRange": 0,
  1901. "_isTrimmedMode": true,
  1902. "_useGrayscale": false,
  1903. "_atlas": null,
  1904. "_id": ""
  1905. },
  1906. {
  1907. "__type__": "cc.CompPrefabInfo",
  1908. "fileId": "18EZRSH11K+p8DHQthIuop"
  1909. },
  1910. {
  1911. "__type__": "cc.PrefabInfo",
  1912. "root": {
  1913. "__id__": 1
  1914. },
  1915. "asset": {
  1916. "__id__": 0
  1917. },
  1918. "fileId": "c8Lt8v8PdLj62JEMgX3nqb",
  1919. "instance": null,
  1920. "targetOverrides": null,
  1921. "nestedPrefabInstanceRoots": null
  1922. },
  1923. {
  1924. "__type__": "cc.Node",
  1925. "_name": "icon_puzzle",
  1926. "_objFlags": 0,
  1927. "__editorExtras__": {},
  1928. "_parent": {
  1929. "__id__": 45
  1930. },
  1931. "_children": [],
  1932. "_active": false,
  1933. "_components": [
  1934. {
  1935. "__id__": 83
  1936. },
  1937. {
  1938. "__id__": 85
  1939. }
  1940. ],
  1941. "_prefab": {
  1942. "__id__": 87
  1943. },
  1944. "_lpos": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 0,
  1947. "y": 0,
  1948. "z": 0
  1949. },
  1950. "_lrot": {
  1951. "__type__": "cc.Quat",
  1952. "x": 0,
  1953. "y": 0,
  1954. "z": 0,
  1955. "w": 1
  1956. },
  1957. "_lscale": {
  1958. "__type__": "cc.Vec3",
  1959. "x": 1,
  1960. "y": 1,
  1961. "z": 1
  1962. },
  1963. "_mobility": 0,
  1964. "_layer": 33554432,
  1965. "_euler": {
  1966. "__type__": "cc.Vec3",
  1967. "x": 0,
  1968. "y": 0,
  1969. "z": 0
  1970. },
  1971. "_id": ""
  1972. },
  1973. {
  1974. "__type__": "cc.UITransform",
  1975. "_name": "",
  1976. "_objFlags": 0,
  1977. "__editorExtras__": {},
  1978. "node": {
  1979. "__id__": 82
  1980. },
  1981. "_enabled": true,
  1982. "__prefab": {
  1983. "__id__": 84
  1984. },
  1985. "_contentSize": {
  1986. "__type__": "cc.Size",
  1987. "width": 103,
  1988. "height": 104
  1989. },
  1990. "_anchorPoint": {
  1991. "__type__": "cc.Vec2",
  1992. "x": 0.5,
  1993. "y": 0.5
  1994. },
  1995. "_id": ""
  1996. },
  1997. {
  1998. "__type__": "cc.CompPrefabInfo",
  1999. "fileId": "4ctdcWfz9PQZ5X27syS4cH"
  2000. },
  2001. {
  2002. "__type__": "cc.Sprite",
  2003. "_name": "",
  2004. "_objFlags": 0,
  2005. "__editorExtras__": {},
  2006. "node": {
  2007. "__id__": 82
  2008. },
  2009. "_enabled": true,
  2010. "__prefab": {
  2011. "__id__": 86
  2012. },
  2013. "_customMaterial": null,
  2014. "_srcBlendFactor": 2,
  2015. "_dstBlendFactor": 4,
  2016. "_color": {
  2017. "__type__": "cc.Color",
  2018. "r": 255,
  2019. "g": 255,
  2020. "b": 255,
  2021. "a": 255
  2022. },
  2023. "_spriteFrame": {
  2024. "__uuid__": "5251728e-2ec8-42ca-8f8a-c51dadab4a83@f9941",
  2025. "__expectedType__": "cc.SpriteFrame"
  2026. },
  2027. "_type": 0,
  2028. "_fillType": 0,
  2029. "_sizeMode": 0,
  2030. "_fillCenter": {
  2031. "__type__": "cc.Vec2",
  2032. "x": 0,
  2033. "y": 0
  2034. },
  2035. "_fillStart": 0,
  2036. "_fillRange": 0,
  2037. "_isTrimmedMode": true,
  2038. "_useGrayscale": false,
  2039. "_atlas": null,
  2040. "_id": ""
  2041. },
  2042. {
  2043. "__type__": "cc.CompPrefabInfo",
  2044. "fileId": "0fUQzui/FNd59JJbaqwHoP"
  2045. },
  2046. {
  2047. "__type__": "cc.PrefabInfo",
  2048. "root": {
  2049. "__id__": 1
  2050. },
  2051. "asset": {
  2052. "__id__": 0
  2053. },
  2054. "fileId": "52HQ9We8lLSrUZe+KNnuWV",
  2055. "instance": null,
  2056. "targetOverrides": null,
  2057. "nestedPrefabInstanceRoots": null
  2058. },
  2059. {
  2060. "__type__": "cc.Node",
  2061. "_name": "game_pass",
  2062. "_objFlags": 0,
  2063. "__editorExtras__": {},
  2064. "_parent": {
  2065. "__id__": 45
  2066. },
  2067. "_children": [],
  2068. "_active": true,
  2069. "_components": [
  2070. {
  2071. "__id__": 89
  2072. },
  2073. {
  2074. "__id__": 91
  2075. }
  2076. ],
  2077. "_prefab": {
  2078. "__id__": 93
  2079. },
  2080. "_lpos": {
  2081. "__type__": "cc.Vec3",
  2082. "x": 0,
  2083. "y": 0,
  2084. "z": 0
  2085. },
  2086. "_lrot": {
  2087. "__type__": "cc.Quat",
  2088. "x": 0,
  2089. "y": 0,
  2090. "z": 0,
  2091. "w": 1
  2092. },
  2093. "_lscale": {
  2094. "__type__": "cc.Vec3",
  2095. "x": 1.5,
  2096. "y": 1.5,
  2097. "z": 1
  2098. },
  2099. "_mobility": 0,
  2100. "_layer": 33554432,
  2101. "_euler": {
  2102. "__type__": "cc.Vec3",
  2103. "x": 0,
  2104. "y": 0,
  2105. "z": 0
  2106. },
  2107. "_id": ""
  2108. },
  2109. {
  2110. "__type__": "cc.UITransform",
  2111. "_name": "",
  2112. "_objFlags": 0,
  2113. "__editorExtras__": {},
  2114. "node": {
  2115. "__id__": 88
  2116. },
  2117. "_enabled": true,
  2118. "__prefab": {
  2119. "__id__": 90
  2120. },
  2121. "_contentSize": {
  2122. "__type__": "cc.Size",
  2123. "width": 61,
  2124. "height": 65
  2125. },
  2126. "_anchorPoint": {
  2127. "__type__": "cc.Vec2",
  2128. "x": 0.5,
  2129. "y": 0.5
  2130. },
  2131. "_id": ""
  2132. },
  2133. {
  2134. "__type__": "cc.CompPrefabInfo",
  2135. "fileId": "3cwOIlHvFFNKu/6Z5s9EhE"
  2136. },
  2137. {
  2138. "__type__": "cc.Sprite",
  2139. "_name": "",
  2140. "_objFlags": 0,
  2141. "__editorExtras__": {},
  2142. "node": {
  2143. "__id__": 88
  2144. },
  2145. "_enabled": true,
  2146. "__prefab": {
  2147. "__id__": 92
  2148. },
  2149. "_customMaterial": null,
  2150. "_srcBlendFactor": 2,
  2151. "_dstBlendFactor": 4,
  2152. "_color": {
  2153. "__type__": "cc.Color",
  2154. "r": 255,
  2155. "g": 255,
  2156. "b": 255,
  2157. "a": 255
  2158. },
  2159. "_spriteFrame": {
  2160. "__uuid__": "9d338c5f-2d20-4226-a2bc-7f2f7aae1cc5@f9941",
  2161. "__expectedType__": "cc.SpriteFrame"
  2162. },
  2163. "_type": 0,
  2164. "_fillType": 0,
  2165. "_sizeMode": 1,
  2166. "_fillCenter": {
  2167. "__type__": "cc.Vec2",
  2168. "x": 0,
  2169. "y": 0
  2170. },
  2171. "_fillStart": 0,
  2172. "_fillRange": 0,
  2173. "_isTrimmedMode": true,
  2174. "_useGrayscale": false,
  2175. "_atlas": null,
  2176. "_id": ""
  2177. },
  2178. {
  2179. "__type__": "cc.CompPrefabInfo",
  2180. "fileId": "ba8V3GvAxJkqeEgR3QO8qk"
  2181. },
  2182. {
  2183. "__type__": "cc.PrefabInfo",
  2184. "root": {
  2185. "__id__": 1
  2186. },
  2187. "asset": {
  2188. "__id__": 0
  2189. },
  2190. "fileId": "8dNrc0FtZJNLDiS+IxbG26",
  2191. "instance": null,
  2192. "targetOverrides": null,
  2193. "nestedPrefabInstanceRoots": null
  2194. },
  2195. {
  2196. "__type__": "cc.Node",
  2197. "_name": "icon_gem",
  2198. "_objFlags": 0,
  2199. "__editorExtras__": {},
  2200. "_parent": {
  2201. "__id__": 45
  2202. },
  2203. "_children": [],
  2204. "_active": false,
  2205. "_components": [
  2206. {
  2207. "__id__": 95
  2208. },
  2209. {
  2210. "__id__": 97
  2211. }
  2212. ],
  2213. "_prefab": {
  2214. "__id__": 99
  2215. },
  2216. "_lpos": {
  2217. "__type__": "cc.Vec3",
  2218. "x": 0,
  2219. "y": 0,
  2220. "z": 0
  2221. },
  2222. "_lrot": {
  2223. "__type__": "cc.Quat",
  2224. "x": 0,
  2225. "y": 0,
  2226. "z": 0,
  2227. "w": 1
  2228. },
  2229. "_lscale": {
  2230. "__type__": "cc.Vec3",
  2231. "x": 1,
  2232. "y": 1,
  2233. "z": 1
  2234. },
  2235. "_mobility": 0,
  2236. "_layer": 33554432,
  2237. "_euler": {
  2238. "__type__": "cc.Vec3",
  2239. "x": 0,
  2240. "y": 0,
  2241. "z": 0
  2242. },
  2243. "_id": ""
  2244. },
  2245. {
  2246. "__type__": "cc.UITransform",
  2247. "_name": "",
  2248. "_objFlags": 0,
  2249. "__editorExtras__": {},
  2250. "node": {
  2251. "__id__": 94
  2252. },
  2253. "_enabled": true,
  2254. "__prefab": {
  2255. "__id__": 96
  2256. },
  2257. "_contentSize": {
  2258. "__type__": "cc.Size",
  2259. "width": 46,
  2260. "height": 37
  2261. },
  2262. "_anchorPoint": {
  2263. "__type__": "cc.Vec2",
  2264. "x": 0.5,
  2265. "y": 0.5
  2266. },
  2267. "_id": ""
  2268. },
  2269. {
  2270. "__type__": "cc.CompPrefabInfo",
  2271. "fileId": "385NqWfa5JdrQLVAtO7SJZ"
  2272. },
  2273. {
  2274. "__type__": "cc.Sprite",
  2275. "_name": "",
  2276. "_objFlags": 0,
  2277. "__editorExtras__": {},
  2278. "node": {
  2279. "__id__": 94
  2280. },
  2281. "_enabled": true,
  2282. "__prefab": {
  2283. "__id__": 98
  2284. },
  2285. "_customMaterial": null,
  2286. "_srcBlendFactor": 2,
  2287. "_dstBlendFactor": 4,
  2288. "_color": {
  2289. "__type__": "cc.Color",
  2290. "r": 255,
  2291. "g": 255,
  2292. "b": 255,
  2293. "a": 255
  2294. },
  2295. "_spriteFrame": {
  2296. "__uuid__": "aef30ea8-629a-42c1-8cfa-f761155a40f8@f9941",
  2297. "__expectedType__": "cc.SpriteFrame"
  2298. },
  2299. "_type": 0,
  2300. "_fillType": 0,
  2301. "_sizeMode": 1,
  2302. "_fillCenter": {
  2303. "__type__": "cc.Vec2",
  2304. "x": 0,
  2305. "y": 0
  2306. },
  2307. "_fillStart": 0,
  2308. "_fillRange": 0,
  2309. "_isTrimmedMode": true,
  2310. "_useGrayscale": false,
  2311. "_atlas": null,
  2312. "_id": ""
  2313. },
  2314. {
  2315. "__type__": "cc.CompPrefabInfo",
  2316. "fileId": "124W3k261FM5uaAOq7KYY5"
  2317. },
  2318. {
  2319. "__type__": "cc.PrefabInfo",
  2320. "root": {
  2321. "__id__": 1
  2322. },
  2323. "asset": {
  2324. "__id__": 0
  2325. },
  2326. "fileId": "cbBl4gl85LtJg/QQu/NTDi",
  2327. "instance": null,
  2328. "targetOverrides": null,
  2329. "nestedPrefabInstanceRoots": null
  2330. },
  2331. {
  2332. "__type__": "cc.UITransform",
  2333. "_name": "",
  2334. "_objFlags": 0,
  2335. "__editorExtras__": {},
  2336. "node": {
  2337. "__id__": 45
  2338. },
  2339. "_enabled": true,
  2340. "__prefab": {
  2341. "__id__": 101
  2342. },
  2343. "_contentSize": {
  2344. "__type__": "cc.Size",
  2345. "width": 100,
  2346. "height": 100
  2347. },
  2348. "_anchorPoint": {
  2349. "__type__": "cc.Vec2",
  2350. "x": 0.5,
  2351. "y": 0.5
  2352. },
  2353. "_id": ""
  2354. },
  2355. {
  2356. "__type__": "cc.CompPrefabInfo",
  2357. "fileId": "e01kSt7/hEVYCEm/Xz0mMU"
  2358. },
  2359. {
  2360. "__type__": "cc.PrefabInfo",
  2361. "root": {
  2362. "__id__": 1
  2363. },
  2364. "asset": {
  2365. "__id__": 0
  2366. },
  2367. "fileId": "02xoknK5dFJpoYMB5S94fi",
  2368. "instance": null,
  2369. "targetOverrides": null,
  2370. "nestedPrefabInstanceRoots": null
  2371. },
  2372. {
  2373. "__type__": "cc.Node",
  2374. "_name": "lbl_name",
  2375. "_objFlags": 0,
  2376. "__editorExtras__": {},
  2377. "_parent": {
  2378. "__id__": 30
  2379. },
  2380. "_children": [],
  2381. "_active": true,
  2382. "_components": [
  2383. {
  2384. "__id__": 104
  2385. },
  2386. {
  2387. "__id__": 106
  2388. }
  2389. ],
  2390. "_prefab": {
  2391. "__id__": 108
  2392. },
  2393. "_lpos": {
  2394. "__type__": "cc.Vec3",
  2395. "x": -2.0459999999999354,
  2396. "y": -113.98600000000005,
  2397. "z": 0
  2398. },
  2399. "_lrot": {
  2400. "__type__": "cc.Quat",
  2401. "x": 0,
  2402. "y": 0,
  2403. "z": 0,
  2404. "w": 1
  2405. },
  2406. "_lscale": {
  2407. "__type__": "cc.Vec3",
  2408. "x": 1,
  2409. "y": 1,
  2410. "z": 1
  2411. },
  2412. "_mobility": 0,
  2413. "_layer": 33554432,
  2414. "_euler": {
  2415. "__type__": "cc.Vec3",
  2416. "x": 0,
  2417. "y": 0,
  2418. "z": 0
  2419. },
  2420. "_id": ""
  2421. },
  2422. {
  2423. "__type__": "cc.UITransform",
  2424. "_name": "",
  2425. "_objFlags": 0,
  2426. "__editorExtras__": {},
  2427. "node": {
  2428. "__id__": 103
  2429. },
  2430. "_enabled": true,
  2431. "__prefab": {
  2432. "__id__": 105
  2433. },
  2434. "_contentSize": {
  2435. "__type__": "cc.Size",
  2436. "width": 279.96428125,
  2437. "height": 77.74
  2438. },
  2439. "_anchorPoint": {
  2440. "__type__": "cc.Vec2",
  2441. "x": 0.5,
  2442. "y": 0.5
  2443. },
  2444. "_id": ""
  2445. },
  2446. {
  2447. "__type__": "cc.CompPrefabInfo",
  2448. "fileId": "ecMgAFX6NHNb4UpMk5FTxM"
  2449. },
  2450. {
  2451. "__type__": "cc.Label",
  2452. "_name": "",
  2453. "_objFlags": 0,
  2454. "__editorExtras__": {},
  2455. "node": {
  2456. "__id__": 103
  2457. },
  2458. "_enabled": true,
  2459. "__prefab": {
  2460. "__id__": 107
  2461. },
  2462. "_customMaterial": null,
  2463. "_srcBlendFactor": 2,
  2464. "_dstBlendFactor": 4,
  2465. "_color": {
  2466. "__type__": "cc.Color",
  2467. "r": 192,
  2468. "g": 242,
  2469. "b": 131,
  2470. "a": 255
  2471. },
  2472. "_string": "Diamond121 ",
  2473. "_horizontalAlign": 1,
  2474. "_verticalAlign": 1,
  2475. "_actualFontSize": 31,
  2476. "_fontSize": 30,
  2477. "_fontFamily": "Arial",
  2478. "_lineHeight": 30,
  2479. "_overflow": 2,
  2480. "_enableWrapText": true,
  2481. "_font": null,
  2482. "_isSystemFontUsed": true,
  2483. "_spacingX": 0,
  2484. "_isItalic": false,
  2485. "_isBold": true,
  2486. "_isUnderline": false,
  2487. "_underlineHeight": 2,
  2488. "_cacheMode": 0,
  2489. "_enableOutline": true,
  2490. "_outlineColor": {
  2491. "__type__": "cc.Color",
  2492. "r": 0,
  2493. "g": 0,
  2494. "b": 0,
  2495. "a": 255
  2496. },
  2497. "_outlineWidth": 2,
  2498. "_enableShadow": false,
  2499. "_shadowColor": {
  2500. "__type__": "cc.Color",
  2501. "r": 0,
  2502. "g": 0,
  2503. "b": 0,
  2504. "a": 255
  2505. },
  2506. "_shadowOffset": {
  2507. "__type__": "cc.Vec2",
  2508. "x": 2,
  2509. "y": 2
  2510. },
  2511. "_shadowBlur": 2,
  2512. "_id": ""
  2513. },
  2514. {
  2515. "__type__": "cc.CompPrefabInfo",
  2516. "fileId": "88KAgXAjlN56tKop3lA27T"
  2517. },
  2518. {
  2519. "__type__": "cc.PrefabInfo",
  2520. "root": {
  2521. "__id__": 1
  2522. },
  2523. "asset": {
  2524. "__id__": 0
  2525. },
  2526. "fileId": "8eF0t0FBBDyK+aIv9A5hUl",
  2527. "instance": null,
  2528. "targetOverrides": null,
  2529. "nestedPrefabInstanceRoots": null
  2530. },
  2531. {
  2532. "__type__": "cc.Node",
  2533. "_name": "lbl_count",
  2534. "_objFlags": 0,
  2535. "__editorExtras__": {},
  2536. "_parent": {
  2537. "__id__": 30
  2538. },
  2539. "_children": [],
  2540. "_active": true,
  2541. "_components": [
  2542. {
  2543. "__id__": 110
  2544. },
  2545. {
  2546. "__id__": 112
  2547. }
  2548. ],
  2549. "_prefab": {
  2550. "__id__": 114
  2551. },
  2552. "_lpos": {
  2553. "__type__": "cc.Vec3",
  2554. "x": 79.64500000000007,
  2555. "y": -47.916000000000054,
  2556. "z": 0
  2557. },
  2558. "_lrot": {
  2559. "__type__": "cc.Quat",
  2560. "x": 0,
  2561. "y": 0,
  2562. "z": 0,
  2563. "w": 1
  2564. },
  2565. "_lscale": {
  2566. "__type__": "cc.Vec3",
  2567. "x": 1,
  2568. "y": 1,
  2569. "z": 1
  2570. },
  2571. "_mobility": 0,
  2572. "_layer": 33554432,
  2573. "_euler": {
  2574. "__type__": "cc.Vec3",
  2575. "x": 0,
  2576. "y": 0,
  2577. "z": 0
  2578. },
  2579. "_id": ""
  2580. },
  2581. {
  2582. "__type__": "cc.UITransform",
  2583. "_name": "",
  2584. "_objFlags": 0,
  2585. "__editorExtras__": {},
  2586. "node": {
  2587. "__id__": 109
  2588. },
  2589. "_enabled": true,
  2590. "__prefab": {
  2591. "__id__": 111
  2592. },
  2593. "_contentSize": {
  2594. "__type__": "cc.Size",
  2595. "width": 92.984375,
  2596. "height": 54.4
  2597. },
  2598. "_anchorPoint": {
  2599. "__type__": "cc.Vec2",
  2600. "x": 0.5,
  2601. "y": 0.5
  2602. },
  2603. "_id": ""
  2604. },
  2605. {
  2606. "__type__": "cc.CompPrefabInfo",
  2607. "fileId": "1fhi3DzeNPCamcWrPUjL7c"
  2608. },
  2609. {
  2610. "__type__": "cc.Label",
  2611. "_name": "",
  2612. "_objFlags": 0,
  2613. "__editorExtras__": {},
  2614. "node": {
  2615. "__id__": 109
  2616. },
  2617. "_enabled": true,
  2618. "__prefab": {
  2619. "__id__": 113
  2620. },
  2621. "_customMaterial": null,
  2622. "_srcBlendFactor": 2,
  2623. "_dstBlendFactor": 4,
  2624. "_color": {
  2625. "__type__": "cc.Color",
  2626. "r": 255,
  2627. "g": 255,
  2628. "b": 255,
  2629. "a": 255
  2630. },
  2631. "_string": "x100",
  2632. "_horizontalAlign": 1,
  2633. "_verticalAlign": 1,
  2634. "_actualFontSize": 40,
  2635. "_fontSize": 40,
  2636. "_fontFamily": "Arial",
  2637. "_lineHeight": 40,
  2638. "_overflow": 0,
  2639. "_enableWrapText": true,
  2640. "_font": null,
  2641. "_isSystemFontUsed": true,
  2642. "_spacingX": 0,
  2643. "_isItalic": false,
  2644. "_isBold": true,
  2645. "_isUnderline": false,
  2646. "_underlineHeight": 2,
  2647. "_cacheMode": 0,
  2648. "_enableOutline": true,
  2649. "_outlineColor": {
  2650. "__type__": "cc.Color",
  2651. "r": 0,
  2652. "g": 0,
  2653. "b": 0,
  2654. "a": 255
  2655. },
  2656. "_outlineWidth": 2,
  2657. "_enableShadow": false,
  2658. "_shadowColor": {
  2659. "__type__": "cc.Color",
  2660. "r": 0,
  2661. "g": 0,
  2662. "b": 0,
  2663. "a": 255
  2664. },
  2665. "_shadowOffset": {
  2666. "__type__": "cc.Vec2",
  2667. "x": 2,
  2668. "y": 2
  2669. },
  2670. "_shadowBlur": 2,
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.CompPrefabInfo",
  2675. "fileId": "d6qTlbOBtJ4IhQ1cC+51jb"
  2676. },
  2677. {
  2678. "__type__": "cc.PrefabInfo",
  2679. "root": {
  2680. "__id__": 1
  2681. },
  2682. "asset": {
  2683. "__id__": 0
  2684. },
  2685. "fileId": "dbJVlkdRtA4LAC7nYvi65m",
  2686. "instance": null,
  2687. "targetOverrides": null,
  2688. "nestedPrefabInstanceRoots": null
  2689. },
  2690. {
  2691. "__type__": "cc.UITransform",
  2692. "_name": "",
  2693. "_objFlags": 0,
  2694. "__editorExtras__": {},
  2695. "node": {
  2696. "__id__": 30
  2697. },
  2698. "_enabled": true,
  2699. "__prefab": {
  2700. "__id__": 116
  2701. },
  2702. "_contentSize": {
  2703. "__type__": "cc.Size",
  2704. "width": 300,
  2705. "height": 313.718
  2706. },
  2707. "_anchorPoint": {
  2708. "__type__": "cc.Vec2",
  2709. "x": 0.5,
  2710. "y": 0.5
  2711. },
  2712. "_id": ""
  2713. },
  2714. {
  2715. "__type__": "cc.CompPrefabInfo",
  2716. "fileId": "9bGCaWI/tMT4rittr+cs7A"
  2717. },
  2718. {
  2719. "__type__": "cc.Sprite",
  2720. "_name": "",
  2721. "_objFlags": 0,
  2722. "__editorExtras__": {},
  2723. "node": {
  2724. "__id__": 30
  2725. },
  2726. "_enabled": false,
  2727. "__prefab": {
  2728. "__id__": 118
  2729. },
  2730. "_customMaterial": null,
  2731. "_srcBlendFactor": 2,
  2732. "_dstBlendFactor": 4,
  2733. "_color": {
  2734. "__type__": "cc.Color",
  2735. "r": 255,
  2736. "g": 255,
  2737. "b": 255,
  2738. "a": 255
  2739. },
  2740. "_spriteFrame": {
  2741. "__uuid__": "bbe820c4-7f04-4ad9-9c8d-675e35be8595@f9941",
  2742. "__expectedType__": "cc.SpriteFrame"
  2743. },
  2744. "_type": 1,
  2745. "_fillType": 0,
  2746. "_sizeMode": 0,
  2747. "_fillCenter": {
  2748. "__type__": "cc.Vec2",
  2749. "x": 0,
  2750. "y": 0
  2751. },
  2752. "_fillStart": 0,
  2753. "_fillRange": 0,
  2754. "_isTrimmedMode": true,
  2755. "_useGrayscale": false,
  2756. "_atlas": null,
  2757. "_id": ""
  2758. },
  2759. {
  2760. "__type__": "cc.CompPrefabInfo",
  2761. "fileId": "eas42jXg5Lv6dOouBWjPdw"
  2762. },
  2763. {
  2764. "__type__": "fa27eAxmp1DEZfKoAiV170t",
  2765. "_name": "",
  2766. "_objFlags": 0,
  2767. "__editorExtras__": {},
  2768. "node": {
  2769. "__id__": 30
  2770. },
  2771. "_enabled": true,
  2772. "__prefab": {
  2773. "__id__": 120
  2774. },
  2775. "_id": ""
  2776. },
  2777. {
  2778. "__type__": "cc.CompPrefabInfo",
  2779. "fileId": "27yc2BKAFLLp5FfjJq/Oqu"
  2780. },
  2781. {
  2782. "__type__": "cc.PrefabInfo",
  2783. "root": {
  2784. "__id__": 1
  2785. },
  2786. "asset": {
  2787. "__id__": 0
  2788. },
  2789. "fileId": "8c3NYUn9NK2ISIEIdvTNXf",
  2790. "instance": null,
  2791. "targetOverrides": null,
  2792. "nestedPrefabInstanceRoots": null
  2793. },
  2794. {
  2795. "__type__": "cc.Node",
  2796. "_objFlags": 0,
  2797. "_parent": {
  2798. "__id__": 1
  2799. },
  2800. "_prefab": {
  2801. "__id__": 123
  2802. },
  2803. "__editorExtras__": {}
  2804. },
  2805. {
  2806. "__type__": "cc.PrefabInfo",
  2807. "root": {
  2808. "__id__": 122
  2809. },
  2810. "asset": {
  2811. "__uuid__": "ecf307a8-96a1-4b40-9081-029f2cd7b5d4",
  2812. "__expectedType__": "cc.Prefab"
  2813. },
  2814. "fileId": "1cA/7nwzpNDrjwMWFFDp4e",
  2815. "instance": {
  2816. "__id__": 124
  2817. },
  2818. "targetOverrides": null
  2819. },
  2820. {
  2821. "__type__": "cc.PrefabInstance",
  2822. "fileId": "ebG0OZSA5FtYku9Sn+h79R",
  2823. "prefabRootNode": {
  2824. "__id__": 1
  2825. },
  2826. "mountedChildren": [],
  2827. "mountedComponents": [
  2828. {
  2829. "__id__": 125
  2830. }
  2831. ],
  2832. "propertyOverrides": [
  2833. {
  2834. "__id__": 129
  2835. },
  2836. {
  2837. "__id__": 131
  2838. },
  2839. {
  2840. "__id__": 132
  2841. },
  2842. {
  2843. "__id__": 133
  2844. }
  2845. ],
  2846. "removedComponents": []
  2847. },
  2848. {
  2849. "__type__": "cc.MountedComponentsInfo",
  2850. "targetInfo": {
  2851. "__id__": 126
  2852. },
  2853. "components": [
  2854. {
  2855. "__id__": 127
  2856. }
  2857. ]
  2858. },
  2859. {
  2860. "__type__": "cc.TargetInfo",
  2861. "localID": [
  2862. "1cA/7nwzpNDrjwMWFFDp4e"
  2863. ]
  2864. },
  2865. {
  2866. "__type__": "cc.Widget",
  2867. "_name": "",
  2868. "_objFlags": 0,
  2869. "__editorExtras__": {
  2870. "mountedRoot": {
  2871. "__id__": 122
  2872. }
  2873. },
  2874. "node": {
  2875. "__id__": 122
  2876. },
  2877. "_enabled": true,
  2878. "__prefab": {
  2879. "__id__": 128
  2880. },
  2881. "_alignFlags": 1,
  2882. "_target": null,
  2883. "_left": 0,
  2884. "_right": 0,
  2885. "_top": 0,
  2886. "_bottom": 0,
  2887. "_horizontalCenter": 0,
  2888. "_verticalCenter": 0,
  2889. "_isAbsLeft": true,
  2890. "_isAbsRight": true,
  2891. "_isAbsTop": true,
  2892. "_isAbsBottom": true,
  2893. "_isAbsHorizontalCenter": true,
  2894. "_isAbsVerticalCenter": true,
  2895. "_originalWidth": 0,
  2896. "_originalHeight": 0,
  2897. "_alignMode": 2,
  2898. "_lockFlags": 0,
  2899. "_id": ""
  2900. },
  2901. {
  2902. "__type__": "cc.CompPrefabInfo",
  2903. "fileId": "98sYcJGGpFjaDAqyn6OJFC"
  2904. },
  2905. {
  2906. "__type__": "CCPropertyOverrideInfo",
  2907. "targetInfo": {
  2908. "__id__": 130
  2909. },
  2910. "propertyPath": [
  2911. "_name"
  2912. ],
  2913. "value": "CommonTabsTitle"
  2914. },
  2915. {
  2916. "__type__": "cc.TargetInfo",
  2917. "localID": [
  2918. "1cA/7nwzpNDrjwMWFFDp4e"
  2919. ]
  2920. },
  2921. {
  2922. "__type__": "CCPropertyOverrideInfo",
  2923. "targetInfo": {
  2924. "__id__": 130
  2925. },
  2926. "propertyPath": [
  2927. "_lpos"
  2928. ],
  2929. "value": {
  2930. "__type__": "cc.Vec3",
  2931. "x": -324,
  2932. "y": 475,
  2933. "z": 0
  2934. }
  2935. },
  2936. {
  2937. "__type__": "CCPropertyOverrideInfo",
  2938. "targetInfo": {
  2939. "__id__": 130
  2940. },
  2941. "propertyPath": [
  2942. "_lrot"
  2943. ],
  2944. "value": {
  2945. "__type__": "cc.Quat",
  2946. "x": 0,
  2947. "y": 0,
  2948. "z": 0,
  2949. "w": 1
  2950. }
  2951. },
  2952. {
  2953. "__type__": "CCPropertyOverrideInfo",
  2954. "targetInfo": {
  2955. "__id__": 130
  2956. },
  2957. "propertyPath": [
  2958. "_euler"
  2959. ],
  2960. "value": {
  2961. "__type__": "cc.Vec3",
  2962. "x": 0,
  2963. "y": 0,
  2964. "z": 0
  2965. }
  2966. },
  2967. {
  2968. "__type__": "cc.Node",
  2969. "_name": "NoData",
  2970. "_objFlags": 0,
  2971. "__editorExtras__": {},
  2972. "_parent": {
  2973. "__id__": 1
  2974. },
  2975. "_children": [],
  2976. "_active": false,
  2977. "_components": [
  2978. {
  2979. "__id__": 135
  2980. },
  2981. {
  2982. "__id__": 137
  2983. }
  2984. ],
  2985. "_prefab": {
  2986. "__id__": 139
  2987. },
  2988. "_lpos": {
  2989. "__type__": "cc.Vec3",
  2990. "x": 0,
  2991. "y": 0,
  2992. "z": 0
  2993. },
  2994. "_lrot": {
  2995. "__type__": "cc.Quat",
  2996. "x": 0,
  2997. "y": 0,
  2998. "z": 0,
  2999. "w": 1
  3000. },
  3001. "_lscale": {
  3002. "__type__": "cc.Vec3",
  3003. "x": 1,
  3004. "y": 1,
  3005. "z": 1
  3006. },
  3007. "_mobility": 0,
  3008. "_layer": 33554432,
  3009. "_euler": {
  3010. "__type__": "cc.Vec3",
  3011. "x": 0,
  3012. "y": 0,
  3013. "z": 0
  3014. },
  3015. "_id": ""
  3016. },
  3017. {
  3018. "__type__": "cc.UITransform",
  3019. "_name": "",
  3020. "_objFlags": 0,
  3021. "__editorExtras__": {},
  3022. "node": {
  3023. "__id__": 134
  3024. },
  3025. "_enabled": true,
  3026. "__prefab": {
  3027. "__id__": 136
  3028. },
  3029. "_contentSize": {
  3030. "__type__": "cc.Size",
  3031. "width": 113.359375,
  3032. "height": 50.4
  3033. },
  3034. "_anchorPoint": {
  3035. "__type__": "cc.Vec2",
  3036. "x": 0.5,
  3037. "y": 0.5
  3038. },
  3039. "_id": ""
  3040. },
  3041. {
  3042. "__type__": "cc.CompPrefabInfo",
  3043. "fileId": "15OyxOVcNECZsgcjksIoEH"
  3044. },
  3045. {
  3046. "__type__": "cc.Label",
  3047. "_name": "",
  3048. "_objFlags": 0,
  3049. "__editorExtras__": {},
  3050. "node": {
  3051. "__id__": 134
  3052. },
  3053. "_enabled": true,
  3054. "__prefab": {
  3055. "__id__": 138
  3056. },
  3057. "_customMaterial": null,
  3058. "_srcBlendFactor": 2,
  3059. "_dstBlendFactor": 4,
  3060. "_color": {
  3061. "__type__": "cc.Color",
  3062. "r": 255,
  3063. "g": 255,
  3064. "b": 255,
  3065. "a": 255
  3066. },
  3067. "_string": "Empty",
  3068. "_horizontalAlign": 1,
  3069. "_verticalAlign": 1,
  3070. "_actualFontSize": 40,
  3071. "_fontSize": 40,
  3072. "_fontFamily": "Arial",
  3073. "_lineHeight": 40,
  3074. "_overflow": 0,
  3075. "_enableWrapText": true,
  3076. "_font": null,
  3077. "_isSystemFontUsed": true,
  3078. "_spacingX": 0,
  3079. "_isItalic": false,
  3080. "_isBold": false,
  3081. "_isUnderline": false,
  3082. "_underlineHeight": 2,
  3083. "_cacheMode": 0,
  3084. "_enableOutline": false,
  3085. "_outlineColor": {
  3086. "__type__": "cc.Color",
  3087. "r": 0,
  3088. "g": 0,
  3089. "b": 0,
  3090. "a": 255
  3091. },
  3092. "_outlineWidth": 2,
  3093. "_enableShadow": false,
  3094. "_shadowColor": {
  3095. "__type__": "cc.Color",
  3096. "r": 0,
  3097. "g": 0,
  3098. "b": 0,
  3099. "a": 255
  3100. },
  3101. "_shadowOffset": {
  3102. "__type__": "cc.Vec2",
  3103. "x": 2,
  3104. "y": 2
  3105. },
  3106. "_shadowBlur": 2,
  3107. "_id": ""
  3108. },
  3109. {
  3110. "__type__": "cc.CompPrefabInfo",
  3111. "fileId": "ecO2D3ncZP4rH6cSsNCGC+"
  3112. },
  3113. {
  3114. "__type__": "cc.PrefabInfo",
  3115. "root": {
  3116. "__id__": 1
  3117. },
  3118. "asset": {
  3119. "__id__": 0
  3120. },
  3121. "fileId": "deeYagjyBLUr3YVSMiLzfa",
  3122. "instance": null,
  3123. "targetOverrides": null,
  3124. "nestedPrefabInstanceRoots": null
  3125. },
  3126. {
  3127. "__type__": "cc.UITransform",
  3128. "_name": "",
  3129. "_objFlags": 0,
  3130. "__editorExtras__": {},
  3131. "node": {
  3132. "__id__": 1
  3133. },
  3134. "_enabled": true,
  3135. "__prefab": {
  3136. "__id__": 141
  3137. },
  3138. "_contentSize": {
  3139. "__type__": "cc.Size",
  3140. "width": 720,
  3141. "height": 1000
  3142. },
  3143. "_anchorPoint": {
  3144. "__type__": "cc.Vec2",
  3145. "x": 0.5,
  3146. "y": 0.5
  3147. },
  3148. "_id": ""
  3149. },
  3150. {
  3151. "__type__": "cc.CompPrefabInfo",
  3152. "fileId": "edbFbQWY5G/Ju13oznmpLy"
  3153. },
  3154. {
  3155. "__type__": "ffc97Fd7HpDlb9O9W7mXMuY",
  3156. "_name": "",
  3157. "_objFlags": 0,
  3158. "__editorExtras__": {},
  3159. "node": {
  3160. "__id__": 1
  3161. },
  3162. "_enabled": true,
  3163. "__prefab": {
  3164. "__id__": 143
  3165. },
  3166. "_id": ""
  3167. },
  3168. {
  3169. "__type__": "cc.CompPrefabInfo",
  3170. "fileId": "1eA9XvSTdB/6+QtOmmRX/k"
  3171. },
  3172. {
  3173. "__type__": "cc.PrefabInfo",
  3174. "root": {
  3175. "__id__": 1
  3176. },
  3177. "asset": {
  3178. "__id__": 0
  3179. },
  3180. "fileId": "e1xSMWgelBQ797rjpBKA5C",
  3181. "instance": null,
  3182. "targetOverrides": null,
  3183. "nestedPrefabInstanceRoots": [
  3184. {
  3185. "__id__": 122
  3186. }
  3187. ]
  3188. }
  3189. ]