moreGameNode.prefab 80 KB

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