CreateRoom2.prefab 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970
  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": "CreateRoom2",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 9
  28. },
  29. {
  30. "__id__": 22
  31. },
  32. {
  33. "__id__": 55
  34. },
  35. {
  36. "__id__": 77
  37. }
  38. ],
  39. "_active": true,
  40. "_components": [
  41. {
  42. "__id__": 80
  43. },
  44. {
  45. "__id__": 81
  46. }
  47. ],
  48. "_prefab": {
  49. "__id__": 82
  50. },
  51. "_opacity": 255,
  52. "_color": {
  53. "__type__": "cc.Color",
  54. "r": 255,
  55. "g": 255,
  56. "b": 255,
  57. "a": 255
  58. },
  59. "_contentSize": {
  60. "__type__": "cc.Size",
  61. "width": 1280,
  62. "height": 720
  63. },
  64. "_anchorPoint": {
  65. "__type__": "cc.Vec2",
  66. "x": 0.5,
  67. "y": 0.5
  68. },
  69. "_trs": {
  70. "__type__": "TypedArray",
  71. "ctor": "Float64Array",
  72. "array": [
  73. 0,
  74. 0,
  75. 0,
  76. 0,
  77. 0,
  78. 0,
  79. 1,
  80. 1,
  81. 1,
  82. 1
  83. ]
  84. },
  85. "_eulerAngles": {
  86. "__type__": "cc.Vec3",
  87. "x": 0,
  88. "y": 0,
  89. "z": 0
  90. },
  91. "_skewX": 0,
  92. "_skewY": 0,
  93. "_is3DNode": false,
  94. "_groupIndex": 0,
  95. "groupIndex": 0,
  96. "_id": ""
  97. },
  98. {
  99. "__type__": "cc.Node",
  100. "_name": "NoClick",
  101. "_objFlags": 0,
  102. "_parent": {
  103. "__id__": 1
  104. },
  105. "_children": [],
  106. "_active": true,
  107. "_components": [
  108. {
  109. "__id__": 3
  110. },
  111. {
  112. "__id__": 4
  113. }
  114. ],
  115. "_prefab": {
  116. "__id__": 5
  117. },
  118. "_opacity": 150,
  119. "_color": {
  120. "__type__": "cc.Color",
  121. "r": 0,
  122. "g": 0,
  123. "b": 0,
  124. "a": 255
  125. },
  126. "_contentSize": {
  127. "__type__": "cc.Size",
  128. "width": 2280,
  129. "height": 1400
  130. },
  131. "_anchorPoint": {
  132. "__type__": "cc.Vec2",
  133. "x": 0.5,
  134. "y": 0.5
  135. },
  136. "_trs": {
  137. "__type__": "TypedArray",
  138. "ctor": "Float64Array",
  139. "array": [
  140. 0,
  141. 0,
  142. 0,
  143. 0,
  144. 0,
  145. 0,
  146. 1,
  147. 1,
  148. 1,
  149. 1
  150. ]
  151. },
  152. "_eulerAngles": {
  153. "__type__": "cc.Vec3",
  154. "x": 0,
  155. "y": 0,
  156. "z": 0
  157. },
  158. "_skewX": 0,
  159. "_skewY": 0,
  160. "_is3DNode": false,
  161. "_groupIndex": 0,
  162. "groupIndex": 0,
  163. "_id": ""
  164. },
  165. {
  166. "__type__": "cc.Sprite",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "node": {
  170. "__id__": 2
  171. },
  172. "_enabled": true,
  173. "_materials": [
  174. {
  175. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  176. }
  177. ],
  178. "_srcBlendFactor": 770,
  179. "_dstBlendFactor": 771,
  180. "_spriteFrame": {
  181. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  182. },
  183. "_type": 0,
  184. "_sizeMode": 0,
  185. "_fillType": 0,
  186. "_fillCenter": {
  187. "__type__": "cc.Vec2",
  188. "x": 0,
  189. "y": 0
  190. },
  191. "_fillStart": 0,
  192. "_fillRange": 0,
  193. "_isTrimmedMode": true,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.BlockInputEvents",
  199. "_name": "",
  200. "_objFlags": 0,
  201. "node": {
  202. "__id__": 2
  203. },
  204. "_enabled": true,
  205. "_id": ""
  206. },
  207. {
  208. "__type__": "cc.PrefabInfo",
  209. "root": {
  210. "__id__": 1
  211. },
  212. "asset": {
  213. "__id__": 0
  214. },
  215. "fileId": "1dbCiFhHVHtaI3t8+a8VuN",
  216. "sync": false
  217. },
  218. {
  219. "__type__": "cc.Node",
  220. "_name": "BGLobby",
  221. "_objFlags": 0,
  222. "_parent": {
  223. "__id__": 1
  224. },
  225. "_children": [],
  226. "_active": true,
  227. "_components": [
  228. {
  229. "__id__": 7
  230. }
  231. ],
  232. "_prefab": {
  233. "__id__": 8
  234. },
  235. "_opacity": 255,
  236. "_color": {
  237. "__type__": "cc.Color",
  238. "r": 255,
  239. "g": 255,
  240. "b": 255,
  241. "a": 255
  242. },
  243. "_contentSize": {
  244. "__type__": "cc.Size",
  245. "width": 1200,
  246. "height": 670
  247. },
  248. "_anchorPoint": {
  249. "__type__": "cc.Vec2",
  250. "x": 0.5,
  251. "y": 0.5
  252. },
  253. "_trs": {
  254. "__type__": "TypedArray",
  255. "ctor": "Float64Array",
  256. "array": [
  257. 0,
  258. 0,
  259. 0,
  260. 0,
  261. 0,
  262. 0,
  263. 1,
  264. 1,
  265. 1,
  266. 1
  267. ]
  268. },
  269. "_eulerAngles": {
  270. "__type__": "cc.Vec3",
  271. "x": 0,
  272. "y": 0,
  273. "z": 0
  274. },
  275. "_skewX": 0,
  276. "_skewY": 0,
  277. "_is3DNode": false,
  278. "_groupIndex": 0,
  279. "groupIndex": 0,
  280. "_id": ""
  281. },
  282. {
  283. "__type__": "cc.Sprite",
  284. "_name": "",
  285. "_objFlags": 0,
  286. "node": {
  287. "__id__": 6
  288. },
  289. "_enabled": true,
  290. "_materials": [
  291. {
  292. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  293. }
  294. ],
  295. "_srcBlendFactor": 770,
  296. "_dstBlendFactor": 771,
  297. "_spriteFrame": {
  298. "__uuid__": "70541a06-3f8a-430f-b0b0-646208e9c025"
  299. },
  300. "_type": 0,
  301. "_sizeMode": 0,
  302. "_fillType": 0,
  303. "_fillCenter": {
  304. "__type__": "cc.Vec2",
  305. "x": 0,
  306. "y": 0
  307. },
  308. "_fillStart": 0,
  309. "_fillRange": 0,
  310. "_isTrimmedMode": true,
  311. "_atlas": null,
  312. "_id": ""
  313. },
  314. {
  315. "__type__": "cc.PrefabInfo",
  316. "root": {
  317. "__id__": 1
  318. },
  319. "asset": {
  320. "__id__": 0
  321. },
  322. "fileId": "3aPmf28s9LtJDcYgIel7Ck",
  323. "sync": false
  324. },
  325. {
  326. "__type__": "cc.Node",
  327. "_name": "topBG",
  328. "_objFlags": 0,
  329. "_parent": {
  330. "__id__": 1
  331. },
  332. "_children": [
  333. {
  334. "__id__": 10
  335. },
  336. {
  337. "__id__": 15
  338. },
  339. {
  340. "__id__": 18
  341. }
  342. ],
  343. "_active": true,
  344. "_components": [],
  345. "_prefab": {
  346. "__id__": 21
  347. },
  348. "_opacity": 255,
  349. "_color": {
  350. "__type__": "cc.Color",
  351. "r": 255,
  352. "g": 255,
  353. "b": 255,
  354. "a": 255
  355. },
  356. "_contentSize": {
  357. "__type__": "cc.Size",
  358. "width": 0,
  359. "height": 0
  360. },
  361. "_anchorPoint": {
  362. "__type__": "cc.Vec2",
  363. "x": 0.5,
  364. "y": 1
  365. },
  366. "_trs": {
  367. "__type__": "TypedArray",
  368. "ctor": "Float64Array",
  369. "array": [
  370. 0,
  371. 336,
  372. 0,
  373. 0,
  374. 0,
  375. 0,
  376. 1,
  377. 1,
  378. 1,
  379. 1
  380. ]
  381. },
  382. "_eulerAngles": {
  383. "__type__": "cc.Vec3",
  384. "x": 0,
  385. "y": 0,
  386. "z": 0
  387. },
  388. "_skewX": 0,
  389. "_skewY": 0,
  390. "_is3DNode": false,
  391. "_groupIndex": 0,
  392. "groupIndex": 0,
  393. "_id": ""
  394. },
  395. {
  396. "__type__": "cc.Node",
  397. "_name": "BtCloseDlg",
  398. "_objFlags": 0,
  399. "_parent": {
  400. "__id__": 9
  401. },
  402. "_children": [],
  403. "_active": true,
  404. "_components": [
  405. {
  406. "__id__": 11
  407. },
  408. {
  409. "__id__": 12
  410. }
  411. ],
  412. "_prefab": {
  413. "__id__": 14
  414. },
  415. "_opacity": 255,
  416. "_color": {
  417. "__type__": "cc.Color",
  418. "r": 255,
  419. "g": 255,
  420. "b": 255,
  421. "a": 255
  422. },
  423. "_contentSize": {
  424. "__type__": "cc.Size",
  425. "width": 78,
  426. "height": 78
  427. },
  428. "_anchorPoint": {
  429. "__type__": "cc.Vec2",
  430. "x": 0.5,
  431. "y": 0.5
  432. },
  433. "_trs": {
  434. "__type__": "TypedArray",
  435. "ctor": "Float64Array",
  436. "array": [
  437. 579.148,
  438. -20.852,
  439. 0,
  440. 0,
  441. 0,
  442. 0,
  443. 1,
  444. 1,
  445. 1,
  446. 1
  447. ]
  448. },
  449. "_eulerAngles": {
  450. "__type__": "cc.Vec3",
  451. "x": 0,
  452. "y": 0,
  453. "z": 0
  454. },
  455. "_skewX": 0,
  456. "_skewY": 0,
  457. "_is3DNode": false,
  458. "_groupIndex": 0,
  459. "groupIndex": 0,
  460. "_id": ""
  461. },
  462. {
  463. "__type__": "cc.Sprite",
  464. "_name": "",
  465. "_objFlags": 0,
  466. "node": {
  467. "__id__": 10
  468. },
  469. "_enabled": true,
  470. "_materials": [
  471. {
  472. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  473. }
  474. ],
  475. "_srcBlendFactor": 770,
  476. "_dstBlendFactor": 771,
  477. "_spriteFrame": {
  478. "__uuid__": "5dbfab9c-5779-4f51-bbe3-48157d1dbdac"
  479. },
  480. "_type": 0,
  481. "_sizeMode": 0,
  482. "_fillType": 0,
  483. "_fillCenter": {
  484. "__type__": "cc.Vec2",
  485. "x": 0,
  486. "y": 0
  487. },
  488. "_fillStart": 0,
  489. "_fillRange": 0,
  490. "_isTrimmedMode": true,
  491. "_atlas": null,
  492. "_id": ""
  493. },
  494. {
  495. "__type__": "cc.Button",
  496. "_name": "",
  497. "_objFlags": 0,
  498. "node": {
  499. "__id__": 10
  500. },
  501. "_enabled": true,
  502. "_normalMaterial": null,
  503. "_grayMaterial": null,
  504. "duration": 0,
  505. "zoomScale": 1.2,
  506. "clickEvents": [
  507. {
  508. "__id__": 13
  509. }
  510. ],
  511. "_N$interactable": true,
  512. "_N$enableAutoGrayEffect": false,
  513. "_N$transition": 1,
  514. "transition": 1,
  515. "_N$normalColor": {
  516. "__type__": "cc.Color",
  517. "r": 255,
  518. "g": 255,
  519. "b": 255,
  520. "a": 255
  521. },
  522. "_N$pressedColor": {
  523. "__type__": "cc.Color",
  524. "r": 180,
  525. "g": 180,
  526. "b": 180,
  527. "a": 255
  528. },
  529. "pressedColor": {
  530. "__type__": "cc.Color",
  531. "r": 180,
  532. "g": 180,
  533. "b": 180,
  534. "a": 255
  535. },
  536. "_N$hoverColor": {
  537. "__type__": "cc.Color",
  538. "r": 255,
  539. "g": 255,
  540. "b": 255,
  541. "a": 255
  542. },
  543. "hoverColor": {
  544. "__type__": "cc.Color",
  545. "r": 255,
  546. "g": 255,
  547. "b": 255,
  548. "a": 255
  549. },
  550. "_N$disabledColor": {
  551. "__type__": "cc.Color",
  552. "r": 255,
  553. "g": 255,
  554. "b": 255,
  555. "a": 255
  556. },
  557. "_N$normalSprite": null,
  558. "_N$pressedSprite": null,
  559. "pressedSprite": null,
  560. "_N$hoverSprite": null,
  561. "hoverSprite": null,
  562. "_N$disabledSprite": null,
  563. "_N$target": {
  564. "__id__": 10
  565. },
  566. "_id": ""
  567. },
  568. {
  569. "__type__": "cc.ClickEvent",
  570. "target": {
  571. "__id__": 1
  572. },
  573. "component": "",
  574. "_componentId": "ed644I8yfZGZpY45M0V7gVt",
  575. "handler": "HideView",
  576. "customEventData": ""
  577. },
  578. {
  579. "__type__": "cc.PrefabInfo",
  580. "root": {
  581. "__id__": 1
  582. },
  583. "asset": {
  584. "__id__": 0
  585. },
  586. "fileId": "d8JdbyFaFDUY4z6XHZBqDB",
  587. "sync": false
  588. },
  589. {
  590. "__type__": "cc.Node",
  591. "_name": "BGT4",
  592. "_objFlags": 0,
  593. "_parent": {
  594. "__id__": 9
  595. },
  596. "_children": [],
  597. "_active": false,
  598. "_components": [
  599. {
  600. "__id__": 16
  601. }
  602. ],
  603. "_prefab": {
  604. "__id__": 17
  605. },
  606. "_opacity": 255,
  607. "_color": {
  608. "__type__": "cc.Color",
  609. "r": 255,
  610. "g": 255,
  611. "b": 255,
  612. "a": 255
  613. },
  614. "_contentSize": {
  615. "__type__": "cc.Size",
  616. "width": 461,
  617. "height": 28
  618. },
  619. "_anchorPoint": {
  620. "__type__": "cc.Vec2",
  621. "x": 0.5,
  622. "y": 0.5
  623. },
  624. "_trs": {
  625. "__type__": "TypedArray",
  626. "ctor": "Float64Array",
  627. "array": [
  628. 0,
  629. 0,
  630. 0,
  631. 0,
  632. 0,
  633. 0,
  634. 1,
  635. 1,
  636. 1,
  637. 1
  638. ]
  639. },
  640. "_eulerAngles": {
  641. "__type__": "cc.Vec3",
  642. "x": 0,
  643. "y": 0,
  644. "z": 0
  645. },
  646. "_skewX": 0,
  647. "_skewY": 0,
  648. "_is3DNode": false,
  649. "_groupIndex": 0,
  650. "groupIndex": 0,
  651. "_id": ""
  652. },
  653. {
  654. "__type__": "cc.Sprite",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "node": {
  658. "__id__": 15
  659. },
  660. "_enabled": true,
  661. "_materials": [
  662. {
  663. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  664. }
  665. ],
  666. "_srcBlendFactor": 770,
  667. "_dstBlendFactor": 771,
  668. "_spriteFrame": {
  669. "__uuid__": "6974061c-ff88-4712-86b3-736b3cfbed9b"
  670. },
  671. "_type": 0,
  672. "_sizeMode": 1,
  673. "_fillType": 0,
  674. "_fillCenter": {
  675. "__type__": "cc.Vec2",
  676. "x": 0,
  677. "y": 0
  678. },
  679. "_fillStart": 0,
  680. "_fillRange": 0,
  681. "_isTrimmedMode": true,
  682. "_atlas": null,
  683. "_id": ""
  684. },
  685. {
  686. "__type__": "cc.PrefabInfo",
  687. "root": {
  688. "__id__": 1
  689. },
  690. "asset": {
  691. "__id__": 0
  692. },
  693. "fileId": "23wMK6Kd9HcIF7tGbcXjtS",
  694. "sync": false
  695. },
  696. {
  697. "__type__": "cc.Node",
  698. "_name": "LabTCreate",
  699. "_objFlags": 0,
  700. "_parent": {
  701. "__id__": 9
  702. },
  703. "_children": [],
  704. "_active": true,
  705. "_components": [
  706. {
  707. "__id__": 19
  708. }
  709. ],
  710. "_prefab": {
  711. "__id__": 20
  712. },
  713. "_opacity": 255,
  714. "_color": {
  715. "__type__": "cc.Color",
  716. "r": 255,
  717. "g": 255,
  718. "b": 255,
  719. "a": 255
  720. },
  721. "_contentSize": {
  722. "__type__": "cc.Size",
  723. "width": 302,
  724. "height": 70
  725. },
  726. "_anchorPoint": {
  727. "__type__": "cc.Vec2",
  728. "x": 0.5,
  729. "y": 0.5
  730. },
  731. "_trs": {
  732. "__type__": "TypedArray",
  733. "ctor": "Float64Array",
  734. "array": [
  735. 0,
  736. -30,
  737. 0,
  738. 0,
  739. 0,
  740. 0,
  741. 1,
  742. 1.2,
  743. 1.2,
  744. 1
  745. ]
  746. },
  747. "_eulerAngles": {
  748. "__type__": "cc.Vec3",
  749. "x": 0,
  750. "y": 0,
  751. "z": 0
  752. },
  753. "_skewX": 0,
  754. "_skewY": 0,
  755. "_is3DNode": false,
  756. "_groupIndex": 0,
  757. "groupIndex": 0,
  758. "_id": ""
  759. },
  760. {
  761. "__type__": "cc.Sprite",
  762. "_name": "",
  763. "_objFlags": 0,
  764. "node": {
  765. "__id__": 18
  766. },
  767. "_enabled": true,
  768. "_materials": [
  769. {
  770. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  771. }
  772. ],
  773. "_srcBlendFactor": 770,
  774. "_dstBlendFactor": 771,
  775. "_spriteFrame": {
  776. "__uuid__": "746861ff-38c1-4127-a688-f2392546baeb"
  777. },
  778. "_type": 0,
  779. "_sizeMode": 1,
  780. "_fillType": 0,
  781. "_fillCenter": {
  782. "__type__": "cc.Vec2",
  783. "x": 0,
  784. "y": 0
  785. },
  786. "_fillStart": 0,
  787. "_fillRange": 0,
  788. "_isTrimmedMode": true,
  789. "_atlas": null,
  790. "_id": ""
  791. },
  792. {
  793. "__type__": "cc.PrefabInfo",
  794. "root": {
  795. "__id__": 1
  796. },
  797. "asset": {
  798. "__id__": 0
  799. },
  800. "fileId": "2beQrLEjFJ3YNyRJJNQfL3",
  801. "sync": false
  802. },
  803. {
  804. "__type__": "cc.PrefabInfo",
  805. "root": {
  806. "__id__": 1
  807. },
  808. "asset": {
  809. "__id__": 0
  810. },
  811. "fileId": "a1641mKEpDsKV0NHreflJN",
  812. "sync": false
  813. },
  814. {
  815. "__type__": "cc.Node",
  816. "_name": "BGB",
  817. "_objFlags": 0,
  818. "_parent": {
  819. "__id__": 1
  820. },
  821. "_children": [
  822. {
  823. "__id__": 23
  824. },
  825. {
  826. "__id__": 26
  827. }
  828. ],
  829. "_active": false,
  830. "_components": [],
  831. "_prefab": {
  832. "__id__": 54
  833. },
  834. "_opacity": 255,
  835. "_color": {
  836. "__type__": "cc.Color",
  837. "r": 255,
  838. "g": 255,
  839. "b": 255,
  840. "a": 255
  841. },
  842. "_contentSize": {
  843. "__type__": "cc.Size",
  844. "width": 1300,
  845. "height": 640
  846. },
  847. "_anchorPoint": {
  848. "__type__": "cc.Vec2",
  849. "x": 0.5,
  850. "y": 0.5
  851. },
  852. "_trs": {
  853. "__type__": "TypedArray",
  854. "ctor": "Float64Array",
  855. "array": [
  856. 0,
  857. -40,
  858. 0,
  859. 0,
  860. 0,
  861. 0,
  862. 1,
  863. 1,
  864. 1,
  865. 1
  866. ]
  867. },
  868. "_eulerAngles": {
  869. "__type__": "cc.Vec3",
  870. "x": 0,
  871. "y": 0,
  872. "z": 0
  873. },
  874. "_skewX": 0,
  875. "_skewY": 0,
  876. "_is3DNode": false,
  877. "_groupIndex": 0,
  878. "groupIndex": 0,
  879. "_id": ""
  880. },
  881. {
  882. "__type__": "cc.Node",
  883. "_name": "LeftBG",
  884. "_objFlags": 0,
  885. "_parent": {
  886. "__id__": 22
  887. },
  888. "_children": [],
  889. "_active": true,
  890. "_components": [
  891. {
  892. "__id__": 24
  893. }
  894. ],
  895. "_prefab": {
  896. "__id__": 25
  897. },
  898. "_opacity": 255,
  899. "_color": {
  900. "__type__": "cc.Color",
  901. "r": 255,
  902. "g": 255,
  903. "b": 255,
  904. "a": 255
  905. },
  906. "_contentSize": {
  907. "__type__": "cc.Size",
  908. "width": 246,
  909. "height": 657
  910. },
  911. "_anchorPoint": {
  912. "__type__": "cc.Vec2",
  913. "x": 0.5,
  914. "y": 0.5
  915. },
  916. "_trs": {
  917. "__type__": "TypedArray",
  918. "ctor": "Float64Array",
  919. "array": [
  920. -538,
  921. 0.9350000000000023,
  922. 0,
  923. 0,
  924. 0,
  925. 0,
  926. 1,
  927. 1,
  928. 1,
  929. 1
  930. ]
  931. },
  932. "_eulerAngles": {
  933. "__type__": "cc.Vec3",
  934. "x": 0,
  935. "y": 0,
  936. "z": 0
  937. },
  938. "_skewX": 0,
  939. "_skewY": 0,
  940. "_is3DNode": false,
  941. "_groupIndex": 0,
  942. "groupIndex": 0,
  943. "_id": ""
  944. },
  945. {
  946. "__type__": "cc.Sprite",
  947. "_name": "",
  948. "_objFlags": 0,
  949. "node": {
  950. "__id__": 23
  951. },
  952. "_enabled": true,
  953. "_materials": [
  954. {
  955. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  956. }
  957. ],
  958. "_srcBlendFactor": 770,
  959. "_dstBlendFactor": 771,
  960. "_spriteFrame": {
  961. "__uuid__": "18561051-dd02-4875-8ed0-986e857bf6ad"
  962. },
  963. "_type": 0,
  964. "_sizeMode": 1,
  965. "_fillType": 0,
  966. "_fillCenter": {
  967. "__type__": "cc.Vec2",
  968. "x": 0,
  969. "y": 0
  970. },
  971. "_fillStart": 0,
  972. "_fillRange": 0,
  973. "_isTrimmedMode": true,
  974. "_atlas": null,
  975. "_id": ""
  976. },
  977. {
  978. "__type__": "cc.PrefabInfo",
  979. "root": {
  980. "__id__": 1
  981. },
  982. "asset": {
  983. "__id__": 0
  984. },
  985. "fileId": "5cZdPfJD5BI4ayVP9iZF0n",
  986. "sync": false
  987. },
  988. {
  989. "__type__": "cc.Node",
  990. "_name": "ScrollView",
  991. "_objFlags": 0,
  992. "_parent": {
  993. "__id__": 22
  994. },
  995. "_children": [
  996. {
  997. "__id__": 27
  998. }
  999. ],
  1000. "_active": true,
  1001. "_components": [
  1002. {
  1003. "__id__": 51
  1004. },
  1005. {
  1006. "__id__": 52
  1007. }
  1008. ],
  1009. "_prefab": {
  1010. "__id__": 53
  1011. },
  1012. "_opacity": 255,
  1013. "_color": {
  1014. "__type__": "cc.Color",
  1015. "r": 184,
  1016. "g": 184,
  1017. "b": 184,
  1018. "a": 255
  1019. },
  1020. "_contentSize": {
  1021. "__type__": "cc.Size",
  1022. "width": 259,
  1023. "height": 650
  1024. },
  1025. "_anchorPoint": {
  1026. "__type__": "cc.Vec2",
  1027. "x": 0.5,
  1028. "y": 1
  1029. },
  1030. "_trs": {
  1031. "__type__": "TypedArray",
  1032. "ctor": "Float64Array",
  1033. "array": [
  1034. -537,
  1035. 331,
  1036. 0,
  1037. 0,
  1038. 0,
  1039. 0,
  1040. 1,
  1041. 1,
  1042. 1,
  1043. 1
  1044. ]
  1045. },
  1046. "_eulerAngles": {
  1047. "__type__": "cc.Vec3",
  1048. "x": 0,
  1049. "y": 0,
  1050. "z": 0
  1051. },
  1052. "_skewX": 0,
  1053. "_skewY": 0,
  1054. "_is3DNode": false,
  1055. "_groupIndex": 0,
  1056. "groupIndex": 0,
  1057. "_id": ""
  1058. },
  1059. {
  1060. "__type__": "cc.Node",
  1061. "_name": "view",
  1062. "_objFlags": 0,
  1063. "_parent": {
  1064. "__id__": 26
  1065. },
  1066. "_children": [
  1067. {
  1068. "__id__": 28
  1069. }
  1070. ],
  1071. "_active": true,
  1072. "_components": [
  1073. {
  1074. "__id__": 49
  1075. }
  1076. ],
  1077. "_prefab": {
  1078. "__id__": 50
  1079. },
  1080. "_opacity": 255,
  1081. "_color": {
  1082. "__type__": "cc.Color",
  1083. "r": 255,
  1084. "g": 255,
  1085. "b": 255,
  1086. "a": 255
  1087. },
  1088. "_contentSize": {
  1089. "__type__": "cc.Size",
  1090. "width": 259,
  1091. "height": 650
  1092. },
  1093. "_anchorPoint": {
  1094. "__type__": "cc.Vec2",
  1095. "x": 0.5,
  1096. "y": 1
  1097. },
  1098. "_trs": {
  1099. "__type__": "TypedArray",
  1100. "ctor": "Float64Array",
  1101. "array": [
  1102. 0,
  1103. 0,
  1104. 0,
  1105. 0,
  1106. 0,
  1107. 0,
  1108. 1,
  1109. 1,
  1110. 1,
  1111. 1
  1112. ]
  1113. },
  1114. "_eulerAngles": {
  1115. "__type__": "cc.Vec3",
  1116. "x": 0,
  1117. "y": 0,
  1118. "z": 0
  1119. },
  1120. "_skewX": 0,
  1121. "_skewY": 0,
  1122. "_is3DNode": false,
  1123. "_groupIndex": 0,
  1124. "groupIndex": 0,
  1125. "_id": ""
  1126. },
  1127. {
  1128. "__type__": "cc.Node",
  1129. "_name": "content",
  1130. "_objFlags": 0,
  1131. "_parent": {
  1132. "__id__": 27
  1133. },
  1134. "_children": [
  1135. {
  1136. "__id__": 29
  1137. }
  1138. ],
  1139. "_active": true,
  1140. "_components": [
  1141. {
  1142. "__id__": 46
  1143. },
  1144. {
  1145. "__id__": 47
  1146. }
  1147. ],
  1148. "_prefab": {
  1149. "__id__": 48
  1150. },
  1151. "_opacity": 255,
  1152. "_color": {
  1153. "__type__": "cc.Color",
  1154. "r": 255,
  1155. "g": 255,
  1156. "b": 255,
  1157. "a": 255
  1158. },
  1159. "_contentSize": {
  1160. "__type__": "cc.Size",
  1161. "width": 0,
  1162. "height": 113
  1163. },
  1164. "_anchorPoint": {
  1165. "__type__": "cc.Vec2",
  1166. "x": 0.5,
  1167. "y": 1
  1168. },
  1169. "_trs": {
  1170. "__type__": "TypedArray",
  1171. "ctor": "Float64Array",
  1172. "array": [
  1173. 0,
  1174. 0,
  1175. 0,
  1176. 0,
  1177. 0,
  1178. 0,
  1179. 1,
  1180. 1,
  1181. 1,
  1182. 1
  1183. ]
  1184. },
  1185. "_eulerAngles": {
  1186. "__type__": "cc.Vec3",
  1187. "x": 0,
  1188. "y": 0,
  1189. "z": 0
  1190. },
  1191. "_skewX": 0,
  1192. "_skewY": 0,
  1193. "_is3DNode": false,
  1194. "_groupIndex": 0,
  1195. "groupIndex": 0,
  1196. "_id": ""
  1197. },
  1198. {
  1199. "__type__": "cc.Node",
  1200. "_name": "GamePlayItem",
  1201. "_objFlags": 0,
  1202. "_parent": {
  1203. "__id__": 28
  1204. },
  1205. "_children": [
  1206. {
  1207. "__id__": 30
  1208. },
  1209. {
  1210. "__id__": 36
  1211. }
  1212. ],
  1213. "_active": true,
  1214. "_components": [
  1215. {
  1216. "__id__": 42
  1217. },
  1218. {
  1219. "__id__": 44
  1220. }
  1221. ],
  1222. "_prefab": {
  1223. "__id__": 45
  1224. },
  1225. "_opacity": 255,
  1226. "_color": {
  1227. "__type__": "cc.Color",
  1228. "r": 255,
  1229. "g": 255,
  1230. "b": 255,
  1231. "a": 255
  1232. },
  1233. "_contentSize": {
  1234. "__type__": "cc.Size",
  1235. "width": 259,
  1236. "height": 113
  1237. },
  1238. "_anchorPoint": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0.5,
  1241. "y": 0.5
  1242. },
  1243. "_trs": {
  1244. "__type__": "TypedArray",
  1245. "ctor": "Float64Array",
  1246. "array": [
  1247. 0,
  1248. -56.5,
  1249. 0,
  1250. 0,
  1251. 0,
  1252. 0,
  1253. 1,
  1254. 1,
  1255. 1,
  1256. 1
  1257. ]
  1258. },
  1259. "_eulerAngles": {
  1260. "__type__": "cc.Vec3",
  1261. "x": 0,
  1262. "y": 0,
  1263. "z": 0
  1264. },
  1265. "_skewX": 0,
  1266. "_skewY": 0,
  1267. "_is3DNode": false,
  1268. "_groupIndex": 0,
  1269. "groupIndex": 0,
  1270. "_id": ""
  1271. },
  1272. {
  1273. "__type__": "cc.Node",
  1274. "_name": "Background",
  1275. "_objFlags": 512,
  1276. "_parent": {
  1277. "__id__": 29
  1278. },
  1279. "_children": [
  1280. {
  1281. "__id__": 31
  1282. }
  1283. ],
  1284. "_active": true,
  1285. "_components": [
  1286. {
  1287. "__id__": 34
  1288. }
  1289. ],
  1290. "_prefab": {
  1291. "__id__": 35
  1292. },
  1293. "_opacity": 255,
  1294. "_color": {
  1295. "__type__": "cc.Color",
  1296. "r": 255,
  1297. "g": 255,
  1298. "b": 255,
  1299. "a": 255
  1300. },
  1301. "_contentSize": {
  1302. "__type__": "cc.Size",
  1303. "width": 246,
  1304. "height": 3
  1305. },
  1306. "_anchorPoint": {
  1307. "__type__": "cc.Vec2",
  1308. "x": 0.5,
  1309. "y": 0.5
  1310. },
  1311. "_trs": {
  1312. "__type__": "TypedArray",
  1313. "ctor": "Float64Array",
  1314. "array": [
  1315. 0,
  1316. -46,
  1317. 0,
  1318. 0,
  1319. 0,
  1320. 0,
  1321. 1,
  1322. 1,
  1323. 1,
  1324. 0
  1325. ]
  1326. },
  1327. "_eulerAngles": {
  1328. "__type__": "cc.Vec3",
  1329. "x": 0,
  1330. "y": 0,
  1331. "z": 0
  1332. },
  1333. "_skewX": 0,
  1334. "_skewY": 0,
  1335. "_is3DNode": false,
  1336. "_groupIndex": 0,
  1337. "groupIndex": 0,
  1338. "_id": ""
  1339. },
  1340. {
  1341. "__type__": "cc.Node",
  1342. "_name": "Label",
  1343. "_objFlags": 0,
  1344. "_parent": {
  1345. "__id__": 30
  1346. },
  1347. "_children": [],
  1348. "_active": true,
  1349. "_components": [
  1350. {
  1351. "__id__": 32
  1352. }
  1353. ],
  1354. "_prefab": {
  1355. "__id__": 33
  1356. },
  1357. "_opacity": 255,
  1358. "_color": {
  1359. "__type__": "cc.Color",
  1360. "r": 179,
  1361. "g": 139,
  1362. "b": 76,
  1363. "a": 255
  1364. },
  1365. "_contentSize": {
  1366. "__type__": "cc.Size",
  1367. "width": 128,
  1368. "height": 50.4
  1369. },
  1370. "_anchorPoint": {
  1371. "__type__": "cc.Vec2",
  1372. "x": 0.5,
  1373. "y": 0.5
  1374. },
  1375. "_trs": {
  1376. "__type__": "TypedArray",
  1377. "ctor": "Float64Array",
  1378. "array": [
  1379. 0,
  1380. 46,
  1381. 0,
  1382. 0,
  1383. 0,
  1384. 0,
  1385. 1,
  1386. 1,
  1387. 1,
  1388. 1
  1389. ]
  1390. },
  1391. "_eulerAngles": {
  1392. "__type__": "cc.Vec3",
  1393. "x": 0,
  1394. "y": 0,
  1395. "z": 0
  1396. },
  1397. "_skewX": 0,
  1398. "_skewY": 0,
  1399. "_is3DNode": false,
  1400. "_groupIndex": 0,
  1401. "groupIndex": 0,
  1402. "_id": ""
  1403. },
  1404. {
  1405. "__type__": "cc.Label",
  1406. "_name": "",
  1407. "_objFlags": 0,
  1408. "node": {
  1409. "__id__": 31
  1410. },
  1411. "_enabled": true,
  1412. "_materials": [
  1413. {
  1414. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1415. }
  1416. ],
  1417. "_srcBlendFactor": 770,
  1418. "_dstBlendFactor": 771,
  1419. "_string": "經典玩法",
  1420. "_N$string": "經典玩法",
  1421. "_fontSize": 32,
  1422. "_lineHeight": 40,
  1423. "_enableWrapText": true,
  1424. "_N$file": {
  1425. "__uuid__": "982bd9f8-3f12-4fee-8b05-c332f3a3e675"
  1426. },
  1427. "_isSystemFontUsed": false,
  1428. "_spacingX": 0,
  1429. "_batchAsBitmap": false,
  1430. "_styleFlags": 0,
  1431. "_underlineHeight": 0,
  1432. "_N$horizontalAlign": 1,
  1433. "_N$verticalAlign": 1,
  1434. "_N$fontFamily": "Arial",
  1435. "_N$overflow": 0,
  1436. "_N$cacheMode": 0,
  1437. "_id": ""
  1438. },
  1439. {
  1440. "__type__": "cc.PrefabInfo",
  1441. "root": {
  1442. "__id__": 1
  1443. },
  1444. "asset": {
  1445. "__id__": 0
  1446. },
  1447. "fileId": "6brMi45b9AH6bZClE+1OlS",
  1448. "sync": false
  1449. },
  1450. {
  1451. "__type__": "cc.Sprite",
  1452. "_name": "",
  1453. "_objFlags": 0,
  1454. "node": {
  1455. "__id__": 30
  1456. },
  1457. "_enabled": true,
  1458. "_materials": [
  1459. {
  1460. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1461. }
  1462. ],
  1463. "_srcBlendFactor": 770,
  1464. "_dstBlendFactor": 771,
  1465. "_spriteFrame": {
  1466. "__uuid__": "917f3d3d-ff48-440f-b779-2509ff16aa2e"
  1467. },
  1468. "_type": 0,
  1469. "_sizeMode": 1,
  1470. "_fillType": 0,
  1471. "_fillCenter": {
  1472. "__type__": "cc.Vec2",
  1473. "x": 0,
  1474. "y": 0
  1475. },
  1476. "_fillStart": 0,
  1477. "_fillRange": 0,
  1478. "_isTrimmedMode": true,
  1479. "_atlas": null,
  1480. "_id": ""
  1481. },
  1482. {
  1483. "__type__": "cc.PrefabInfo",
  1484. "root": {
  1485. "__id__": 1
  1486. },
  1487. "asset": {
  1488. "__id__": 0
  1489. },
  1490. "fileId": "812RzTB4JAZY0A1FZMBA5k",
  1491. "sync": false
  1492. },
  1493. {
  1494. "__type__": "cc.Node",
  1495. "_name": "checkmark",
  1496. "_objFlags": 512,
  1497. "_parent": {
  1498. "__id__": 29
  1499. },
  1500. "_children": [
  1501. {
  1502. "__id__": 37
  1503. }
  1504. ],
  1505. "_active": true,
  1506. "_components": [
  1507. {
  1508. "__id__": 40
  1509. }
  1510. ],
  1511. "_prefab": {
  1512. "__id__": 41
  1513. },
  1514. "_opacity": 255,
  1515. "_color": {
  1516. "__type__": "cc.Color",
  1517. "r": 255,
  1518. "g": 255,
  1519. "b": 255,
  1520. "a": 255
  1521. },
  1522. "_contentSize": {
  1523. "__type__": "cc.Size",
  1524. "width": 259,
  1525. "height": 113
  1526. },
  1527. "_anchorPoint": {
  1528. "__type__": "cc.Vec2",
  1529. "x": 0.5,
  1530. "y": 0.5
  1531. },
  1532. "_trs": {
  1533. "__type__": "TypedArray",
  1534. "ctor": "Float64Array",
  1535. "array": [
  1536. 0,
  1537. 0,
  1538. 0,
  1539. 0,
  1540. 0,
  1541. 0,
  1542. 1,
  1543. 1,
  1544. 1,
  1545. 1
  1546. ]
  1547. },
  1548. "_eulerAngles": {
  1549. "__type__": "cc.Vec3",
  1550. "x": 0,
  1551. "y": 0,
  1552. "z": 0
  1553. },
  1554. "_skewX": 0,
  1555. "_skewY": 0,
  1556. "_is3DNode": false,
  1557. "_groupIndex": 0,
  1558. "groupIndex": 0,
  1559. "_id": ""
  1560. },
  1561. {
  1562. "__type__": "cc.Node",
  1563. "_name": "Label",
  1564. "_objFlags": 0,
  1565. "_parent": {
  1566. "__id__": 36
  1567. },
  1568. "_children": [],
  1569. "_active": true,
  1570. "_components": [
  1571. {
  1572. "__id__": 38
  1573. }
  1574. ],
  1575. "_prefab": {
  1576. "__id__": 39
  1577. },
  1578. "_opacity": 255,
  1579. "_color": {
  1580. "__type__": "cc.Color",
  1581. "r": 166,
  1582. "g": 71,
  1583. "b": 29,
  1584. "a": 255
  1585. },
  1586. "_contentSize": {
  1587. "__type__": "cc.Size",
  1588. "width": 128,
  1589. "height": 50.4
  1590. },
  1591. "_anchorPoint": {
  1592. "__type__": "cc.Vec2",
  1593. "x": 0.5,
  1594. "y": 0.5
  1595. },
  1596. "_trs": {
  1597. "__type__": "TypedArray",
  1598. "ctor": "Float64Array",
  1599. "array": [
  1600. 0,
  1601. 0,
  1602. 0,
  1603. 0,
  1604. 0,
  1605. 0,
  1606. 1,
  1607. 1,
  1608. 1,
  1609. 1
  1610. ]
  1611. },
  1612. "_eulerAngles": {
  1613. "__type__": "cc.Vec3",
  1614. "x": 0,
  1615. "y": 0,
  1616. "z": 0
  1617. },
  1618. "_skewX": 0,
  1619. "_skewY": 0,
  1620. "_is3DNode": false,
  1621. "_groupIndex": 0,
  1622. "groupIndex": 0,
  1623. "_id": ""
  1624. },
  1625. {
  1626. "__type__": "cc.Label",
  1627. "_name": "",
  1628. "_objFlags": 0,
  1629. "node": {
  1630. "__id__": 37
  1631. },
  1632. "_enabled": true,
  1633. "_materials": [
  1634. {
  1635. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1636. }
  1637. ],
  1638. "_srcBlendFactor": 770,
  1639. "_dstBlendFactor": 771,
  1640. "_string": "經典玩法",
  1641. "_N$string": "經典玩法",
  1642. "_fontSize": 32,
  1643. "_lineHeight": 40,
  1644. "_enableWrapText": true,
  1645. "_N$file": {
  1646. "__uuid__": "982bd9f8-3f12-4fee-8b05-c332f3a3e675"
  1647. },
  1648. "_isSystemFontUsed": false,
  1649. "_spacingX": 0,
  1650. "_batchAsBitmap": false,
  1651. "_styleFlags": 0,
  1652. "_underlineHeight": 0,
  1653. "_N$horizontalAlign": 1,
  1654. "_N$verticalAlign": 1,
  1655. "_N$fontFamily": "Arial",
  1656. "_N$overflow": 0,
  1657. "_N$cacheMode": 0,
  1658. "_id": ""
  1659. },
  1660. {
  1661. "__type__": "cc.PrefabInfo",
  1662. "root": {
  1663. "__id__": 1
  1664. },
  1665. "asset": {
  1666. "__id__": 0
  1667. },
  1668. "fileId": "9cAMov9FVN3owl6w/c4ax3",
  1669. "sync": false
  1670. },
  1671. {
  1672. "__type__": "cc.Sprite",
  1673. "_name": "",
  1674. "_objFlags": 0,
  1675. "node": {
  1676. "__id__": 36
  1677. },
  1678. "_enabled": true,
  1679. "_materials": [
  1680. {
  1681. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1682. }
  1683. ],
  1684. "_srcBlendFactor": 770,
  1685. "_dstBlendFactor": 771,
  1686. "_spriteFrame": {
  1687. "__uuid__": "c1a1ccc2-f6d5-455b-80a8-d2e6bd6806d6"
  1688. },
  1689. "_type": 0,
  1690. "_sizeMode": 2,
  1691. "_fillType": 0,
  1692. "_fillCenter": {
  1693. "__type__": "cc.Vec2",
  1694. "x": 0,
  1695. "y": 0
  1696. },
  1697. "_fillStart": 0,
  1698. "_fillRange": 0,
  1699. "_isTrimmedMode": false,
  1700. "_atlas": null,
  1701. "_id": ""
  1702. },
  1703. {
  1704. "__type__": "cc.PrefabInfo",
  1705. "root": {
  1706. "__id__": 1
  1707. },
  1708. "asset": {
  1709. "__id__": 0
  1710. },
  1711. "fileId": "690MmIRNxFqrywMSjqAYO0",
  1712. "sync": false
  1713. },
  1714. {
  1715. "__type__": "cc.Toggle",
  1716. "_name": "",
  1717. "_objFlags": 0,
  1718. "node": {
  1719. "__id__": 29
  1720. },
  1721. "_enabled": true,
  1722. "_normalMaterial": null,
  1723. "_grayMaterial": null,
  1724. "duration": 0.1,
  1725. "zoomScale": 1.2,
  1726. "clickEvents": [],
  1727. "_N$interactable": true,
  1728. "_N$enableAutoGrayEffect": false,
  1729. "_N$transition": 0,
  1730. "transition": 0,
  1731. "_N$normalColor": {
  1732. "__type__": "cc.Color",
  1733. "r": 214,
  1734. "g": 214,
  1735. "b": 214,
  1736. "a": 255
  1737. },
  1738. "_N$pressedColor": {
  1739. "__type__": "cc.Color",
  1740. "r": 211,
  1741. "g": 211,
  1742. "b": 211,
  1743. "a": 255
  1744. },
  1745. "pressedColor": {
  1746. "__type__": "cc.Color",
  1747. "r": 211,
  1748. "g": 211,
  1749. "b": 211,
  1750. "a": 255
  1751. },
  1752. "_N$hoverColor": {
  1753. "__type__": "cc.Color",
  1754. "r": 255,
  1755. "g": 255,
  1756. "b": 255,
  1757. "a": 255
  1758. },
  1759. "hoverColor": {
  1760. "__type__": "cc.Color",
  1761. "r": 255,
  1762. "g": 255,
  1763. "b": 255,
  1764. "a": 255
  1765. },
  1766. "_N$disabledColor": {
  1767. "__type__": "cc.Color",
  1768. "r": 124,
  1769. "g": 124,
  1770. "b": 124,
  1771. "a": 255
  1772. },
  1773. "_N$normalSprite": null,
  1774. "_N$pressedSprite": null,
  1775. "pressedSprite": null,
  1776. "_N$hoverSprite": null,
  1777. "hoverSprite": null,
  1778. "_N$disabledSprite": null,
  1779. "_N$target": {
  1780. "__id__": 30
  1781. },
  1782. "_N$isChecked": true,
  1783. "toggleGroup": null,
  1784. "checkMark": {
  1785. "__id__": 40
  1786. },
  1787. "checkEvents": [
  1788. {
  1789. "__id__": 43
  1790. }
  1791. ],
  1792. "_id": ""
  1793. },
  1794. {
  1795. "__type__": "cc.ClickEvent",
  1796. "target": {
  1797. "__id__": 29
  1798. },
  1799. "component": "",
  1800. "_componentId": "82084VQzQdGg5s+C/CVho+x",
  1801. "handler": "OnTogClick",
  1802. "customEventData": ""
  1803. },
  1804. {
  1805. "__type__": "82084VQzQdGg5s+C/CVho+x",
  1806. "_name": "",
  1807. "_objFlags": 0,
  1808. "node": {
  1809. "__id__": 29
  1810. },
  1811. "_enabled": true,
  1812. "m_Label": [
  1813. {
  1814. "__id__": 32
  1815. },
  1816. {
  1817. "__id__": 38
  1818. }
  1819. ],
  1820. "_id": ""
  1821. },
  1822. {
  1823. "__type__": "cc.PrefabInfo",
  1824. "root": {
  1825. "__id__": 1
  1826. },
  1827. "asset": {
  1828. "__id__": 0
  1829. },
  1830. "fileId": "30XQNH/9hFvZagfjjtuwB1",
  1831. "sync": false
  1832. },
  1833. {
  1834. "__type__": "cc.Layout",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "node": {
  1838. "__id__": 28
  1839. },
  1840. "_enabled": true,
  1841. "_layoutSize": {
  1842. "__type__": "cc.Size",
  1843. "width": 0,
  1844. "height": 113
  1845. },
  1846. "_resize": 1,
  1847. "_N$layoutType": 2,
  1848. "_N$cellSize": {
  1849. "__type__": "cc.Size",
  1850. "width": 40,
  1851. "height": 40
  1852. },
  1853. "_N$startAxis": 0,
  1854. "_N$paddingLeft": 0,
  1855. "_N$paddingRight": 0,
  1856. "_N$paddingTop": 0,
  1857. "_N$paddingBottom": 0,
  1858. "_N$spacingX": 0,
  1859. "_N$spacingY": 0,
  1860. "_N$verticalDirection": 1,
  1861. "_N$horizontalDirection": 0,
  1862. "_N$affectedByScale": false,
  1863. "_id": ""
  1864. },
  1865. {
  1866. "__type__": "cc.ToggleContainer",
  1867. "_name": "",
  1868. "_objFlags": 0,
  1869. "node": {
  1870. "__id__": 28
  1871. },
  1872. "_enabled": true,
  1873. "allowSwitchOff": false,
  1874. "checkEvents": [],
  1875. "_id": ""
  1876. },
  1877. {
  1878. "__type__": "cc.PrefabInfo",
  1879. "root": {
  1880. "__id__": 1
  1881. },
  1882. "asset": {
  1883. "__id__": 0
  1884. },
  1885. "fileId": "067Piw3ghC4qT3aKWas0bd",
  1886. "sync": false
  1887. },
  1888. {
  1889. "__type__": "cc.Mask",
  1890. "_name": "",
  1891. "_objFlags": 0,
  1892. "node": {
  1893. "__id__": 27
  1894. },
  1895. "_enabled": true,
  1896. "_materials": [
  1897. {
  1898. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1899. }
  1900. ],
  1901. "_spriteFrame": null,
  1902. "_type": 0,
  1903. "_segments": 64,
  1904. "_N$alphaThreshold": 1,
  1905. "_N$inverted": false,
  1906. "_id": ""
  1907. },
  1908. {
  1909. "__type__": "cc.PrefabInfo",
  1910. "root": {
  1911. "__id__": 1
  1912. },
  1913. "asset": {
  1914. "__id__": 0
  1915. },
  1916. "fileId": "9fm0SoaMRGPqtjelDUUy71",
  1917. "sync": false
  1918. },
  1919. {
  1920. "__type__": "cc.Sprite",
  1921. "_name": "",
  1922. "_objFlags": 0,
  1923. "node": {
  1924. "__id__": 26
  1925. },
  1926. "_enabled": true,
  1927. "_materials": [
  1928. {
  1929. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1930. }
  1931. ],
  1932. "_srcBlendFactor": 770,
  1933. "_dstBlendFactor": 771,
  1934. "_spriteFrame": null,
  1935. "_type": 1,
  1936. "_sizeMode": 0,
  1937. "_fillType": 0,
  1938. "_fillCenter": {
  1939. "__type__": "cc.Vec2",
  1940. "x": 0,
  1941. "y": 0
  1942. },
  1943. "_fillStart": 0,
  1944. "_fillRange": 0,
  1945. "_isTrimmedMode": true,
  1946. "_atlas": null,
  1947. "_id": ""
  1948. },
  1949. {
  1950. "__type__": "cc.ScrollView",
  1951. "_name": "",
  1952. "_objFlags": 0,
  1953. "node": {
  1954. "__id__": 26
  1955. },
  1956. "_enabled": true,
  1957. "horizontal": false,
  1958. "vertical": true,
  1959. "inertia": true,
  1960. "brake": 0.75,
  1961. "elastic": true,
  1962. "bounceDuration": 0.23,
  1963. "scrollEvents": [],
  1964. "cancelInnerEvents": true,
  1965. "_N$content": {
  1966. "__id__": 28
  1967. },
  1968. "content": {
  1969. "__id__": 28
  1970. },
  1971. "_N$horizontalScrollBar": null,
  1972. "_N$verticalScrollBar": null,
  1973. "_id": ""
  1974. },
  1975. {
  1976. "__type__": "cc.PrefabInfo",
  1977. "root": {
  1978. "__id__": 1
  1979. },
  1980. "asset": {
  1981. "__id__": 0
  1982. },
  1983. "fileId": "67ofbmMOpIC5sfmbn6EVz+",
  1984. "sync": false
  1985. },
  1986. {
  1987. "__type__": "cc.PrefabInfo",
  1988. "root": {
  1989. "__id__": 1
  1990. },
  1991. "asset": {
  1992. "__id__": 0
  1993. },
  1994. "fileId": "50SG9eIzpEravNVNBrUOD6",
  1995. "sync": false
  1996. },
  1997. {
  1998. "__type__": "cc.Node",
  1999. "_name": "NdGame",
  2000. "_objFlags": 0,
  2001. "_parent": {
  2002. "__id__": 1
  2003. },
  2004. "_children": [
  2005. {
  2006. "__id__": 56
  2007. },
  2008. {
  2009. "__id__": 61
  2010. },
  2011. {
  2012. "__id__": 64
  2013. },
  2014. {
  2015. "__id__": 67
  2016. },
  2017. {
  2018. "__id__": 70
  2019. },
  2020. {
  2021. "__id__": 73
  2022. }
  2023. ],
  2024. "_active": true,
  2025. "_components": [],
  2026. "_prefab": {
  2027. "__id__": 76
  2028. },
  2029. "_opacity": 255,
  2030. "_color": {
  2031. "__type__": "cc.Color",
  2032. "r": 255,
  2033. "g": 255,
  2034. "b": 255,
  2035. "a": 255
  2036. },
  2037. "_contentSize": {
  2038. "__type__": "cc.Size",
  2039. "width": 1200,
  2040. "height": 0
  2041. },
  2042. "_anchorPoint": {
  2043. "__type__": "cc.Vec2",
  2044. "x": 0.5,
  2045. "y": 0.5
  2046. },
  2047. "_trs": {
  2048. "__type__": "TypedArray",
  2049. "ctor": "Float64Array",
  2050. "array": [
  2051. 0,
  2052. 0,
  2053. 0,
  2054. 0,
  2055. 0,
  2056. 0,
  2057. 1,
  2058. 1,
  2059. 1,
  2060. 1
  2061. ]
  2062. },
  2063. "_eulerAngles": {
  2064. "__type__": "cc.Vec3",
  2065. "x": 0,
  2066. "y": 0,
  2067. "z": 0
  2068. },
  2069. "_skewX": 0,
  2070. "_skewY": 0,
  2071. "_is3DNode": false,
  2072. "_groupIndex": 0,
  2073. "groupIndex": 0,
  2074. "_id": ""
  2075. },
  2076. {
  2077. "__type__": "cc.Node",
  2078. "_name": "BtCreate",
  2079. "_objFlags": 0,
  2080. "_parent": {
  2081. "__id__": 55
  2082. },
  2083. "_children": [],
  2084. "_active": true,
  2085. "_components": [
  2086. {
  2087. "__id__": 57
  2088. },
  2089. {
  2090. "__id__": 58
  2091. }
  2092. ],
  2093. "_prefab": {
  2094. "__id__": 60
  2095. },
  2096. "_opacity": 255,
  2097. "_color": {
  2098. "__type__": "cc.Color",
  2099. "r": 255,
  2100. "g": 255,
  2101. "b": 255,
  2102. "a": 255
  2103. },
  2104. "_contentSize": {
  2105. "__type__": "cc.Size",
  2106. "width": 173,
  2107. "height": 61
  2108. },
  2109. "_anchorPoint": {
  2110. "__type__": "cc.Vec2",
  2111. "x": 0.5,
  2112. "y": 0.5
  2113. },
  2114. "_trs": {
  2115. "__type__": "TypedArray",
  2116. "ctor": "Float64Array",
  2117. "array": [
  2118. 356.888,
  2119. -213.577,
  2120. 0,
  2121. 0,
  2122. 0,
  2123. 0,
  2124. 1,
  2125. 1.2,
  2126. 1.2,
  2127. 1
  2128. ]
  2129. },
  2130. "_eulerAngles": {
  2131. "__type__": "cc.Vec3",
  2132. "x": 0,
  2133. "y": 0,
  2134. "z": 0
  2135. },
  2136. "_skewX": 0,
  2137. "_skewY": 0,
  2138. "_is3DNode": false,
  2139. "_groupIndex": 0,
  2140. "groupIndex": 0,
  2141. "_id": ""
  2142. },
  2143. {
  2144. "__type__": "cc.Sprite",
  2145. "_name": "",
  2146. "_objFlags": 0,
  2147. "node": {
  2148. "__id__": 56
  2149. },
  2150. "_enabled": true,
  2151. "_materials": [
  2152. {
  2153. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2154. }
  2155. ],
  2156. "_srcBlendFactor": 770,
  2157. "_dstBlendFactor": 771,
  2158. "_spriteFrame": {
  2159. "__uuid__": "80921bbb-0206-4a65-ae10-00dae2003e31"
  2160. },
  2161. "_type": 0,
  2162. "_sizeMode": 1,
  2163. "_fillType": 0,
  2164. "_fillCenter": {
  2165. "__type__": "cc.Vec2",
  2166. "x": 0,
  2167. "y": 0
  2168. },
  2169. "_fillStart": 0,
  2170. "_fillRange": 0,
  2171. "_isTrimmedMode": true,
  2172. "_atlas": null,
  2173. "_id": ""
  2174. },
  2175. {
  2176. "__type__": "cc.Button",
  2177. "_name": "",
  2178. "_objFlags": 0,
  2179. "node": {
  2180. "__id__": 56
  2181. },
  2182. "_enabled": true,
  2183. "_normalMaterial": null,
  2184. "_grayMaterial": null,
  2185. "duration": 0,
  2186. "zoomScale": 1.2,
  2187. "clickEvents": [
  2188. {
  2189. "__id__": 59
  2190. }
  2191. ],
  2192. "_N$interactable": true,
  2193. "_N$enableAutoGrayEffect": false,
  2194. "_N$transition": 1,
  2195. "transition": 1,
  2196. "_N$normalColor": {
  2197. "__type__": "cc.Color",
  2198. "r": 255,
  2199. "g": 255,
  2200. "b": 255,
  2201. "a": 255
  2202. },
  2203. "_N$pressedColor": {
  2204. "__type__": "cc.Color",
  2205. "r": 180,
  2206. "g": 180,
  2207. "b": 180,
  2208. "a": 255
  2209. },
  2210. "pressedColor": {
  2211. "__type__": "cc.Color",
  2212. "r": 180,
  2213. "g": 180,
  2214. "b": 180,
  2215. "a": 255
  2216. },
  2217. "_N$hoverColor": {
  2218. "__type__": "cc.Color",
  2219. "r": 255,
  2220. "g": 255,
  2221. "b": 255,
  2222. "a": 255
  2223. },
  2224. "hoverColor": {
  2225. "__type__": "cc.Color",
  2226. "r": 255,
  2227. "g": 255,
  2228. "b": 255,
  2229. "a": 255
  2230. },
  2231. "_N$disabledColor": {
  2232. "__type__": "cc.Color",
  2233. "r": 255,
  2234. "g": 255,
  2235. "b": 255,
  2236. "a": 255
  2237. },
  2238. "_N$normalSprite": null,
  2239. "_N$pressedSprite": null,
  2240. "pressedSprite": null,
  2241. "_N$hoverSprite": null,
  2242. "hoverSprite": null,
  2243. "_N$disabledSprite": null,
  2244. "_N$target": {
  2245. "__id__": 56
  2246. },
  2247. "_id": ""
  2248. },
  2249. {
  2250. "__type__": "cc.ClickEvent",
  2251. "target": {
  2252. "__id__": 1
  2253. },
  2254. "component": "",
  2255. "_componentId": "ed644I8yfZGZpY45M0V7gVt",
  2256. "handler": "OnBtCreate",
  2257. "customEventData": ""
  2258. },
  2259. {
  2260. "__type__": "cc.PrefabInfo",
  2261. "root": {
  2262. "__id__": 1
  2263. },
  2264. "asset": {
  2265. "__id__": 0
  2266. },
  2267. "fileId": "d9IOmNppVB1LDvm+N2oCJ2",
  2268. "sync": false
  2269. },
  2270. {
  2271. "__type__": "cc.Node",
  2272. "_name": "tips",
  2273. "_objFlags": 0,
  2274. "_parent": {
  2275. "__id__": 55
  2276. },
  2277. "_children": [],
  2278. "_active": false,
  2279. "_components": [
  2280. {
  2281. "__id__": 62
  2282. }
  2283. ],
  2284. "_prefab": {
  2285. "__id__": 63
  2286. },
  2287. "_opacity": 255,
  2288. "_color": {
  2289. "__type__": "cc.Color",
  2290. "r": 201,
  2291. "g": 73,
  2292. "b": 36,
  2293. "a": 255
  2294. },
  2295. "_contentSize": {
  2296. "__type__": "cc.Size",
  2297. "width": 310,
  2298. "height": 71.72
  2299. },
  2300. "_anchorPoint": {
  2301. "__type__": "cc.Vec2",
  2302. "x": 0,
  2303. "y": 1
  2304. },
  2305. "_trs": {
  2306. "__type__": "TypedArray",
  2307. "ctor": "Float64Array",
  2308. "array": [
  2309. 316.45,
  2310. -276.234,
  2311. 0,
  2312. 0,
  2313. 0,
  2314. 0,
  2315. 1,
  2316. 1,
  2317. 1,
  2318. 1
  2319. ]
  2320. },
  2321. "_eulerAngles": {
  2322. "__type__": "cc.Vec3",
  2323. "x": 0,
  2324. "y": 0,
  2325. "z": 0
  2326. },
  2327. "_skewX": 0,
  2328. "_skewY": 0,
  2329. "_is3DNode": false,
  2330. "_groupIndex": 0,
  2331. "groupIndex": 0,
  2332. "_id": ""
  2333. },
  2334. {
  2335. "__type__": "cc.Label",
  2336. "_name": "",
  2337. "_objFlags": 0,
  2338. "node": {
  2339. "__id__": 61
  2340. },
  2341. "_enabled": true,
  2342. "_materials": [
  2343. {
  2344. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2345. }
  2346. ],
  2347. "_srcBlendFactor": 770,
  2348. "_dstBlendFactor": 771,
  2349. "_string": "溫馨提示:點擊? 可查看選項解釋\n備註:首局結算前不扣除鑽石\n",
  2350. "_N$string": "溫馨提示:點擊? 可查看選項解釋\n備註:首局結算前不扣除鑽石\n",
  2351. "_fontSize": 20,
  2352. "_lineHeight": 22,
  2353. "_enableWrapText": true,
  2354. "_N$file": {
  2355. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2356. },
  2357. "_isSystemFontUsed": false,
  2358. "_spacingX": 0,
  2359. "_batchAsBitmap": false,
  2360. "_styleFlags": 0,
  2361. "_underlineHeight": 0,
  2362. "_N$horizontalAlign": 0,
  2363. "_N$verticalAlign": 1,
  2364. "_N$fontFamily": "Arial",
  2365. "_N$overflow": 0,
  2366. "_N$cacheMode": 0,
  2367. "_id": ""
  2368. },
  2369. {
  2370. "__type__": "cc.PrefabInfo",
  2371. "root": {
  2372. "__id__": 1
  2373. },
  2374. "asset": {
  2375. "__id__": 0
  2376. },
  2377. "fileId": "d6ubhnnWtOJINtd1B4QWBc",
  2378. "sync": false
  2379. },
  2380. {
  2381. "__type__": "cc.Node",
  2382. "_name": "loadTip",
  2383. "_objFlags": 0,
  2384. "_parent": {
  2385. "__id__": 55
  2386. },
  2387. "_children": [],
  2388. "_active": true,
  2389. "_components": [
  2390. {
  2391. "__id__": 65
  2392. }
  2393. ],
  2394. "_prefab": {
  2395. "__id__": 66
  2396. },
  2397. "_opacity": 255,
  2398. "_color": {
  2399. "__type__": "cc.Color",
  2400. "r": 201,
  2401. "g": 73,
  2402. "b": 36,
  2403. "a": 255
  2404. },
  2405. "_contentSize": {
  2406. "__type__": "cc.Size",
  2407. "width": 240,
  2408. "height": 52.92
  2409. },
  2410. "_anchorPoint": {
  2411. "__type__": "cc.Vec2",
  2412. "x": 0.5,
  2413. "y": 0.5
  2414. },
  2415. "_trs": {
  2416. "__type__": "TypedArray",
  2417. "ctor": "Float64Array",
  2418. "array": [
  2419. 0,
  2420. 0,
  2421. 0,
  2422. 0,
  2423. 0,
  2424. 0,
  2425. 1,
  2426. 1.2,
  2427. 1.2,
  2428. 1
  2429. ]
  2430. },
  2431. "_eulerAngles": {
  2432. "__type__": "cc.Vec3",
  2433. "x": 0,
  2434. "y": 0,
  2435. "z": 0
  2436. },
  2437. "_skewX": 0,
  2438. "_skewY": 0,
  2439. "_is3DNode": false,
  2440. "_groupIndex": 0,
  2441. "groupIndex": 0,
  2442. "_id": ""
  2443. },
  2444. {
  2445. "__type__": "cc.Label",
  2446. "_name": "",
  2447. "_objFlags": 0,
  2448. "node": {
  2449. "__id__": 64
  2450. },
  2451. "_enabled": true,
  2452. "_materials": [
  2453. {
  2454. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2455. }
  2456. ],
  2457. "_srcBlendFactor": 770,
  2458. "_dstBlendFactor": 771,
  2459. "_string": "加載頁面中…",
  2460. "_N$string": "加載頁面中…",
  2461. "_fontSize": 40,
  2462. "_lineHeight": 42,
  2463. "_enableWrapText": true,
  2464. "_N$file": {
  2465. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2466. },
  2467. "_isSystemFontUsed": false,
  2468. "_spacingX": 0,
  2469. "_batchAsBitmap": false,
  2470. "_styleFlags": 0,
  2471. "_underlineHeight": 0,
  2472. "_N$horizontalAlign": 1,
  2473. "_N$verticalAlign": 1,
  2474. "_N$fontFamily": "Arial",
  2475. "_N$overflow": 0,
  2476. "_N$cacheMode": 0,
  2477. "_id": ""
  2478. },
  2479. {
  2480. "__type__": "cc.PrefabInfo",
  2481. "root": {
  2482. "__id__": 1
  2483. },
  2484. "asset": {
  2485. "__id__": 0
  2486. },
  2487. "fileId": "4btU9B23tD4qGuHUbu20JN",
  2488. "sync": false
  2489. },
  2490. {
  2491. "__type__": "cc.Node",
  2492. "_name": "line",
  2493. "_objFlags": 0,
  2494. "_parent": {
  2495. "__id__": 55
  2496. },
  2497. "_children": [],
  2498. "_active": true,
  2499. "_components": [
  2500. {
  2501. "__id__": 68
  2502. }
  2503. ],
  2504. "_prefab": {
  2505. "__id__": 69
  2506. },
  2507. "_opacity": 255,
  2508. "_color": {
  2509. "__type__": "cc.Color",
  2510. "r": 255,
  2511. "g": 255,
  2512. "b": 255,
  2513. "a": 255
  2514. },
  2515. "_contentSize": {
  2516. "__type__": "cc.Size",
  2517. "width": 1000,
  2518. "height": 6
  2519. },
  2520. "_anchorPoint": {
  2521. "__type__": "cc.Vec2",
  2522. "x": 0.5,
  2523. "y": 0.5
  2524. },
  2525. "_trs": {
  2526. "__type__": "TypedArray",
  2527. "ctor": "Float64Array",
  2528. "array": [
  2529. 0,
  2530. -156.736,
  2531. 0,
  2532. 0,
  2533. 0,
  2534. 0,
  2535. 1,
  2536. 1,
  2537. 1,
  2538. 1
  2539. ]
  2540. },
  2541. "_eulerAngles": {
  2542. "__type__": "cc.Vec3",
  2543. "x": 0,
  2544. "y": 0,
  2545. "z": 0
  2546. },
  2547. "_skewX": 0,
  2548. "_skewY": 0,
  2549. "_is3DNode": false,
  2550. "_groupIndex": 0,
  2551. "groupIndex": 0,
  2552. "_id": ""
  2553. },
  2554. {
  2555. "__type__": "cc.Sprite",
  2556. "_name": "",
  2557. "_objFlags": 0,
  2558. "node": {
  2559. "__id__": 67
  2560. },
  2561. "_enabled": true,
  2562. "_materials": [
  2563. {
  2564. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2565. }
  2566. ],
  2567. "_srcBlendFactor": 770,
  2568. "_dstBlendFactor": 771,
  2569. "_spriteFrame": {
  2570. "__uuid__": "10a34474-f590-4012-83cf-7b6c379bb60f"
  2571. },
  2572. "_type": 0,
  2573. "_sizeMode": 0,
  2574. "_fillType": 0,
  2575. "_fillCenter": {
  2576. "__type__": "cc.Vec2",
  2577. "x": 0,
  2578. "y": 0
  2579. },
  2580. "_fillStart": 0,
  2581. "_fillRange": 0,
  2582. "_isTrimmedMode": true,
  2583. "_atlas": null,
  2584. "_id": ""
  2585. },
  2586. {
  2587. "__type__": "cc.PrefabInfo",
  2588. "root": {
  2589. "__id__": 1
  2590. },
  2591. "asset": {
  2592. "__id__": 0
  2593. },
  2594. "fileId": "d04nJzD3BM2aSehh64TltR",
  2595. "sync": false
  2596. },
  2597. {
  2598. "__type__": "cc.Node",
  2599. "_name": "Diamond",
  2600. "_objFlags": 0,
  2601. "_parent": {
  2602. "__id__": 55
  2603. },
  2604. "_children": [],
  2605. "_active": true,
  2606. "_components": [
  2607. {
  2608. "__id__": 71
  2609. }
  2610. ],
  2611. "_prefab": {
  2612. "__id__": 72
  2613. },
  2614. "_opacity": 255,
  2615. "_color": {
  2616. "__type__": "cc.Color",
  2617. "r": 255,
  2618. "g": 255,
  2619. "b": 255,
  2620. "a": 255
  2621. },
  2622. "_contentSize": {
  2623. "__type__": "cc.Size",
  2624. "width": 288.98,
  2625. "height": 37.8
  2626. },
  2627. "_anchorPoint": {
  2628. "__type__": "cc.Vec2",
  2629. "x": 0.5,
  2630. "y": 0.5
  2631. },
  2632. "_trs": {
  2633. "__type__": "TypedArray",
  2634. "ctor": "Float64Array",
  2635. "array": [
  2636. -278.4,
  2637. -190.792,
  2638. 0,
  2639. 0,
  2640. 0,
  2641. 0,
  2642. 1,
  2643. 1,
  2644. 1,
  2645. 1
  2646. ]
  2647. },
  2648. "_eulerAngles": {
  2649. "__type__": "cc.Vec3",
  2650. "x": 0,
  2651. "y": 0,
  2652. "z": 0
  2653. },
  2654. "_skewX": 0,
  2655. "_skewY": 0,
  2656. "_is3DNode": false,
  2657. "_groupIndex": 0,
  2658. "groupIndex": 0,
  2659. "_id": ""
  2660. },
  2661. {
  2662. "__type__": "cc.RichText",
  2663. "_name": "",
  2664. "_objFlags": 0,
  2665. "node": {
  2666. "__id__": 70
  2667. },
  2668. "_enabled": true,
  2669. "_fontFamily": "Arial",
  2670. "_isSystemFontUsed": true,
  2671. "_N$string": "<color=#00ff00>擁有鑽石:</c><color=#0fffff>8888</color>",
  2672. "_N$horizontalAlign": 0,
  2673. "_N$fontSize": 40,
  2674. "_N$font": null,
  2675. "_N$cacheMode": 0,
  2676. "_N$maxWidth": 0,
  2677. "_N$lineHeight": 30,
  2678. "_N$imageAtlas": null,
  2679. "_N$handleTouchEvent": true,
  2680. "_id": ""
  2681. },
  2682. {
  2683. "__type__": "cc.PrefabInfo",
  2684. "root": {
  2685. "__id__": 1
  2686. },
  2687. "asset": {
  2688. "__id__": 0
  2689. },
  2690. "fileId": "a2CdJ5z39IYbH1GOMFvmEK",
  2691. "sync": false
  2692. },
  2693. {
  2694. "__type__": "cc.Node",
  2695. "_name": "New Label",
  2696. "_objFlags": 0,
  2697. "_parent": {
  2698. "__id__": 55
  2699. },
  2700. "_children": [],
  2701. "_active": false,
  2702. "_components": [
  2703. {
  2704. "__id__": 74
  2705. }
  2706. ],
  2707. "_prefab": {
  2708. "__id__": 75
  2709. },
  2710. "_opacity": 255,
  2711. "_color": {
  2712. "__type__": "cc.Color",
  2713. "r": 129,
  2714. "g": 95,
  2715. "b": 57,
  2716. "a": 255
  2717. },
  2718. "_contentSize": {
  2719. "__type__": "cc.Size",
  2720. "width": 325,
  2721. "height": 31.5
  2722. },
  2723. "_anchorPoint": {
  2724. "__type__": "cc.Vec2",
  2725. "x": 0.5,
  2726. "y": 0.5
  2727. },
  2728. "_trs": {
  2729. "__type__": "TypedArray",
  2730. "ctor": "Float64Array",
  2731. "array": [
  2732. -259.276,
  2733. -228.756,
  2734. 0,
  2735. 0,
  2736. 0,
  2737. 0,
  2738. 1,
  2739. 1,
  2740. 1,
  2741. 1
  2742. ]
  2743. },
  2744. "_eulerAngles": {
  2745. "__type__": "cc.Vec3",
  2746. "x": 0,
  2747. "y": 0,
  2748. "z": 0
  2749. },
  2750. "_skewX": 0,
  2751. "_skewY": 0,
  2752. "_is3DNode": false,
  2753. "_groupIndex": 0,
  2754. "groupIndex": 0,
  2755. "_id": ""
  2756. },
  2757. {
  2758. "__type__": "cc.Label",
  2759. "_name": "",
  2760. "_objFlags": 0,
  2761. "node": {
  2762. "__id__": 73
  2763. },
  2764. "_enabled": true,
  2765. "_materials": [
  2766. {
  2767. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2768. }
  2769. ],
  2770. "_srcBlendFactor": 770,
  2771. "_dstBlendFactor": 771,
  2772. "_string": "備註:首局結束前不扣除鑽石",
  2773. "_N$string": "備註:首局結束前不扣除鑽石",
  2774. "_fontSize": 25,
  2775. "_lineHeight": 25,
  2776. "_enableWrapText": true,
  2777. "_N$file": null,
  2778. "_isSystemFontUsed": true,
  2779. "_spacingX": 0,
  2780. "_batchAsBitmap": false,
  2781. "_styleFlags": 0,
  2782. "_underlineHeight": 0,
  2783. "_N$horizontalAlign": 1,
  2784. "_N$verticalAlign": 1,
  2785. "_N$fontFamily": "Arial",
  2786. "_N$overflow": 0,
  2787. "_N$cacheMode": 0,
  2788. "_id": ""
  2789. },
  2790. {
  2791. "__type__": "cc.PrefabInfo",
  2792. "root": {
  2793. "__id__": 1
  2794. },
  2795. "asset": {
  2796. "__id__": 0
  2797. },
  2798. "fileId": "9elbYU5xlDUZ14sWqE6Ahu",
  2799. "sync": false
  2800. },
  2801. {
  2802. "__type__": "cc.PrefabInfo",
  2803. "root": {
  2804. "__id__": 1
  2805. },
  2806. "asset": {
  2807. "__id__": 0
  2808. },
  2809. "fileId": "1dBGC1dO9Iy5IIF/lASAa5",
  2810. "sync": false
  2811. },
  2812. {
  2813. "__type__": "cc.Node",
  2814. "_name": "NotFind",
  2815. "_objFlags": 0,
  2816. "_parent": {
  2817. "__id__": 1
  2818. },
  2819. "_children": [],
  2820. "_active": false,
  2821. "_components": [
  2822. {
  2823. "__id__": 78
  2824. }
  2825. ],
  2826. "_prefab": {
  2827. "__id__": 79
  2828. },
  2829. "_opacity": 255,
  2830. "_color": {
  2831. "__type__": "cc.Color",
  2832. "r": 244,
  2833. "g": 79,
  2834. "b": 55,
  2835. "a": 255
  2836. },
  2837. "_contentSize": {
  2838. "__type__": "cc.Size",
  2839. "width": 312,
  2840. "height": 100.8
  2841. },
  2842. "_anchorPoint": {
  2843. "__type__": "cc.Vec2",
  2844. "x": 0.5,
  2845. "y": 0.5
  2846. },
  2847. "_trs": {
  2848. "__type__": "TypedArray",
  2849. "ctor": "Float64Array",
  2850. "array": [
  2851. 0,
  2852. 0,
  2853. 0,
  2854. 0,
  2855. 0,
  2856. 0,
  2857. 1,
  2858. 1,
  2859. 1,
  2860. 1
  2861. ]
  2862. },
  2863. "_eulerAngles": {
  2864. "__type__": "cc.Vec3",
  2865. "x": 0,
  2866. "y": 0,
  2867. "z": 0
  2868. },
  2869. "_skewX": 0,
  2870. "_skewY": 0,
  2871. "_is3DNode": false,
  2872. "_groupIndex": 0,
  2873. "groupIndex": 0,
  2874. "_id": ""
  2875. },
  2876. {
  2877. "__type__": "cc.Label",
  2878. "_name": "",
  2879. "_objFlags": 0,
  2880. "node": {
  2881. "__id__": 77
  2882. },
  2883. "_enabled": true,
  2884. "_materials": [
  2885. {
  2886. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2887. }
  2888. ],
  2889. "_srcBlendFactor": 770,
  2890. "_dstBlendFactor": 771,
  2891. "_string": "敬请期待",
  2892. "_N$string": "敬请期待",
  2893. "_fontSize": 78,
  2894. "_lineHeight": 80,
  2895. "_enableWrapText": true,
  2896. "_N$file": {
  2897. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2898. },
  2899. "_isSystemFontUsed": false,
  2900. "_spacingX": 0,
  2901. "_batchAsBitmap": false,
  2902. "_styleFlags": 0,
  2903. "_underlineHeight": 0,
  2904. "_N$horizontalAlign": 1,
  2905. "_N$verticalAlign": 1,
  2906. "_N$fontFamily": "Arial",
  2907. "_N$overflow": 0,
  2908. "_N$cacheMode": 0,
  2909. "_id": ""
  2910. },
  2911. {
  2912. "__type__": "cc.PrefabInfo",
  2913. "root": {
  2914. "__id__": 1
  2915. },
  2916. "asset": {
  2917. "__id__": 0
  2918. },
  2919. "fileId": "350PubIBFDf7//cWZHjDVH",
  2920. "sync": false
  2921. },
  2922. {
  2923. "__type__": "ed644I8yfZGZpY45M0V7gVt",
  2924. "_name": "",
  2925. "_objFlags": 0,
  2926. "node": {
  2927. "__id__": 1
  2928. },
  2929. "_enabled": true,
  2930. "m_groupNode": {
  2931. "__id__": 28
  2932. },
  2933. "m_rulesNode": {
  2934. "__id__": 55
  2935. },
  2936. "m_BtCreate": {
  2937. "__id__": 56
  2938. },
  2939. "m_LabLoadTip": {
  2940. "__id__": 65
  2941. },
  2942. "_id": ""
  2943. },
  2944. {
  2945. "__type__": "667d7cRO4ZHOrbfi0fiHKIF",
  2946. "_name": "",
  2947. "_objFlags": 0,
  2948. "node": {
  2949. "__id__": 1
  2950. },
  2951. "_enabled": true,
  2952. "m_NdLayoutArr": [
  2953. {
  2954. "__id__": 28
  2955. }
  2956. ],
  2957. "_id": ""
  2958. },
  2959. {
  2960. "__type__": "cc.PrefabInfo",
  2961. "root": {
  2962. "__id__": 1
  2963. },
  2964. "asset": {
  2965. "__id__": 0
  2966. },
  2967. "fileId": "",
  2968. "sync": false
  2969. }
  2970. ]