a63b65ff-6053-4aee-9653-0f452b5ee61e.json 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "HelpNode",
  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": "helpNode",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. }
  26. ],
  27. "_active": true,
  28. "_level": 1,
  29. "_components": [
  30. {
  31. "__id__": 68
  32. },
  33. {
  34. "__id__": 69
  35. }
  36. ],
  37. "_prefab": {
  38. "__id__": 70
  39. },
  40. "_opacity": 255,
  41. "_color": {
  42. "__type__": "cc.Color",
  43. "r": 255,
  44. "g": 255,
  45. "b": 255,
  46. "a": 255
  47. },
  48. "_contentSize": {
  49. "__type__": "cc.Size",
  50. "width": 640,
  51. "height": 1136
  52. },
  53. "_anchorPoint": {
  54. "__type__": "cc.Vec2",
  55. "x": 0.5,
  56. "y": 0.5
  57. },
  58. "_eulerAngles": {
  59. "__type__": "cc.Vec3",
  60. "x": 0,
  61. "y": 0,
  62. "z": 0
  63. },
  64. "_skewX": 0,
  65. "_skewY": 0,
  66. "_is3DNode": false,
  67. "groupIndex": 0,
  68. "_id": "",
  69. "_trs": {
  70. "__type__": "TypedArray",
  71. "ctor": "Float64Array",
  72. "array": [
  73. 320,
  74. 568,
  75. 0,
  76. 0,
  77. 0,
  78. 0,
  79. 1,
  80. 1,
  81. 1,
  82. 1
  83. ]
  84. }
  85. },
  86. {
  87. "__type__": "cc.Node",
  88. "_name": "maskLayer",
  89. "_objFlags": 0,
  90. "_parent": {
  91. "__id__": 1
  92. },
  93. "_children": [],
  94. "_active": true,
  95. "_level": 2,
  96. "_components": [
  97. {
  98. "__id__": 3
  99. },
  100. {
  101. "__id__": 4
  102. },
  103. {
  104. "__id__": 5
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 6
  109. },
  110. "_opacity": 150,
  111. "_color": {
  112. "__type__": "cc.Color",
  113. "r": 0,
  114. "g": 0,
  115. "b": 0,
  116. "a": 255
  117. },
  118. "_contentSize": {
  119. "__type__": "cc.Size",
  120. "width": 640,
  121. "height": 1136
  122. },
  123. "_anchorPoint": {
  124. "__type__": "cc.Vec2",
  125. "x": 0.5,
  126. "y": 0.5
  127. },
  128. "_eulerAngles": {
  129. "__type__": "cc.Vec3",
  130. "x": 0,
  131. "y": 0,
  132. "z": 0
  133. },
  134. "_skewX": 0,
  135. "_skewY": 0,
  136. "_is3DNode": false,
  137. "groupIndex": 0,
  138. "_id": "",
  139. "_trs": {
  140. "__type__": "TypedArray",
  141. "ctor": "Float64Array",
  142. "array": [
  143. 0,
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 1,
  150. 1,
  151. 1,
  152. 1
  153. ]
  154. }
  155. },
  156. {
  157. "__type__": "cc.Sprite",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "node": {
  161. "__id__": 2
  162. },
  163. "_enabled": true,
  164. "_materials": [
  165. {
  166. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  167. }
  168. ],
  169. "_srcBlendFactor": 770,
  170. "_dstBlendFactor": 771,
  171. "_spriteFrame": {
  172. "__uuid__": "9bbda31e-ad49-43c9-aaf2-f7d9896bac69"
  173. },
  174. "_type": 1,
  175. "_sizeMode": 0,
  176. "_fillType": 0,
  177. "_fillCenter": {
  178. "__type__": "cc.Vec2",
  179. "x": 0,
  180. "y": 0
  181. },
  182. "_fillStart": 0,
  183. "_fillRange": 0,
  184. "_isTrimmedMode": true,
  185. "_atlas": null,
  186. "_id": ""
  187. },
  188. {
  189. "__type__": "cc.Layout",
  190. "_name": "",
  191. "_objFlags": 0,
  192. "node": {
  193. "__id__": 2
  194. },
  195. "_enabled": true,
  196. "_layoutSize": {
  197. "__type__": "cc.Size",
  198. "width": 640,
  199. "height": 1136
  200. },
  201. "_resize": 0,
  202. "_N$layoutType": 0,
  203. "_N$padding": 0,
  204. "_N$cellSize": {
  205. "__type__": "cc.Size",
  206. "width": 40,
  207. "height": 40
  208. },
  209. "_N$startAxis": 0,
  210. "_N$paddingLeft": 0,
  211. "_N$paddingRight": 0,
  212. "_N$paddingTop": 0,
  213. "_N$paddingBottom": 0,
  214. "_N$spacingX": 0,
  215. "_N$spacingY": 0,
  216. "_N$verticalDirection": 1,
  217. "_N$horizontalDirection": 0,
  218. "_N$affectedByScale": false,
  219. "_id": ""
  220. },
  221. {
  222. "__type__": "cc.Widget",
  223. "_name": "",
  224. "_objFlags": 0,
  225. "node": {
  226. "__id__": 2
  227. },
  228. "_enabled": true,
  229. "alignMode": 1,
  230. "_target": null,
  231. "_alignFlags": 45,
  232. "_left": 0,
  233. "_right": 0,
  234. "_top": 0,
  235. "_bottom": 0,
  236. "_verticalCenter": 0,
  237. "_horizontalCenter": 0,
  238. "_isAbsLeft": true,
  239. "_isAbsRight": true,
  240. "_isAbsTop": true,
  241. "_isAbsBottom": true,
  242. "_isAbsHorizontalCenter": true,
  243. "_isAbsVerticalCenter": true,
  244. "_originalWidth": 640,
  245. "_originalHeight": 1136,
  246. "_id": ""
  247. },
  248. {
  249. "__type__": "cc.PrefabInfo",
  250. "root": {
  251. "__id__": 1
  252. },
  253. "asset": {
  254. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  255. },
  256. "fileId": "6f5+IiX3BC6apc87bNgjV1",
  257. "sync": false
  258. },
  259. {
  260. "__type__": "cc.Node",
  261. "_name": "bg",
  262. "_objFlags": 0,
  263. "_parent": {
  264. "__id__": 1
  265. },
  266. "_children": [
  267. {
  268. "__id__": 8
  269. },
  270. {
  271. "__id__": 11
  272. },
  273. {
  274. "__id__": 17
  275. },
  276. {
  277. "__id__": 23
  278. },
  279. {
  280. "__id__": 29
  281. },
  282. {
  283. "__id__": 35
  284. },
  285. {
  286. "__id__": 41
  287. },
  288. {
  289. "__id__": 47
  290. },
  291. {
  292. "__id__": 50
  293. },
  294. {
  295. "__id__": 53
  296. },
  297. {
  298. "__id__": 55
  299. },
  300. {
  301. "__id__": 60
  302. }
  303. ],
  304. "_active": true,
  305. "_level": 2,
  306. "_components": [
  307. {
  308. "__id__": 66
  309. }
  310. ],
  311. "_prefab": {
  312. "__id__": 67
  313. },
  314. "_opacity": 255,
  315. "_color": {
  316. "__type__": "cc.Color",
  317. "r": 255,
  318. "g": 255,
  319. "b": 255,
  320. "a": 255
  321. },
  322. "_contentSize": {
  323. "__type__": "cc.Size",
  324. "width": 375,
  325. "height": 474
  326. },
  327. "_anchorPoint": {
  328. "__type__": "cc.Vec2",
  329. "x": 0.5,
  330. "y": 0.5
  331. },
  332. "_eulerAngles": {
  333. "__type__": "cc.Vec3",
  334. "x": 0,
  335. "y": 0,
  336. "z": 0
  337. },
  338. "_skewX": 0,
  339. "_skewY": 0,
  340. "_is3DNode": false,
  341. "groupIndex": 0,
  342. "_id": "",
  343. "_trs": {
  344. "__type__": "TypedArray",
  345. "ctor": "Float64Array",
  346. "array": [
  347. 0,
  348. 0,
  349. 0,
  350. 0,
  351. 0,
  352. 0,
  353. 1,
  354. 1.5,
  355. 1.5,
  356. 1
  357. ]
  358. }
  359. },
  360. {
  361. "__type__": "cc.Node",
  362. "_name": "title",
  363. "_objFlags": 0,
  364. "_parent": {
  365. "__id__": 7
  366. },
  367. "_children": [],
  368. "_active": true,
  369. "_level": 3,
  370. "_components": [
  371. {
  372. "__id__": 9
  373. }
  374. ],
  375. "_prefab": {
  376. "__id__": 10
  377. },
  378. "_opacity": 255,
  379. "_color": {
  380. "__type__": "cc.Color",
  381. "r": 255,
  382. "g": 255,
  383. "b": 255,
  384. "a": 255
  385. },
  386. "_contentSize": {
  387. "__type__": "cc.Size",
  388. "width": 62,
  389. "height": 34
  390. },
  391. "_anchorPoint": {
  392. "__type__": "cc.Vec2",
  393. "x": 0.5,
  394. "y": 0.5
  395. },
  396. "_eulerAngles": {
  397. "__type__": "cc.Vec3",
  398. "x": 0,
  399. "y": 0,
  400. "z": 0
  401. },
  402. "_skewX": 0,
  403. "_skewY": 0,
  404. "_is3DNode": false,
  405. "groupIndex": 0,
  406. "_id": "",
  407. "_trs": {
  408. "__type__": "TypedArray",
  409. "ctor": "Float64Array",
  410. "array": [
  411. 0,
  412. 208.762,
  413. 0,
  414. 0,
  415. 0,
  416. 0,
  417. 1,
  418. 1,
  419. 1,
  420. 1
  421. ]
  422. }
  423. },
  424. {
  425. "__type__": "cc.Sprite",
  426. "_name": "",
  427. "_objFlags": 0,
  428. "node": {
  429. "__id__": 8
  430. },
  431. "_enabled": true,
  432. "_materials": [
  433. {
  434. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  435. }
  436. ],
  437. "_srcBlendFactor": 770,
  438. "_dstBlendFactor": 771,
  439. "_spriteFrame": {
  440. "__uuid__": "e5eb0d1e-c8b0-4d46-b893-c698285a6dc9"
  441. },
  442. "_type": 0,
  443. "_sizeMode": 1,
  444. "_fillType": 0,
  445. "_fillCenter": {
  446. "__type__": "cc.Vec2",
  447. "x": 0,
  448. "y": 0
  449. },
  450. "_fillStart": 0,
  451. "_fillRange": 0,
  452. "_isTrimmedMode": true,
  453. "_atlas": null,
  454. "_id": ""
  455. },
  456. {
  457. "__type__": "cc.PrefabInfo",
  458. "root": {
  459. "__id__": 1
  460. },
  461. "asset": {
  462. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  463. },
  464. "fileId": "e7McXsT+BHMJNJcZNcqIuL",
  465. "sync": false
  466. },
  467. {
  468. "__type__": "cc.Node",
  469. "_name": "puseBg1",
  470. "_objFlags": 0,
  471. "_parent": {
  472. "__id__": 7
  473. },
  474. "_children": [
  475. {
  476. "__id__": 12
  477. }
  478. ],
  479. "_active": true,
  480. "_level": 3,
  481. "_components": [
  482. {
  483. "__id__": 15
  484. }
  485. ],
  486. "_prefab": {
  487. "__id__": 16
  488. },
  489. "_opacity": 255,
  490. "_color": {
  491. "__type__": "cc.Color",
  492. "r": 255,
  493. "g": 255,
  494. "b": 255,
  495. "a": 255
  496. },
  497. "_contentSize": {
  498. "__type__": "cc.Size",
  499. "width": 75,
  500. "height": 80
  501. },
  502. "_anchorPoint": {
  503. "__type__": "cc.Vec2",
  504. "x": 0.5,
  505. "y": 0.5
  506. },
  507. "_eulerAngles": {
  508. "__type__": "cc.Vec3",
  509. "x": 0,
  510. "y": 0,
  511. "z": 0
  512. },
  513. "_skewX": 0,
  514. "_skewY": 0,
  515. "_is3DNode": false,
  516. "groupIndex": 0,
  517. "_id": "",
  518. "_trs": {
  519. "__type__": "TypedArray",
  520. "ctor": "Float64Array",
  521. "array": [
  522. -131.319,
  523. -88.774,
  524. 0,
  525. 0,
  526. 0,
  527. 0,
  528. 1,
  529. 1,
  530. 1,
  531. 1
  532. ]
  533. }
  534. },
  535. {
  536. "__type__": "cc.Node",
  537. "_name": "New Sprite",
  538. "_objFlags": 0,
  539. "_parent": {
  540. "__id__": 11
  541. },
  542. "_children": [],
  543. "_active": true,
  544. "_level": 4,
  545. "_components": [
  546. {
  547. "__id__": 13
  548. }
  549. ],
  550. "_prefab": {
  551. "__id__": 14
  552. },
  553. "_opacity": 255,
  554. "_color": {
  555. "__type__": "cc.Color",
  556. "r": 255,
  557. "g": 255,
  558. "b": 255,
  559. "a": 255
  560. },
  561. "_contentSize": {
  562. "__type__": "cc.Size",
  563. "width": 60,
  564. "height": 70
  565. },
  566. "_anchorPoint": {
  567. "__type__": "cc.Vec2",
  568. "x": 0.5,
  569. "y": 0.5
  570. },
  571. "_eulerAngles": {
  572. "__type__": "cc.Vec3",
  573. "x": 0,
  574. "y": 0,
  575. "z": 0
  576. },
  577. "_skewX": 0,
  578. "_skewY": 0,
  579. "_is3DNode": false,
  580. "groupIndex": 0,
  581. "_id": "",
  582. "_trs": {
  583. "__type__": "TypedArray",
  584. "ctor": "Float64Array",
  585. "array": [
  586. 0.687,
  587. -1.208,
  588. 0,
  589. 0,
  590. 0,
  591. 0,
  592. 1,
  593. 1,
  594. 1,
  595. 1
  596. ]
  597. }
  598. },
  599. {
  600. "__type__": "cc.Sprite",
  601. "_name": "",
  602. "_objFlags": 0,
  603. "node": {
  604. "__id__": 12
  605. },
  606. "_enabled": true,
  607. "_materials": [
  608. {
  609. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  610. }
  611. ],
  612. "_srcBlendFactor": 770,
  613. "_dstBlendFactor": 771,
  614. "_spriteFrame": {
  615. "__uuid__": "42311a89-864d-4688-a578-7516592fb11f"
  616. },
  617. "_type": 0,
  618. "_sizeMode": 0,
  619. "_fillType": 0,
  620. "_fillCenter": {
  621. "__type__": "cc.Vec2",
  622. "x": 0,
  623. "y": 0
  624. },
  625. "_fillStart": 0,
  626. "_fillRange": 0,
  627. "_isTrimmedMode": true,
  628. "_atlas": null,
  629. "_id": ""
  630. },
  631. {
  632. "__type__": "cc.PrefabInfo",
  633. "root": {
  634. "__id__": 1
  635. },
  636. "asset": {
  637. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  638. },
  639. "fileId": "52mdDPnFNCGYjqG2EkIUBq",
  640. "sync": false
  641. },
  642. {
  643. "__type__": "cc.Sprite",
  644. "_name": "",
  645. "_objFlags": 0,
  646. "node": {
  647. "__id__": 11
  648. },
  649. "_enabled": true,
  650. "_materials": [
  651. {
  652. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  653. }
  654. ],
  655. "_srcBlendFactor": 770,
  656. "_dstBlendFactor": 771,
  657. "_spriteFrame": {
  658. "__uuid__": "db00f33a-568b-4137-9e50-fcfe3e16e17a"
  659. },
  660. "_type": 0,
  661. "_sizeMode": 0,
  662. "_fillType": 0,
  663. "_fillCenter": {
  664. "__type__": "cc.Vec2",
  665. "x": 0,
  666. "y": 0
  667. },
  668. "_fillStart": 0,
  669. "_fillRange": 0,
  670. "_isTrimmedMode": true,
  671. "_atlas": null,
  672. "_id": ""
  673. },
  674. {
  675. "__type__": "cc.PrefabInfo",
  676. "root": {
  677. "__id__": 1
  678. },
  679. "asset": {
  680. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  681. },
  682. "fileId": "90KtYgWJJIdoh3Ju7tRWVe",
  683. "sync": false
  684. },
  685. {
  686. "__type__": "cc.Node",
  687. "_name": "puseBg2",
  688. "_objFlags": 0,
  689. "_parent": {
  690. "__id__": 7
  691. },
  692. "_children": [
  693. {
  694. "__id__": 18
  695. }
  696. ],
  697. "_active": true,
  698. "_level": 3,
  699. "_components": [
  700. {
  701. "__id__": 21
  702. }
  703. ],
  704. "_prefab": {
  705. "__id__": 22
  706. },
  707. "_opacity": 255,
  708. "_color": {
  709. "__type__": "cc.Color",
  710. "r": 255,
  711. "g": 255,
  712. "b": 255,
  713. "a": 255
  714. },
  715. "_contentSize": {
  716. "__type__": "cc.Size",
  717. "width": 75,
  718. "height": 80
  719. },
  720. "_anchorPoint": {
  721. "__type__": "cc.Vec2",
  722. "x": 0.5,
  723. "y": 0.5
  724. },
  725. "_eulerAngles": {
  726. "__type__": "cc.Vec3",
  727. "x": 0,
  728. "y": 0,
  729. "z": 0
  730. },
  731. "_skewX": 0,
  732. "_skewY": 0,
  733. "_is3DNode": false,
  734. "groupIndex": 0,
  735. "_id": "",
  736. "_trs": {
  737. "__type__": "TypedArray",
  738. "ctor": "Float64Array",
  739. "array": [
  740. -131.319,
  741. -177.774,
  742. 0,
  743. 0,
  744. 0,
  745. 0,
  746. 1,
  747. 1,
  748. 1,
  749. 1
  750. ]
  751. }
  752. },
  753. {
  754. "__type__": "cc.Node",
  755. "_name": "New Sprite",
  756. "_objFlags": 0,
  757. "_parent": {
  758. "__id__": 17
  759. },
  760. "_children": [],
  761. "_active": true,
  762. "_level": 4,
  763. "_components": [
  764. {
  765. "__id__": 19
  766. }
  767. ],
  768. "_prefab": {
  769. "__id__": 20
  770. },
  771. "_opacity": 255,
  772. "_color": {
  773. "__type__": "cc.Color",
  774. "r": 255,
  775. "g": 255,
  776. "b": 255,
  777. "a": 255
  778. },
  779. "_contentSize": {
  780. "__type__": "cc.Size",
  781. "width": 65,
  782. "height": 65
  783. },
  784. "_anchorPoint": {
  785. "__type__": "cc.Vec2",
  786. "x": 0.5,
  787. "y": 0.5
  788. },
  789. "_eulerAngles": {
  790. "__type__": "cc.Vec3",
  791. "x": 0,
  792. "y": 0,
  793. "z": 0
  794. },
  795. "_skewX": 0,
  796. "_skewY": 0,
  797. "_is3DNode": false,
  798. "groupIndex": 0,
  799. "_id": "",
  800. "_trs": {
  801. "__type__": "TypedArray",
  802. "ctor": "Float64Array",
  803. "array": [
  804. 1.687,
  805. -0.208,
  806. 0,
  807. 0,
  808. 0,
  809. 0,
  810. 1,
  811. 1,
  812. 1,
  813. 1
  814. ]
  815. }
  816. },
  817. {
  818. "__type__": "cc.Sprite",
  819. "_name": "",
  820. "_objFlags": 0,
  821. "node": {
  822. "__id__": 18
  823. },
  824. "_enabled": true,
  825. "_materials": [
  826. {
  827. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  828. }
  829. ],
  830. "_srcBlendFactor": 770,
  831. "_dstBlendFactor": 771,
  832. "_spriteFrame": {
  833. "__uuid__": "288e39c9-47da-4447-94d0-5e29d52f8f72"
  834. },
  835. "_type": 0,
  836. "_sizeMode": 0,
  837. "_fillType": 0,
  838. "_fillCenter": {
  839. "__type__": "cc.Vec2",
  840. "x": 0,
  841. "y": 0
  842. },
  843. "_fillStart": 0,
  844. "_fillRange": 0,
  845. "_isTrimmedMode": true,
  846. "_atlas": null,
  847. "_id": ""
  848. },
  849. {
  850. "__type__": "cc.PrefabInfo",
  851. "root": {
  852. "__id__": 1
  853. },
  854. "asset": {
  855. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  856. },
  857. "fileId": "2afSemPClDxbYgRKbZebGN",
  858. "sync": false
  859. },
  860. {
  861. "__type__": "cc.Sprite",
  862. "_name": "",
  863. "_objFlags": 0,
  864. "node": {
  865. "__id__": 17
  866. },
  867. "_enabled": true,
  868. "_materials": [
  869. {
  870. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  871. }
  872. ],
  873. "_srcBlendFactor": 770,
  874. "_dstBlendFactor": 771,
  875. "_spriteFrame": {
  876. "__uuid__": "db00f33a-568b-4137-9e50-fcfe3e16e17a"
  877. },
  878. "_type": 0,
  879. "_sizeMode": 0,
  880. "_fillType": 0,
  881. "_fillCenter": {
  882. "__type__": "cc.Vec2",
  883. "x": 0,
  884. "y": 0
  885. },
  886. "_fillStart": 0,
  887. "_fillRange": 0,
  888. "_isTrimmedMode": true,
  889. "_atlas": null,
  890. "_id": ""
  891. },
  892. {
  893. "__type__": "cc.PrefabInfo",
  894. "root": {
  895. "__id__": 1
  896. },
  897. "asset": {
  898. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  899. },
  900. "fileId": "b0RhLM6IRMI5MoS+U5Pv5c",
  901. "sync": false
  902. },
  903. {
  904. "__type__": "cc.Node",
  905. "_name": "txtBg1",
  906. "_objFlags": 0,
  907. "_parent": {
  908. "__id__": 7
  909. },
  910. "_children": [
  911. {
  912. "__id__": 24
  913. }
  914. ],
  915. "_active": true,
  916. "_level": 3,
  917. "_components": [
  918. {
  919. "__id__": 27
  920. }
  921. ],
  922. "_prefab": {
  923. "__id__": 28
  924. },
  925. "_opacity": 255,
  926. "_color": {
  927. "__type__": "cc.Color",
  928. "r": 255,
  929. "g": 255,
  930. "b": 255,
  931. "a": 255
  932. },
  933. "_contentSize": {
  934. "__type__": "cc.Size",
  935. "width": 260,
  936. "height": 49
  937. },
  938. "_anchorPoint": {
  939. "__type__": "cc.Vec2",
  940. "x": 0.5,
  941. "y": 0.5
  942. },
  943. "_eulerAngles": {
  944. "__type__": "cc.Vec3",
  945. "x": 0,
  946. "y": 0,
  947. "z": 0
  948. },
  949. "_skewX": 0,
  950. "_skewY": 0,
  951. "_is3DNode": false,
  952. "groupIndex": 0,
  953. "_id": "",
  954. "_trs": {
  955. "__type__": "TypedArray",
  956. "ctor": "Float64Array",
  957. "array": [
  958. 41.779,
  959. -95.017,
  960. 0,
  961. 0,
  962. 0,
  963. 0,
  964. 1,
  965. 1,
  966. 1,
  967. 1
  968. ]
  969. }
  970. },
  971. {
  972. "__type__": "cc.Node",
  973. "_name": "New Label",
  974. "_objFlags": 0,
  975. "_parent": {
  976. "__id__": 23
  977. },
  978. "_children": [],
  979. "_active": true,
  980. "_level": 4,
  981. "_components": [
  982. {
  983. "__id__": 25
  984. }
  985. ],
  986. "_prefab": {
  987. "__id__": 26
  988. },
  989. "_opacity": 255,
  990. "_color": {
  991. "__type__": "cc.Color",
  992. "r": 231,
  993. "g": 157,
  994. "b": 0,
  995. "a": 255
  996. },
  997. "_contentSize": {
  998. "__type__": "cc.Size",
  999. "width": 239,
  1000. "height": 48.9
  1001. },
  1002. "_anchorPoint": {
  1003. "__type__": "cc.Vec2",
  1004. "x": 0,
  1005. "y": 0.5
  1006. },
  1007. "_eulerAngles": {
  1008. "__type__": "cc.Vec3",
  1009. "x": 0,
  1010. "y": 0,
  1011. "z": 0
  1012. },
  1013. "_skewX": 0,
  1014. "_skewY": 0,
  1015. "_is3DNode": false,
  1016. "groupIndex": 0,
  1017. "_id": "",
  1018. "_trs": {
  1019. "__type__": "TypedArray",
  1020. "ctor": "Float64Array",
  1021. "array": [
  1022. -122.755,
  1023. 3.243,
  1024. 0,
  1025. 0,
  1026. 0,
  1027. 0,
  1028. 1,
  1029. 1,
  1030. 1,
  1031. 1
  1032. ]
  1033. }
  1034. },
  1035. {
  1036. "__type__": "cc.Label",
  1037. "_name": "",
  1038. "_objFlags": 0,
  1039. "node": {
  1040. "__id__": 24
  1041. },
  1042. "_enabled": true,
  1043. "_materials": [
  1044. {
  1045. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1046. }
  1047. ],
  1048. "_useOriginalSize": false,
  1049. "_string": "Click on the box, which is the center \nof the eliminationDrop 9 cubes\n(10 for each consumptio)",
  1050. "_N$string": "Click on the box, which is the center \nof the eliminationDrop 9 cubes\n(10 for each consumptio)",
  1051. "_fontSize": 15,
  1052. "_lineHeight": 15,
  1053. "_enableWrapText": true,
  1054. "_N$file": null,
  1055. "_isSystemFontUsed": true,
  1056. "_spacingX": 0,
  1057. "_batchAsBitmap": false,
  1058. "_N$horizontalAlign": 0,
  1059. "_N$verticalAlign": 1,
  1060. "_N$fontFamily": "Arial",
  1061. "_N$overflow": 0,
  1062. "_N$cacheMode": 0,
  1063. "_id": ""
  1064. },
  1065. {
  1066. "__type__": "cc.PrefabInfo",
  1067. "root": {
  1068. "__id__": 1
  1069. },
  1070. "asset": {
  1071. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1072. },
  1073. "fileId": "db8iy65XdEoowu7oeJWacy",
  1074. "sync": false
  1075. },
  1076. {
  1077. "__type__": "cc.Sprite",
  1078. "_name": "",
  1079. "_objFlags": 0,
  1080. "node": {
  1081. "__id__": 23
  1082. },
  1083. "_enabled": true,
  1084. "_materials": [
  1085. {
  1086. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1087. }
  1088. ],
  1089. "_srcBlendFactor": 770,
  1090. "_dstBlendFactor": 771,
  1091. "_spriteFrame": {
  1092. "__uuid__": "d7786104-1ca7-4133-908a-0d6b9f9b84ad"
  1093. },
  1094. "_type": 0,
  1095. "_sizeMode": 0,
  1096. "_fillType": 0,
  1097. "_fillCenter": {
  1098. "__type__": "cc.Vec2",
  1099. "x": 0,
  1100. "y": 0
  1101. },
  1102. "_fillStart": 0,
  1103. "_fillRange": 0,
  1104. "_isTrimmedMode": true,
  1105. "_atlas": null,
  1106. "_id": ""
  1107. },
  1108. {
  1109. "__type__": "cc.PrefabInfo",
  1110. "root": {
  1111. "__id__": 1
  1112. },
  1113. "asset": {
  1114. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1115. },
  1116. "fileId": "efD5vQIhFPgbno3KSVWxz3",
  1117. "sync": false
  1118. },
  1119. {
  1120. "__type__": "cc.Node",
  1121. "_name": "txtBg2",
  1122. "_objFlags": 0,
  1123. "_parent": {
  1124. "__id__": 7
  1125. },
  1126. "_children": [
  1127. {
  1128. "__id__": 30
  1129. }
  1130. ],
  1131. "_active": true,
  1132. "_level": 3,
  1133. "_components": [
  1134. {
  1135. "__id__": 33
  1136. }
  1137. ],
  1138. "_prefab": {
  1139. "__id__": 34
  1140. },
  1141. "_opacity": 255,
  1142. "_color": {
  1143. "__type__": "cc.Color",
  1144. "r": 255,
  1145. "g": 255,
  1146. "b": 255,
  1147. "a": 255
  1148. },
  1149. "_contentSize": {
  1150. "__type__": "cc.Size",
  1151. "width": 260,
  1152. "height": 49
  1153. },
  1154. "_anchorPoint": {
  1155. "__type__": "cc.Vec2",
  1156. "x": 0.5,
  1157. "y": 0.5
  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. "_id": "",
  1170. "_trs": {
  1171. "__type__": "TypedArray",
  1172. "ctor": "Float64Array",
  1173. "array": [
  1174. 41.779,
  1175. -174.995,
  1176. 0,
  1177. 0,
  1178. 0,
  1179. 0,
  1180. 1,
  1181. 1,
  1182. 1,
  1183. 1
  1184. ]
  1185. }
  1186. },
  1187. {
  1188. "__type__": "cc.Node",
  1189. "_name": "New Label",
  1190. "_objFlags": 0,
  1191. "_parent": {
  1192. "__id__": 29
  1193. },
  1194. "_children": [],
  1195. "_active": true,
  1196. "_level": 4,
  1197. "_components": [
  1198. {
  1199. "__id__": 31
  1200. }
  1201. ],
  1202. "_prefab": {
  1203. "__id__": 32
  1204. },
  1205. "_opacity": 255,
  1206. "_color": {
  1207. "__type__": "cc.Color",
  1208. "r": 231,
  1209. "g": 157,
  1210. "b": 0,
  1211. "a": 255
  1212. },
  1213. "_contentSize": {
  1214. "__type__": "cc.Size",
  1215. "width": 235,
  1216. "height": 48.9
  1217. },
  1218. "_anchorPoint": {
  1219. "__type__": "cc.Vec2",
  1220. "x": 0,
  1221. "y": 0.5
  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. "_id": "",
  1234. "_trs": {
  1235. "__type__": "TypedArray",
  1236. "ctor": "Float64Array",
  1237. "array": [
  1238. -122.925,
  1239. 1.146,
  1240. 0,
  1241. 0,
  1242. 0,
  1243. 0,
  1244. 1,
  1245. 1,
  1246. 1,
  1247. 1
  1248. ]
  1249. }
  1250. },
  1251. {
  1252. "__type__": "cc.Label",
  1253. "_name": "",
  1254. "_objFlags": 0,
  1255. "node": {
  1256. "__id__": 30
  1257. },
  1258. "_enabled": true,
  1259. "_materials": [
  1260. {
  1261. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1262. }
  1263. ],
  1264. "_useOriginalSize": false,
  1265. "_string": "Click Laser Scan to eliminate all the \nsame colorblocks(50 for each \nconsumptio )",
  1266. "_N$string": "Click Laser Scan to eliminate all the \nsame colorblocks(50 for each \nconsumptio )",
  1267. "_fontSize": 15,
  1268. "_lineHeight": 15,
  1269. "_enableWrapText": true,
  1270. "_N$file": null,
  1271. "_isSystemFontUsed": true,
  1272. "_spacingX": 0,
  1273. "_batchAsBitmap": false,
  1274. "_N$horizontalAlign": 0,
  1275. "_N$verticalAlign": 1,
  1276. "_N$fontFamily": "Arial",
  1277. "_N$overflow": 0,
  1278. "_N$cacheMode": 0,
  1279. "_id": ""
  1280. },
  1281. {
  1282. "__type__": "cc.PrefabInfo",
  1283. "root": {
  1284. "__id__": 1
  1285. },
  1286. "asset": {
  1287. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1288. },
  1289. "fileId": "2717+UnB1L24+Gz7CIMwgU",
  1290. "sync": false
  1291. },
  1292. {
  1293. "__type__": "cc.Sprite",
  1294. "_name": "",
  1295. "_objFlags": 0,
  1296. "node": {
  1297. "__id__": 29
  1298. },
  1299. "_enabled": true,
  1300. "_materials": [
  1301. {
  1302. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1303. }
  1304. ],
  1305. "_srcBlendFactor": 770,
  1306. "_dstBlendFactor": 771,
  1307. "_spriteFrame": {
  1308. "__uuid__": "d7786104-1ca7-4133-908a-0d6b9f9b84ad"
  1309. },
  1310. "_type": 0,
  1311. "_sizeMode": 0,
  1312. "_fillType": 0,
  1313. "_fillCenter": {
  1314. "__type__": "cc.Vec2",
  1315. "x": 0,
  1316. "y": 0
  1317. },
  1318. "_fillStart": 0,
  1319. "_fillRange": 0,
  1320. "_isTrimmedMode": true,
  1321. "_atlas": null,
  1322. "_id": ""
  1323. },
  1324. {
  1325. "__type__": "cc.PrefabInfo",
  1326. "root": {
  1327. "__id__": 1
  1328. },
  1329. "asset": {
  1330. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1331. },
  1332. "fileId": "ac9RwrbC9EyK//azMQs3S+",
  1333. "sync": false
  1334. },
  1335. {
  1336. "__type__": "cc.Node",
  1337. "_name": "sc",
  1338. "_objFlags": 0,
  1339. "_parent": {
  1340. "__id__": 7
  1341. },
  1342. "_children": [
  1343. {
  1344. "__id__": 36
  1345. }
  1346. ],
  1347. "_active": true,
  1348. "_level": 3,
  1349. "_components": [
  1350. {
  1351. "__id__": 39
  1352. }
  1353. ],
  1354. "_prefab": {
  1355. "__id__": 40
  1356. },
  1357. "_opacity": 255,
  1358. "_color": {
  1359. "__type__": "cc.Color",
  1360. "r": 255,
  1361. "g": 255,
  1362. "b": 255,
  1363. "a": 255
  1364. },
  1365. "_contentSize": {
  1366. "__type__": "cc.Size",
  1367. "width": 115,
  1368. "height": 114
  1369. },
  1370. "_anchorPoint": {
  1371. "__type__": "cc.Vec2",
  1372. "x": 0.5,
  1373. "y": 0.5
  1374. },
  1375. "_eulerAngles": {
  1376. "__type__": "cc.Vec3",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0
  1380. },
  1381. "_skewX": 0,
  1382. "_skewY": 0,
  1383. "_is3DNode": false,
  1384. "groupIndex": 0,
  1385. "_id": "",
  1386. "_trs": {
  1387. "__type__": "TypedArray",
  1388. "ctor": "Float64Array",
  1389. "array": [
  1390. -112.238,
  1391. 114.711,
  1392. 0,
  1393. 0,
  1394. 0,
  1395. 0,
  1396. 1,
  1397. 1,
  1398. 1,
  1399. 1
  1400. ]
  1401. }
  1402. },
  1403. {
  1404. "__type__": "cc.Node",
  1405. "_name": "finger",
  1406. "_objFlags": 0,
  1407. "_parent": {
  1408. "__id__": 35
  1409. },
  1410. "_children": [],
  1411. "_active": true,
  1412. "_level": 4,
  1413. "_components": [
  1414. {
  1415. "__id__": 37
  1416. }
  1417. ],
  1418. "_prefab": {
  1419. "__id__": 38
  1420. },
  1421. "_opacity": 255,
  1422. "_color": {
  1423. "__type__": "cc.Color",
  1424. "r": 255,
  1425. "g": 255,
  1426. "b": 255,
  1427. "a": 255
  1428. },
  1429. "_contentSize": {
  1430. "__type__": "cc.Size",
  1431. "width": 194,
  1432. "height": 142
  1433. },
  1434. "_anchorPoint": {
  1435. "__type__": "cc.Vec2",
  1436. "x": 0.5,
  1437. "y": 0.5
  1438. },
  1439. "_eulerAngles": {
  1440. "__type__": "cc.Vec3",
  1441. "x": 0,
  1442. "y": 0,
  1443. "z": 0
  1444. },
  1445. "_skewX": 0,
  1446. "_skewY": 0,
  1447. "_is3DNode": false,
  1448. "groupIndex": 0,
  1449. "_id": "",
  1450. "_trs": {
  1451. "__type__": "TypedArray",
  1452. "ctor": "Float64Array",
  1453. "array": [
  1454. 28.188,
  1455. -14.471,
  1456. 0,
  1457. 0,
  1458. 0,
  1459. 0,
  1460. 1,
  1461. 0.3,
  1462. 0.3,
  1463. 0.3
  1464. ]
  1465. }
  1466. },
  1467. {
  1468. "__type__": "cc.Sprite",
  1469. "_name": "",
  1470. "_objFlags": 0,
  1471. "node": {
  1472. "__id__": 36
  1473. },
  1474. "_enabled": true,
  1475. "_materials": [
  1476. {
  1477. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1478. }
  1479. ],
  1480. "_srcBlendFactor": 770,
  1481. "_dstBlendFactor": 771,
  1482. "_spriteFrame": {
  1483. "__uuid__": "f9882964-02b4-468c-9451-46a65f3b7d83"
  1484. },
  1485. "_type": 0,
  1486. "_sizeMode": 1,
  1487. "_fillType": 0,
  1488. "_fillCenter": {
  1489. "__type__": "cc.Vec2",
  1490. "x": 0,
  1491. "y": 0
  1492. },
  1493. "_fillStart": 0,
  1494. "_fillRange": 0,
  1495. "_isTrimmedMode": true,
  1496. "_atlas": null,
  1497. "_id": ""
  1498. },
  1499. {
  1500. "__type__": "cc.PrefabInfo",
  1501. "root": {
  1502. "__id__": 1
  1503. },
  1504. "asset": {
  1505. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1506. },
  1507. "fileId": "2bW2ukr/9A06Ju1dftQOyb",
  1508. "sync": false
  1509. },
  1510. {
  1511. "__type__": "cc.Sprite",
  1512. "_name": "",
  1513. "_objFlags": 0,
  1514. "node": {
  1515. "__id__": 35
  1516. },
  1517. "_enabled": true,
  1518. "_materials": [
  1519. {
  1520. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1521. }
  1522. ],
  1523. "_srcBlendFactor": 770,
  1524. "_dstBlendFactor": 771,
  1525. "_spriteFrame": {
  1526. "__uuid__": "d8384c0c-e8fb-4c8b-8b05-eb7927c0d80d"
  1527. },
  1528. "_type": 0,
  1529. "_sizeMode": 1,
  1530. "_fillType": 0,
  1531. "_fillCenter": {
  1532. "__type__": "cc.Vec2",
  1533. "x": 0,
  1534. "y": 0
  1535. },
  1536. "_fillStart": 0,
  1537. "_fillRange": 0,
  1538. "_isTrimmedMode": true,
  1539. "_atlas": null,
  1540. "_id": ""
  1541. },
  1542. {
  1543. "__type__": "cc.PrefabInfo",
  1544. "root": {
  1545. "__id__": 1
  1546. },
  1547. "asset": {
  1548. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1549. },
  1550. "fileId": "a5V6RIN1BFdYdeALGPsLbB",
  1551. "sync": false
  1552. },
  1553. {
  1554. "__type__": "cc.Node",
  1555. "_name": "title1",
  1556. "_objFlags": 0,
  1557. "_parent": {
  1558. "__id__": 7
  1559. },
  1560. "_children": [
  1561. {
  1562. "__id__": 42
  1563. }
  1564. ],
  1565. "_active": true,
  1566. "_level": 3,
  1567. "_components": [
  1568. {
  1569. "__id__": 45
  1570. }
  1571. ],
  1572. "_prefab": {
  1573. "__id__": 46
  1574. },
  1575. "_opacity": 255,
  1576. "_color": {
  1577. "__type__": "cc.Color",
  1578. "r": 255,
  1579. "g": 255,
  1580. "b": 255,
  1581. "a": 255
  1582. },
  1583. "_contentSize": {
  1584. "__type__": "cc.Size",
  1585. "width": 220,
  1586. "height": 64
  1587. },
  1588. "_anchorPoint": {
  1589. "__type__": "cc.Vec2",
  1590. "x": 0.5,
  1591. "y": 0.5
  1592. },
  1593. "_eulerAngles": {
  1594. "__type__": "cc.Vec3",
  1595. "x": 0,
  1596. "y": 0,
  1597. "z": 0
  1598. },
  1599. "_skewX": 0,
  1600. "_skewY": 0,
  1601. "_is3DNode": false,
  1602. "groupIndex": 0,
  1603. "_id": "",
  1604. "_trs": {
  1605. "__type__": "TypedArray",
  1606. "ctor": "Float64Array",
  1607. "array": [
  1608. 57.665,
  1609. 107.628,
  1610. 0,
  1611. 0,
  1612. 0,
  1613. 0,
  1614. 1,
  1615. 1,
  1616. 1,
  1617. 1
  1618. ]
  1619. }
  1620. },
  1621. {
  1622. "__type__": "cc.Node",
  1623. "_name": "New Label",
  1624. "_objFlags": 0,
  1625. "_parent": {
  1626. "__id__": 41
  1627. },
  1628. "_children": [],
  1629. "_active": true,
  1630. "_level": 4,
  1631. "_components": [
  1632. {
  1633. "__id__": 43
  1634. }
  1635. ],
  1636. "_prefab": {
  1637. "__id__": 44
  1638. },
  1639. "_opacity": 255,
  1640. "_color": {
  1641. "__type__": "cc.Color",
  1642. "r": 255,
  1643. "g": 228,
  1644. "b": 171,
  1645. "a": 255
  1646. },
  1647. "_contentSize": {
  1648. "__type__": "cc.Size",
  1649. "width": 180,
  1650. "height": 48.9
  1651. },
  1652. "_anchorPoint": {
  1653. "__type__": "cc.Vec2",
  1654. "x": 0,
  1655. "y": 0.5
  1656. },
  1657. "_eulerAngles": {
  1658. "__type__": "cc.Vec3",
  1659. "x": 0,
  1660. "y": 0,
  1661. "z": 0
  1662. },
  1663. "_skewX": 0,
  1664. "_skewY": 0,
  1665. "_is3DNode": false,
  1666. "groupIndex": 0,
  1667. "_id": "",
  1668. "_trs": {
  1669. "__type__": "TypedArray",
  1670. "ctor": "Float64Array",
  1671. "array": [
  1672. -99.788,
  1673. 0.129,
  1674. 0,
  1675. 0,
  1676. 0,
  1677. 0,
  1678. 1,
  1679. 1,
  1680. 1,
  1681. 1
  1682. ]
  1683. }
  1684. },
  1685. {
  1686. "__type__": "cc.Label",
  1687. "_name": "",
  1688. "_objFlags": 0,
  1689. "node": {
  1690. "__id__": 42
  1691. },
  1692. "_enabled": true,
  1693. "_materials": [
  1694. {
  1695. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1696. }
  1697. ],
  1698. "_useOriginalSize": false,
  1699. "_string": "1.Click the square with the \n same colorBlock, it can be\n eliminated",
  1700. "_N$string": "1.Click the square with the \n same colorBlock, it can be\n eliminated",
  1701. "_fontSize": 15,
  1702. "_lineHeight": 15,
  1703. "_enableWrapText": true,
  1704. "_N$file": null,
  1705. "_isSystemFontUsed": true,
  1706. "_spacingX": 0,
  1707. "_batchAsBitmap": false,
  1708. "_N$horizontalAlign": 0,
  1709. "_N$verticalAlign": 1,
  1710. "_N$fontFamily": "Arial",
  1711. "_N$overflow": 0,
  1712. "_N$cacheMode": 0,
  1713. "_id": ""
  1714. },
  1715. {
  1716. "__type__": "cc.PrefabInfo",
  1717. "root": {
  1718. "__id__": 1
  1719. },
  1720. "asset": {
  1721. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1722. },
  1723. "fileId": "08WIODPwBD/LvQbYEjARB/",
  1724. "sync": false
  1725. },
  1726. {
  1727. "__type__": "cc.Sprite",
  1728. "_name": "",
  1729. "_objFlags": 0,
  1730. "node": {
  1731. "__id__": 41
  1732. },
  1733. "_enabled": true,
  1734. "_materials": [
  1735. {
  1736. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1737. }
  1738. ],
  1739. "_srcBlendFactor": 770,
  1740. "_dstBlendFactor": 771,
  1741. "_spriteFrame": {
  1742. "__uuid__": "0565ebab-66bf-4401-8359-ec8544b24610"
  1743. },
  1744. "_type": 0,
  1745. "_sizeMode": 0,
  1746. "_fillType": 0,
  1747. "_fillCenter": {
  1748. "__type__": "cc.Vec2",
  1749. "x": 0,
  1750. "y": 0
  1751. },
  1752. "_fillStart": 0,
  1753. "_fillRange": 0,
  1754. "_isTrimmedMode": true,
  1755. "_atlas": null,
  1756. "_id": ""
  1757. },
  1758. {
  1759. "__type__": "cc.PrefabInfo",
  1760. "root": {
  1761. "__id__": 1
  1762. },
  1763. "asset": {
  1764. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1765. },
  1766. "fileId": "f9Y9Z/MNdLc7BNLoH2IjQp",
  1767. "sync": false
  1768. },
  1769. {
  1770. "__type__": "cc.Node",
  1771. "_name": "coin",
  1772. "_objFlags": 0,
  1773. "_parent": {
  1774. "__id__": 7
  1775. },
  1776. "_children": [],
  1777. "_active": true,
  1778. "_level": 3,
  1779. "_components": [
  1780. {
  1781. "__id__": 48
  1782. }
  1783. ],
  1784. "_prefab": {
  1785. "__id__": 49
  1786. },
  1787. "_opacity": 255,
  1788. "_color": {
  1789. "__type__": "cc.Color",
  1790. "r": 255,
  1791. "g": 255,
  1792. "b": 255,
  1793. "a": 255
  1794. },
  1795. "_contentSize": {
  1796. "__type__": "cc.Size",
  1797. "width": 20,
  1798. "height": 20
  1799. },
  1800. "_anchorPoint": {
  1801. "__type__": "cc.Vec2",
  1802. "x": 0.5,
  1803. "y": 0.5
  1804. },
  1805. "_eulerAngles": {
  1806. "__type__": "cc.Vec3",
  1807. "x": 0,
  1808. "y": 0,
  1809. "z": 0
  1810. },
  1811. "_skewX": 0,
  1812. "_skewY": 0,
  1813. "_is3DNode": false,
  1814. "groupIndex": 0,
  1815. "_id": "",
  1816. "_trs": {
  1817. "__type__": "TypedArray",
  1818. "ctor": "Float64Array",
  1819. "array": [
  1820. -48.289,
  1821. -108.726,
  1822. 0,
  1823. 0,
  1824. 0,
  1825. 0,
  1826. 1,
  1827. 1,
  1828. 1,
  1829. 1
  1830. ]
  1831. }
  1832. },
  1833. {
  1834. "__type__": "cc.Sprite",
  1835. "_name": "",
  1836. "_objFlags": 0,
  1837. "node": {
  1838. "__id__": 47
  1839. },
  1840. "_enabled": true,
  1841. "_materials": [
  1842. {
  1843. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1844. }
  1845. ],
  1846. "_srcBlendFactor": 770,
  1847. "_dstBlendFactor": 771,
  1848. "_spriteFrame": {
  1849. "__uuid__": "e323fdb5-0fc4-4fc0-8b91-86a23e22e2ee"
  1850. },
  1851. "_type": 0,
  1852. "_sizeMode": 0,
  1853. "_fillType": 0,
  1854. "_fillCenter": {
  1855. "__type__": "cc.Vec2",
  1856. "x": 0,
  1857. "y": 0
  1858. },
  1859. "_fillStart": 0,
  1860. "_fillRange": 0,
  1861. "_isTrimmedMode": true,
  1862. "_atlas": null,
  1863. "_id": ""
  1864. },
  1865. {
  1866. "__type__": "cc.PrefabInfo",
  1867. "root": {
  1868. "__id__": 1
  1869. },
  1870. "asset": {
  1871. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1872. },
  1873. "fileId": "40AtwsCudFKrH9IqBr/djC",
  1874. "sync": false
  1875. },
  1876. {
  1877. "__type__": "cc.Node",
  1878. "_name": "coin",
  1879. "_objFlags": 0,
  1880. "_parent": {
  1881. "__id__": 7
  1882. },
  1883. "_children": [],
  1884. "_active": true,
  1885. "_level": 3,
  1886. "_components": [
  1887. {
  1888. "__id__": 51
  1889. }
  1890. ],
  1891. "_prefab": {
  1892. "__id__": 52
  1893. },
  1894. "_opacity": 255,
  1895. "_color": {
  1896. "__type__": "cc.Color",
  1897. "r": 255,
  1898. "g": 255,
  1899. "b": 255,
  1900. "a": 255
  1901. },
  1902. "_contentSize": {
  1903. "__type__": "cc.Size",
  1904. "width": 20,
  1905. "height": 20
  1906. },
  1907. "_anchorPoint": {
  1908. "__type__": "cc.Vec2",
  1909. "x": 0.5,
  1910. "y": 0.5
  1911. },
  1912. "_eulerAngles": {
  1913. "__type__": "cc.Vec3",
  1914. "x": 0,
  1915. "y": 0,
  1916. "z": 0
  1917. },
  1918. "_skewX": 0,
  1919. "_skewY": 0,
  1920. "_is3DNode": false,
  1921. "groupIndex": 0,
  1922. "_id": "",
  1923. "_trs": {
  1924. "__type__": "TypedArray",
  1925. "ctor": "Float64Array",
  1926. "array": [
  1927. 76.746,
  1928. -176.817,
  1929. 0,
  1930. 0,
  1931. 0,
  1932. 0,
  1933. 1,
  1934. 1,
  1935. 1,
  1936. 1
  1937. ]
  1938. }
  1939. },
  1940. {
  1941. "__type__": "cc.Sprite",
  1942. "_name": "",
  1943. "_objFlags": 0,
  1944. "node": {
  1945. "__id__": 50
  1946. },
  1947. "_enabled": true,
  1948. "_materials": [
  1949. {
  1950. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1951. }
  1952. ],
  1953. "_srcBlendFactor": 770,
  1954. "_dstBlendFactor": 771,
  1955. "_spriteFrame": {
  1956. "__uuid__": "e323fdb5-0fc4-4fc0-8b91-86a23e22e2ee"
  1957. },
  1958. "_type": 0,
  1959. "_sizeMode": 0,
  1960. "_fillType": 0,
  1961. "_fillCenter": {
  1962. "__type__": "cc.Vec2",
  1963. "x": 0,
  1964. "y": 0
  1965. },
  1966. "_fillStart": 0,
  1967. "_fillRange": 0,
  1968. "_isTrimmedMode": true,
  1969. "_atlas": null,
  1970. "_id": ""
  1971. },
  1972. {
  1973. "__type__": "cc.PrefabInfo",
  1974. "root": {
  1975. "__id__": 1
  1976. },
  1977. "asset": {
  1978. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  1979. },
  1980. "fileId": "1cQxTQGx9NqLpYBQKCHvon",
  1981. "sync": false
  1982. },
  1983. {
  1984. "__type__": "cc.Node",
  1985. "_name": "closeBtn",
  1986. "_objFlags": 0,
  1987. "_parent": {
  1988. "__id__": 7
  1989. },
  1990. "_children": [],
  1991. "_active": true,
  1992. "_level": 3,
  1993. "_components": [
  1994. {
  1995. "__id__": 54
  1996. }
  1997. ],
  1998. "_prefab": {
  1999. "__id__": 59
  2000. },
  2001. "_opacity": 255,
  2002. "_color": {
  2003. "__type__": "cc.Color",
  2004. "r": 255,
  2005. "g": 255,
  2006. "b": 255,
  2007. "a": 255
  2008. },
  2009. "_contentSize": {
  2010. "__type__": "cc.Size",
  2011. "width": 47,
  2012. "height": 47
  2013. },
  2014. "_anchorPoint": {
  2015. "__type__": "cc.Vec2",
  2016. "x": 0.5,
  2017. "y": 0.5
  2018. },
  2019. "_eulerAngles": {
  2020. "__type__": "cc.Vec3",
  2021. "x": 0,
  2022. "y": 0,
  2023. "z": 0
  2024. },
  2025. "_skewX": 0,
  2026. "_skewY": 0,
  2027. "_is3DNode": false,
  2028. "groupIndex": 0,
  2029. "_id": "",
  2030. "_trs": {
  2031. "__type__": "TypedArray",
  2032. "ctor": "Float64Array",
  2033. "array": [
  2034. 167.368,
  2035. 191.018,
  2036. 0,
  2037. 0,
  2038. 0,
  2039. 0,
  2040. 1,
  2041. 1,
  2042. 1,
  2043. 1
  2044. ]
  2045. }
  2046. },
  2047. {
  2048. "__type__": "cc.Button",
  2049. "_name": "",
  2050. "_objFlags": 0,
  2051. "node": {
  2052. "__id__": 53
  2053. },
  2054. "_enabled": true,
  2055. "duration": 0.1,
  2056. "zoomScale": 1.2,
  2057. "clickEvents": [],
  2058. "_N$interactable": true,
  2059. "_N$enableAutoGrayEffect": false,
  2060. "_N$transition": 2,
  2061. "transition": 2,
  2062. "_N$normalColor": {
  2063. "__type__": "cc.Color",
  2064. "r": 230,
  2065. "g": 230,
  2066. "b": 230,
  2067. "a": 255
  2068. },
  2069. "_N$pressedColor": {
  2070. "__type__": "cc.Color",
  2071. "r": 200,
  2072. "g": 200,
  2073. "b": 200,
  2074. "a": 255
  2075. },
  2076. "pressedColor": {
  2077. "__type__": "cc.Color",
  2078. "r": 200,
  2079. "g": 200,
  2080. "b": 200,
  2081. "a": 255
  2082. },
  2083. "_N$hoverColor": {
  2084. "__type__": "cc.Color",
  2085. "r": 255,
  2086. "g": 255,
  2087. "b": 255,
  2088. "a": 255
  2089. },
  2090. "hoverColor": {
  2091. "__type__": "cc.Color",
  2092. "r": 255,
  2093. "g": 255,
  2094. "b": 255,
  2095. "a": 255
  2096. },
  2097. "_N$disabledColor": {
  2098. "__type__": "cc.Color",
  2099. "r": 120,
  2100. "g": 120,
  2101. "b": 120,
  2102. "a": 200
  2103. },
  2104. "_N$normalSprite": {
  2105. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2106. },
  2107. "_N$pressedSprite": {
  2108. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2109. },
  2110. "pressedSprite": {
  2111. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2112. },
  2113. "_N$hoverSprite": {
  2114. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2115. },
  2116. "hoverSprite": {
  2117. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2118. },
  2119. "_N$disabledSprite": {
  2120. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2121. },
  2122. "_N$target": {
  2123. "__id__": 55
  2124. },
  2125. "_id": ""
  2126. },
  2127. {
  2128. "__type__": "cc.Node",
  2129. "_name": "Background",
  2130. "_objFlags": 0,
  2131. "_parent": {
  2132. "__id__": 7
  2133. },
  2134. "_children": [],
  2135. "_active": true,
  2136. "_level": 3,
  2137. "_components": [
  2138. {
  2139. "__id__": 56
  2140. },
  2141. {
  2142. "__id__": 57
  2143. }
  2144. ],
  2145. "_prefab": {
  2146. "__id__": 58
  2147. },
  2148. "_opacity": 255,
  2149. "_color": {
  2150. "__type__": "cc.Color",
  2151. "r": 255,
  2152. "g": 255,
  2153. "b": 255,
  2154. "a": 255
  2155. },
  2156. "_contentSize": {
  2157. "__type__": "cc.Size",
  2158. "width": 44.999999999999886,
  2159. "height": 45.000000000000114
  2160. },
  2161. "_anchorPoint": {
  2162. "__type__": "cc.Vec2",
  2163. "x": 0.5,
  2164. "y": 0.5
  2165. },
  2166. "_eulerAngles": {
  2167. "__type__": "cc.Vec3",
  2168. "x": 0,
  2169. "y": 0,
  2170. "z": 0
  2171. },
  2172. "_skewX": 0,
  2173. "_skewY": 0,
  2174. "_is3DNode": false,
  2175. "groupIndex": 0,
  2176. "_id": "",
  2177. "_trs": {
  2178. "__type__": "TypedArray",
  2179. "ctor": "Float64Array",
  2180. "array": [
  2181. 175.54000000000002,
  2182. 188.683,
  2183. 0,
  2184. 0,
  2185. 0,
  2186. 0,
  2187. 1,
  2188. 1,
  2189. 1,
  2190. 1
  2191. ]
  2192. }
  2193. },
  2194. {
  2195. "__type__": "cc.Sprite",
  2196. "_name": "",
  2197. "_objFlags": 0,
  2198. "node": {
  2199. "__id__": 55
  2200. },
  2201. "_enabled": true,
  2202. "_materials": [
  2203. {
  2204. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2205. }
  2206. ],
  2207. "_srcBlendFactor": 770,
  2208. "_dstBlendFactor": 771,
  2209. "_spriteFrame": {
  2210. "__uuid__": "c7da1022-8183-48b5-a24c-60da94e1bd53"
  2211. },
  2212. "_type": 1,
  2213. "_sizeMode": 0,
  2214. "_fillType": 0,
  2215. "_fillCenter": {
  2216. "__type__": "cc.Vec2",
  2217. "x": 0,
  2218. "y": 0
  2219. },
  2220. "_fillStart": 0,
  2221. "_fillRange": 0,
  2222. "_isTrimmedMode": true,
  2223. "_atlas": null,
  2224. "_id": ""
  2225. },
  2226. {
  2227. "__type__": "cc.Widget",
  2228. "_name": "",
  2229. "_objFlags": 0,
  2230. "node": {
  2231. "__id__": 55
  2232. },
  2233. "_enabled": true,
  2234. "alignMode": 0,
  2235. "_target": null,
  2236. "_alignFlags": 45,
  2237. "_left": 340.5400000000001,
  2238. "_right": -10.539999999999964,
  2239. "_top": 25.81699999999995,
  2240. "_bottom": 403.18299999999994,
  2241. "_verticalCenter": 0,
  2242. "_horizontalCenter": 0,
  2243. "_isAbsLeft": true,
  2244. "_isAbsRight": true,
  2245. "_isAbsTop": true,
  2246. "_isAbsBottom": true,
  2247. "_isAbsHorizontalCenter": true,
  2248. "_isAbsVerticalCenter": true,
  2249. "_originalWidth": 100,
  2250. "_originalHeight": 40,
  2251. "_id": ""
  2252. },
  2253. {
  2254. "__type__": "cc.PrefabInfo",
  2255. "root": {
  2256. "__id__": 1
  2257. },
  2258. "asset": {
  2259. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  2260. },
  2261. "fileId": "aa4BS/04ZKLoeWg1GmykxX",
  2262. "sync": false
  2263. },
  2264. {
  2265. "__type__": "cc.PrefabInfo",
  2266. "root": {
  2267. "__id__": 1
  2268. },
  2269. "asset": {
  2270. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  2271. },
  2272. "fileId": "faiA+8EaVFroIJP4DfBQgo",
  2273. "sync": false
  2274. },
  2275. {
  2276. "__type__": "cc.Node",
  2277. "_name": "title2",
  2278. "_objFlags": 0,
  2279. "_parent": {
  2280. "__id__": 7
  2281. },
  2282. "_children": [
  2283. {
  2284. "__id__": 61
  2285. }
  2286. ],
  2287. "_active": true,
  2288. "_level": 3,
  2289. "_components": [
  2290. {
  2291. "__id__": 64
  2292. }
  2293. ],
  2294. "_prefab": {
  2295. "__id__": 65
  2296. },
  2297. "_opacity": 255,
  2298. "_color": {
  2299. "__type__": "cc.Color",
  2300. "r": 255,
  2301. "g": 255,
  2302. "b": 255,
  2303. "a": 255
  2304. },
  2305. "_contentSize": {
  2306. "__type__": "cc.Size",
  2307. "width": 300,
  2308. "height": 45
  2309. },
  2310. "_anchorPoint": {
  2311. "__type__": "cc.Vec2",
  2312. "x": 0.5,
  2313. "y": 0.5
  2314. },
  2315. "_eulerAngles": {
  2316. "__type__": "cc.Vec3",
  2317. "x": 0,
  2318. "y": 0,
  2319. "z": 0
  2320. },
  2321. "_skewX": 0,
  2322. "_skewY": 0,
  2323. "_is3DNode": false,
  2324. "groupIndex": 0,
  2325. "_id": "",
  2326. "_trs": {
  2327. "__type__": "TypedArray",
  2328. "ctor": "Float64Array",
  2329. "array": [
  2330. 8.302,
  2331. -10.631,
  2332. 0,
  2333. 0,
  2334. 0,
  2335. 0,
  2336. 1,
  2337. 1,
  2338. 1,
  2339. 1
  2340. ]
  2341. }
  2342. },
  2343. {
  2344. "__type__": "cc.Node",
  2345. "_name": "propTitle",
  2346. "_objFlags": 0,
  2347. "_parent": {
  2348. "__id__": 60
  2349. },
  2350. "_children": [],
  2351. "_active": true,
  2352. "_level": 4,
  2353. "_components": [
  2354. {
  2355. "__id__": 62
  2356. }
  2357. ],
  2358. "_prefab": {
  2359. "__id__": 63
  2360. },
  2361. "_opacity": 255,
  2362. "_color": {
  2363. "__type__": "cc.Color",
  2364. "r": 255,
  2365. "g": 228,
  2366. "b": 171,
  2367. "a": 255
  2368. },
  2369. "_contentSize": {
  2370. "__type__": "cc.Size",
  2371. "width": 267.13,
  2372. "height": 40.68
  2373. },
  2374. "_anchorPoint": {
  2375. "__type__": "cc.Vec2",
  2376. "x": 0,
  2377. "y": 0.5
  2378. },
  2379. "_eulerAngles": {
  2380. "__type__": "cc.Vec3",
  2381. "x": 0,
  2382. "y": 0,
  2383. "z": 0
  2384. },
  2385. "_skewX": 0,
  2386. "_skewY": 0,
  2387. "_is3DNode": false,
  2388. "groupIndex": 0,
  2389. "_id": "",
  2390. "_trs": {
  2391. "__type__": "TypedArray",
  2392. "ctor": "Float64Array",
  2393. "array": [
  2394. -129.167,
  2395. 3.128,
  2396. 0,
  2397. 0,
  2398. 0,
  2399. 0,
  2400. 1,
  2401. 1,
  2402. 1,
  2403. 1
  2404. ]
  2405. }
  2406. },
  2407. {
  2408. "__type__": "cc.Label",
  2409. "_name": "",
  2410. "_objFlags": 0,
  2411. "node": {
  2412. "__id__": 61
  2413. },
  2414. "_enabled": true,
  2415. "_materials": [
  2416. {
  2417. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2418. }
  2419. ],
  2420. "_useOriginalSize": false,
  2421. "_string": "2.Use of props: Click on the prop \n and then click on the square",
  2422. "_N$string": "2.Use of props: Click on the prop \n and then click on the square",
  2423. "_fontSize": 18,
  2424. "_lineHeight": 18,
  2425. "_enableWrapText": true,
  2426. "_N$file": null,
  2427. "_isSystemFontUsed": true,
  2428. "_spacingX": 0,
  2429. "_batchAsBitmap": false,
  2430. "_N$horizontalAlign": 0,
  2431. "_N$verticalAlign": 1,
  2432. "_N$fontFamily": "Arial",
  2433. "_N$overflow": 0,
  2434. "_N$cacheMode": 0,
  2435. "_id": ""
  2436. },
  2437. {
  2438. "__type__": "cc.PrefabInfo",
  2439. "root": {
  2440. "__id__": 1
  2441. },
  2442. "asset": {
  2443. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  2444. },
  2445. "fileId": "4bkBOOeDRI7IBuhEGlnNmm",
  2446. "sync": false
  2447. },
  2448. {
  2449. "__type__": "cc.Sprite",
  2450. "_name": "",
  2451. "_objFlags": 0,
  2452. "node": {
  2453. "__id__": 60
  2454. },
  2455. "_enabled": true,
  2456. "_materials": [
  2457. {
  2458. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2459. }
  2460. ],
  2461. "_srcBlendFactor": 770,
  2462. "_dstBlendFactor": 771,
  2463. "_spriteFrame": {
  2464. "__uuid__": "0565ebab-66bf-4401-8359-ec8544b24610"
  2465. },
  2466. "_type": 1,
  2467. "_sizeMode": 0,
  2468. "_fillType": 0,
  2469. "_fillCenter": {
  2470. "__type__": "cc.Vec2",
  2471. "x": 0,
  2472. "y": 0
  2473. },
  2474. "_fillStart": 0,
  2475. "_fillRange": 0,
  2476. "_isTrimmedMode": true,
  2477. "_atlas": null,
  2478. "_id": ""
  2479. },
  2480. {
  2481. "__type__": "cc.PrefabInfo",
  2482. "root": {
  2483. "__id__": 1
  2484. },
  2485. "asset": {
  2486. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  2487. },
  2488. "fileId": "02UVusJjhFS5gWPKFbD3Zn",
  2489. "sync": false
  2490. },
  2491. {
  2492. "__type__": "cc.Sprite",
  2493. "_name": "",
  2494. "_objFlags": 0,
  2495. "node": {
  2496. "__id__": 7
  2497. },
  2498. "_enabled": true,
  2499. "_materials": [
  2500. {
  2501. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2502. }
  2503. ],
  2504. "_srcBlendFactor": 770,
  2505. "_dstBlendFactor": 771,
  2506. "_spriteFrame": {
  2507. "__uuid__": "7d245583-29f5-44a8-ad8d-613eff8fdd84"
  2508. },
  2509. "_type": 0,
  2510. "_sizeMode": 1,
  2511. "_fillType": 0,
  2512. "_fillCenter": {
  2513. "__type__": "cc.Vec2",
  2514. "x": 0,
  2515. "y": 0
  2516. },
  2517. "_fillStart": 0,
  2518. "_fillRange": 0,
  2519. "_isTrimmedMode": true,
  2520. "_atlas": null,
  2521. "_id": ""
  2522. },
  2523. {
  2524. "__type__": "cc.PrefabInfo",
  2525. "root": {
  2526. "__id__": 1
  2527. },
  2528. "asset": {
  2529. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  2530. },
  2531. "fileId": "4dOt1ySdRDHqmsZsQDl/fv",
  2532. "sync": false
  2533. },
  2534. {
  2535. "__type__": "cc.Widget",
  2536. "_name": "",
  2537. "_objFlags": 0,
  2538. "node": {
  2539. "__id__": 1
  2540. },
  2541. "_enabled": true,
  2542. "alignMode": 1,
  2543. "_target": null,
  2544. "_alignFlags": 45,
  2545. "_left": 0,
  2546. "_right": 0,
  2547. "_top": 0,
  2548. "_bottom": 0,
  2549. "_verticalCenter": 0,
  2550. "_horizontalCenter": 0,
  2551. "_isAbsLeft": true,
  2552. "_isAbsRight": true,
  2553. "_isAbsTop": true,
  2554. "_isAbsBottom": true,
  2555. "_isAbsHorizontalCenter": true,
  2556. "_isAbsVerticalCenter": true,
  2557. "_originalWidth": 0,
  2558. "_originalHeight": 0,
  2559. "_id": ""
  2560. },
  2561. {
  2562. "__type__": "4ff93pABuZFmKCjVTvIHITG",
  2563. "_name": "",
  2564. "_objFlags": 0,
  2565. "node": {
  2566. "__id__": 1
  2567. },
  2568. "_enabled": true,
  2569. "btn": [
  2570. {
  2571. "__id__": 53
  2572. }
  2573. ],
  2574. "btnCallFunc": null,
  2575. "isClose": true,
  2576. "_id": ""
  2577. },
  2578. {
  2579. "__type__": "cc.PrefabInfo",
  2580. "root": {
  2581. "__id__": 1
  2582. },
  2583. "asset": {
  2584. "__uuid__": "a63b65ff-6053-4aee-9653-0f452b5ee61e"
  2585. },
  2586. "fileId": "51mAL5+sVDcZC7uaSYt3ez",
  2587. "sync": false
  2588. }
  2589. ]