luojigouStart.prefab 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959
  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": "LuojigouCard",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 7
  25. },
  26. {
  27. "__id__": 11
  28. },
  29. {
  30. "__id__": 15
  31. },
  32. {
  33. "__id__": 19
  34. },
  35. {
  36. "__id__": 22
  37. },
  38. {
  39. "__id__": 37
  40. },
  41. {
  42. "__id__": 44
  43. }
  44. ],
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 52
  49. },
  50. {
  51. "__id__": 53
  52. }
  53. ],
  54. "_prefab": {
  55. "__id__": 54
  56. },
  57. "_opacity": 255,
  58. "_color": {
  59. "__type__": "cc.Color",
  60. "r": 255,
  61. "g": 255,
  62. "b": 255,
  63. "a": 255
  64. },
  65. "_contentSize": {
  66. "__type__": "cc.Size",
  67. "width": 1920,
  68. "height": 1080
  69. },
  70. "_anchorPoint": {
  71. "__type__": "cc.Vec2",
  72. "x": 0.5,
  73. "y": 0.5
  74. },
  75. "_trs": {
  76. "__type__": "TypedArray",
  77. "ctor": "Float64Array",
  78. "array": [
  79. 960,
  80. 540,
  81. 0,
  82. 0,
  83. 0,
  84. 0,
  85. 1,
  86. 1,
  87. 1,
  88. 1
  89. ]
  90. },
  91. "_eulerAngles": {
  92. "__type__": "cc.Vec3",
  93. "x": 0,
  94. "y": 0,
  95. "z": 0
  96. },
  97. "_skewX": 0,
  98. "_skewY": 0,
  99. "_is3DNode": false,
  100. "_groupIndex": 0,
  101. "groupIndex": 0,
  102. "_id": ""
  103. },
  104. {
  105. "__type__": "cc.Node",
  106. "_name": "Overlay",
  107. "_objFlags": 0,
  108. "_parent": {
  109. "__id__": 1
  110. },
  111. "_children": [],
  112. "_active": true,
  113. "_components": [
  114. {
  115. "__id__": 3
  116. },
  117. {
  118. "__id__": 4
  119. },
  120. {
  121. "__id__": 5
  122. }
  123. ],
  124. "_prefab": {
  125. "__id__": 6
  126. },
  127. "_opacity": 60,
  128. "_color": {
  129. "__type__": "cc.Color",
  130. "r": 0,
  131. "g": 0,
  132. "b": 0,
  133. "a": 255
  134. },
  135. "_contentSize": {
  136. "__type__": "cc.Size",
  137. "width": 1920,
  138. "height": 1080
  139. },
  140. "_anchorPoint": {
  141. "__type__": "cc.Vec2",
  142. "x": 0.5,
  143. "y": 0.5
  144. },
  145. "_trs": {
  146. "__type__": "TypedArray",
  147. "ctor": "Float64Array",
  148. "array": [
  149. 0,
  150. 0,
  151. 0,
  152. 0,
  153. 0,
  154. 0,
  155. 1,
  156. 1,
  157. 1,
  158. 1
  159. ]
  160. },
  161. "_eulerAngles": {
  162. "__type__": "cc.Vec3",
  163. "x": 0,
  164. "y": 0,
  165. "z": 0
  166. },
  167. "_skewX": 0,
  168. "_skewY": 0,
  169. "_is3DNode": false,
  170. "_groupIndex": 0,
  171. "groupIndex": 0,
  172. "_id": ""
  173. },
  174. {
  175. "__type__": "cc.Sprite",
  176. "_name": "",
  177. "_objFlags": 0,
  178. "node": {
  179. "__id__": 2
  180. },
  181. "_enabled": true,
  182. "_materials": [
  183. {
  184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  185. }
  186. ],
  187. "_srcBlendFactor": 770,
  188. "_dstBlendFactor": 771,
  189. "_spriteFrame": {
  190. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  191. },
  192. "_type": 0,
  193. "_sizeMode": 0,
  194. "_fillType": 0,
  195. "_fillCenter": {
  196. "__type__": "cc.Vec2",
  197. "x": 0,
  198. "y": 0
  199. },
  200. "_fillStart": 0,
  201. "_fillRange": 0,
  202. "_isTrimmedMode": true,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.Widget",
  208. "_name": "",
  209. "_objFlags": 0,
  210. "node": {
  211. "__id__": 2
  212. },
  213. "_enabled": true,
  214. "alignMode": 1,
  215. "_target": null,
  216. "_alignFlags": 45,
  217. "_left": 0,
  218. "_right": 0,
  219. "_top": -5.684341886080802e-14,
  220. "_bottom": 5.684341886080802e-14,
  221. "_verticalCenter": 0,
  222. "_horizontalCenter": 0,
  223. "_isAbsLeft": true,
  224. "_isAbsRight": true,
  225. "_isAbsTop": true,
  226. "_isAbsBottom": true,
  227. "_isAbsHorizontalCenter": true,
  228. "_isAbsVerticalCenter": true,
  229. "_originalWidth": 100,
  230. "_originalHeight": 100,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.BlockInputEvents",
  235. "_name": "",
  236. "_objFlags": 0,
  237. "node": {
  238. "__id__": 2
  239. },
  240. "_enabled": true,
  241. "_id": ""
  242. },
  243. {
  244. "__type__": "cc.PrefabInfo",
  245. "root": {
  246. "__id__": 1
  247. },
  248. "asset": {
  249. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  250. },
  251. "fileId": "34eh8Pf+NOw6XKbeSkC+8R",
  252. "sync": false
  253. },
  254. {
  255. "__type__": "cc.Node",
  256. "_name": "hanzimianban2",
  257. "_objFlags": 0,
  258. "_parent": {
  259. "__id__": 1
  260. },
  261. "_children": [],
  262. "_active": true,
  263. "_components": [
  264. {
  265. "__id__": 8
  266. },
  267. {
  268. "__id__": 9
  269. }
  270. ],
  271. "_prefab": {
  272. "__id__": 10
  273. },
  274. "_opacity": 255,
  275. "_color": {
  276. "__type__": "cc.Color",
  277. "r": 255,
  278. "g": 255,
  279. "b": 255,
  280. "a": 255
  281. },
  282. "_contentSize": {
  283. "__type__": "cc.Size",
  284. "width": 596,
  285. "height": 280
  286. },
  287. "_anchorPoint": {
  288. "__type__": "cc.Vec2",
  289. "x": 0.5,
  290. "y": 0.5
  291. },
  292. "_trs": {
  293. "__type__": "TypedArray",
  294. "ctor": "Float64Array",
  295. "array": [
  296. -8.17,
  297. -25.292,
  298. 0,
  299. 0,
  300. 0,
  301. 0,
  302. 1,
  303. 1,
  304. 1,
  305. 1
  306. ]
  307. },
  308. "_eulerAngles": {
  309. "__type__": "cc.Vec3",
  310. "x": 0,
  311. "y": 0,
  312. "z": 0
  313. },
  314. "_skewX": 0,
  315. "_skewY": 0,
  316. "_is3DNode": false,
  317. "_groupIndex": 0,
  318. "groupIndex": 0,
  319. "_id": ""
  320. },
  321. {
  322. "__type__": "cc.Sprite",
  323. "_name": "",
  324. "_objFlags": 0,
  325. "node": {
  326. "__id__": 7
  327. },
  328. "_enabled": true,
  329. "_materials": [
  330. {
  331. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  332. }
  333. ],
  334. "_srcBlendFactor": 770,
  335. "_dstBlendFactor": 771,
  336. "_spriteFrame": {
  337. "__uuid__": "2c2313dc-0d6c-4411-8298-d62f8c016f72"
  338. },
  339. "_type": 0,
  340. "_sizeMode": 1,
  341. "_fillType": 0,
  342. "_fillCenter": {
  343. "__type__": "cc.Vec2",
  344. "x": 0,
  345. "y": 0
  346. },
  347. "_fillStart": 0,
  348. "_fillRange": 0,
  349. "_isTrimmedMode": true,
  350. "_atlas": null,
  351. "_id": ""
  352. },
  353. {
  354. "__type__": "cc.Widget",
  355. "_name": "",
  356. "_objFlags": 0,
  357. "node": {
  358. "__id__": 7
  359. },
  360. "_enabled": true,
  361. "alignMode": 1,
  362. "_target": null,
  363. "_alignFlags": 18,
  364. "_left": 0,
  365. "_right": 0,
  366. "_top": 0,
  367. "_bottom": 0,
  368. "_verticalCenter": -25.292,
  369. "_horizontalCenter": -8.17,
  370. "_isAbsLeft": true,
  371. "_isAbsRight": true,
  372. "_isAbsTop": true,
  373. "_isAbsBottom": true,
  374. "_isAbsHorizontalCenter": true,
  375. "_isAbsVerticalCenter": true,
  376. "_originalWidth": 0,
  377. "_originalHeight": 0,
  378. "_id": ""
  379. },
  380. {
  381. "__type__": "cc.PrefabInfo",
  382. "root": {
  383. "__id__": 1
  384. },
  385. "asset": {
  386. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  387. },
  388. "fileId": "a5o25BL3pPuIGobstl7cNf",
  389. "sync": false
  390. },
  391. {
  392. "__type__": "cc.Node",
  393. "_name": "hanzimianban1",
  394. "_objFlags": 0,
  395. "_parent": {
  396. "__id__": 1
  397. },
  398. "_children": [],
  399. "_active": true,
  400. "_components": [
  401. {
  402. "__id__": 12
  403. },
  404. {
  405. "__id__": 13
  406. }
  407. ],
  408. "_prefab": {
  409. "__id__": 14
  410. },
  411. "_opacity": 255,
  412. "_color": {
  413. "__type__": "cc.Color",
  414. "r": 255,
  415. "g": 255,
  416. "b": 255,
  417. "a": 255
  418. },
  419. "_contentSize": {
  420. "__type__": "cc.Size",
  421. "width": 546,
  422. "height": 228
  423. },
  424. "_anchorPoint": {
  425. "__type__": "cc.Vec2",
  426. "x": 0.5,
  427. "y": 0.5
  428. },
  429. "_trs": {
  430. "__type__": "TypedArray",
  431. "ctor": "Float64Array",
  432. "array": [
  433. 8.178,
  434. -9.723,
  435. 0,
  436. 0,
  437. 0,
  438. 0,
  439. 1,
  440. 1,
  441. 1,
  442. 1
  443. ]
  444. },
  445. "_eulerAngles": {
  446. "__type__": "cc.Vec3",
  447. "x": 0,
  448. "y": 0,
  449. "z": 0
  450. },
  451. "_skewX": 0,
  452. "_skewY": 0,
  453. "_is3DNode": false,
  454. "_groupIndex": 0,
  455. "groupIndex": 0,
  456. "_id": ""
  457. },
  458. {
  459. "__type__": "cc.Sprite",
  460. "_name": "",
  461. "_objFlags": 0,
  462. "node": {
  463. "__id__": 11
  464. },
  465. "_enabled": true,
  466. "_materials": [
  467. {
  468. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  469. }
  470. ],
  471. "_srcBlendFactor": 770,
  472. "_dstBlendFactor": 771,
  473. "_spriteFrame": {
  474. "__uuid__": "11dbb996-fad4-4fad-881d-f66f1016d5de"
  475. },
  476. "_type": 0,
  477. "_sizeMode": 1,
  478. "_fillType": 0,
  479. "_fillCenter": {
  480. "__type__": "cc.Vec2",
  481. "x": 0,
  482. "y": 0
  483. },
  484. "_fillStart": 0,
  485. "_fillRange": 0,
  486. "_isTrimmedMode": true,
  487. "_atlas": null,
  488. "_id": ""
  489. },
  490. {
  491. "__type__": "cc.Widget",
  492. "_name": "",
  493. "_objFlags": 0,
  494. "node": {
  495. "__id__": 11
  496. },
  497. "_enabled": true,
  498. "alignMode": 1,
  499. "_target": null,
  500. "_alignFlags": 18,
  501. "_left": 0,
  502. "_right": 0,
  503. "_top": 0,
  504. "_bottom": 0,
  505. "_verticalCenter": -9.723,
  506. "_horizontalCenter": 8.178,
  507. "_isAbsLeft": true,
  508. "_isAbsRight": true,
  509. "_isAbsTop": true,
  510. "_isAbsBottom": true,
  511. "_isAbsHorizontalCenter": true,
  512. "_isAbsVerticalCenter": true,
  513. "_originalWidth": 0,
  514. "_originalHeight": 0,
  515. "_id": ""
  516. },
  517. {
  518. "__type__": "cc.PrefabInfo",
  519. "root": {
  520. "__id__": 1
  521. },
  522. "asset": {
  523. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  524. },
  525. "fileId": "80p6SwdklJkpcznOe0fTz5",
  526. "sync": false
  527. },
  528. {
  529. "__type__": "cc.Node",
  530. "_name": "luojigou-kuang",
  531. "_objFlags": 0,
  532. "_parent": {
  533. "__id__": 1
  534. },
  535. "_children": [],
  536. "_active": true,
  537. "_components": [
  538. {
  539. "__id__": 16
  540. },
  541. {
  542. "__id__": 17
  543. }
  544. ],
  545. "_prefab": {
  546. "__id__": 18
  547. },
  548. "_opacity": 255,
  549. "_color": {
  550. "__type__": "cc.Color",
  551. "r": 255,
  552. "g": 255,
  553. "b": 255,
  554. "a": 255
  555. },
  556. "_contentSize": {
  557. "__type__": "cc.Size",
  558. "width": 227,
  559. "height": 81
  560. },
  561. "_anchorPoint": {
  562. "__type__": "cc.Vec2",
  563. "x": 0.5,
  564. "y": 0.5
  565. },
  566. "_trs": {
  567. "__type__": "TypedArray",
  568. "ctor": "Float64Array",
  569. "array": [
  570. 30.254,
  571. 122.986,
  572. 0,
  573. 0,
  574. 0,
  575. 0,
  576. 1,
  577. 1,
  578. 1,
  579. 1
  580. ]
  581. },
  582. "_eulerAngles": {
  583. "__type__": "cc.Vec3",
  584. "x": 0,
  585. "y": 0,
  586. "z": 0
  587. },
  588. "_skewX": 0,
  589. "_skewY": 0,
  590. "_is3DNode": false,
  591. "_groupIndex": 0,
  592. "groupIndex": 0,
  593. "_id": ""
  594. },
  595. {
  596. "__type__": "cc.Sprite",
  597. "_name": "",
  598. "_objFlags": 0,
  599. "node": {
  600. "__id__": 15
  601. },
  602. "_enabled": true,
  603. "_materials": [
  604. {
  605. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  606. }
  607. ],
  608. "_srcBlendFactor": 770,
  609. "_dstBlendFactor": 771,
  610. "_spriteFrame": {
  611. "__uuid__": "5c5c4d3b-2c4e-4ad2-abd1-b94e122a4951"
  612. },
  613. "_type": 0,
  614. "_sizeMode": 1,
  615. "_fillType": 0,
  616. "_fillCenter": {
  617. "__type__": "cc.Vec2",
  618. "x": 0,
  619. "y": 0
  620. },
  621. "_fillStart": 0,
  622. "_fillRange": 0,
  623. "_isTrimmedMode": true,
  624. "_atlas": null,
  625. "_id": ""
  626. },
  627. {
  628. "__type__": "cc.Widget",
  629. "_name": "",
  630. "_objFlags": 0,
  631. "node": {
  632. "__id__": 15
  633. },
  634. "_enabled": true,
  635. "alignMode": 1,
  636. "_target": null,
  637. "_alignFlags": 0,
  638. "_left": 0,
  639. "_right": 0,
  640. "_top": 0,
  641. "_bottom": 0,
  642. "_verticalCenter": 0,
  643. "_horizontalCenter": 0,
  644. "_isAbsLeft": true,
  645. "_isAbsRight": true,
  646. "_isAbsTop": true,
  647. "_isAbsBottom": true,
  648. "_isAbsHorizontalCenter": true,
  649. "_isAbsVerticalCenter": true,
  650. "_originalWidth": 0,
  651. "_originalHeight": 0,
  652. "_id": ""
  653. },
  654. {
  655. "__type__": "cc.PrefabInfo",
  656. "root": {
  657. "__id__": 1
  658. },
  659. "asset": {
  660. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  661. },
  662. "fileId": "81+9bCVrJEeIZlgf3Kp8q4",
  663. "sync": false
  664. },
  665. {
  666. "__type__": "cc.Node",
  667. "_name": "luojigou",
  668. "_objFlags": 0,
  669. "_parent": {
  670. "__id__": 1
  671. },
  672. "_children": [],
  673. "_active": true,
  674. "_components": [
  675. {
  676. "__id__": 20
  677. }
  678. ],
  679. "_prefab": {
  680. "__id__": 21
  681. },
  682. "_opacity": 255,
  683. "_color": {
  684. "__type__": "cc.Color",
  685. "r": 255,
  686. "g": 255,
  687. "b": 255,
  688. "a": 255
  689. },
  690. "_contentSize": {
  691. "__type__": "cc.Size",
  692. "width": 252,
  693. "height": 246
  694. },
  695. "_anchorPoint": {
  696. "__type__": "cc.Vec2",
  697. "x": 0.5,
  698. "y": 0.5
  699. },
  700. "_trs": {
  701. "__type__": "TypedArray",
  702. "ctor": "Float64Array",
  703. "array": [
  704. -284.007,
  705. -23.86,
  706. 0,
  707. 0,
  708. 0,
  709. 0,
  710. 1,
  711. 1,
  712. 1,
  713. 1
  714. ]
  715. },
  716. "_eulerAngles": {
  717. "__type__": "cc.Vec3",
  718. "x": 0,
  719. "y": 0,
  720. "z": 0
  721. },
  722. "_skewX": 0,
  723. "_skewY": 0,
  724. "_is3DNode": false,
  725. "_groupIndex": 0,
  726. "groupIndex": 0,
  727. "_id": ""
  728. },
  729. {
  730. "__type__": "cc.Sprite",
  731. "_name": "",
  732. "_objFlags": 0,
  733. "node": {
  734. "__id__": 19
  735. },
  736. "_enabled": true,
  737. "_materials": [
  738. {
  739. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  740. }
  741. ],
  742. "_srcBlendFactor": 770,
  743. "_dstBlendFactor": 771,
  744. "_spriteFrame": {
  745. "__uuid__": "bca376db-f11f-463e-b6fa-4dbc96a872e5"
  746. },
  747. "_type": 0,
  748. "_sizeMode": 1,
  749. "_fillType": 0,
  750. "_fillCenter": {
  751. "__type__": "cc.Vec2",
  752. "x": 0,
  753. "y": 0
  754. },
  755. "_fillStart": 0,
  756. "_fillRange": 0,
  757. "_isTrimmedMode": true,
  758. "_atlas": null,
  759. "_id": ""
  760. },
  761. {
  762. "__type__": "cc.PrefabInfo",
  763. "root": {
  764. "__id__": 1
  765. },
  766. "asset": {
  767. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  768. },
  769. "fileId": "dddipxIVRGcqbV4thkF/Og",
  770. "sync": false
  771. },
  772. {
  773. "__type__": "cc.Node",
  774. "_name": "DifficultyStar",
  775. "_objFlags": 0,
  776. "_parent": {
  777. "__id__": 1
  778. },
  779. "_children": [
  780. {
  781. "__id__": 23
  782. },
  783. {
  784. "__id__": 26
  785. },
  786. {
  787. "__id__": 29
  788. },
  789. {
  790. "__id__": 32
  791. }
  792. ],
  793. "_active": true,
  794. "_components": [
  795. {
  796. "__id__": 35
  797. }
  798. ],
  799. "_prefab": {
  800. "__id__": 36
  801. },
  802. "_opacity": 255,
  803. "_color": {
  804. "__type__": "cc.Color",
  805. "r": 255,
  806. "g": 255,
  807. "b": 255,
  808. "a": 255
  809. },
  810. "_contentSize": {
  811. "__type__": "cc.Size",
  812. "width": 306,
  813. "height": 66
  814. },
  815. "_anchorPoint": {
  816. "__type__": "cc.Vec2",
  817. "x": 0.5,
  818. "y": 0.5
  819. },
  820. "_trs": {
  821. "__type__": "TypedArray",
  822. "ctor": "Float64Array",
  823. "array": [
  824. 14.318,
  825. -26.347,
  826. 0,
  827. 0,
  828. 0,
  829. 0,
  830. 1,
  831. 1,
  832. 1,
  833. 1.025
  834. ]
  835. },
  836. "_eulerAngles": {
  837. "__type__": "cc.Vec3",
  838. "x": 0,
  839. "y": 0,
  840. "z": 0
  841. },
  842. "_skewX": 0,
  843. "_skewY": 0,
  844. "_is3DNode": false,
  845. "_groupIndex": 0,
  846. "groupIndex": 0,
  847. "_id": ""
  848. },
  849. {
  850. "__type__": "cc.Node",
  851. "_name": "star",
  852. "_objFlags": 0,
  853. "_parent": {
  854. "__id__": 22
  855. },
  856. "_children": [],
  857. "_active": true,
  858. "_components": [
  859. {
  860. "__id__": 24
  861. }
  862. ],
  863. "_prefab": {
  864. "__id__": 25
  865. },
  866. "_opacity": 255,
  867. "_color": {
  868. "__type__": "cc.Color",
  869. "r": 255,
  870. "g": 255,
  871. "b": 255,
  872. "a": 255
  873. },
  874. "_contentSize": {
  875. "__type__": "cc.Size",
  876. "width": 69,
  877. "height": 66
  878. },
  879. "_anchorPoint": {
  880. "__type__": "cc.Vec2",
  881. "x": 0.5,
  882. "y": 0.5
  883. },
  884. "_trs": {
  885. "__type__": "TypedArray",
  886. "ctor": "Float64Array",
  887. "array": [
  888. -118.5,
  889. 0,
  890. 0,
  891. 0,
  892. 0,
  893. 0,
  894. 1,
  895. 1,
  896. 1,
  897. 1
  898. ]
  899. },
  900. "_eulerAngles": {
  901. "__type__": "cc.Vec3",
  902. "x": 0,
  903. "y": 0,
  904. "z": 0
  905. },
  906. "_skewX": 0,
  907. "_skewY": 0,
  908. "_is3DNode": false,
  909. "_groupIndex": 0,
  910. "groupIndex": 0,
  911. "_id": ""
  912. },
  913. {
  914. "__type__": "cc.Sprite",
  915. "_name": "",
  916. "_objFlags": 0,
  917. "node": {
  918. "__id__": 23
  919. },
  920. "_enabled": true,
  921. "_materials": [
  922. {
  923. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  924. }
  925. ],
  926. "_srcBlendFactor": 770,
  927. "_dstBlendFactor": 771,
  928. "_spriteFrame": {
  929. "__uuid__": "6224ab5d-263c-4bbc-843e-9e6fa396caab"
  930. },
  931. "_type": 0,
  932. "_sizeMode": 1,
  933. "_fillType": 0,
  934. "_fillCenter": {
  935. "__type__": "cc.Vec2",
  936. "x": 0,
  937. "y": 0
  938. },
  939. "_fillStart": 0,
  940. "_fillRange": 0,
  941. "_isTrimmedMode": true,
  942. "_atlas": null,
  943. "_id": ""
  944. },
  945. {
  946. "__type__": "cc.PrefabInfo",
  947. "root": {
  948. "__id__": 1
  949. },
  950. "asset": {
  951. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  952. },
  953. "fileId": "64av/5pT1JjJVUbexGJtto",
  954. "sync": false
  955. },
  956. {
  957. "__type__": "cc.Node",
  958. "_name": "star",
  959. "_objFlags": 0,
  960. "_parent": {
  961. "__id__": 22
  962. },
  963. "_children": [],
  964. "_active": true,
  965. "_components": [
  966. {
  967. "__id__": 27
  968. }
  969. ],
  970. "_prefab": {
  971. "__id__": 28
  972. },
  973. "_opacity": 255,
  974. "_color": {
  975. "__type__": "cc.Color",
  976. "r": 255,
  977. "g": 255,
  978. "b": 255,
  979. "a": 255
  980. },
  981. "_contentSize": {
  982. "__type__": "cc.Size",
  983. "width": 69,
  984. "height": 66
  985. },
  986. "_anchorPoint": {
  987. "__type__": "cc.Vec2",
  988. "x": 0.5,
  989. "y": 0.5
  990. },
  991. "_trs": {
  992. "__type__": "TypedArray",
  993. "ctor": "Float64Array",
  994. "array": [
  995. -39.5,
  996. 0,
  997. 0,
  998. 0,
  999. 0,
  1000. 0,
  1001. 1,
  1002. 1,
  1003. 1,
  1004. 1
  1005. ]
  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. "groupIndex": 0,
  1018. "_id": ""
  1019. },
  1020. {
  1021. "__type__": "cc.Sprite",
  1022. "_name": "",
  1023. "_objFlags": 0,
  1024. "node": {
  1025. "__id__": 26
  1026. },
  1027. "_enabled": true,
  1028. "_materials": [
  1029. {
  1030. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1031. }
  1032. ],
  1033. "_srcBlendFactor": 770,
  1034. "_dstBlendFactor": 771,
  1035. "_spriteFrame": {
  1036. "__uuid__": "6224ab5d-263c-4bbc-843e-9e6fa396caab"
  1037. },
  1038. "_type": 0,
  1039. "_sizeMode": 1,
  1040. "_fillType": 0,
  1041. "_fillCenter": {
  1042. "__type__": "cc.Vec2",
  1043. "x": 0,
  1044. "y": 0
  1045. },
  1046. "_fillStart": 0,
  1047. "_fillRange": 0,
  1048. "_isTrimmedMode": true,
  1049. "_atlas": null,
  1050. "_id": ""
  1051. },
  1052. {
  1053. "__type__": "cc.PrefabInfo",
  1054. "root": {
  1055. "__id__": 1
  1056. },
  1057. "asset": {
  1058. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1059. },
  1060. "fileId": "15/e7YMiVLe5HfSVFEQeR1",
  1061. "sync": false
  1062. },
  1063. {
  1064. "__type__": "cc.Node",
  1065. "_name": "star",
  1066. "_objFlags": 0,
  1067. "_parent": {
  1068. "__id__": 22
  1069. },
  1070. "_children": [],
  1071. "_active": true,
  1072. "_components": [
  1073. {
  1074. "__id__": 30
  1075. }
  1076. ],
  1077. "_prefab": {
  1078. "__id__": 31
  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": 69,
  1091. "height": 66
  1092. },
  1093. "_anchorPoint": {
  1094. "__type__": "cc.Vec2",
  1095. "x": 0.5,
  1096. "y": 0.5
  1097. },
  1098. "_trs": {
  1099. "__type__": "TypedArray",
  1100. "ctor": "Float64Array",
  1101. "array": [
  1102. 39.5,
  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.Sprite",
  1129. "_name": "",
  1130. "_objFlags": 0,
  1131. "node": {
  1132. "__id__": 29
  1133. },
  1134. "_enabled": true,
  1135. "_materials": [
  1136. {
  1137. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1138. }
  1139. ],
  1140. "_srcBlendFactor": 770,
  1141. "_dstBlendFactor": 771,
  1142. "_spriteFrame": {
  1143. "__uuid__": "6224ab5d-263c-4bbc-843e-9e6fa396caab"
  1144. },
  1145. "_type": 0,
  1146. "_sizeMode": 1,
  1147. "_fillType": 0,
  1148. "_fillCenter": {
  1149. "__type__": "cc.Vec2",
  1150. "x": 0,
  1151. "y": 0
  1152. },
  1153. "_fillStart": 0,
  1154. "_fillRange": 0,
  1155. "_isTrimmedMode": true,
  1156. "_atlas": null,
  1157. "_id": ""
  1158. },
  1159. {
  1160. "__type__": "cc.PrefabInfo",
  1161. "root": {
  1162. "__id__": 1
  1163. },
  1164. "asset": {
  1165. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1166. },
  1167. "fileId": "bdxDqcE/dJT7h3a3rwzivF",
  1168. "sync": false
  1169. },
  1170. {
  1171. "__type__": "cc.Node",
  1172. "_name": "star",
  1173. "_objFlags": 0,
  1174. "_parent": {
  1175. "__id__": 22
  1176. },
  1177. "_children": [],
  1178. "_active": true,
  1179. "_components": [
  1180. {
  1181. "__id__": 33
  1182. }
  1183. ],
  1184. "_prefab": {
  1185. "__id__": 34
  1186. },
  1187. "_opacity": 255,
  1188. "_color": {
  1189. "__type__": "cc.Color",
  1190. "r": 255,
  1191. "g": 255,
  1192. "b": 255,
  1193. "a": 255
  1194. },
  1195. "_contentSize": {
  1196. "__type__": "cc.Size",
  1197. "width": 69,
  1198. "height": 66
  1199. },
  1200. "_anchorPoint": {
  1201. "__type__": "cc.Vec2",
  1202. "x": 0.5,
  1203. "y": 0.5
  1204. },
  1205. "_trs": {
  1206. "__type__": "TypedArray",
  1207. "ctor": "Float64Array",
  1208. "array": [
  1209. 118.5,
  1210. 0,
  1211. 0,
  1212. 0,
  1213. 0,
  1214. 0,
  1215. 1,
  1216. 1,
  1217. 1,
  1218. 1
  1219. ]
  1220. },
  1221. "_eulerAngles": {
  1222. "__type__": "cc.Vec3",
  1223. "x": 0,
  1224. "y": 0,
  1225. "z": 0
  1226. },
  1227. "_skewX": 0,
  1228. "_skewY": 0,
  1229. "_is3DNode": false,
  1230. "_groupIndex": 0,
  1231. "groupIndex": 0,
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.Sprite",
  1236. "_name": "",
  1237. "_objFlags": 0,
  1238. "node": {
  1239. "__id__": 32
  1240. },
  1241. "_enabled": true,
  1242. "_materials": [
  1243. {
  1244. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1245. }
  1246. ],
  1247. "_srcBlendFactor": 770,
  1248. "_dstBlendFactor": 771,
  1249. "_spriteFrame": {
  1250. "__uuid__": "6224ab5d-263c-4bbc-843e-9e6fa396caab"
  1251. },
  1252. "_type": 0,
  1253. "_sizeMode": 1,
  1254. "_fillType": 0,
  1255. "_fillCenter": {
  1256. "__type__": "cc.Vec2",
  1257. "x": 0,
  1258. "y": 0
  1259. },
  1260. "_fillStart": 0,
  1261. "_fillRange": 0,
  1262. "_isTrimmedMode": true,
  1263. "_atlas": null,
  1264. "_id": ""
  1265. },
  1266. {
  1267. "__type__": "cc.PrefabInfo",
  1268. "root": {
  1269. "__id__": 1
  1270. },
  1271. "asset": {
  1272. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1273. },
  1274. "fileId": "825goPhYhFF4+oSBU0dqoj",
  1275. "sync": false
  1276. },
  1277. {
  1278. "__type__": "cc.Layout",
  1279. "_name": "",
  1280. "_objFlags": 0,
  1281. "node": {
  1282. "__id__": 22
  1283. },
  1284. "_enabled": true,
  1285. "_layoutSize": {
  1286. "__type__": "cc.Size",
  1287. "width": 306,
  1288. "height": 66
  1289. },
  1290. "_resize": 1,
  1291. "_N$layoutType": 1,
  1292. "_N$cellSize": {
  1293. "__type__": "cc.Size",
  1294. "width": 40,
  1295. "height": 40
  1296. },
  1297. "_N$startAxis": 0,
  1298. "_N$paddingLeft": 0,
  1299. "_N$paddingRight": 0,
  1300. "_N$paddingTop": 0,
  1301. "_N$paddingBottom": 0,
  1302. "_N$spacingX": 10,
  1303. "_N$spacingY": 0,
  1304. "_N$verticalDirection": 1,
  1305. "_N$horizontalDirection": 0,
  1306. "_N$affectedByScale": true,
  1307. "_id": ""
  1308. },
  1309. {
  1310. "__type__": "cc.PrefabInfo",
  1311. "root": {
  1312. "__id__": 1
  1313. },
  1314. "asset": {
  1315. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1316. },
  1317. "fileId": "c502b1NDZPZ7/EBZEJntoB",
  1318. "sync": false
  1319. },
  1320. {
  1321. "__type__": "cc.Node",
  1322. "_name": "Close Icon",
  1323. "_objFlags": 0,
  1324. "_parent": {
  1325. "__id__": 1
  1326. },
  1327. "_children": [
  1328. {
  1329. "__id__": 38
  1330. }
  1331. ],
  1332. "_active": true,
  1333. "_components": [
  1334. {
  1335. "__id__": 42
  1336. }
  1337. ],
  1338. "_prefab": {
  1339. "__id__": 43
  1340. },
  1341. "_opacity": 255,
  1342. "_color": {
  1343. "__type__": "cc.Color",
  1344. "r": 255,
  1345. "g": 255,
  1346. "b": 255,
  1347. "a": 255
  1348. },
  1349. "_contentSize": {
  1350. "__type__": "cc.Size",
  1351. "width": 68,
  1352. "height": 72
  1353. },
  1354. "_anchorPoint": {
  1355. "__type__": "cc.Vec2",
  1356. "x": 0.5,
  1357. "y": 0.5
  1358. },
  1359. "_trs": {
  1360. "__type__": "TypedArray",
  1361. "ctor": "Float64Array",
  1362. "array": [
  1363. 296.639,
  1364. 110.059,
  1365. 0,
  1366. 0,
  1367. 0,
  1368. 0,
  1369. 1,
  1370. 1,
  1371. 1,
  1372. 1
  1373. ]
  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. "groupIndex": 0,
  1386. "_id": ""
  1387. },
  1388. {
  1389. "__type__": "cc.Node",
  1390. "_name": "btnClose",
  1391. "_objFlags": 0,
  1392. "_parent": {
  1393. "__id__": 37
  1394. },
  1395. "_children": [],
  1396. "_active": true,
  1397. "_components": [
  1398. {
  1399. "__id__": 39
  1400. }
  1401. ],
  1402. "_prefab": {
  1403. "__id__": 41
  1404. },
  1405. "_opacity": 255,
  1406. "_color": {
  1407. "__type__": "cc.Color",
  1408. "r": 255,
  1409. "g": 255,
  1410. "b": 255,
  1411. "a": 255
  1412. },
  1413. "_contentSize": {
  1414. "__type__": "cc.Size",
  1415. "width": 200,
  1416. "height": 200
  1417. },
  1418. "_anchorPoint": {
  1419. "__type__": "cc.Vec2",
  1420. "x": 0.5,
  1421. "y": 0.5
  1422. },
  1423. "_trs": {
  1424. "__type__": "TypedArray",
  1425. "ctor": "Float64Array",
  1426. "array": [
  1427. 0,
  1428. 0,
  1429. 0,
  1430. 0,
  1431. 0,
  1432. 0,
  1433. 1,
  1434. 1,
  1435. 1,
  1436. 1
  1437. ]
  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. "groupIndex": 0,
  1450. "_id": ""
  1451. },
  1452. {
  1453. "__type__": "cc.Button",
  1454. "_name": "",
  1455. "_objFlags": 0,
  1456. "node": {
  1457. "__id__": 38
  1458. },
  1459. "_enabled": true,
  1460. "_normalMaterial": null,
  1461. "_grayMaterial": null,
  1462. "duration": 0.1,
  1463. "zoomScale": 1.2,
  1464. "clickEvents": [
  1465. {
  1466. "__id__": 40
  1467. }
  1468. ],
  1469. "_N$interactable": true,
  1470. "_N$enableAutoGrayEffect": false,
  1471. "_N$transition": 0,
  1472. "transition": 0,
  1473. "_N$normalColor": {
  1474. "__type__": "cc.Color",
  1475. "r": 255,
  1476. "g": 255,
  1477. "b": 255,
  1478. "a": 255
  1479. },
  1480. "_N$pressedColor": {
  1481. "__type__": "cc.Color",
  1482. "r": 211,
  1483. "g": 211,
  1484. "b": 211,
  1485. "a": 255
  1486. },
  1487. "pressedColor": {
  1488. "__type__": "cc.Color",
  1489. "r": 211,
  1490. "g": 211,
  1491. "b": 211,
  1492. "a": 255
  1493. },
  1494. "_N$hoverColor": {
  1495. "__type__": "cc.Color",
  1496. "r": 255,
  1497. "g": 255,
  1498. "b": 255,
  1499. "a": 255
  1500. },
  1501. "hoverColor": {
  1502. "__type__": "cc.Color",
  1503. "r": 255,
  1504. "g": 255,
  1505. "b": 255,
  1506. "a": 255
  1507. },
  1508. "_N$disabledColor": {
  1509. "__type__": "cc.Color",
  1510. "r": 124,
  1511. "g": 124,
  1512. "b": 124,
  1513. "a": 255
  1514. },
  1515. "_N$normalSprite": null,
  1516. "_N$pressedSprite": null,
  1517. "pressedSprite": null,
  1518. "_N$hoverSprite": null,
  1519. "hoverSprite": null,
  1520. "_N$disabledSprite": null,
  1521. "_N$target": null,
  1522. "_id": ""
  1523. },
  1524. {
  1525. "__type__": "cc.ClickEvent",
  1526. "target": {
  1527. "__id__": 1
  1528. },
  1529. "component": "",
  1530. "_componentId": "dceb764dL1JiYCW/zhyLoDq",
  1531. "handler": "eventClose",
  1532. "customEventData": ""
  1533. },
  1534. {
  1535. "__type__": "cc.PrefabInfo",
  1536. "root": {
  1537. "__id__": 1
  1538. },
  1539. "asset": {
  1540. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1541. },
  1542. "fileId": "edZMhdU/RAorAnO9nmZ5/n",
  1543. "sync": false
  1544. },
  1545. {
  1546. "__type__": "cc.Sprite",
  1547. "_name": "",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 37
  1551. },
  1552. "_enabled": true,
  1553. "_materials": [
  1554. {
  1555. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1556. }
  1557. ],
  1558. "_srcBlendFactor": 770,
  1559. "_dstBlendFactor": 771,
  1560. "_spriteFrame": {
  1561. "__uuid__": "86b29e40-f75b-481b-8130-1d5eefd22a9a"
  1562. },
  1563. "_type": 0,
  1564. "_sizeMode": 1,
  1565. "_fillType": 0,
  1566. "_fillCenter": {
  1567. "__type__": "cc.Vec2",
  1568. "x": 0,
  1569. "y": 0
  1570. },
  1571. "_fillStart": 0,
  1572. "_fillRange": 0,
  1573. "_isTrimmedMode": true,
  1574. "_atlas": null,
  1575. "_id": ""
  1576. },
  1577. {
  1578. "__type__": "cc.PrefabInfo",
  1579. "root": {
  1580. "__id__": 1
  1581. },
  1582. "asset": {
  1583. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1584. },
  1585. "fileId": "d4YKgoNStClpCHAW2FAz45",
  1586. "sync": false
  1587. },
  1588. {
  1589. "__type__": "cc.Node",
  1590. "_name": "Title",
  1591. "_objFlags": 0,
  1592. "_parent": {
  1593. "__id__": 1
  1594. },
  1595. "_children": [
  1596. {
  1597. "__id__": 45
  1598. },
  1599. {
  1600. "__id__": 48
  1601. }
  1602. ],
  1603. "_active": true,
  1604. "_components": [],
  1605. "_prefab": {
  1606. "__id__": 51
  1607. },
  1608. "_opacity": 255,
  1609. "_color": {
  1610. "__type__": "cc.Color",
  1611. "r": 255,
  1612. "g": 255,
  1613. "b": 255,
  1614. "a": 255
  1615. },
  1616. "_contentSize": {
  1617. "__type__": "cc.Size",
  1618. "width": 435,
  1619. "height": 29
  1620. },
  1621. "_anchorPoint": {
  1622. "__type__": "cc.Vec2",
  1623. "x": 0.5,
  1624. "y": 0.5
  1625. },
  1626. "_trs": {
  1627. "__type__": "TypedArray",
  1628. "ctor": "Float64Array",
  1629. "array": [
  1630. 46.694,
  1631. 42.802,
  1632. 0,
  1633. 0,
  1634. 0,
  1635. 0,
  1636. 1,
  1637. 0.992,
  1638. 0.992,
  1639. 0.992
  1640. ]
  1641. },
  1642. "_eulerAngles": {
  1643. "__type__": "cc.Vec3",
  1644. "x": 0,
  1645. "y": 0,
  1646. "z": 0
  1647. },
  1648. "_skewX": 0,
  1649. "_skewY": 0,
  1650. "_is3DNode": false,
  1651. "_groupIndex": 0,
  1652. "groupIndex": 0,
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.Node",
  1657. "_name": "Challenge Type",
  1658. "_objFlags": 0,
  1659. "_parent": {
  1660. "__id__": 44
  1661. },
  1662. "_children": [],
  1663. "_active": true,
  1664. "_components": [
  1665. {
  1666. "__id__": 46
  1667. }
  1668. ],
  1669. "_prefab": {
  1670. "__id__": 47
  1671. },
  1672. "_opacity": 255,
  1673. "_color": {
  1674. "__type__": "cc.Color",
  1675. "r": 90,
  1676. "g": 189,
  1677. "b": 203,
  1678. "a": 255
  1679. },
  1680. "_contentSize": {
  1681. "__type__": "cc.Size",
  1682. "width": 174,
  1683. "height": 36.54
  1684. },
  1685. "_anchorPoint": {
  1686. "__type__": "cc.Vec2",
  1687. "x": 1,
  1688. "y": 0.5
  1689. },
  1690. "_trs": {
  1691. "__type__": "TypedArray",
  1692. "ctor": "Float64Array",
  1693. "array": [
  1694. -60,
  1695. 0,
  1696. 0,
  1697. 0,
  1698. 0,
  1699. 0,
  1700. 1,
  1701. 1,
  1702. 1,
  1703. 1
  1704. ]
  1705. },
  1706. "_eulerAngles": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 0,
  1709. "y": 0,
  1710. "z": 0
  1711. },
  1712. "_skewX": 0,
  1713. "_skewY": 0,
  1714. "_is3DNode": false,
  1715. "_groupIndex": 0,
  1716. "groupIndex": 0,
  1717. "_id": ""
  1718. },
  1719. {
  1720. "__type__": "cc.Label",
  1721. "_name": "",
  1722. "_objFlags": 0,
  1723. "node": {
  1724. "__id__": 45
  1725. },
  1726. "_enabled": true,
  1727. "_materials": [
  1728. {
  1729. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1730. }
  1731. ],
  1732. "_srcBlendFactor": 770,
  1733. "_dstBlendFactor": 771,
  1734. "_string": "观察力挑战一",
  1735. "_N$string": "观察力挑战一",
  1736. "_fontSize": 29,
  1737. "_lineHeight": 29,
  1738. "_enableWrapText": true,
  1739. "_N$file": null,
  1740. "_isSystemFontUsed": true,
  1741. "_spacingX": 0,
  1742. "_batchAsBitmap": false,
  1743. "_styleFlags": 0,
  1744. "_underlineHeight": 0,
  1745. "_N$horizontalAlign": 2,
  1746. "_N$verticalAlign": 1,
  1747. "_N$fontFamily": "Arial",
  1748. "_N$overflow": 0,
  1749. "_N$cacheMode": 0,
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.PrefabInfo",
  1754. "root": {
  1755. "__id__": 1
  1756. },
  1757. "asset": {
  1758. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1759. },
  1760. "fileId": "c7C2s+Y/tBu46TPDsVLDpI",
  1761. "sync": false
  1762. },
  1763. {
  1764. "__type__": "cc.Node",
  1765. "_name": "Challenge Title",
  1766. "_objFlags": 0,
  1767. "_parent": {
  1768. "__id__": 44
  1769. },
  1770. "_children": [],
  1771. "_active": true,
  1772. "_components": [
  1773. {
  1774. "__id__": 49
  1775. }
  1776. ],
  1777. "_prefab": {
  1778. "__id__": 50
  1779. },
  1780. "_opacity": 255,
  1781. "_color": {
  1782. "__type__": "cc.Color",
  1783. "r": 142,
  1784. "g": 138,
  1785. "b": 117,
  1786. "a": 255
  1787. },
  1788. "_contentSize": {
  1789. "__type__": "cc.Size",
  1790. "width": 260,
  1791. "height": 36.54
  1792. },
  1793. "_anchorPoint": {
  1794. "__type__": "cc.Vec2",
  1795. "x": 0,
  1796. "y": 0.5
  1797. },
  1798. "_trs": {
  1799. "__type__": "TypedArray",
  1800. "ctor": "Float64Array",
  1801. "array": [
  1802. -50,
  1803. 0,
  1804. 0,
  1805. 0,
  1806. 0,
  1807. 0,
  1808. 1,
  1809. 1,
  1810. 1,
  1811. 1
  1812. ]
  1813. },
  1814. "_eulerAngles": {
  1815. "__type__": "cc.Vec3",
  1816. "x": 0,
  1817. "y": 0,
  1818. "z": 0
  1819. },
  1820. "_skewX": 0,
  1821. "_skewY": 0,
  1822. "_is3DNode": false,
  1823. "_groupIndex": 0,
  1824. "groupIndex": 0,
  1825. "_id": ""
  1826. },
  1827. {
  1828. "__type__": "cc.Label",
  1829. "_name": "",
  1830. "_objFlags": 0,
  1831. "node": {
  1832. "__id__": 48
  1833. },
  1834. "_enabled": true,
  1835. "_materials": [
  1836. {
  1837. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1838. }
  1839. ],
  1840. "_srcBlendFactor": 770,
  1841. "_dstBlendFactor": 771,
  1842. "_string": "【找到相同的物品】",
  1843. "_N$string": "【找到相同的物品】",
  1844. "_fontSize": 29,
  1845. "_lineHeight": 29,
  1846. "_enableWrapText": true,
  1847. "_N$file": null,
  1848. "_isSystemFontUsed": true,
  1849. "_spacingX": 0,
  1850. "_batchAsBitmap": false,
  1851. "_styleFlags": 0,
  1852. "_underlineHeight": 0,
  1853. "_N$horizontalAlign": 1,
  1854. "_N$verticalAlign": 1,
  1855. "_N$fontFamily": "Arial",
  1856. "_N$overflow": 2,
  1857. "_N$cacheMode": 0,
  1858. "_id": ""
  1859. },
  1860. {
  1861. "__type__": "cc.PrefabInfo",
  1862. "root": {
  1863. "__id__": 1
  1864. },
  1865. "asset": {
  1866. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1867. },
  1868. "fileId": "cehY683/pD6phRVB5Lq6sM",
  1869. "sync": false
  1870. },
  1871. {
  1872. "__type__": "cc.PrefabInfo",
  1873. "root": {
  1874. "__id__": 1
  1875. },
  1876. "asset": {
  1877. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1878. },
  1879. "fileId": "farpIF22dBg6dwpRWPgVKI",
  1880. "sync": false
  1881. },
  1882. {
  1883. "__type__": "dceb764dL1JiYCW/zhyLoDq",
  1884. "_name": "",
  1885. "_objFlags": 0,
  1886. "node": {
  1887. "__id__": 1
  1888. },
  1889. "_enabled": true,
  1890. "DifficultyStar": {
  1891. "__id__": 22
  1892. },
  1893. "ChallengeType": {
  1894. "__id__": 45
  1895. },
  1896. "ChallengeTitle": {
  1897. "__id__": 48
  1898. },
  1899. "CloseIcon": {
  1900. "__id__": 37
  1901. },
  1902. "StarSprite": {
  1903. "__id__": 23
  1904. },
  1905. "StarList": [
  1906. {
  1907. "__id__": 23
  1908. },
  1909. {
  1910. "__id__": 26
  1911. },
  1912. {
  1913. "__id__": 29
  1914. },
  1915. {
  1916. "__id__": 32
  1917. }
  1918. ],
  1919. "_id": ""
  1920. },
  1921. {
  1922. "__type__": "cc.Widget",
  1923. "_name": "",
  1924. "_objFlags": 0,
  1925. "node": {
  1926. "__id__": 1
  1927. },
  1928. "_enabled": true,
  1929. "alignMode": 1,
  1930. "_target": null,
  1931. "_alignFlags": 45,
  1932. "_left": 0,
  1933. "_right": 0,
  1934. "_top": 0,
  1935. "_bottom": 0,
  1936. "_verticalCenter": 0,
  1937. "_horizontalCenter": 0,
  1938. "_isAbsLeft": true,
  1939. "_isAbsRight": true,
  1940. "_isAbsTop": true,
  1941. "_isAbsBottom": true,
  1942. "_isAbsHorizontalCenter": true,
  1943. "_isAbsVerticalCenter": true,
  1944. "_originalWidth": 1920,
  1945. "_originalHeight": 1080,
  1946. "_id": ""
  1947. },
  1948. {
  1949. "__type__": "cc.PrefabInfo",
  1950. "root": {
  1951. "__id__": 1
  1952. },
  1953. "asset": {
  1954. "__uuid__": "92098a6f-f63c-4599-b638-5aee4544ae4f"
  1955. },
  1956. "fileId": "",
  1957. "sync": false
  1958. }
  1959. ]