ClubGameRuleSet.prefab 73 KB

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