Store.prefab 74 KB

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