RoomList.prefab 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378
  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": "RoomList",
  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__": 28
  31. },
  32. {
  33. "__id__": 49
  34. }
  35. ],
  36. "_active": true,
  37. "_components": [],
  38. "_prefab": {
  39. "__id__": 91
  40. },
  41. "_opacity": 255,
  42. "_color": {
  43. "__type__": "cc.Color",
  44. "r": 255,
  45. "g": 255,
  46. "b": 255,
  47. "a": 255
  48. },
  49. "_contentSize": {
  50. "__type__": "cc.Size",
  51. "width": 0,
  52. "height": 0
  53. },
  54. "_anchorPoint": {
  55. "__type__": "cc.Vec2",
  56. "x": 0.5,
  57. "y": 0.5
  58. },
  59. "_trs": {
  60. "__type__": "TypedArray",
  61. "ctor": "Float64Array",
  62. "array": [
  63. 0,
  64. 0,
  65. 0,
  66. 0,
  67. 0,
  68. 0,
  69. 1,
  70. 1,
  71. 1,
  72. 1
  73. ]
  74. },
  75. "_eulerAngles": {
  76. "__type__": "cc.Vec3",
  77. "x": 0,
  78. "y": 0,
  79. "z": 0
  80. },
  81. "_skewX": 0,
  82. "_skewY": 0,
  83. "_is3DNode": false,
  84. "_groupIndex": 0,
  85. "groupIndex": 0,
  86. "_id": ""
  87. },
  88. {
  89. "__type__": "cc.Node",
  90. "_name": "NoClick",
  91. "_objFlags": 0,
  92. "_parent": {
  93. "__id__": 1
  94. },
  95. "_children": [],
  96. "_active": true,
  97. "_components": [
  98. {
  99. "__id__": 3
  100. },
  101. {
  102. "__id__": 4
  103. }
  104. ],
  105. "_prefab": {
  106. "__id__": 5
  107. },
  108. "_opacity": 150,
  109. "_color": {
  110. "__type__": "cc.Color",
  111. "r": 0,
  112. "g": 0,
  113. "b": 0,
  114. "a": 255
  115. },
  116. "_contentSize": {
  117. "__type__": "cc.Size",
  118. "width": 2280,
  119. "height": 1400
  120. },
  121. "_anchorPoint": {
  122. "__type__": "cc.Vec2",
  123. "x": 0.5,
  124. "y": 0.5
  125. },
  126. "_trs": {
  127. "__type__": "TypedArray",
  128. "ctor": "Float64Array",
  129. "array": [
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 0,
  135. 0,
  136. 1,
  137. 1,
  138. 1,
  139. 1
  140. ]
  141. },
  142. "_eulerAngles": {
  143. "__type__": "cc.Vec3",
  144. "x": 0,
  145. "y": 0,
  146. "z": 0
  147. },
  148. "_skewX": 0,
  149. "_skewY": 0,
  150. "_is3DNode": false,
  151. "_groupIndex": 0,
  152. "groupIndex": 0,
  153. "_id": ""
  154. },
  155. {
  156. "__type__": "cc.Sprite",
  157. "_name": "",
  158. "_objFlags": 0,
  159. "node": {
  160. "__id__": 2
  161. },
  162. "_enabled": true,
  163. "_materials": [
  164. {
  165. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  166. }
  167. ],
  168. "_srcBlendFactor": 770,
  169. "_dstBlendFactor": 771,
  170. "_spriteFrame": {
  171. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  172. },
  173. "_type": 0,
  174. "_sizeMode": 0,
  175. "_fillType": 0,
  176. "_fillCenter": {
  177. "__type__": "cc.Vec2",
  178. "x": 0,
  179. "y": 0
  180. },
  181. "_fillStart": 0,
  182. "_fillRange": 0,
  183. "_isTrimmedMode": true,
  184. "_atlas": null,
  185. "_id": ""
  186. },
  187. {
  188. "__type__": "cc.Button",
  189. "_name": "",
  190. "_objFlags": 0,
  191. "node": {
  192. "__id__": 2
  193. },
  194. "_enabled": true,
  195. "_normalMaterial": null,
  196. "_grayMaterial": null,
  197. "duration": 0.1,
  198. "zoomScale": 1.2,
  199. "clickEvents": [],
  200. "_N$interactable": true,
  201. "_N$enableAutoGrayEffect": false,
  202. "_N$transition": 0,
  203. "transition": 0,
  204. "_N$normalColor": {
  205. "__type__": "cc.Color",
  206. "r": 214,
  207. "g": 214,
  208. "b": 214,
  209. "a": 255
  210. },
  211. "_N$pressedColor": {
  212. "__type__": "cc.Color",
  213. "r": 211,
  214. "g": 211,
  215. "b": 211,
  216. "a": 255
  217. },
  218. "pressedColor": {
  219. "__type__": "cc.Color",
  220. "r": 211,
  221. "g": 211,
  222. "b": 211,
  223. "a": 255
  224. },
  225. "_N$hoverColor": {
  226. "__type__": "cc.Color",
  227. "r": 255,
  228. "g": 255,
  229. "b": 255,
  230. "a": 255
  231. },
  232. "hoverColor": {
  233. "__type__": "cc.Color",
  234. "r": 255,
  235. "g": 255,
  236. "b": 255,
  237. "a": 255
  238. },
  239. "_N$disabledColor": {
  240. "__type__": "cc.Color",
  241. "r": 124,
  242. "g": 124,
  243. "b": 124,
  244. "a": 255
  245. },
  246. "_N$normalSprite": null,
  247. "_N$pressedSprite": null,
  248. "pressedSprite": null,
  249. "_N$hoverSprite": null,
  250. "hoverSprite": null,
  251. "_N$disabledSprite": null,
  252. "_N$target": {
  253. "__id__": 2
  254. },
  255. "_id": ""
  256. },
  257. {
  258. "__type__": "cc.PrefabInfo",
  259. "root": {
  260. "__id__": 1
  261. },
  262. "asset": {
  263. "__id__": 0
  264. },
  265. "fileId": "a1wS7l8ANG0ZBCw6CWGmwP",
  266. "sync": false
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "BGs",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 1
  274. },
  275. "_children": [
  276. {
  277. "__id__": 7
  278. }
  279. ],
  280. "_active": true,
  281. "_components": [
  282. {
  283. "__id__": 20
  284. }
  285. ],
  286. "_prefab": {
  287. "__id__": 21
  288. },
  289. "_opacity": 255,
  290. "_color": {
  291. "__type__": "cc.Color",
  292. "r": 255,
  293. "g": 255,
  294. "b": 255,
  295. "a": 255
  296. },
  297. "_contentSize": {
  298. "__type__": "cc.Size",
  299. "width": 1114,
  300. "height": 656
  301. },
  302. "_anchorPoint": {
  303. "__type__": "cc.Vec2",
  304. "x": 0.5,
  305. "y": 0.5
  306. },
  307. "_trs": {
  308. "__type__": "TypedArray",
  309. "ctor": "Float64Array",
  310. "array": [
  311. 0,
  312. 0,
  313. 0,
  314. 0,
  315. 0,
  316. 0,
  317. 1,
  318. 1,
  319. 1,
  320. 1
  321. ]
  322. },
  323. "_eulerAngles": {
  324. "__type__": "cc.Vec3",
  325. "x": 0,
  326. "y": 0,
  327. "z": 0
  328. },
  329. "_skewX": 0,
  330. "_skewY": 0,
  331. "_is3DNode": false,
  332. "_groupIndex": 0,
  333. "groupIndex": 0,
  334. "_id": ""
  335. },
  336. {
  337. "__type__": "cc.Node",
  338. "_name": "BGT",
  339. "_objFlags": 0,
  340. "_parent": {
  341. "__id__": 6
  342. },
  343. "_children": [
  344. {
  345. "__id__": 8
  346. },
  347. {
  348. "__id__": 13
  349. },
  350. {
  351. "__id__": 16
  352. }
  353. ],
  354. "_active": true,
  355. "_components": [],
  356. "_prefab": {
  357. "__id__": 19
  358. },
  359. "_opacity": 255,
  360. "_color": {
  361. "__type__": "cc.Color",
  362. "r": 255,
  363. "g": 255,
  364. "b": 255,
  365. "a": 255
  366. },
  367. "_contentSize": {
  368. "__type__": "cc.Size",
  369. "width": 0,
  370. "height": 0
  371. },
  372. "_anchorPoint": {
  373. "__type__": "cc.Vec2",
  374. "x": 0.5,
  375. "y": 0.5
  376. },
  377. "_trs": {
  378. "__type__": "TypedArray",
  379. "ctor": "Float64Array",
  380. "array": [
  381. 0,
  382. 283,
  383. 0,
  384. 0,
  385. 0,
  386. 0,
  387. 1,
  388. 1,
  389. 1,
  390. 1
  391. ]
  392. },
  393. "_eulerAngles": {
  394. "__type__": "cc.Vec3",
  395. "x": 0,
  396. "y": 0,
  397. "z": 0
  398. },
  399. "_skewX": 0,
  400. "_skewY": 0,
  401. "_is3DNode": false,
  402. "_groupIndex": 0,
  403. "groupIndex": 0,
  404. "_id": ""
  405. },
  406. {
  407. "__type__": "cc.Node",
  408. "_name": "BtCloseDlg",
  409. "_objFlags": 0,
  410. "_parent": {
  411. "__id__": 7
  412. },
  413. "_children": [],
  414. "_active": true,
  415. "_components": [
  416. {
  417. "__id__": 9
  418. },
  419. {
  420. "__id__": 10
  421. }
  422. ],
  423. "_prefab": {
  424. "__id__": 12
  425. },
  426. "_opacity": 255,
  427. "_color": {
  428. "__type__": "cc.Color",
  429. "r": 255,
  430. "g": 255,
  431. "b": 255,
  432. "a": 255
  433. },
  434. "_contentSize": {
  435. "__type__": "cc.Size",
  436. "width": 52,
  437. "height": 55
  438. },
  439. "_anchorPoint": {
  440. "__type__": "cc.Vec2",
  441. "x": 0.5,
  442. "y": 0.5
  443. },
  444. "_trs": {
  445. "__type__": "TypedArray",
  446. "ctor": "Float64Array",
  447. "array": [
  448. 498,
  449. 0,
  450. 0,
  451. 0,
  452. 0,
  453. 0,
  454. 1,
  455. 1,
  456. 1,
  457. 1
  458. ]
  459. },
  460. "_eulerAngles": {
  461. "__type__": "cc.Vec3",
  462. "x": 0,
  463. "y": 0,
  464. "z": 0
  465. },
  466. "_skewX": 0,
  467. "_skewY": 0,
  468. "_is3DNode": false,
  469. "_groupIndex": 0,
  470. "groupIndex": 0,
  471. "_id": ""
  472. },
  473. {
  474. "__type__": "cc.Sprite",
  475. "_name": "",
  476. "_objFlags": 0,
  477. "node": {
  478. "__id__": 8
  479. },
  480. "_enabled": true,
  481. "_materials": [
  482. {
  483. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  484. }
  485. ],
  486. "_srcBlendFactor": 770,
  487. "_dstBlendFactor": 771,
  488. "_spriteFrame": {
  489. "__uuid__": "0af21981-27d3-4f38-a8c5-4dcc169dc3f8"
  490. },
  491. "_type": 0,
  492. "_sizeMode": 1,
  493. "_fillType": 0,
  494. "_fillCenter": {
  495. "__type__": "cc.Vec2",
  496. "x": 0,
  497. "y": 0
  498. },
  499. "_fillStart": 0,
  500. "_fillRange": 0,
  501. "_isTrimmedMode": true,
  502. "_atlas": null,
  503. "_id": ""
  504. },
  505. {
  506. "__type__": "cc.Button",
  507. "_name": "",
  508. "_objFlags": 0,
  509. "node": {
  510. "__id__": 8
  511. },
  512. "_enabled": true,
  513. "_normalMaterial": null,
  514. "_grayMaterial": null,
  515. "duration": 0,
  516. "zoomScale": 1.2,
  517. "clickEvents": [
  518. {
  519. "__id__": 11
  520. }
  521. ],
  522. "_N$interactable": true,
  523. "_N$enableAutoGrayEffect": false,
  524. "_N$transition": 1,
  525. "transition": 1,
  526. "_N$normalColor": {
  527. "__type__": "cc.Color",
  528. "r": 255,
  529. "g": 255,
  530. "b": 255,
  531. "a": 255
  532. },
  533. "_N$pressedColor": {
  534. "__type__": "cc.Color",
  535. "r": 180,
  536. "g": 180,
  537. "b": 180,
  538. "a": 255
  539. },
  540. "pressedColor": {
  541. "__type__": "cc.Color",
  542. "r": 180,
  543. "g": 180,
  544. "b": 180,
  545. "a": 255
  546. },
  547. "_N$hoverColor": {
  548. "__type__": "cc.Color",
  549. "r": 255,
  550. "g": 255,
  551. "b": 255,
  552. "a": 255
  553. },
  554. "hoverColor": {
  555. "__type__": "cc.Color",
  556. "r": 255,
  557. "g": 255,
  558. "b": 255,
  559. "a": 255
  560. },
  561. "_N$disabledColor": {
  562. "__type__": "cc.Color",
  563. "r": 255,
  564. "g": 255,
  565. "b": 255,
  566. "a": 255
  567. },
  568. "_N$normalSprite": null,
  569. "_N$pressedSprite": null,
  570. "pressedSprite": null,
  571. "_N$hoverSprite": null,
  572. "hoverSprite": null,
  573. "_N$disabledSprite": null,
  574. "_N$target": {
  575. "__id__": 8
  576. },
  577. "_id": ""
  578. },
  579. {
  580. "__type__": "cc.ClickEvent",
  581. "target": {
  582. "__id__": 1
  583. },
  584. "component": "",
  585. "_componentId": "0e73fxpdONP4IbDOWfsu/dk",
  586. "handler": "HideView",
  587. "customEventData": ""
  588. },
  589. {
  590. "__type__": "cc.PrefabInfo",
  591. "root": {
  592. "__id__": 1
  593. },
  594. "asset": {
  595. "__id__": 0
  596. },
  597. "fileId": "ac8XyL/pJNoIW2jxgi4sG6",
  598. "sync": false
  599. },
  600. {
  601. "__type__": "cc.Node",
  602. "_name": "BGT3",
  603. "_objFlags": 0,
  604. "_parent": {
  605. "__id__": 7
  606. },
  607. "_children": [],
  608. "_active": true,
  609. "_components": [
  610. {
  611. "__id__": 14
  612. }
  613. ],
  614. "_prefab": {
  615. "__id__": 15
  616. },
  617. "_opacity": 255,
  618. "_color": {
  619. "__type__": "cc.Color",
  620. "r": 255,
  621. "g": 255,
  622. "b": 255,
  623. "a": 255
  624. },
  625. "_contentSize": {
  626. "__type__": "cc.Size",
  627. "width": 421,
  628. "height": 28
  629. },
  630. "_anchorPoint": {
  631. "__type__": "cc.Vec2",
  632. "x": 0.5,
  633. "y": 0.5
  634. },
  635. "_trs": {
  636. "__type__": "TypedArray",
  637. "ctor": "Float64Array",
  638. "array": [
  639. 0,
  640. 0,
  641. 0,
  642. 0,
  643. 0,
  644. 0,
  645. 1,
  646. 1,
  647. 1,
  648. 1
  649. ]
  650. },
  651. "_eulerAngles": {
  652. "__type__": "cc.Vec3",
  653. "x": 0,
  654. "y": 0,
  655. "z": 0
  656. },
  657. "_skewX": 0,
  658. "_skewY": 0,
  659. "_is3DNode": false,
  660. "_groupIndex": 0,
  661. "groupIndex": 0,
  662. "_id": ""
  663. },
  664. {
  665. "__type__": "cc.Sprite",
  666. "_name": "",
  667. "_objFlags": 0,
  668. "node": {
  669. "__id__": 13
  670. },
  671. "_enabled": true,
  672. "_materials": [
  673. {
  674. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  675. }
  676. ],
  677. "_srcBlendFactor": 770,
  678. "_dstBlendFactor": 771,
  679. "_spriteFrame": {
  680. "__uuid__": "6b58055b-5b84-4f90-9ed8-e9097240f3a5"
  681. },
  682. "_type": 0,
  683. "_sizeMode": 1,
  684. "_fillType": 0,
  685. "_fillCenter": {
  686. "__type__": "cc.Vec2",
  687. "x": 0,
  688. "y": 0
  689. },
  690. "_fillStart": 0,
  691. "_fillRange": 0,
  692. "_isTrimmedMode": true,
  693. "_atlas": null,
  694. "_id": ""
  695. },
  696. {
  697. "__type__": "cc.PrefabInfo",
  698. "root": {
  699. "__id__": 1
  700. },
  701. "asset": {
  702. "__id__": 0
  703. },
  704. "fileId": "daLobE7VhAfoBSsZEei0/7",
  705. "sync": false
  706. },
  707. {
  708. "__type__": "cc.Node",
  709. "_name": "TTips",
  710. "_objFlags": 0,
  711. "_parent": {
  712. "__id__": 7
  713. },
  714. "_children": [],
  715. "_active": true,
  716. "_components": [
  717. {
  718. "__id__": 17
  719. }
  720. ],
  721. "_prefab": {
  722. "__id__": 18
  723. },
  724. "_opacity": 255,
  725. "_color": {
  726. "__type__": "cc.Color",
  727. "r": 255,
  728. "g": 255,
  729. "b": 255,
  730. "a": 255
  731. },
  732. "_contentSize": {
  733. "__type__": "cc.Size",
  734. "width": 179,
  735. "height": 51
  736. },
  737. "_anchorPoint": {
  738. "__type__": "cc.Vec2",
  739. "x": 0.5,
  740. "y": 0.5
  741. },
  742. "_trs": {
  743. "__type__": "TypedArray",
  744. "ctor": "Float64Array",
  745. "array": [
  746. 0,
  747. 0,
  748. 0,
  749. 0,
  750. 0,
  751. 0,
  752. 1,
  753. 1,
  754. 1,
  755. 1
  756. ]
  757. },
  758. "_eulerAngles": {
  759. "__type__": "cc.Vec3",
  760. "x": 0,
  761. "y": 0,
  762. "z": 0
  763. },
  764. "_skewX": 0,
  765. "_skewY": 0,
  766. "_is3DNode": false,
  767. "_groupIndex": 0,
  768. "groupIndex": 0,
  769. "_id": ""
  770. },
  771. {
  772. "__type__": "cc.Sprite",
  773. "_name": "",
  774. "_objFlags": 0,
  775. "node": {
  776. "__id__": 16
  777. },
  778. "_enabled": true,
  779. "_materials": [
  780. {
  781. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  782. }
  783. ],
  784. "_srcBlendFactor": 770,
  785. "_dstBlendFactor": 771,
  786. "_spriteFrame": {
  787. "__uuid__": "cba4f1dc-a65b-4810-9d2e-245a819feddf"
  788. },
  789. "_type": 0,
  790. "_sizeMode": 1,
  791. "_fillType": 0,
  792. "_fillCenter": {
  793. "__type__": "cc.Vec2",
  794. "x": 0,
  795. "y": 0
  796. },
  797. "_fillStart": 0,
  798. "_fillRange": 0,
  799. "_isTrimmedMode": true,
  800. "_atlas": null,
  801. "_id": ""
  802. },
  803. {
  804. "__type__": "cc.PrefabInfo",
  805. "root": {
  806. "__id__": 1
  807. },
  808. "asset": {
  809. "__id__": 0
  810. },
  811. "fileId": "15KgrumSJCy6CavuonQHjd",
  812. "sync": false
  813. },
  814. {
  815. "__type__": "cc.PrefabInfo",
  816. "root": {
  817. "__id__": 1
  818. },
  819. "asset": {
  820. "__id__": 0
  821. },
  822. "fileId": "4exAo0T7dHrJeCBzOtmjEr",
  823. "sync": false
  824. },
  825. {
  826. "__type__": "cc.Sprite",
  827. "_name": "",
  828. "_objFlags": 0,
  829. "node": {
  830. "__id__": 6
  831. },
  832. "_enabled": true,
  833. "_materials": [
  834. {
  835. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  836. }
  837. ],
  838. "_srcBlendFactor": 770,
  839. "_dstBlendFactor": 771,
  840. "_spriteFrame": {
  841. "__uuid__": "347e4d98-c13a-47f9-8740-f1eaa7a39a3c"
  842. },
  843. "_type": 1,
  844. "_sizeMode": 1,
  845. "_fillType": 0,
  846. "_fillCenter": {
  847. "__type__": "cc.Vec2",
  848. "x": 0,
  849. "y": 0
  850. },
  851. "_fillStart": 0,
  852. "_fillRange": 0,
  853. "_isTrimmedMode": true,
  854. "_atlas": null,
  855. "_id": ""
  856. },
  857. {
  858. "__type__": "cc.PrefabInfo",
  859. "root": {
  860. "__id__": 1
  861. },
  862. "asset": {
  863. "__id__": 0
  864. },
  865. "fileId": "c55HaRXiJINJ2m7T7Hg1tZ",
  866. "sync": false
  867. },
  868. {
  869. "__type__": "cc.Node",
  870. "_name": "NoRoom",
  871. "_objFlags": 0,
  872. "_parent": {
  873. "__id__": 1
  874. },
  875. "_children": [
  876. {
  877. "__id__": 23
  878. }
  879. ],
  880. "_active": false,
  881. "_components": [
  882. {
  883. "__id__": 26
  884. }
  885. ],
  886. "_prefab": {
  887. "__id__": 27
  888. },
  889. "_opacity": 255,
  890. "_color": {
  891. "__type__": "cc.Color",
  892. "r": 211,
  893. "g": 187,
  894. "b": 241,
  895. "a": 255
  896. },
  897. "_contentSize": {
  898. "__type__": "cc.Size",
  899. "width": 360,
  900. "height": 40.32
  901. },
  902. "_anchorPoint": {
  903. "__type__": "cc.Vec2",
  904. "x": 0.5,
  905. "y": 0.5
  906. },
  907. "_trs": {
  908. "__type__": "TypedArray",
  909. "ctor": "Float64Array",
  910. "array": [
  911. 0,
  912. -68,
  913. 0,
  914. 0,
  915. 0,
  916. 0,
  917. 1,
  918. 1,
  919. 1,
  920. 1
  921. ]
  922. },
  923. "_eulerAngles": {
  924. "__type__": "cc.Vec3",
  925. "x": 0,
  926. "y": 0,
  927. "z": 0
  928. },
  929. "_skewX": 0,
  930. "_skewY": 0,
  931. "_is3DNode": false,
  932. "_groupIndex": 0,
  933. "groupIndex": 0,
  934. "_id": ""
  935. },
  936. {
  937. "__type__": "cc.Node",
  938. "_name": "NoRecord",
  939. "_objFlags": 0,
  940. "_parent": {
  941. "__id__": 22
  942. },
  943. "_children": [],
  944. "_active": true,
  945. "_components": [
  946. {
  947. "__id__": 24
  948. }
  949. ],
  950. "_prefab": {
  951. "__id__": 25
  952. },
  953. "_opacity": 255,
  954. "_color": {
  955. "__type__": "cc.Color",
  956. "r": 255,
  957. "g": 255,
  958. "b": 255,
  959. "a": 255
  960. },
  961. "_contentSize": {
  962. "__type__": "cc.Size",
  963. "width": 414,
  964. "height": 342
  965. },
  966. "_anchorPoint": {
  967. "__type__": "cc.Vec2",
  968. "x": 0.5,
  969. "y": 0.5
  970. },
  971. "_trs": {
  972. "__type__": "TypedArray",
  973. "ctor": "Float64Array",
  974. "array": [
  975. 0,
  976. 73.8,
  977. 0,
  978. 0,
  979. 0,
  980. 0,
  981. 1,
  982. 1,
  983. 1,
  984. 1
  985. ]
  986. },
  987. "_eulerAngles": {
  988. "__type__": "cc.Vec3",
  989. "x": 0,
  990. "y": 0,
  991. "z": 0
  992. },
  993. "_skewX": 0,
  994. "_skewY": 0,
  995. "_is3DNode": false,
  996. "_groupIndex": 0,
  997. "groupIndex": 0,
  998. "_id": ""
  999. },
  1000. {
  1001. "__type__": "cc.Sprite",
  1002. "_name": "",
  1003. "_objFlags": 0,
  1004. "node": {
  1005. "__id__": 23
  1006. },
  1007. "_enabled": true,
  1008. "_materials": [
  1009. {
  1010. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1011. }
  1012. ],
  1013. "_srcBlendFactor": 770,
  1014. "_dstBlendFactor": 771,
  1015. "_spriteFrame": {
  1016. "__uuid__": "ec79f727-9b61-434b-be84-90a2eb87235f"
  1017. },
  1018. "_type": 0,
  1019. "_sizeMode": 1,
  1020. "_fillType": 0,
  1021. "_fillCenter": {
  1022. "__type__": "cc.Vec2",
  1023. "x": 0,
  1024. "y": 0
  1025. },
  1026. "_fillStart": 0,
  1027. "_fillRange": 0,
  1028. "_isTrimmedMode": true,
  1029. "_atlas": null,
  1030. "_id": ""
  1031. },
  1032. {
  1033. "__type__": "cc.PrefabInfo",
  1034. "root": {
  1035. "__id__": 1
  1036. },
  1037. "asset": {
  1038. "__id__": 0
  1039. },
  1040. "fileId": "a8uOY1hzJG1boluRXrVb/t",
  1041. "sync": false
  1042. },
  1043. {
  1044. "__type__": "cc.Label",
  1045. "_name": "",
  1046. "_objFlags": 0,
  1047. "node": {
  1048. "__id__": 22
  1049. },
  1050. "_enabled": false,
  1051. "_materials": [
  1052. {
  1053. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1054. }
  1055. ],
  1056. "_srcBlendFactor": 770,
  1057. "_dstBlendFactor": 771,
  1058. "_string": "没有房间,快去创建一个吧",
  1059. "_N$string": "没有房间,快去创建一个吧",
  1060. "_fontSize": 30,
  1061. "_lineHeight": 32,
  1062. "_enableWrapText": true,
  1063. "_N$file": {
  1064. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1065. },
  1066. "_isSystemFontUsed": false,
  1067. "_spacingX": 0,
  1068. "_batchAsBitmap": false,
  1069. "_styleFlags": 0,
  1070. "_underlineHeight": 0,
  1071. "_N$horizontalAlign": 0,
  1072. "_N$verticalAlign": 0,
  1073. "_N$fontFamily": "Arial",
  1074. "_N$overflow": 0,
  1075. "_N$cacheMode": 0,
  1076. "_id": ""
  1077. },
  1078. {
  1079. "__type__": "cc.PrefabInfo",
  1080. "root": {
  1081. "__id__": 1
  1082. },
  1083. "asset": {
  1084. "__id__": 0
  1085. },
  1086. "fileId": "1buwuCTaJI1K4CggcOAFhK",
  1087. "sync": false
  1088. },
  1089. {
  1090. "__type__": "cc.Node",
  1091. "_name": "BGTitle",
  1092. "_objFlags": 0,
  1093. "_parent": {
  1094. "__id__": 1
  1095. },
  1096. "_children": [
  1097. {
  1098. "__id__": 29
  1099. },
  1100. {
  1101. "__id__": 32
  1102. },
  1103. {
  1104. "__id__": 35
  1105. },
  1106. {
  1107. "__id__": 38
  1108. },
  1109. {
  1110. "__id__": 41
  1111. },
  1112. {
  1113. "__id__": 44
  1114. }
  1115. ],
  1116. "_active": true,
  1117. "_components": [
  1118. {
  1119. "__id__": 47
  1120. }
  1121. ],
  1122. "_prefab": {
  1123. "__id__": 48
  1124. },
  1125. "_opacity": 255,
  1126. "_color": {
  1127. "__type__": "cc.Color",
  1128. "r": 255,
  1129. "g": 255,
  1130. "b": 255,
  1131. "a": 255
  1132. },
  1133. "_contentSize": {
  1134. "__type__": "cc.Size",
  1135. "width": 1043,
  1136. "height": 41
  1137. },
  1138. "_anchorPoint": {
  1139. "__type__": "cc.Vec2",
  1140. "x": 0.5,
  1141. "y": 0.5
  1142. },
  1143. "_trs": {
  1144. "__type__": "TypedArray",
  1145. "ctor": "Float64Array",
  1146. "array": [
  1147. 0,
  1148. 203.546,
  1149. 0,
  1150. 0,
  1151. 0,
  1152. 0,
  1153. 1,
  1154. 1,
  1155. 1,
  1156. 1
  1157. ]
  1158. },
  1159. "_eulerAngles": {
  1160. "__type__": "cc.Vec3",
  1161. "x": 0,
  1162. "y": 0,
  1163. "z": 0
  1164. },
  1165. "_skewX": 0,
  1166. "_skewY": 0,
  1167. "_is3DNode": false,
  1168. "_groupIndex": 0,
  1169. "groupIndex": 0,
  1170. "_id": ""
  1171. },
  1172. {
  1173. "__type__": "cc.Node",
  1174. "_name": "RoomNum",
  1175. "_objFlags": 0,
  1176. "_parent": {
  1177. "__id__": 28
  1178. },
  1179. "_children": [],
  1180. "_active": true,
  1181. "_components": [
  1182. {
  1183. "__id__": 30
  1184. }
  1185. ],
  1186. "_prefab": {
  1187. "__id__": 31
  1188. },
  1189. "_opacity": 255,
  1190. "_color": {
  1191. "__type__": "cc.Color",
  1192. "r": 201,
  1193. "g": 73,
  1194. "b": 36,
  1195. "a": 255
  1196. },
  1197. "_contentSize": {
  1198. "__type__": "cc.Size",
  1199. "width": 66,
  1200. "height": 30.24
  1201. },
  1202. "_anchorPoint": {
  1203. "__type__": "cc.Vec2",
  1204. "x": 0.5,
  1205. "y": 0.5
  1206. },
  1207. "_trs": {
  1208. "__type__": "TypedArray",
  1209. "ctor": "Float64Array",
  1210. "array": [
  1211. -377,
  1212. 1,
  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__": 29
  1242. },
  1243. "_enabled": true,
  1244. "_materials": [
  1245. {
  1246. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1247. }
  1248. ],
  1249. "_srcBlendFactor": 770,
  1250. "_dstBlendFactor": 771,
  1251. "_string": "房間號",
  1252. "_N$string": "房間號",
  1253. "_fontSize": 22,
  1254. "_lineHeight": 24,
  1255. "_enableWrapText": true,
  1256. "_N$file": {
  1257. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1258. },
  1259. "_isSystemFontUsed": false,
  1260. "_spacingX": 0,
  1261. "_batchAsBitmap": false,
  1262. "_styleFlags": 0,
  1263. "_underlineHeight": 0,
  1264. "_N$horizontalAlign": 1,
  1265. "_N$verticalAlign": 1,
  1266. "_N$fontFamily": "Arial",
  1267. "_N$overflow": 0,
  1268. "_N$cacheMode": 0,
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.PrefabInfo",
  1273. "root": {
  1274. "__id__": 1
  1275. },
  1276. "asset": {
  1277. "__id__": 0
  1278. },
  1279. "fileId": "dc4XdYOPtEma+vmI0zXdsz",
  1280. "sync": false
  1281. },
  1282. {
  1283. "__type__": "cc.Node",
  1284. "_name": "Score",
  1285. "_objFlags": 0,
  1286. "_parent": {
  1287. "__id__": 28
  1288. },
  1289. "_children": [],
  1290. "_active": true,
  1291. "_components": [
  1292. {
  1293. "__id__": 33
  1294. }
  1295. ],
  1296. "_prefab": {
  1297. "__id__": 34
  1298. },
  1299. "_opacity": 255,
  1300. "_color": {
  1301. "__type__": "cc.Color",
  1302. "r": 201,
  1303. "g": 73,
  1304. "b": 36,
  1305. "a": 255
  1306. },
  1307. "_contentSize": {
  1308. "__type__": "cc.Size",
  1309. "width": 44,
  1310. "height": 30.24
  1311. },
  1312. "_anchorPoint": {
  1313. "__type__": "cc.Vec2",
  1314. "x": 0.5,
  1315. "y": 0.5
  1316. },
  1317. "_trs": {
  1318. "__type__": "TypedArray",
  1319. "ctor": "Float64Array",
  1320. "array": [
  1321. -222,
  1322. 0,
  1323. 0,
  1324. 0,
  1325. 0,
  1326. 0,
  1327. 1,
  1328. 1,
  1329. 1,
  1330. 1
  1331. ]
  1332. },
  1333. "_eulerAngles": {
  1334. "__type__": "cc.Vec3",
  1335. "x": 0,
  1336. "y": 0,
  1337. "z": 0
  1338. },
  1339. "_skewX": 0,
  1340. "_skewY": 0,
  1341. "_is3DNode": false,
  1342. "_groupIndex": 0,
  1343. "groupIndex": 0,
  1344. "_id": ""
  1345. },
  1346. {
  1347. "__type__": "cc.Label",
  1348. "_name": "",
  1349. "_objFlags": 0,
  1350. "node": {
  1351. "__id__": 32
  1352. },
  1353. "_enabled": true,
  1354. "_materials": [
  1355. {
  1356. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1357. }
  1358. ],
  1359. "_srcBlendFactor": 770,
  1360. "_dstBlendFactor": 771,
  1361. "_string": "底分",
  1362. "_N$string": "底分",
  1363. "_fontSize": 22,
  1364. "_lineHeight": 24,
  1365. "_enableWrapText": true,
  1366. "_N$file": {
  1367. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1368. },
  1369. "_isSystemFontUsed": false,
  1370. "_spacingX": 0,
  1371. "_batchAsBitmap": false,
  1372. "_styleFlags": 0,
  1373. "_underlineHeight": 0,
  1374. "_N$horizontalAlign": 1,
  1375. "_N$verticalAlign": 1,
  1376. "_N$fontFamily": "Arial",
  1377. "_N$overflow": 0,
  1378. "_N$cacheMode": 0,
  1379. "_id": ""
  1380. },
  1381. {
  1382. "__type__": "cc.PrefabInfo",
  1383. "root": {
  1384. "__id__": 1
  1385. },
  1386. "asset": {
  1387. "__id__": 0
  1388. },
  1389. "fileId": "d0okPRj+ZBK5TRM5VmlcNs",
  1390. "sync": false
  1391. },
  1392. {
  1393. "__type__": "cc.Node",
  1394. "_name": "Rule",
  1395. "_objFlags": 0,
  1396. "_parent": {
  1397. "__id__": 28
  1398. },
  1399. "_children": [],
  1400. "_active": true,
  1401. "_components": [
  1402. {
  1403. "__id__": 36
  1404. }
  1405. ],
  1406. "_prefab": {
  1407. "__id__": 37
  1408. },
  1409. "_opacity": 255,
  1410. "_color": {
  1411. "__type__": "cc.Color",
  1412. "r": 201,
  1413. "g": 73,
  1414. "b": 36,
  1415. "a": 255
  1416. },
  1417. "_contentSize": {
  1418. "__type__": "cc.Size",
  1419. "width": 44,
  1420. "height": 30.24
  1421. },
  1422. "_anchorPoint": {
  1423. "__type__": "cc.Vec2",
  1424. "x": 0.5,
  1425. "y": 0.5
  1426. },
  1427. "_trs": {
  1428. "__type__": "TypedArray",
  1429. "ctor": "Float64Array",
  1430. "array": [
  1431. -66,
  1432. 0,
  1433. 0,
  1434. 0,
  1435. 0,
  1436. 0,
  1437. 1,
  1438. 1,
  1439. 1,
  1440. 1
  1441. ]
  1442. },
  1443. "_eulerAngles": {
  1444. "__type__": "cc.Vec3",
  1445. "x": 0,
  1446. "y": 0,
  1447. "z": 0
  1448. },
  1449. "_skewX": 0,
  1450. "_skewY": 0,
  1451. "_is3DNode": false,
  1452. "_groupIndex": 0,
  1453. "groupIndex": 0,
  1454. "_id": ""
  1455. },
  1456. {
  1457. "__type__": "cc.Label",
  1458. "_name": "",
  1459. "_objFlags": 0,
  1460. "node": {
  1461. "__id__": 35
  1462. },
  1463. "_enabled": true,
  1464. "_materials": [
  1465. {
  1466. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1467. }
  1468. ],
  1469. "_srcBlendFactor": 770,
  1470. "_dstBlendFactor": 771,
  1471. "_string": "玩法",
  1472. "_N$string": "玩法",
  1473. "_fontSize": 22,
  1474. "_lineHeight": 24,
  1475. "_enableWrapText": true,
  1476. "_N$file": {
  1477. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1478. },
  1479. "_isSystemFontUsed": false,
  1480. "_spacingX": 0,
  1481. "_batchAsBitmap": false,
  1482. "_styleFlags": 0,
  1483. "_underlineHeight": 0,
  1484. "_N$horizontalAlign": 1,
  1485. "_N$verticalAlign": 1,
  1486. "_N$fontFamily": "Arial",
  1487. "_N$overflow": 0,
  1488. "_N$cacheMode": 0,
  1489. "_id": ""
  1490. },
  1491. {
  1492. "__type__": "cc.PrefabInfo",
  1493. "root": {
  1494. "__id__": 1
  1495. },
  1496. "asset": {
  1497. "__id__": 0
  1498. },
  1499. "fileId": "e9rKtQNFdMUp9Smtzt1SD6",
  1500. "sync": false
  1501. },
  1502. {
  1503. "__type__": "cc.Node",
  1504. "_name": "Pay",
  1505. "_objFlags": 0,
  1506. "_parent": {
  1507. "__id__": 28
  1508. },
  1509. "_children": [],
  1510. "_active": true,
  1511. "_components": [
  1512. {
  1513. "__id__": 39
  1514. }
  1515. ],
  1516. "_prefab": {
  1517. "__id__": 40
  1518. },
  1519. "_opacity": 255,
  1520. "_color": {
  1521. "__type__": "cc.Color",
  1522. "r": 201,
  1523. "g": 73,
  1524. "b": 36,
  1525. "a": 255
  1526. },
  1527. "_contentSize": {
  1528. "__type__": "cc.Size",
  1529. "width": 44,
  1530. "height": 30.24
  1531. },
  1532. "_anchorPoint": {
  1533. "__type__": "cc.Vec2",
  1534. "x": 0.5,
  1535. "y": 0.5
  1536. },
  1537. "_trs": {
  1538. "__type__": "TypedArray",
  1539. "ctor": "Float64Array",
  1540. "array": [
  1541. 89,
  1542. 0,
  1543. 0,
  1544. 0,
  1545. 0,
  1546. 0,
  1547. 1,
  1548. 1,
  1549. 1,
  1550. 1
  1551. ]
  1552. },
  1553. "_eulerAngles": {
  1554. "__type__": "cc.Vec3",
  1555. "x": 0,
  1556. "y": 0,
  1557. "z": 0
  1558. },
  1559. "_skewX": 0,
  1560. "_skewY": 0,
  1561. "_is3DNode": false,
  1562. "_groupIndex": 0,
  1563. "groupIndex": 0,
  1564. "_id": ""
  1565. },
  1566. {
  1567. "__type__": "cc.Label",
  1568. "_name": "",
  1569. "_objFlags": 0,
  1570. "node": {
  1571. "__id__": 38
  1572. },
  1573. "_enabled": true,
  1574. "_materials": [
  1575. {
  1576. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1577. }
  1578. ],
  1579. "_srcBlendFactor": 770,
  1580. "_dstBlendFactor": 771,
  1581. "_string": "支付",
  1582. "_N$string": "支付",
  1583. "_fontSize": 22,
  1584. "_lineHeight": 24,
  1585. "_enableWrapText": true,
  1586. "_N$file": {
  1587. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1588. },
  1589. "_isSystemFontUsed": false,
  1590. "_spacingX": 0,
  1591. "_batchAsBitmap": false,
  1592. "_styleFlags": 0,
  1593. "_underlineHeight": 0,
  1594. "_N$horizontalAlign": 1,
  1595. "_N$verticalAlign": 1,
  1596. "_N$fontFamily": "Arial",
  1597. "_N$overflow": 0,
  1598. "_N$cacheMode": 0,
  1599. "_id": ""
  1600. },
  1601. {
  1602. "__type__": "cc.PrefabInfo",
  1603. "root": {
  1604. "__id__": 1
  1605. },
  1606. "asset": {
  1607. "__id__": 0
  1608. },
  1609. "fileId": "ca0dUjsAlIaora/CC8Hgnj",
  1610. "sync": false
  1611. },
  1612. {
  1613. "__type__": "cc.Node",
  1614. "_name": "Subroom",
  1615. "_objFlags": 0,
  1616. "_parent": {
  1617. "__id__": 28
  1618. },
  1619. "_children": [],
  1620. "_active": true,
  1621. "_components": [
  1622. {
  1623. "__id__": 42
  1624. }
  1625. ],
  1626. "_prefab": {
  1627. "__id__": 43
  1628. },
  1629. "_opacity": 255,
  1630. "_color": {
  1631. "__type__": "cc.Color",
  1632. "r": 201,
  1633. "g": 73,
  1634. "b": 36,
  1635. "a": 255
  1636. },
  1637. "_contentSize": {
  1638. "__type__": "cc.Size",
  1639. "width": 44,
  1640. "height": 30.24
  1641. },
  1642. "_anchorPoint": {
  1643. "__type__": "cc.Vec2",
  1644. "x": 0.5,
  1645. "y": 0.5
  1646. },
  1647. "_trs": {
  1648. "__type__": "TypedArray",
  1649. "ctor": "Float64Array",
  1650. "array": [
  1651. 245,
  1652. 0,
  1653. 0,
  1654. 0,
  1655. 0,
  1656. 0,
  1657. 1,
  1658. 1,
  1659. 1,
  1660. 1
  1661. ]
  1662. },
  1663. "_eulerAngles": {
  1664. "__type__": "cc.Vec3",
  1665. "x": 0,
  1666. "y": 0,
  1667. "z": 0
  1668. },
  1669. "_skewX": 0,
  1670. "_skewY": 0,
  1671. "_is3DNode": false,
  1672. "_groupIndex": 0,
  1673. "groupIndex": 0,
  1674. "_id": ""
  1675. },
  1676. {
  1677. "__type__": "cc.Label",
  1678. "_name": "",
  1679. "_objFlags": 0,
  1680. "node": {
  1681. "__id__": 41
  1682. },
  1683. "_enabled": true,
  1684. "_materials": [
  1685. {
  1686. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1687. }
  1688. ],
  1689. "_srcBlendFactor": 770,
  1690. "_dstBlendFactor": 771,
  1691. "_string": "局數",
  1692. "_N$string": "局數",
  1693. "_fontSize": 22,
  1694. "_lineHeight": 24,
  1695. "_enableWrapText": true,
  1696. "_N$file": {
  1697. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1698. },
  1699. "_isSystemFontUsed": false,
  1700. "_spacingX": 0,
  1701. "_batchAsBitmap": false,
  1702. "_styleFlags": 0,
  1703. "_underlineHeight": 0,
  1704. "_N$horizontalAlign": 1,
  1705. "_N$verticalAlign": 1,
  1706. "_N$fontFamily": "Arial",
  1707. "_N$overflow": 0,
  1708. "_N$cacheMode": 0,
  1709. "_id": ""
  1710. },
  1711. {
  1712. "__type__": "cc.PrefabInfo",
  1713. "root": {
  1714. "__id__": 1
  1715. },
  1716. "asset": {
  1717. "__id__": 0
  1718. },
  1719. "fileId": "743LTj0ndIhpxRX/HOWVgM",
  1720. "sync": false
  1721. },
  1722. {
  1723. "__type__": "cc.Node",
  1724. "_name": "People",
  1725. "_objFlags": 0,
  1726. "_parent": {
  1727. "__id__": 28
  1728. },
  1729. "_children": [],
  1730. "_active": true,
  1731. "_components": [
  1732. {
  1733. "__id__": 45
  1734. }
  1735. ],
  1736. "_prefab": {
  1737. "__id__": 46
  1738. },
  1739. "_opacity": 255,
  1740. "_color": {
  1741. "__type__": "cc.Color",
  1742. "r": 201,
  1743. "g": 73,
  1744. "b": 36,
  1745. "a": 255
  1746. },
  1747. "_contentSize": {
  1748. "__type__": "cc.Size",
  1749. "width": 44,
  1750. "height": 30.24
  1751. },
  1752. "_anchorPoint": {
  1753. "__type__": "cc.Vec2",
  1754. "x": 0.5,
  1755. "y": 0.5
  1756. },
  1757. "_trs": {
  1758. "__type__": "TypedArray",
  1759. "ctor": "Float64Array",
  1760. "array": [
  1761. 400,
  1762. 0,
  1763. 0,
  1764. 0,
  1765. 0,
  1766. 0,
  1767. 1,
  1768. 1,
  1769. 1,
  1770. 1
  1771. ]
  1772. },
  1773. "_eulerAngles": {
  1774. "__type__": "cc.Vec3",
  1775. "x": 0,
  1776. "y": 0,
  1777. "z": 0
  1778. },
  1779. "_skewX": 0,
  1780. "_skewY": 0,
  1781. "_is3DNode": false,
  1782. "_groupIndex": 0,
  1783. "groupIndex": 0,
  1784. "_id": ""
  1785. },
  1786. {
  1787. "__type__": "cc.Label",
  1788. "_name": "",
  1789. "_objFlags": 0,
  1790. "node": {
  1791. "__id__": 44
  1792. },
  1793. "_enabled": true,
  1794. "_materials": [
  1795. {
  1796. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1797. }
  1798. ],
  1799. "_srcBlendFactor": 770,
  1800. "_dstBlendFactor": 771,
  1801. "_string": "人數",
  1802. "_N$string": "人數",
  1803. "_fontSize": 22,
  1804. "_lineHeight": 24,
  1805. "_enableWrapText": true,
  1806. "_N$file": {
  1807. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1808. },
  1809. "_isSystemFontUsed": false,
  1810. "_spacingX": 0,
  1811. "_batchAsBitmap": false,
  1812. "_styleFlags": 0,
  1813. "_underlineHeight": 0,
  1814. "_N$horizontalAlign": 1,
  1815. "_N$verticalAlign": 1,
  1816. "_N$fontFamily": "Arial",
  1817. "_N$overflow": 0,
  1818. "_N$cacheMode": 0,
  1819. "_id": ""
  1820. },
  1821. {
  1822. "__type__": "cc.PrefabInfo",
  1823. "root": {
  1824. "__id__": 1
  1825. },
  1826. "asset": {
  1827. "__id__": 0
  1828. },
  1829. "fileId": "bbfVYDiUBA2pYrKpOfWfMF",
  1830. "sync": false
  1831. },
  1832. {
  1833. "__type__": "cc.Sprite",
  1834. "_name": "",
  1835. "_objFlags": 0,
  1836. "node": {
  1837. "__id__": 28
  1838. },
  1839. "_enabled": true,
  1840. "_materials": [
  1841. {
  1842. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1843. }
  1844. ],
  1845. "_srcBlendFactor": 770,
  1846. "_dstBlendFactor": 771,
  1847. "_spriteFrame": {
  1848. "__uuid__": "41e58609-d2d7-459d-a177-0e5d8e39d90b"
  1849. },
  1850. "_type": 1,
  1851. "_sizeMode": 1,
  1852. "_fillType": 0,
  1853. "_fillCenter": {
  1854. "__type__": "cc.Vec2",
  1855. "x": 0,
  1856. "y": 0
  1857. },
  1858. "_fillStart": 0,
  1859. "_fillRange": 0,
  1860. "_isTrimmedMode": true,
  1861. "_atlas": null,
  1862. "_id": ""
  1863. },
  1864. {
  1865. "__type__": "cc.PrefabInfo",
  1866. "root": {
  1867. "__id__": 1
  1868. },
  1869. "asset": {
  1870. "__id__": 0
  1871. },
  1872. "fileId": "21RFJJqF9DwJ+BanXkqvod",
  1873. "sync": false
  1874. },
  1875. {
  1876. "__type__": "cc.Node",
  1877. "_name": "ScrollView",
  1878. "_objFlags": 0,
  1879. "_parent": {
  1880. "__id__": 1
  1881. },
  1882. "_children": [
  1883. {
  1884. "__id__": 50
  1885. },
  1886. {
  1887. "__id__": 57
  1888. }
  1889. ],
  1890. "_active": true,
  1891. "_components": [
  1892. {
  1893. "__id__": 55
  1894. }
  1895. ],
  1896. "_prefab": {
  1897. "__id__": 90
  1898. },
  1899. "_opacity": 255,
  1900. "_color": {
  1901. "__type__": "cc.Color",
  1902. "r": 255,
  1903. "g": 255,
  1904. "b": 255,
  1905. "a": 255
  1906. },
  1907. "_contentSize": {
  1908. "__type__": "cc.Size",
  1909. "width": 1060,
  1910. "height": 480
  1911. },
  1912. "_anchorPoint": {
  1913. "__type__": "cc.Vec2",
  1914. "x": 0.5,
  1915. "y": 0.5
  1916. },
  1917. "_trs": {
  1918. "__type__": "TypedArray",
  1919. "ctor": "Float64Array",
  1920. "array": [
  1921. 0,
  1922. -67,
  1923. 0,
  1924. 0,
  1925. 0,
  1926. 0,
  1927. 1,
  1928. 1,
  1929. 1,
  1930. 1
  1931. ]
  1932. },
  1933. "_eulerAngles": {
  1934. "__type__": "cc.Vec3",
  1935. "x": 0,
  1936. "y": 0,
  1937. "z": 0
  1938. },
  1939. "_skewX": 0,
  1940. "_skewY": 0,
  1941. "_is3DNode": false,
  1942. "_groupIndex": 0,
  1943. "groupIndex": 0,
  1944. "_id": ""
  1945. },
  1946. {
  1947. "__type__": "cc.Node",
  1948. "_name": "scrollBar",
  1949. "_objFlags": 0,
  1950. "_parent": {
  1951. "__id__": 49
  1952. },
  1953. "_children": [
  1954. {
  1955. "__id__": 51
  1956. }
  1957. ],
  1958. "_active": false,
  1959. "_components": [
  1960. {
  1961. "__id__": 54
  1962. },
  1963. {
  1964. "__id__": 87
  1965. },
  1966. {
  1967. "__id__": 88
  1968. }
  1969. ],
  1970. "_prefab": {
  1971. "__id__": 89
  1972. },
  1973. "_opacity": 255,
  1974. "_color": {
  1975. "__type__": "cc.Color",
  1976. "r": 255,
  1977. "g": 255,
  1978. "b": 255,
  1979. "a": 255
  1980. },
  1981. "_contentSize": {
  1982. "__type__": "cc.Size",
  1983. "width": 12,
  1984. "height": 390
  1985. },
  1986. "_anchorPoint": {
  1987. "__type__": "cc.Vec2",
  1988. "x": 1,
  1989. "y": 0.5
  1990. },
  1991. "_trs": {
  1992. "__type__": "TypedArray",
  1993. "ctor": "Float64Array",
  1994. "array": [
  1995. 362,
  1996. 31,
  1997. 0,
  1998. 0,
  1999. 0,
  2000. 0,
  2001. 1,
  2002. 1,
  2003. 1,
  2004. 1
  2005. ]
  2006. },
  2007. "_eulerAngles": {
  2008. "__type__": "cc.Vec3",
  2009. "x": 0,
  2010. "y": 0,
  2011. "z": 0
  2012. },
  2013. "_skewX": 0,
  2014. "_skewY": 0,
  2015. "_is3DNode": false,
  2016. "_groupIndex": 0,
  2017. "groupIndex": 0,
  2018. "_id": ""
  2019. },
  2020. {
  2021. "__type__": "cc.Node",
  2022. "_name": "bar",
  2023. "_objFlags": 0,
  2024. "_parent": {
  2025. "__id__": 50
  2026. },
  2027. "_children": [],
  2028. "_active": true,
  2029. "_components": [
  2030. {
  2031. "__id__": 52
  2032. }
  2033. ],
  2034. "_prefab": {
  2035. "__id__": 53
  2036. },
  2037. "_opacity": 255,
  2038. "_color": {
  2039. "__type__": "cc.Color",
  2040. "r": 255,
  2041. "g": 255,
  2042. "b": 255,
  2043. "a": 255
  2044. },
  2045. "_contentSize": {
  2046. "__type__": "cc.Size",
  2047. "width": 10,
  2048. "height": 30
  2049. },
  2050. "_anchorPoint": {
  2051. "__type__": "cc.Vec2",
  2052. "x": 1,
  2053. "y": 0
  2054. },
  2055. "_trs": {
  2056. "__type__": "TypedArray",
  2057. "ctor": "Float64Array",
  2058. "array": [
  2059. -1,
  2060. 0,
  2061. 0,
  2062. 0,
  2063. 0,
  2064. 0,
  2065. 1,
  2066. 1,
  2067. 1,
  2068. 1
  2069. ]
  2070. },
  2071. "_eulerAngles": {
  2072. "__type__": "cc.Vec3",
  2073. "x": 0,
  2074. "y": 0,
  2075. "z": 0
  2076. },
  2077. "_skewX": 0,
  2078. "_skewY": 0,
  2079. "_is3DNode": false,
  2080. "_groupIndex": 0,
  2081. "groupIndex": 0,
  2082. "_id": ""
  2083. },
  2084. {
  2085. "__type__": "cc.Sprite",
  2086. "_name": "",
  2087. "_objFlags": 0,
  2088. "node": {
  2089. "__id__": 51
  2090. },
  2091. "_enabled": true,
  2092. "_materials": [
  2093. {
  2094. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2095. }
  2096. ],
  2097. "_srcBlendFactor": 770,
  2098. "_dstBlendFactor": 771,
  2099. "_spriteFrame": {
  2100. "__uuid__": "5c3bb932-6c3c-468f-88a9-c8c61d458641"
  2101. },
  2102. "_type": 1,
  2103. "_sizeMode": 0,
  2104. "_fillType": 0,
  2105. "_fillCenter": {
  2106. "__type__": "cc.Vec2",
  2107. "x": 0,
  2108. "y": 0
  2109. },
  2110. "_fillStart": 0,
  2111. "_fillRange": 0,
  2112. "_isTrimmedMode": true,
  2113. "_atlas": null,
  2114. "_id": ""
  2115. },
  2116. {
  2117. "__type__": "cc.PrefabInfo",
  2118. "root": {
  2119. "__id__": 1
  2120. },
  2121. "asset": {
  2122. "__id__": 0
  2123. },
  2124. "fileId": "68zlh8pndFI7U8d741vDuE",
  2125. "sync": false
  2126. },
  2127. {
  2128. "__type__": "cc.Scrollbar",
  2129. "_name": "",
  2130. "_objFlags": 0,
  2131. "node": {
  2132. "__id__": 50
  2133. },
  2134. "_enabled": true,
  2135. "_scrollView": {
  2136. "__id__": 55
  2137. },
  2138. "_touching": false,
  2139. "_opacity": 255,
  2140. "enableAutoHide": true,
  2141. "autoHideTime": 1,
  2142. "_N$handle": {
  2143. "__id__": 52
  2144. },
  2145. "_N$direction": 1,
  2146. "_id": ""
  2147. },
  2148. {
  2149. "__type__": "cc.ScrollView",
  2150. "_name": "",
  2151. "_objFlags": 0,
  2152. "node": {
  2153. "__id__": 49
  2154. },
  2155. "_enabled": true,
  2156. "horizontal": false,
  2157. "vertical": true,
  2158. "inertia": true,
  2159. "brake": 0.75,
  2160. "elastic": true,
  2161. "bounceDuration": 0.23,
  2162. "scrollEvents": [],
  2163. "cancelInnerEvents": true,
  2164. "_N$content": {
  2165. "__id__": 56
  2166. },
  2167. "content": {
  2168. "__id__": 56
  2169. },
  2170. "_N$horizontalScrollBar": null,
  2171. "_N$verticalScrollBar": {
  2172. "__id__": 54
  2173. },
  2174. "_id": ""
  2175. },
  2176. {
  2177. "__type__": "cc.Node",
  2178. "_name": "content",
  2179. "_objFlags": 0,
  2180. "_parent": {
  2181. "__id__": 57
  2182. },
  2183. "_children": [
  2184. {
  2185. "__id__": 60
  2186. }
  2187. ],
  2188. "_active": true,
  2189. "_components": [
  2190. {
  2191. "__id__": 85
  2192. }
  2193. ],
  2194. "_prefab": {
  2195. "__id__": 86
  2196. },
  2197. "_opacity": 255,
  2198. "_color": {
  2199. "__type__": "cc.Color",
  2200. "r": 255,
  2201. "g": 255,
  2202. "b": 255,
  2203. "a": 255
  2204. },
  2205. "_contentSize": {
  2206. "__type__": "cc.Size",
  2207. "width": 1060,
  2208. "height": 60
  2209. },
  2210. "_anchorPoint": {
  2211. "__type__": "cc.Vec2",
  2212. "x": 0.5,
  2213. "y": 1
  2214. },
  2215. "_trs": {
  2216. "__type__": "TypedArray",
  2217. "ctor": "Float64Array",
  2218. "array": [
  2219. 0,
  2220. 240,
  2221. 0,
  2222. 0,
  2223. 0,
  2224. 0,
  2225. 1,
  2226. 1,
  2227. 1,
  2228. 1
  2229. ]
  2230. },
  2231. "_eulerAngles": {
  2232. "__type__": "cc.Vec3",
  2233. "x": 0,
  2234. "y": 0,
  2235. "z": 0
  2236. },
  2237. "_skewX": 0,
  2238. "_skewY": 0,
  2239. "_is3DNode": false,
  2240. "_groupIndex": 0,
  2241. "groupIndex": 0,
  2242. "_id": ""
  2243. },
  2244. {
  2245. "__type__": "cc.Node",
  2246. "_name": "view",
  2247. "_objFlags": 0,
  2248. "_parent": {
  2249. "__id__": 49
  2250. },
  2251. "_children": [
  2252. {
  2253. "__id__": 56
  2254. }
  2255. ],
  2256. "_active": true,
  2257. "_components": [
  2258. {
  2259. "__id__": 58
  2260. }
  2261. ],
  2262. "_prefab": {
  2263. "__id__": 59
  2264. },
  2265. "_opacity": 255,
  2266. "_color": {
  2267. "__type__": "cc.Color",
  2268. "r": 255,
  2269. "g": 255,
  2270. "b": 255,
  2271. "a": 255
  2272. },
  2273. "_contentSize": {
  2274. "__type__": "cc.Size",
  2275. "width": 1060,
  2276. "height": 480
  2277. },
  2278. "_anchorPoint": {
  2279. "__type__": "cc.Vec2",
  2280. "x": 0.5,
  2281. "y": 0.5
  2282. },
  2283. "_trs": {
  2284. "__type__": "TypedArray",
  2285. "ctor": "Float64Array",
  2286. "array": [
  2287. 0,
  2288. 0,
  2289. 0,
  2290. 0,
  2291. 0,
  2292. 0,
  2293. 1,
  2294. 1,
  2295. 1,
  2296. 1
  2297. ]
  2298. },
  2299. "_eulerAngles": {
  2300. "__type__": "cc.Vec3",
  2301. "x": 0,
  2302. "y": 0,
  2303. "z": 0
  2304. },
  2305. "_skewX": 0,
  2306. "_skewY": 0,
  2307. "_is3DNode": false,
  2308. "_groupIndex": 0,
  2309. "groupIndex": 0,
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.Mask",
  2314. "_name": "",
  2315. "_objFlags": 0,
  2316. "node": {
  2317. "__id__": 57
  2318. },
  2319. "_enabled": true,
  2320. "_materials": [
  2321. {
  2322. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2323. }
  2324. ],
  2325. "_spriteFrame": null,
  2326. "_type": 0,
  2327. "_segments": 64,
  2328. "_N$alphaThreshold": 0,
  2329. "_N$inverted": false,
  2330. "_id": ""
  2331. },
  2332. {
  2333. "__type__": "cc.PrefabInfo",
  2334. "root": {
  2335. "__id__": 1
  2336. },
  2337. "asset": {
  2338. "__id__": 0
  2339. },
  2340. "fileId": "b5xoS4t8ZIbIE87S+pBc9s",
  2341. "sync": false
  2342. },
  2343. {
  2344. "__type__": "cc.Node",
  2345. "_name": "ListItem",
  2346. "_objFlags": 0,
  2347. "_parent": {
  2348. "__id__": 56
  2349. },
  2350. "_children": [
  2351. {
  2352. "__id__": 61
  2353. },
  2354. {
  2355. "__id__": 64
  2356. },
  2357. {
  2358. "__id__": 67
  2359. },
  2360. {
  2361. "__id__": 70
  2362. },
  2363. {
  2364. "__id__": 73
  2365. },
  2366. {
  2367. "__id__": 76
  2368. }
  2369. ],
  2370. "_active": true,
  2371. "_components": [
  2372. {
  2373. "__id__": 79
  2374. },
  2375. {
  2376. "__id__": 80
  2377. },
  2378. {
  2379. "__id__": 82
  2380. },
  2381. {
  2382. "__id__": 83
  2383. }
  2384. ],
  2385. "_prefab": {
  2386. "__id__": 84
  2387. },
  2388. "_opacity": 255,
  2389. "_color": {
  2390. "__type__": "cc.Color",
  2391. "r": 255,
  2392. "g": 255,
  2393. "b": 255,
  2394. "a": 255
  2395. },
  2396. "_contentSize": {
  2397. "__type__": "cc.Size",
  2398. "width": 1060,
  2399. "height": 60
  2400. },
  2401. "_anchorPoint": {
  2402. "__type__": "cc.Vec2",
  2403. "x": 0.5,
  2404. "y": 0.5
  2405. },
  2406. "_trs": {
  2407. "__type__": "TypedArray",
  2408. "ctor": "Float64Array",
  2409. "array": [
  2410. 0,
  2411. -30,
  2412. 0,
  2413. 0,
  2414. 0,
  2415. 0,
  2416. 1,
  2417. 1,
  2418. 1,
  2419. 1
  2420. ]
  2421. },
  2422. "_eulerAngles": {
  2423. "__type__": "cc.Vec3",
  2424. "x": 0,
  2425. "y": 0,
  2426. "z": 0
  2427. },
  2428. "_skewX": 0,
  2429. "_skewY": 0,
  2430. "_is3DNode": false,
  2431. "_groupIndex": 0,
  2432. "groupIndex": 0,
  2433. "_id": ""
  2434. },
  2435. {
  2436. "__type__": "cc.Node",
  2437. "_name": "room",
  2438. "_objFlags": 0,
  2439. "_parent": {
  2440. "__id__": 60
  2441. },
  2442. "_children": [],
  2443. "_active": true,
  2444. "_components": [
  2445. {
  2446. "__id__": 62
  2447. }
  2448. ],
  2449. "_prefab": {
  2450. "__id__": 63
  2451. },
  2452. "_opacity": 255,
  2453. "_color": {
  2454. "__type__": "cc.Color",
  2455. "r": 201,
  2456. "g": 73,
  2457. "b": 36,
  2458. "a": 255
  2459. },
  2460. "_contentSize": {
  2461. "__type__": "cc.Size",
  2462. "width": 66,
  2463. "height": 30.24
  2464. },
  2465. "_anchorPoint": {
  2466. "__type__": "cc.Vec2",
  2467. "x": 0.5,
  2468. "y": 0.5
  2469. },
  2470. "_trs": {
  2471. "__type__": "TypedArray",
  2472. "ctor": "Float64Array",
  2473. "array": [
  2474. -378,
  2475. 0,
  2476. 0,
  2477. 0,
  2478. 0,
  2479. 0,
  2480. 1,
  2481. 1,
  2482. 1,
  2483. 1
  2484. ]
  2485. },
  2486. "_eulerAngles": {
  2487. "__type__": "cc.Vec3",
  2488. "x": 0,
  2489. "y": 0,
  2490. "z": 0
  2491. },
  2492. "_skewX": 0,
  2493. "_skewY": 0,
  2494. "_is3DNode": false,
  2495. "_groupIndex": 0,
  2496. "groupIndex": 0,
  2497. "_id": ""
  2498. },
  2499. {
  2500. "__type__": "cc.Label",
  2501. "_name": "",
  2502. "_objFlags": 0,
  2503. "node": {
  2504. "__id__": 61
  2505. },
  2506. "_enabled": true,
  2507. "_materials": [
  2508. {
  2509. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2510. }
  2511. ],
  2512. "_srcBlendFactor": 770,
  2513. "_dstBlendFactor": 771,
  2514. "_string": "123456",
  2515. "_N$string": "123456",
  2516. "_fontSize": 22,
  2517. "_lineHeight": 24,
  2518. "_enableWrapText": true,
  2519. "_N$file": {
  2520. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2521. },
  2522. "_isSystemFontUsed": false,
  2523. "_spacingX": 0,
  2524. "_batchAsBitmap": false,
  2525. "_styleFlags": 0,
  2526. "_underlineHeight": 0,
  2527. "_N$horizontalAlign": 1,
  2528. "_N$verticalAlign": 1,
  2529. "_N$fontFamily": "Arial",
  2530. "_N$overflow": 0,
  2531. "_N$cacheMode": 0,
  2532. "_id": ""
  2533. },
  2534. {
  2535. "__type__": "cc.PrefabInfo",
  2536. "root": {
  2537. "__id__": 1
  2538. },
  2539. "asset": {
  2540. "__id__": 0
  2541. },
  2542. "fileId": "52VMuJPdNL6YhtVfgcKsUV",
  2543. "sync": false
  2544. },
  2545. {
  2546. "__type__": "cc.Node",
  2547. "_name": "score",
  2548. "_objFlags": 0,
  2549. "_parent": {
  2550. "__id__": 60
  2551. },
  2552. "_children": [],
  2553. "_active": true,
  2554. "_components": [
  2555. {
  2556. "__id__": 65
  2557. }
  2558. ],
  2559. "_prefab": {
  2560. "__id__": 66
  2561. },
  2562. "_opacity": 255,
  2563. "_color": {
  2564. "__type__": "cc.Color",
  2565. "r": 201,
  2566. "g": 73,
  2567. "b": 36,
  2568. "a": 255
  2569. },
  2570. "_contentSize": {
  2571. "__type__": "cc.Size",
  2572. "width": 11,
  2573. "height": 30.24
  2574. },
  2575. "_anchorPoint": {
  2576. "__type__": "cc.Vec2",
  2577. "x": 0.5,
  2578. "y": 0.5
  2579. },
  2580. "_trs": {
  2581. "__type__": "TypedArray",
  2582. "ctor": "Float64Array",
  2583. "array": [
  2584. -222,
  2585. 0,
  2586. 0,
  2587. 0,
  2588. 0,
  2589. 0,
  2590. 1,
  2591. 1,
  2592. 1,
  2593. 1
  2594. ]
  2595. },
  2596. "_eulerAngles": {
  2597. "__type__": "cc.Vec3",
  2598. "x": 0,
  2599. "y": 0,
  2600. "z": 0
  2601. },
  2602. "_skewX": 0,
  2603. "_skewY": 0,
  2604. "_is3DNode": false,
  2605. "_groupIndex": 0,
  2606. "groupIndex": 0,
  2607. "_id": ""
  2608. },
  2609. {
  2610. "__type__": "cc.Label",
  2611. "_name": "",
  2612. "_objFlags": 0,
  2613. "node": {
  2614. "__id__": 64
  2615. },
  2616. "_enabled": true,
  2617. "_materials": [
  2618. {
  2619. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2620. }
  2621. ],
  2622. "_srcBlendFactor": 770,
  2623. "_dstBlendFactor": 771,
  2624. "_string": "1",
  2625. "_N$string": "1",
  2626. "_fontSize": 22,
  2627. "_lineHeight": 24,
  2628. "_enableWrapText": true,
  2629. "_N$file": {
  2630. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2631. },
  2632. "_isSystemFontUsed": false,
  2633. "_spacingX": 0,
  2634. "_batchAsBitmap": false,
  2635. "_styleFlags": 0,
  2636. "_underlineHeight": 0,
  2637. "_N$horizontalAlign": 1,
  2638. "_N$verticalAlign": 1,
  2639. "_N$fontFamily": "Arial",
  2640. "_N$overflow": 0,
  2641. "_N$cacheMode": 0,
  2642. "_id": ""
  2643. },
  2644. {
  2645. "__type__": "cc.PrefabInfo",
  2646. "root": {
  2647. "__id__": 1
  2648. },
  2649. "asset": {
  2650. "__id__": 0
  2651. },
  2652. "fileId": "47IOg42zdIx62piVWiCWGd",
  2653. "sync": false
  2654. },
  2655. {
  2656. "__type__": "cc.Node",
  2657. "_name": "rule",
  2658. "_objFlags": 0,
  2659. "_parent": {
  2660. "__id__": 60
  2661. },
  2662. "_children": [],
  2663. "_active": true,
  2664. "_components": [
  2665. {
  2666. "__id__": 68
  2667. }
  2668. ],
  2669. "_prefab": {
  2670. "__id__": 69
  2671. },
  2672. "_opacity": 255,
  2673. "_color": {
  2674. "__type__": "cc.Color",
  2675. "r": 201,
  2676. "g": 73,
  2677. "b": 36,
  2678. "a": 255
  2679. },
  2680. "_contentSize": {
  2681. "__type__": "cc.Size",
  2682. "width": 88,
  2683. "height": 30.24
  2684. },
  2685. "_anchorPoint": {
  2686. "__type__": "cc.Vec2",
  2687. "x": 0.5,
  2688. "y": 0.5
  2689. },
  2690. "_trs": {
  2691. "__type__": "TypedArray",
  2692. "ctor": "Float64Array",
  2693. "array": [
  2694. -67,
  2695. 0,
  2696. 0,
  2697. 0,
  2698. 0,
  2699. 0,
  2700. 1,
  2701. 1,
  2702. 1,
  2703. 1
  2704. ]
  2705. },
  2706. "_eulerAngles": {
  2707. "__type__": "cc.Vec3",
  2708. "x": 0,
  2709. "y": 0,
  2710. "z": 0
  2711. },
  2712. "_skewX": 0,
  2713. "_skewY": 0,
  2714. "_is3DNode": false,
  2715. "_groupIndex": 0,
  2716. "groupIndex": 0,
  2717. "_id": ""
  2718. },
  2719. {
  2720. "__type__": "cc.Label",
  2721. "_name": "",
  2722. "_objFlags": 0,
  2723. "node": {
  2724. "__id__": 67
  2725. },
  2726. "_enabled": true,
  2727. "_materials": [
  2728. {
  2729. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2730. }
  2731. ],
  2732. "_srcBlendFactor": 770,
  2733. "_dstBlendFactor": 771,
  2734. "_string": "明牌搶莊",
  2735. "_N$string": "明牌搶莊",
  2736. "_fontSize": 22,
  2737. "_lineHeight": 24,
  2738. "_enableWrapText": true,
  2739. "_N$file": {
  2740. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2741. },
  2742. "_isSystemFontUsed": false,
  2743. "_spacingX": 0,
  2744. "_batchAsBitmap": false,
  2745. "_styleFlags": 0,
  2746. "_underlineHeight": 0,
  2747. "_N$horizontalAlign": 1,
  2748. "_N$verticalAlign": 1,
  2749. "_N$fontFamily": "Arial",
  2750. "_N$overflow": 0,
  2751. "_N$cacheMode": 0,
  2752. "_id": ""
  2753. },
  2754. {
  2755. "__type__": "cc.PrefabInfo",
  2756. "root": {
  2757. "__id__": 1
  2758. },
  2759. "asset": {
  2760. "__id__": 0
  2761. },
  2762. "fileId": "8dz2lriYJMRaJozNKzJ+7G",
  2763. "sync": false
  2764. },
  2765. {
  2766. "__type__": "cc.Node",
  2767. "_name": "pay",
  2768. "_objFlags": 0,
  2769. "_parent": {
  2770. "__id__": 60
  2771. },
  2772. "_children": [],
  2773. "_active": true,
  2774. "_components": [
  2775. {
  2776. "__id__": 71
  2777. }
  2778. ],
  2779. "_prefab": {
  2780. "__id__": 72
  2781. },
  2782. "_opacity": 255,
  2783. "_color": {
  2784. "__type__": "cc.Color",
  2785. "r": 201,
  2786. "g": 73,
  2787. "b": 36,
  2788. "a": 255
  2789. },
  2790. "_contentSize": {
  2791. "__type__": "cc.Size",
  2792. "width": 44,
  2793. "height": 30.24
  2794. },
  2795. "_anchorPoint": {
  2796. "__type__": "cc.Vec2",
  2797. "x": 0.5,
  2798. "y": 0.5
  2799. },
  2800. "_trs": {
  2801. "__type__": "TypedArray",
  2802. "ctor": "Float64Array",
  2803. "array": [
  2804. 89,
  2805. 0,
  2806. 0,
  2807. 0,
  2808. 0,
  2809. 0,
  2810. 1,
  2811. 1,
  2812. 1,
  2813. 1
  2814. ]
  2815. },
  2816. "_eulerAngles": {
  2817. "__type__": "cc.Vec3",
  2818. "x": 0,
  2819. "y": 0,
  2820. "z": 0
  2821. },
  2822. "_skewX": 0,
  2823. "_skewY": 0,
  2824. "_is3DNode": false,
  2825. "_groupIndex": 0,
  2826. "groupIndex": 0,
  2827. "_id": ""
  2828. },
  2829. {
  2830. "__type__": "cc.Label",
  2831. "_name": "",
  2832. "_objFlags": 0,
  2833. "node": {
  2834. "__id__": 70
  2835. },
  2836. "_enabled": true,
  2837. "_materials": [
  2838. {
  2839. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2840. }
  2841. ],
  2842. "_srcBlendFactor": 770,
  2843. "_dstBlendFactor": 771,
  2844. "_string": "房主",
  2845. "_N$string": "房主",
  2846. "_fontSize": 22,
  2847. "_lineHeight": 24,
  2848. "_enableWrapText": true,
  2849. "_N$file": {
  2850. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2851. },
  2852. "_isSystemFontUsed": false,
  2853. "_spacingX": 0,
  2854. "_batchAsBitmap": false,
  2855. "_styleFlags": 0,
  2856. "_underlineHeight": 0,
  2857. "_N$horizontalAlign": 1,
  2858. "_N$verticalAlign": 1,
  2859. "_N$fontFamily": "Arial",
  2860. "_N$overflow": 0,
  2861. "_N$cacheMode": 0,
  2862. "_id": ""
  2863. },
  2864. {
  2865. "__type__": "cc.PrefabInfo",
  2866. "root": {
  2867. "__id__": 1
  2868. },
  2869. "asset": {
  2870. "__id__": 0
  2871. },
  2872. "fileId": "19flssI41OP6opMYt+Yebr",
  2873. "sync": false
  2874. },
  2875. {
  2876. "__type__": "cc.Node",
  2877. "_name": "subroom",
  2878. "_objFlags": 0,
  2879. "_parent": {
  2880. "__id__": 60
  2881. },
  2882. "_children": [],
  2883. "_active": true,
  2884. "_components": [
  2885. {
  2886. "__id__": 74
  2887. }
  2888. ],
  2889. "_prefab": {
  2890. "__id__": 75
  2891. },
  2892. "_opacity": 255,
  2893. "_color": {
  2894. "__type__": "cc.Color",
  2895. "r": 201,
  2896. "g": 73,
  2897. "b": 36,
  2898. "a": 255
  2899. },
  2900. "_contentSize": {
  2901. "__type__": "cc.Size",
  2902. "width": 22,
  2903. "height": 30.24
  2904. },
  2905. "_anchorPoint": {
  2906. "__type__": "cc.Vec2",
  2907. "x": 0.5,
  2908. "y": 0.5
  2909. },
  2910. "_trs": {
  2911. "__type__": "TypedArray",
  2912. "ctor": "Float64Array",
  2913. "array": [
  2914. 244,
  2915. 0,
  2916. 0,
  2917. 0,
  2918. 0,
  2919. 0,
  2920. 1,
  2921. 1,
  2922. 1,
  2923. 1
  2924. ]
  2925. },
  2926. "_eulerAngles": {
  2927. "__type__": "cc.Vec3",
  2928. "x": 0,
  2929. "y": 0,
  2930. "z": 0
  2931. },
  2932. "_skewX": 0,
  2933. "_skewY": 0,
  2934. "_is3DNode": false,
  2935. "_groupIndex": 0,
  2936. "groupIndex": 0,
  2937. "_id": ""
  2938. },
  2939. {
  2940. "__type__": "cc.Label",
  2941. "_name": "",
  2942. "_objFlags": 0,
  2943. "node": {
  2944. "__id__": 73
  2945. },
  2946. "_enabled": true,
  2947. "_materials": [
  2948. {
  2949. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2950. }
  2951. ],
  2952. "_srcBlendFactor": 770,
  2953. "_dstBlendFactor": 771,
  2954. "_string": "10",
  2955. "_N$string": "10",
  2956. "_fontSize": 22,
  2957. "_lineHeight": 24,
  2958. "_enableWrapText": true,
  2959. "_N$file": {
  2960. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2961. },
  2962. "_isSystemFontUsed": false,
  2963. "_spacingX": 0,
  2964. "_batchAsBitmap": false,
  2965. "_styleFlags": 0,
  2966. "_underlineHeight": 0,
  2967. "_N$horizontalAlign": 1,
  2968. "_N$verticalAlign": 1,
  2969. "_N$fontFamily": "Arial",
  2970. "_N$overflow": 0,
  2971. "_N$cacheMode": 0,
  2972. "_id": ""
  2973. },
  2974. {
  2975. "__type__": "cc.PrefabInfo",
  2976. "root": {
  2977. "__id__": 1
  2978. },
  2979. "asset": {
  2980. "__id__": 0
  2981. },
  2982. "fileId": "1fgJnxWztKeogHKkSybBfg",
  2983. "sync": false
  2984. },
  2985. {
  2986. "__type__": "cc.Node",
  2987. "_name": "people",
  2988. "_objFlags": 0,
  2989. "_parent": {
  2990. "__id__": 60
  2991. },
  2992. "_children": [],
  2993. "_active": true,
  2994. "_components": [
  2995. {
  2996. "__id__": 77
  2997. }
  2998. ],
  2999. "_prefab": {
  3000. "__id__": 78
  3001. },
  3002. "_opacity": 255,
  3003. "_color": {
  3004. "__type__": "cc.Color",
  3005. "r": 201,
  3006. "g": 73,
  3007. "b": 36,
  3008. "a": 255
  3009. },
  3010. "_contentSize": {
  3011. "__type__": "cc.Size",
  3012. "width": 11,
  3013. "height": 30.24
  3014. },
  3015. "_anchorPoint": {
  3016. "__type__": "cc.Vec2",
  3017. "x": 0.5,
  3018. "y": 0.5
  3019. },
  3020. "_trs": {
  3021. "__type__": "TypedArray",
  3022. "ctor": "Float64Array",
  3023. "array": [
  3024. 400,
  3025. 0,
  3026. 0,
  3027. 0,
  3028. 0,
  3029. 0,
  3030. 1,
  3031. 1,
  3032. 1,
  3033. 1
  3034. ]
  3035. },
  3036. "_eulerAngles": {
  3037. "__type__": "cc.Vec3",
  3038. "x": 0,
  3039. "y": 0,
  3040. "z": 0
  3041. },
  3042. "_skewX": 0,
  3043. "_skewY": 0,
  3044. "_is3DNode": false,
  3045. "_groupIndex": 0,
  3046. "groupIndex": 0,
  3047. "_id": ""
  3048. },
  3049. {
  3050. "__type__": "cc.Label",
  3051. "_name": "",
  3052. "_objFlags": 0,
  3053. "node": {
  3054. "__id__": 76
  3055. },
  3056. "_enabled": true,
  3057. "_materials": [
  3058. {
  3059. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3060. }
  3061. ],
  3062. "_srcBlendFactor": 770,
  3063. "_dstBlendFactor": 771,
  3064. "_string": "0",
  3065. "_N$string": "0",
  3066. "_fontSize": 22,
  3067. "_lineHeight": 24,
  3068. "_enableWrapText": true,
  3069. "_N$file": {
  3070. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3071. },
  3072. "_isSystemFontUsed": false,
  3073. "_spacingX": 0,
  3074. "_batchAsBitmap": false,
  3075. "_styleFlags": 0,
  3076. "_underlineHeight": 0,
  3077. "_N$horizontalAlign": 1,
  3078. "_N$verticalAlign": 1,
  3079. "_N$fontFamily": "Arial",
  3080. "_N$overflow": 0,
  3081. "_N$cacheMode": 0,
  3082. "_id": ""
  3083. },
  3084. {
  3085. "__type__": "cc.PrefabInfo",
  3086. "root": {
  3087. "__id__": 1
  3088. },
  3089. "asset": {
  3090. "__id__": 0
  3091. },
  3092. "fileId": "32g2RvFjpMkZRt76rC448m",
  3093. "sync": false
  3094. },
  3095. {
  3096. "__type__": "3ada8b4wcJLToYfLQU9a7Po",
  3097. "_name": "",
  3098. "_objFlags": 0,
  3099. "node": {
  3100. "__id__": 60
  3101. },
  3102. "_enabled": true,
  3103. "_id": ""
  3104. },
  3105. {
  3106. "__type__": "cc.Button",
  3107. "_name": "",
  3108. "_objFlags": 0,
  3109. "node": {
  3110. "__id__": 60
  3111. },
  3112. "_enabled": true,
  3113. "_normalMaterial": null,
  3114. "_grayMaterial": null,
  3115. "duration": 0.1,
  3116. "zoomScale": 1.2,
  3117. "clickEvents": [
  3118. {
  3119. "__id__": 81
  3120. }
  3121. ],
  3122. "_N$interactable": true,
  3123. "_N$enableAutoGrayEffect": false,
  3124. "_N$transition": 0,
  3125. "transition": 0,
  3126. "_N$normalColor": {
  3127. "__type__": "cc.Color",
  3128. "r": 214,
  3129. "g": 214,
  3130. "b": 214,
  3131. "a": 255
  3132. },
  3133. "_N$pressedColor": {
  3134. "__type__": "cc.Color",
  3135. "r": 211,
  3136. "g": 211,
  3137. "b": 211,
  3138. "a": 255
  3139. },
  3140. "pressedColor": {
  3141. "__type__": "cc.Color",
  3142. "r": 211,
  3143. "g": 211,
  3144. "b": 211,
  3145. "a": 255
  3146. },
  3147. "_N$hoverColor": {
  3148. "__type__": "cc.Color",
  3149. "r": 255,
  3150. "g": 255,
  3151. "b": 255,
  3152. "a": 255
  3153. },
  3154. "hoverColor": {
  3155. "__type__": "cc.Color",
  3156. "r": 255,
  3157. "g": 255,
  3158. "b": 255,
  3159. "a": 255
  3160. },
  3161. "_N$disabledColor": {
  3162. "__type__": "cc.Color",
  3163. "r": 124,
  3164. "g": 124,
  3165. "b": 124,
  3166. "a": 255
  3167. },
  3168. "_N$normalSprite": null,
  3169. "_N$pressedSprite": null,
  3170. "pressedSprite": null,
  3171. "_N$hoverSprite": null,
  3172. "hoverSprite": null,
  3173. "_N$disabledSprite": null,
  3174. "_N$target": {
  3175. "__id__": 60
  3176. },
  3177. "_id": ""
  3178. },
  3179. {
  3180. "__type__": "cc.ClickEvent",
  3181. "target": {
  3182. "__id__": 60
  3183. },
  3184. "component": "",
  3185. "_componentId": "3ada8b4wcJLToYfLQU9a7Po",
  3186. "handler": "OnClick_EnterRoom",
  3187. "customEventData": ""
  3188. },
  3189. {
  3190. "__type__": "353abAONpRLxIbyP8DOHPCs",
  3191. "_name": "",
  3192. "_objFlags": 0,
  3193. "node": {
  3194. "__id__": 60
  3195. },
  3196. "_enabled": true,
  3197. "safeTime": 0.5,
  3198. "_id": ""
  3199. },
  3200. {
  3201. "__type__": "cc.Sprite",
  3202. "_name": "",
  3203. "_objFlags": 0,
  3204. "node": {
  3205. "__id__": 60
  3206. },
  3207. "_enabled": true,
  3208. "_materials": [
  3209. {
  3210. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3211. }
  3212. ],
  3213. "_srcBlendFactor": 770,
  3214. "_dstBlendFactor": 771,
  3215. "_spriteFrame": {
  3216. "__uuid__": "33e333e5-56d9-4374-b5d5-24da2797dd50"
  3217. },
  3218. "_type": 1,
  3219. "_sizeMode": 0,
  3220. "_fillType": 0,
  3221. "_fillCenter": {
  3222. "__type__": "cc.Vec2",
  3223. "x": 0,
  3224. "y": 0
  3225. },
  3226. "_fillStart": 0,
  3227. "_fillRange": 0,
  3228. "_isTrimmedMode": true,
  3229. "_atlas": null,
  3230. "_id": ""
  3231. },
  3232. {
  3233. "__type__": "cc.PrefabInfo",
  3234. "root": {
  3235. "__id__": 1
  3236. },
  3237. "asset": {
  3238. "__id__": 0
  3239. },
  3240. "fileId": "d1qWss0RdIq6NAnk8n1/qK",
  3241. "sync": false
  3242. },
  3243. {
  3244. "__type__": "cc.Layout",
  3245. "_name": "",
  3246. "_objFlags": 0,
  3247. "node": {
  3248. "__id__": 56
  3249. },
  3250. "_enabled": true,
  3251. "_layoutSize": {
  3252. "__type__": "cc.Size",
  3253. "width": 1060,
  3254. "height": 60
  3255. },
  3256. "_resize": 1,
  3257. "_N$layoutType": 2,
  3258. "_N$cellSize": {
  3259. "__type__": "cc.Size",
  3260. "width": 40,
  3261. "height": 40
  3262. },
  3263. "_N$startAxis": 0,
  3264. "_N$paddingLeft": 0,
  3265. "_N$paddingRight": 0,
  3266. "_N$paddingTop": 0,
  3267. "_N$paddingBottom": 0,
  3268. "_N$spacingX": 0,
  3269. "_N$spacingY": 0,
  3270. "_N$verticalDirection": 1,
  3271. "_N$horizontalDirection": 0,
  3272. "_N$affectedByScale": false,
  3273. "_id": ""
  3274. },
  3275. {
  3276. "__type__": "cc.PrefabInfo",
  3277. "root": {
  3278. "__id__": 1
  3279. },
  3280. "asset": {
  3281. "__id__": 0
  3282. },
  3283. "fileId": "caErZps6ZLrL3pmpgjI45X",
  3284. "sync": false
  3285. },
  3286. {
  3287. "__type__": "cc.Widget",
  3288. "_name": "",
  3289. "_objFlags": 0,
  3290. "node": {
  3291. "__id__": 50
  3292. },
  3293. "_enabled": true,
  3294. "alignMode": 0,
  3295. "_target": null,
  3296. "_alignFlags": 37,
  3297. "_left": 350.07654921020657,
  3298. "_right": 0,
  3299. "_top": 0,
  3300. "_bottom": 0,
  3301. "_verticalCenter": 0,
  3302. "_horizontalCenter": 0,
  3303. "_isAbsLeft": true,
  3304. "_isAbsRight": true,
  3305. "_isAbsTop": true,
  3306. "_isAbsBottom": true,
  3307. "_isAbsHorizontalCenter": true,
  3308. "_isAbsVerticalCenter": true,
  3309. "_originalWidth": 0,
  3310. "_originalHeight": 237,
  3311. "_id": ""
  3312. },
  3313. {
  3314. "__type__": "cc.Sprite",
  3315. "_name": "",
  3316. "_objFlags": 0,
  3317. "node": {
  3318. "__id__": 50
  3319. },
  3320. "_enabled": true,
  3321. "_materials": [
  3322. {
  3323. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3324. }
  3325. ],
  3326. "_srcBlendFactor": 770,
  3327. "_dstBlendFactor": 771,
  3328. "_spriteFrame": {
  3329. "__uuid__": "5fe5dcaa-b513-4dc5-a166-573627b3a159"
  3330. },
  3331. "_type": 1,
  3332. "_sizeMode": 0,
  3333. "_fillType": 0,
  3334. "_fillCenter": {
  3335. "__type__": "cc.Vec2",
  3336. "x": 0,
  3337. "y": 0
  3338. },
  3339. "_fillStart": 0,
  3340. "_fillRange": 0,
  3341. "_isTrimmedMode": true,
  3342. "_atlas": null,
  3343. "_id": ""
  3344. },
  3345. {
  3346. "__type__": "cc.PrefabInfo",
  3347. "root": {
  3348. "__id__": 1
  3349. },
  3350. "asset": {
  3351. "__id__": 0
  3352. },
  3353. "fileId": "51hkoZ4PBG1a55d4/dlXug",
  3354. "sync": false
  3355. },
  3356. {
  3357. "__type__": "cc.PrefabInfo",
  3358. "root": {
  3359. "__id__": 1
  3360. },
  3361. "asset": {
  3362. "__id__": 0
  3363. },
  3364. "fileId": "83ypTkVJNJeYpxxSAREOnY",
  3365. "sync": false
  3366. },
  3367. {
  3368. "__type__": "cc.PrefabInfo",
  3369. "root": {
  3370. "__id__": 1
  3371. },
  3372. "asset": {
  3373. "__id__": 0
  3374. },
  3375. "fileId": "",
  3376. "sync": false
  3377. }
  3378. ]