BoxContainsMain.prefab 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "BoxContainsMain",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 104
  28. }
  29. ],
  30. "_active": true,
  31. "_components": [
  32. {
  33. "__id__": 122
  34. },
  35. {
  36. "__id__": 123
  37. }
  38. ],
  39. "_prefab": {
  40. "__id__": 124
  41. },
  42. "_opacity": 255,
  43. "_color": {
  44. "__type__": "cc.Color",
  45. "r": 255,
  46. "g": 255,
  47. "b": 255,
  48. "a": 255
  49. },
  50. "_contentSize": {
  51. "__type__": "cc.Size",
  52. "width": 810,
  53. "height": 1440
  54. },
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_trs": {
  61. "__type__": "TypedArray",
  62. "ctor": "Float64Array",
  63. "array": [
  64. 405,
  65. 720,
  66. 0,
  67. 0,
  68. 0,
  69. 0,
  70. 1,
  71. 1,
  72. 1,
  73. 1
  74. ]
  75. },
  76. "_eulerAngles": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_is3DNode": false,
  85. "_groupIndex": 0,
  86. "groupIndex": 0,
  87. "_id": ""
  88. },
  89. {
  90. "__type__": "cc.Node",
  91. "_name": "ImageBg",
  92. "_objFlags": 0,
  93. "_parent": {
  94. "__id__": 1
  95. },
  96. "_children": [],
  97. "_active": true,
  98. "_components": [
  99. {
  100. "__id__": 3
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 4
  105. },
  106. "_opacity": 255,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 255,
  110. "g": 255,
  111. "b": 255,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 810,
  117. "height": 1440
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_trs": {
  125. "__type__": "TypedArray",
  126. "ctor": "Float64Array",
  127. "array": [
  128. 0,
  129. 0,
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 1,
  135. 1,
  136. 1,
  137. 1
  138. ]
  139. },
  140. "_eulerAngles": {
  141. "__type__": "cc.Vec3",
  142. "x": 0,
  143. "y": 0,
  144. "z": 0
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_is3DNode": false,
  149. "_groupIndex": 0,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.Sprite",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 2
  159. },
  160. "_enabled": true,
  161. "_materials": [
  162. {
  163. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  164. }
  165. ],
  166. "_srcBlendFactor": 770,
  167. "_dstBlendFactor": 771,
  168. "_spriteFrame": {
  169. "__uuid__": "3a261abb-5d1d-4222-8fda-978195f2b62a"
  170. },
  171. "_type": 0,
  172. "_sizeMode": 0,
  173. "_fillType": 0,
  174. "_fillCenter": {
  175. "__type__": "cc.Vec2",
  176. "x": 0,
  177. "y": 0
  178. },
  179. "_fillStart": 0,
  180. "_fillRange": 0,
  181. "_isTrimmedMode": true,
  182. "_atlas": null,
  183. "_id": ""
  184. },
  185. {
  186. "__type__": "cc.PrefabInfo",
  187. "root": {
  188. "__id__": 1
  189. },
  190. "asset": {
  191. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  192. },
  193. "fileId": "c0SSXYLodD0IwMdJNVP43O",
  194. "sync": false
  195. },
  196. {
  197. "__type__": "cc.Node",
  198. "_name": "Top",
  199. "_objFlags": 0,
  200. "_parent": {
  201. "__id__": 1
  202. },
  203. "_children": [
  204. {
  205. "__id__": 6
  206. },
  207. {
  208. "__id__": 20
  209. },
  210. {
  211. "__id__": 34
  212. },
  213. {
  214. "__id__": 37
  215. }
  216. ],
  217. "_active": true,
  218. "_components": [
  219. {
  220. "__id__": 102
  221. }
  222. ],
  223. "_prefab": {
  224. "__id__": 103
  225. },
  226. "_opacity": 255,
  227. "_color": {
  228. "__type__": "cc.Color",
  229. "r": 255,
  230. "g": 255,
  231. "b": 255,
  232. "a": 255
  233. },
  234. "_contentSize": {
  235. "__type__": "cc.Size",
  236. "width": 300,
  237. "height": 0
  238. },
  239. "_anchorPoint": {
  240. "__type__": "cc.Vec2",
  241. "x": 0.5,
  242. "y": 0.5
  243. },
  244. "_trs": {
  245. "__type__": "TypedArray",
  246. "ctor": "Float64Array",
  247. "array": [
  248. 0,
  249. 620,
  250. 0,
  251. 0,
  252. 0,
  253. 0,
  254. 1,
  255. 1,
  256. 1,
  257. 1
  258. ]
  259. },
  260. "_eulerAngles": {
  261. "__type__": "cc.Vec3",
  262. "x": 0,
  263. "y": 0,
  264. "z": 0
  265. },
  266. "_skewX": 0,
  267. "_skewY": 0,
  268. "_is3DNode": false,
  269. "_groupIndex": 0,
  270. "groupIndex": 0,
  271. "_id": ""
  272. },
  273. {
  274. "__type__": "cc.Node",
  275. "_name": "ButtonContains",
  276. "_objFlags": 0,
  277. "_parent": {
  278. "__id__": 5
  279. },
  280. "_children": [
  281. {
  282. "__id__": 7
  283. },
  284. {
  285. "__id__": 13
  286. }
  287. ],
  288. "_active": true,
  289. "_components": [
  290. {
  291. "__id__": 17
  292. },
  293. {
  294. "__id__": 18
  295. }
  296. ],
  297. "_prefab": {
  298. "__id__": 19
  299. },
  300. "_opacity": 255,
  301. "_color": {
  302. "__type__": "cc.Color",
  303. "r": 255,
  304. "g": 255,
  305. "b": 255,
  306. "a": 255
  307. },
  308. "_contentSize": {
  309. "__type__": "cc.Size",
  310. "width": 200,
  311. "height": 105
  312. },
  313. "_anchorPoint": {
  314. "__type__": "cc.Vec2",
  315. "x": 0.5,
  316. "y": 0.5
  317. },
  318. "_trs": {
  319. "__type__": "TypedArray",
  320. "ctor": "Float64Array",
  321. "array": [
  322. -298.3,
  323. -77.389,
  324. 0,
  325. 0,
  326. 0,
  327. 0,
  328. 1,
  329. 1,
  330. 1,
  331. 1
  332. ]
  333. },
  334. "_eulerAngles": {
  335. "__type__": "cc.Vec3",
  336. "x": 0,
  337. "y": 0,
  338. "z": 0
  339. },
  340. "_skewX": 0,
  341. "_skewY": 0,
  342. "_is3DNode": false,
  343. "_groupIndex": 0,
  344. "groupIndex": 0,
  345. "_id": ""
  346. },
  347. {
  348. "__type__": "cc.Node",
  349. "_name": "ImageNormal",
  350. "_objFlags": 0,
  351. "_parent": {
  352. "__id__": 6
  353. },
  354. "_children": [
  355. {
  356. "__id__": 8
  357. }
  358. ],
  359. "_active": true,
  360. "_components": [
  361. {
  362. "__id__": 11
  363. }
  364. ],
  365. "_prefab": {
  366. "__id__": 12
  367. },
  368. "_opacity": 255,
  369. "_color": {
  370. "__type__": "cc.Color",
  371. "r": 255,
  372. "g": 255,
  373. "b": 255,
  374. "a": 255
  375. },
  376. "_contentSize": {
  377. "__type__": "cc.Size",
  378. "width": 196.2,
  379. "height": 99.5
  380. },
  381. "_anchorPoint": {
  382. "__type__": "cc.Vec2",
  383. "x": 0.5,
  384. "y": 0.5
  385. },
  386. "_trs": {
  387. "__type__": "TypedArray",
  388. "ctor": "Float64Array",
  389. "array": [
  390. -3.8,
  391. -0.1,
  392. 0,
  393. 0,
  394. 0,
  395. 0,
  396. 1,
  397. 1,
  398. 1,
  399. 1
  400. ]
  401. },
  402. "_eulerAngles": {
  403. "__type__": "cc.Vec3",
  404. "x": 0,
  405. "y": 0,
  406. "z": 0
  407. },
  408. "_skewX": 0,
  409. "_skewY": 0,
  410. "_is3DNode": false,
  411. "_groupIndex": 0,
  412. "groupIndex": 0,
  413. "_id": ""
  414. },
  415. {
  416. "__type__": "cc.Node",
  417. "_name": "TextContent",
  418. "_objFlags": 0,
  419. "_parent": {
  420. "__id__": 7
  421. },
  422. "_children": [],
  423. "_active": true,
  424. "_components": [
  425. {
  426. "__id__": 9
  427. }
  428. ],
  429. "_prefab": {
  430. "__id__": 10
  431. },
  432. "_opacity": 255,
  433. "_color": {
  434. "__type__": "cc.Color",
  435. "r": 255,
  436. "g": 255,
  437. "b": 255,
  438. "a": 255
  439. },
  440. "_contentSize": {
  441. "__type__": "cc.Size",
  442. "width": 128,
  443. "height": 50.4
  444. },
  445. "_anchorPoint": {
  446. "__type__": "cc.Vec2",
  447. "x": 0.5,
  448. "y": 0.5
  449. },
  450. "_trs": {
  451. "__type__": "TypedArray",
  452. "ctor": "Float64Array",
  453. "array": [
  454. 1.428,
  455. 0.1,
  456. 0,
  457. 0,
  458. 0,
  459. 0,
  460. 1,
  461. 1,
  462. 1,
  463. 1
  464. ]
  465. },
  466. "_eulerAngles": {
  467. "__type__": "cc.Vec3",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0
  471. },
  472. "_skewX": 0,
  473. "_skewY": 0,
  474. "_is3DNode": false,
  475. "_groupIndex": 0,
  476. "groupIndex": 0,
  477. "_id": ""
  478. },
  479. {
  480. "__type__": "cc.Label",
  481. "_name": "",
  482. "_objFlags": 0,
  483. "node": {
  484. "__id__": 8
  485. },
  486. "_enabled": true,
  487. "_materials": [
  488. {
  489. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  490. }
  491. ],
  492. "_useOriginalSize": false,
  493. "_string": "盒子包含",
  494. "_N$string": "盒子包含",
  495. "_fontSize": 32,
  496. "_lineHeight": 40,
  497. "_enableWrapText": true,
  498. "_N$file": null,
  499. "_isSystemFontUsed": true,
  500. "_spacingX": 0,
  501. "_batchAsBitmap": false,
  502. "_styleFlags": 0,
  503. "_underlineHeight": 0,
  504. "_N$horizontalAlign": 1,
  505. "_N$verticalAlign": 1,
  506. "_N$fontFamily": "Arial",
  507. "_N$overflow": 0,
  508. "_N$cacheMode": 0,
  509. "_id": ""
  510. },
  511. {
  512. "__type__": "cc.PrefabInfo",
  513. "root": {
  514. "__id__": 1
  515. },
  516. "asset": {
  517. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  518. },
  519. "fileId": "46FDeViXNIZ5VnEjSyx3el",
  520. "sync": false
  521. },
  522. {
  523. "__type__": "cc.Sprite",
  524. "_name": "",
  525. "_objFlags": 0,
  526. "node": {
  527. "__id__": 7
  528. },
  529. "_enabled": true,
  530. "_materials": [
  531. {
  532. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  533. }
  534. ],
  535. "_srcBlendFactor": 770,
  536. "_dstBlendFactor": 771,
  537. "_spriteFrame": {
  538. "__uuid__": "64ec54a6-7c2d-4674-9485-3decbb8646cb"
  539. },
  540. "_type": 1,
  541. "_sizeMode": 0,
  542. "_fillType": 0,
  543. "_fillCenter": {
  544. "__type__": "cc.Vec2",
  545. "x": 0,
  546. "y": 0
  547. },
  548. "_fillStart": 0,
  549. "_fillRange": 0,
  550. "_isTrimmedMode": true,
  551. "_atlas": null,
  552. "_id": ""
  553. },
  554. {
  555. "__type__": "cc.PrefabInfo",
  556. "root": {
  557. "__id__": 1
  558. },
  559. "asset": {
  560. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  561. },
  562. "fileId": "b8oO//V9ZA1YlCqr/4d26t",
  563. "sync": false
  564. },
  565. {
  566. "__type__": "cc.Node",
  567. "_name": "ImageLight",
  568. "_objFlags": 0,
  569. "_parent": {
  570. "__id__": 6
  571. },
  572. "_children": [],
  573. "_active": true,
  574. "_components": [
  575. {
  576. "__id__": 14
  577. },
  578. {
  579. "__id__": 15
  580. }
  581. ],
  582. "_prefab": {
  583. "__id__": 16
  584. },
  585. "_opacity": 255,
  586. "_color": {
  587. "__type__": "cc.Color",
  588. "r": 255,
  589. "g": 255,
  590. "b": 255,
  591. "a": 255
  592. },
  593. "_contentSize": {
  594. "__type__": "cc.Size",
  595. "width": 200,
  596. "height": 105
  597. },
  598. "_anchorPoint": {
  599. "__type__": "cc.Vec2",
  600. "x": 0.5,
  601. "y": 0.5
  602. },
  603. "_trs": {
  604. "__type__": "TypedArray",
  605. "ctor": "Float64Array",
  606. "array": [
  607. 0,
  608. 0,
  609. 0,
  610. 0,
  611. 0,
  612. 0,
  613. 1,
  614. 1,
  615. 1,
  616. 1
  617. ]
  618. },
  619. "_eulerAngles": {
  620. "__type__": "cc.Vec3",
  621. "x": 0,
  622. "y": 0,
  623. "z": 0
  624. },
  625. "_skewX": 0,
  626. "_skewY": 0,
  627. "_is3DNode": false,
  628. "_groupIndex": 0,
  629. "groupIndex": 0,
  630. "_id": ""
  631. },
  632. {
  633. "__type__": "cc.Sprite",
  634. "_name": "",
  635. "_objFlags": 0,
  636. "node": {
  637. "__id__": 13
  638. },
  639. "_enabled": true,
  640. "_materials": [
  641. {
  642. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  643. }
  644. ],
  645. "_srcBlendFactor": 770,
  646. "_dstBlendFactor": 771,
  647. "_spriteFrame": {
  648. "__uuid__": "fdf9ec9d-1e8d-4ec4-934e-926c59d286da"
  649. },
  650. "_type": 1,
  651. "_sizeMode": 0,
  652. "_fillType": 0,
  653. "_fillCenter": {
  654. "__type__": "cc.Vec2",
  655. "x": 0,
  656. "y": 0
  657. },
  658. "_fillStart": 0,
  659. "_fillRange": 0,
  660. "_isTrimmedMode": true,
  661. "_atlas": null,
  662. "_id": ""
  663. },
  664. {
  665. "__type__": "cc.Widget",
  666. "_name": "",
  667. "_objFlags": 0,
  668. "node": {
  669. "__id__": 13
  670. },
  671. "_enabled": true,
  672. "alignMode": 0,
  673. "_target": null,
  674. "_alignFlags": 45,
  675. "_left": 0,
  676. "_right": 0,
  677. "_top": 0,
  678. "_bottom": 0,
  679. "_verticalCenter": 0,
  680. "_horizontalCenter": 0,
  681. "_isAbsLeft": true,
  682. "_isAbsRight": true,
  683. "_isAbsTop": true,
  684. "_isAbsBottom": true,
  685. "_isAbsHorizontalCenter": true,
  686. "_isAbsVerticalCenter": true,
  687. "_originalWidth": 100,
  688. "_originalHeight": 40,
  689. "_id": ""
  690. },
  691. {
  692. "__type__": "cc.PrefabInfo",
  693. "root": {
  694. "__id__": 1
  695. },
  696. "asset": {
  697. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  698. },
  699. "fileId": "1eyRHgPNpF541JrxwxgQGM",
  700. "sync": false
  701. },
  702. {
  703. "__type__": "cc.Button",
  704. "_name": "",
  705. "_objFlags": 0,
  706. "node": {
  707. "__id__": 6
  708. },
  709. "_enabled": true,
  710. "_normalMaterial": {
  711. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  712. },
  713. "_grayMaterial": null,
  714. "duration": 0.1,
  715. "zoomScale": 1.2,
  716. "clickEvents": [],
  717. "_N$interactable": true,
  718. "_N$enableAutoGrayEffect": false,
  719. "_N$transition": 2,
  720. "transition": 2,
  721. "_N$normalColor": {
  722. "__type__": "cc.Color",
  723. "r": 230,
  724. "g": 230,
  725. "b": 230,
  726. "a": 255
  727. },
  728. "_N$pressedColor": {
  729. "__type__": "cc.Color",
  730. "r": 200,
  731. "g": 200,
  732. "b": 200,
  733. "a": 255
  734. },
  735. "pressedColor": {
  736. "__type__": "cc.Color",
  737. "r": 200,
  738. "g": 200,
  739. "b": 200,
  740. "a": 255
  741. },
  742. "_N$hoverColor": {
  743. "__type__": "cc.Color",
  744. "r": 255,
  745. "g": 255,
  746. "b": 255,
  747. "a": 255
  748. },
  749. "hoverColor": {
  750. "__type__": "cc.Color",
  751. "r": 255,
  752. "g": 255,
  753. "b": 255,
  754. "a": 255
  755. },
  756. "_N$disabledColor": {
  757. "__type__": "cc.Color",
  758. "r": 120,
  759. "g": 120,
  760. "b": 120,
  761. "a": 200
  762. },
  763. "_N$normalSprite": {
  764. "__uuid__": "fdf9ec9d-1e8d-4ec4-934e-926c59d286da"
  765. },
  766. "_N$pressedSprite": {
  767. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  768. },
  769. "pressedSprite": {
  770. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  771. },
  772. "_N$hoverSprite": {
  773. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  774. },
  775. "hoverSprite": {
  776. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  777. },
  778. "_N$disabledSprite": {
  779. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  780. },
  781. "_N$target": {
  782. "__id__": 13
  783. },
  784. "_id": ""
  785. },
  786. {
  787. "__type__": "d2ea5omkrFFgZbx8nBrTvSm",
  788. "_name": "",
  789. "_objFlags": 0,
  790. "node": {
  791. "__id__": 6
  792. },
  793. "_enabled": true,
  794. "ImageNormal": {
  795. "__id__": 11
  796. },
  797. "imageLight": {
  798. "__id__": 14
  799. },
  800. "textContent": {
  801. "__id__": 9
  802. },
  803. "_id": ""
  804. },
  805. {
  806. "__type__": "cc.PrefabInfo",
  807. "root": {
  808. "__id__": 1
  809. },
  810. "asset": {
  811. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  812. },
  813. "fileId": "ffM4GViINCJ740GynhCsf2",
  814. "sync": false
  815. },
  816. {
  817. "__type__": "cc.Node",
  818. "_name": "ButtonDrop",
  819. "_objFlags": 0,
  820. "_parent": {
  821. "__id__": 5
  822. },
  823. "_children": [
  824. {
  825. "__id__": 21
  826. },
  827. {
  828. "__id__": 27
  829. }
  830. ],
  831. "_active": true,
  832. "_components": [
  833. {
  834. "__id__": 31
  835. },
  836. {
  837. "__id__": 32
  838. }
  839. ],
  840. "_prefab": {
  841. "__id__": 33
  842. },
  843. "_opacity": 255,
  844. "_color": {
  845. "__type__": "cc.Color",
  846. "r": 255,
  847. "g": 255,
  848. "b": 255,
  849. "a": 255
  850. },
  851. "_contentSize": {
  852. "__type__": "cc.Size",
  853. "width": 200,
  854. "height": 105
  855. },
  856. "_anchorPoint": {
  857. "__type__": "cc.Vec2",
  858. "x": 0.5,
  859. "y": 0.5
  860. },
  861. "_trs": {
  862. "__type__": "TypedArray",
  863. "ctor": "Float64Array",
  864. "array": [
  865. -96.385,
  866. -77.389,
  867. 0,
  868. 0,
  869. 0,
  870. 0,
  871. 1,
  872. 1,
  873. 1,
  874. 1
  875. ]
  876. },
  877. "_eulerAngles": {
  878. "__type__": "cc.Vec3",
  879. "x": 0,
  880. "y": 0,
  881. "z": 0
  882. },
  883. "_skewX": 0,
  884. "_skewY": 0,
  885. "_is3DNode": false,
  886. "_groupIndex": 0,
  887. "groupIndex": 0,
  888. "_id": ""
  889. },
  890. {
  891. "__type__": "cc.Node",
  892. "_name": "ImageNormal",
  893. "_objFlags": 0,
  894. "_parent": {
  895. "__id__": 20
  896. },
  897. "_children": [
  898. {
  899. "__id__": 22
  900. }
  901. ],
  902. "_active": true,
  903. "_components": [
  904. {
  905. "__id__": 25
  906. }
  907. ],
  908. "_prefab": {
  909. "__id__": 26
  910. },
  911. "_opacity": 255,
  912. "_color": {
  913. "__type__": "cc.Color",
  914. "r": 255,
  915. "g": 255,
  916. "b": 255,
  917. "a": 255
  918. },
  919. "_contentSize": {
  920. "__type__": "cc.Size",
  921. "width": 196.2,
  922. "height": 99.5
  923. },
  924. "_anchorPoint": {
  925. "__type__": "cc.Vec2",
  926. "x": 0.5,
  927. "y": 0.5
  928. },
  929. "_trs": {
  930. "__type__": "TypedArray",
  931. "ctor": "Float64Array",
  932. "array": [
  933. -3.8,
  934. -0.1,
  935. 0,
  936. 0,
  937. 0,
  938. 0,
  939. 1,
  940. 1,
  941. 1,
  942. 1
  943. ]
  944. },
  945. "_eulerAngles": {
  946. "__type__": "cc.Vec3",
  947. "x": 0,
  948. "y": 0,
  949. "z": 0
  950. },
  951. "_skewX": 0,
  952. "_skewY": 0,
  953. "_is3DNode": false,
  954. "_groupIndex": 0,
  955. "groupIndex": 0,
  956. "_id": ""
  957. },
  958. {
  959. "__type__": "cc.Node",
  960. "_name": "TextContent",
  961. "_objFlags": 0,
  962. "_parent": {
  963. "__id__": 21
  964. },
  965. "_children": [],
  966. "_active": true,
  967. "_components": [
  968. {
  969. "__id__": 23
  970. }
  971. ],
  972. "_prefab": {
  973. "__id__": 24
  974. },
  975. "_opacity": 255,
  976. "_color": {
  977. "__type__": "cc.Color",
  978. "r": 255,
  979. "g": 255,
  980. "b": 255,
  981. "a": 255
  982. },
  983. "_contentSize": {
  984. "__type__": "cc.Size",
  985. "width": 128,
  986. "height": 50.4
  987. },
  988. "_anchorPoint": {
  989. "__type__": "cc.Vec2",
  990. "x": 0.5,
  991. "y": 0.5
  992. },
  993. "_trs": {
  994. "__type__": "TypedArray",
  995. "ctor": "Float64Array",
  996. "array": [
  997. 1.428,
  998. 0.1,
  999. 0,
  1000. 0,
  1001. 0,
  1002. 0,
  1003. 1,
  1004. 1,
  1005. 1,
  1006. 1
  1007. ]
  1008. },
  1009. "_eulerAngles": {
  1010. "__type__": "cc.Vec3",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0
  1014. },
  1015. "_skewX": 0,
  1016. "_skewY": 0,
  1017. "_is3DNode": false,
  1018. "_groupIndex": 0,
  1019. "groupIndex": 0,
  1020. "_id": ""
  1021. },
  1022. {
  1023. "__type__": "cc.Label",
  1024. "_name": "",
  1025. "_objFlags": 0,
  1026. "node": {
  1027. "__id__": 22
  1028. },
  1029. "_enabled": true,
  1030. "_materials": [
  1031. {
  1032. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1033. }
  1034. ],
  1035. "_useOriginalSize": false,
  1036. "_string": "最近掉落",
  1037. "_N$string": "最近掉落",
  1038. "_fontSize": 32,
  1039. "_lineHeight": 40,
  1040. "_enableWrapText": true,
  1041. "_N$file": null,
  1042. "_isSystemFontUsed": true,
  1043. "_spacingX": 0,
  1044. "_batchAsBitmap": false,
  1045. "_styleFlags": 0,
  1046. "_underlineHeight": 0,
  1047. "_N$horizontalAlign": 1,
  1048. "_N$verticalAlign": 1,
  1049. "_N$fontFamily": "Arial",
  1050. "_N$overflow": 0,
  1051. "_N$cacheMode": 0,
  1052. "_id": ""
  1053. },
  1054. {
  1055. "__type__": "cc.PrefabInfo",
  1056. "root": {
  1057. "__id__": 1
  1058. },
  1059. "asset": {
  1060. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1061. },
  1062. "fileId": "5d9Oq4f7VN4queSmA4cuUD",
  1063. "sync": false
  1064. },
  1065. {
  1066. "__type__": "cc.Sprite",
  1067. "_name": "",
  1068. "_objFlags": 0,
  1069. "node": {
  1070. "__id__": 21
  1071. },
  1072. "_enabled": true,
  1073. "_materials": [
  1074. {
  1075. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1076. }
  1077. ],
  1078. "_srcBlendFactor": 770,
  1079. "_dstBlendFactor": 771,
  1080. "_spriteFrame": {
  1081. "__uuid__": "64ec54a6-7c2d-4674-9485-3decbb8646cb"
  1082. },
  1083. "_type": 1,
  1084. "_sizeMode": 0,
  1085. "_fillType": 0,
  1086. "_fillCenter": {
  1087. "__type__": "cc.Vec2",
  1088. "x": 0,
  1089. "y": 0
  1090. },
  1091. "_fillStart": 0,
  1092. "_fillRange": 0,
  1093. "_isTrimmedMode": true,
  1094. "_atlas": null,
  1095. "_id": ""
  1096. },
  1097. {
  1098. "__type__": "cc.PrefabInfo",
  1099. "root": {
  1100. "__id__": 1
  1101. },
  1102. "asset": {
  1103. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1104. },
  1105. "fileId": "edQeOHJPhEJqZXTbPTW0yl",
  1106. "sync": false
  1107. },
  1108. {
  1109. "__type__": "cc.Node",
  1110. "_name": "ImageLight",
  1111. "_objFlags": 0,
  1112. "_parent": {
  1113. "__id__": 20
  1114. },
  1115. "_children": [],
  1116. "_active": true,
  1117. "_components": [
  1118. {
  1119. "__id__": 28
  1120. },
  1121. {
  1122. "__id__": 29
  1123. }
  1124. ],
  1125. "_prefab": {
  1126. "__id__": 30
  1127. },
  1128. "_opacity": 255,
  1129. "_color": {
  1130. "__type__": "cc.Color",
  1131. "r": 255,
  1132. "g": 255,
  1133. "b": 255,
  1134. "a": 255
  1135. },
  1136. "_contentSize": {
  1137. "__type__": "cc.Size",
  1138. "width": 200,
  1139. "height": 105
  1140. },
  1141. "_anchorPoint": {
  1142. "__type__": "cc.Vec2",
  1143. "x": 0.5,
  1144. "y": 0.5
  1145. },
  1146. "_trs": {
  1147. "__type__": "TypedArray",
  1148. "ctor": "Float64Array",
  1149. "array": [
  1150. 0,
  1151. 0,
  1152. 0,
  1153. 0,
  1154. 0,
  1155. 0,
  1156. 1,
  1157. 1,
  1158. 1,
  1159. 1
  1160. ]
  1161. },
  1162. "_eulerAngles": {
  1163. "__type__": "cc.Vec3",
  1164. "x": 0,
  1165. "y": 0,
  1166. "z": 0
  1167. },
  1168. "_skewX": 0,
  1169. "_skewY": 0,
  1170. "_is3DNode": false,
  1171. "_groupIndex": 0,
  1172. "groupIndex": 0,
  1173. "_id": ""
  1174. },
  1175. {
  1176. "__type__": "cc.Sprite",
  1177. "_name": "",
  1178. "_objFlags": 0,
  1179. "node": {
  1180. "__id__": 27
  1181. },
  1182. "_enabled": true,
  1183. "_materials": [
  1184. {
  1185. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1186. }
  1187. ],
  1188. "_srcBlendFactor": 770,
  1189. "_dstBlendFactor": 771,
  1190. "_spriteFrame": {
  1191. "__uuid__": "56bcf3f7-8d2d-4e2c-8b83-9a835f973e26"
  1192. },
  1193. "_type": 1,
  1194. "_sizeMode": 0,
  1195. "_fillType": 0,
  1196. "_fillCenter": {
  1197. "__type__": "cc.Vec2",
  1198. "x": 0,
  1199. "y": 0
  1200. },
  1201. "_fillStart": 0,
  1202. "_fillRange": 0,
  1203. "_isTrimmedMode": true,
  1204. "_atlas": null,
  1205. "_id": ""
  1206. },
  1207. {
  1208. "__type__": "cc.Widget",
  1209. "_name": "",
  1210. "_objFlags": 0,
  1211. "node": {
  1212. "__id__": 27
  1213. },
  1214. "_enabled": true,
  1215. "alignMode": 0,
  1216. "_target": null,
  1217. "_alignFlags": 45,
  1218. "_left": 0,
  1219. "_right": 0,
  1220. "_top": 0,
  1221. "_bottom": 0,
  1222. "_verticalCenter": 0,
  1223. "_horizontalCenter": 0,
  1224. "_isAbsLeft": true,
  1225. "_isAbsRight": true,
  1226. "_isAbsTop": true,
  1227. "_isAbsBottom": true,
  1228. "_isAbsHorizontalCenter": true,
  1229. "_isAbsVerticalCenter": true,
  1230. "_originalWidth": 100,
  1231. "_originalHeight": 40,
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.PrefabInfo",
  1236. "root": {
  1237. "__id__": 1
  1238. },
  1239. "asset": {
  1240. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1241. },
  1242. "fileId": "5cHSHlc95DeqbXSyO93dXW",
  1243. "sync": false
  1244. },
  1245. {
  1246. "__type__": "cc.Button",
  1247. "_name": "",
  1248. "_objFlags": 0,
  1249. "node": {
  1250. "__id__": 20
  1251. },
  1252. "_enabled": true,
  1253. "_normalMaterial": {
  1254. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1255. },
  1256. "_grayMaterial": null,
  1257. "duration": 0.1,
  1258. "zoomScale": 1.2,
  1259. "clickEvents": [],
  1260. "_N$interactable": true,
  1261. "_N$enableAutoGrayEffect": false,
  1262. "_N$transition": 2,
  1263. "transition": 2,
  1264. "_N$normalColor": {
  1265. "__type__": "cc.Color",
  1266. "r": 230,
  1267. "g": 230,
  1268. "b": 230,
  1269. "a": 255
  1270. },
  1271. "_N$pressedColor": {
  1272. "__type__": "cc.Color",
  1273. "r": 200,
  1274. "g": 200,
  1275. "b": 200,
  1276. "a": 255
  1277. },
  1278. "pressedColor": {
  1279. "__type__": "cc.Color",
  1280. "r": 200,
  1281. "g": 200,
  1282. "b": 200,
  1283. "a": 255
  1284. },
  1285. "_N$hoverColor": {
  1286. "__type__": "cc.Color",
  1287. "r": 255,
  1288. "g": 255,
  1289. "b": 255,
  1290. "a": 255
  1291. },
  1292. "hoverColor": {
  1293. "__type__": "cc.Color",
  1294. "r": 255,
  1295. "g": 255,
  1296. "b": 255,
  1297. "a": 255
  1298. },
  1299. "_N$disabledColor": {
  1300. "__type__": "cc.Color",
  1301. "r": 120,
  1302. "g": 120,
  1303. "b": 120,
  1304. "a": 200
  1305. },
  1306. "_N$normalSprite": {
  1307. "__uuid__": "56bcf3f7-8d2d-4e2c-8b83-9a835f973e26"
  1308. },
  1309. "_N$pressedSprite": {
  1310. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1311. },
  1312. "pressedSprite": {
  1313. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1314. },
  1315. "_N$hoverSprite": {
  1316. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1317. },
  1318. "hoverSprite": {
  1319. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1320. },
  1321. "_N$disabledSprite": {
  1322. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1323. },
  1324. "_N$target": {
  1325. "__id__": 27
  1326. },
  1327. "_id": ""
  1328. },
  1329. {
  1330. "__type__": "d2ea5omkrFFgZbx8nBrTvSm",
  1331. "_name": "",
  1332. "_objFlags": 0,
  1333. "node": {
  1334. "__id__": 20
  1335. },
  1336. "_enabled": true,
  1337. "ImageNormal": {
  1338. "__id__": 25
  1339. },
  1340. "imageLight": {
  1341. "__id__": 28
  1342. },
  1343. "textContent": {
  1344. "__id__": 23
  1345. },
  1346. "_id": ""
  1347. },
  1348. {
  1349. "__type__": "cc.PrefabInfo",
  1350. "root": {
  1351. "__id__": 1
  1352. },
  1353. "asset": {
  1354. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1355. },
  1356. "fileId": "e5vquiptRBhYBVsV18xxPq",
  1357. "sync": false
  1358. },
  1359. {
  1360. "__type__": "cc.Node",
  1361. "_name": "TextTip1",
  1362. "_objFlags": 0,
  1363. "_parent": {
  1364. "__id__": 5
  1365. },
  1366. "_children": [],
  1367. "_active": true,
  1368. "_components": [
  1369. {
  1370. "__id__": 35
  1371. }
  1372. ],
  1373. "_prefab": {
  1374. "__id__": 36
  1375. },
  1376. "_opacity": 255,
  1377. "_color": {
  1378. "__type__": "cc.Color",
  1379. "r": 255,
  1380. "g": 255,
  1381. "b": 255,
  1382. "a": 255
  1383. },
  1384. "_contentSize": {
  1385. "__type__": "cc.Size",
  1386. "width": 371.78,
  1387. "height": 50.4
  1388. },
  1389. "_anchorPoint": {
  1390. "__type__": "cc.Vec2",
  1391. "x": 1,
  1392. "y": 0.5
  1393. },
  1394. "_trs": {
  1395. "__type__": "TypedArray",
  1396. "ctor": "Float64Array",
  1397. "array": [
  1398. 404.36,
  1399. -74.35,
  1400. 0,
  1401. 0,
  1402. 0,
  1403. 0,
  1404. 1,
  1405. 1,
  1406. 1,
  1407. 1
  1408. ]
  1409. },
  1410. "_eulerAngles": {
  1411. "__type__": "cc.Vec3",
  1412. "x": 0,
  1413. "y": 0,
  1414. "z": 0
  1415. },
  1416. "_skewX": 0,
  1417. "_skewY": 0,
  1418. "_is3DNode": false,
  1419. "_groupIndex": 0,
  1420. "groupIndex": 0,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "cc.Label",
  1425. "_name": "",
  1426. "_objFlags": 0,
  1427. "node": {
  1428. "__id__": 34
  1429. },
  1430. "_enabled": true,
  1431. "_materials": [
  1432. {
  1433. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1434. }
  1435. ],
  1436. "_useOriginalSize": false,
  1437. "_string": "由于系统升级,副号功能已关闭",
  1438. "_N$string": "由于系统升级,副号功能已关闭",
  1439. "_fontSize": 28,
  1440. "_lineHeight": 40,
  1441. "_enableWrapText": true,
  1442. "_N$file": null,
  1443. "_isSystemFontUsed": true,
  1444. "_spacingX": 0,
  1445. "_batchAsBitmap": false,
  1446. "_styleFlags": 0,
  1447. "_underlineHeight": 0,
  1448. "_N$horizontalAlign": 1,
  1449. "_N$verticalAlign": 1,
  1450. "_N$fontFamily": "Arial",
  1451. "_N$overflow": 0,
  1452. "_N$cacheMode": 0,
  1453. "_id": ""
  1454. },
  1455. {
  1456. "__type__": "cc.PrefabInfo",
  1457. "root": {
  1458. "__id__": 1
  1459. },
  1460. "asset": {
  1461. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1462. },
  1463. "fileId": "1cTjIxsZ9MuaQlRJJTmK14",
  1464. "sync": false
  1465. },
  1466. {
  1467. "__type__": "cc.Node",
  1468. "_name": "Chance",
  1469. "_objFlags": 0,
  1470. "_parent": {
  1471. "__id__": 5
  1472. },
  1473. "_children": [
  1474. {
  1475. "__id__": 38
  1476. },
  1477. {
  1478. "__id__": 47
  1479. },
  1480. {
  1481. "__id__": 56
  1482. },
  1483. {
  1484. "__id__": 65
  1485. },
  1486. {
  1487. "__id__": 74
  1488. },
  1489. {
  1490. "__id__": 83
  1491. },
  1492. {
  1493. "__id__": 92
  1494. }
  1495. ],
  1496. "_active": true,
  1497. "_components": [],
  1498. "_prefab": {
  1499. "__id__": 101
  1500. },
  1501. "_opacity": 255,
  1502. "_color": {
  1503. "__type__": "cc.Color",
  1504. "r": 255,
  1505. "g": 255,
  1506. "b": 255,
  1507. "a": 255
  1508. },
  1509. "_contentSize": {
  1510. "__type__": "cc.Size",
  1511. "width": 0,
  1512. "height": 0
  1513. },
  1514. "_anchorPoint": {
  1515. "__type__": "cc.Vec2",
  1516. "x": 0.5,
  1517. "y": 0.5
  1518. },
  1519. "_trs": {
  1520. "__type__": "TypedArray",
  1521. "ctor": "Float64Array",
  1522. "array": [
  1523. 0,
  1524. -164.863,
  1525. 0,
  1526. 0,
  1527. 0,
  1528. 0,
  1529. 1,
  1530. 1,
  1531. 1,
  1532. 1
  1533. ]
  1534. },
  1535. "_eulerAngles": {
  1536. "__type__": "cc.Vec3",
  1537. "x": 0,
  1538. "y": 0,
  1539. "z": 0
  1540. },
  1541. "_skewX": 0,
  1542. "_skewY": 0,
  1543. "_is3DNode": false,
  1544. "_groupIndex": 0,
  1545. "groupIndex": 0,
  1546. "_id": ""
  1547. },
  1548. {
  1549. "__type__": "cc.Node",
  1550. "_name": "BoxChanceItem1",
  1551. "_objFlags": 0,
  1552. "_parent": {
  1553. "__id__": 37
  1554. },
  1555. "_children": [
  1556. {
  1557. "__id__": 39
  1558. },
  1559. {
  1560. "__id__": 42
  1561. }
  1562. ],
  1563. "_active": true,
  1564. "_components": [
  1565. {
  1566. "__id__": 45
  1567. }
  1568. ],
  1569. "_prefab": {
  1570. "__id__": 46
  1571. },
  1572. "_opacity": 255,
  1573. "_color": {
  1574. "__type__": "cc.Color",
  1575. "r": 255,
  1576. "g": 255,
  1577. "b": 255,
  1578. "a": 255
  1579. },
  1580. "_contentSize": {
  1581. "__type__": "cc.Size",
  1582. "width": 100,
  1583. "height": 100
  1584. },
  1585. "_anchorPoint": {
  1586. "__type__": "cc.Vec2",
  1587. "x": 0.5,
  1588. "y": 0.5
  1589. },
  1590. "_trs": {
  1591. "__type__": "TypedArray",
  1592. "ctor": "Float64Array",
  1593. "array": [
  1594. -345.584,
  1595. 0.586,
  1596. 0,
  1597. 0,
  1598. 0,
  1599. 0,
  1600. 1,
  1601. 1,
  1602. 1,
  1603. 1
  1604. ]
  1605. },
  1606. "_eulerAngles": {
  1607. "__type__": "cc.Vec3",
  1608. "x": 0,
  1609. "y": 0,
  1610. "z": 0
  1611. },
  1612. "_skewX": 0,
  1613. "_skewY": 0,
  1614. "_is3DNode": false,
  1615. "_groupIndex": 0,
  1616. "groupIndex": 0,
  1617. "_id": ""
  1618. },
  1619. {
  1620. "__type__": "cc.Node",
  1621. "_name": "ImageRare",
  1622. "_objFlags": 0,
  1623. "_parent": {
  1624. "__id__": 38
  1625. },
  1626. "_children": [],
  1627. "_active": true,
  1628. "_components": [
  1629. {
  1630. "__id__": 40
  1631. }
  1632. ],
  1633. "_prefab": {
  1634. "__id__": 41
  1635. },
  1636. "_opacity": 255,
  1637. "_color": {
  1638. "__type__": "cc.Color",
  1639. "r": 255,
  1640. "g": 255,
  1641. "b": 255,
  1642. "a": 255
  1643. },
  1644. "_contentSize": {
  1645. "__type__": "cc.Size",
  1646. "width": 24,
  1647. "height": 24
  1648. },
  1649. "_anchorPoint": {
  1650. "__type__": "cc.Vec2",
  1651. "x": 0.5,
  1652. "y": 0.5
  1653. },
  1654. "_trs": {
  1655. "__type__": "TypedArray",
  1656. "ctor": "Float64Array",
  1657. "array": [
  1658. -19.293,
  1659. 0,
  1660. 0,
  1661. 0,
  1662. 0,
  1663. 0,
  1664. 1,
  1665. 1,
  1666. 1,
  1667. 1
  1668. ]
  1669. },
  1670. "_eulerAngles": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 0,
  1673. "y": 0,
  1674. "z": 0
  1675. },
  1676. "_skewX": 0,
  1677. "_skewY": 0,
  1678. "_is3DNode": false,
  1679. "_groupIndex": 0,
  1680. "groupIndex": 0,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "cc.Sprite",
  1685. "_name": "",
  1686. "_objFlags": 0,
  1687. "node": {
  1688. "__id__": 39
  1689. },
  1690. "_enabled": true,
  1691. "_materials": [
  1692. {
  1693. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1694. }
  1695. ],
  1696. "_srcBlendFactor": 770,
  1697. "_dstBlendFactor": 771,
  1698. "_spriteFrame": {
  1699. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  1700. },
  1701. "_type": 0,
  1702. "_sizeMode": 1,
  1703. "_fillType": 0,
  1704. "_fillCenter": {
  1705. "__type__": "cc.Vec2",
  1706. "x": 0,
  1707. "y": 0
  1708. },
  1709. "_fillStart": 0,
  1710. "_fillRange": 0,
  1711. "_isTrimmedMode": true,
  1712. "_atlas": null,
  1713. "_id": ""
  1714. },
  1715. {
  1716. "__type__": "cc.PrefabInfo",
  1717. "root": {
  1718. "__id__": 1
  1719. },
  1720. "asset": {
  1721. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1722. },
  1723. "fileId": "cbOvpNoqJGeKYsNvnyQUzB",
  1724. "sync": false
  1725. },
  1726. {
  1727. "__type__": "cc.Node",
  1728. "_name": "TextRare1",
  1729. "_objFlags": 0,
  1730. "_parent": {
  1731. "__id__": 38
  1732. },
  1733. "_children": [],
  1734. "_active": true,
  1735. "_components": [
  1736. {
  1737. "__id__": 43
  1738. }
  1739. ],
  1740. "_prefab": {
  1741. "__id__": 44
  1742. },
  1743. "_opacity": 255,
  1744. "_color": {
  1745. "__type__": "cc.Color",
  1746. "r": 213,
  1747. "g": 248,
  1748. "b": 241,
  1749. "a": 255
  1750. },
  1751. "_contentSize": {
  1752. "__type__": "cc.Size",
  1753. "width": 33.24,
  1754. "height": 50.4
  1755. },
  1756. "_anchorPoint": {
  1757. "__type__": "cc.Vec2",
  1758. "x": 0,
  1759. "y": 0.5
  1760. },
  1761. "_trs": {
  1762. "__type__": "TypedArray",
  1763. "ctor": "Float64Array",
  1764. "array": [
  1765. -3.422,
  1766. -0.778,
  1767. 0,
  1768. 0,
  1769. 0,
  1770. 0,
  1771. 1,
  1772. 1,
  1773. 1,
  1774. 1
  1775. ]
  1776. },
  1777. "_eulerAngles": {
  1778. "__type__": "cc.Vec3",
  1779. "x": 0,
  1780. "y": 0,
  1781. "z": 0
  1782. },
  1783. "_skewX": 0,
  1784. "_skewY": 0,
  1785. "_is3DNode": false,
  1786. "_groupIndex": 0,
  1787. "groupIndex": 0,
  1788. "_id": ""
  1789. },
  1790. {
  1791. "__type__": "cc.Label",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "node": {
  1795. "__id__": 42
  1796. },
  1797. "_enabled": true,
  1798. "_materials": [
  1799. {
  1800. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1801. }
  1802. ],
  1803. "_useOriginalSize": false,
  1804. "_string": "5%",
  1805. "_N$string": "5%",
  1806. "_fontSize": 23,
  1807. "_lineHeight": 40,
  1808. "_enableWrapText": true,
  1809. "_N$file": null,
  1810. "_isSystemFontUsed": true,
  1811. "_spacingX": 0,
  1812. "_batchAsBitmap": false,
  1813. "_styleFlags": 0,
  1814. "_underlineHeight": 0,
  1815. "_N$horizontalAlign": 1,
  1816. "_N$verticalAlign": 1,
  1817. "_N$fontFamily": "Arial",
  1818. "_N$overflow": 0,
  1819. "_N$cacheMode": 0,
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.PrefabInfo",
  1824. "root": {
  1825. "__id__": 1
  1826. },
  1827. "asset": {
  1828. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1829. },
  1830. "fileId": "59G39Rs3ZJRIaZO+U3NyAk",
  1831. "sync": false
  1832. },
  1833. {
  1834. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "node": {
  1838. "__id__": 38
  1839. },
  1840. "_enabled": true,
  1841. "imageRare": {
  1842. "__id__": 40
  1843. },
  1844. "textRere1": {
  1845. "__id__": 43
  1846. },
  1847. "_id": ""
  1848. },
  1849. {
  1850. "__type__": "cc.PrefabInfo",
  1851. "root": {
  1852. "__id__": 1
  1853. },
  1854. "asset": {
  1855. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  1856. },
  1857. "fileId": "aeyW4YAGRG37YX11yyRgKc",
  1858. "sync": false
  1859. },
  1860. {
  1861. "__type__": "cc.Node",
  1862. "_name": "BoxChanceItem2",
  1863. "_objFlags": 0,
  1864. "_parent": {
  1865. "__id__": 37
  1866. },
  1867. "_children": [
  1868. {
  1869. "__id__": 48
  1870. },
  1871. {
  1872. "__id__": 51
  1873. }
  1874. ],
  1875. "_active": true,
  1876. "_components": [
  1877. {
  1878. "__id__": 54
  1879. }
  1880. ],
  1881. "_prefab": {
  1882. "__id__": 55
  1883. },
  1884. "_opacity": 255,
  1885. "_color": {
  1886. "__type__": "cc.Color",
  1887. "r": 255,
  1888. "g": 255,
  1889. "b": 255,
  1890. "a": 255
  1891. },
  1892. "_contentSize": {
  1893. "__type__": "cc.Size",
  1894. "width": 100,
  1895. "height": 100
  1896. },
  1897. "_anchorPoint": {
  1898. "__type__": "cc.Vec2",
  1899. "x": 0.5,
  1900. "y": 0.5
  1901. },
  1902. "_trs": {
  1903. "__type__": "TypedArray",
  1904. "ctor": "Float64Array",
  1905. "array": [
  1906. -232.398,
  1907. 0.586,
  1908. 0,
  1909. 0,
  1910. 0,
  1911. 0,
  1912. 1,
  1913. 1,
  1914. 1,
  1915. 1
  1916. ]
  1917. },
  1918. "_eulerAngles": {
  1919. "__type__": "cc.Vec3",
  1920. "x": 0,
  1921. "y": 0,
  1922. "z": 0
  1923. },
  1924. "_skewX": 0,
  1925. "_skewY": 0,
  1926. "_is3DNode": false,
  1927. "_groupIndex": 0,
  1928. "groupIndex": 0,
  1929. "_id": ""
  1930. },
  1931. {
  1932. "__type__": "cc.Node",
  1933. "_name": "ImageRare",
  1934. "_objFlags": 0,
  1935. "_parent": {
  1936. "__id__": 47
  1937. },
  1938. "_children": [],
  1939. "_active": true,
  1940. "_components": [
  1941. {
  1942. "__id__": 49
  1943. }
  1944. ],
  1945. "_prefab": {
  1946. "__id__": 50
  1947. },
  1948. "_opacity": 255,
  1949. "_color": {
  1950. "__type__": "cc.Color",
  1951. "r": 255,
  1952. "g": 255,
  1953. "b": 255,
  1954. "a": 255
  1955. },
  1956. "_contentSize": {
  1957. "__type__": "cc.Size",
  1958. "width": 24,
  1959. "height": 24
  1960. },
  1961. "_anchorPoint": {
  1962. "__type__": "cc.Vec2",
  1963. "x": 0.5,
  1964. "y": 0.5
  1965. },
  1966. "_trs": {
  1967. "__type__": "TypedArray",
  1968. "ctor": "Float64Array",
  1969. "array": [
  1970. -19.293,
  1971. 0,
  1972. 0,
  1973. 0,
  1974. 0,
  1975. 0,
  1976. 1,
  1977. 1,
  1978. 1,
  1979. 1
  1980. ]
  1981. },
  1982. "_eulerAngles": {
  1983. "__type__": "cc.Vec3",
  1984. "x": 0,
  1985. "y": 0,
  1986. "z": 0
  1987. },
  1988. "_skewX": 0,
  1989. "_skewY": 0,
  1990. "_is3DNode": false,
  1991. "_groupIndex": 0,
  1992. "groupIndex": 0,
  1993. "_id": ""
  1994. },
  1995. {
  1996. "__type__": "cc.Sprite",
  1997. "_name": "",
  1998. "_objFlags": 0,
  1999. "node": {
  2000. "__id__": 48
  2001. },
  2002. "_enabled": true,
  2003. "_materials": [
  2004. {
  2005. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2006. }
  2007. ],
  2008. "_srcBlendFactor": 770,
  2009. "_dstBlendFactor": 771,
  2010. "_spriteFrame": {
  2011. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  2012. },
  2013. "_type": 0,
  2014. "_sizeMode": 1,
  2015. "_fillType": 0,
  2016. "_fillCenter": {
  2017. "__type__": "cc.Vec2",
  2018. "x": 0,
  2019. "y": 0
  2020. },
  2021. "_fillStart": 0,
  2022. "_fillRange": 0,
  2023. "_isTrimmedMode": true,
  2024. "_atlas": null,
  2025. "_id": ""
  2026. },
  2027. {
  2028. "__type__": "cc.PrefabInfo",
  2029. "root": {
  2030. "__id__": 1
  2031. },
  2032. "asset": {
  2033. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2034. },
  2035. "fileId": "eeKpeip7lIDKxka+H5PBxO",
  2036. "sync": false
  2037. },
  2038. {
  2039. "__type__": "cc.Node",
  2040. "_name": "TextRare1",
  2041. "_objFlags": 0,
  2042. "_parent": {
  2043. "__id__": 47
  2044. },
  2045. "_children": [],
  2046. "_active": true,
  2047. "_components": [
  2048. {
  2049. "__id__": 52
  2050. }
  2051. ],
  2052. "_prefab": {
  2053. "__id__": 53
  2054. },
  2055. "_opacity": 255,
  2056. "_color": {
  2057. "__type__": "cc.Color",
  2058. "r": 213,
  2059. "g": 248,
  2060. "b": 241,
  2061. "a": 255
  2062. },
  2063. "_contentSize": {
  2064. "__type__": "cc.Size",
  2065. "width": 33.24,
  2066. "height": 50.4
  2067. },
  2068. "_anchorPoint": {
  2069. "__type__": "cc.Vec2",
  2070. "x": 0,
  2071. "y": 0.5
  2072. },
  2073. "_trs": {
  2074. "__type__": "TypedArray",
  2075. "ctor": "Float64Array",
  2076. "array": [
  2077. -3.422,
  2078. -0.778,
  2079. 0,
  2080. 0,
  2081. 0,
  2082. 0,
  2083. 1,
  2084. 1,
  2085. 1,
  2086. 1
  2087. ]
  2088. },
  2089. "_eulerAngles": {
  2090. "__type__": "cc.Vec3",
  2091. "x": 0,
  2092. "y": 0,
  2093. "z": 0
  2094. },
  2095. "_skewX": 0,
  2096. "_skewY": 0,
  2097. "_is3DNode": false,
  2098. "_groupIndex": 0,
  2099. "groupIndex": 0,
  2100. "_id": ""
  2101. },
  2102. {
  2103. "__type__": "cc.Label",
  2104. "_name": "",
  2105. "_objFlags": 0,
  2106. "node": {
  2107. "__id__": 51
  2108. },
  2109. "_enabled": true,
  2110. "_materials": [
  2111. {
  2112. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2113. }
  2114. ],
  2115. "_useOriginalSize": false,
  2116. "_string": "5%",
  2117. "_N$string": "5%",
  2118. "_fontSize": 23,
  2119. "_lineHeight": 40,
  2120. "_enableWrapText": true,
  2121. "_N$file": null,
  2122. "_isSystemFontUsed": true,
  2123. "_spacingX": 0,
  2124. "_batchAsBitmap": false,
  2125. "_styleFlags": 0,
  2126. "_underlineHeight": 0,
  2127. "_N$horizontalAlign": 1,
  2128. "_N$verticalAlign": 1,
  2129. "_N$fontFamily": "Arial",
  2130. "_N$overflow": 0,
  2131. "_N$cacheMode": 0,
  2132. "_id": ""
  2133. },
  2134. {
  2135. "__type__": "cc.PrefabInfo",
  2136. "root": {
  2137. "__id__": 1
  2138. },
  2139. "asset": {
  2140. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2141. },
  2142. "fileId": "4dH7dYsohLR7Bf3QMnFJ7O",
  2143. "sync": false
  2144. },
  2145. {
  2146. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  2147. "_name": "",
  2148. "_objFlags": 0,
  2149. "node": {
  2150. "__id__": 47
  2151. },
  2152. "_enabled": true,
  2153. "imageRare": {
  2154. "__id__": 49
  2155. },
  2156. "textRere1": {
  2157. "__id__": 52
  2158. },
  2159. "_id": ""
  2160. },
  2161. {
  2162. "__type__": "cc.PrefabInfo",
  2163. "root": {
  2164. "__id__": 1
  2165. },
  2166. "asset": {
  2167. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2168. },
  2169. "fileId": "37MbWtMNZPgpqAJ4RughLl",
  2170. "sync": false
  2171. },
  2172. {
  2173. "__type__": "cc.Node",
  2174. "_name": "BoxChanceItem3",
  2175. "_objFlags": 0,
  2176. "_parent": {
  2177. "__id__": 37
  2178. },
  2179. "_children": [
  2180. {
  2181. "__id__": 57
  2182. },
  2183. {
  2184. "__id__": 60
  2185. }
  2186. ],
  2187. "_active": true,
  2188. "_components": [
  2189. {
  2190. "__id__": 63
  2191. }
  2192. ],
  2193. "_prefab": {
  2194. "__id__": 64
  2195. },
  2196. "_opacity": 255,
  2197. "_color": {
  2198. "__type__": "cc.Color",
  2199. "r": 255,
  2200. "g": 255,
  2201. "b": 255,
  2202. "a": 255
  2203. },
  2204. "_contentSize": {
  2205. "__type__": "cc.Size",
  2206. "width": 100,
  2207. "height": 100
  2208. },
  2209. "_anchorPoint": {
  2210. "__type__": "cc.Vec2",
  2211. "x": 0.5,
  2212. "y": 0.5
  2213. },
  2214. "_trs": {
  2215. "__type__": "TypedArray",
  2216. "ctor": "Float64Array",
  2217. "array": [
  2218. -119.808,
  2219. 0.586,
  2220. 0,
  2221. 0,
  2222. 0,
  2223. 0,
  2224. 1,
  2225. 1,
  2226. 1,
  2227. 1
  2228. ]
  2229. },
  2230. "_eulerAngles": {
  2231. "__type__": "cc.Vec3",
  2232. "x": 0,
  2233. "y": 0,
  2234. "z": 0
  2235. },
  2236. "_skewX": 0,
  2237. "_skewY": 0,
  2238. "_is3DNode": false,
  2239. "_groupIndex": 0,
  2240. "groupIndex": 0,
  2241. "_id": ""
  2242. },
  2243. {
  2244. "__type__": "cc.Node",
  2245. "_name": "ImageRare",
  2246. "_objFlags": 0,
  2247. "_parent": {
  2248. "__id__": 56
  2249. },
  2250. "_children": [],
  2251. "_active": true,
  2252. "_components": [
  2253. {
  2254. "__id__": 58
  2255. }
  2256. ],
  2257. "_prefab": {
  2258. "__id__": 59
  2259. },
  2260. "_opacity": 255,
  2261. "_color": {
  2262. "__type__": "cc.Color",
  2263. "r": 255,
  2264. "g": 255,
  2265. "b": 255,
  2266. "a": 255
  2267. },
  2268. "_contentSize": {
  2269. "__type__": "cc.Size",
  2270. "width": 24,
  2271. "height": 24
  2272. },
  2273. "_anchorPoint": {
  2274. "__type__": "cc.Vec2",
  2275. "x": 0.5,
  2276. "y": 0.5
  2277. },
  2278. "_trs": {
  2279. "__type__": "TypedArray",
  2280. "ctor": "Float64Array",
  2281. "array": [
  2282. -19.293,
  2283. 0,
  2284. 0,
  2285. 0,
  2286. 0,
  2287. 0,
  2288. 1,
  2289. 1,
  2290. 1,
  2291. 1
  2292. ]
  2293. },
  2294. "_eulerAngles": {
  2295. "__type__": "cc.Vec3",
  2296. "x": 0,
  2297. "y": 0,
  2298. "z": 0
  2299. },
  2300. "_skewX": 0,
  2301. "_skewY": 0,
  2302. "_is3DNode": false,
  2303. "_groupIndex": 0,
  2304. "groupIndex": 0,
  2305. "_id": ""
  2306. },
  2307. {
  2308. "__type__": "cc.Sprite",
  2309. "_name": "",
  2310. "_objFlags": 0,
  2311. "node": {
  2312. "__id__": 57
  2313. },
  2314. "_enabled": true,
  2315. "_materials": [
  2316. {
  2317. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2318. }
  2319. ],
  2320. "_srcBlendFactor": 770,
  2321. "_dstBlendFactor": 771,
  2322. "_spriteFrame": {
  2323. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  2324. },
  2325. "_type": 0,
  2326. "_sizeMode": 1,
  2327. "_fillType": 0,
  2328. "_fillCenter": {
  2329. "__type__": "cc.Vec2",
  2330. "x": 0,
  2331. "y": 0
  2332. },
  2333. "_fillStart": 0,
  2334. "_fillRange": 0,
  2335. "_isTrimmedMode": true,
  2336. "_atlas": null,
  2337. "_id": ""
  2338. },
  2339. {
  2340. "__type__": "cc.PrefabInfo",
  2341. "root": {
  2342. "__id__": 1
  2343. },
  2344. "asset": {
  2345. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2346. },
  2347. "fileId": "f0dOQeKCVKM63XLY0rZGUt",
  2348. "sync": false
  2349. },
  2350. {
  2351. "__type__": "cc.Node",
  2352. "_name": "TextRare1",
  2353. "_objFlags": 0,
  2354. "_parent": {
  2355. "__id__": 56
  2356. },
  2357. "_children": [],
  2358. "_active": true,
  2359. "_components": [
  2360. {
  2361. "__id__": 61
  2362. }
  2363. ],
  2364. "_prefab": {
  2365. "__id__": 62
  2366. },
  2367. "_opacity": 255,
  2368. "_color": {
  2369. "__type__": "cc.Color",
  2370. "r": 213,
  2371. "g": 248,
  2372. "b": 241,
  2373. "a": 255
  2374. },
  2375. "_contentSize": {
  2376. "__type__": "cc.Size",
  2377. "width": 33.24,
  2378. "height": 50.4
  2379. },
  2380. "_anchorPoint": {
  2381. "__type__": "cc.Vec2",
  2382. "x": 0,
  2383. "y": 0.5
  2384. },
  2385. "_trs": {
  2386. "__type__": "TypedArray",
  2387. "ctor": "Float64Array",
  2388. "array": [
  2389. -3.422,
  2390. -0.778,
  2391. 0,
  2392. 0,
  2393. 0,
  2394. 0,
  2395. 1,
  2396. 1,
  2397. 1,
  2398. 1
  2399. ]
  2400. },
  2401. "_eulerAngles": {
  2402. "__type__": "cc.Vec3",
  2403. "x": 0,
  2404. "y": 0,
  2405. "z": 0
  2406. },
  2407. "_skewX": 0,
  2408. "_skewY": 0,
  2409. "_is3DNode": false,
  2410. "_groupIndex": 0,
  2411. "groupIndex": 0,
  2412. "_id": ""
  2413. },
  2414. {
  2415. "__type__": "cc.Label",
  2416. "_name": "",
  2417. "_objFlags": 0,
  2418. "node": {
  2419. "__id__": 60
  2420. },
  2421. "_enabled": true,
  2422. "_materials": [
  2423. {
  2424. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2425. }
  2426. ],
  2427. "_useOriginalSize": false,
  2428. "_string": "5%",
  2429. "_N$string": "5%",
  2430. "_fontSize": 23,
  2431. "_lineHeight": 40,
  2432. "_enableWrapText": true,
  2433. "_N$file": null,
  2434. "_isSystemFontUsed": true,
  2435. "_spacingX": 0,
  2436. "_batchAsBitmap": false,
  2437. "_styleFlags": 0,
  2438. "_underlineHeight": 0,
  2439. "_N$horizontalAlign": 1,
  2440. "_N$verticalAlign": 1,
  2441. "_N$fontFamily": "Arial",
  2442. "_N$overflow": 0,
  2443. "_N$cacheMode": 0,
  2444. "_id": ""
  2445. },
  2446. {
  2447. "__type__": "cc.PrefabInfo",
  2448. "root": {
  2449. "__id__": 1
  2450. },
  2451. "asset": {
  2452. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2453. },
  2454. "fileId": "3eLsxXKixI76LyGDLV7vQB",
  2455. "sync": false
  2456. },
  2457. {
  2458. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  2459. "_name": "",
  2460. "_objFlags": 0,
  2461. "node": {
  2462. "__id__": 56
  2463. },
  2464. "_enabled": true,
  2465. "imageRare": {
  2466. "__id__": 58
  2467. },
  2468. "textRere1": {
  2469. "__id__": 61
  2470. },
  2471. "_id": ""
  2472. },
  2473. {
  2474. "__type__": "cc.PrefabInfo",
  2475. "root": {
  2476. "__id__": 1
  2477. },
  2478. "asset": {
  2479. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2480. },
  2481. "fileId": "fcsyA+tKJDwpWCJOrbi78O",
  2482. "sync": false
  2483. },
  2484. {
  2485. "__type__": "cc.Node",
  2486. "_name": "BoxChanceItem4",
  2487. "_objFlags": 0,
  2488. "_parent": {
  2489. "__id__": 37
  2490. },
  2491. "_children": [
  2492. {
  2493. "__id__": 66
  2494. },
  2495. {
  2496. "__id__": 69
  2497. }
  2498. ],
  2499. "_active": true,
  2500. "_components": [
  2501. {
  2502. "__id__": 72
  2503. }
  2504. ],
  2505. "_prefab": {
  2506. "__id__": 73
  2507. },
  2508. "_opacity": 255,
  2509. "_color": {
  2510. "__type__": "cc.Color",
  2511. "r": 255,
  2512. "g": 255,
  2513. "b": 255,
  2514. "a": 255
  2515. },
  2516. "_contentSize": {
  2517. "__type__": "cc.Size",
  2518. "width": 100,
  2519. "height": 100
  2520. },
  2521. "_anchorPoint": {
  2522. "__type__": "cc.Vec2",
  2523. "x": 0.5,
  2524. "y": 0.5
  2525. },
  2526. "_trs": {
  2527. "__type__": "TypedArray",
  2528. "ctor": "Float64Array",
  2529. "array": [
  2530. -7.218,
  2531. 0.586,
  2532. 0,
  2533. 0,
  2534. 0,
  2535. 0,
  2536. 1,
  2537. 1,
  2538. 1,
  2539. 1
  2540. ]
  2541. },
  2542. "_eulerAngles": {
  2543. "__type__": "cc.Vec3",
  2544. "x": 0,
  2545. "y": 0,
  2546. "z": 0
  2547. },
  2548. "_skewX": 0,
  2549. "_skewY": 0,
  2550. "_is3DNode": false,
  2551. "_groupIndex": 0,
  2552. "groupIndex": 0,
  2553. "_id": ""
  2554. },
  2555. {
  2556. "__type__": "cc.Node",
  2557. "_name": "ImageRare",
  2558. "_objFlags": 0,
  2559. "_parent": {
  2560. "__id__": 65
  2561. },
  2562. "_children": [],
  2563. "_active": true,
  2564. "_components": [
  2565. {
  2566. "__id__": 67
  2567. }
  2568. ],
  2569. "_prefab": {
  2570. "__id__": 68
  2571. },
  2572. "_opacity": 255,
  2573. "_color": {
  2574. "__type__": "cc.Color",
  2575. "r": 255,
  2576. "g": 255,
  2577. "b": 255,
  2578. "a": 255
  2579. },
  2580. "_contentSize": {
  2581. "__type__": "cc.Size",
  2582. "width": 24,
  2583. "height": 24
  2584. },
  2585. "_anchorPoint": {
  2586. "__type__": "cc.Vec2",
  2587. "x": 0.5,
  2588. "y": 0.5
  2589. },
  2590. "_trs": {
  2591. "__type__": "TypedArray",
  2592. "ctor": "Float64Array",
  2593. "array": [
  2594. -19.293,
  2595. 0,
  2596. 0,
  2597. 0,
  2598. 0,
  2599. 0,
  2600. 1,
  2601. 1,
  2602. 1,
  2603. 1
  2604. ]
  2605. },
  2606. "_eulerAngles": {
  2607. "__type__": "cc.Vec3",
  2608. "x": 0,
  2609. "y": 0,
  2610. "z": 0
  2611. },
  2612. "_skewX": 0,
  2613. "_skewY": 0,
  2614. "_is3DNode": false,
  2615. "_groupIndex": 0,
  2616. "groupIndex": 0,
  2617. "_id": ""
  2618. },
  2619. {
  2620. "__type__": "cc.Sprite",
  2621. "_name": "",
  2622. "_objFlags": 0,
  2623. "node": {
  2624. "__id__": 66
  2625. },
  2626. "_enabled": true,
  2627. "_materials": [
  2628. {
  2629. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2630. }
  2631. ],
  2632. "_srcBlendFactor": 770,
  2633. "_dstBlendFactor": 771,
  2634. "_spriteFrame": {
  2635. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  2636. },
  2637. "_type": 0,
  2638. "_sizeMode": 1,
  2639. "_fillType": 0,
  2640. "_fillCenter": {
  2641. "__type__": "cc.Vec2",
  2642. "x": 0,
  2643. "y": 0
  2644. },
  2645. "_fillStart": 0,
  2646. "_fillRange": 0,
  2647. "_isTrimmedMode": true,
  2648. "_atlas": null,
  2649. "_id": ""
  2650. },
  2651. {
  2652. "__type__": "cc.PrefabInfo",
  2653. "root": {
  2654. "__id__": 1
  2655. },
  2656. "asset": {
  2657. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2658. },
  2659. "fileId": "ecqIO1LiZETLjvT8fpuy5t",
  2660. "sync": false
  2661. },
  2662. {
  2663. "__type__": "cc.Node",
  2664. "_name": "TextRare1",
  2665. "_objFlags": 0,
  2666. "_parent": {
  2667. "__id__": 65
  2668. },
  2669. "_children": [],
  2670. "_active": true,
  2671. "_components": [
  2672. {
  2673. "__id__": 70
  2674. }
  2675. ],
  2676. "_prefab": {
  2677. "__id__": 71
  2678. },
  2679. "_opacity": 255,
  2680. "_color": {
  2681. "__type__": "cc.Color",
  2682. "r": 213,
  2683. "g": 248,
  2684. "b": 241,
  2685. "a": 255
  2686. },
  2687. "_contentSize": {
  2688. "__type__": "cc.Size",
  2689. "width": 33.24,
  2690. "height": 50.4
  2691. },
  2692. "_anchorPoint": {
  2693. "__type__": "cc.Vec2",
  2694. "x": 0,
  2695. "y": 0.5
  2696. },
  2697. "_trs": {
  2698. "__type__": "TypedArray",
  2699. "ctor": "Float64Array",
  2700. "array": [
  2701. -3.422,
  2702. -0.778,
  2703. 0,
  2704. 0,
  2705. 0,
  2706. 0,
  2707. 1,
  2708. 1,
  2709. 1,
  2710. 1
  2711. ]
  2712. },
  2713. "_eulerAngles": {
  2714. "__type__": "cc.Vec3",
  2715. "x": 0,
  2716. "y": 0,
  2717. "z": 0
  2718. },
  2719. "_skewX": 0,
  2720. "_skewY": 0,
  2721. "_is3DNode": false,
  2722. "_groupIndex": 0,
  2723. "groupIndex": 0,
  2724. "_id": ""
  2725. },
  2726. {
  2727. "__type__": "cc.Label",
  2728. "_name": "",
  2729. "_objFlags": 0,
  2730. "node": {
  2731. "__id__": 69
  2732. },
  2733. "_enabled": true,
  2734. "_materials": [
  2735. {
  2736. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2737. }
  2738. ],
  2739. "_useOriginalSize": false,
  2740. "_string": "5%",
  2741. "_N$string": "5%",
  2742. "_fontSize": 23,
  2743. "_lineHeight": 40,
  2744. "_enableWrapText": true,
  2745. "_N$file": null,
  2746. "_isSystemFontUsed": true,
  2747. "_spacingX": 0,
  2748. "_batchAsBitmap": false,
  2749. "_styleFlags": 0,
  2750. "_underlineHeight": 0,
  2751. "_N$horizontalAlign": 1,
  2752. "_N$verticalAlign": 1,
  2753. "_N$fontFamily": "Arial",
  2754. "_N$overflow": 0,
  2755. "_N$cacheMode": 0,
  2756. "_id": ""
  2757. },
  2758. {
  2759. "__type__": "cc.PrefabInfo",
  2760. "root": {
  2761. "__id__": 1
  2762. },
  2763. "asset": {
  2764. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2765. },
  2766. "fileId": "f5rBlFqk1LMq6qj5/G090y",
  2767. "sync": false
  2768. },
  2769. {
  2770. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  2771. "_name": "",
  2772. "_objFlags": 0,
  2773. "node": {
  2774. "__id__": 65
  2775. },
  2776. "_enabled": true,
  2777. "imageRare": {
  2778. "__id__": 67
  2779. },
  2780. "textRere1": {
  2781. "__id__": 70
  2782. },
  2783. "_id": ""
  2784. },
  2785. {
  2786. "__type__": "cc.PrefabInfo",
  2787. "root": {
  2788. "__id__": 1
  2789. },
  2790. "asset": {
  2791. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2792. },
  2793. "fileId": "efMpFSesxA2pgWb6OnfRNL",
  2794. "sync": false
  2795. },
  2796. {
  2797. "__type__": "cc.Node",
  2798. "_name": "BoxChanceItem5",
  2799. "_objFlags": 0,
  2800. "_parent": {
  2801. "__id__": 37
  2802. },
  2803. "_children": [
  2804. {
  2805. "__id__": 75
  2806. },
  2807. {
  2808. "__id__": 78
  2809. }
  2810. ],
  2811. "_active": true,
  2812. "_components": [
  2813. {
  2814. "__id__": 81
  2815. }
  2816. ],
  2817. "_prefab": {
  2818. "__id__": 82
  2819. },
  2820. "_opacity": 255,
  2821. "_color": {
  2822. "__type__": "cc.Color",
  2823. "r": 255,
  2824. "g": 255,
  2825. "b": 255,
  2826. "a": 255
  2827. },
  2828. "_contentSize": {
  2829. "__type__": "cc.Size",
  2830. "width": 100,
  2831. "height": 100
  2832. },
  2833. "_anchorPoint": {
  2834. "__type__": "cc.Vec2",
  2835. "x": 0.5,
  2836. "y": 0.5
  2837. },
  2838. "_trs": {
  2839. "__type__": "TypedArray",
  2840. "ctor": "Float64Array",
  2841. "array": [
  2842. 106.564,
  2843. 0.586,
  2844. 0,
  2845. 0,
  2846. 0,
  2847. 0,
  2848. 1,
  2849. 1,
  2850. 1,
  2851. 1
  2852. ]
  2853. },
  2854. "_eulerAngles": {
  2855. "__type__": "cc.Vec3",
  2856. "x": 0,
  2857. "y": 0,
  2858. "z": 0
  2859. },
  2860. "_skewX": 0,
  2861. "_skewY": 0,
  2862. "_is3DNode": false,
  2863. "_groupIndex": 0,
  2864. "groupIndex": 0,
  2865. "_id": ""
  2866. },
  2867. {
  2868. "__type__": "cc.Node",
  2869. "_name": "ImageRare",
  2870. "_objFlags": 0,
  2871. "_parent": {
  2872. "__id__": 74
  2873. },
  2874. "_children": [],
  2875. "_active": true,
  2876. "_components": [
  2877. {
  2878. "__id__": 76
  2879. }
  2880. ],
  2881. "_prefab": {
  2882. "__id__": 77
  2883. },
  2884. "_opacity": 255,
  2885. "_color": {
  2886. "__type__": "cc.Color",
  2887. "r": 255,
  2888. "g": 255,
  2889. "b": 255,
  2890. "a": 255
  2891. },
  2892. "_contentSize": {
  2893. "__type__": "cc.Size",
  2894. "width": 24,
  2895. "height": 24
  2896. },
  2897. "_anchorPoint": {
  2898. "__type__": "cc.Vec2",
  2899. "x": 0.5,
  2900. "y": 0.5
  2901. },
  2902. "_trs": {
  2903. "__type__": "TypedArray",
  2904. "ctor": "Float64Array",
  2905. "array": [
  2906. -19.293,
  2907. 0,
  2908. 0,
  2909. 0,
  2910. 0,
  2911. 0,
  2912. 1,
  2913. 1,
  2914. 1,
  2915. 1
  2916. ]
  2917. },
  2918. "_eulerAngles": {
  2919. "__type__": "cc.Vec3",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0
  2923. },
  2924. "_skewX": 0,
  2925. "_skewY": 0,
  2926. "_is3DNode": false,
  2927. "_groupIndex": 0,
  2928. "groupIndex": 0,
  2929. "_id": ""
  2930. },
  2931. {
  2932. "__type__": "cc.Sprite",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "node": {
  2936. "__id__": 75
  2937. },
  2938. "_enabled": true,
  2939. "_materials": [
  2940. {
  2941. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2942. }
  2943. ],
  2944. "_srcBlendFactor": 770,
  2945. "_dstBlendFactor": 771,
  2946. "_spriteFrame": {
  2947. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  2948. },
  2949. "_type": 0,
  2950. "_sizeMode": 1,
  2951. "_fillType": 0,
  2952. "_fillCenter": {
  2953. "__type__": "cc.Vec2",
  2954. "x": 0,
  2955. "y": 0
  2956. },
  2957. "_fillStart": 0,
  2958. "_fillRange": 0,
  2959. "_isTrimmedMode": true,
  2960. "_atlas": null,
  2961. "_id": ""
  2962. },
  2963. {
  2964. "__type__": "cc.PrefabInfo",
  2965. "root": {
  2966. "__id__": 1
  2967. },
  2968. "asset": {
  2969. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  2970. },
  2971. "fileId": "0aXVlpgN5Pb5fgaDh0W8zZ",
  2972. "sync": false
  2973. },
  2974. {
  2975. "__type__": "cc.Node",
  2976. "_name": "TextRare1",
  2977. "_objFlags": 0,
  2978. "_parent": {
  2979. "__id__": 74
  2980. },
  2981. "_children": [],
  2982. "_active": true,
  2983. "_components": [
  2984. {
  2985. "__id__": 79
  2986. }
  2987. ],
  2988. "_prefab": {
  2989. "__id__": 80
  2990. },
  2991. "_opacity": 255,
  2992. "_color": {
  2993. "__type__": "cc.Color",
  2994. "r": 213,
  2995. "g": 248,
  2996. "b": 241,
  2997. "a": 255
  2998. },
  2999. "_contentSize": {
  3000. "__type__": "cc.Size",
  3001. "width": 33.24,
  3002. "height": 50.4
  3003. },
  3004. "_anchorPoint": {
  3005. "__type__": "cc.Vec2",
  3006. "x": 0,
  3007. "y": 0.5
  3008. },
  3009. "_trs": {
  3010. "__type__": "TypedArray",
  3011. "ctor": "Float64Array",
  3012. "array": [
  3013. -3.422,
  3014. -0.778,
  3015. 0,
  3016. 0,
  3017. 0,
  3018. 0,
  3019. 1,
  3020. 1,
  3021. 1,
  3022. 1
  3023. ]
  3024. },
  3025. "_eulerAngles": {
  3026. "__type__": "cc.Vec3",
  3027. "x": 0,
  3028. "y": 0,
  3029. "z": 0
  3030. },
  3031. "_skewX": 0,
  3032. "_skewY": 0,
  3033. "_is3DNode": false,
  3034. "_groupIndex": 0,
  3035. "groupIndex": 0,
  3036. "_id": ""
  3037. },
  3038. {
  3039. "__type__": "cc.Label",
  3040. "_name": "",
  3041. "_objFlags": 0,
  3042. "node": {
  3043. "__id__": 78
  3044. },
  3045. "_enabled": true,
  3046. "_materials": [
  3047. {
  3048. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3049. }
  3050. ],
  3051. "_useOriginalSize": false,
  3052. "_string": "5%",
  3053. "_N$string": "5%",
  3054. "_fontSize": 23,
  3055. "_lineHeight": 40,
  3056. "_enableWrapText": true,
  3057. "_N$file": null,
  3058. "_isSystemFontUsed": true,
  3059. "_spacingX": 0,
  3060. "_batchAsBitmap": false,
  3061. "_styleFlags": 0,
  3062. "_underlineHeight": 0,
  3063. "_N$horizontalAlign": 1,
  3064. "_N$verticalAlign": 1,
  3065. "_N$fontFamily": "Arial",
  3066. "_N$overflow": 0,
  3067. "_N$cacheMode": 0,
  3068. "_id": ""
  3069. },
  3070. {
  3071. "__type__": "cc.PrefabInfo",
  3072. "root": {
  3073. "__id__": 1
  3074. },
  3075. "asset": {
  3076. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3077. },
  3078. "fileId": "7bxECTYxBFhpTKUb1vkdIZ",
  3079. "sync": false
  3080. },
  3081. {
  3082. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  3083. "_name": "",
  3084. "_objFlags": 0,
  3085. "node": {
  3086. "__id__": 74
  3087. },
  3088. "_enabled": true,
  3089. "imageRare": {
  3090. "__id__": 76
  3091. },
  3092. "textRere1": {
  3093. "__id__": 79
  3094. },
  3095. "_id": ""
  3096. },
  3097. {
  3098. "__type__": "cc.PrefabInfo",
  3099. "root": {
  3100. "__id__": 1
  3101. },
  3102. "asset": {
  3103. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3104. },
  3105. "fileId": "9eLdgLxoJH/qPXoHZ7hyqg",
  3106. "sync": false
  3107. },
  3108. {
  3109. "__type__": "cc.Node",
  3110. "_name": "BoxChanceItem6",
  3111. "_objFlags": 0,
  3112. "_parent": {
  3113. "__id__": 37
  3114. },
  3115. "_children": [
  3116. {
  3117. "__id__": 84
  3118. },
  3119. {
  3120. "__id__": 87
  3121. }
  3122. ],
  3123. "_active": true,
  3124. "_components": [
  3125. {
  3126. "__id__": 90
  3127. }
  3128. ],
  3129. "_prefab": {
  3130. "__id__": 91
  3131. },
  3132. "_opacity": 255,
  3133. "_color": {
  3134. "__type__": "cc.Color",
  3135. "r": 255,
  3136. "g": 255,
  3137. "b": 255,
  3138. "a": 255
  3139. },
  3140. "_contentSize": {
  3141. "__type__": "cc.Size",
  3142. "width": 100,
  3143. "height": 100
  3144. },
  3145. "_anchorPoint": {
  3146. "__type__": "cc.Vec2",
  3147. "x": 0.5,
  3148. "y": 0.5
  3149. },
  3150. "_trs": {
  3151. "__type__": "TypedArray",
  3152. "ctor": "Float64Array",
  3153. "array": [
  3154. 219.426,
  3155. 0.586,
  3156. 0,
  3157. 0,
  3158. 0,
  3159. 0,
  3160. 1,
  3161. 1,
  3162. 1,
  3163. 1
  3164. ]
  3165. },
  3166. "_eulerAngles": {
  3167. "__type__": "cc.Vec3",
  3168. "x": 0,
  3169. "y": 0,
  3170. "z": 0
  3171. },
  3172. "_skewX": 0,
  3173. "_skewY": 0,
  3174. "_is3DNode": false,
  3175. "_groupIndex": 0,
  3176. "groupIndex": 0,
  3177. "_id": ""
  3178. },
  3179. {
  3180. "__type__": "cc.Node",
  3181. "_name": "ImageRare",
  3182. "_objFlags": 0,
  3183. "_parent": {
  3184. "__id__": 83
  3185. },
  3186. "_children": [],
  3187. "_active": true,
  3188. "_components": [
  3189. {
  3190. "__id__": 85
  3191. }
  3192. ],
  3193. "_prefab": {
  3194. "__id__": 86
  3195. },
  3196. "_opacity": 255,
  3197. "_color": {
  3198. "__type__": "cc.Color",
  3199. "r": 255,
  3200. "g": 255,
  3201. "b": 255,
  3202. "a": 255
  3203. },
  3204. "_contentSize": {
  3205. "__type__": "cc.Size",
  3206. "width": 24,
  3207. "height": 24
  3208. },
  3209. "_anchorPoint": {
  3210. "__type__": "cc.Vec2",
  3211. "x": 0.5,
  3212. "y": 0.5
  3213. },
  3214. "_trs": {
  3215. "__type__": "TypedArray",
  3216. "ctor": "Float64Array",
  3217. "array": [
  3218. -19.293,
  3219. 0,
  3220. 0,
  3221. 0,
  3222. 0,
  3223. 0,
  3224. 1,
  3225. 1,
  3226. 1,
  3227. 1
  3228. ]
  3229. },
  3230. "_eulerAngles": {
  3231. "__type__": "cc.Vec3",
  3232. "x": 0,
  3233. "y": 0,
  3234. "z": 0
  3235. },
  3236. "_skewX": 0,
  3237. "_skewY": 0,
  3238. "_is3DNode": false,
  3239. "_groupIndex": 0,
  3240. "groupIndex": 0,
  3241. "_id": ""
  3242. },
  3243. {
  3244. "__type__": "cc.Sprite",
  3245. "_name": "",
  3246. "_objFlags": 0,
  3247. "node": {
  3248. "__id__": 84
  3249. },
  3250. "_enabled": true,
  3251. "_materials": [
  3252. {
  3253. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3254. }
  3255. ],
  3256. "_srcBlendFactor": 770,
  3257. "_dstBlendFactor": 771,
  3258. "_spriteFrame": {
  3259. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  3260. },
  3261. "_type": 0,
  3262. "_sizeMode": 1,
  3263. "_fillType": 0,
  3264. "_fillCenter": {
  3265. "__type__": "cc.Vec2",
  3266. "x": 0,
  3267. "y": 0
  3268. },
  3269. "_fillStart": 0,
  3270. "_fillRange": 0,
  3271. "_isTrimmedMode": true,
  3272. "_atlas": null,
  3273. "_id": ""
  3274. },
  3275. {
  3276. "__type__": "cc.PrefabInfo",
  3277. "root": {
  3278. "__id__": 1
  3279. },
  3280. "asset": {
  3281. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3282. },
  3283. "fileId": "0dtooJfqpAVrDuBQgWpGAm",
  3284. "sync": false
  3285. },
  3286. {
  3287. "__type__": "cc.Node",
  3288. "_name": "TextRare1",
  3289. "_objFlags": 0,
  3290. "_parent": {
  3291. "__id__": 83
  3292. },
  3293. "_children": [],
  3294. "_active": true,
  3295. "_components": [
  3296. {
  3297. "__id__": 88
  3298. }
  3299. ],
  3300. "_prefab": {
  3301. "__id__": 89
  3302. },
  3303. "_opacity": 255,
  3304. "_color": {
  3305. "__type__": "cc.Color",
  3306. "r": 213,
  3307. "g": 248,
  3308. "b": 241,
  3309. "a": 255
  3310. },
  3311. "_contentSize": {
  3312. "__type__": "cc.Size",
  3313. "width": 33.24,
  3314. "height": 50.4
  3315. },
  3316. "_anchorPoint": {
  3317. "__type__": "cc.Vec2",
  3318. "x": 0,
  3319. "y": 0.5
  3320. },
  3321. "_trs": {
  3322. "__type__": "TypedArray",
  3323. "ctor": "Float64Array",
  3324. "array": [
  3325. -3.422,
  3326. -0.778,
  3327. 0,
  3328. 0,
  3329. 0,
  3330. 0,
  3331. 1,
  3332. 1,
  3333. 1,
  3334. 1
  3335. ]
  3336. },
  3337. "_eulerAngles": {
  3338. "__type__": "cc.Vec3",
  3339. "x": 0,
  3340. "y": 0,
  3341. "z": 0
  3342. },
  3343. "_skewX": 0,
  3344. "_skewY": 0,
  3345. "_is3DNode": false,
  3346. "_groupIndex": 0,
  3347. "groupIndex": 0,
  3348. "_id": ""
  3349. },
  3350. {
  3351. "__type__": "cc.Label",
  3352. "_name": "",
  3353. "_objFlags": 0,
  3354. "node": {
  3355. "__id__": 87
  3356. },
  3357. "_enabled": true,
  3358. "_materials": [
  3359. {
  3360. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3361. }
  3362. ],
  3363. "_useOriginalSize": false,
  3364. "_string": "5%",
  3365. "_N$string": "5%",
  3366. "_fontSize": 23,
  3367. "_lineHeight": 40,
  3368. "_enableWrapText": true,
  3369. "_N$file": null,
  3370. "_isSystemFontUsed": true,
  3371. "_spacingX": 0,
  3372. "_batchAsBitmap": false,
  3373. "_styleFlags": 0,
  3374. "_underlineHeight": 0,
  3375. "_N$horizontalAlign": 1,
  3376. "_N$verticalAlign": 1,
  3377. "_N$fontFamily": "Arial",
  3378. "_N$overflow": 0,
  3379. "_N$cacheMode": 0,
  3380. "_id": ""
  3381. },
  3382. {
  3383. "__type__": "cc.PrefabInfo",
  3384. "root": {
  3385. "__id__": 1
  3386. },
  3387. "asset": {
  3388. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3389. },
  3390. "fileId": "98F9HsCkBPR6XeiLsvXuOG",
  3391. "sync": false
  3392. },
  3393. {
  3394. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  3395. "_name": "",
  3396. "_objFlags": 0,
  3397. "node": {
  3398. "__id__": 83
  3399. },
  3400. "_enabled": true,
  3401. "imageRare": {
  3402. "__id__": 85
  3403. },
  3404. "textRere1": {
  3405. "__id__": 88
  3406. },
  3407. "_id": ""
  3408. },
  3409. {
  3410. "__type__": "cc.PrefabInfo",
  3411. "root": {
  3412. "__id__": 1
  3413. },
  3414. "asset": {
  3415. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3416. },
  3417. "fileId": "2dMjK6M2ZGqIXUNxkyoKTN",
  3418. "sync": false
  3419. },
  3420. {
  3421. "__type__": "cc.Node",
  3422. "_name": "BoxChanceItem7",
  3423. "_objFlags": 0,
  3424. "_parent": {
  3425. "__id__": 37
  3426. },
  3427. "_children": [
  3428. {
  3429. "__id__": 93
  3430. },
  3431. {
  3432. "__id__": 96
  3433. }
  3434. ],
  3435. "_active": true,
  3436. "_components": [
  3437. {
  3438. "__id__": 99
  3439. }
  3440. ],
  3441. "_prefab": {
  3442. "__id__": 100
  3443. },
  3444. "_opacity": 255,
  3445. "_color": {
  3446. "__type__": "cc.Color",
  3447. "r": 255,
  3448. "g": 255,
  3449. "b": 255,
  3450. "a": 255
  3451. },
  3452. "_contentSize": {
  3453. "__type__": "cc.Size",
  3454. "width": 100,
  3455. "height": 100
  3456. },
  3457. "_anchorPoint": {
  3458. "__type__": "cc.Vec2",
  3459. "x": 0.5,
  3460. "y": 0.5
  3461. },
  3462. "_trs": {
  3463. "__type__": "TypedArray",
  3464. "ctor": "Float64Array",
  3465. "array": [
  3466. 332.416,
  3467. 0.586,
  3468. 0,
  3469. 0,
  3470. 0,
  3471. 0,
  3472. 1,
  3473. 1,
  3474. 1,
  3475. 1
  3476. ]
  3477. },
  3478. "_eulerAngles": {
  3479. "__type__": "cc.Vec3",
  3480. "x": 0,
  3481. "y": 0,
  3482. "z": 0
  3483. },
  3484. "_skewX": 0,
  3485. "_skewY": 0,
  3486. "_is3DNode": false,
  3487. "_groupIndex": 0,
  3488. "groupIndex": 0,
  3489. "_id": ""
  3490. },
  3491. {
  3492. "__type__": "cc.Node",
  3493. "_name": "ImageRare",
  3494. "_objFlags": 0,
  3495. "_parent": {
  3496. "__id__": 92
  3497. },
  3498. "_children": [],
  3499. "_active": true,
  3500. "_components": [
  3501. {
  3502. "__id__": 94
  3503. }
  3504. ],
  3505. "_prefab": {
  3506. "__id__": 95
  3507. },
  3508. "_opacity": 255,
  3509. "_color": {
  3510. "__type__": "cc.Color",
  3511. "r": 255,
  3512. "g": 255,
  3513. "b": 255,
  3514. "a": 255
  3515. },
  3516. "_contentSize": {
  3517. "__type__": "cc.Size",
  3518. "width": 24,
  3519. "height": 24
  3520. },
  3521. "_anchorPoint": {
  3522. "__type__": "cc.Vec2",
  3523. "x": 0.5,
  3524. "y": 0.5
  3525. },
  3526. "_trs": {
  3527. "__type__": "TypedArray",
  3528. "ctor": "Float64Array",
  3529. "array": [
  3530. -19.293,
  3531. 0,
  3532. 0,
  3533. 0,
  3534. 0,
  3535. 0,
  3536. 1,
  3537. 1,
  3538. 1,
  3539. 1
  3540. ]
  3541. },
  3542. "_eulerAngles": {
  3543. "__type__": "cc.Vec3",
  3544. "x": 0,
  3545. "y": 0,
  3546. "z": 0
  3547. },
  3548. "_skewX": 0,
  3549. "_skewY": 0,
  3550. "_is3DNode": false,
  3551. "_groupIndex": 0,
  3552. "groupIndex": 0,
  3553. "_id": ""
  3554. },
  3555. {
  3556. "__type__": "cc.Sprite",
  3557. "_name": "",
  3558. "_objFlags": 0,
  3559. "node": {
  3560. "__id__": 93
  3561. },
  3562. "_enabled": true,
  3563. "_materials": [
  3564. {
  3565. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3566. }
  3567. ],
  3568. "_srcBlendFactor": 770,
  3569. "_dstBlendFactor": 771,
  3570. "_spriteFrame": {
  3571. "__uuid__": "e54527b9-6b6d-4c24-bc75-fcb0a3390b7c"
  3572. },
  3573. "_type": 0,
  3574. "_sizeMode": 1,
  3575. "_fillType": 0,
  3576. "_fillCenter": {
  3577. "__type__": "cc.Vec2",
  3578. "x": 0,
  3579. "y": 0
  3580. },
  3581. "_fillStart": 0,
  3582. "_fillRange": 0,
  3583. "_isTrimmedMode": true,
  3584. "_atlas": null,
  3585. "_id": ""
  3586. },
  3587. {
  3588. "__type__": "cc.PrefabInfo",
  3589. "root": {
  3590. "__id__": 1
  3591. },
  3592. "asset": {
  3593. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3594. },
  3595. "fileId": "0aYSG9xZtLarTP9TxNpUXI",
  3596. "sync": false
  3597. },
  3598. {
  3599. "__type__": "cc.Node",
  3600. "_name": "TextRare1",
  3601. "_objFlags": 0,
  3602. "_parent": {
  3603. "__id__": 92
  3604. },
  3605. "_children": [],
  3606. "_active": true,
  3607. "_components": [
  3608. {
  3609. "__id__": 97
  3610. }
  3611. ],
  3612. "_prefab": {
  3613. "__id__": 98
  3614. },
  3615. "_opacity": 255,
  3616. "_color": {
  3617. "__type__": "cc.Color",
  3618. "r": 213,
  3619. "g": 248,
  3620. "b": 241,
  3621. "a": 255
  3622. },
  3623. "_contentSize": {
  3624. "__type__": "cc.Size",
  3625. "width": 33.24,
  3626. "height": 50.4
  3627. },
  3628. "_anchorPoint": {
  3629. "__type__": "cc.Vec2",
  3630. "x": 0,
  3631. "y": 0.5
  3632. },
  3633. "_trs": {
  3634. "__type__": "TypedArray",
  3635. "ctor": "Float64Array",
  3636. "array": [
  3637. -3.422,
  3638. -0.778,
  3639. 0,
  3640. 0,
  3641. 0,
  3642. 0,
  3643. 1,
  3644. 1,
  3645. 1,
  3646. 1
  3647. ]
  3648. },
  3649. "_eulerAngles": {
  3650. "__type__": "cc.Vec3",
  3651. "x": 0,
  3652. "y": 0,
  3653. "z": 0
  3654. },
  3655. "_skewX": 0,
  3656. "_skewY": 0,
  3657. "_is3DNode": false,
  3658. "_groupIndex": 0,
  3659. "groupIndex": 0,
  3660. "_id": ""
  3661. },
  3662. {
  3663. "__type__": "cc.Label",
  3664. "_name": "",
  3665. "_objFlags": 0,
  3666. "node": {
  3667. "__id__": 96
  3668. },
  3669. "_enabled": true,
  3670. "_materials": [
  3671. {
  3672. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3673. }
  3674. ],
  3675. "_useOriginalSize": false,
  3676. "_string": "5%",
  3677. "_N$string": "5%",
  3678. "_fontSize": 23,
  3679. "_lineHeight": 40,
  3680. "_enableWrapText": true,
  3681. "_N$file": null,
  3682. "_isSystemFontUsed": true,
  3683. "_spacingX": 0,
  3684. "_batchAsBitmap": false,
  3685. "_styleFlags": 0,
  3686. "_underlineHeight": 0,
  3687. "_N$horizontalAlign": 1,
  3688. "_N$verticalAlign": 1,
  3689. "_N$fontFamily": "Arial",
  3690. "_N$overflow": 0,
  3691. "_N$cacheMode": 0,
  3692. "_id": ""
  3693. },
  3694. {
  3695. "__type__": "cc.PrefabInfo",
  3696. "root": {
  3697. "__id__": 1
  3698. },
  3699. "asset": {
  3700. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3701. },
  3702. "fileId": "dewnLz4G9Oga7dVWzr8sVe",
  3703. "sync": false
  3704. },
  3705. {
  3706. "__type__": "1fa5aVFhPhOxaQj9hRFKrU6",
  3707. "_name": "",
  3708. "_objFlags": 0,
  3709. "node": {
  3710. "__id__": 92
  3711. },
  3712. "_enabled": true,
  3713. "imageRare": {
  3714. "__id__": 94
  3715. },
  3716. "textRere1": {
  3717. "__id__": 97
  3718. },
  3719. "_id": ""
  3720. },
  3721. {
  3722. "__type__": "cc.PrefabInfo",
  3723. "root": {
  3724. "__id__": 1
  3725. },
  3726. "asset": {
  3727. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3728. },
  3729. "fileId": "a4/0/ZWVROBJ/N8H+UKc80",
  3730. "sync": false
  3731. },
  3732. {
  3733. "__type__": "cc.PrefabInfo",
  3734. "root": {
  3735. "__id__": 1
  3736. },
  3737. "asset": {
  3738. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3739. },
  3740. "fileId": "42hWohZ8dCSpJee9u/RC4n",
  3741. "sync": false
  3742. },
  3743. {
  3744. "__type__": "cc.Widget",
  3745. "_name": "",
  3746. "_objFlags": 0,
  3747. "node": {
  3748. "__id__": 5
  3749. },
  3750. "_enabled": true,
  3751. "alignMode": 1,
  3752. "_target": null,
  3753. "_alignFlags": 1,
  3754. "_left": 0,
  3755. "_right": 0,
  3756. "_top": 100,
  3757. "_bottom": 0,
  3758. "_verticalCenter": 0,
  3759. "_horizontalCenter": 0,
  3760. "_isAbsLeft": true,
  3761. "_isAbsRight": true,
  3762. "_isAbsTop": true,
  3763. "_isAbsBottom": true,
  3764. "_isAbsHorizontalCenter": true,
  3765. "_isAbsVerticalCenter": true,
  3766. "_originalWidth": 0,
  3767. "_originalHeight": 0,
  3768. "_id": ""
  3769. },
  3770. {
  3771. "__type__": "cc.PrefabInfo",
  3772. "root": {
  3773. "__id__": 1
  3774. },
  3775. "asset": {
  3776. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  3777. },
  3778. "fileId": "34VO2yZhhNg55cTAx1Vor5",
  3779. "sync": false
  3780. },
  3781. {
  3782. "__type__": "cc.Node",
  3783. "_name": "Bottom",
  3784. "_objFlags": 0,
  3785. "_parent": {
  3786. "__id__": 1
  3787. },
  3788. "_children": [
  3789. {
  3790. "__id__": 105
  3791. }
  3792. ],
  3793. "_active": true,
  3794. "_components": [
  3795. {
  3796. "__id__": 120
  3797. }
  3798. ],
  3799. "_prefab": {
  3800. "__id__": 121
  3801. },
  3802. "_opacity": 255,
  3803. "_color": {
  3804. "__type__": "cc.Color",
  3805. "r": 255,
  3806. "g": 255,
  3807. "b": 255,
  3808. "a": 255
  3809. },
  3810. "_contentSize": {
  3811. "__type__": "cc.Size",
  3812. "width": 810,
  3813. "height": 1002
  3814. },
  3815. "_anchorPoint": {
  3816. "__type__": "cc.Vec2",
  3817. "x": 0.5,
  3818. "y": 0
  3819. },
  3820. "_trs": {
  3821. "__type__": "TypedArray",
  3822. "ctor": "Float64Array",
  3823. "array": [
  3824. 0,
  3825. -582,
  3826. 0,
  3827. 0,
  3828. 0,
  3829. 0,
  3830. 1,
  3831. 1,
  3832. 1,
  3833. 1
  3834. ]
  3835. },
  3836. "_eulerAngles": {
  3837. "__type__": "cc.Vec3",
  3838. "x": 0,
  3839. "y": 0,
  3840. "z": 0
  3841. },
  3842. "_skewX": 0,
  3843. "_skewY": 0,
  3844. "_is3DNode": false,
  3845. "_groupIndex": 0,
  3846. "groupIndex": 0,
  3847. "_id": ""
  3848. },
  3849. {
  3850. "__type__": "cc.Node",
  3851. "_name": "ScrollView",
  3852. "_objFlags": 0,
  3853. "_parent": {
  3854. "__id__": 104
  3855. },
  3856. "_children": [
  3857. {
  3858. "__id__": 106
  3859. }
  3860. ],
  3861. "_active": true,
  3862. "_components": [
  3863. {
  3864. "__id__": 116
  3865. },
  3866. {
  3867. "__id__": 117
  3868. },
  3869. {
  3870. "__id__": 118
  3871. }
  3872. ],
  3873. "_prefab": {
  3874. "__id__": 119
  3875. },
  3876. "_opacity": 255,
  3877. "_color": {
  3878. "__type__": "cc.Color",
  3879. "r": 255,
  3880. "g": 255,
  3881. "b": 255,
  3882. "a": 255
  3883. },
  3884. "_contentSize": {
  3885. "__type__": "cc.Size",
  3886. "width": 810,
  3887. "height": 1002
  3888. },
  3889. "_anchorPoint": {
  3890. "__type__": "cc.Vec2",
  3891. "x": 0.5,
  3892. "y": 0.5
  3893. },
  3894. "_trs": {
  3895. "__type__": "TypedArray",
  3896. "ctor": "Float64Array",
  3897. "array": [
  3898. 0,
  3899. 501,
  3900. 0,
  3901. 0,
  3902. 0,
  3903. 0,
  3904. 1,
  3905. 1,
  3906. 1,
  3907. 1
  3908. ]
  3909. },
  3910. "_eulerAngles": {
  3911. "__type__": "cc.Vec3",
  3912. "x": 0,
  3913. "y": 0,
  3914. "z": 0
  3915. },
  3916. "_skewX": 0,
  3917. "_skewY": 0,
  3918. "_is3DNode": false,
  3919. "_groupIndex": 0,
  3920. "groupIndex": 0,
  3921. "_id": ""
  3922. },
  3923. {
  3924. "__type__": "cc.Node",
  3925. "_name": "view",
  3926. "_objFlags": 0,
  3927. "_parent": {
  3928. "__id__": 105
  3929. },
  3930. "_children": [
  3931. {
  3932. "__id__": 107
  3933. }
  3934. ],
  3935. "_active": true,
  3936. "_components": [
  3937. {
  3938. "__id__": 113
  3939. },
  3940. {
  3941. "__id__": 114
  3942. }
  3943. ],
  3944. "_prefab": {
  3945. "__id__": 115
  3946. },
  3947. "_opacity": 255,
  3948. "_color": {
  3949. "__type__": "cc.Color",
  3950. "r": 255,
  3951. "g": 255,
  3952. "b": 255,
  3953. "a": 255
  3954. },
  3955. "_contentSize": {
  3956. "__type__": "cc.Size",
  3957. "width": 810,
  3958. "height": 1002
  3959. },
  3960. "_anchorPoint": {
  3961. "__type__": "cc.Vec2",
  3962. "x": 0.5,
  3963. "y": 0.5
  3964. },
  3965. "_trs": {
  3966. "__type__": "TypedArray",
  3967. "ctor": "Float64Array",
  3968. "array": [
  3969. 0,
  3970. 0,
  3971. 0,
  3972. 0,
  3973. 0,
  3974. 0,
  3975. 1,
  3976. 1,
  3977. 1,
  3978. 1
  3979. ]
  3980. },
  3981. "_eulerAngles": {
  3982. "__type__": "cc.Vec3",
  3983. "x": 0,
  3984. "y": 0,
  3985. "z": 0
  3986. },
  3987. "_skewX": 0,
  3988. "_skewY": 0,
  3989. "_is3DNode": false,
  3990. "_groupIndex": 0,
  3991. "groupIndex": 0,
  3992. "_id": ""
  3993. },
  3994. {
  3995. "__type__": "cc.Node",
  3996. "_name": "content",
  3997. "_objFlags": 0,
  3998. "_parent": {
  3999. "__id__": 106
  4000. },
  4001. "_children": [
  4002. {
  4003. "__id__": 108
  4004. }
  4005. ],
  4006. "_active": true,
  4007. "_components": [
  4008. {
  4009. "__id__": 111
  4010. }
  4011. ],
  4012. "_prefab": {
  4013. "__id__": 112
  4014. },
  4015. "_opacity": 255,
  4016. "_color": {
  4017. "__type__": "cc.Color",
  4018. "r": 255,
  4019. "g": 255,
  4020. "b": 255,
  4021. "a": 255
  4022. },
  4023. "_contentSize": {
  4024. "__type__": "cc.Size",
  4025. "width": 810,
  4026. "height": 400
  4027. },
  4028. "_anchorPoint": {
  4029. "__type__": "cc.Vec2",
  4030. "x": 0.5,
  4031. "y": 1
  4032. },
  4033. "_trs": {
  4034. "__type__": "TypedArray",
  4035. "ctor": "Float64Array",
  4036. "array": [
  4037. 0,
  4038. 501,
  4039. 0,
  4040. 0,
  4041. 0,
  4042. 0,
  4043. 1,
  4044. 1,
  4045. 1,
  4046. 1
  4047. ]
  4048. },
  4049. "_eulerAngles": {
  4050. "__type__": "cc.Vec3",
  4051. "x": 0,
  4052. "y": 0,
  4053. "z": 0
  4054. },
  4055. "_skewX": 0,
  4056. "_skewY": 0,
  4057. "_is3DNode": false,
  4058. "_groupIndex": 0,
  4059. "groupIndex": 0,
  4060. "_id": ""
  4061. },
  4062. {
  4063. "__type__": "cc.Node",
  4064. "_name": "item",
  4065. "_objFlags": 0,
  4066. "_parent": {
  4067. "__id__": 107
  4068. },
  4069. "_children": [],
  4070. "_active": true,
  4071. "_components": [
  4072. {
  4073. "__id__": 109
  4074. }
  4075. ],
  4076. "_prefab": {
  4077. "__id__": 110
  4078. },
  4079. "_opacity": 255,
  4080. "_color": {
  4081. "__type__": "cc.Color",
  4082. "r": 0,
  4083. "g": 0,
  4084. "b": 0,
  4085. "a": 255
  4086. },
  4087. "_contentSize": {
  4088. "__type__": "cc.Size",
  4089. "width": 131.33,
  4090. "height": 65.2
  4091. },
  4092. "_anchorPoint": {
  4093. "__type__": "cc.Vec2",
  4094. "x": 0,
  4095. "y": 1
  4096. },
  4097. "_trs": {
  4098. "__type__": "TypedArray",
  4099. "ctor": "Float64Array",
  4100. "array": [
  4101. -102.19999694824219,
  4102. -10.149999618530273,
  4103. 0,
  4104. 0,
  4105. 0,
  4106. 0,
  4107. 1,
  4108. 1,
  4109. 1,
  4110. 1
  4111. ]
  4112. },
  4113. "_eulerAngles": {
  4114. "__type__": "cc.Vec3",
  4115. "x": 0,
  4116. "y": 0,
  4117. "z": 0
  4118. },
  4119. "_skewX": 0,
  4120. "_skewY": 0,
  4121. "_is3DNode": false,
  4122. "_groupIndex": 0,
  4123. "groupIndex": 0,
  4124. "_id": ""
  4125. },
  4126. {
  4127. "__type__": "cc.Label",
  4128. "_name": "",
  4129. "_objFlags": 0,
  4130. "node": {
  4131. "__id__": 108
  4132. },
  4133. "_enabled": true,
  4134. "_materials": [
  4135. {
  4136. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4137. }
  4138. ],
  4139. "_useOriginalSize": false,
  4140. "_string": "ScrollView content\n\n",
  4141. "_N$string": "ScrollView content\n\n",
  4142. "_fontSize": 16,
  4143. "_lineHeight": 20,
  4144. "_enableWrapText": true,
  4145. "_N$file": null,
  4146. "_isSystemFontUsed": true,
  4147. "_spacingX": 0,
  4148. "_batchAsBitmap": false,
  4149. "_styleFlags": 0,
  4150. "_underlineHeight": 0,
  4151. "_N$horizontalAlign": 1,
  4152. "_N$verticalAlign": 0,
  4153. "_N$fontFamily": "Arial",
  4154. "_N$overflow": 0,
  4155. "_N$cacheMode": 0,
  4156. "_id": ""
  4157. },
  4158. {
  4159. "__type__": "cc.PrefabInfo",
  4160. "root": {
  4161. "__id__": 1
  4162. },
  4163. "asset": {
  4164. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  4165. },
  4166. "fileId": "0fJ+SKzhtMda2dPMWVblSA",
  4167. "sync": false
  4168. },
  4169. {
  4170. "__type__": "cc.Widget",
  4171. "_name": "",
  4172. "_objFlags": 0,
  4173. "node": {
  4174. "__id__": 107
  4175. },
  4176. "_enabled": true,
  4177. "alignMode": 1,
  4178. "_target": null,
  4179. "_alignFlags": 41,
  4180. "_left": 0,
  4181. "_right": 0,
  4182. "_top": 0,
  4183. "_bottom": 0,
  4184. "_verticalCenter": 0,
  4185. "_horizontalCenter": 0,
  4186. "_isAbsLeft": true,
  4187. "_isAbsRight": true,
  4188. "_isAbsTop": true,
  4189. "_isAbsBottom": true,
  4190. "_isAbsHorizontalCenter": true,
  4191. "_isAbsVerticalCenter": true,
  4192. "_originalWidth": 220,
  4193. "_originalHeight": 0,
  4194. "_id": ""
  4195. },
  4196. {
  4197. "__type__": "cc.PrefabInfo",
  4198. "root": {
  4199. "__id__": 1
  4200. },
  4201. "asset": {
  4202. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  4203. },
  4204. "fileId": "afe5hK05lMpo+9yC0nW3yv",
  4205. "sync": false
  4206. },
  4207. {
  4208. "__type__": "cc.Mask",
  4209. "_name": "",
  4210. "_objFlags": 0,
  4211. "node": {
  4212. "__id__": 106
  4213. },
  4214. "_enabled": true,
  4215. "_materials": [
  4216. {
  4217. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4218. }
  4219. ],
  4220. "_spriteFrame": null,
  4221. "_type": 0,
  4222. "_segments": 64,
  4223. "_N$alphaThreshold": 0,
  4224. "_N$inverted": false,
  4225. "_id": ""
  4226. },
  4227. {
  4228. "__type__": "cc.Widget",
  4229. "_name": "",
  4230. "_objFlags": 0,
  4231. "node": {
  4232. "__id__": 106
  4233. },
  4234. "_enabled": true,
  4235. "alignMode": 1,
  4236. "_target": null,
  4237. "_alignFlags": 45,
  4238. "_left": 0,
  4239. "_right": 0,
  4240. "_top": 0,
  4241. "_bottom": 0,
  4242. "_verticalCenter": 0,
  4243. "_horizontalCenter": 0,
  4244. "_isAbsLeft": true,
  4245. "_isAbsRight": true,
  4246. "_isAbsTop": true,
  4247. "_isAbsBottom": true,
  4248. "_isAbsHorizontalCenter": true,
  4249. "_isAbsVerticalCenter": true,
  4250. "_originalWidth": 240,
  4251. "_originalHeight": 250,
  4252. "_id": ""
  4253. },
  4254. {
  4255. "__type__": "cc.PrefabInfo",
  4256. "root": {
  4257. "__id__": 1
  4258. },
  4259. "asset": {
  4260. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  4261. },
  4262. "fileId": "16oDYvktlI7Knp+VXpojkw",
  4263. "sync": false
  4264. },
  4265. {
  4266. "__type__": "cc.Sprite",
  4267. "_name": "",
  4268. "_objFlags": 0,
  4269. "node": {
  4270. "__id__": 105
  4271. },
  4272. "_enabled": true,
  4273. "_materials": [
  4274. {
  4275. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4276. }
  4277. ],
  4278. "_srcBlendFactor": 770,
  4279. "_dstBlendFactor": 771,
  4280. "_spriteFrame": null,
  4281. "_type": 1,
  4282. "_sizeMode": 0,
  4283. "_fillType": 0,
  4284. "_fillCenter": {
  4285. "__type__": "cc.Vec2",
  4286. "x": 0,
  4287. "y": 0
  4288. },
  4289. "_fillStart": 0,
  4290. "_fillRange": 0,
  4291. "_isTrimmedMode": true,
  4292. "_atlas": null,
  4293. "_id": ""
  4294. },
  4295. {
  4296. "__type__": "cc.ScrollView",
  4297. "_name": "",
  4298. "_objFlags": 0,
  4299. "node": {
  4300. "__id__": 105
  4301. },
  4302. "_enabled": true,
  4303. "horizontal": false,
  4304. "vertical": true,
  4305. "inertia": true,
  4306. "brake": 0.75,
  4307. "elastic": true,
  4308. "bounceDuration": 0.23,
  4309. "scrollEvents": [],
  4310. "cancelInnerEvents": true,
  4311. "_N$content": {
  4312. "__id__": 107
  4313. },
  4314. "content": {
  4315. "__id__": 107
  4316. },
  4317. "_N$horizontalScrollBar": null,
  4318. "_N$verticalScrollBar": null,
  4319. "_id": ""
  4320. },
  4321. {
  4322. "__type__": "cc.Widget",
  4323. "_name": "",
  4324. "_objFlags": 0,
  4325. "node": {
  4326. "__id__": 105
  4327. },
  4328. "_enabled": true,
  4329. "alignMode": 1,
  4330. "_target": null,
  4331. "_alignFlags": 45,
  4332. "_left": 0,
  4333. "_right": 0,
  4334. "_top": 0,
  4335. "_bottom": 0,
  4336. "_verticalCenter": 0,
  4337. "_horizontalCenter": 0,
  4338. "_isAbsLeft": true,
  4339. "_isAbsRight": true,
  4340. "_isAbsTop": true,
  4341. "_isAbsBottom": true,
  4342. "_isAbsHorizontalCenter": true,
  4343. "_isAbsVerticalCenter": true,
  4344. "_originalWidth": 240,
  4345. "_originalHeight": 250,
  4346. "_id": ""
  4347. },
  4348. {
  4349. "__type__": "cc.PrefabInfo",
  4350. "root": {
  4351. "__id__": 1
  4352. },
  4353. "asset": {
  4354. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  4355. },
  4356. "fileId": "f2q1/MgSxGrJtydLeLCBWP",
  4357. "sync": false
  4358. },
  4359. {
  4360. "__type__": "cc.Widget",
  4361. "_name": "",
  4362. "_objFlags": 0,
  4363. "node": {
  4364. "__id__": 104
  4365. },
  4366. "_enabled": true,
  4367. "alignMode": 1,
  4368. "_target": null,
  4369. "_alignFlags": 5,
  4370. "_left": 0,
  4371. "_right": 0,
  4372. "_top": 300,
  4373. "_bottom": 138,
  4374. "_verticalCenter": 0,
  4375. "_horizontalCenter": 0,
  4376. "_isAbsLeft": true,
  4377. "_isAbsRight": true,
  4378. "_isAbsTop": true,
  4379. "_isAbsBottom": true,
  4380. "_isAbsHorizontalCenter": true,
  4381. "_isAbsVerticalCenter": true,
  4382. "_originalWidth": 0,
  4383. "_originalHeight": 0,
  4384. "_id": ""
  4385. },
  4386. {
  4387. "__type__": "cc.PrefabInfo",
  4388. "root": {
  4389. "__id__": 1
  4390. },
  4391. "asset": {
  4392. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  4393. },
  4394. "fileId": "2aEVXPDJRDRa9Z0VXXv0ww",
  4395. "sync": false
  4396. },
  4397. {
  4398. "__type__": "d9d76Ag+vtEiKQviijW9rr0",
  4399. "_name": "",
  4400. "_objFlags": 0,
  4401. "node": {
  4402. "__id__": 1
  4403. },
  4404. "_enabled": true,
  4405. "_alertList": [],
  4406. "_id": ""
  4407. },
  4408. {
  4409. "__type__": "cc.Widget",
  4410. "_name": "",
  4411. "_objFlags": 0,
  4412. "node": {
  4413. "__id__": 1
  4414. },
  4415. "_enabled": true,
  4416. "alignMode": 1,
  4417. "_target": null,
  4418. "_alignFlags": 45,
  4419. "_left": 0,
  4420. "_right": 0,
  4421. "_top": 0,
  4422. "_bottom": 0,
  4423. "_verticalCenter": 0,
  4424. "_horizontalCenter": 0,
  4425. "_isAbsLeft": true,
  4426. "_isAbsRight": true,
  4427. "_isAbsTop": true,
  4428. "_isAbsBottom": true,
  4429. "_isAbsHorizontalCenter": true,
  4430. "_isAbsVerticalCenter": true,
  4431. "_originalWidth": 0,
  4432. "_originalHeight": 0,
  4433. "_id": ""
  4434. },
  4435. {
  4436. "__type__": "cc.PrefabInfo",
  4437. "root": {
  4438. "__id__": 1
  4439. },
  4440. "asset": {
  4441. "__uuid__": "b402f307-247f-4f93-87b8-9b263968e09d"
  4442. },
  4443. "fileId": "544xPAly1JZ5+bwe2H66tA",
  4444. "sync": false
  4445. }
  4446. ]