taskPrefab8.prefab 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181
  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": "taskPrefab3",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 5
  25. },
  26. {
  27. "__id__": 8
  28. },
  29. {
  30. "__id__": 44
  31. },
  32. {
  33. "__id__": 51
  34. },
  35. {
  36. "__id__": 61
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 64
  44. },
  45. "_opacity": 255,
  46. "_color": {
  47. "__type__": "cc.Color",
  48. "r": 255,
  49. "g": 255,
  50. "b": 255,
  51. "a": 255
  52. },
  53. "_contentSize": {
  54. "__type__": "cc.Size",
  55. "width": 150,
  56. "height": 100
  57. },
  58. "_anchorPoint": {
  59. "__type__": "cc.Vec2",
  60. "x": 0.5,
  61. "y": 0.5
  62. },
  63. "_position": {
  64. "__type__": "cc.Vec3",
  65. "x": 0,
  66. "y": 0,
  67. "z": 0
  68. },
  69. "_scale": {
  70. "__type__": "cc.Vec3",
  71. "x": 1,
  72. "y": 1,
  73. "z": 1
  74. },
  75. "_quat": {
  76. "__type__": "cc.Quat",
  77. "x": 0,
  78. "y": 0,
  79. "z": 0,
  80. "w": 1
  81. },
  82. "_skewX": 0,
  83. "_skewY": 0,
  84. "_zIndex": 0,
  85. "_is3DNode": false,
  86. "groupIndex": 0,
  87. "_rotationX": 0,
  88. "_rotationY": 0,
  89. "_id": ""
  90. },
  91. {
  92. "__type__": "cc.Node",
  93. "_name": "New Node",
  94. "_objFlags": 0,
  95. "_parent": {
  96. "__id__": 1
  97. },
  98. "_children": [],
  99. "_active": true,
  100. "_level": 2,
  101. "_components": [
  102. {
  103. "__id__": 3
  104. }
  105. ],
  106. "_prefab": {
  107. "__id__": 4
  108. },
  109. "_opacity": 255,
  110. "_color": {
  111. "__type__": "cc.Color",
  112. "r": 255,
  113. "g": 255,
  114. "b": 255,
  115. "a": 255
  116. },
  117. "_contentSize": {
  118. "__type__": "cc.Size",
  119. "width": 1200,
  120. "height": 1200
  121. },
  122. "_anchorPoint": {
  123. "__type__": "cc.Vec2",
  124. "x": 0.5,
  125. "y": 0.5
  126. },
  127. "_position": {
  128. "__type__": "cc.Vec3",
  129. "x": 0,
  130. "y": 0,
  131. "z": 0
  132. },
  133. "_scale": {
  134. "__type__": "cc.Vec3",
  135. "x": 1,
  136. "y": 1,
  137. "z": 1
  138. },
  139. "_quat": {
  140. "__type__": "cc.Quat",
  141. "x": 0,
  142. "y": 0,
  143. "z": 0,
  144. "w": 1
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_zIndex": 0,
  149. "_is3DNode": false,
  150. "groupIndex": 0,
  151. "_id": ""
  152. },
  153. {
  154. "__type__": "cc.BlockInputEvents",
  155. "_name": "",
  156. "_objFlags": 0,
  157. "node": {
  158. "__id__": 2
  159. },
  160. "_enabled": true,
  161. "_id": ""
  162. },
  163. {
  164. "__type__": "cc.PrefabInfo",
  165. "root": {
  166. "__id__": 1
  167. },
  168. "asset": {
  169. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  170. },
  171. "fileId": "716x/gRJVMg41O7PNUUUvz",
  172. "sync": false
  173. },
  174. {
  175. "__type__": "cc.Node",
  176. "_name": "bgnn",
  177. "_objFlags": 0,
  178. "_parent": {
  179. "__id__": 1
  180. },
  181. "_children": [],
  182. "_active": true,
  183. "_level": 2,
  184. "_components": [
  185. {
  186. "__id__": 6
  187. }
  188. ],
  189. "_prefab": {
  190. "__id__": 7
  191. },
  192. "_opacity": 147,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 0,
  196. "g": 0,
  197. "b": 0,
  198. "a": 255
  199. },
  200. "_contentSize": {
  201. "__type__": "cc.Size",
  202. "width": 1200,
  203. "height": 1800
  204. },
  205. "_anchorPoint": {
  206. "__type__": "cc.Vec2",
  207. "x": 0.5,
  208. "y": 0.5
  209. },
  210. "_position": {
  211. "__type__": "cc.Vec3",
  212. "x": 0,
  213. "y": 0,
  214. "z": 0
  215. },
  216. "_scale": {
  217. "__type__": "cc.Vec3",
  218. "x": 1,
  219. "y": 1,
  220. "z": 1
  221. },
  222. "_quat": {
  223. "__type__": "cc.Quat",
  224. "x": 0,
  225. "y": 0,
  226. "z": 0,
  227. "w": 1
  228. },
  229. "_skewX": 0,
  230. "_skewY": 0,
  231. "_zIndex": 0,
  232. "_is3DNode": false,
  233. "groupIndex": 0,
  234. "_rotationX": 0,
  235. "_rotationY": 0,
  236. "_id": ""
  237. },
  238. {
  239. "__type__": "cc.Sprite",
  240. "_name": "",
  241. "_objFlags": 0,
  242. "node": {
  243. "__id__": 5
  244. },
  245. "_enabled": true,
  246. "_srcBlendFactor": 770,
  247. "_dstBlendFactor": 771,
  248. "_spriteFrame": {
  249. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  250. },
  251. "_type": 0,
  252. "_sizeMode": 0,
  253. "_fillType": 0,
  254. "_fillCenter": {
  255. "__type__": "cc.Vec2",
  256. "x": 0,
  257. "y": 0
  258. },
  259. "_fillStart": 0,
  260. "_fillRange": 0,
  261. "_isTrimmedMode": true,
  262. "_state": 0,
  263. "_atlas": null,
  264. "_id": ""
  265. },
  266. {
  267. "__type__": "cc.PrefabInfo",
  268. "root": {
  269. "__id__": 1
  270. },
  271. "asset": {
  272. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  273. },
  274. "fileId": "41Upov3CBBHrf54t71LV8T",
  275. "sync": false
  276. },
  277. {
  278. "__type__": "cc.Node",
  279. "_name": "bg",
  280. "_objFlags": 0,
  281. "_parent": {
  282. "__id__": 1
  283. },
  284. "_children": [
  285. {
  286. "__id__": 9
  287. },
  288. {
  289. "__id__": 27
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 2,
  294. "_components": [
  295. {
  296. "__id__": 42
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 43
  301. },
  302. "_opacity": 255,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_contentSize": {
  311. "__type__": "cc.Size",
  312. "width": 500,
  313. "height": 400
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_position": {
  321. "__type__": "cc.Vec3",
  322. "x": 65,
  323. "y": 194,
  324. "z": 0
  325. },
  326. "_scale": {
  327. "__type__": "cc.Vec3",
  328. "x": 1,
  329. "y": 1,
  330. "z": 1
  331. },
  332. "_quat": {
  333. "__type__": "cc.Quat",
  334. "x": 0,
  335. "y": 0,
  336. "z": 0,
  337. "w": 1
  338. },
  339. "_skewX": 0,
  340. "_skewY": 0,
  341. "_zIndex": 0,
  342. "_is3DNode": false,
  343. "groupIndex": 0,
  344. "_rotationX": 0,
  345. "_rotationY": 0,
  346. "_id": ""
  347. },
  348. {
  349. "__type__": "cc.Node",
  350. "_name": "New Label",
  351. "_objFlags": 0,
  352. "_parent": {
  353. "__id__": 8
  354. },
  355. "_children": [
  356. {
  357. "__id__": 10
  358. },
  359. {
  360. "__id__": 13
  361. },
  362. {
  363. "__id__": 17
  364. },
  365. {
  366. "__id__": 21
  367. }
  368. ],
  369. "_active": false,
  370. "_level": 3,
  371. "_components": [
  372. {
  373. "__id__": 25
  374. }
  375. ],
  376. "_prefab": {
  377. "__id__": 26
  378. },
  379. "_opacity": 255,
  380. "_color": {
  381. "__type__": "cc.Color",
  382. "r": 0,
  383. "g": 0,
  384. "b": 0,
  385. "a": 255
  386. },
  387. "_contentSize": {
  388. "__type__": "cc.Size",
  389. "width": 392.24,
  390. "height": 80
  391. },
  392. "_anchorPoint": {
  393. "__type__": "cc.Vec2",
  394. "x": 0.5,
  395. "y": 0.5
  396. },
  397. "_position": {
  398. "__type__": "cc.Vec3",
  399. "x": -10,
  400. "y": 70,
  401. "z": 0
  402. },
  403. "_scale": {
  404. "__type__": "cc.Vec3",
  405. "x": 1,
  406. "y": 1,
  407. "z": 1
  408. },
  409. "_quat": {
  410. "__type__": "cc.Quat",
  411. "x": 0,
  412. "y": 0,
  413. "z": 0,
  414. "w": 1
  415. },
  416. "_skewX": 0,
  417. "_skewY": 0,
  418. "_zIndex": 0,
  419. "_is3DNode": false,
  420. "groupIndex": 0,
  421. "_rotationX": 0,
  422. "_rotationY": 0,
  423. "_id": ""
  424. },
  425. {
  426. "__type__": "cc.Node",
  427. "_name": "New Label",
  428. "_objFlags": 0,
  429. "_parent": {
  430. "__id__": 9
  431. },
  432. "_children": [],
  433. "_active": true,
  434. "_level": 4,
  435. "_components": [
  436. {
  437. "__id__": 11
  438. }
  439. ],
  440. "_prefab": {
  441. "__id__": 12
  442. },
  443. "_opacity": 255,
  444. "_color": {
  445. "__type__": "cc.Color",
  446. "r": 255,
  447. "g": 0,
  448. "b": 0,
  449. "a": 255
  450. },
  451. "_contentSize": {
  452. "__type__": "cc.Size",
  453. "width": 40,
  454. "height": 20
  455. },
  456. "_anchorPoint": {
  457. "__type__": "cc.Vec2",
  458. "x": 0.5,
  459. "y": 0.5
  460. },
  461. "_position": {
  462. "__type__": "cc.Vec3",
  463. "x": -39,
  464. "y": -31,
  465. "z": 0
  466. },
  467. "_scale": {
  468. "__type__": "cc.Vec3",
  469. "x": 1,
  470. "y": 1,
  471. "z": 1
  472. },
  473. "_quat": {
  474. "__type__": "cc.Quat",
  475. "x": 0,
  476. "y": 0,
  477. "z": 0,
  478. "w": 1
  479. },
  480. "_skewX": 0,
  481. "_skewY": 0,
  482. "_zIndex": 0,
  483. "_is3DNode": false,
  484. "groupIndex": 0,
  485. "_rotationX": 0,
  486. "_rotationY": 0,
  487. "_id": ""
  488. },
  489. {
  490. "__type__": "cc.Label",
  491. "_name": "",
  492. "_objFlags": 0,
  493. "node": {
  494. "__id__": 10
  495. },
  496. "_enabled": true,
  497. "_srcBlendFactor": 1,
  498. "_dstBlendFactor": 771,
  499. "_useOriginalSize": false,
  500. "_string": "转盘",
  501. "_N$string": "转盘",
  502. "_fontSize": 20,
  503. "_lineHeight": 20,
  504. "_enableWrapText": true,
  505. "_N$file": null,
  506. "_isSystemFontUsed": true,
  507. "_spacingX": 0,
  508. "_N$horizontalAlign": 0,
  509. "_N$verticalAlign": 0,
  510. "_N$fontFamily": "Arial",
  511. "_N$overflow": 0,
  512. "_id": ""
  513. },
  514. {
  515. "__type__": "cc.PrefabInfo",
  516. "root": {
  517. "__id__": 1
  518. },
  519. "asset": {
  520. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  521. },
  522. "fileId": "66FhFw1JFIJISlmxqxqWVF",
  523. "sync": false
  524. },
  525. {
  526. "__type__": "cc.Node",
  527. "_name": "New Label",
  528. "_objFlags": 0,
  529. "_parent": {
  530. "__id__": 9
  531. },
  532. "_children": [],
  533. "_active": false,
  534. "_level": 4,
  535. "_components": [
  536. {
  537. "__id__": 14
  538. },
  539. {
  540. "__id__": 15
  541. }
  542. ],
  543. "_prefab": {
  544. "__id__": 16
  545. },
  546. "_opacity": 255,
  547. "_color": {
  548. "__type__": "cc.Color",
  549. "r": 255,
  550. "g": 0,
  551. "b": 0,
  552. "a": 255
  553. },
  554. "_contentSize": {
  555. "__type__": "cc.Size",
  556. "width": 22.25,
  557. "height": 20
  558. },
  559. "_anchorPoint": {
  560. "__type__": "cc.Vec2",
  561. "x": 0.5,
  562. "y": 0.5
  563. },
  564. "_position": {
  565. "__type__": "cc.Vec3",
  566. "x": 56,
  567. "y": 0,
  568. "z": 0
  569. },
  570. "_scale": {
  571. "__type__": "cc.Vec3",
  572. "x": 1,
  573. "y": 1,
  574. "z": 1
  575. },
  576. "_quat": {
  577. "__type__": "cc.Quat",
  578. "x": 0,
  579. "y": 0,
  580. "z": 0,
  581. "w": 1
  582. },
  583. "_skewX": 0,
  584. "_skewY": 0,
  585. "_zIndex": 0,
  586. "_is3DNode": false,
  587. "groupIndex": 0,
  588. "_rotationX": 0,
  589. "_rotationY": 0,
  590. "_id": ""
  591. },
  592. {
  593. "__type__": "cc.Label",
  594. "_name": "",
  595. "_objFlags": 0,
  596. "node": {
  597. "__id__": 13
  598. },
  599. "_enabled": true,
  600. "_srcBlendFactor": 1,
  601. "_dstBlendFactor": 771,
  602. "_useOriginalSize": false,
  603. "_string": "15",
  604. "_N$string": "15",
  605. "_fontSize": 20,
  606. "_lineHeight": 20,
  607. "_enableWrapText": true,
  608. "_N$file": null,
  609. "_isSystemFontUsed": true,
  610. "_spacingX": 0,
  611. "_N$horizontalAlign": 0,
  612. "_N$verticalAlign": 0,
  613. "_N$fontFamily": "Arial",
  614. "_N$overflow": 0,
  615. "_id": ""
  616. },
  617. {
  618. "__type__": "cc.Animation",
  619. "_name": "",
  620. "_objFlags": 0,
  621. "node": {
  622. "__id__": 13
  623. },
  624. "_enabled": true,
  625. "_defaultClip": {
  626. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  627. },
  628. "_clips": [
  629. {
  630. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  631. }
  632. ],
  633. "playOnLoad": true,
  634. "_id": ""
  635. },
  636. {
  637. "__type__": "cc.PrefabInfo",
  638. "root": {
  639. "__id__": 1
  640. },
  641. "asset": {
  642. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  643. },
  644. "fileId": "d1fiHgV5pMDrfEqnItlhSp",
  645. "sync": false
  646. },
  647. {
  648. "__type__": "cc.Node",
  649. "_name": "New Label",
  650. "_objFlags": 0,
  651. "_parent": {
  652. "__id__": 9
  653. },
  654. "_children": [],
  655. "_active": false,
  656. "_level": 4,
  657. "_components": [
  658. {
  659. "__id__": 18
  660. },
  661. {
  662. "__id__": 19
  663. }
  664. ],
  665. "_prefab": {
  666. "__id__": 20
  667. },
  668. "_opacity": 255,
  669. "_color": {
  670. "__type__": "cc.Color",
  671. "r": 255,
  672. "g": 0,
  673. "b": 0,
  674. "a": 255
  675. },
  676. "_contentSize": {
  677. "__type__": "cc.Size",
  678. "width": 40,
  679. "height": 20
  680. },
  681. "_anchorPoint": {
  682. "__type__": "cc.Vec2",
  683. "x": 0.5,
  684. "y": 0.5
  685. },
  686. "_position": {
  687. "__type__": "cc.Vec3",
  688. "x": -47.1,
  689. "y": -20.5,
  690. "z": 0
  691. },
  692. "_scale": {
  693. "__type__": "cc.Vec3",
  694. "x": 1,
  695. "y": 1,
  696. "z": 1
  697. },
  698. "_quat": {
  699. "__type__": "cc.Quat",
  700. "x": 0,
  701. "y": 0,
  702. "z": 0,
  703. "w": 1
  704. },
  705. "_skewX": 0,
  706. "_skewY": 0,
  707. "_zIndex": 0,
  708. "_is3DNode": false,
  709. "groupIndex": 0,
  710. "_rotationX": 0,
  711. "_rotationY": 0,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.Label",
  716. "_name": "",
  717. "_objFlags": 0,
  718. "node": {
  719. "__id__": 17
  720. },
  721. "_enabled": true,
  722. "_srcBlendFactor": 1,
  723. "_dstBlendFactor": 771,
  724. "_useOriginalSize": false,
  725. "_string": "人才",
  726. "_N$string": "人才",
  727. "_fontSize": 20,
  728. "_lineHeight": 20,
  729. "_enableWrapText": true,
  730. "_N$file": null,
  731. "_isSystemFontUsed": true,
  732. "_spacingX": 0,
  733. "_N$horizontalAlign": 0,
  734. "_N$verticalAlign": 0,
  735. "_N$fontFamily": "Arial",
  736. "_N$overflow": 0,
  737. "_id": ""
  738. },
  739. {
  740. "__type__": "cc.Animation",
  741. "_name": "",
  742. "_objFlags": 0,
  743. "node": {
  744. "__id__": 17
  745. },
  746. "_enabled": true,
  747. "_defaultClip": {
  748. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  749. },
  750. "_clips": [
  751. {
  752. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  753. }
  754. ],
  755. "playOnLoad": true,
  756. "_id": ""
  757. },
  758. {
  759. "__type__": "cc.PrefabInfo",
  760. "root": {
  761. "__id__": 1
  762. },
  763. "asset": {
  764. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  765. },
  766. "fileId": "30TFEh9ENEtaSfP4X3oVUd",
  767. "sync": false
  768. },
  769. {
  770. "__type__": "cc.Node",
  771. "_name": "New Label",
  772. "_objFlags": 0,
  773. "_parent": {
  774. "__id__": 9
  775. },
  776. "_children": [],
  777. "_active": false,
  778. "_level": 4,
  779. "_components": [
  780. {
  781. "__id__": 22
  782. },
  783. {
  784. "__id__": 23
  785. }
  786. ],
  787. "_prefab": {
  788. "__id__": 24
  789. },
  790. "_opacity": 255,
  791. "_color": {
  792. "__type__": "cc.Color",
  793. "r": 255,
  794. "g": 0,
  795. "b": 0,
  796. "a": 255
  797. },
  798. "_contentSize": {
  799. "__type__": "cc.Size",
  800. "width": 40,
  801. "height": 20
  802. },
  803. "_anchorPoint": {
  804. "__type__": "cc.Vec2",
  805. "x": 0.5,
  806. "y": 0.5
  807. },
  808. "_position": {
  809. "__type__": "cc.Vec3",
  810. "x": -62.5,
  811. "y": 21,
  812. "z": 0
  813. },
  814. "_scale": {
  815. "__type__": "cc.Vec3",
  816. "x": 1,
  817. "y": 1,
  818. "z": 1
  819. },
  820. "_quat": {
  821. "__type__": "cc.Quat",
  822. "x": 0,
  823. "y": 0,
  824. "z": 0,
  825. "w": 1
  826. },
  827. "_skewX": 0,
  828. "_skewY": 0,
  829. "_zIndex": 0,
  830. "_is3DNode": false,
  831. "groupIndex": 0,
  832. "_rotationX": 0,
  833. "_rotationY": 0,
  834. "_id": ""
  835. },
  836. {
  837. "__type__": "cc.Label",
  838. "_name": "",
  839. "_objFlags": 0,
  840. "node": {
  841. "__id__": 21
  842. },
  843. "_enabled": true,
  844. "_srcBlendFactor": 1,
  845. "_dstBlendFactor": 771,
  846. "_useOriginalSize": false,
  847. "_string": "人才",
  848. "_N$string": "人才",
  849. "_fontSize": 20,
  850. "_lineHeight": 20,
  851. "_enableWrapText": true,
  852. "_N$file": null,
  853. "_isSystemFontUsed": true,
  854. "_spacingX": 0,
  855. "_N$horizontalAlign": 0,
  856. "_N$verticalAlign": 0,
  857. "_N$fontFamily": "Arial",
  858. "_N$overflow": 0,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Animation",
  863. "_name": "",
  864. "_objFlags": 0,
  865. "node": {
  866. "__id__": 21
  867. },
  868. "_enabled": true,
  869. "_defaultClip": {
  870. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  871. },
  872. "_clips": [
  873. {
  874. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  875. }
  876. ],
  877. "playOnLoad": true,
  878. "_id": ""
  879. },
  880. {
  881. "__type__": "cc.PrefabInfo",
  882. "root": {
  883. "__id__": 1
  884. },
  885. "asset": {
  886. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  887. },
  888. "fileId": "3a+VKIMcBB6pwhcHFxUS0L",
  889. "sync": false
  890. },
  891. {
  892. "__type__": "cc.Label",
  893. "_name": "",
  894. "_objFlags": 0,
  895. "node": {
  896. "__id__": 9
  897. },
  898. "_enabled": true,
  899. "_srcBlendFactor": 1,
  900. "_dstBlendFactor": 771,
  901. "_useOriginalSize": false,
  902. "_string": " 欢乐大转盘,抽奖抽到手软。\n 房产证,金币,钻石,各种建\n 筑物应有尽有。还不快来试试手气!\n 只要点击 就有机会中大奖哦!",
  903. "_N$string": " 欢乐大转盘,抽奖抽到手软。\n 房产证,金币,钻石,各种建\n 筑物应有尽有。还不快来试试手气!\n 只要点击 就有机会中大奖哦!",
  904. "_fontSize": 20,
  905. "_lineHeight": 20,
  906. "_enableWrapText": true,
  907. "_N$file": null,
  908. "_isSystemFontUsed": true,
  909. "_spacingX": 0,
  910. "_N$horizontalAlign": 0,
  911. "_N$verticalAlign": 0,
  912. "_N$fontFamily": "Arial",
  913. "_N$overflow": 0,
  914. "_id": ""
  915. },
  916. {
  917. "__type__": "cc.PrefabInfo",
  918. "root": {
  919. "__id__": 1
  920. },
  921. "asset": {
  922. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  923. },
  924. "fileId": "3dN5K+j39BUKty7MWkXNqP",
  925. "sync": false
  926. },
  927. {
  928. "__type__": "cc.Node",
  929. "_name": "richtext",
  930. "_objFlags": 0,
  931. "_parent": {
  932. "__id__": 8
  933. },
  934. "_children": [
  935. {
  936. "__id__": 28
  937. },
  938. {
  939. "__id__": 31
  940. },
  941. {
  942. "__id__": 34
  943. },
  944. {
  945. "__id__": 37
  946. }
  947. ],
  948. "_active": true,
  949. "_level": 3,
  950. "_components": [
  951. {
  952. "__id__": 40
  953. }
  954. ],
  955. "_prefab": {
  956. "__id__": 41
  957. },
  958. "_opacity": 255,
  959. "_color": {
  960. "__type__": "cc.Color",
  961. "r": 255,
  962. "g": 255,
  963. "b": 255,
  964. "a": 255
  965. },
  966. "_contentSize": {
  967. "__type__": "cc.Size",
  968. "width": 366.68,
  969. "height": 50
  970. },
  971. "_anchorPoint": {
  972. "__type__": "cc.Vec2",
  973. "x": 0.5,
  974. "y": 0.5
  975. },
  976. "_position": {
  977. "__type__": "cc.Vec3",
  978. "x": -12,
  979. "y": 67,
  980. "z": 0
  981. },
  982. "_scale": {
  983. "__type__": "cc.Vec3",
  984. "x": 1,
  985. "y": 1,
  986. "z": 1
  987. },
  988. "_quat": {
  989. "__type__": "cc.Quat",
  990. "x": 0,
  991. "y": 0,
  992. "z": 0,
  993. "w": 1
  994. },
  995. "_skewX": 0,
  996. "_skewY": 0,
  997. "_zIndex": 0,
  998. "_is3DNode": false,
  999. "groupIndex": 0,
  1000. "_rotationX": 0,
  1001. "_rotationY": 0,
  1002. "_id": ""
  1003. },
  1004. {
  1005. "__type__": "cc.PrivateNode",
  1006. "_name": "RICHTEXT_CHILD",
  1007. "_objFlags": 0,
  1008. "_parent": {
  1009. "__id__": 27
  1010. },
  1011. "_children": [],
  1012. "_active": true,
  1013. "_level": 4,
  1014. "_components": [
  1015. {
  1016. "__id__": 29
  1017. }
  1018. ],
  1019. "_prefab": {
  1020. "__id__": 30
  1021. },
  1022. "_opacity": 255,
  1023. "_color": {
  1024. "__type__": "cc.Color",
  1025. "r": 0,
  1026. "g": 0,
  1027. "b": 0,
  1028. "a": 255
  1029. },
  1030. "_contentSize": {
  1031. "__type__": "cc.Size",
  1032. "width": 337.79,
  1033. "height": 25
  1034. },
  1035. "_anchorPoint": {
  1036. "__type__": "cc.Vec2",
  1037. "x": 0,
  1038. "y": 0
  1039. },
  1040. "_position": {
  1041. "__type__": "cc.Vec3",
  1042. "x": -183.34,
  1043. "y": 0,
  1044. "z": 0
  1045. },
  1046. "_scale": {
  1047. "__type__": "cc.Vec3",
  1048. "x": 1,
  1049. "y": 1,
  1050. "z": 1
  1051. },
  1052. "_quat": {
  1053. "__type__": "cc.Quat",
  1054. "x": 0,
  1055. "y": 0,
  1056. "z": 0,
  1057. "w": 1
  1058. },
  1059. "_skewX": 0,
  1060. "_skewY": 0,
  1061. "_zIndex": -32768,
  1062. "_is3DNode": false,
  1063. "groupIndex": 0,
  1064. "_id": ""
  1065. },
  1066. {
  1067. "__type__": "cc.Label",
  1068. "_name": "",
  1069. "_objFlags": 0,
  1070. "node": {
  1071. "__id__": 28
  1072. },
  1073. "_enabled": true,
  1074. "_srcBlendFactor": 1,
  1075. "_dstBlendFactor": 771,
  1076. "_useOriginalSize": true,
  1077. "_string": " 大量金币、钻石等你来领取!",
  1078. "_N$string": " 大量金币、钻石等你来领取!",
  1079. "_fontSize": 20,
  1080. "_lineHeight": 25,
  1081. "_enableWrapText": true,
  1082. "_N$file": null,
  1083. "_isSystemFontUsed": true,
  1084. "_spacingX": 0,
  1085. "_N$horizontalAlign": 0,
  1086. "_N$verticalAlign": 1,
  1087. "_N$fontFamily": "Arial",
  1088. "_N$overflow": 0,
  1089. "_id": ""
  1090. },
  1091. {
  1092. "__type__": "cc.PrefabInfo",
  1093. "root": {
  1094. "__id__": 1
  1095. },
  1096. "asset": {
  1097. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1098. },
  1099. "fileId": "6eukidxj1ClqoIT2Y7/DXd",
  1100. "sync": false
  1101. },
  1102. {
  1103. "__type__": "cc.PrivateNode",
  1104. "_name": "RICHTEXT_CHILD",
  1105. "_objFlags": 0,
  1106. "_parent": {
  1107. "__id__": 27
  1108. },
  1109. "_children": [],
  1110. "_active": true,
  1111. "_level": 4,
  1112. "_components": [
  1113. {
  1114. "__id__": 32
  1115. }
  1116. ],
  1117. "_prefab": {
  1118. "__id__": 33
  1119. },
  1120. "_opacity": 255,
  1121. "_color": {
  1122. "__type__": "cc.Color",
  1123. "r": 0,
  1124. "g": 0,
  1125. "b": 0,
  1126. "a": 255
  1127. },
  1128. "_contentSize": {
  1129. "__type__": "cc.Size",
  1130. "width": 146.68,
  1131. "height": 25
  1132. },
  1133. "_anchorPoint": {
  1134. "__type__": "cc.Vec2",
  1135. "x": 0,
  1136. "y": 0
  1137. },
  1138. "_position": {
  1139. "__type__": "cc.Vec3",
  1140. "x": -183.34,
  1141. "y": -25,
  1142. "z": 0
  1143. },
  1144. "_scale": {
  1145. "__type__": "cc.Vec3",
  1146. "x": 1,
  1147. "y": 1,
  1148. "z": 1
  1149. },
  1150. "_quat": {
  1151. "__type__": "cc.Quat",
  1152. "x": 0,
  1153. "y": 0,
  1154. "z": 0,
  1155. "w": 1
  1156. },
  1157. "_skewX": 0,
  1158. "_skewY": 0,
  1159. "_zIndex": -32768,
  1160. "_is3DNode": false,
  1161. "groupIndex": 0,
  1162. "_id": ""
  1163. },
  1164. {
  1165. "__type__": "cc.Label",
  1166. "_name": "",
  1167. "_objFlags": 0,
  1168. "node": {
  1169. "__id__": 31
  1170. },
  1171. "_enabled": true,
  1172. "_srcBlendFactor": 1,
  1173. "_dstBlendFactor": 771,
  1174. "_useOriginalSize": true,
  1175. "_string": " 只要点击",
  1176. "_N$string": " 只要点击",
  1177. "_fontSize": 20,
  1178. "_lineHeight": 25,
  1179. "_enableWrapText": true,
  1180. "_N$file": null,
  1181. "_isSystemFontUsed": true,
  1182. "_spacingX": 0,
  1183. "_N$horizontalAlign": 0,
  1184. "_N$verticalAlign": 1,
  1185. "_N$fontFamily": "Arial",
  1186. "_N$overflow": 0,
  1187. "_id": ""
  1188. },
  1189. {
  1190. "__type__": "cc.PrefabInfo",
  1191. "root": {
  1192. "__id__": 1
  1193. },
  1194. "asset": {
  1195. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1196. },
  1197. "fileId": "c8Lps0I3BJHKVjFjT1bFg7",
  1198. "sync": false
  1199. },
  1200. {
  1201. "__type__": "cc.PrivateNode",
  1202. "_name": "RICHTEXT_CHILD",
  1203. "_objFlags": 0,
  1204. "_parent": {
  1205. "__id__": 27
  1206. },
  1207. "_children": [],
  1208. "_active": true,
  1209. "_level": 4,
  1210. "_components": [
  1211. {
  1212. "__id__": 35
  1213. }
  1214. ],
  1215. "_prefab": {
  1216. "__id__": 36
  1217. },
  1218. "_opacity": 255,
  1219. "_color": {
  1220. "__type__": "cc.Color",
  1221. "r": 255,
  1222. "g": 0,
  1223. "b": 0,
  1224. "a": 255
  1225. },
  1226. "_contentSize": {
  1227. "__type__": "cc.Size",
  1228. "width": 40,
  1229. "height": 25
  1230. },
  1231. "_anchorPoint": {
  1232. "__type__": "cc.Vec2",
  1233. "x": 0,
  1234. "y": 0
  1235. },
  1236. "_position": {
  1237. "__type__": "cc.Vec3",
  1238. "x": -36.66,
  1239. "y": -25,
  1240. "z": 0
  1241. },
  1242. "_scale": {
  1243. "__type__": "cc.Vec3",
  1244. "x": 1,
  1245. "y": 1,
  1246. "z": 1
  1247. },
  1248. "_quat": {
  1249. "__type__": "cc.Quat",
  1250. "x": 0,
  1251. "y": 0,
  1252. "z": 0,
  1253. "w": 1
  1254. },
  1255. "_skewX": 0,
  1256. "_skewY": 0,
  1257. "_zIndex": -32768,
  1258. "_is3DNode": false,
  1259. "groupIndex": 0,
  1260. "_id": ""
  1261. },
  1262. {
  1263. "__type__": "cc.Label",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "node": {
  1267. "__id__": 34
  1268. },
  1269. "_enabled": true,
  1270. "_srcBlendFactor": 1,
  1271. "_dstBlendFactor": 771,
  1272. "_useOriginalSize": true,
  1273. "_string": "转盘",
  1274. "_N$string": "转盘",
  1275. "_fontSize": 20,
  1276. "_lineHeight": 25,
  1277. "_enableWrapText": true,
  1278. "_N$file": null,
  1279. "_isSystemFontUsed": true,
  1280. "_spacingX": 0,
  1281. "_N$horizontalAlign": 0,
  1282. "_N$verticalAlign": 1,
  1283. "_N$fontFamily": "Arial",
  1284. "_N$overflow": 0,
  1285. "_id": ""
  1286. },
  1287. {
  1288. "__type__": "cc.PrefabInfo",
  1289. "root": {
  1290. "__id__": 1
  1291. },
  1292. "asset": {
  1293. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1294. },
  1295. "fileId": "79qg58BxJI7IC5RYOaQiYu",
  1296. "sync": false
  1297. },
  1298. {
  1299. "__type__": "cc.PrivateNode",
  1300. "_name": "RICHTEXT_CHILD",
  1301. "_objFlags": 0,
  1302. "_parent": {
  1303. "__id__": 27
  1304. },
  1305. "_children": [],
  1306. "_active": true,
  1307. "_level": 4,
  1308. "_components": [
  1309. {
  1310. "__id__": 38
  1311. }
  1312. ],
  1313. "_prefab": {
  1314. "__id__": 39
  1315. },
  1316. "_opacity": 255,
  1317. "_color": {
  1318. "__type__": "cc.Color",
  1319. "r": 0,
  1320. "g": 0,
  1321. "b": 0,
  1322. "a": 255
  1323. },
  1324. "_contentSize": {
  1325. "__type__": "cc.Size",
  1326. "width": 180,
  1327. "height": 25
  1328. },
  1329. "_anchorPoint": {
  1330. "__type__": "cc.Vec2",
  1331. "x": 0,
  1332. "y": 0
  1333. },
  1334. "_position": {
  1335. "__type__": "cc.Vec3",
  1336. "x": 3.3400000000000034,
  1337. "y": -25,
  1338. "z": 0
  1339. },
  1340. "_scale": {
  1341. "__type__": "cc.Vec3",
  1342. "x": 1,
  1343. "y": 1,
  1344. "z": 1
  1345. },
  1346. "_quat": {
  1347. "__type__": "cc.Quat",
  1348. "x": 0,
  1349. "y": 0,
  1350. "z": 0,
  1351. "w": 1
  1352. },
  1353. "_skewX": 0,
  1354. "_skewY": 0,
  1355. "_zIndex": -32768,
  1356. "_is3DNode": false,
  1357. "groupIndex": 0,
  1358. "_id": ""
  1359. },
  1360. {
  1361. "__type__": "cc.Label",
  1362. "_name": "",
  1363. "_objFlags": 0,
  1364. "node": {
  1365. "__id__": 37
  1366. },
  1367. "_enabled": true,
  1368. "_srcBlendFactor": 1,
  1369. "_dstBlendFactor": 771,
  1370. "_useOriginalSize": true,
  1371. "_string": "就有机会中大奖哦!",
  1372. "_N$string": "就有机会中大奖哦!",
  1373. "_fontSize": 20,
  1374. "_lineHeight": 25,
  1375. "_enableWrapText": true,
  1376. "_N$file": null,
  1377. "_isSystemFontUsed": true,
  1378. "_spacingX": 0,
  1379. "_N$horizontalAlign": 0,
  1380. "_N$verticalAlign": 1,
  1381. "_N$fontFamily": "Arial",
  1382. "_N$overflow": 0,
  1383. "_id": ""
  1384. },
  1385. {
  1386. "__type__": "cc.PrefabInfo",
  1387. "root": {
  1388. "__id__": 1
  1389. },
  1390. "asset": {
  1391. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1392. },
  1393. "fileId": "04NLC5Ir9M1YJdMq2d71/z",
  1394. "sync": false
  1395. },
  1396. {
  1397. "__type__": "cc.RichText",
  1398. "_name": "",
  1399. "_objFlags": 0,
  1400. "node": {
  1401. "__id__": 27
  1402. },
  1403. "_enabled": true,
  1404. "_N$string": "<color=#000000> 大量金币、钻石等你来领取!\n 只要点击</c><color=#FF0000>转盘</c><color=#000000>就有机会中大奖哦!</c>",
  1405. "_N$horizontalAlign": 0,
  1406. "_N$fontSize": 20,
  1407. "_N$font": null,
  1408. "_N$maxWidth": 0,
  1409. "_N$lineHeight": 25,
  1410. "_N$imageAtlas": null,
  1411. "_N$handleTouchEvent": true,
  1412. "_id": ""
  1413. },
  1414. {
  1415. "__type__": "cc.PrefabInfo",
  1416. "root": {
  1417. "__id__": 1
  1418. },
  1419. "asset": {
  1420. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1421. },
  1422. "fileId": "e16v0QOGZKKad9iyktTm4A",
  1423. "sync": false
  1424. },
  1425. {
  1426. "__type__": "cc.Sprite",
  1427. "_name": "",
  1428. "_objFlags": 0,
  1429. "node": {
  1430. "__id__": 8
  1431. },
  1432. "_enabled": true,
  1433. "_srcBlendFactor": 770,
  1434. "_dstBlendFactor": 771,
  1435. "_spriteFrame": {
  1436. "__uuid__": "c059390c-7d3d-429f-8b94-a784ad1f518f"
  1437. },
  1438. "_type": 0,
  1439. "_sizeMode": 0,
  1440. "_fillType": 0,
  1441. "_fillCenter": {
  1442. "__type__": "cc.Vec2",
  1443. "x": 0,
  1444. "y": 0
  1445. },
  1446. "_fillStart": 0,
  1447. "_fillRange": 0,
  1448. "_isTrimmedMode": true,
  1449. "_state": 0,
  1450. "_atlas": null,
  1451. "_id": ""
  1452. },
  1453. {
  1454. "__type__": "cc.PrefabInfo",
  1455. "root": {
  1456. "__id__": 1
  1457. },
  1458. "asset": {
  1459. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1460. },
  1461. "fileId": "501io/wxdC47go2RnMFVED",
  1462. "sync": false
  1463. },
  1464. {
  1465. "__type__": "cc.Node",
  1466. "_name": "SureBtn",
  1467. "_objFlags": 0,
  1468. "_parent": {
  1469. "__id__": 1
  1470. },
  1471. "_children": [
  1472. {
  1473. "__id__": 45
  1474. }
  1475. ],
  1476. "_active": true,
  1477. "_level": 2,
  1478. "_components": [
  1479. {
  1480. "__id__": 48
  1481. },
  1482. {
  1483. "__id__": 49
  1484. }
  1485. ],
  1486. "_prefab": {
  1487. "__id__": 50
  1488. },
  1489. "_opacity": 255,
  1490. "_color": {
  1491. "__type__": "cc.Color",
  1492. "r": 255,
  1493. "g": 255,
  1494. "b": 255,
  1495. "a": 255
  1496. },
  1497. "_contentSize": {
  1498. "__type__": "cc.Size",
  1499. "width": 82,
  1500. "height": 37
  1501. },
  1502. "_anchorPoint": {
  1503. "__type__": "cc.Vec2",
  1504. "x": 0.5,
  1505. "y": 0.5
  1506. },
  1507. "_position": {
  1508. "__type__": "cc.Vec3",
  1509. "x": 0,
  1510. "y": -270,
  1511. "z": 0
  1512. },
  1513. "_scale": {
  1514. "__type__": "cc.Vec3",
  1515. "x": 2,
  1516. "y": 2,
  1517. "z": 2
  1518. },
  1519. "_quat": {
  1520. "__type__": "cc.Quat",
  1521. "x": 0,
  1522. "y": 0,
  1523. "z": 0,
  1524. "w": 1
  1525. },
  1526. "_skewX": 0,
  1527. "_skewY": 0,
  1528. "_zIndex": 0,
  1529. "_is3DNode": false,
  1530. "groupIndex": 0,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.Node",
  1535. "_name": "New Label",
  1536. "_objFlags": 0,
  1537. "_parent": {
  1538. "__id__": 44
  1539. },
  1540. "_children": [],
  1541. "_active": true,
  1542. "_level": 3,
  1543. "_components": [
  1544. {
  1545. "__id__": 46
  1546. }
  1547. ],
  1548. "_prefab": {
  1549. "__id__": 47
  1550. },
  1551. "_opacity": 255,
  1552. "_color": {
  1553. "__type__": "cc.Color",
  1554. "r": 0,
  1555. "g": 0,
  1556. "b": 0,
  1557. "a": 255
  1558. },
  1559. "_contentSize": {
  1560. "__type__": "cc.Size",
  1561. "width": 60,
  1562. "height": 20
  1563. },
  1564. "_anchorPoint": {
  1565. "__type__": "cc.Vec2",
  1566. "x": 0.5,
  1567. "y": 0.5
  1568. },
  1569. "_position": {
  1570. "__type__": "cc.Vec3",
  1571. "x": -1,
  1572. "y": -2,
  1573. "z": 0
  1574. },
  1575. "_scale": {
  1576. "__type__": "cc.Vec3",
  1577. "x": 1,
  1578. "y": 1,
  1579. "z": 1
  1580. },
  1581. "_quat": {
  1582. "__type__": "cc.Quat",
  1583. "x": 0,
  1584. "y": 0,
  1585. "z": 0,
  1586. "w": 1
  1587. },
  1588. "_skewX": 0,
  1589. "_skewY": 0,
  1590. "_zIndex": 0,
  1591. "_is3DNode": false,
  1592. "groupIndex": 0,
  1593. "_rotationX": 0,
  1594. "_rotationY": 0,
  1595. "_id": ""
  1596. },
  1597. {
  1598. "__type__": "cc.Label",
  1599. "_name": "",
  1600. "_objFlags": 0,
  1601. "node": {
  1602. "__id__": 45
  1603. },
  1604. "_enabled": true,
  1605. "_srcBlendFactor": 1,
  1606. "_dstBlendFactor": 771,
  1607. "_useOriginalSize": false,
  1608. "_string": "下一步",
  1609. "_N$string": "下一步",
  1610. "_fontSize": 20,
  1611. "_lineHeight": 20,
  1612. "_enableWrapText": true,
  1613. "_N$file": null,
  1614. "_isSystemFontUsed": true,
  1615. "_spacingX": 0,
  1616. "_N$horizontalAlign": 1,
  1617. "_N$verticalAlign": 1,
  1618. "_N$fontFamily": "Arial",
  1619. "_N$overflow": 0,
  1620. "_id": ""
  1621. },
  1622. {
  1623. "__type__": "cc.PrefabInfo",
  1624. "root": {
  1625. "__id__": 1
  1626. },
  1627. "asset": {
  1628. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1629. },
  1630. "fileId": "990L7P4tdLAp0GriQUxBxo",
  1631. "sync": false
  1632. },
  1633. {
  1634. "__type__": "cc.Sprite",
  1635. "_name": "",
  1636. "_objFlags": 0,
  1637. "node": {
  1638. "__id__": 44
  1639. },
  1640. "_enabled": true,
  1641. "_srcBlendFactor": 770,
  1642. "_dstBlendFactor": 771,
  1643. "_spriteFrame": {
  1644. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  1645. },
  1646. "_type": 0,
  1647. "_sizeMode": 0,
  1648. "_fillType": 0,
  1649. "_fillCenter": {
  1650. "__type__": "cc.Vec2",
  1651. "x": 0,
  1652. "y": 0
  1653. },
  1654. "_fillStart": 0,
  1655. "_fillRange": 0,
  1656. "_isTrimmedMode": true,
  1657. "_state": 0,
  1658. "_atlas": null,
  1659. "_id": ""
  1660. },
  1661. {
  1662. "__type__": "cc.Button",
  1663. "_name": "",
  1664. "_objFlags": 0,
  1665. "node": {
  1666. "__id__": 44
  1667. },
  1668. "_enabled": true,
  1669. "duration": 0.1,
  1670. "zoomScale": 1.2,
  1671. "clickEvents": [],
  1672. "_N$interactable": true,
  1673. "_N$enableAutoGrayEffect": false,
  1674. "_N$transition": 3,
  1675. "transition": 3,
  1676. "_N$normalColor": {
  1677. "__type__": "cc.Color",
  1678. "r": 214,
  1679. "g": 214,
  1680. "b": 214,
  1681. "a": 255
  1682. },
  1683. "_N$pressedColor": {
  1684. "__type__": "cc.Color",
  1685. "r": 211,
  1686. "g": 211,
  1687. "b": 211,
  1688. "a": 255
  1689. },
  1690. "pressedColor": {
  1691. "__type__": "cc.Color",
  1692. "r": 211,
  1693. "g": 211,
  1694. "b": 211,
  1695. "a": 255
  1696. },
  1697. "_N$hoverColor": {
  1698. "__type__": "cc.Color",
  1699. "r": 255,
  1700. "g": 255,
  1701. "b": 255,
  1702. "a": 255
  1703. },
  1704. "hoverColor": {
  1705. "__type__": "cc.Color",
  1706. "r": 255,
  1707. "g": 255,
  1708. "b": 255,
  1709. "a": 255
  1710. },
  1711. "_N$disabledColor": {
  1712. "__type__": "cc.Color",
  1713. "r": 124,
  1714. "g": 124,
  1715. "b": 124,
  1716. "a": 255
  1717. },
  1718. "_N$normalSprite": null,
  1719. "_N$pressedSprite": null,
  1720. "pressedSprite": null,
  1721. "_N$hoverSprite": null,
  1722. "hoverSprite": null,
  1723. "_N$disabledSprite": null,
  1724. "_N$target": null,
  1725. "_id": ""
  1726. },
  1727. {
  1728. "__type__": "cc.PrefabInfo",
  1729. "root": {
  1730. "__id__": 1
  1731. },
  1732. "asset": {
  1733. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1734. },
  1735. "fileId": "11aqhNP35GloyvMjd3pU6d",
  1736. "sync": false
  1737. },
  1738. {
  1739. "__type__": "cc.Node",
  1740. "_name": "info",
  1741. "_objFlags": 0,
  1742. "_parent": {
  1743. "__id__": 1
  1744. },
  1745. "_children": [
  1746. {
  1747. "__id__": 52
  1748. },
  1749. {
  1750. "__id__": 55
  1751. }
  1752. ],
  1753. "_active": false,
  1754. "_level": 2,
  1755. "_components": [
  1756. {
  1757. "__id__": 59
  1758. }
  1759. ],
  1760. "_prefab": {
  1761. "__id__": 60
  1762. },
  1763. "_opacity": 255,
  1764. "_color": {
  1765. "__type__": "cc.Color",
  1766. "r": 255,
  1767. "g": 255,
  1768. "b": 255,
  1769. "a": 255
  1770. },
  1771. "_contentSize": {
  1772. "__type__": "cc.Size",
  1773. "width": 82,
  1774. "height": 37
  1775. },
  1776. "_anchorPoint": {
  1777. "__type__": "cc.Vec2",
  1778. "x": 0.5,
  1779. "y": 0.5
  1780. },
  1781. "_position": {
  1782. "__type__": "cc.Vec3",
  1783. "x": 0,
  1784. "y": -270,
  1785. "z": 0
  1786. },
  1787. "_scale": {
  1788. "__type__": "cc.Vec3",
  1789. "x": 2,
  1790. "y": 2,
  1791. "z": 1
  1792. },
  1793. "_quat": {
  1794. "__type__": "cc.Quat",
  1795. "x": 0,
  1796. "y": 0,
  1797. "z": 0,
  1798. "w": 1
  1799. },
  1800. "_skewX": 0,
  1801. "_skewY": 0,
  1802. "_zIndex": 0,
  1803. "_is3DNode": false,
  1804. "groupIndex": 0,
  1805. "_id": ""
  1806. },
  1807. {
  1808. "__type__": "cc.Node",
  1809. "_name": "New Label",
  1810. "_objFlags": 0,
  1811. "_parent": {
  1812. "__id__": 51
  1813. },
  1814. "_children": [],
  1815. "_active": true,
  1816. "_level": 3,
  1817. "_components": [
  1818. {
  1819. "__id__": 53
  1820. }
  1821. ],
  1822. "_prefab": {
  1823. "__id__": 54
  1824. },
  1825. "_opacity": 255,
  1826. "_color": {
  1827. "__type__": "cc.Color",
  1828. "r": 0,
  1829. "g": 0,
  1830. "b": 0,
  1831. "a": 255
  1832. },
  1833. "_contentSize": {
  1834. "__type__": "cc.Size",
  1835. "width": 60,
  1836. "height": 20
  1837. },
  1838. "_anchorPoint": {
  1839. "__type__": "cc.Vec2",
  1840. "x": 0.5,
  1841. "y": 0.5
  1842. },
  1843. "_position": {
  1844. "__type__": "cc.Vec3",
  1845. "x": -1,
  1846. "y": -2,
  1847. "z": 0
  1848. },
  1849. "_scale": {
  1850. "__type__": "cc.Vec3",
  1851. "x": 1,
  1852. "y": 1,
  1853. "z": 1
  1854. },
  1855. "_quat": {
  1856. "__type__": "cc.Quat",
  1857. "x": 0,
  1858. "y": 0,
  1859. "z": 0,
  1860. "w": 1
  1861. },
  1862. "_skewX": 0,
  1863. "_skewY": 0,
  1864. "_zIndex": 0,
  1865. "_is3DNode": false,
  1866. "groupIndex": 0,
  1867. "_rotationX": 0,
  1868. "_rotationY": 0,
  1869. "_id": ""
  1870. },
  1871. {
  1872. "__type__": "cc.Label",
  1873. "_name": "",
  1874. "_objFlags": 0,
  1875. "node": {
  1876. "__id__": 52
  1877. },
  1878. "_enabled": true,
  1879. "_srcBlendFactor": 1,
  1880. "_dstBlendFactor": 771,
  1881. "_useOriginalSize": false,
  1882. "_string": "下一步",
  1883. "_N$string": "下一步",
  1884. "_fontSize": 20,
  1885. "_lineHeight": 20,
  1886. "_enableWrapText": true,
  1887. "_N$file": null,
  1888. "_isSystemFontUsed": true,
  1889. "_spacingX": 0,
  1890. "_N$horizontalAlign": 1,
  1891. "_N$verticalAlign": 1,
  1892. "_N$fontFamily": "Arial",
  1893. "_N$overflow": 0,
  1894. "_id": ""
  1895. },
  1896. {
  1897. "__type__": "cc.PrefabInfo",
  1898. "root": {
  1899. "__id__": 1
  1900. },
  1901. "asset": {
  1902. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  1903. },
  1904. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  1905. "sync": false
  1906. },
  1907. {
  1908. "__type__": "cc.Node",
  1909. "_name": "SmallArrow",
  1910. "_objFlags": 0,
  1911. "_parent": {
  1912. "__id__": 51
  1913. },
  1914. "_children": [],
  1915. "_active": false,
  1916. "_level": 3,
  1917. "_components": [
  1918. {
  1919. "__id__": 56
  1920. },
  1921. {
  1922. "__id__": 57
  1923. }
  1924. ],
  1925. "_prefab": {
  1926. "__id__": 58
  1927. },
  1928. "_opacity": 255,
  1929. "_color": {
  1930. "__type__": "cc.Color",
  1931. "r": 255,
  1932. "g": 255,
  1933. "b": 255,
  1934. "a": 255
  1935. },
  1936. "_contentSize": {
  1937. "__type__": "cc.Size",
  1938. "width": 50,
  1939. "height": 30
  1940. },
  1941. "_anchorPoint": {
  1942. "__type__": "cc.Vec2",
  1943. "x": 0.5,
  1944. "y": 0.5
  1945. },
  1946. "_position": {
  1947. "__type__": "cc.Vec3",
  1948. "x": 143,
  1949. "y": -74,
  1950. "z": 0
  1951. },
  1952. "_scale": {
  1953. "__type__": "cc.Vec3",
  1954. "x": 1,
  1955. "y": 1,
  1956. "z": 1
  1957. },
  1958. "_quat": {
  1959. "__type__": "cc.Quat",
  1960. "x": 0,
  1961. "y": 0,
  1962. "z": 0,
  1963. "w": 1
  1964. },
  1965. "_skewX": 0,
  1966. "_skewY": 0,
  1967. "_zIndex": 0,
  1968. "_is3DNode": false,
  1969. "groupIndex": 0,
  1970. "_id": ""
  1971. },
  1972. {
  1973. "__type__": "cc.Sprite",
  1974. "_name": "",
  1975. "_objFlags": 0,
  1976. "node": {
  1977. "__id__": 55
  1978. },
  1979. "_enabled": true,
  1980. "_srcBlendFactor": 770,
  1981. "_dstBlendFactor": 771,
  1982. "_spriteFrame": {
  1983. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  1984. },
  1985. "_type": 0,
  1986. "_sizeMode": 1,
  1987. "_fillType": 0,
  1988. "_fillCenter": {
  1989. "__type__": "cc.Vec2",
  1990. "x": 0,
  1991. "y": 0
  1992. },
  1993. "_fillStart": 0,
  1994. "_fillRange": 0,
  1995. "_isTrimmedMode": true,
  1996. "_state": 0,
  1997. "_atlas": null,
  1998. "_id": ""
  1999. },
  2000. {
  2001. "__type__": "cc.Animation",
  2002. "_name": "",
  2003. "_objFlags": 0,
  2004. "node": {
  2005. "__id__": 55
  2006. },
  2007. "_enabled": true,
  2008. "_defaultClip": {
  2009. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2010. },
  2011. "_clips": [
  2012. {
  2013. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2014. }
  2015. ],
  2016. "playOnLoad": true,
  2017. "_id": ""
  2018. },
  2019. {
  2020. "__type__": "cc.PrefabInfo",
  2021. "root": {
  2022. "__id__": 1
  2023. },
  2024. "asset": {
  2025. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  2026. },
  2027. "fileId": "e82VTNZItIOqz1xLHrldf9",
  2028. "sync": false
  2029. },
  2030. {
  2031. "__type__": "cc.Sprite",
  2032. "_name": "",
  2033. "_objFlags": 0,
  2034. "node": {
  2035. "__id__": 51
  2036. },
  2037. "_enabled": true,
  2038. "_srcBlendFactor": 770,
  2039. "_dstBlendFactor": 771,
  2040. "_spriteFrame": {
  2041. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  2042. },
  2043. "_type": 0,
  2044. "_sizeMode": 1,
  2045. "_fillType": 0,
  2046. "_fillCenter": {
  2047. "__type__": "cc.Vec2",
  2048. "x": 0,
  2049. "y": 0
  2050. },
  2051. "_fillStart": 0,
  2052. "_fillRange": 0,
  2053. "_isTrimmedMode": true,
  2054. "_state": 0,
  2055. "_atlas": null,
  2056. "_id": ""
  2057. },
  2058. {
  2059. "__type__": "cc.PrefabInfo",
  2060. "root": {
  2061. "__id__": 1
  2062. },
  2063. "asset": {
  2064. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  2065. },
  2066. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  2067. "sync": false
  2068. },
  2069. {
  2070. "__type__": "cc.Node",
  2071. "_name": "richman",
  2072. "_objFlags": 0,
  2073. "_parent": {
  2074. "__id__": 1
  2075. },
  2076. "_children": [],
  2077. "_active": true,
  2078. "_level": 2,
  2079. "_components": [
  2080. {
  2081. "__id__": 62
  2082. }
  2083. ],
  2084. "_prefab": {
  2085. "__id__": 63
  2086. },
  2087. "_opacity": 255,
  2088. "_color": {
  2089. "__type__": "cc.Color",
  2090. "r": 255,
  2091. "g": 255,
  2092. "b": 255,
  2093. "a": 255
  2094. },
  2095. "_contentSize": {
  2096. "__type__": "cc.Size",
  2097. "width": 142,
  2098. "height": 352
  2099. },
  2100. "_anchorPoint": {
  2101. "__type__": "cc.Vec2",
  2102. "x": 0.5,
  2103. "y": 0.5
  2104. },
  2105. "_position": {
  2106. "__type__": "cc.Vec3",
  2107. "x": -166,
  2108. "y": -12,
  2109. "z": 0
  2110. },
  2111. "_scale": {
  2112. "__type__": "cc.Vec3",
  2113. "x": 1,
  2114. "y": 1,
  2115. "z": 1
  2116. },
  2117. "_quat": {
  2118. "__type__": "cc.Quat",
  2119. "x": 0,
  2120. "y": 0,
  2121. "z": 0,
  2122. "w": 1
  2123. },
  2124. "_skewX": 0,
  2125. "_skewY": 0,
  2126. "_zIndex": 0,
  2127. "_is3DNode": false,
  2128. "groupIndex": 0,
  2129. "_id": ""
  2130. },
  2131. {
  2132. "__type__": "cc.Sprite",
  2133. "_name": "",
  2134. "_objFlags": 0,
  2135. "node": {
  2136. "__id__": 61
  2137. },
  2138. "_enabled": true,
  2139. "_srcBlendFactor": 770,
  2140. "_dstBlendFactor": 771,
  2141. "_spriteFrame": {
  2142. "__uuid__": "0ca9ab35-d23c-4e25-8cc0-b29c97940a69"
  2143. },
  2144. "_type": 0,
  2145. "_sizeMode": 1,
  2146. "_fillType": 0,
  2147. "_fillCenter": {
  2148. "__type__": "cc.Vec2",
  2149. "x": 0,
  2150. "y": 0
  2151. },
  2152. "_fillStart": 0,
  2153. "_fillRange": 0,
  2154. "_isTrimmedMode": true,
  2155. "_state": 0,
  2156. "_atlas": null,
  2157. "_id": ""
  2158. },
  2159. {
  2160. "__type__": "cc.PrefabInfo",
  2161. "root": {
  2162. "__id__": 1
  2163. },
  2164. "asset": {
  2165. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  2166. },
  2167. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  2168. "sync": false
  2169. },
  2170. {
  2171. "__type__": "cc.PrefabInfo",
  2172. "root": {
  2173. "__id__": 1
  2174. },
  2175. "asset": {
  2176. "__uuid__": "b6a384d4-c043-4f2c-9e85-85e62f6e4960"
  2177. },
  2178. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  2179. "sync": false
  2180. }
  2181. ]