taskPrefab4.prefab 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415
  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__": 53
  31. },
  32. {
  33. "__id__": 57
  34. },
  35. {
  36. "__id__": 67
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 70
  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__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  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__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  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__": 24
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 2,
  294. "_components": [
  295. {
  296. "__id__": 51
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 52
  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": 400,
  313. "height": 250
  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": 109,
  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__": 16
  364. },
  365. {
  366. "__id__": 19
  367. }
  368. ],
  369. "_active": false,
  370. "_level": 3,
  371. "_components": [
  372. {
  373. "__id__": 22
  374. }
  375. ],
  376. "_prefab": {
  377. "__id__": 23
  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": 446.7,
  390. "height": 120
  391. },
  392. "_anchorPoint": {
  393. "__type__": "cc.Vec2",
  394. "x": 0.5,
  395. "y": 0.5
  396. },
  397. "_position": {
  398. "__type__": "cc.Vec3",
  399. "x": -4,
  400. "y": 39,
  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": -128,
  464. "y": 11,
  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__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  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": true,
  534. "_level": 4,
  535. "_components": [
  536. {
  537. "__id__": 14
  538. }
  539. ],
  540. "_prefab": {
  541. "__id__": 15
  542. },
  543. "_opacity": 255,
  544. "_color": {
  545. "__type__": "cc.Color",
  546. "r": 255,
  547. "g": 0,
  548. "b": 0,
  549. "a": 255
  550. },
  551. "_contentSize": {
  552. "__type__": "cc.Size",
  553. "width": 40,
  554. "height": 20
  555. },
  556. "_anchorPoint": {
  557. "__type__": "cc.Vec2",
  558. "x": 0.5,
  559. "y": 0.5
  560. },
  561. "_position": {
  562. "__type__": "cc.Vec3",
  563. "x": -84,
  564. "y": -31,
  565. "z": 0
  566. },
  567. "_scale": {
  568. "__type__": "cc.Vec3",
  569. "x": 1,
  570. "y": 1,
  571. "z": 1
  572. },
  573. "_quat": {
  574. "__type__": "cc.Quat",
  575. "x": 0,
  576. "y": 0,
  577. "z": 0,
  578. "w": 1
  579. },
  580. "_skewX": 0,
  581. "_skewY": 0,
  582. "_zIndex": 0,
  583. "_is3DNode": false,
  584. "groupIndex": 0,
  585. "_rotationX": 0,
  586. "_rotationY": 0,
  587. "_id": ""
  588. },
  589. {
  590. "__type__": "cc.Label",
  591. "_name": "",
  592. "_objFlags": 0,
  593. "node": {
  594. "__id__": 13
  595. },
  596. "_enabled": true,
  597. "_srcBlendFactor": 1,
  598. "_dstBlendFactor": 771,
  599. "_useOriginalSize": false,
  600. "_string": "管理",
  601. "_N$string": "管理",
  602. "_fontSize": 20,
  603. "_lineHeight": 20,
  604. "_enableWrapText": true,
  605. "_N$file": null,
  606. "_isSystemFontUsed": true,
  607. "_spacingX": 0,
  608. "_N$horizontalAlign": 0,
  609. "_N$verticalAlign": 0,
  610. "_N$fontFamily": "Arial",
  611. "_N$overflow": 0,
  612. "_id": ""
  613. },
  614. {
  615. "__type__": "cc.PrefabInfo",
  616. "root": {
  617. "__id__": 1
  618. },
  619. "asset": {
  620. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  621. },
  622. "fileId": "d1fiHgV5pMDrfEqnItlhSp",
  623. "sync": false
  624. },
  625. {
  626. "__type__": "cc.Node",
  627. "_name": "New Label",
  628. "_objFlags": 0,
  629. "_parent": {
  630. "__id__": 9
  631. },
  632. "_children": [],
  633. "_active": true,
  634. "_level": 4,
  635. "_components": [
  636. {
  637. "__id__": 17
  638. }
  639. ],
  640. "_prefab": {
  641. "__id__": 18
  642. },
  643. "_opacity": 255,
  644. "_color": {
  645. "__type__": "cc.Color",
  646. "r": 255,
  647. "g": 0,
  648. "b": 0,
  649. "a": 255
  650. },
  651. "_contentSize": {
  652. "__type__": "cc.Size",
  653. "width": 40,
  654. "height": 20
  655. },
  656. "_anchorPoint": {
  657. "__type__": "cc.Vec2",
  658. "x": 0.5,
  659. "y": 0.5
  660. },
  661. "_position": {
  662. "__type__": "cc.Vec3",
  663. "x": 69,
  664. "y": -30,
  665. "z": 0
  666. },
  667. "_scale": {
  668. "__type__": "cc.Vec3",
  669. "x": 1,
  670. "y": 1,
  671. "z": 1
  672. },
  673. "_quat": {
  674. "__type__": "cc.Quat",
  675. "x": 0,
  676. "y": 0,
  677. "z": 0,
  678. "w": 1
  679. },
  680. "_skewX": 0,
  681. "_skewY": 0,
  682. "_zIndex": 0,
  683. "_is3DNode": false,
  684. "groupIndex": 0,
  685. "_rotationX": 0,
  686. "_rotationY": 0,
  687. "_id": ""
  688. },
  689. {
  690. "__type__": "cc.Label",
  691. "_name": "",
  692. "_objFlags": 0,
  693. "node": {
  694. "__id__": 16
  695. },
  696. "_enabled": true,
  697. "_srcBlendFactor": 1,
  698. "_dstBlendFactor": 771,
  699. "_useOriginalSize": false,
  700. "_string": "人才",
  701. "_N$string": "人才",
  702. "_fontSize": 20,
  703. "_lineHeight": 20,
  704. "_enableWrapText": true,
  705. "_N$file": null,
  706. "_isSystemFontUsed": true,
  707. "_spacingX": 0,
  708. "_N$horizontalAlign": 0,
  709. "_N$verticalAlign": 0,
  710. "_N$fontFamily": "Arial",
  711. "_N$overflow": 0,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.PrefabInfo",
  716. "root": {
  717. "__id__": 1
  718. },
  719. "asset": {
  720. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  721. },
  722. "fileId": "30TFEh9ENEtaSfP4X3oVUd",
  723. "sync": false
  724. },
  725. {
  726. "__type__": "cc.Node",
  727. "_name": "New Label",
  728. "_objFlags": 0,
  729. "_parent": {
  730. "__id__": 9
  731. },
  732. "_children": [],
  733. "_active": true,
  734. "_level": 4,
  735. "_components": [
  736. {
  737. "__id__": 20
  738. }
  739. ],
  740. "_prefab": {
  741. "__id__": 21
  742. },
  743. "_opacity": 255,
  744. "_color": {
  745. "__type__": "cc.Color",
  746. "r": 255,
  747. "g": 0,
  748. "b": 0,
  749. "a": 255
  750. },
  751. "_contentSize": {
  752. "__type__": "cc.Size",
  753. "width": 40,
  754. "height": 20
  755. },
  756. "_anchorPoint": {
  757. "__type__": "cc.Vec2",
  758. "x": 0.5,
  759. "y": 0.5
  760. },
  761. "_position": {
  762. "__type__": "cc.Vec3",
  763. "x": -4,
  764. "y": -10,
  765. "z": 0
  766. },
  767. "_scale": {
  768. "__type__": "cc.Vec3",
  769. "x": 1,
  770. "y": 1,
  771. "z": 1
  772. },
  773. "_quat": {
  774. "__type__": "cc.Quat",
  775. "x": 0,
  776. "y": 0,
  777. "z": 0,
  778. "w": 1
  779. },
  780. "_skewX": 0,
  781. "_skewY": 0,
  782. "_zIndex": 0,
  783. "_is3DNode": false,
  784. "groupIndex": 0,
  785. "_rotationX": 0,
  786. "_rotationY": 0,
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.Label",
  791. "_name": "",
  792. "_objFlags": 0,
  793. "node": {
  794. "__id__": 19
  795. },
  796. "_enabled": true,
  797. "_srcBlendFactor": 1,
  798. "_dstBlendFactor": 771,
  799. "_useOriginalSize": false,
  800. "_string": "人才",
  801. "_N$string": "人才",
  802. "_fontSize": 20,
  803. "_lineHeight": 20,
  804. "_enableWrapText": true,
  805. "_N$file": null,
  806. "_isSystemFontUsed": true,
  807. "_spacingX": 0,
  808. "_N$horizontalAlign": 0,
  809. "_N$verticalAlign": 0,
  810. "_N$fontFamily": "Arial",
  811. "_N$overflow": 0,
  812. "_id": ""
  813. },
  814. {
  815. "__type__": "cc.PrefabInfo",
  816. "root": {
  817. "__id__": 1
  818. },
  819. "asset": {
  820. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  821. },
  822. "fileId": "3a+VKIMcBB6pwhcHFxUS0L",
  823. "sync": false
  824. },
  825. {
  826. "__type__": "cc.Label",
  827. "_name": "",
  828. "_objFlags": 0,
  829. "node": {
  830. "__id__": 9
  831. },
  832. "_enabled": true,
  833. "_srcBlendFactor": 1,
  834. "_dstBlendFactor": 771,
  835. "_useOriginalSize": false,
  836. "_string": " 哎呀!好像赚钱的速度\n 好慢啊!这样什么时候可以成为\n !不行!现在有更多的金币了\n 应该招聘更多的 来扩大事业 点击 \n 在 栏目里招聘\n 更多的员工吧。",
  837. "_N$string": " 哎呀!好像赚钱的速度\n 好慢啊!这样什么时候可以成为\n !不行!现在有更多的金币了\n 应该招聘更多的 来扩大事业 点击 \n 在 栏目里招聘\n 更多的员工吧。",
  838. "_fontSize": 20,
  839. "_lineHeight": 20,
  840. "_enableWrapText": true,
  841. "_N$file": null,
  842. "_isSystemFontUsed": true,
  843. "_spacingX": 0,
  844. "_N$horizontalAlign": 0,
  845. "_N$verticalAlign": 0,
  846. "_N$fontFamily": "Arial",
  847. "_N$overflow": 0,
  848. "_id": ""
  849. },
  850. {
  851. "__type__": "cc.PrefabInfo",
  852. "root": {
  853. "__id__": 1
  854. },
  855. "asset": {
  856. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  857. },
  858. "fileId": "3dN5K+j39BUKty7MWkXNqP",
  859. "sync": false
  860. },
  861. {
  862. "__type__": "cc.Node",
  863. "_name": "richtext",
  864. "_objFlags": 0,
  865. "_parent": {
  866. "__id__": 8
  867. },
  868. "_children": [
  869. {
  870. "__id__": 25
  871. },
  872. {
  873. "__id__": 28
  874. },
  875. {
  876. "__id__": 31
  877. },
  878. {
  879. "__id__": 34
  880. },
  881. {
  882. "__id__": 37
  883. },
  884. {
  885. "__id__": 40
  886. },
  887. {
  888. "__id__": 43
  889. },
  890. {
  891. "__id__": 46
  892. }
  893. ],
  894. "_active": true,
  895. "_level": 3,
  896. "_components": [
  897. {
  898. "__id__": 49
  899. }
  900. ],
  901. "_prefab": {
  902. "__id__": 50
  903. },
  904. "_opacity": 255,
  905. "_color": {
  906. "__type__": "cc.Color",
  907. "r": 255,
  908. "g": 255,
  909. "b": 255,
  910. "a": 255
  911. },
  912. "_contentSize": {
  913. "__type__": "cc.Size",
  914. "width": 234,
  915. "height": 88
  916. },
  917. "_anchorPoint": {
  918. "__type__": "cc.Vec2",
  919. "x": 0.5,
  920. "y": 0.5
  921. },
  922. "_position": {
  923. "__type__": "cc.Vec3",
  924. "x": 0,
  925. "y": 41.2,
  926. "z": 0
  927. },
  928. "_scale": {
  929. "__type__": "cc.Vec3",
  930. "x": 1,
  931. "y": 1,
  932. "z": 1
  933. },
  934. "_quat": {
  935. "__type__": "cc.Quat",
  936. "x": 0,
  937. "y": 0,
  938. "z": 0,
  939. "w": 1
  940. },
  941. "_skewX": 0,
  942. "_skewY": 0,
  943. "_zIndex": 0,
  944. "_is3DNode": false,
  945. "groupIndex": 0,
  946. "_rotationX": 0,
  947. "_rotationY": 0,
  948. "_id": ""
  949. },
  950. {
  951. "__type__": "cc.PrivateNode",
  952. "_name": "RICHTEXT_CHILD",
  953. "_objFlags": 0,
  954. "_parent": {
  955. "__id__": 24
  956. },
  957. "_children": [],
  958. "_active": true,
  959. "_level": 4,
  960. "_components": [
  961. {
  962. "__id__": 26
  963. }
  964. ],
  965. "_prefab": {
  966. "__id__": 27
  967. },
  968. "_opacity": 255,
  969. "_color": {
  970. "__type__": "cc.Color",
  971. "r": 0,
  972. "g": 0,
  973. "b": 0,
  974. "a": 255
  975. },
  976. "_contentSize": {
  977. "__type__": "cc.Size",
  978. "width": 230.01,
  979. "height": 22
  980. },
  981. "_anchorPoint": {
  982. "__type__": "cc.Vec2",
  983. "x": 0,
  984. "y": 0
  985. },
  986. "_position": {
  987. "__type__": "cc.Vec3",
  988. "x": -117,
  989. "y": 22,
  990. "z": 0
  991. },
  992. "_scale": {
  993. "__type__": "cc.Vec3",
  994. "x": 1,
  995. "y": 1,
  996. "z": 1
  997. },
  998. "_quat": {
  999. "__type__": "cc.Quat",
  1000. "x": 0,
  1001. "y": 0,
  1002. "z": 0,
  1003. "w": 1
  1004. },
  1005. "_skewX": 0,
  1006. "_skewY": 0,
  1007. "_zIndex": -32768,
  1008. "_is3DNode": false,
  1009. "groupIndex": 0,
  1010. "_id": ""
  1011. },
  1012. {
  1013. "__type__": "cc.Label",
  1014. "_name": "",
  1015. "_objFlags": 0,
  1016. "node": {
  1017. "__id__": 25
  1018. },
  1019. "_enabled": true,
  1020. "_srcBlendFactor": 1,
  1021. "_dstBlendFactor": 771,
  1022. "_useOriginalSize": true,
  1023. "_string": " 合理利用人力资源,可",
  1024. "_N$string": " 合理利用人力资源,可",
  1025. "_fontSize": 18,
  1026. "_lineHeight": 22,
  1027. "_enableWrapText": true,
  1028. "_N$file": null,
  1029. "_isSystemFontUsed": true,
  1030. "_spacingX": 0,
  1031. "_N$horizontalAlign": 0,
  1032. "_N$verticalAlign": 1,
  1033. "_N$fontFamily": "Arial",
  1034. "_N$overflow": 0,
  1035. "_id": ""
  1036. },
  1037. {
  1038. "__type__": "cc.PrefabInfo",
  1039. "root": {
  1040. "__id__": 1
  1041. },
  1042. "asset": {
  1043. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1044. },
  1045. "fileId": "48FgqOXoVPjq3XHs9TzFoo",
  1046. "sync": false
  1047. },
  1048. {
  1049. "__type__": "cc.PrivateNode",
  1050. "_name": "RICHTEXT_CHILD",
  1051. "_objFlags": 0,
  1052. "_parent": {
  1053. "__id__": 24
  1054. },
  1055. "_children": [],
  1056. "_active": true,
  1057. "_level": 4,
  1058. "_components": [
  1059. {
  1060. "__id__": 29
  1061. }
  1062. ],
  1063. "_prefab": {
  1064. "__id__": 30
  1065. },
  1066. "_opacity": 255,
  1067. "_color": {
  1068. "__type__": "cc.Color",
  1069. "r": 0,
  1070. "g": 0,
  1071. "b": 0,
  1072. "a": 255
  1073. },
  1074. "_contentSize": {
  1075. "__type__": "cc.Size",
  1076. "width": 180,
  1077. "height": 22
  1078. },
  1079. "_anchorPoint": {
  1080. "__type__": "cc.Vec2",
  1081. "x": 0,
  1082. "y": 0
  1083. },
  1084. "_position": {
  1085. "__type__": "cc.Vec3",
  1086. "x": -117,
  1087. "y": 0,
  1088. "z": 0
  1089. },
  1090. "_scale": {
  1091. "__type__": "cc.Vec3",
  1092. "x": 1,
  1093. "y": 1,
  1094. "z": 1
  1095. },
  1096. "_quat": {
  1097. "__type__": "cc.Quat",
  1098. "x": 0,
  1099. "y": 0,
  1100. "z": 0,
  1101. "w": 1
  1102. },
  1103. "_skewX": 0,
  1104. "_skewY": 0,
  1105. "_zIndex": -32768,
  1106. "_is3DNode": false,
  1107. "groupIndex": 0,
  1108. "_id": ""
  1109. },
  1110. {
  1111. "__type__": "cc.Label",
  1112. "_name": "",
  1113. "_objFlags": 0,
  1114. "node": {
  1115. "__id__": 28
  1116. },
  1117. "_enabled": true,
  1118. "_srcBlendFactor": 1,
  1119. "_dstBlendFactor": 771,
  1120. "_useOriginalSize": true,
  1121. "_string": "以提高工作效率。点击",
  1122. "_N$string": "以提高工作效率。点击",
  1123. "_fontSize": 18,
  1124. "_lineHeight": 22,
  1125. "_enableWrapText": true,
  1126. "_N$file": null,
  1127. "_isSystemFontUsed": true,
  1128. "_spacingX": 0,
  1129. "_N$horizontalAlign": 0,
  1130. "_N$verticalAlign": 1,
  1131. "_N$fontFamily": "Arial",
  1132. "_N$overflow": 0,
  1133. "_id": ""
  1134. },
  1135. {
  1136. "__type__": "cc.PrefabInfo",
  1137. "root": {
  1138. "__id__": 1
  1139. },
  1140. "asset": {
  1141. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1142. },
  1143. "fileId": "f3Ryck50NI/Itryk2RXnUj",
  1144. "sync": false
  1145. },
  1146. {
  1147. "__type__": "cc.PrivateNode",
  1148. "_name": "RICHTEXT_CHILD",
  1149. "_objFlags": 0,
  1150. "_parent": {
  1151. "__id__": 24
  1152. },
  1153. "_children": [],
  1154. "_active": true,
  1155. "_level": 4,
  1156. "_components": [
  1157. {
  1158. "__id__": 32
  1159. }
  1160. ],
  1161. "_prefab": {
  1162. "__id__": 33
  1163. },
  1164. "_opacity": 255,
  1165. "_color": {
  1166. "__type__": "cc.Color",
  1167. "r": 255,
  1168. "g": 0,
  1169. "b": 0,
  1170. "a": 255
  1171. },
  1172. "_contentSize": {
  1173. "__type__": "cc.Size",
  1174. "width": 36,
  1175. "height": 22
  1176. },
  1177. "_anchorPoint": {
  1178. "__type__": "cc.Vec2",
  1179. "x": 0,
  1180. "y": 0
  1181. },
  1182. "_position": {
  1183. "__type__": "cc.Vec3",
  1184. "x": 63,
  1185. "y": 0,
  1186. "z": 0
  1187. },
  1188. "_scale": {
  1189. "__type__": "cc.Vec3",
  1190. "x": 1,
  1191. "y": 1,
  1192. "z": 1
  1193. },
  1194. "_quat": {
  1195. "__type__": "cc.Quat",
  1196. "x": 0,
  1197. "y": 0,
  1198. "z": 0,
  1199. "w": 1
  1200. },
  1201. "_skewX": 0,
  1202. "_skewY": 0,
  1203. "_zIndex": -32768,
  1204. "_is3DNode": false,
  1205. "groupIndex": 0,
  1206. "_id": ""
  1207. },
  1208. {
  1209. "__type__": "cc.Label",
  1210. "_name": "",
  1211. "_objFlags": 0,
  1212. "node": {
  1213. "__id__": 31
  1214. },
  1215. "_enabled": true,
  1216. "_srcBlendFactor": 1,
  1217. "_dstBlendFactor": 771,
  1218. "_useOriginalSize": true,
  1219. "_string": "管理",
  1220. "_N$string": "管理",
  1221. "_fontSize": 18,
  1222. "_lineHeight": 22,
  1223. "_enableWrapText": true,
  1224. "_N$file": null,
  1225. "_isSystemFontUsed": true,
  1226. "_spacingX": 0,
  1227. "_N$horizontalAlign": 0,
  1228. "_N$verticalAlign": 1,
  1229. "_N$fontFamily": "Arial",
  1230. "_N$overflow": 0,
  1231. "_id": ""
  1232. },
  1233. {
  1234. "__type__": "cc.PrefabInfo",
  1235. "root": {
  1236. "__id__": 1
  1237. },
  1238. "asset": {
  1239. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1240. },
  1241. "fileId": "58GRP68UhGHYqMcQEurCW0",
  1242. "sync": false
  1243. },
  1244. {
  1245. "__type__": "cc.PrivateNode",
  1246. "_name": "RICHTEXT_CHILD",
  1247. "_objFlags": 0,
  1248. "_parent": {
  1249. "__id__": 24
  1250. },
  1251. "_children": [],
  1252. "_active": true,
  1253. "_level": 4,
  1254. "_components": [
  1255. {
  1256. "__id__": 35
  1257. }
  1258. ],
  1259. "_prefab": {
  1260. "__id__": 36
  1261. },
  1262. "_opacity": 255,
  1263. "_color": {
  1264. "__type__": "cc.Color",
  1265. "r": 0,
  1266. "g": 0,
  1267. "b": 0,
  1268. "a": 255
  1269. },
  1270. "_contentSize": {
  1271. "__type__": "cc.Size",
  1272. "width": 18,
  1273. "height": 22
  1274. },
  1275. "_anchorPoint": {
  1276. "__type__": "cc.Vec2",
  1277. "x": 0,
  1278. "y": 0
  1279. },
  1280. "_position": {
  1281. "__type__": "cc.Vec3",
  1282. "x": 99,
  1283. "y": 0,
  1284. "z": 0
  1285. },
  1286. "_scale": {
  1287. "__type__": "cc.Vec3",
  1288. "x": 1,
  1289. "y": 1,
  1290. "z": 1
  1291. },
  1292. "_quat": {
  1293. "__type__": "cc.Quat",
  1294. "x": 0,
  1295. "y": 0,
  1296. "z": 0,
  1297. "w": 1
  1298. },
  1299. "_skewX": 0,
  1300. "_skewY": 0,
  1301. "_zIndex": -32768,
  1302. "_is3DNode": false,
  1303. "groupIndex": 0,
  1304. "_id": ""
  1305. },
  1306. {
  1307. "__type__": "cc.Label",
  1308. "_name": "",
  1309. "_objFlags": 0,
  1310. "node": {
  1311. "__id__": 34
  1312. },
  1313. "_enabled": true,
  1314. "_srcBlendFactor": 1,
  1315. "_dstBlendFactor": 771,
  1316. "_useOriginalSize": true,
  1317. "_string": ",",
  1318. "_N$string": ",",
  1319. "_fontSize": 18,
  1320. "_lineHeight": 22,
  1321. "_enableWrapText": true,
  1322. "_N$file": null,
  1323. "_isSystemFontUsed": true,
  1324. "_spacingX": 0,
  1325. "_N$horizontalAlign": 0,
  1326. "_N$verticalAlign": 1,
  1327. "_N$fontFamily": "Arial",
  1328. "_N$overflow": 0,
  1329. "_id": ""
  1330. },
  1331. {
  1332. "__type__": "cc.PrefabInfo",
  1333. "root": {
  1334. "__id__": 1
  1335. },
  1336. "asset": {
  1337. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1338. },
  1339. "fileId": "e1e0/J/55Nb4NZEwikzpnU",
  1340. "sync": false
  1341. },
  1342. {
  1343. "__type__": "cc.PrivateNode",
  1344. "_name": "RICHTEXT_CHILD",
  1345. "_objFlags": 0,
  1346. "_parent": {
  1347. "__id__": 24
  1348. },
  1349. "_children": [],
  1350. "_active": true,
  1351. "_level": 4,
  1352. "_components": [
  1353. {
  1354. "__id__": 38
  1355. }
  1356. ],
  1357. "_prefab": {
  1358. "__id__": 39
  1359. },
  1360. "_opacity": 255,
  1361. "_color": {
  1362. "__type__": "cc.Color",
  1363. "r": 0,
  1364. "g": 0,
  1365. "b": 0,
  1366. "a": 255
  1367. },
  1368. "_contentSize": {
  1369. "__type__": "cc.Size",
  1370. "width": 18,
  1371. "height": 22
  1372. },
  1373. "_anchorPoint": {
  1374. "__type__": "cc.Vec2",
  1375. "x": 0,
  1376. "y": 0
  1377. },
  1378. "_position": {
  1379. "__type__": "cc.Vec3",
  1380. "x": -117,
  1381. "y": -22,
  1382. "z": 0
  1383. },
  1384. "_scale": {
  1385. "__type__": "cc.Vec3",
  1386. "x": 1,
  1387. "y": 1,
  1388. "z": 1
  1389. },
  1390. "_quat": {
  1391. "__type__": "cc.Quat",
  1392. "x": 0,
  1393. "y": 0,
  1394. "z": 0,
  1395. "w": 1
  1396. },
  1397. "_skewX": 0,
  1398. "_skewY": 0,
  1399. "_zIndex": -32768,
  1400. "_is3DNode": false,
  1401. "groupIndex": 0,
  1402. "_id": ""
  1403. },
  1404. {
  1405. "__type__": "cc.Label",
  1406. "_name": "",
  1407. "_objFlags": 0,
  1408. "node": {
  1409. "__id__": 37
  1410. },
  1411. "_enabled": true,
  1412. "_srcBlendFactor": 1,
  1413. "_dstBlendFactor": 771,
  1414. "_useOriginalSize": true,
  1415. "_string": "在",
  1416. "_N$string": "在",
  1417. "_fontSize": 18,
  1418. "_lineHeight": 22,
  1419. "_enableWrapText": true,
  1420. "_N$file": null,
  1421. "_isSystemFontUsed": true,
  1422. "_spacingX": 0,
  1423. "_N$horizontalAlign": 0,
  1424. "_N$verticalAlign": 1,
  1425. "_N$fontFamily": "Arial",
  1426. "_N$overflow": 0,
  1427. "_id": ""
  1428. },
  1429. {
  1430. "__type__": "cc.PrefabInfo",
  1431. "root": {
  1432. "__id__": 1
  1433. },
  1434. "asset": {
  1435. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1436. },
  1437. "fileId": "98HB4bdHxJQLxFCyFvgBR+",
  1438. "sync": false
  1439. },
  1440. {
  1441. "__type__": "cc.PrivateNode",
  1442. "_name": "RICHTEXT_CHILD",
  1443. "_objFlags": 0,
  1444. "_parent": {
  1445. "__id__": 24
  1446. },
  1447. "_children": [],
  1448. "_active": true,
  1449. "_level": 4,
  1450. "_components": [
  1451. {
  1452. "__id__": 41
  1453. }
  1454. ],
  1455. "_prefab": {
  1456. "__id__": 42
  1457. },
  1458. "_opacity": 255,
  1459. "_color": {
  1460. "__type__": "cc.Color",
  1461. "r": 255,
  1462. "g": 0,
  1463. "b": 0,
  1464. "a": 255
  1465. },
  1466. "_contentSize": {
  1467. "__type__": "cc.Size",
  1468. "width": 36,
  1469. "height": 22
  1470. },
  1471. "_anchorPoint": {
  1472. "__type__": "cc.Vec2",
  1473. "x": 0,
  1474. "y": 0
  1475. },
  1476. "_position": {
  1477. "__type__": "cc.Vec3",
  1478. "x": -99,
  1479. "y": -22,
  1480. "z": 0
  1481. },
  1482. "_scale": {
  1483. "__type__": "cc.Vec3",
  1484. "x": 1,
  1485. "y": 1,
  1486. "z": 1
  1487. },
  1488. "_quat": {
  1489. "__type__": "cc.Quat",
  1490. "x": 0,
  1491. "y": 0,
  1492. "z": 0,
  1493. "w": 1
  1494. },
  1495. "_skewX": 0,
  1496. "_skewY": 0,
  1497. "_zIndex": -32768,
  1498. "_is3DNode": false,
  1499. "groupIndex": 0,
  1500. "_id": ""
  1501. },
  1502. {
  1503. "__type__": "cc.Label",
  1504. "_name": "",
  1505. "_objFlags": 0,
  1506. "node": {
  1507. "__id__": 40
  1508. },
  1509. "_enabled": true,
  1510. "_srcBlendFactor": 1,
  1511. "_dstBlendFactor": 771,
  1512. "_useOriginalSize": true,
  1513. "_string": "人才",
  1514. "_N$string": "人才",
  1515. "_fontSize": 18,
  1516. "_lineHeight": 22,
  1517. "_enableWrapText": true,
  1518. "_N$file": null,
  1519. "_isSystemFontUsed": true,
  1520. "_spacingX": 0,
  1521. "_N$horizontalAlign": 0,
  1522. "_N$verticalAlign": 1,
  1523. "_N$fontFamily": "Arial",
  1524. "_N$overflow": 0,
  1525. "_id": ""
  1526. },
  1527. {
  1528. "__type__": "cc.PrefabInfo",
  1529. "root": {
  1530. "__id__": 1
  1531. },
  1532. "asset": {
  1533. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1534. },
  1535. "fileId": "6bwktPFF1Jb7R7WZezC+W6",
  1536. "sync": false
  1537. },
  1538. {
  1539. "__type__": "cc.PrivateNode",
  1540. "_name": "RICHTEXT_CHILD",
  1541. "_objFlags": 0,
  1542. "_parent": {
  1543. "__id__": 24
  1544. },
  1545. "_children": [],
  1546. "_active": true,
  1547. "_level": 4,
  1548. "_components": [
  1549. {
  1550. "__id__": 44
  1551. }
  1552. ],
  1553. "_prefab": {
  1554. "__id__": 45
  1555. },
  1556. "_opacity": 255,
  1557. "_color": {
  1558. "__type__": "cc.Color",
  1559. "r": 0,
  1560. "g": 0,
  1561. "b": 0,
  1562. "a": 255
  1563. },
  1564. "_contentSize": {
  1565. "__type__": "cc.Size",
  1566. "width": 144,
  1567. "height": 22
  1568. },
  1569. "_anchorPoint": {
  1570. "__type__": "cc.Vec2",
  1571. "x": 0,
  1572. "y": 0
  1573. },
  1574. "_position": {
  1575. "__type__": "cc.Vec3",
  1576. "x": -63,
  1577. "y": -22,
  1578. "z": 0
  1579. },
  1580. "_scale": {
  1581. "__type__": "cc.Vec3",
  1582. "x": 1,
  1583. "y": 1,
  1584. "z": 1
  1585. },
  1586. "_quat": {
  1587. "__type__": "cc.Quat",
  1588. "x": 0,
  1589. "y": 0,
  1590. "z": 0,
  1591. "w": 1
  1592. },
  1593. "_skewX": 0,
  1594. "_skewY": 0,
  1595. "_zIndex": -32768,
  1596. "_is3DNode": false,
  1597. "groupIndex": 0,
  1598. "_id": ""
  1599. },
  1600. {
  1601. "__type__": "cc.Label",
  1602. "_name": "",
  1603. "_objFlags": 0,
  1604. "node": {
  1605. "__id__": 43
  1606. },
  1607. "_enabled": true,
  1608. "_srcBlendFactor": 1,
  1609. "_dstBlendFactor": 771,
  1610. "_useOriginalSize": true,
  1611. "_string": "栏目可招聘更多的",
  1612. "_N$string": "栏目可招聘更多的",
  1613. "_fontSize": 18,
  1614. "_lineHeight": 22,
  1615. "_enableWrapText": true,
  1616. "_N$file": null,
  1617. "_isSystemFontUsed": true,
  1618. "_spacingX": 0,
  1619. "_N$horizontalAlign": 0,
  1620. "_N$verticalAlign": 1,
  1621. "_N$fontFamily": "Arial",
  1622. "_N$overflow": 0,
  1623. "_id": ""
  1624. },
  1625. {
  1626. "__type__": "cc.PrefabInfo",
  1627. "root": {
  1628. "__id__": 1
  1629. },
  1630. "asset": {
  1631. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1632. },
  1633. "fileId": "9czH+FSWlL0akflSTtjq4v",
  1634. "sync": false
  1635. },
  1636. {
  1637. "__type__": "cc.PrivateNode",
  1638. "_name": "RICHTEXT_CHILD",
  1639. "_objFlags": 0,
  1640. "_parent": {
  1641. "__id__": 24
  1642. },
  1643. "_children": [],
  1644. "_active": true,
  1645. "_level": 4,
  1646. "_components": [
  1647. {
  1648. "__id__": 47
  1649. }
  1650. ],
  1651. "_prefab": {
  1652. "__id__": 48
  1653. },
  1654. "_opacity": 255,
  1655. "_color": {
  1656. "__type__": "cc.Color",
  1657. "r": 0,
  1658. "g": 0,
  1659. "b": 0,
  1660. "a": 255
  1661. },
  1662. "_contentSize": {
  1663. "__type__": "cc.Size",
  1664. "width": 198,
  1665. "height": 22
  1666. },
  1667. "_anchorPoint": {
  1668. "__type__": "cc.Vec2",
  1669. "x": 0,
  1670. "y": 0
  1671. },
  1672. "_position": {
  1673. "__type__": "cc.Vec3",
  1674. "x": -117,
  1675. "y": -44,
  1676. "z": 0
  1677. },
  1678. "_scale": {
  1679. "__type__": "cc.Vec3",
  1680. "x": 1,
  1681. "y": 1,
  1682. "z": 1
  1683. },
  1684. "_quat": {
  1685. "__type__": "cc.Quat",
  1686. "x": 0,
  1687. "y": 0,
  1688. "z": 0,
  1689. "w": 1
  1690. },
  1691. "_skewX": 0,
  1692. "_skewY": 0,
  1693. "_zIndex": -32768,
  1694. "_is3DNode": false,
  1695. "groupIndex": 0,
  1696. "_id": ""
  1697. },
  1698. {
  1699. "__type__": "cc.Label",
  1700. "_name": "",
  1701. "_objFlags": 0,
  1702. "node": {
  1703. "__id__": 46
  1704. },
  1705. "_enabled": true,
  1706. "_srcBlendFactor": 1,
  1707. "_dstBlendFactor": 771,
  1708. "_useOriginalSize": true,
  1709. "_string": "人才,带来更多的收益。",
  1710. "_N$string": "人才,带来更多的收益。",
  1711. "_fontSize": 18,
  1712. "_lineHeight": 22,
  1713. "_enableWrapText": true,
  1714. "_N$file": null,
  1715. "_isSystemFontUsed": true,
  1716. "_spacingX": 0,
  1717. "_N$horizontalAlign": 0,
  1718. "_N$verticalAlign": 1,
  1719. "_N$fontFamily": "Arial",
  1720. "_N$overflow": 0,
  1721. "_id": ""
  1722. },
  1723. {
  1724. "__type__": "cc.PrefabInfo",
  1725. "root": {
  1726. "__id__": 1
  1727. },
  1728. "asset": {
  1729. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1730. },
  1731. "fileId": "d4QjpCW25J86yU11drzZPt",
  1732. "sync": false
  1733. },
  1734. {
  1735. "__type__": "cc.RichText",
  1736. "_name": "",
  1737. "_objFlags": 0,
  1738. "node": {
  1739. "__id__": 24
  1740. },
  1741. "_enabled": true,
  1742. "_N$string": "<color=#000000> 合理利用人力资源,可\n以提高工作效率。点击</c><color=#FF0000>管理</c><color=#000000>,\n在</c><color=#FF0000>人才</c><color=#000000>栏目可招聘更多的\n</c><color=#FF0000><color=#000000>人才,带来更多的收益。</c>",
  1743. "_N$horizontalAlign": 0,
  1744. "_N$fontSize": 18,
  1745. "_N$font": null,
  1746. "_N$maxWidth": 0,
  1747. "_N$lineHeight": 22,
  1748. "_N$imageAtlas": null,
  1749. "_N$handleTouchEvent": true,
  1750. "_id": ""
  1751. },
  1752. {
  1753. "__type__": "cc.PrefabInfo",
  1754. "root": {
  1755. "__id__": 1
  1756. },
  1757. "asset": {
  1758. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1759. },
  1760. "fileId": "2a/ktTeO9FMake4+0QJvMA",
  1761. "sync": false
  1762. },
  1763. {
  1764. "__type__": "cc.Sprite",
  1765. "_name": "",
  1766. "_objFlags": 0,
  1767. "node": {
  1768. "__id__": 8
  1769. },
  1770. "_enabled": true,
  1771. "_srcBlendFactor": 770,
  1772. "_dstBlendFactor": 771,
  1773. "_spriteFrame": {
  1774. "__uuid__": "7336ac05-5e39-44bc-92ff-d6e95545844a"
  1775. },
  1776. "_type": 0,
  1777. "_sizeMode": 0,
  1778. "_fillType": 0,
  1779. "_fillCenter": {
  1780. "__type__": "cc.Vec2",
  1781. "x": 0,
  1782. "y": 0
  1783. },
  1784. "_fillStart": 0,
  1785. "_fillRange": 0,
  1786. "_isTrimmedMode": true,
  1787. "_state": 0,
  1788. "_atlas": null,
  1789. "_id": ""
  1790. },
  1791. {
  1792. "__type__": "cc.PrefabInfo",
  1793. "root": {
  1794. "__id__": 1
  1795. },
  1796. "asset": {
  1797. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1798. },
  1799. "fileId": "501io/wxdC47go2RnMFVED",
  1800. "sync": false
  1801. },
  1802. {
  1803. "__type__": "cc.Node",
  1804. "_name": "SureBtn",
  1805. "_objFlags": 0,
  1806. "_parent": {
  1807. "__id__": 1
  1808. },
  1809. "_children": [],
  1810. "_active": true,
  1811. "_level": 2,
  1812. "_components": [
  1813. {
  1814. "__id__": 54
  1815. },
  1816. {
  1817. "__id__": 55
  1818. }
  1819. ],
  1820. "_prefab": {
  1821. "__id__": 56
  1822. },
  1823. "_opacity": 255,
  1824. "_color": {
  1825. "__type__": "cc.Color",
  1826. "r": 255,
  1827. "g": 255,
  1828. "b": 255,
  1829. "a": 255
  1830. },
  1831. "_contentSize": {
  1832. "__type__": "cc.Size",
  1833. "width": 82,
  1834. "height": 37
  1835. },
  1836. "_anchorPoint": {
  1837. "__type__": "cc.Vec2",
  1838. "x": 0.5,
  1839. "y": 0.5
  1840. },
  1841. "_position": {
  1842. "__type__": "cc.Vec3",
  1843. "x": 0,
  1844. "y": -270,
  1845. "z": 0
  1846. },
  1847. "_scale": {
  1848. "__type__": "cc.Vec3",
  1849. "x": 2,
  1850. "y": 2,
  1851. "z": 2
  1852. },
  1853. "_quat": {
  1854. "__type__": "cc.Quat",
  1855. "x": 0,
  1856. "y": 0,
  1857. "z": 0,
  1858. "w": 1
  1859. },
  1860. "_skewX": 0,
  1861. "_skewY": 0,
  1862. "_zIndex": 0,
  1863. "_is3DNode": false,
  1864. "groupIndex": 0,
  1865. "_id": ""
  1866. },
  1867. {
  1868. "__type__": "cc.Sprite",
  1869. "_name": "",
  1870. "_objFlags": 0,
  1871. "node": {
  1872. "__id__": 53
  1873. },
  1874. "_enabled": true,
  1875. "_srcBlendFactor": 770,
  1876. "_dstBlendFactor": 771,
  1877. "_spriteFrame": {
  1878. "__uuid__": "db8cfc1e-cabb-4762-a0d5-728f49694fe2"
  1879. },
  1880. "_type": 0,
  1881. "_sizeMode": 0,
  1882. "_fillType": 0,
  1883. "_fillCenter": {
  1884. "__type__": "cc.Vec2",
  1885. "x": 0,
  1886. "y": 0
  1887. },
  1888. "_fillStart": 0,
  1889. "_fillRange": 0,
  1890. "_isTrimmedMode": true,
  1891. "_state": 0,
  1892. "_atlas": null,
  1893. "_id": ""
  1894. },
  1895. {
  1896. "__type__": "cc.Button",
  1897. "_name": "",
  1898. "_objFlags": 0,
  1899. "node": {
  1900. "__id__": 53
  1901. },
  1902. "_enabled": true,
  1903. "duration": 0.1,
  1904. "zoomScale": 1.2,
  1905. "clickEvents": [],
  1906. "_N$interactable": true,
  1907. "_N$enableAutoGrayEffect": false,
  1908. "_N$transition": 3,
  1909. "transition": 3,
  1910. "_N$normalColor": {
  1911. "__type__": "cc.Color",
  1912. "r": 214,
  1913. "g": 214,
  1914. "b": 214,
  1915. "a": 255
  1916. },
  1917. "_N$pressedColor": {
  1918. "__type__": "cc.Color",
  1919. "r": 211,
  1920. "g": 211,
  1921. "b": 211,
  1922. "a": 255
  1923. },
  1924. "pressedColor": {
  1925. "__type__": "cc.Color",
  1926. "r": 211,
  1927. "g": 211,
  1928. "b": 211,
  1929. "a": 255
  1930. },
  1931. "_N$hoverColor": {
  1932. "__type__": "cc.Color",
  1933. "r": 255,
  1934. "g": 255,
  1935. "b": 255,
  1936. "a": 255
  1937. },
  1938. "hoverColor": {
  1939. "__type__": "cc.Color",
  1940. "r": 255,
  1941. "g": 255,
  1942. "b": 255,
  1943. "a": 255
  1944. },
  1945. "_N$disabledColor": {
  1946. "__type__": "cc.Color",
  1947. "r": 124,
  1948. "g": 124,
  1949. "b": 124,
  1950. "a": 255
  1951. },
  1952. "_N$normalSprite": null,
  1953. "_N$pressedSprite": null,
  1954. "pressedSprite": null,
  1955. "_N$hoverSprite": null,
  1956. "hoverSprite": null,
  1957. "_N$disabledSprite": null,
  1958. "_N$target": null,
  1959. "_id": ""
  1960. },
  1961. {
  1962. "__type__": "cc.PrefabInfo",
  1963. "root": {
  1964. "__id__": 1
  1965. },
  1966. "asset": {
  1967. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  1968. },
  1969. "fileId": "62KUvNTsdIlIIjYfr2RBQl",
  1970. "sync": false
  1971. },
  1972. {
  1973. "__type__": "cc.Node",
  1974. "_name": "info",
  1975. "_objFlags": 0,
  1976. "_parent": {
  1977. "__id__": 1
  1978. },
  1979. "_children": [
  1980. {
  1981. "__id__": 58
  1982. },
  1983. {
  1984. "__id__": 61
  1985. }
  1986. ],
  1987. "_active": false,
  1988. "_level": 2,
  1989. "_components": [
  1990. {
  1991. "__id__": 65
  1992. }
  1993. ],
  1994. "_prefab": {
  1995. "__id__": 66
  1996. },
  1997. "_opacity": 255,
  1998. "_color": {
  1999. "__type__": "cc.Color",
  2000. "r": 255,
  2001. "g": 255,
  2002. "b": 255,
  2003. "a": 255
  2004. },
  2005. "_contentSize": {
  2006. "__type__": "cc.Size",
  2007. "width": 82,
  2008. "height": 37
  2009. },
  2010. "_anchorPoint": {
  2011. "__type__": "cc.Vec2",
  2012. "x": 0.5,
  2013. "y": 0.5
  2014. },
  2015. "_position": {
  2016. "__type__": "cc.Vec3",
  2017. "x": 0,
  2018. "y": -270,
  2019. "z": 0
  2020. },
  2021. "_scale": {
  2022. "__type__": "cc.Vec3",
  2023. "x": 2,
  2024. "y": 2,
  2025. "z": 1
  2026. },
  2027. "_quat": {
  2028. "__type__": "cc.Quat",
  2029. "x": 0,
  2030. "y": 0,
  2031. "z": 0,
  2032. "w": 1
  2033. },
  2034. "_skewX": 0,
  2035. "_skewY": 0,
  2036. "_zIndex": 0,
  2037. "_is3DNode": false,
  2038. "groupIndex": 0,
  2039. "_id": ""
  2040. },
  2041. {
  2042. "__type__": "cc.Node",
  2043. "_name": "New Label",
  2044. "_objFlags": 0,
  2045. "_parent": {
  2046. "__id__": 57
  2047. },
  2048. "_children": [],
  2049. "_active": true,
  2050. "_level": 3,
  2051. "_components": [
  2052. {
  2053. "__id__": 59
  2054. }
  2055. ],
  2056. "_prefab": {
  2057. "__id__": 60
  2058. },
  2059. "_opacity": 255,
  2060. "_color": {
  2061. "__type__": "cc.Color",
  2062. "r": 0,
  2063. "g": 0,
  2064. "b": 0,
  2065. "a": 255
  2066. },
  2067. "_contentSize": {
  2068. "__type__": "cc.Size",
  2069. "width": 60,
  2070. "height": 20
  2071. },
  2072. "_anchorPoint": {
  2073. "__type__": "cc.Vec2",
  2074. "x": 0.5,
  2075. "y": 0.5
  2076. },
  2077. "_position": {
  2078. "__type__": "cc.Vec3",
  2079. "x": -1,
  2080. "y": -2,
  2081. "z": 0
  2082. },
  2083. "_scale": {
  2084. "__type__": "cc.Vec3",
  2085. "x": 1,
  2086. "y": 1,
  2087. "z": 1
  2088. },
  2089. "_quat": {
  2090. "__type__": "cc.Quat",
  2091. "x": 0,
  2092. "y": 0,
  2093. "z": 0,
  2094. "w": 1
  2095. },
  2096. "_skewX": 0,
  2097. "_skewY": 0,
  2098. "_zIndex": 0,
  2099. "_is3DNode": false,
  2100. "groupIndex": 0,
  2101. "_rotationX": 0,
  2102. "_rotationY": 0,
  2103. "_id": ""
  2104. },
  2105. {
  2106. "__type__": "cc.Label",
  2107. "_name": "",
  2108. "_objFlags": 0,
  2109. "node": {
  2110. "__id__": 58
  2111. },
  2112. "_enabled": true,
  2113. "_srcBlendFactor": 1,
  2114. "_dstBlendFactor": 771,
  2115. "_useOriginalSize": false,
  2116. "_string": "下一步",
  2117. "_N$string": "下一步",
  2118. "_fontSize": 20,
  2119. "_lineHeight": 20,
  2120. "_enableWrapText": true,
  2121. "_N$file": null,
  2122. "_isSystemFontUsed": true,
  2123. "_spacingX": 0,
  2124. "_N$horizontalAlign": 1,
  2125. "_N$verticalAlign": 1,
  2126. "_N$fontFamily": "Arial",
  2127. "_N$overflow": 0,
  2128. "_id": ""
  2129. },
  2130. {
  2131. "__type__": "cc.PrefabInfo",
  2132. "root": {
  2133. "__id__": 1
  2134. },
  2135. "asset": {
  2136. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  2137. },
  2138. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  2139. "sync": false
  2140. },
  2141. {
  2142. "__type__": "cc.Node",
  2143. "_name": "SmallArrow",
  2144. "_objFlags": 0,
  2145. "_parent": {
  2146. "__id__": 57
  2147. },
  2148. "_children": [],
  2149. "_active": false,
  2150. "_level": 3,
  2151. "_components": [
  2152. {
  2153. "__id__": 62
  2154. },
  2155. {
  2156. "__id__": 63
  2157. }
  2158. ],
  2159. "_prefab": {
  2160. "__id__": 64
  2161. },
  2162. "_opacity": 255,
  2163. "_color": {
  2164. "__type__": "cc.Color",
  2165. "r": 255,
  2166. "g": 255,
  2167. "b": 255,
  2168. "a": 255
  2169. },
  2170. "_contentSize": {
  2171. "__type__": "cc.Size",
  2172. "width": 50,
  2173. "height": 30
  2174. },
  2175. "_anchorPoint": {
  2176. "__type__": "cc.Vec2",
  2177. "x": 0.5,
  2178. "y": 0.5
  2179. },
  2180. "_position": {
  2181. "__type__": "cc.Vec3",
  2182. "x": 143,
  2183. "y": -74,
  2184. "z": 0
  2185. },
  2186. "_scale": {
  2187. "__type__": "cc.Vec3",
  2188. "x": 1,
  2189. "y": 1,
  2190. "z": 1
  2191. },
  2192. "_quat": {
  2193. "__type__": "cc.Quat",
  2194. "x": 0,
  2195. "y": 0,
  2196. "z": 0,
  2197. "w": 1
  2198. },
  2199. "_skewX": 0,
  2200. "_skewY": 0,
  2201. "_zIndex": 0,
  2202. "_is3DNode": false,
  2203. "groupIndex": 0,
  2204. "_id": ""
  2205. },
  2206. {
  2207. "__type__": "cc.Sprite",
  2208. "_name": "",
  2209. "_objFlags": 0,
  2210. "node": {
  2211. "__id__": 61
  2212. },
  2213. "_enabled": true,
  2214. "_srcBlendFactor": 770,
  2215. "_dstBlendFactor": 771,
  2216. "_spriteFrame": {
  2217. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  2218. },
  2219. "_type": 0,
  2220. "_sizeMode": 1,
  2221. "_fillType": 0,
  2222. "_fillCenter": {
  2223. "__type__": "cc.Vec2",
  2224. "x": 0,
  2225. "y": 0
  2226. },
  2227. "_fillStart": 0,
  2228. "_fillRange": 0,
  2229. "_isTrimmedMode": true,
  2230. "_state": 0,
  2231. "_atlas": null,
  2232. "_id": ""
  2233. },
  2234. {
  2235. "__type__": "cc.Animation",
  2236. "_name": "",
  2237. "_objFlags": 0,
  2238. "node": {
  2239. "__id__": 61
  2240. },
  2241. "_enabled": true,
  2242. "_defaultClip": {
  2243. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2244. },
  2245. "_clips": [
  2246. {
  2247. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  2248. }
  2249. ],
  2250. "playOnLoad": true,
  2251. "_id": ""
  2252. },
  2253. {
  2254. "__type__": "cc.PrefabInfo",
  2255. "root": {
  2256. "__id__": 1
  2257. },
  2258. "asset": {
  2259. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  2260. },
  2261. "fileId": "e82VTNZItIOqz1xLHrldf9",
  2262. "sync": false
  2263. },
  2264. {
  2265. "__type__": "cc.Sprite",
  2266. "_name": "",
  2267. "_objFlags": 0,
  2268. "node": {
  2269. "__id__": 57
  2270. },
  2271. "_enabled": true,
  2272. "_srcBlendFactor": 770,
  2273. "_dstBlendFactor": 771,
  2274. "_spriteFrame": {
  2275. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  2276. },
  2277. "_type": 0,
  2278. "_sizeMode": 1,
  2279. "_fillType": 0,
  2280. "_fillCenter": {
  2281. "__type__": "cc.Vec2",
  2282. "x": 0,
  2283. "y": 0
  2284. },
  2285. "_fillStart": 0,
  2286. "_fillRange": 0,
  2287. "_isTrimmedMode": true,
  2288. "_state": 0,
  2289. "_atlas": null,
  2290. "_id": ""
  2291. },
  2292. {
  2293. "__type__": "cc.PrefabInfo",
  2294. "root": {
  2295. "__id__": 1
  2296. },
  2297. "asset": {
  2298. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  2299. },
  2300. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  2301. "sync": false
  2302. },
  2303. {
  2304. "__type__": "cc.Node",
  2305. "_name": "richman",
  2306. "_objFlags": 0,
  2307. "_parent": {
  2308. "__id__": 1
  2309. },
  2310. "_children": [],
  2311. "_active": true,
  2312. "_level": 2,
  2313. "_components": [
  2314. {
  2315. "__id__": 68
  2316. }
  2317. ],
  2318. "_prefab": {
  2319. "__id__": 69
  2320. },
  2321. "_opacity": 255,
  2322. "_color": {
  2323. "__type__": "cc.Color",
  2324. "r": 255,
  2325. "g": 255,
  2326. "b": 255,
  2327. "a": 255
  2328. },
  2329. "_contentSize": {
  2330. "__type__": "cc.Size",
  2331. "width": 216,
  2332. "height": 664
  2333. },
  2334. "_anchorPoint": {
  2335. "__type__": "cc.Vec2",
  2336. "x": 0.5,
  2337. "y": 0.5
  2338. },
  2339. "_position": {
  2340. "__type__": "cc.Vec3",
  2341. "x": -211,
  2342. "y": -43,
  2343. "z": 0
  2344. },
  2345. "_scale": {
  2346. "__type__": "cc.Vec3",
  2347. "x": 0.73,
  2348. "y": 0.73,
  2349. "z": 1
  2350. },
  2351. "_quat": {
  2352. "__type__": "cc.Quat",
  2353. "x": 0,
  2354. "y": 0,
  2355. "z": 0,
  2356. "w": 1
  2357. },
  2358. "_skewX": 0,
  2359. "_skewY": 0,
  2360. "_zIndex": 0,
  2361. "_is3DNode": false,
  2362. "groupIndex": 0,
  2363. "_id": ""
  2364. },
  2365. {
  2366. "__type__": "cc.Sprite",
  2367. "_name": "",
  2368. "_objFlags": 0,
  2369. "node": {
  2370. "__id__": 67
  2371. },
  2372. "_enabled": true,
  2373. "_srcBlendFactor": 770,
  2374. "_dstBlendFactor": 771,
  2375. "_spriteFrame": {
  2376. "__uuid__": "e9807e16-730d-451e-a06b-f9ce32aa4919"
  2377. },
  2378. "_type": 0,
  2379. "_sizeMode": 1,
  2380. "_fillType": 0,
  2381. "_fillCenter": {
  2382. "__type__": "cc.Vec2",
  2383. "x": 0,
  2384. "y": 0
  2385. },
  2386. "_fillStart": 0,
  2387. "_fillRange": 0,
  2388. "_isTrimmedMode": true,
  2389. "_state": 0,
  2390. "_atlas": null,
  2391. "_id": ""
  2392. },
  2393. {
  2394. "__type__": "cc.PrefabInfo",
  2395. "root": {
  2396. "__id__": 1
  2397. },
  2398. "asset": {
  2399. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  2400. },
  2401. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  2402. "sync": false
  2403. },
  2404. {
  2405. "__type__": "cc.PrefabInfo",
  2406. "root": {
  2407. "__id__": 1
  2408. },
  2409. "asset": {
  2410. "__uuid__": "b6d29068-735b-4213-a205-3bbb3b3d9025"
  2411. },
  2412. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  2413. "sync": false
  2414. }
  2415. ]