ClubUserScore.prefab 78 KB

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