27737736-58dd-4482-b2dd-0a4dbbbdba78.json 56 KB

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