taskPrefab8.prefab 36 KB

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