page_start.prefab 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "page_start",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "page_start",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 80
  26. },
  27. {
  28. "__id__": 88
  29. },
  30. {
  31. "__id__": 142
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 157
  38. },
  39. {
  40. "__id__": 159
  41. },
  42. {
  43. "__id__": 161
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 163
  48. },
  49. "_lpos": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "_lrot": {
  56. "__type__": "cc.Quat",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0,
  60. "w": 1
  61. },
  62. "_lscale": {
  63. "__type__": "cc.Vec3",
  64. "x": 1,
  65. "y": 1,
  66. "z": 1
  67. },
  68. "_mobility": 0,
  69. "_layer": 33554432,
  70. "_euler": {
  71. "__type__": "cc.Vec3",
  72. "x": 0,
  73. "y": 0,
  74. "z": 0
  75. },
  76. "_id": ""
  77. },
  78. {
  79. "__type__": "cc.Node",
  80. "_name": "bg",
  81. "_objFlags": 0,
  82. "__editorExtras__": {},
  83. "_parent": {
  84. "__id__": 1
  85. },
  86. "_children": [
  87. {
  88. "__id__": 3
  89. },
  90. {
  91. "__id__": 14
  92. },
  93. {
  94. "__id__": 20
  95. },
  96. {
  97. "__id__": 28
  98. },
  99. {
  100. "__id__": 39
  101. },
  102. {
  103. "__id__": 56
  104. }
  105. ],
  106. "_active": true,
  107. "_components": [
  108. {
  109. "__id__": 73
  110. },
  111. {
  112. "__id__": 75
  113. },
  114. {
  115. "__id__": 77
  116. }
  117. ],
  118. "_prefab": {
  119. "__id__": 79
  120. },
  121. "_lpos": {
  122. "__type__": "cc.Vec3",
  123. "x": 0,
  124. "y": 0,
  125. "z": 0
  126. },
  127. "_lrot": {
  128. "__type__": "cc.Quat",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0,
  132. "w": 1
  133. },
  134. "_lscale": {
  135. "__type__": "cc.Vec3",
  136. "x": 1,
  137. "y": 1,
  138. "z": 1
  139. },
  140. "_mobility": 0,
  141. "_layer": 33554432,
  142. "_euler": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Node",
  152. "_name": "title",
  153. "_objFlags": 0,
  154. "__editorExtras__": {},
  155. "_parent": {
  156. "__id__": 2
  157. },
  158. "_children": [],
  159. "_active": true,
  160. "_components": [
  161. {
  162. "__id__": 4
  163. },
  164. {
  165. "__id__": 6
  166. },
  167. {
  168. "__id__": 8
  169. },
  170. {
  171. "__id__": 10
  172. }
  173. ],
  174. "_prefab": {
  175. "__id__": 13
  176. },
  177. "_lpos": {
  178. "__type__": "cc.Vec3",
  179. "x": 0,
  180. "y": 404.717,
  181. "z": 0
  182. },
  183. "_lrot": {
  184. "__type__": "cc.Quat",
  185. "x": 0,
  186. "y": 0,
  187. "z": 0,
  188. "w": 1
  189. },
  190. "_lscale": {
  191. "__type__": "cc.Vec3",
  192. "x": 1,
  193. "y": 1,
  194. "z": 1
  195. },
  196. "_mobility": 0,
  197. "_layer": 33554432,
  198. "_euler": {
  199. "__type__": "cc.Vec3",
  200. "x": 0,
  201. "y": 0,
  202. "z": 0
  203. },
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.UITransform",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "__editorExtras__": {},
  211. "node": {
  212. "__id__": 3
  213. },
  214. "_enabled": true,
  215. "__prefab": {
  216. "__id__": 5
  217. },
  218. "_contentSize": {
  219. "__type__": "cc.Size",
  220. "width": 621,
  221. "height": 177
  222. },
  223. "_anchorPoint": {
  224. "__type__": "cc.Vec2",
  225. "x": 0.5,
  226. "y": 0.5
  227. },
  228. "_id": ""
  229. },
  230. {
  231. "__type__": "cc.CompPrefabInfo",
  232. "fileId": "adQGl3mqpMo4rODp6v9kC+"
  233. },
  234. {
  235. "__type__": "cc.Sprite",
  236. "_name": "",
  237. "_objFlags": 0,
  238. "__editorExtras__": {},
  239. "node": {
  240. "__id__": 3
  241. },
  242. "_enabled": true,
  243. "__prefab": {
  244. "__id__": 7
  245. },
  246. "_customMaterial": null,
  247. "_srcBlendFactor": 2,
  248. "_dstBlendFactor": 4,
  249. "_color": {
  250. "__type__": "cc.Color",
  251. "r": 255,
  252. "g": 255,
  253. "b": 255,
  254. "a": 255
  255. },
  256. "_spriteFrame": {
  257. "__uuid__": "fdccf798-0b59-49e1-885f-ae32ac4de4ed@f9941",
  258. "__expectedType__": "cc.SpriteFrame"
  259. },
  260. "_type": 0,
  261. "_fillType": 0,
  262. "_sizeMode": 2,
  263. "_fillCenter": {
  264. "__type__": "cc.Vec2",
  265. "x": 0,
  266. "y": 0
  267. },
  268. "_fillStart": 0,
  269. "_fillRange": 0,
  270. "_isTrimmedMode": true,
  271. "_useGrayscale": false,
  272. "_atlas": null,
  273. "_id": ""
  274. },
  275. {
  276. "__type__": "cc.CompPrefabInfo",
  277. "fileId": "6fwCzCL4RJSLUlWus7KKNm"
  278. },
  279. {
  280. "__type__": "cc.Widget",
  281. "_name": "",
  282. "_objFlags": 0,
  283. "__editorExtras__": {},
  284. "node": {
  285. "__id__": 3
  286. },
  287. "_enabled": true,
  288. "__prefab": {
  289. "__id__": 9
  290. },
  291. "_alignFlags": 1,
  292. "_target": null,
  293. "_left": 0,
  294. "_right": 75.5,
  295. "_top": 146.78300000000002,
  296. "_bottom": 0,
  297. "_horizontalCenter": 0,
  298. "_verticalCenter": 0,
  299. "_isAbsLeft": true,
  300. "_isAbsRight": true,
  301. "_isAbsTop": true,
  302. "_isAbsBottom": true,
  303. "_isAbsHorizontalCenter": true,
  304. "_isAbsVerticalCenter": true,
  305. "_originalWidth": 0,
  306. "_originalHeight": 0,
  307. "_alignMode": 2,
  308. "_lockFlags": 0,
  309. "_id": ""
  310. },
  311. {
  312. "__type__": "cc.CompPrefabInfo",
  313. "fileId": "9a+gbDRk9MnZ+hdX/0tzPB"
  314. },
  315. {
  316. "__type__": "cc.Button",
  317. "_name": "",
  318. "_objFlags": 0,
  319. "__editorExtras__": {},
  320. "node": {
  321. "__id__": 3
  322. },
  323. "_enabled": true,
  324. "__prefab": {
  325. "__id__": 11
  326. },
  327. "clickEvents": [
  328. {
  329. "__id__": 12
  330. }
  331. ],
  332. "_interactable": true,
  333. "_transition": 0,
  334. "_normalColor": {
  335. "__type__": "cc.Color",
  336. "r": 255,
  337. "g": 255,
  338. "b": 255,
  339. "a": 255
  340. },
  341. "_hoverColor": {
  342. "__type__": "cc.Color",
  343. "r": 211,
  344. "g": 211,
  345. "b": 211,
  346. "a": 255
  347. },
  348. "_pressedColor": {
  349. "__type__": "cc.Color",
  350. "r": 255,
  351. "g": 255,
  352. "b": 255,
  353. "a": 255
  354. },
  355. "_disabledColor": {
  356. "__type__": "cc.Color",
  357. "r": 124,
  358. "g": 124,
  359. "b": 124,
  360. "a": 255
  361. },
  362. "_normalSprite": null,
  363. "_hoverSprite": null,
  364. "_pressedSprite": null,
  365. "_disabledSprite": null,
  366. "_duration": 0.1,
  367. "_zoomScale": 1.2,
  368. "_target": null,
  369. "_id": ""
  370. },
  371. {
  372. "__type__": "cc.CompPrefabInfo",
  373. "fileId": "d2eEJXGbtBcoMzPAzKjg52"
  374. },
  375. {
  376. "__type__": "cc.ClickEvent",
  377. "target": {
  378. "__id__": 1
  379. },
  380. "component": "",
  381. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  382. "handler": "OnClickGM",
  383. "customEventData": ""
  384. },
  385. {
  386. "__type__": "cc.PrefabInfo",
  387. "root": {
  388. "__id__": 1
  389. },
  390. "asset": {
  391. "__id__": 0
  392. },
  393. "fileId": "7aeD8x76pMb6ibUBjbMJ4m",
  394. "instance": null,
  395. "targetOverrides": null,
  396. "nestedPrefabInstanceRoots": null
  397. },
  398. {
  399. "__type__": "cc.Node",
  400. "_name": "hecha",
  401. "_objFlags": 0,
  402. "__editorExtras__": {},
  403. "_parent": {
  404. "__id__": 2
  405. },
  406. "_children": [],
  407. "_active": true,
  408. "_components": [
  409. {
  410. "__id__": 15
  411. },
  412. {
  413. "__id__": 17
  414. }
  415. ],
  416. "_prefab": {
  417. "__id__": 19
  418. },
  419. "_lpos": {
  420. "__type__": "cc.Vec3",
  421. "x": 40.176,
  422. "y": -226.619,
  423. "z": 0
  424. },
  425. "_lrot": {
  426. "__type__": "cc.Quat",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0,
  430. "w": 1
  431. },
  432. "_lscale": {
  433. "__type__": "cc.Vec3",
  434. "x": 0.5,
  435. "y": 0.5,
  436. "z": 1
  437. },
  438. "_mobility": 0,
  439. "_layer": 33554432,
  440. "_euler": {
  441. "__type__": "cc.Vec3",
  442. "x": 0,
  443. "y": 0,
  444. "z": 0
  445. },
  446. "_id": ""
  447. },
  448. {
  449. "__type__": "cc.UITransform",
  450. "_name": "",
  451. "_objFlags": 0,
  452. "__editorExtras__": {},
  453. "node": {
  454. "__id__": 14
  455. },
  456. "_enabled": true,
  457. "__prefab": {
  458. "__id__": 16
  459. },
  460. "_contentSize": {
  461. "__type__": "cc.Size",
  462. "width": 1083,
  463. "height": 1162
  464. },
  465. "_anchorPoint": {
  466. "__type__": "cc.Vec2",
  467. "x": 0.5164912145443791,
  468. "y": 0.15754733848900065
  469. },
  470. "_id": ""
  471. },
  472. {
  473. "__type__": "cc.CompPrefabInfo",
  474. "fileId": "e1rewMrORCi6KSD8xpJYct"
  475. },
  476. {
  477. "__type__": "sp.Skeleton",
  478. "_name": "",
  479. "_objFlags": 0,
  480. "__editorExtras__": {},
  481. "node": {
  482. "__id__": 14
  483. },
  484. "_enabled": true,
  485. "__prefab": {
  486. "__id__": 18
  487. },
  488. "_customMaterial": null,
  489. "_srcBlendFactor": 2,
  490. "_dstBlendFactor": 4,
  491. "_color": {
  492. "__type__": "cc.Color",
  493. "r": 255,
  494. "g": 255,
  495. "b": 255,
  496. "a": 255
  497. },
  498. "_skeletonData": {
  499. "__uuid__": "3b3ca080-a2c8-4758-8c64-840f219c3bbd",
  500. "__expectedType__": "sp.SkeletonData"
  501. },
  502. "defaultSkin": "default",
  503. "defaultAnimation": "loop2",
  504. "_premultipliedAlpha": true,
  505. "_timeScale": 1,
  506. "_preCacheMode": 0,
  507. "_cacheMode": 0,
  508. "_sockets": [],
  509. "_useTint": false,
  510. "_debugMesh": false,
  511. "_debugBones": false,
  512. "_debugSlots": false,
  513. "_enableBatch": false,
  514. "loop": true,
  515. "_id": ""
  516. },
  517. {
  518. "__type__": "cc.CompPrefabInfo",
  519. "fileId": "d6Q4mzVRFDTKmPM0EnDsXV"
  520. },
  521. {
  522. "__type__": "cc.PrefabInfo",
  523. "root": {
  524. "__id__": 1
  525. },
  526. "asset": {
  527. "__id__": 0
  528. },
  529. "fileId": "5f5kTJHiREKa3E68GJcRHy",
  530. "instance": null,
  531. "targetOverrides": null,
  532. "nestedPrefabInstanceRoots": null
  533. },
  534. {
  535. "__type__": "cc.Node",
  536. "_name": "jiankang",
  537. "_objFlags": 0,
  538. "__editorExtras__": {},
  539. "_parent": {
  540. "__id__": 2
  541. },
  542. "_children": [],
  543. "_active": true,
  544. "_components": [
  545. {
  546. "__id__": 21
  547. },
  548. {
  549. "__id__": 23
  550. },
  551. {
  552. "__id__": 25
  553. }
  554. ],
  555. "_prefab": {
  556. "__id__": 27
  557. },
  558. "_lpos": {
  559. "__type__": "cc.Vec3",
  560. "x": 0,
  561. "y": -575.82,
  562. "z": 0
  563. },
  564. "_lrot": {
  565. "__type__": "cc.Quat",
  566. "x": 0,
  567. "y": 0,
  568. "z": 0,
  569. "w": 1
  570. },
  571. "_lscale": {
  572. "__type__": "cc.Vec3",
  573. "x": 1,
  574. "y": 1,
  575. "z": 1
  576. },
  577. "_mobility": 0,
  578. "_layer": 33554432,
  579. "_euler": {
  580. "__type__": "cc.Vec3",
  581. "x": 0,
  582. "y": 0,
  583. "z": 0
  584. },
  585. "_id": ""
  586. },
  587. {
  588. "__type__": "cc.UITransform",
  589. "_name": "",
  590. "_objFlags": 0,
  591. "__editorExtras__": {},
  592. "node": {
  593. "__id__": 20
  594. },
  595. "_enabled": true,
  596. "__prefab": {
  597. "__id__": 22
  598. },
  599. "_contentSize": {
  600. "__type__": "cc.Size",
  601. "width": 595,
  602. "height": 106
  603. },
  604. "_anchorPoint": {
  605. "__type__": "cc.Vec2",
  606. "x": 0.5,
  607. "y": 0.5
  608. },
  609. "_id": ""
  610. },
  611. {
  612. "__type__": "cc.CompPrefabInfo",
  613. "fileId": "f624TCbepC8JijQLx9+D5t"
  614. },
  615. {
  616. "__type__": "cc.Sprite",
  617. "_name": "",
  618. "_objFlags": 0,
  619. "__editorExtras__": {},
  620. "node": {
  621. "__id__": 20
  622. },
  623. "_enabled": true,
  624. "__prefab": {
  625. "__id__": 24
  626. },
  627. "_customMaterial": null,
  628. "_srcBlendFactor": 2,
  629. "_dstBlendFactor": 4,
  630. "_color": {
  631. "__type__": "cc.Color",
  632. "r": 255,
  633. "g": 255,
  634. "b": 255,
  635. "a": 255
  636. },
  637. "_spriteFrame": {
  638. "__uuid__": "aac48152-c73b-4da7-9249-47f1e7fc77da@f9941",
  639. "__expectedType__": "cc.SpriteFrame"
  640. },
  641. "_type": 0,
  642. "_fillType": 0,
  643. "_sizeMode": 1,
  644. "_fillCenter": {
  645. "__type__": "cc.Vec2",
  646. "x": 0,
  647. "y": 0
  648. },
  649. "_fillStart": 0,
  650. "_fillRange": 0,
  651. "_isTrimmedMode": true,
  652. "_useGrayscale": false,
  653. "_atlas": null,
  654. "_id": ""
  655. },
  656. {
  657. "__type__": "cc.CompPrefabInfo",
  658. "fileId": "98MfgCisRAo7frT/jVeTmb"
  659. },
  660. {
  661. "__type__": "cc.Widget",
  662. "_name": "",
  663. "_objFlags": 0,
  664. "__editorExtras__": {},
  665. "node": {
  666. "__id__": 20
  667. },
  668. "_enabled": true,
  669. "__prefab": {
  670. "__id__": 26
  671. },
  672. "_alignFlags": 4,
  673. "_target": null,
  674. "_left": 0,
  675. "_right": 0,
  676. "_top": 0,
  677. "_bottom": 11.17999999999995,
  678. "_horizontalCenter": 0,
  679. "_verticalCenter": 0,
  680. "_isAbsLeft": true,
  681. "_isAbsRight": true,
  682. "_isAbsTop": true,
  683. "_isAbsBottom": true,
  684. "_isAbsHorizontalCenter": true,
  685. "_isAbsVerticalCenter": true,
  686. "_originalWidth": 0,
  687. "_originalHeight": 0,
  688. "_alignMode": 2,
  689. "_lockFlags": 0,
  690. "_id": ""
  691. },
  692. {
  693. "__type__": "cc.CompPrefabInfo",
  694. "fileId": "2bOzQmFu1Bv6ZIx9bm9rPg"
  695. },
  696. {
  697. "__type__": "cc.PrefabInfo",
  698. "root": {
  699. "__id__": 1
  700. },
  701. "asset": {
  702. "__id__": 0
  703. },
  704. "fileId": "44CTWWAQBOUK0+rvEM8Swq",
  705. "instance": null,
  706. "targetOverrides": null,
  707. "nestedPrefabInstanceRoots": null
  708. },
  709. {
  710. "__type__": "cc.Node",
  711. "_name": "btn_start",
  712. "_objFlags": 0,
  713. "__editorExtras__": {},
  714. "_parent": {
  715. "__id__": 2
  716. },
  717. "_children": [],
  718. "_active": false,
  719. "_components": [
  720. {
  721. "__id__": 29
  722. },
  723. {
  724. "__id__": 31
  725. },
  726. {
  727. "__id__": 33
  728. },
  729. {
  730. "__id__": 35
  731. }
  732. ],
  733. "_prefab": {
  734. "__id__": 38
  735. },
  736. "_lpos": {
  737. "__type__": "cc.Vec3",
  738. "x": 0,
  739. "y": -380,
  740. "z": 0
  741. },
  742. "_lrot": {
  743. "__type__": "cc.Quat",
  744. "x": 0,
  745. "y": 0,
  746. "z": 0,
  747. "w": 1
  748. },
  749. "_lscale": {
  750. "__type__": "cc.Vec3",
  751. "x": 1,
  752. "y": 1,
  753. "z": 1
  754. },
  755. "_mobility": 0,
  756. "_layer": 33554432,
  757. "_euler": {
  758. "__type__": "cc.Vec3",
  759. "x": 0,
  760. "y": 0,
  761. "z": 0
  762. },
  763. "_id": ""
  764. },
  765. {
  766. "__type__": "cc.UITransform",
  767. "_name": "",
  768. "_objFlags": 0,
  769. "__editorExtras__": {},
  770. "node": {
  771. "__id__": 28
  772. },
  773. "_enabled": true,
  774. "__prefab": {
  775. "__id__": 30
  776. },
  777. "_contentSize": {
  778. "__type__": "cc.Size",
  779. "width": 338,
  780. "height": 128
  781. },
  782. "_anchorPoint": {
  783. "__type__": "cc.Vec2",
  784. "x": 0.5,
  785. "y": 0.5
  786. },
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.CompPrefabInfo",
  791. "fileId": "d7jVYENhZLqrRcek3sJbe5"
  792. },
  793. {
  794. "__type__": "cc.Sprite",
  795. "_name": "",
  796. "_objFlags": 0,
  797. "__editorExtras__": {},
  798. "node": {
  799. "__id__": 28
  800. },
  801. "_enabled": true,
  802. "__prefab": {
  803. "__id__": 32
  804. },
  805. "_customMaterial": null,
  806. "_srcBlendFactor": 2,
  807. "_dstBlendFactor": 4,
  808. "_color": {
  809. "__type__": "cc.Color",
  810. "r": 255,
  811. "g": 255,
  812. "b": 255,
  813. "a": 255
  814. },
  815. "_spriteFrame": {
  816. "__uuid__": "bfbded4c-e110-4f52-8bb7-9d0124abdc80@f9941",
  817. "__expectedType__": "cc.SpriteFrame"
  818. },
  819. "_type": 0,
  820. "_fillType": 0,
  821. "_sizeMode": 1,
  822. "_fillCenter": {
  823. "__type__": "cc.Vec2",
  824. "x": 0,
  825. "y": 0
  826. },
  827. "_fillStart": 0,
  828. "_fillRange": 0,
  829. "_isTrimmedMode": true,
  830. "_useGrayscale": false,
  831. "_atlas": null,
  832. "_id": ""
  833. },
  834. {
  835. "__type__": "cc.CompPrefabInfo",
  836. "fileId": "784GmG97NPA5zXBfUq+ZLl"
  837. },
  838. {
  839. "__type__": "cc.Widget",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "__editorExtras__": {},
  843. "node": {
  844. "__id__": 28
  845. },
  846. "_enabled": true,
  847. "__prefab": {
  848. "__id__": 34
  849. },
  850. "_alignFlags": 4,
  851. "_target": null,
  852. "_left": 0,
  853. "_right": 0,
  854. "_top": 0,
  855. "_bottom": 196,
  856. "_horizontalCenter": 0,
  857. "_verticalCenter": 0,
  858. "_isAbsLeft": true,
  859. "_isAbsRight": true,
  860. "_isAbsTop": true,
  861. "_isAbsBottom": true,
  862. "_isAbsHorizontalCenter": true,
  863. "_isAbsVerticalCenter": true,
  864. "_originalWidth": 0,
  865. "_originalHeight": 0,
  866. "_alignMode": 2,
  867. "_lockFlags": 0,
  868. "_id": ""
  869. },
  870. {
  871. "__type__": "cc.CompPrefabInfo",
  872. "fileId": "604Ts90/JEuIZtUVsvEtHd"
  873. },
  874. {
  875. "__type__": "cc.Button",
  876. "_name": "",
  877. "_objFlags": 0,
  878. "__editorExtras__": {},
  879. "node": {
  880. "__id__": 28
  881. },
  882. "_enabled": true,
  883. "__prefab": {
  884. "__id__": 36
  885. },
  886. "clickEvents": [
  887. {
  888. "__id__": 37
  889. }
  890. ],
  891. "_interactable": true,
  892. "_transition": 3,
  893. "_normalColor": {
  894. "__type__": "cc.Color",
  895. "r": 255,
  896. "g": 255,
  897. "b": 255,
  898. "a": 255
  899. },
  900. "_hoverColor": {
  901. "__type__": "cc.Color",
  902. "r": 211,
  903. "g": 211,
  904. "b": 211,
  905. "a": 255
  906. },
  907. "_pressedColor": {
  908. "__type__": "cc.Color",
  909. "r": 255,
  910. "g": 255,
  911. "b": 255,
  912. "a": 255
  913. },
  914. "_disabledColor": {
  915. "__type__": "cc.Color",
  916. "r": 124,
  917. "g": 124,
  918. "b": 124,
  919. "a": 255
  920. },
  921. "_normalSprite": null,
  922. "_hoverSprite": null,
  923. "_pressedSprite": null,
  924. "_disabledSprite": null,
  925. "_duration": 0.1,
  926. "_zoomScale": 1.2,
  927. "_target": null,
  928. "_id": ""
  929. },
  930. {
  931. "__type__": "cc.CompPrefabInfo",
  932. "fileId": "b8BxeoaBxFLpLrj5g6Hlkp"
  933. },
  934. {
  935. "__type__": "cc.ClickEvent",
  936. "target": {
  937. "__id__": 1
  938. },
  939. "component": "",
  940. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  941. "handler": "OnClickStart",
  942. "customEventData": ""
  943. },
  944. {
  945. "__type__": "cc.PrefabInfo",
  946. "root": {
  947. "__id__": 1
  948. },
  949. "asset": {
  950. "__id__": 0
  951. },
  952. "fileId": "aeb0EvE3FANJ9/FHf3/Vlh",
  953. "instance": null,
  954. "targetOverrides": null,
  955. "nestedPrefabInstanceRoots": null
  956. },
  957. {
  958. "__type__": "cc.Node",
  959. "_name": "btn_cebian",
  960. "_objFlags": 0,
  961. "__editorExtras__": {},
  962. "_parent": {
  963. "__id__": 2
  964. },
  965. "_children": [
  966. {
  967. "__id__": 40
  968. }
  969. ],
  970. "_active": true,
  971. "_components": [
  972. {
  973. "__id__": 46
  974. },
  975. {
  976. "__id__": 48
  977. },
  978. {
  979. "__id__": 50
  980. },
  981. {
  982. "__id__": 52
  983. }
  984. ],
  985. "_prefab": {
  986. "__id__": 55
  987. },
  988. "_lpos": {
  989. "__type__": "cc.Vec3",
  990. "x": -288.624,
  991. "y": -49.299,
  992. "z": 0
  993. },
  994. "_lrot": {
  995. "__type__": "cc.Quat",
  996. "x": 0,
  997. "y": 0,
  998. "z": 0,
  999. "w": 1
  1000. },
  1001. "_lscale": {
  1002. "__type__": "cc.Vec3",
  1003. "x": 1,
  1004. "y": 1,
  1005. "z": 1
  1006. },
  1007. "_mobility": 0,
  1008. "_layer": 33554432,
  1009. "_euler": {
  1010. "__type__": "cc.Vec3",
  1011. "x": 0,
  1012. "y": 0,
  1013. "z": 0
  1014. },
  1015. "_id": ""
  1016. },
  1017. {
  1018. "__type__": "cc.Node",
  1019. "_name": "Label",
  1020. "_objFlags": 0,
  1021. "__editorExtras__": {},
  1022. "_parent": {
  1023. "__id__": 39
  1024. },
  1025. "_children": [],
  1026. "_active": true,
  1027. "_components": [
  1028. {
  1029. "__id__": 41
  1030. },
  1031. {
  1032. "__id__": 43
  1033. }
  1034. ],
  1035. "_prefab": {
  1036. "__id__": 45
  1037. },
  1038. "_lpos": {
  1039. "__type__": "cc.Vec3",
  1040. "x": 0,
  1041. "y": -73.258,
  1042. "z": 0
  1043. },
  1044. "_lrot": {
  1045. "__type__": "cc.Quat",
  1046. "x": 0,
  1047. "y": 0,
  1048. "z": 0,
  1049. "w": 1
  1050. },
  1051. "_lscale": {
  1052. "__type__": "cc.Vec3",
  1053. "x": 1,
  1054. "y": 1,
  1055. "z": 1
  1056. },
  1057. "_mobility": 0,
  1058. "_layer": 33554432,
  1059. "_euler": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 0,
  1062. "y": 0,
  1063. "z": 0
  1064. },
  1065. "_id": ""
  1066. },
  1067. {
  1068. "__type__": "cc.UITransform",
  1069. "_name": "",
  1070. "_objFlags": 0,
  1071. "__editorExtras__": {},
  1072. "node": {
  1073. "__id__": 40
  1074. },
  1075. "_enabled": true,
  1076. "__prefab": {
  1077. "__id__": 42
  1078. },
  1079. "_contentSize": {
  1080. "__type__": "cc.Size",
  1081. "width": 82,
  1082. "height": 54.4
  1083. },
  1084. "_anchorPoint": {
  1085. "__type__": "cc.Vec2",
  1086. "x": 0.5,
  1087. "y": 0.5
  1088. },
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.CompPrefabInfo",
  1093. "fileId": "2aKCVnLN5HsZGFsr9CWKRd"
  1094. },
  1095. {
  1096. "__type__": "cc.Label",
  1097. "_name": "",
  1098. "_objFlags": 0,
  1099. "__editorExtras__": {},
  1100. "node": {
  1101. "__id__": 40
  1102. },
  1103. "_enabled": true,
  1104. "__prefab": {
  1105. "__id__": 44
  1106. },
  1107. "_customMaterial": null,
  1108. "_srcBlendFactor": 2,
  1109. "_dstBlendFactor": 4,
  1110. "_color": {
  1111. "__type__": "cc.Color",
  1112. "r": 255,
  1113. "g": 255,
  1114. "b": 255,
  1115. "a": 255
  1116. },
  1117. "_string": "侧边栏",
  1118. "_horizontalAlign": 1,
  1119. "_verticalAlign": 1,
  1120. "_actualFontSize": 26,
  1121. "_fontSize": 26,
  1122. "_fontFamily": "Arial",
  1123. "_lineHeight": 40,
  1124. "_overflow": 0,
  1125. "_enableWrapText": true,
  1126. "_font": null,
  1127. "_isSystemFontUsed": true,
  1128. "_spacingX": 0,
  1129. "_isItalic": false,
  1130. "_isBold": true,
  1131. "_isUnderline": false,
  1132. "_underlineHeight": 2,
  1133. "_cacheMode": 0,
  1134. "_enableOutline": true,
  1135. "_outlineColor": {
  1136. "__type__": "cc.Color",
  1137. "r": 0,
  1138. "g": 0,
  1139. "b": 0,
  1140. "a": 255
  1141. },
  1142. "_outlineWidth": 2,
  1143. "_enableShadow": true,
  1144. "_shadowColor": {
  1145. "__type__": "cc.Color",
  1146. "r": 0,
  1147. "g": 0,
  1148. "b": 0,
  1149. "a": 255
  1150. },
  1151. "_shadowOffset": {
  1152. "__type__": "cc.Vec2",
  1153. "x": 2,
  1154. "y": 2
  1155. },
  1156. "_shadowBlur": 2,
  1157. "_id": ""
  1158. },
  1159. {
  1160. "__type__": "cc.CompPrefabInfo",
  1161. "fileId": "6fHBkHyuNDYp9VDdSiV12h"
  1162. },
  1163. {
  1164. "__type__": "cc.PrefabInfo",
  1165. "root": {
  1166. "__id__": 1
  1167. },
  1168. "asset": {
  1169. "__id__": 0
  1170. },
  1171. "fileId": "c61DCF3PpN8IqVnZ/CYlnm",
  1172. "instance": null,
  1173. "targetOverrides": null,
  1174. "nestedPrefabInstanceRoots": null
  1175. },
  1176. {
  1177. "__type__": "cc.UITransform",
  1178. "_name": "",
  1179. "_objFlags": 0,
  1180. "__editorExtras__": {},
  1181. "node": {
  1182. "__id__": 39
  1183. },
  1184. "_enabled": true,
  1185. "__prefab": {
  1186. "__id__": 47
  1187. },
  1188. "_contentSize": {
  1189. "__type__": "cc.Size",
  1190. "width": 93,
  1191. "height": 93
  1192. },
  1193. "_anchorPoint": {
  1194. "__type__": "cc.Vec2",
  1195. "x": 0.5,
  1196. "y": 0.5
  1197. },
  1198. "_id": ""
  1199. },
  1200. {
  1201. "__type__": "cc.CompPrefabInfo",
  1202. "fileId": "d2Ou3PR8tH8pdLj1U4XFBF"
  1203. },
  1204. {
  1205. "__type__": "cc.Sprite",
  1206. "_name": "",
  1207. "_objFlags": 0,
  1208. "__editorExtras__": {},
  1209. "node": {
  1210. "__id__": 39
  1211. },
  1212. "_enabled": true,
  1213. "__prefab": {
  1214. "__id__": 49
  1215. },
  1216. "_customMaterial": null,
  1217. "_srcBlendFactor": 2,
  1218. "_dstBlendFactor": 4,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 255,
  1223. "b": 255,
  1224. "a": 255
  1225. },
  1226. "_spriteFrame": {
  1227. "__uuid__": "039039ac-0c8c-470f-af65-e6623b5fe827@f9941",
  1228. "__expectedType__": "cc.SpriteFrame"
  1229. },
  1230. "_type": 0,
  1231. "_fillType": 0,
  1232. "_sizeMode": 1,
  1233. "_fillCenter": {
  1234. "__type__": "cc.Vec2",
  1235. "x": 0,
  1236. "y": 0
  1237. },
  1238. "_fillStart": 0,
  1239. "_fillRange": 0,
  1240. "_isTrimmedMode": true,
  1241. "_useGrayscale": false,
  1242. "_atlas": null,
  1243. "_id": ""
  1244. },
  1245. {
  1246. "__type__": "cc.CompPrefabInfo",
  1247. "fileId": "fc6ZY/dZ1N0KveVoZ4O4zy"
  1248. },
  1249. {
  1250. "__type__": "cc.Widget",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "__editorExtras__": {},
  1254. "node": {
  1255. "__id__": 39
  1256. },
  1257. "_enabled": true,
  1258. "__prefab": {
  1259. "__id__": 51
  1260. },
  1261. "_alignFlags": 8,
  1262. "_target": null,
  1263. "_left": 24.876000000000005,
  1264. "_right": 0,
  1265. "_top": 0,
  1266. "_bottom": 0,
  1267. "_horizontalCenter": 0,
  1268. "_verticalCenter": 0,
  1269. "_isAbsLeft": true,
  1270. "_isAbsRight": true,
  1271. "_isAbsTop": true,
  1272. "_isAbsBottom": true,
  1273. "_isAbsHorizontalCenter": true,
  1274. "_isAbsVerticalCenter": true,
  1275. "_originalWidth": 0,
  1276. "_originalHeight": 0,
  1277. "_alignMode": 2,
  1278. "_lockFlags": 0,
  1279. "_id": ""
  1280. },
  1281. {
  1282. "__type__": "cc.CompPrefabInfo",
  1283. "fileId": "eazd+rSzxFi5/74a1BKhvS"
  1284. },
  1285. {
  1286. "__type__": "cc.Button",
  1287. "_name": "",
  1288. "_objFlags": 0,
  1289. "__editorExtras__": {},
  1290. "node": {
  1291. "__id__": 39
  1292. },
  1293. "_enabled": true,
  1294. "__prefab": {
  1295. "__id__": 53
  1296. },
  1297. "clickEvents": [
  1298. {
  1299. "__id__": 54
  1300. }
  1301. ],
  1302. "_interactable": true,
  1303. "_transition": 3,
  1304. "_normalColor": {
  1305. "__type__": "cc.Color",
  1306. "r": 255,
  1307. "g": 255,
  1308. "b": 255,
  1309. "a": 255
  1310. },
  1311. "_hoverColor": {
  1312. "__type__": "cc.Color",
  1313. "r": 211,
  1314. "g": 211,
  1315. "b": 211,
  1316. "a": 255
  1317. },
  1318. "_pressedColor": {
  1319. "__type__": "cc.Color",
  1320. "r": 255,
  1321. "g": 255,
  1322. "b": 255,
  1323. "a": 255
  1324. },
  1325. "_disabledColor": {
  1326. "__type__": "cc.Color",
  1327. "r": 124,
  1328. "g": 124,
  1329. "b": 124,
  1330. "a": 255
  1331. },
  1332. "_normalSprite": null,
  1333. "_hoverSprite": null,
  1334. "_pressedSprite": null,
  1335. "_disabledSprite": null,
  1336. "_duration": 0.1,
  1337. "_zoomScale": 1.2,
  1338. "_target": null,
  1339. "_id": ""
  1340. },
  1341. {
  1342. "__type__": "cc.CompPrefabInfo",
  1343. "fileId": "20rCC5ZlNKlr5Cskxsc+KB"
  1344. },
  1345. {
  1346. "__type__": "cc.ClickEvent",
  1347. "target": {
  1348. "__id__": 1
  1349. },
  1350. "component": "",
  1351. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  1352. "handler": "OnClickCebianlan",
  1353. "customEventData": ""
  1354. },
  1355. {
  1356. "__type__": "cc.PrefabInfo",
  1357. "root": {
  1358. "__id__": 1
  1359. },
  1360. "asset": {
  1361. "__id__": 0
  1362. },
  1363. "fileId": "20qFPmxidKDKvf8m2NwIS+",
  1364. "instance": null,
  1365. "targetOverrides": null,
  1366. "nestedPrefabInstanceRoots": null
  1367. },
  1368. {
  1369. "__type__": "cc.Node",
  1370. "_name": "btn_set",
  1371. "_objFlags": 0,
  1372. "__editorExtras__": {},
  1373. "_parent": {
  1374. "__id__": 2
  1375. },
  1376. "_children": [
  1377. {
  1378. "__id__": 57
  1379. }
  1380. ],
  1381. "_active": true,
  1382. "_components": [
  1383. {
  1384. "__id__": 63
  1385. },
  1386. {
  1387. "__id__": 65
  1388. },
  1389. {
  1390. "__id__": 67
  1391. },
  1392. {
  1393. "__id__": 69
  1394. }
  1395. ],
  1396. "_prefab": {
  1397. "__id__": 72
  1398. },
  1399. "_lpos": {
  1400. "__type__": "cc.Vec3",
  1401. "x": -289.624,
  1402. "y": 121.569,
  1403. "z": 0
  1404. },
  1405. "_lrot": {
  1406. "__type__": "cc.Quat",
  1407. "x": 0,
  1408. "y": 0,
  1409. "z": 0,
  1410. "w": 1
  1411. },
  1412. "_lscale": {
  1413. "__type__": "cc.Vec3",
  1414. "x": 1,
  1415. "y": 1,
  1416. "z": 1
  1417. },
  1418. "_mobility": 0,
  1419. "_layer": 33554432,
  1420. "_euler": {
  1421. "__type__": "cc.Vec3",
  1422. "x": 0,
  1423. "y": 0,
  1424. "z": 0
  1425. },
  1426. "_id": ""
  1427. },
  1428. {
  1429. "__type__": "cc.Node",
  1430. "_name": "Label",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "_parent": {
  1434. "__id__": 56
  1435. },
  1436. "_children": [],
  1437. "_active": true,
  1438. "_components": [
  1439. {
  1440. "__id__": 58
  1441. },
  1442. {
  1443. "__id__": 60
  1444. }
  1445. ],
  1446. "_prefab": {
  1447. "__id__": 62
  1448. },
  1449. "_lpos": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 0,
  1452. "y": -73.258,
  1453. "z": 0
  1454. },
  1455. "_lrot": {
  1456. "__type__": "cc.Quat",
  1457. "x": 0,
  1458. "y": 0,
  1459. "z": 0,
  1460. "w": 1
  1461. },
  1462. "_lscale": {
  1463. "__type__": "cc.Vec3",
  1464. "x": 1,
  1465. "y": 1,
  1466. "z": 1
  1467. },
  1468. "_mobility": 0,
  1469. "_layer": 33554432,
  1470. "_euler": {
  1471. "__type__": "cc.Vec3",
  1472. "x": 0,
  1473. "y": 0,
  1474. "z": 0
  1475. },
  1476. "_id": ""
  1477. },
  1478. {
  1479. "__type__": "cc.UITransform",
  1480. "_name": "",
  1481. "_objFlags": 0,
  1482. "__editorExtras__": {},
  1483. "node": {
  1484. "__id__": 57
  1485. },
  1486. "_enabled": true,
  1487. "__prefab": {
  1488. "__id__": 59
  1489. },
  1490. "_contentSize": {
  1491. "__type__": "cc.Size",
  1492. "width": 56,
  1493. "height": 54.4
  1494. },
  1495. "_anchorPoint": {
  1496. "__type__": "cc.Vec2",
  1497. "x": 0.5,
  1498. "y": 0.5
  1499. },
  1500. "_id": ""
  1501. },
  1502. {
  1503. "__type__": "cc.CompPrefabInfo",
  1504. "fileId": "96KoyPcX1PE6vFMwS5+ucM"
  1505. },
  1506. {
  1507. "__type__": "cc.Label",
  1508. "_name": "",
  1509. "_objFlags": 0,
  1510. "__editorExtras__": {},
  1511. "node": {
  1512. "__id__": 57
  1513. },
  1514. "_enabled": true,
  1515. "__prefab": {
  1516. "__id__": 61
  1517. },
  1518. "_customMaterial": null,
  1519. "_srcBlendFactor": 2,
  1520. "_dstBlendFactor": 4,
  1521. "_color": {
  1522. "__type__": "cc.Color",
  1523. "r": 255,
  1524. "g": 255,
  1525. "b": 255,
  1526. "a": 255
  1527. },
  1528. "_string": "设置",
  1529. "_horizontalAlign": 1,
  1530. "_verticalAlign": 1,
  1531. "_actualFontSize": 26,
  1532. "_fontSize": 26,
  1533. "_fontFamily": "Arial",
  1534. "_lineHeight": 40,
  1535. "_overflow": 0,
  1536. "_enableWrapText": true,
  1537. "_font": null,
  1538. "_isSystemFontUsed": true,
  1539. "_spacingX": 0,
  1540. "_isItalic": false,
  1541. "_isBold": true,
  1542. "_isUnderline": false,
  1543. "_underlineHeight": 2,
  1544. "_cacheMode": 0,
  1545. "_enableOutline": true,
  1546. "_outlineColor": {
  1547. "__type__": "cc.Color",
  1548. "r": 0,
  1549. "g": 0,
  1550. "b": 0,
  1551. "a": 255
  1552. },
  1553. "_outlineWidth": 2,
  1554. "_enableShadow": true,
  1555. "_shadowColor": {
  1556. "__type__": "cc.Color",
  1557. "r": 0,
  1558. "g": 0,
  1559. "b": 0,
  1560. "a": 255
  1561. },
  1562. "_shadowOffset": {
  1563. "__type__": "cc.Vec2",
  1564. "x": 2,
  1565. "y": 2
  1566. },
  1567. "_shadowBlur": 2,
  1568. "_id": ""
  1569. },
  1570. {
  1571. "__type__": "cc.CompPrefabInfo",
  1572. "fileId": "37o50sYtRO3rkx1aWEZiY4"
  1573. },
  1574. {
  1575. "__type__": "cc.PrefabInfo",
  1576. "root": {
  1577. "__id__": 1
  1578. },
  1579. "asset": {
  1580. "__id__": 0
  1581. },
  1582. "fileId": "e9FsTuH+hKcp2aZ0ILBb4+",
  1583. "instance": null,
  1584. "targetOverrides": null,
  1585. "nestedPrefabInstanceRoots": null
  1586. },
  1587. {
  1588. "__type__": "cc.UITransform",
  1589. "_name": "",
  1590. "_objFlags": 0,
  1591. "__editorExtras__": {},
  1592. "node": {
  1593. "__id__": 56
  1594. },
  1595. "_enabled": true,
  1596. "__prefab": {
  1597. "__id__": 64
  1598. },
  1599. "_contentSize": {
  1600. "__type__": "cc.Size",
  1601. "width": 93,
  1602. "height": 93
  1603. },
  1604. "_anchorPoint": {
  1605. "__type__": "cc.Vec2",
  1606. "x": 0.5,
  1607. "y": 0.5
  1608. },
  1609. "_id": ""
  1610. },
  1611. {
  1612. "__type__": "cc.CompPrefabInfo",
  1613. "fileId": "f7HVg1dz5Fl6eNawS/YwzY"
  1614. },
  1615. {
  1616. "__type__": "cc.Sprite",
  1617. "_name": "",
  1618. "_objFlags": 0,
  1619. "__editorExtras__": {},
  1620. "node": {
  1621. "__id__": 56
  1622. },
  1623. "_enabled": true,
  1624. "__prefab": {
  1625. "__id__": 66
  1626. },
  1627. "_customMaterial": null,
  1628. "_srcBlendFactor": 2,
  1629. "_dstBlendFactor": 4,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 255,
  1633. "g": 255,
  1634. "b": 255,
  1635. "a": 255
  1636. },
  1637. "_spriteFrame": {
  1638. "__uuid__": "60646d89-8592-4701-961e-a0dccd386c47@f9941",
  1639. "__expectedType__": "cc.SpriteFrame"
  1640. },
  1641. "_type": 0,
  1642. "_fillType": 0,
  1643. "_sizeMode": 1,
  1644. "_fillCenter": {
  1645. "__type__": "cc.Vec2",
  1646. "x": 0,
  1647. "y": 0
  1648. },
  1649. "_fillStart": 0,
  1650. "_fillRange": 0,
  1651. "_isTrimmedMode": true,
  1652. "_useGrayscale": false,
  1653. "_atlas": null,
  1654. "_id": ""
  1655. },
  1656. {
  1657. "__type__": "cc.CompPrefabInfo",
  1658. "fileId": "67EgPxdNZOiopTh/80IFOY"
  1659. },
  1660. {
  1661. "__type__": "cc.Widget",
  1662. "_name": "",
  1663. "_objFlags": 0,
  1664. "__editorExtras__": {},
  1665. "node": {
  1666. "__id__": 56
  1667. },
  1668. "_enabled": true,
  1669. "__prefab": {
  1670. "__id__": 68
  1671. },
  1672. "_alignFlags": 8,
  1673. "_target": null,
  1674. "_left": 23.875999999999976,
  1675. "_right": 0,
  1676. "_top": 0,
  1677. "_bottom": 0,
  1678. "_horizontalCenter": 0,
  1679. "_verticalCenter": 0,
  1680. "_isAbsLeft": true,
  1681. "_isAbsRight": true,
  1682. "_isAbsTop": true,
  1683. "_isAbsBottom": true,
  1684. "_isAbsHorizontalCenter": true,
  1685. "_isAbsVerticalCenter": true,
  1686. "_originalWidth": 0,
  1687. "_originalHeight": 0,
  1688. "_alignMode": 2,
  1689. "_lockFlags": 0,
  1690. "_id": ""
  1691. },
  1692. {
  1693. "__type__": "cc.CompPrefabInfo",
  1694. "fileId": "99Ll/HN39IVruRq1A0aZ4Y"
  1695. },
  1696. {
  1697. "__type__": "cc.Button",
  1698. "_name": "",
  1699. "_objFlags": 0,
  1700. "__editorExtras__": {},
  1701. "node": {
  1702. "__id__": 56
  1703. },
  1704. "_enabled": true,
  1705. "__prefab": {
  1706. "__id__": 70
  1707. },
  1708. "clickEvents": [
  1709. {
  1710. "__id__": 71
  1711. }
  1712. ],
  1713. "_interactable": true,
  1714. "_transition": 3,
  1715. "_normalColor": {
  1716. "__type__": "cc.Color",
  1717. "r": 255,
  1718. "g": 255,
  1719. "b": 255,
  1720. "a": 255
  1721. },
  1722. "_hoverColor": {
  1723. "__type__": "cc.Color",
  1724. "r": 211,
  1725. "g": 211,
  1726. "b": 211,
  1727. "a": 255
  1728. },
  1729. "_pressedColor": {
  1730. "__type__": "cc.Color",
  1731. "r": 255,
  1732. "g": 255,
  1733. "b": 255,
  1734. "a": 255
  1735. },
  1736. "_disabledColor": {
  1737. "__type__": "cc.Color",
  1738. "r": 124,
  1739. "g": 124,
  1740. "b": 124,
  1741. "a": 255
  1742. },
  1743. "_normalSprite": null,
  1744. "_hoverSprite": null,
  1745. "_pressedSprite": null,
  1746. "_disabledSprite": null,
  1747. "_duration": 0.1,
  1748. "_zoomScale": 1.2,
  1749. "_target": null,
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.CompPrefabInfo",
  1754. "fileId": "860chNeaNHCq5U2mt86bHE"
  1755. },
  1756. {
  1757. "__type__": "cc.ClickEvent",
  1758. "target": {
  1759. "__id__": 1
  1760. },
  1761. "component": "",
  1762. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  1763. "handler": "OnClickSet",
  1764. "customEventData": ""
  1765. },
  1766. {
  1767. "__type__": "cc.PrefabInfo",
  1768. "root": {
  1769. "__id__": 1
  1770. },
  1771. "asset": {
  1772. "__id__": 0
  1773. },
  1774. "fileId": "2elUwwVp9CGpsg7ojtH3cb",
  1775. "instance": null,
  1776. "targetOverrides": null,
  1777. "nestedPrefabInstanceRoots": null
  1778. },
  1779. {
  1780. "__type__": "cc.UITransform",
  1781. "_name": "",
  1782. "_objFlags": 0,
  1783. "__editorExtras__": {},
  1784. "node": {
  1785. "__id__": 2
  1786. },
  1787. "_enabled": true,
  1788. "__prefab": {
  1789. "__id__": 74
  1790. },
  1791. "_contentSize": {
  1792. "__type__": "cc.Size",
  1793. "width": 720,
  1794. "height": 1280
  1795. },
  1796. "_anchorPoint": {
  1797. "__type__": "cc.Vec2",
  1798. "x": 0.5,
  1799. "y": 0.5
  1800. },
  1801. "_id": ""
  1802. },
  1803. {
  1804. "__type__": "cc.CompPrefabInfo",
  1805. "fileId": "86X41TSVVGVJoY62HB3B/q"
  1806. },
  1807. {
  1808. "__type__": "cc.Sprite",
  1809. "_name": "",
  1810. "_objFlags": 0,
  1811. "__editorExtras__": {},
  1812. "node": {
  1813. "__id__": 2
  1814. },
  1815. "_enabled": true,
  1816. "__prefab": {
  1817. "__id__": 76
  1818. },
  1819. "_customMaterial": null,
  1820. "_srcBlendFactor": 2,
  1821. "_dstBlendFactor": 4,
  1822. "_color": {
  1823. "__type__": "cc.Color",
  1824. "r": 255,
  1825. "g": 255,
  1826. "b": 255,
  1827. "a": 255
  1828. },
  1829. "_spriteFrame": {
  1830. "__uuid__": "3232aa49-3716-4768-a987-46c2b6501086@f9941",
  1831. "__expectedType__": "cc.SpriteFrame"
  1832. },
  1833. "_type": 0,
  1834. "_fillType": 0,
  1835. "_sizeMode": 0,
  1836. "_fillCenter": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0,
  1839. "y": 0
  1840. },
  1841. "_fillStart": 0,
  1842. "_fillRange": 0,
  1843. "_isTrimmedMode": true,
  1844. "_useGrayscale": false,
  1845. "_atlas": null,
  1846. "_id": ""
  1847. },
  1848. {
  1849. "__type__": "cc.CompPrefabInfo",
  1850. "fileId": "0cfMe1yI9DOZQzGOAREptN"
  1851. },
  1852. {
  1853. "__type__": "cc.Widget",
  1854. "_name": "",
  1855. "_objFlags": 0,
  1856. "__editorExtras__": {},
  1857. "node": {
  1858. "__id__": 2
  1859. },
  1860. "_enabled": true,
  1861. "__prefab": {
  1862. "__id__": 78
  1863. },
  1864. "_alignFlags": 45,
  1865. "_target": null,
  1866. "_left": 0,
  1867. "_right": 0,
  1868. "_top": 0,
  1869. "_bottom": 0,
  1870. "_horizontalCenter": 0,
  1871. "_verticalCenter": 0,
  1872. "_isAbsLeft": true,
  1873. "_isAbsRight": true,
  1874. "_isAbsTop": true,
  1875. "_isAbsBottom": true,
  1876. "_isAbsHorizontalCenter": true,
  1877. "_isAbsVerticalCenter": true,
  1878. "_originalWidth": 100,
  1879. "_originalHeight": 100,
  1880. "_alignMode": 1,
  1881. "_lockFlags": 0,
  1882. "_id": ""
  1883. },
  1884. {
  1885. "__type__": "cc.CompPrefabInfo",
  1886. "fileId": "3atWJDoYVAt5SJUnZDbxnA"
  1887. },
  1888. {
  1889. "__type__": "cc.PrefabInfo",
  1890. "root": {
  1891. "__id__": 1
  1892. },
  1893. "asset": {
  1894. "__id__": 0
  1895. },
  1896. "fileId": "26iaEJD39NCKLj5xNzzvPO",
  1897. "instance": null,
  1898. "targetOverrides": null,
  1899. "nestedPrefabInstanceRoots": null
  1900. },
  1901. {
  1902. "__type__": "cc.Node",
  1903. "_name": "Label",
  1904. "_objFlags": 0,
  1905. "__editorExtras__": {},
  1906. "_parent": {
  1907. "__id__": 1
  1908. },
  1909. "_children": [],
  1910. "_active": false,
  1911. "_components": [
  1912. {
  1913. "__id__": 81
  1914. },
  1915. {
  1916. "__id__": 83
  1917. },
  1918. {
  1919. "__id__": 85
  1920. }
  1921. ],
  1922. "_prefab": {
  1923. "__id__": 87
  1924. },
  1925. "_lpos": {
  1926. "__type__": "cc.Vec3",
  1927. "x": -360,
  1928. "y": 627.4,
  1929. "z": 0
  1930. },
  1931. "_lrot": {
  1932. "__type__": "cc.Quat",
  1933. "x": 0,
  1934. "y": 0,
  1935. "z": 0,
  1936. "w": 1
  1937. },
  1938. "_lscale": {
  1939. "__type__": "cc.Vec3",
  1940. "x": 1,
  1941. "y": 1,
  1942. "z": 1
  1943. },
  1944. "_mobility": 0,
  1945. "_layer": 33554432,
  1946. "_euler": {
  1947. "__type__": "cc.Vec3",
  1948. "x": 0,
  1949. "y": 0,
  1950. "z": 0
  1951. },
  1952. "_id": ""
  1953. },
  1954. {
  1955. "__type__": "cc.UITransform",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "__editorExtras__": {},
  1959. "node": {
  1960. "__id__": 80
  1961. },
  1962. "_enabled": true,
  1963. "__prefab": {
  1964. "__id__": 82
  1965. },
  1966. "_contentSize": {
  1967. "__type__": "cc.Size",
  1968. "width": 163.4326171875,
  1969. "height": 37.8
  1970. },
  1971. "_anchorPoint": {
  1972. "__type__": "cc.Vec2",
  1973. "x": 0,
  1974. "y": 0.5
  1975. },
  1976. "_id": ""
  1977. },
  1978. {
  1979. "__type__": "cc.CompPrefabInfo",
  1980. "fileId": "13wjKhk5hKq50Q4ef3RbIG"
  1981. },
  1982. {
  1983. "__type__": "cc.Label",
  1984. "_name": "",
  1985. "_objFlags": 0,
  1986. "__editorExtras__": {},
  1987. "node": {
  1988. "__id__": 80
  1989. },
  1990. "_enabled": true,
  1991. "__prefab": {
  1992. "__id__": 84
  1993. },
  1994. "_customMaterial": null,
  1995. "_srcBlendFactor": 2,
  1996. "_dstBlendFactor": 4,
  1997. "_color": {
  1998. "__type__": "cc.Color",
  1999. "r": 255,
  2000. "g": 255,
  2001. "b": 255,
  2002. "a": 255
  2003. },
  2004. "_string": "version1.0.0",
  2005. "_horizontalAlign": 1,
  2006. "_verticalAlign": 1,
  2007. "_actualFontSize": 30,
  2008. "_fontSize": 30,
  2009. "_fontFamily": "Arial",
  2010. "_lineHeight": 30,
  2011. "_overflow": 0,
  2012. "_enableWrapText": true,
  2013. "_font": null,
  2014. "_isSystemFontUsed": true,
  2015. "_spacingX": 0,
  2016. "_isItalic": false,
  2017. "_isBold": false,
  2018. "_isUnderline": false,
  2019. "_underlineHeight": 2,
  2020. "_cacheMode": 0,
  2021. "_enableOutline": false,
  2022. "_outlineColor": {
  2023. "__type__": "cc.Color",
  2024. "r": 0,
  2025. "g": 0,
  2026. "b": 0,
  2027. "a": 255
  2028. },
  2029. "_outlineWidth": 2,
  2030. "_enableShadow": false,
  2031. "_shadowColor": {
  2032. "__type__": "cc.Color",
  2033. "r": 0,
  2034. "g": 0,
  2035. "b": 0,
  2036. "a": 255
  2037. },
  2038. "_shadowOffset": {
  2039. "__type__": "cc.Vec2",
  2040. "x": 2,
  2041. "y": 2
  2042. },
  2043. "_shadowBlur": 2,
  2044. "_id": ""
  2045. },
  2046. {
  2047. "__type__": "cc.CompPrefabInfo",
  2048. "fileId": "803pW2WXJLY4svhBkmLg8U"
  2049. },
  2050. {
  2051. "__type__": "cc.Widget",
  2052. "_name": "",
  2053. "_objFlags": 0,
  2054. "__editorExtras__": {},
  2055. "node": {
  2056. "__id__": 80
  2057. },
  2058. "_enabled": true,
  2059. "__prefab": {
  2060. "__id__": 86
  2061. },
  2062. "_alignFlags": 9,
  2063. "_target": null,
  2064. "_left": 0,
  2065. "_right": 0,
  2066. "_top": -6.299999999999999,
  2067. "_bottom": 0,
  2068. "_horizontalCenter": 0,
  2069. "_verticalCenter": 0,
  2070. "_isAbsLeft": true,
  2071. "_isAbsRight": true,
  2072. "_isAbsTop": true,
  2073. "_isAbsBottom": true,
  2074. "_isAbsHorizontalCenter": true,
  2075. "_isAbsVerticalCenter": true,
  2076. "_originalWidth": 0,
  2077. "_originalHeight": 0,
  2078. "_alignMode": 2,
  2079. "_lockFlags": 0,
  2080. "_id": ""
  2081. },
  2082. {
  2083. "__type__": "cc.CompPrefabInfo",
  2084. "fileId": "23i99UdflIfLmF0nULYGoM"
  2085. },
  2086. {
  2087. "__type__": "cc.PrefabInfo",
  2088. "root": {
  2089. "__id__": 1
  2090. },
  2091. "asset": {
  2092. "__id__": 0
  2093. },
  2094. "fileId": "b6dq6B4t9Nxotjvx/BD7US",
  2095. "instance": null,
  2096. "targetOverrides": null,
  2097. "nestedPrefabInstanceRoots": null
  2098. },
  2099. {
  2100. "__type__": "cc.Node",
  2101. "_name": "node_cebianlan",
  2102. "_objFlags": 0,
  2103. "__editorExtras__": {},
  2104. "_parent": {
  2105. "__id__": 1
  2106. },
  2107. "_children": [
  2108. {
  2109. "__id__": 89
  2110. },
  2111. {
  2112. "__id__": 128
  2113. }
  2114. ],
  2115. "_active": false,
  2116. "_components": [
  2117. {
  2118. "__id__": 137
  2119. },
  2120. {
  2121. "__id__": 139
  2122. }
  2123. ],
  2124. "_prefab": {
  2125. "__id__": 141
  2126. },
  2127. "_lpos": {
  2128. "__type__": "cc.Vec3",
  2129. "x": 0,
  2130. "y": 0,
  2131. "z": 0
  2132. },
  2133. "_lrot": {
  2134. "__type__": "cc.Quat",
  2135. "x": 0,
  2136. "y": 0,
  2137. "z": 0,
  2138. "w": 1
  2139. },
  2140. "_lscale": {
  2141. "__type__": "cc.Vec3",
  2142. "x": 1,
  2143. "y": 1,
  2144. "z": 1
  2145. },
  2146. "_mobility": 0,
  2147. "_layer": 33554432,
  2148. "_euler": {
  2149. "__type__": "cc.Vec3",
  2150. "x": 0,
  2151. "y": 0,
  2152. "z": 0
  2153. },
  2154. "_id": ""
  2155. },
  2156. {
  2157. "__type__": "cc.Node",
  2158. "_name": "bg",
  2159. "_objFlags": 0,
  2160. "__editorExtras__": {},
  2161. "_parent": {
  2162. "__id__": 88
  2163. },
  2164. "_children": [
  2165. {
  2166. "__id__": 90
  2167. },
  2168. {
  2169. "__id__": 96
  2170. },
  2171. {
  2172. "__id__": 102
  2173. },
  2174. {
  2175. "__id__": 108
  2176. }
  2177. ],
  2178. "_active": true,
  2179. "_components": [
  2180. {
  2181. "__id__": 123
  2182. },
  2183. {
  2184. "__id__": 125
  2185. }
  2186. ],
  2187. "_prefab": {
  2188. "__id__": 127
  2189. },
  2190. "_lpos": {
  2191. "__type__": "cc.Vec3",
  2192. "x": 0,
  2193. "y": 0,
  2194. "z": 0
  2195. },
  2196. "_lrot": {
  2197. "__type__": "cc.Quat",
  2198. "x": 0,
  2199. "y": 0,
  2200. "z": 0,
  2201. "w": 1
  2202. },
  2203. "_lscale": {
  2204. "__type__": "cc.Vec3",
  2205. "x": 1,
  2206. "y": 1,
  2207. "z": 1
  2208. },
  2209. "_mobility": 0,
  2210. "_layer": 33554432,
  2211. "_euler": {
  2212. "__type__": "cc.Vec3",
  2213. "x": 0,
  2214. "y": 0,
  2215. "z": 0
  2216. },
  2217. "_id": ""
  2218. },
  2219. {
  2220. "__type__": "cc.Node",
  2221. "_name": "Sprite",
  2222. "_objFlags": 0,
  2223. "__editorExtras__": {},
  2224. "_parent": {
  2225. "__id__": 89
  2226. },
  2227. "_children": [],
  2228. "_active": true,
  2229. "_components": [
  2230. {
  2231. "__id__": 91
  2232. },
  2233. {
  2234. "__id__": 93
  2235. }
  2236. ],
  2237. "_prefab": {
  2238. "__id__": 95
  2239. },
  2240. "_lpos": {
  2241. "__type__": "cc.Vec3",
  2242. "x": -25.936,
  2243. "y": -4.683,
  2244. "z": 0
  2245. },
  2246. "_lrot": {
  2247. "__type__": "cc.Quat",
  2248. "x": 0,
  2249. "y": 0,
  2250. "z": 0,
  2251. "w": 1
  2252. },
  2253. "_lscale": {
  2254. "__type__": "cc.Vec3",
  2255. "x": 0.5,
  2256. "y": 0.5,
  2257. "z": 1
  2258. },
  2259. "_mobility": 0,
  2260. "_layer": 33554432,
  2261. "_euler": {
  2262. "__type__": "cc.Vec3",
  2263. "x": 0,
  2264. "y": 0,
  2265. "z": 0
  2266. },
  2267. "_id": ""
  2268. },
  2269. {
  2270. "__type__": "cc.UITransform",
  2271. "_name": "",
  2272. "_objFlags": 0,
  2273. "__editorExtras__": {},
  2274. "node": {
  2275. "__id__": 90
  2276. },
  2277. "_enabled": true,
  2278. "__prefab": {
  2279. "__id__": 92
  2280. },
  2281. "_contentSize": {
  2282. "__type__": "cc.Size",
  2283. "width": 800,
  2284. "height": 533
  2285. },
  2286. "_anchorPoint": {
  2287. "__type__": "cc.Vec2",
  2288. "x": 0.5,
  2289. "y": 0.5
  2290. },
  2291. "_id": ""
  2292. },
  2293. {
  2294. "__type__": "cc.CompPrefabInfo",
  2295. "fileId": "23xj2kiE9BU5lj2d1F0wdg"
  2296. },
  2297. {
  2298. "__type__": "cc.Sprite",
  2299. "_name": "",
  2300. "_objFlags": 0,
  2301. "__editorExtras__": {},
  2302. "node": {
  2303. "__id__": 90
  2304. },
  2305. "_enabled": true,
  2306. "__prefab": {
  2307. "__id__": 94
  2308. },
  2309. "_customMaterial": null,
  2310. "_srcBlendFactor": 2,
  2311. "_dstBlendFactor": 4,
  2312. "_color": {
  2313. "__type__": "cc.Color",
  2314. "r": 255,
  2315. "g": 255,
  2316. "b": 255,
  2317. "a": 255
  2318. },
  2319. "_spriteFrame": {
  2320. "__uuid__": "1eb672b4-3000-4e9d-94aa-5a3f62d0e11b@f9941",
  2321. "__expectedType__": "cc.SpriteFrame"
  2322. },
  2323. "_type": 0,
  2324. "_fillType": 0,
  2325. "_sizeMode": 1,
  2326. "_fillCenter": {
  2327. "__type__": "cc.Vec2",
  2328. "x": 0,
  2329. "y": 0
  2330. },
  2331. "_fillStart": 0,
  2332. "_fillRange": 0,
  2333. "_isTrimmedMode": true,
  2334. "_useGrayscale": false,
  2335. "_atlas": null,
  2336. "_id": ""
  2337. },
  2338. {
  2339. "__type__": "cc.CompPrefabInfo",
  2340. "fileId": "14SyyI+NVLjq/29tXzYixx"
  2341. },
  2342. {
  2343. "__type__": "cc.PrefabInfo",
  2344. "root": {
  2345. "__id__": 1
  2346. },
  2347. "asset": {
  2348. "__id__": 0
  2349. },
  2350. "fileId": "6bv/IFFLRDfIbaRzL5OqtS",
  2351. "instance": null,
  2352. "targetOverrides": null,
  2353. "nestedPrefabInstanceRoots": null
  2354. },
  2355. {
  2356. "__type__": "cc.Node",
  2357. "_name": "Label",
  2358. "_objFlags": 0,
  2359. "__editorExtras__": {},
  2360. "_parent": {
  2361. "__id__": 89
  2362. },
  2363. "_children": [],
  2364. "_active": true,
  2365. "_components": [
  2366. {
  2367. "__id__": 97
  2368. },
  2369. {
  2370. "__id__": 99
  2371. }
  2372. ],
  2373. "_prefab": {
  2374. "__id__": 101
  2375. },
  2376. "_lpos": {
  2377. "__type__": "cc.Vec3",
  2378. "x": -223.352,
  2379. "y": 275.241,
  2380. "z": 0
  2381. },
  2382. "_lrot": {
  2383. "__type__": "cc.Quat",
  2384. "x": 0,
  2385. "y": 0,
  2386. "z": 0,
  2387. "w": 1
  2388. },
  2389. "_lscale": {
  2390. "__type__": "cc.Vec3",
  2391. "x": 1,
  2392. "y": 1,
  2393. "z": 1
  2394. },
  2395. "_mobility": 0,
  2396. "_layer": 33554432,
  2397. "_euler": {
  2398. "__type__": "cc.Vec3",
  2399. "x": 0,
  2400. "y": 0,
  2401. "z": 0
  2402. },
  2403. "_id": ""
  2404. },
  2405. {
  2406. "__type__": "cc.UITransform",
  2407. "_name": "",
  2408. "_objFlags": 0,
  2409. "__editorExtras__": {},
  2410. "node": {
  2411. "__id__": 96
  2412. },
  2413. "_enabled": true,
  2414. "__prefab": {
  2415. "__id__": 98
  2416. },
  2417. "_contentSize": {
  2418. "__type__": "cc.Size",
  2419. "width": 116.6796875,
  2420. "height": 50.4
  2421. },
  2422. "_anchorPoint": {
  2423. "__type__": "cc.Vec2",
  2424. "x": 0,
  2425. "y": 0.5
  2426. },
  2427. "_id": ""
  2428. },
  2429. {
  2430. "__type__": "cc.CompPrefabInfo",
  2431. "fileId": "e1f7nDDnZKjrvvEMloHXRG"
  2432. },
  2433. {
  2434. "__type__": "cc.Label",
  2435. "_name": "",
  2436. "_objFlags": 0,
  2437. "__editorExtras__": {},
  2438. "node": {
  2439. "__id__": 96
  2440. },
  2441. "_enabled": true,
  2442. "__prefab": {
  2443. "__id__": 100
  2444. },
  2445. "_customMaterial": null,
  2446. "_srcBlendFactor": 2,
  2447. "_dstBlendFactor": 4,
  2448. "_color": {
  2449. "__type__": "cc.Color",
  2450. "r": 0,
  2451. "g": 0,
  2452. "b": 0,
  2453. "a": 255
  2454. },
  2455. "_string": "1.打开侧边栏",
  2456. "_horizontalAlign": 1,
  2457. "_verticalAlign": 1,
  2458. "_actualFontSize": 20,
  2459. "_fontSize": 20,
  2460. "_fontFamily": "Arial",
  2461. "_lineHeight": 40,
  2462. "_overflow": 0,
  2463. "_enableWrapText": true,
  2464. "_font": null,
  2465. "_isSystemFontUsed": true,
  2466. "_spacingX": 0,
  2467. "_isItalic": false,
  2468. "_isBold": true,
  2469. "_isUnderline": false,
  2470. "_underlineHeight": 2,
  2471. "_cacheMode": 0,
  2472. "_enableOutline": false,
  2473. "_outlineColor": {
  2474. "__type__": "cc.Color",
  2475. "r": 0,
  2476. "g": 0,
  2477. "b": 0,
  2478. "a": 255
  2479. },
  2480. "_outlineWidth": 2,
  2481. "_enableShadow": false,
  2482. "_shadowColor": {
  2483. "__type__": "cc.Color",
  2484. "r": 0,
  2485. "g": 0,
  2486. "b": 0,
  2487. "a": 255
  2488. },
  2489. "_shadowOffset": {
  2490. "__type__": "cc.Vec2",
  2491. "x": 2,
  2492. "y": 2
  2493. },
  2494. "_shadowBlur": 2,
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.CompPrefabInfo",
  2499. "fileId": "2aguuNb8JNJJVfIbcyLlVt"
  2500. },
  2501. {
  2502. "__type__": "cc.PrefabInfo",
  2503. "root": {
  2504. "__id__": 1
  2505. },
  2506. "asset": {
  2507. "__id__": 0
  2508. },
  2509. "fileId": "8dx1/Vu85NZayLbum9bzIP",
  2510. "instance": null,
  2511. "targetOverrides": null,
  2512. "nestedPrefabInstanceRoots": null
  2513. },
  2514. {
  2515. "__type__": "cc.Node",
  2516. "_name": "Label-001",
  2517. "_objFlags": 0,
  2518. "__editorExtras__": {},
  2519. "_parent": {
  2520. "__id__": 89
  2521. },
  2522. "_children": [],
  2523. "_active": true,
  2524. "_components": [
  2525. {
  2526. "__id__": 103
  2527. },
  2528. {
  2529. "__id__": 105
  2530. }
  2531. ],
  2532. "_prefab": {
  2533. "__id__": 107
  2534. },
  2535. "_lpos": {
  2536. "__type__": "cc.Vec3",
  2537. "x": -223.352,
  2538. "y": 193.519,
  2539. "z": 0
  2540. },
  2541. "_lrot": {
  2542. "__type__": "cc.Quat",
  2543. "x": 0,
  2544. "y": 0,
  2545. "z": 0,
  2546. "w": 1
  2547. },
  2548. "_lscale": {
  2549. "__type__": "cc.Vec3",
  2550. "x": 1,
  2551. "y": 1,
  2552. "z": 1
  2553. },
  2554. "_mobility": 0,
  2555. "_layer": 33554432,
  2556. "_euler": {
  2557. "__type__": "cc.Vec3",
  2558. "x": 0,
  2559. "y": 0,
  2560. "z": 0
  2561. },
  2562. "_id": ""
  2563. },
  2564. {
  2565. "__type__": "cc.UITransform",
  2566. "_name": "",
  2567. "_objFlags": 0,
  2568. "__editorExtras__": {},
  2569. "node": {
  2570. "__id__": 102
  2571. },
  2572. "_enabled": true,
  2573. "__prefab": {
  2574. "__id__": 104
  2575. },
  2576. "_contentSize": {
  2577. "__type__": "cc.Size",
  2578. "width": 476.6796875,
  2579. "height": 50.4
  2580. },
  2581. "_anchorPoint": {
  2582. "__type__": "cc.Vec2",
  2583. "x": 0,
  2584. "y": 0.5
  2585. },
  2586. "_id": ""
  2587. },
  2588. {
  2589. "__type__": "cc.CompPrefabInfo",
  2590. "fileId": "99fzGtMC9Lu6wJ9/5KgwDx"
  2591. },
  2592. {
  2593. "__type__": "cc.Label",
  2594. "_name": "",
  2595. "_objFlags": 0,
  2596. "__editorExtras__": {},
  2597. "node": {
  2598. "__id__": 102
  2599. },
  2600. "_enabled": true,
  2601. "__prefab": {
  2602. "__id__": 106
  2603. },
  2604. "_customMaterial": null,
  2605. "_srcBlendFactor": 2,
  2606. "_dstBlendFactor": 4,
  2607. "_color": {
  2608. "__type__": "cc.Color",
  2609. "r": 0,
  2610. "g": 0,
  2611. "b": 0,
  2612. "a": 255
  2613. },
  2614. "_string": "2.常用小程序里面点击《超级找茬王》,即可进入游戏",
  2615. "_horizontalAlign": 1,
  2616. "_verticalAlign": 1,
  2617. "_actualFontSize": 20,
  2618. "_fontSize": 20,
  2619. "_fontFamily": "Arial",
  2620. "_lineHeight": 40,
  2621. "_overflow": 0,
  2622. "_enableWrapText": true,
  2623. "_font": null,
  2624. "_isSystemFontUsed": true,
  2625. "_spacingX": 0,
  2626. "_isItalic": false,
  2627. "_isBold": true,
  2628. "_isUnderline": false,
  2629. "_underlineHeight": 2,
  2630. "_cacheMode": 0,
  2631. "_enableOutline": false,
  2632. "_outlineColor": {
  2633. "__type__": "cc.Color",
  2634. "r": 0,
  2635. "g": 0,
  2636. "b": 0,
  2637. "a": 255
  2638. },
  2639. "_outlineWidth": 2,
  2640. "_enableShadow": false,
  2641. "_shadowColor": {
  2642. "__type__": "cc.Color",
  2643. "r": 0,
  2644. "g": 0,
  2645. "b": 0,
  2646. "a": 255
  2647. },
  2648. "_shadowOffset": {
  2649. "__type__": "cc.Vec2",
  2650. "x": 2,
  2651. "y": 2
  2652. },
  2653. "_shadowBlur": 2,
  2654. "_id": ""
  2655. },
  2656. {
  2657. "__type__": "cc.CompPrefabInfo",
  2658. "fileId": "32tKVFiuVOSJRgQsxzEv1q"
  2659. },
  2660. {
  2661. "__type__": "cc.PrefabInfo",
  2662. "root": {
  2663. "__id__": 1
  2664. },
  2665. "asset": {
  2666. "__id__": 0
  2667. },
  2668. "fileId": "14D/aG/1dINq10rzr8ig83",
  2669. "instance": null,
  2670. "targetOverrides": null,
  2671. "nestedPrefabInstanceRoots": null
  2672. },
  2673. {
  2674. "__type__": "cc.Node",
  2675. "_name": "btn_goto",
  2676. "_objFlags": 0,
  2677. "__editorExtras__": {},
  2678. "_parent": {
  2679. "__id__": 89
  2680. },
  2681. "_children": [
  2682. {
  2683. "__id__": 109
  2684. }
  2685. ],
  2686. "_active": true,
  2687. "_components": [
  2688. {
  2689. "__id__": 115
  2690. },
  2691. {
  2692. "__id__": 117
  2693. },
  2694. {
  2695. "__id__": 119
  2696. }
  2697. ],
  2698. "_prefab": {
  2699. "__id__": 122
  2700. },
  2701. "_lpos": {
  2702. "__type__": "cc.Vec3",
  2703. "x": 0,
  2704. "y": -363.049,
  2705. "z": 0
  2706. },
  2707. "_lrot": {
  2708. "__type__": "cc.Quat",
  2709. "x": 0,
  2710. "y": 0,
  2711. "z": 0,
  2712. "w": 1
  2713. },
  2714. "_lscale": {
  2715. "__type__": "cc.Vec3",
  2716. "x": 1,
  2717. "y": 1,
  2718. "z": 1
  2719. },
  2720. "_mobility": 0,
  2721. "_layer": 33554432,
  2722. "_euler": {
  2723. "__type__": "cc.Vec3",
  2724. "x": 0,
  2725. "y": 0,
  2726. "z": 0
  2727. },
  2728. "_id": ""
  2729. },
  2730. {
  2731. "__type__": "cc.Node",
  2732. "_name": "Label",
  2733. "_objFlags": 0,
  2734. "__editorExtras__": {},
  2735. "_parent": {
  2736. "__id__": 108
  2737. },
  2738. "_children": [],
  2739. "_active": true,
  2740. "_components": [
  2741. {
  2742. "__id__": 110
  2743. },
  2744. {
  2745. "__id__": 112
  2746. }
  2747. ],
  2748. "_prefab": {
  2749. "__id__": 114
  2750. },
  2751. "_lpos": {
  2752. "__type__": "cc.Vec3",
  2753. "x": 0,
  2754. "y": 0,
  2755. "z": 0
  2756. },
  2757. "_lrot": {
  2758. "__type__": "cc.Quat",
  2759. "x": 0,
  2760. "y": 0,
  2761. "z": 0,
  2762. "w": 1
  2763. },
  2764. "_lscale": {
  2765. "__type__": "cc.Vec3",
  2766. "x": 1,
  2767. "y": 1,
  2768. "z": 1
  2769. },
  2770. "_mobility": 0,
  2771. "_layer": 33554432,
  2772. "_euler": {
  2773. "__type__": "cc.Vec3",
  2774. "x": 0,
  2775. "y": 0,
  2776. "z": 0
  2777. },
  2778. "_id": ""
  2779. },
  2780. {
  2781. "__type__": "cc.UITransform",
  2782. "_name": "",
  2783. "_objFlags": 0,
  2784. "__editorExtras__": {},
  2785. "node": {
  2786. "__id__": 109
  2787. },
  2788. "_enabled": true,
  2789. "__prefab": {
  2790. "__id__": 111
  2791. },
  2792. "_contentSize": {
  2793. "__type__": "cc.Size",
  2794. "width": 150,
  2795. "height": 50.4
  2796. },
  2797. "_anchorPoint": {
  2798. "__type__": "cc.Vec2",
  2799. "x": 0.5,
  2800. "y": 0.5
  2801. },
  2802. "_id": ""
  2803. },
  2804. {
  2805. "__type__": "cc.CompPrefabInfo",
  2806. "fileId": "c3boPYMIpDK6lc2WlefV0f"
  2807. },
  2808. {
  2809. "__type__": "cc.Label",
  2810. "_name": "",
  2811. "_objFlags": 0,
  2812. "__editorExtras__": {},
  2813. "node": {
  2814. "__id__": 109
  2815. },
  2816. "_enabled": true,
  2817. "__prefab": {
  2818. "__id__": 113
  2819. },
  2820. "_customMaterial": null,
  2821. "_srcBlendFactor": 2,
  2822. "_dstBlendFactor": 4,
  2823. "_color": {
  2824. "__type__": "cc.Color",
  2825. "r": 255,
  2826. "g": 255,
  2827. "b": 255,
  2828. "a": 255
  2829. },
  2830. "_string": "进入侧边栏",
  2831. "_horizontalAlign": 1,
  2832. "_verticalAlign": 1,
  2833. "_actualFontSize": 30,
  2834. "_fontSize": 30,
  2835. "_fontFamily": "Arial",
  2836. "_lineHeight": 40,
  2837. "_overflow": 0,
  2838. "_enableWrapText": true,
  2839. "_font": null,
  2840. "_isSystemFontUsed": true,
  2841. "_spacingX": 0,
  2842. "_isItalic": false,
  2843. "_isBold": false,
  2844. "_isUnderline": false,
  2845. "_underlineHeight": 2,
  2846. "_cacheMode": 0,
  2847. "_enableOutline": false,
  2848. "_outlineColor": {
  2849. "__type__": "cc.Color",
  2850. "r": 0,
  2851. "g": 0,
  2852. "b": 0,
  2853. "a": 255
  2854. },
  2855. "_outlineWidth": 2,
  2856. "_enableShadow": false,
  2857. "_shadowColor": {
  2858. "__type__": "cc.Color",
  2859. "r": 0,
  2860. "g": 0,
  2861. "b": 0,
  2862. "a": 255
  2863. },
  2864. "_shadowOffset": {
  2865. "__type__": "cc.Vec2",
  2866. "x": 2,
  2867. "y": 2
  2868. },
  2869. "_shadowBlur": 2,
  2870. "_id": ""
  2871. },
  2872. {
  2873. "__type__": "cc.CompPrefabInfo",
  2874. "fileId": "7bax2+fcZBkI2bLa7tLXPB"
  2875. },
  2876. {
  2877. "__type__": "cc.PrefabInfo",
  2878. "root": {
  2879. "__id__": 1
  2880. },
  2881. "asset": {
  2882. "__id__": 0
  2883. },
  2884. "fileId": "4bIkUkpUZHpKcAhsaSfq4E",
  2885. "instance": null,
  2886. "targetOverrides": null,
  2887. "nestedPrefabInstanceRoots": null
  2888. },
  2889. {
  2890. "__type__": "cc.UITransform",
  2891. "_name": "",
  2892. "_objFlags": 0,
  2893. "__editorExtras__": {},
  2894. "node": {
  2895. "__id__": 108
  2896. },
  2897. "_enabled": true,
  2898. "__prefab": {
  2899. "__id__": 116
  2900. },
  2901. "_contentSize": {
  2902. "__type__": "cc.Size",
  2903. "width": 217,
  2904. "height": 64
  2905. },
  2906. "_anchorPoint": {
  2907. "__type__": "cc.Vec2",
  2908. "x": 0.5,
  2909. "y": 0.5
  2910. },
  2911. "_id": ""
  2912. },
  2913. {
  2914. "__type__": "cc.CompPrefabInfo",
  2915. "fileId": "b6MSR78K5L8Zx6jSbjB/jH"
  2916. },
  2917. {
  2918. "__type__": "cc.Sprite",
  2919. "_name": "",
  2920. "_objFlags": 0,
  2921. "__editorExtras__": {},
  2922. "node": {
  2923. "__id__": 108
  2924. },
  2925. "_enabled": true,
  2926. "__prefab": {
  2927. "__id__": 118
  2928. },
  2929. "_customMaterial": null,
  2930. "_srcBlendFactor": 2,
  2931. "_dstBlendFactor": 4,
  2932. "_color": {
  2933. "__type__": "cc.Color",
  2934. "r": 255,
  2935. "g": 255,
  2936. "b": 255,
  2937. "a": 255
  2938. },
  2939. "_spriteFrame": {
  2940. "__uuid__": "8f2b94da-1595-42cd-89f1-f966f9979ae4@f9941",
  2941. "__expectedType__": "cc.SpriteFrame"
  2942. },
  2943. "_type": 0,
  2944. "_fillType": 0,
  2945. "_sizeMode": 1,
  2946. "_fillCenter": {
  2947. "__type__": "cc.Vec2",
  2948. "x": 0,
  2949. "y": 0
  2950. },
  2951. "_fillStart": 0,
  2952. "_fillRange": 0,
  2953. "_isTrimmedMode": true,
  2954. "_useGrayscale": false,
  2955. "_atlas": null,
  2956. "_id": ""
  2957. },
  2958. {
  2959. "__type__": "cc.CompPrefabInfo",
  2960. "fileId": "81kQnhe91MirhOJKTWN5ZC"
  2961. },
  2962. {
  2963. "__type__": "cc.Button",
  2964. "_name": "",
  2965. "_objFlags": 0,
  2966. "__editorExtras__": {},
  2967. "node": {
  2968. "__id__": 108
  2969. },
  2970. "_enabled": true,
  2971. "__prefab": {
  2972. "__id__": 120
  2973. },
  2974. "clickEvents": [
  2975. {
  2976. "__id__": 121
  2977. }
  2978. ],
  2979. "_interactable": true,
  2980. "_transition": 3,
  2981. "_normalColor": {
  2982. "__type__": "cc.Color",
  2983. "r": 255,
  2984. "g": 255,
  2985. "b": 255,
  2986. "a": 255
  2987. },
  2988. "_hoverColor": {
  2989. "__type__": "cc.Color",
  2990. "r": 211,
  2991. "g": 211,
  2992. "b": 211,
  2993. "a": 255
  2994. },
  2995. "_pressedColor": {
  2996. "__type__": "cc.Color",
  2997. "r": 255,
  2998. "g": 255,
  2999. "b": 255,
  3000. "a": 255
  3001. },
  3002. "_disabledColor": {
  3003. "__type__": "cc.Color",
  3004. "r": 124,
  3005. "g": 124,
  3006. "b": 124,
  3007. "a": 255
  3008. },
  3009. "_normalSprite": null,
  3010. "_hoverSprite": null,
  3011. "_pressedSprite": null,
  3012. "_disabledSprite": null,
  3013. "_duration": 0.1,
  3014. "_zoomScale": 1.2,
  3015. "_target": null,
  3016. "_id": ""
  3017. },
  3018. {
  3019. "__type__": "cc.CompPrefabInfo",
  3020. "fileId": "78f3UEIepGDZUOs+UIrWik"
  3021. },
  3022. {
  3023. "__type__": "cc.ClickEvent",
  3024. "target": {
  3025. "__id__": 1
  3026. },
  3027. "component": "",
  3028. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  3029. "handler": "OnClickGotoCebianlan",
  3030. "customEventData": ""
  3031. },
  3032. {
  3033. "__type__": "cc.PrefabInfo",
  3034. "root": {
  3035. "__id__": 1
  3036. },
  3037. "asset": {
  3038. "__id__": 0
  3039. },
  3040. "fileId": "b9AR+477JAQIWy5fUgMiF/",
  3041. "instance": null,
  3042. "targetOverrides": null,
  3043. "nestedPrefabInstanceRoots": null
  3044. },
  3045. {
  3046. "__type__": "cc.UITransform",
  3047. "_name": "",
  3048. "_objFlags": 0,
  3049. "__editorExtras__": {},
  3050. "node": {
  3051. "__id__": 89
  3052. },
  3053. "_enabled": true,
  3054. "__prefab": {
  3055. "__id__": 124
  3056. },
  3057. "_contentSize": {
  3058. "__type__": "cc.Size",
  3059. "width": 617,
  3060. "height": 995
  3061. },
  3062. "_anchorPoint": {
  3063. "__type__": "cc.Vec2",
  3064. "x": 0.5,
  3065. "y": 0.5
  3066. },
  3067. "_id": ""
  3068. },
  3069. {
  3070. "__type__": "cc.CompPrefabInfo",
  3071. "fileId": "81ltBfXWZEC4CuuZum8qCl"
  3072. },
  3073. {
  3074. "__type__": "cc.Sprite",
  3075. "_name": "",
  3076. "_objFlags": 0,
  3077. "__editorExtras__": {},
  3078. "node": {
  3079. "__id__": 89
  3080. },
  3081. "_enabled": true,
  3082. "__prefab": {
  3083. "__id__": 126
  3084. },
  3085. "_customMaterial": null,
  3086. "_srcBlendFactor": 2,
  3087. "_dstBlendFactor": 4,
  3088. "_color": {
  3089. "__type__": "cc.Color",
  3090. "r": 255,
  3091. "g": 255,
  3092. "b": 255,
  3093. "a": 255
  3094. },
  3095. "_spriteFrame": {
  3096. "__uuid__": "495b1c2d-f4fc-4706-8e2b-9b334c021ba0@f9941",
  3097. "__expectedType__": "cc.SpriteFrame"
  3098. },
  3099. "_type": 0,
  3100. "_fillType": 0,
  3101. "_sizeMode": 1,
  3102. "_fillCenter": {
  3103. "__type__": "cc.Vec2",
  3104. "x": 0,
  3105. "y": 0
  3106. },
  3107. "_fillStart": 0,
  3108. "_fillRange": 0,
  3109. "_isTrimmedMode": true,
  3110. "_useGrayscale": false,
  3111. "_atlas": null,
  3112. "_id": ""
  3113. },
  3114. {
  3115. "__type__": "cc.CompPrefabInfo",
  3116. "fileId": "03SDFwm5NI0JcbFootJYX2"
  3117. },
  3118. {
  3119. "__type__": "cc.PrefabInfo",
  3120. "root": {
  3121. "__id__": 1
  3122. },
  3123. "asset": {
  3124. "__id__": 0
  3125. },
  3126. "fileId": "f5rOxm3hBHyJkfEE86Y2SJ",
  3127. "instance": null,
  3128. "targetOverrides": null,
  3129. "nestedPrefabInstanceRoots": null
  3130. },
  3131. {
  3132. "__type__": "cc.Node",
  3133. "_name": "btn_closewcebianlan",
  3134. "_objFlags": 0,
  3135. "__editorExtras__": {},
  3136. "_parent": {
  3137. "__id__": 88
  3138. },
  3139. "_children": [],
  3140. "_active": true,
  3141. "_components": [
  3142. {
  3143. "__id__": 129
  3144. },
  3145. {
  3146. "__id__": 131
  3147. },
  3148. {
  3149. "__id__": 133
  3150. }
  3151. ],
  3152. "_prefab": {
  3153. "__id__": 136
  3154. },
  3155. "_lpos": {
  3156. "__type__": "cc.Vec3",
  3157. "x": 256.382,
  3158. "y": 450.611,
  3159. "z": 0
  3160. },
  3161. "_lrot": {
  3162. "__type__": "cc.Quat",
  3163. "x": 0,
  3164. "y": 0,
  3165. "z": 0,
  3166. "w": 1
  3167. },
  3168. "_lscale": {
  3169. "__type__": "cc.Vec3",
  3170. "x": 1,
  3171. "y": 1,
  3172. "z": 1
  3173. },
  3174. "_mobility": 0,
  3175. "_layer": 33554432,
  3176. "_euler": {
  3177. "__type__": "cc.Vec3",
  3178. "x": 0,
  3179. "y": 0,
  3180. "z": 0
  3181. },
  3182. "_id": ""
  3183. },
  3184. {
  3185. "__type__": "cc.UITransform",
  3186. "_name": "",
  3187. "_objFlags": 0,
  3188. "__editorExtras__": {},
  3189. "node": {
  3190. "__id__": 128
  3191. },
  3192. "_enabled": true,
  3193. "__prefab": {
  3194. "__id__": 130
  3195. },
  3196. "_contentSize": {
  3197. "__type__": "cc.Size",
  3198. "width": 67,
  3199. "height": 67
  3200. },
  3201. "_anchorPoint": {
  3202. "__type__": "cc.Vec2",
  3203. "x": 0.5,
  3204. "y": 0.5
  3205. },
  3206. "_id": ""
  3207. },
  3208. {
  3209. "__type__": "cc.CompPrefabInfo",
  3210. "fileId": "b7wvevvjNPY5ehR1p9injw"
  3211. },
  3212. {
  3213. "__type__": "cc.Sprite",
  3214. "_name": "",
  3215. "_objFlags": 0,
  3216. "__editorExtras__": {},
  3217. "node": {
  3218. "__id__": 128
  3219. },
  3220. "_enabled": true,
  3221. "__prefab": {
  3222. "__id__": 132
  3223. },
  3224. "_customMaterial": null,
  3225. "_srcBlendFactor": 2,
  3226. "_dstBlendFactor": 4,
  3227. "_color": {
  3228. "__type__": "cc.Color",
  3229. "r": 255,
  3230. "g": 255,
  3231. "b": 255,
  3232. "a": 255
  3233. },
  3234. "_spriteFrame": {
  3235. "__uuid__": "9d250615-b5ff-4029-9cbd-5bed01e48353@f9941",
  3236. "__expectedType__": "cc.SpriteFrame"
  3237. },
  3238. "_type": 0,
  3239. "_fillType": 0,
  3240. "_sizeMode": 1,
  3241. "_fillCenter": {
  3242. "__type__": "cc.Vec2",
  3243. "x": 0,
  3244. "y": 0
  3245. },
  3246. "_fillStart": 0,
  3247. "_fillRange": 0,
  3248. "_isTrimmedMode": true,
  3249. "_useGrayscale": false,
  3250. "_atlas": null,
  3251. "_id": ""
  3252. },
  3253. {
  3254. "__type__": "cc.CompPrefabInfo",
  3255. "fileId": "49x1qvkV1P5rRxaZ645yc4"
  3256. },
  3257. {
  3258. "__type__": "cc.Button",
  3259. "_name": "",
  3260. "_objFlags": 0,
  3261. "__editorExtras__": {},
  3262. "node": {
  3263. "__id__": 128
  3264. },
  3265. "_enabled": true,
  3266. "__prefab": {
  3267. "__id__": 134
  3268. },
  3269. "clickEvents": [
  3270. {
  3271. "__id__": 135
  3272. }
  3273. ],
  3274. "_interactable": true,
  3275. "_transition": 3,
  3276. "_normalColor": {
  3277. "__type__": "cc.Color",
  3278. "r": 255,
  3279. "g": 255,
  3280. "b": 255,
  3281. "a": 255
  3282. },
  3283. "_hoverColor": {
  3284. "__type__": "cc.Color",
  3285. "r": 211,
  3286. "g": 211,
  3287. "b": 211,
  3288. "a": 255
  3289. },
  3290. "_pressedColor": {
  3291. "__type__": "cc.Color",
  3292. "r": 255,
  3293. "g": 255,
  3294. "b": 255,
  3295. "a": 255
  3296. },
  3297. "_disabledColor": {
  3298. "__type__": "cc.Color",
  3299. "r": 124,
  3300. "g": 124,
  3301. "b": 124,
  3302. "a": 255
  3303. },
  3304. "_normalSprite": null,
  3305. "_hoverSprite": null,
  3306. "_pressedSprite": null,
  3307. "_disabledSprite": null,
  3308. "_duration": 0.1,
  3309. "_zoomScale": 1.2,
  3310. "_target": null,
  3311. "_id": ""
  3312. },
  3313. {
  3314. "__type__": "cc.CompPrefabInfo",
  3315. "fileId": "b5W9aWqqtJ5Zfu7wKqDbSL"
  3316. },
  3317. {
  3318. "__type__": "cc.ClickEvent",
  3319. "target": {
  3320. "__id__": 1
  3321. },
  3322. "component": "",
  3323. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  3324. "handler": "OnClickCloseCebian",
  3325. "customEventData": ""
  3326. },
  3327. {
  3328. "__type__": "cc.PrefabInfo",
  3329. "root": {
  3330. "__id__": 1
  3331. },
  3332. "asset": {
  3333. "__id__": 0
  3334. },
  3335. "fileId": "7bZ9aepylMoZaVG2lObEd0",
  3336. "instance": null,
  3337. "targetOverrides": null,
  3338. "nestedPrefabInstanceRoots": null
  3339. },
  3340. {
  3341. "__type__": "cc.UITransform",
  3342. "_name": "",
  3343. "_objFlags": 0,
  3344. "__editorExtras__": {},
  3345. "node": {
  3346. "__id__": 88
  3347. },
  3348. "_enabled": true,
  3349. "__prefab": {
  3350. "__id__": 138
  3351. },
  3352. "_contentSize": {
  3353. "__type__": "cc.Size",
  3354. "width": 720,
  3355. "height": 1280
  3356. },
  3357. "_anchorPoint": {
  3358. "__type__": "cc.Vec2",
  3359. "x": 0.5,
  3360. "y": 0.5
  3361. },
  3362. "_id": ""
  3363. },
  3364. {
  3365. "__type__": "cc.CompPrefabInfo",
  3366. "fileId": "613X2xnAVAx5iusXxOhrHd"
  3367. },
  3368. {
  3369. "__type__": "cc.Widget",
  3370. "_name": "",
  3371. "_objFlags": 0,
  3372. "__editorExtras__": {},
  3373. "node": {
  3374. "__id__": 88
  3375. },
  3376. "_enabled": true,
  3377. "__prefab": {
  3378. "__id__": 140
  3379. },
  3380. "_alignFlags": 45,
  3381. "_target": null,
  3382. "_left": 0,
  3383. "_right": 0,
  3384. "_top": 0,
  3385. "_bottom": 0,
  3386. "_horizontalCenter": 0,
  3387. "_verticalCenter": 0,
  3388. "_isAbsLeft": true,
  3389. "_isAbsRight": true,
  3390. "_isAbsTop": true,
  3391. "_isAbsBottom": true,
  3392. "_isAbsHorizontalCenter": true,
  3393. "_isAbsVerticalCenter": true,
  3394. "_originalWidth": 100,
  3395. "_originalHeight": 100,
  3396. "_alignMode": 2,
  3397. "_lockFlags": 0,
  3398. "_id": ""
  3399. },
  3400. {
  3401. "__type__": "cc.CompPrefabInfo",
  3402. "fileId": "efD8JuT2tF1Jq1TgezzmrS"
  3403. },
  3404. {
  3405. "__type__": "cc.PrefabInfo",
  3406. "root": {
  3407. "__id__": 1
  3408. },
  3409. "asset": {
  3410. "__id__": 0
  3411. },
  3412. "fileId": "9dJaZTrpVDX4/elzMKytXH",
  3413. "instance": null,
  3414. "targetOverrides": null,
  3415. "nestedPrefabInstanceRoots": null
  3416. },
  3417. {
  3418. "__type__": "cc.Node",
  3419. "_name": "Button",
  3420. "_objFlags": 0,
  3421. "__editorExtras__": {},
  3422. "_parent": {
  3423. "__id__": 1
  3424. },
  3425. "_children": [
  3426. {
  3427. "__id__": 143
  3428. }
  3429. ],
  3430. "_active": true,
  3431. "_components": [
  3432. {
  3433. "__id__": 149
  3434. },
  3435. {
  3436. "__id__": 151
  3437. },
  3438. {
  3439. "__id__": 153
  3440. }
  3441. ],
  3442. "_prefab": {
  3443. "__id__": 156
  3444. },
  3445. "_lpos": {
  3446. "__type__": "cc.Vec3",
  3447. "x": -286.371,
  3448. "y": 242.055,
  3449. "z": 0
  3450. },
  3451. "_lrot": {
  3452. "__type__": "cc.Quat",
  3453. "x": 0,
  3454. "y": 0,
  3455. "z": 0,
  3456. "w": 1
  3457. },
  3458. "_lscale": {
  3459. "__type__": "cc.Vec3",
  3460. "x": 1,
  3461. "y": 1,
  3462. "z": 1
  3463. },
  3464. "_mobility": 0,
  3465. "_layer": 33554432,
  3466. "_euler": {
  3467. "__type__": "cc.Vec3",
  3468. "x": 0,
  3469. "y": 0,
  3470. "z": 0
  3471. },
  3472. "_id": ""
  3473. },
  3474. {
  3475. "__type__": "cc.Node",
  3476. "_name": "Label",
  3477. "_objFlags": 512,
  3478. "__editorExtras__": {},
  3479. "_parent": {
  3480. "__id__": 142
  3481. },
  3482. "_children": [],
  3483. "_active": true,
  3484. "_components": [
  3485. {
  3486. "__id__": 144
  3487. },
  3488. {
  3489. "__id__": 146
  3490. }
  3491. ],
  3492. "_prefab": {
  3493. "__id__": 148
  3494. },
  3495. "_lpos": {
  3496. "__type__": "cc.Vec3",
  3497. "x": 0,
  3498. "y": 0,
  3499. "z": 0
  3500. },
  3501. "_lrot": {
  3502. "__type__": "cc.Quat",
  3503. "x": 0,
  3504. "y": 0,
  3505. "z": 0,
  3506. "w": 1
  3507. },
  3508. "_lscale": {
  3509. "__type__": "cc.Vec3",
  3510. "x": 1,
  3511. "y": 1,
  3512. "z": 1
  3513. },
  3514. "_mobility": 0,
  3515. "_layer": 33554432,
  3516. "_euler": {
  3517. "__type__": "cc.Vec3",
  3518. "x": 0,
  3519. "y": 0,
  3520. "z": 0
  3521. },
  3522. "_id": ""
  3523. },
  3524. {
  3525. "__type__": "cc.UITransform",
  3526. "_name": "",
  3527. "_objFlags": 0,
  3528. "__editorExtras__": {},
  3529. "node": {
  3530. "__id__": 143
  3531. },
  3532. "_enabled": true,
  3533. "__prefab": {
  3534. "__id__": 145
  3535. },
  3536. "_contentSize": {
  3537. "__type__": "cc.Size",
  3538. "width": 100,
  3539. "height": 40
  3540. },
  3541. "_anchorPoint": {
  3542. "__type__": "cc.Vec2",
  3543. "x": 0.5,
  3544. "y": 0.5
  3545. },
  3546. "_id": ""
  3547. },
  3548. {
  3549. "__type__": "cc.CompPrefabInfo",
  3550. "fileId": "53qVv1sn5GVbTPhJU7Ir40"
  3551. },
  3552. {
  3553. "__type__": "cc.Label",
  3554. "_name": "",
  3555. "_objFlags": 0,
  3556. "__editorExtras__": {},
  3557. "node": {
  3558. "__id__": 143
  3559. },
  3560. "_enabled": true,
  3561. "__prefab": {
  3562. "__id__": 147
  3563. },
  3564. "_customMaterial": null,
  3565. "_srcBlendFactor": 2,
  3566. "_dstBlendFactor": 4,
  3567. "_color": {
  3568. "__type__": "cc.Color",
  3569. "r": 255,
  3570. "g": 255,
  3571. "b": 255,
  3572. "a": 255
  3573. },
  3574. "_string": "找小熊",
  3575. "_horizontalAlign": 1,
  3576. "_verticalAlign": 1,
  3577. "_actualFontSize": 20,
  3578. "_fontSize": 20,
  3579. "_fontFamily": "Arial",
  3580. "_lineHeight": 40,
  3581. "_overflow": 1,
  3582. "_enableWrapText": false,
  3583. "_font": null,
  3584. "_isSystemFontUsed": true,
  3585. "_spacingX": 0,
  3586. "_isItalic": false,
  3587. "_isBold": true,
  3588. "_isUnderline": false,
  3589. "_underlineHeight": 2,
  3590. "_cacheMode": 0,
  3591. "_enableOutline": true,
  3592. "_outlineColor": {
  3593. "__type__": "cc.Color",
  3594. "r": 73,
  3595. "g": 59,
  3596. "b": 14,
  3597. "a": 255
  3598. },
  3599. "_outlineWidth": 2,
  3600. "_enableShadow": false,
  3601. "_shadowColor": {
  3602. "__type__": "cc.Color",
  3603. "r": 0,
  3604. "g": 0,
  3605. "b": 0,
  3606. "a": 255
  3607. },
  3608. "_shadowOffset": {
  3609. "__type__": "cc.Vec2",
  3610. "x": 2,
  3611. "y": 2
  3612. },
  3613. "_shadowBlur": 2,
  3614. "_id": ""
  3615. },
  3616. {
  3617. "__type__": "cc.CompPrefabInfo",
  3618. "fileId": "aemoAaXxlM8qGJcSzo1pFQ"
  3619. },
  3620. {
  3621. "__type__": "cc.PrefabInfo",
  3622. "root": {
  3623. "__id__": 1
  3624. },
  3625. "asset": {
  3626. "__id__": 0
  3627. },
  3628. "fileId": "e8q+8hUc1I/46OG8N4Crml",
  3629. "instance": null,
  3630. "targetOverrides": null,
  3631. "nestedPrefabInstanceRoots": null
  3632. },
  3633. {
  3634. "__type__": "cc.UITransform",
  3635. "_name": "",
  3636. "_objFlags": 0,
  3637. "__editorExtras__": {},
  3638. "node": {
  3639. "__id__": 142
  3640. },
  3641. "_enabled": true,
  3642. "__prefab": {
  3643. "__id__": 150
  3644. },
  3645. "_contentSize": {
  3646. "__type__": "cc.Size",
  3647. "width": 100,
  3648. "height": 40
  3649. },
  3650. "_anchorPoint": {
  3651. "__type__": "cc.Vec2",
  3652. "x": 0.5,
  3653. "y": 0.5
  3654. },
  3655. "_id": ""
  3656. },
  3657. {
  3658. "__type__": "cc.CompPrefabInfo",
  3659. "fileId": "29EiCvsMRD+pyvsvdJA6I8"
  3660. },
  3661. {
  3662. "__type__": "cc.Sprite",
  3663. "_name": "",
  3664. "_objFlags": 0,
  3665. "__editorExtras__": {},
  3666. "node": {
  3667. "__id__": 142
  3668. },
  3669. "_enabled": true,
  3670. "__prefab": {
  3671. "__id__": 152
  3672. },
  3673. "_customMaterial": null,
  3674. "_srcBlendFactor": 2,
  3675. "_dstBlendFactor": 4,
  3676. "_color": {
  3677. "__type__": "cc.Color",
  3678. "r": 223,
  3679. "g": 158,
  3680. "b": 61,
  3681. "a": 255
  3682. },
  3683. "_spriteFrame": {
  3684. "__uuid__": "1058df99-7541-4d80-ba6a-ae543d1583b9@f9941",
  3685. "__expectedType__": "cc.SpriteFrame"
  3686. },
  3687. "_type": 1,
  3688. "_fillType": 0,
  3689. "_sizeMode": 0,
  3690. "_fillCenter": {
  3691. "__type__": "cc.Vec2",
  3692. "x": 0,
  3693. "y": 0
  3694. },
  3695. "_fillStart": 0,
  3696. "_fillRange": 0,
  3697. "_isTrimmedMode": true,
  3698. "_useGrayscale": false,
  3699. "_atlas": null,
  3700. "_id": ""
  3701. },
  3702. {
  3703. "__type__": "cc.CompPrefabInfo",
  3704. "fileId": "64IEBmyhlDB4MPNG4FT2aj"
  3705. },
  3706. {
  3707. "__type__": "cc.Button",
  3708. "_name": "",
  3709. "_objFlags": 0,
  3710. "__editorExtras__": {},
  3711. "node": {
  3712. "__id__": 142
  3713. },
  3714. "_enabled": true,
  3715. "__prefab": {
  3716. "__id__": 154
  3717. },
  3718. "clickEvents": [
  3719. {
  3720. "__id__": 155
  3721. }
  3722. ],
  3723. "_interactable": true,
  3724. "_transition": 3,
  3725. "_normalColor": {
  3726. "__type__": "cc.Color",
  3727. "r": 214,
  3728. "g": 214,
  3729. "b": 214,
  3730. "a": 255
  3731. },
  3732. "_hoverColor": {
  3733. "__type__": "cc.Color",
  3734. "r": 211,
  3735. "g": 211,
  3736. "b": 211,
  3737. "a": 255
  3738. },
  3739. "_pressedColor": {
  3740. "__type__": "cc.Color",
  3741. "r": 255,
  3742. "g": 255,
  3743. "b": 255,
  3744. "a": 255
  3745. },
  3746. "_disabledColor": {
  3747. "__type__": "cc.Color",
  3748. "r": 124,
  3749. "g": 124,
  3750. "b": 124,
  3751. "a": 255
  3752. },
  3753. "_normalSprite": {
  3754. "__uuid__": "1058df99-7541-4d80-ba6a-ae543d1583b9@f9941",
  3755. "__expectedType__": "cc.SpriteFrame"
  3756. },
  3757. "_hoverSprite": {
  3758. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3759. "__expectedType__": "cc.SpriteFrame"
  3760. },
  3761. "_pressedSprite": {
  3762. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3763. "__expectedType__": "cc.SpriteFrame"
  3764. },
  3765. "_disabledSprite": {
  3766. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3767. "__expectedType__": "cc.SpriteFrame"
  3768. },
  3769. "_duration": 0.1,
  3770. "_zoomScale": 1.2,
  3771. "_target": {
  3772. "__id__": 142
  3773. },
  3774. "_id": ""
  3775. },
  3776. {
  3777. "__type__": "cc.CompPrefabInfo",
  3778. "fileId": "55NYmXto1CAZKoa/dIaLL/"
  3779. },
  3780. {
  3781. "__type__": "cc.ClickEvent",
  3782. "target": {
  3783. "__id__": 1
  3784. },
  3785. "component": "",
  3786. "_componentId": "9f988Z4/jRBTbGBB8iPmzIu",
  3787. "handler": "onEditToolPanelClick",
  3788. "customEventData": ""
  3789. },
  3790. {
  3791. "__type__": "cc.PrefabInfo",
  3792. "root": {
  3793. "__id__": 1
  3794. },
  3795. "asset": {
  3796. "__id__": 0
  3797. },
  3798. "fileId": "0an9MCt71C6JN1svHDxVzj",
  3799. "instance": null,
  3800. "targetOverrides": null,
  3801. "nestedPrefabInstanceRoots": null
  3802. },
  3803. {
  3804. "__type__": "cc.UITransform",
  3805. "_name": "",
  3806. "_objFlags": 0,
  3807. "__editorExtras__": {},
  3808. "node": {
  3809. "__id__": 1
  3810. },
  3811. "_enabled": true,
  3812. "__prefab": {
  3813. "__id__": 158
  3814. },
  3815. "_contentSize": {
  3816. "__type__": "cc.Size",
  3817. "width": 720,
  3818. "height": 1280
  3819. },
  3820. "_anchorPoint": {
  3821. "__type__": "cc.Vec2",
  3822. "x": 0.5,
  3823. "y": 0.5
  3824. },
  3825. "_id": ""
  3826. },
  3827. {
  3828. "__type__": "cc.CompPrefabInfo",
  3829. "fileId": "10Ha9kC91KEYy/zNDMlk5D"
  3830. },
  3831. {
  3832. "__type__": "cc.Widget",
  3833. "_name": "",
  3834. "_objFlags": 0,
  3835. "__editorExtras__": {},
  3836. "node": {
  3837. "__id__": 1
  3838. },
  3839. "_enabled": true,
  3840. "__prefab": {
  3841. "__id__": 160
  3842. },
  3843. "_alignFlags": 45,
  3844. "_target": null,
  3845. "_left": 0,
  3846. "_right": 0,
  3847. "_top": 0,
  3848. "_bottom": 0,
  3849. "_horizontalCenter": 0,
  3850. "_verticalCenter": 0,
  3851. "_isAbsLeft": true,
  3852. "_isAbsRight": true,
  3853. "_isAbsTop": true,
  3854. "_isAbsBottom": true,
  3855. "_isAbsHorizontalCenter": true,
  3856. "_isAbsVerticalCenter": true,
  3857. "_originalWidth": 100,
  3858. "_originalHeight": 100,
  3859. "_alignMode": 1,
  3860. "_lockFlags": 0,
  3861. "_id": ""
  3862. },
  3863. {
  3864. "__type__": "cc.CompPrefabInfo",
  3865. "fileId": "90JBvZ8vJOiLanefEhReP1"
  3866. },
  3867. {
  3868. "__type__": "9f988Z4/jRBTbGBB8iPmzIu",
  3869. "_name": "",
  3870. "_objFlags": 0,
  3871. "__editorExtras__": {},
  3872. "node": {
  3873. "__id__": 1
  3874. },
  3875. "_enabled": true,
  3876. "__prefab": {
  3877. "__id__": 162
  3878. },
  3879. "btn_start": {
  3880. "__id__": 28
  3881. },
  3882. "node_cebianlan": {
  3883. "__id__": 88
  3884. },
  3885. "_id": ""
  3886. },
  3887. {
  3888. "__type__": "cc.CompPrefabInfo",
  3889. "fileId": "7bqJsQac5Lfoz9ikNSH0f4"
  3890. },
  3891. {
  3892. "__type__": "cc.PrefabInfo",
  3893. "root": {
  3894. "__id__": 1
  3895. },
  3896. "asset": {
  3897. "__id__": 0
  3898. },
  3899. "fileId": "eeiJvaG8NCRIjjPe5mKQWF",
  3900. "instance": null,
  3901. "targetOverrides": null
  3902. }
  3903. ]