beibao.prefab 76 KB

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