ClubUserSet.prefab 71 KB

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