taskPrefabbuyBuyinggrainwait.prefab 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905
  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": "taskPrefabbuyBuyinggrainwait",
  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__": 38
  31. },
  32. {
  33. "__id__": 45
  34. },
  35. {
  36. "__id__": 52
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 55
  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__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  170. },
  171. "fileId": "94lXOC+eJBJ4AWe+Ta59w6",
  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__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  273. },
  274. "fileId": "c9RU1PTy1Keo3g+9W1ttm9",
  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__": 15
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 2,
  294. "_components": [
  295. {
  296. "__id__": 36
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 37
  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. "_active": false,
  361. "_level": 3,
  362. "_components": [
  363. {
  364. "__id__": 13
  365. }
  366. ],
  367. "_prefab": {
  368. "__id__": 14
  369. },
  370. "_opacity": 255,
  371. "_color": {
  372. "__type__": "cc.Color",
  373. "r": 0,
  374. "g": 0,
  375. "b": 0,
  376. "a": 255
  377. },
  378. "_contentSize": {
  379. "__type__": "cc.Size",
  380. "width": 351.39,
  381. "height": 92
  382. },
  383. "_anchorPoint": {
  384. "__type__": "cc.Vec2",
  385. "x": 0.5,
  386. "y": 0.5
  387. },
  388. "_position": {
  389. "__type__": "cc.Vec3",
  390. "x": -3,
  391. "y": 44,
  392. "z": 0
  393. },
  394. "_scale": {
  395. "__type__": "cc.Vec3",
  396. "x": 1,
  397. "y": 1,
  398. "z": 1
  399. },
  400. "_quat": {
  401. "__type__": "cc.Quat",
  402. "x": 0,
  403. "y": 0,
  404. "z": 0,
  405. "w": 1
  406. },
  407. "_skewX": 0,
  408. "_skewY": 0,
  409. "_zIndex": 0,
  410. "_is3DNode": false,
  411. "groupIndex": 0,
  412. "_rotationX": 0,
  413. "_rotationY": 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": 50,
  445. "height": 30
  446. },
  447. "_anchorPoint": {
  448. "__type__": "cc.Vec2",
  449. "x": 0.5,
  450. "y": 0.5
  451. },
  452. "_position": {
  453. "__type__": "cc.Vec3",
  454. "x": 50,
  455. "y": 9,
  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. "_rotationX": 0,
  477. "_rotationY": 0,
  478. "_id": ""
  479. },
  480. {
  481. "__type__": "cc.Label",
  482. "_name": "",
  483. "_objFlags": 0,
  484. "node": {
  485. "__id__": 10
  486. },
  487. "_enabled": true,
  488. "_srcBlendFactor": 1,
  489. "_dstBlendFactor": 771,
  490. "_useOriginalSize": false,
  491. "_string": "粮食",
  492. "_N$string": "粮食",
  493. "_fontSize": 25,
  494. "_lineHeight": 30,
  495. "_enableWrapText": true,
  496. "_N$file": null,
  497. "_isSystemFontUsed": true,
  498. "_spacingX": 0,
  499. "_N$horizontalAlign": 0,
  500. "_N$verticalAlign": 0,
  501. "_N$fontFamily": "Arial",
  502. "_N$overflow": 0,
  503. "_id": ""
  504. },
  505. {
  506. "__type__": "cc.PrefabInfo",
  507. "root": {
  508. "__id__": 1
  509. },
  510. "asset": {
  511. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  512. },
  513. "fileId": "1cnQh2+xhNuJ/4m9JHbGGq",
  514. "sync": false
  515. },
  516. {
  517. "__type__": "cc.Label",
  518. "_name": "",
  519. "_objFlags": 0,
  520. "node": {
  521. "__id__": 9
  522. },
  523. "_enabled": true,
  524. "_srcBlendFactor": 1,
  525. "_dstBlendFactor": 771,
  526. "_useOriginalSize": false,
  527. "_string": " 太好了,房子每次可以\n 恢复10点的体力, 的体力完\n 全恢复了就可以去劳动了。是不是\n 很像给电池充电^^",
  528. "_N$string": " 太好了,房子每次可以\n 恢复10点的体力, 的体力完\n 全恢复了就可以去劳动了。是不是\n 很像给电池充电^^",
  529. "_fontSize": 23,
  530. "_lineHeight": 23,
  531. "_enableWrapText": true,
  532. "_N$file": null,
  533. "_isSystemFontUsed": true,
  534. "_spacingX": 0,
  535. "_N$horizontalAlign": 0,
  536. "_N$verticalAlign": 0,
  537. "_N$fontFamily": "Arial",
  538. "_N$overflow": 0,
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.PrefabInfo",
  543. "root": {
  544. "__id__": 1
  545. },
  546. "asset": {
  547. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  548. },
  549. "fileId": "91D3Zlp8pI45Fow0RR6m70",
  550. "sync": false
  551. },
  552. {
  553. "__type__": "cc.Node",
  554. "_name": "richtext",
  555. "_objFlags": 0,
  556. "_parent": {
  557. "__id__": 8
  558. },
  559. "_children": [
  560. {
  561. "__id__": 16
  562. },
  563. {
  564. "__id__": 19
  565. },
  566. {
  567. "__id__": 22
  568. },
  569. {
  570. "__id__": 25
  571. },
  572. {
  573. "__id__": 28
  574. },
  575. {
  576. "__id__": 31
  577. }
  578. ],
  579. "_active": true,
  580. "_level": 3,
  581. "_components": [
  582. {
  583. "__id__": 34
  584. }
  585. ],
  586. "_prefab": {
  587. "__id__": 35
  588. },
  589. "_opacity": 255,
  590. "_color": {
  591. "__type__": "cc.Color",
  592. "r": 255,
  593. "g": 255,
  594. "b": 255,
  595. "a": 255
  596. },
  597. "_contentSize": {
  598. "__type__": "cc.Size",
  599. "width": 305.56,
  600. "height": 100
  601. },
  602. "_anchorPoint": {
  603. "__type__": "cc.Vec2",
  604. "x": 0.5,
  605. "y": 0.5
  606. },
  607. "_position": {
  608. "__type__": "cc.Vec3",
  609. "x": 0,
  610. "y": 40.1,
  611. "z": 0
  612. },
  613. "_scale": {
  614. "__type__": "cc.Vec3",
  615. "x": 1,
  616. "y": 1,
  617. "z": 1
  618. },
  619. "_quat": {
  620. "__type__": "cc.Quat",
  621. "x": 0,
  622. "y": 0,
  623. "z": 0,
  624. "w": 1
  625. },
  626. "_skewX": 0,
  627. "_skewY": 0,
  628. "_zIndex": 0,
  629. "_is3DNode": false,
  630. "groupIndex": 0,
  631. "_rotationX": 0,
  632. "_rotationY": 0,
  633. "_id": ""
  634. },
  635. {
  636. "__type__": "cc.PrivateNode",
  637. "_name": "RICHTEXT_CHILD",
  638. "_objFlags": 0,
  639. "_parent": {
  640. "__id__": 15
  641. },
  642. "_children": [],
  643. "_active": true,
  644. "_level": 4,
  645. "_components": [
  646. {
  647. "__id__": 17
  648. }
  649. ],
  650. "_prefab": {
  651. "__id__": 18
  652. },
  653. "_opacity": 255,
  654. "_color": {
  655. "__type__": "cc.Color",
  656. "r": 0,
  657. "g": 0,
  658. "b": 0,
  659. "a": 255
  660. },
  661. "_contentSize": {
  662. "__type__": "cc.Size",
  663. "width": 261.12,
  664. "height": 25
  665. },
  666. "_anchorPoint": {
  667. "__type__": "cc.Vec2",
  668. "x": 0,
  669. "y": 0
  670. },
  671. "_position": {
  672. "__type__": "cc.Vec3",
  673. "x": -152.78,
  674. "y": 25,
  675. "z": 0
  676. },
  677. "_scale": {
  678. "__type__": "cc.Vec3",
  679. "x": 1,
  680. "y": 1,
  681. "z": 1
  682. },
  683. "_quat": {
  684. "__type__": "cc.Quat",
  685. "x": 0,
  686. "y": 0,
  687. "z": 0,
  688. "w": 1
  689. },
  690. "_skewX": 0,
  691. "_skewY": 0,
  692. "_zIndex": -32768,
  693. "_is3DNode": false,
  694. "groupIndex": 0,
  695. "_id": ""
  696. },
  697. {
  698. "__type__": "cc.Label",
  699. "_name": "",
  700. "_objFlags": 0,
  701. "node": {
  702. "__id__": 16
  703. },
  704. "_enabled": true,
  705. "_srcBlendFactor": 1,
  706. "_dstBlendFactor": 771,
  707. "_useOriginalSize": true,
  708. "_string": " 太好了,房子每次可以",
  709. "_N$string": " 太好了,房子每次可以",
  710. "_fontSize": 20,
  711. "_lineHeight": 25,
  712. "_enableWrapText": true,
  713. "_N$file": null,
  714. "_isSystemFontUsed": true,
  715. "_spacingX": 0,
  716. "_N$horizontalAlign": 0,
  717. "_N$verticalAlign": 1,
  718. "_N$fontFamily": "Arial",
  719. "_N$overflow": 0,
  720. "_id": ""
  721. },
  722. {
  723. "__type__": "cc.PrefabInfo",
  724. "root": {
  725. "__id__": 1
  726. },
  727. "asset": {
  728. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  729. },
  730. "fileId": "d7HNFkFwVPPqrWphe4FWSO",
  731. "sync": false
  732. },
  733. {
  734. "__type__": "cc.PrivateNode",
  735. "_name": "RICHTEXT_CHILD",
  736. "_objFlags": 0,
  737. "_parent": {
  738. "__id__": 15
  739. },
  740. "_children": [],
  741. "_active": true,
  742. "_level": 4,
  743. "_components": [
  744. {
  745. "__id__": 20
  746. }
  747. ],
  748. "_prefab": {
  749. "__id__": 21
  750. },
  751. "_opacity": 255,
  752. "_color": {
  753. "__type__": "cc.Color",
  754. "r": 0,
  755. "g": 0,
  756. "b": 0,
  757. "a": 255
  758. },
  759. "_contentSize": {
  760. "__type__": "cc.Size",
  761. "width": 184.47,
  762. "height": 25
  763. },
  764. "_anchorPoint": {
  765. "__type__": "cc.Vec2",
  766. "x": 0,
  767. "y": 0
  768. },
  769. "_position": {
  770. "__type__": "cc.Vec3",
  771. "x": -152.78,
  772. "y": 0,
  773. "z": 0
  774. },
  775. "_scale": {
  776. "__type__": "cc.Vec3",
  777. "x": 1,
  778. "y": 1,
  779. "z": 1
  780. },
  781. "_quat": {
  782. "__type__": "cc.Quat",
  783. "x": 0,
  784. "y": 0,
  785. "z": 0,
  786. "w": 1
  787. },
  788. "_skewX": 0,
  789. "_skewY": 0,
  790. "_zIndex": -32768,
  791. "_is3DNode": false,
  792. "groupIndex": 0,
  793. "_id": ""
  794. },
  795. {
  796. "__type__": "cc.Label",
  797. "_name": "",
  798. "_objFlags": 0,
  799. "node": {
  800. "__id__": 19
  801. },
  802. "_enabled": true,
  803. "_srcBlendFactor": 1,
  804. "_dstBlendFactor": 771,
  805. "_useOriginalSize": true,
  806. "_string": " 恢复10点的体力,",
  807. "_N$string": " 恢复10点的体力,",
  808. "_fontSize": 20,
  809. "_lineHeight": 25,
  810. "_enableWrapText": true,
  811. "_N$file": null,
  812. "_isSystemFontUsed": true,
  813. "_spacingX": 0,
  814. "_N$horizontalAlign": 0,
  815. "_N$verticalAlign": 1,
  816. "_N$fontFamily": "Arial",
  817. "_N$overflow": 0,
  818. "_id": ""
  819. },
  820. {
  821. "__type__": "cc.PrefabInfo",
  822. "root": {
  823. "__id__": 1
  824. },
  825. "asset": {
  826. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  827. },
  828. "fileId": "7cSzoN+rpEoYh9SBfI1pAW",
  829. "sync": false
  830. },
  831. {
  832. "__type__": "cc.PrivateNode",
  833. "_name": "RICHTEXT_CHILD",
  834. "_objFlags": 0,
  835. "_parent": {
  836. "__id__": 15
  837. },
  838. "_children": [],
  839. "_active": true,
  840. "_level": 4,
  841. "_components": [
  842. {
  843. "__id__": 23
  844. }
  845. ],
  846. "_prefab": {
  847. "__id__": 24
  848. },
  849. "_opacity": 255,
  850. "_color": {
  851. "__type__": "cc.Color",
  852. "r": 255,
  853. "g": 0,
  854. "b": 0,
  855. "a": 255
  856. },
  857. "_contentSize": {
  858. "__type__": "cc.Size",
  859. "width": 40,
  860. "height": 25
  861. },
  862. "_anchorPoint": {
  863. "__type__": "cc.Vec2",
  864. "x": 0,
  865. "y": 0
  866. },
  867. "_position": {
  868. "__type__": "cc.Vec3",
  869. "x": 31.689999999999998,
  870. "y": 0,
  871. "z": 0
  872. },
  873. "_scale": {
  874. "__type__": "cc.Vec3",
  875. "x": 1,
  876. "y": 1,
  877. "z": 1
  878. },
  879. "_quat": {
  880. "__type__": "cc.Quat",
  881. "x": 0,
  882. "y": 0,
  883. "z": 0,
  884. "w": 1
  885. },
  886. "_skewX": 0,
  887. "_skewY": 0,
  888. "_zIndex": -32768,
  889. "_is3DNode": false,
  890. "groupIndex": 0,
  891. "_id": ""
  892. },
  893. {
  894. "__type__": "cc.Label",
  895. "_name": "",
  896. "_objFlags": 0,
  897. "node": {
  898. "__id__": 22
  899. },
  900. "_enabled": true,
  901. "_srcBlendFactor": 1,
  902. "_dstBlendFactor": 771,
  903. "_useOriginalSize": true,
  904. "_string": "员工",
  905. "_N$string": "员工",
  906. "_fontSize": 20,
  907. "_lineHeight": 25,
  908. "_enableWrapText": true,
  909. "_N$file": null,
  910. "_isSystemFontUsed": true,
  911. "_spacingX": 0,
  912. "_N$horizontalAlign": 0,
  913. "_N$verticalAlign": 1,
  914. "_N$fontFamily": "Arial",
  915. "_N$overflow": 0,
  916. "_id": ""
  917. },
  918. {
  919. "__type__": "cc.PrefabInfo",
  920. "root": {
  921. "__id__": 1
  922. },
  923. "asset": {
  924. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  925. },
  926. "fileId": "60vH6QRBhHQol2APqbC4tc",
  927. "sync": false
  928. },
  929. {
  930. "__type__": "cc.PrivateNode",
  931. "_name": "RICHTEXT_CHILD",
  932. "_objFlags": 0,
  933. "_parent": {
  934. "__id__": 15
  935. },
  936. "_children": [],
  937. "_active": true,
  938. "_level": 4,
  939. "_components": [
  940. {
  941. "__id__": 26
  942. }
  943. ],
  944. "_prefab": {
  945. "__id__": 27
  946. },
  947. "_opacity": 255,
  948. "_color": {
  949. "__type__": "cc.Color",
  950. "r": 0,
  951. "g": 0,
  952. "b": 0,
  953. "a": 255
  954. },
  955. "_contentSize": {
  956. "__type__": "cc.Size",
  957. "width": 80,
  958. "height": 25
  959. },
  960. "_anchorPoint": {
  961. "__type__": "cc.Vec2",
  962. "x": 0,
  963. "y": 0
  964. },
  965. "_position": {
  966. "__type__": "cc.Vec3",
  967. "x": 71.69,
  968. "y": 0,
  969. "z": 0
  970. },
  971. "_scale": {
  972. "__type__": "cc.Vec3",
  973. "x": 1,
  974. "y": 1,
  975. "z": 1
  976. },
  977. "_quat": {
  978. "__type__": "cc.Quat",
  979. "x": 0,
  980. "y": 0,
  981. "z": 0,
  982. "w": 1
  983. },
  984. "_skewX": 0,
  985. "_skewY": 0,
  986. "_zIndex": -32768,
  987. "_is3DNode": false,
  988. "groupIndex": 0,
  989. "_id": ""
  990. },
  991. {
  992. "__type__": "cc.Label",
  993. "_name": "",
  994. "_objFlags": 0,
  995. "node": {
  996. "__id__": 25
  997. },
  998. "_enabled": true,
  999. "_srcBlendFactor": 1,
  1000. "_dstBlendFactor": 771,
  1001. "_useOriginalSize": true,
  1002. "_string": "的体力完",
  1003. "_N$string": "的体力完",
  1004. "_fontSize": 20,
  1005. "_lineHeight": 25,
  1006. "_enableWrapText": true,
  1007. "_N$file": null,
  1008. "_isSystemFontUsed": true,
  1009. "_spacingX": 0,
  1010. "_N$horizontalAlign": 0,
  1011. "_N$verticalAlign": 1,
  1012. "_N$fontFamily": "Arial",
  1013. "_N$overflow": 0,
  1014. "_id": ""
  1015. },
  1016. {
  1017. "__type__": "cc.PrefabInfo",
  1018. "root": {
  1019. "__id__": 1
  1020. },
  1021. "asset": {
  1022. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1023. },
  1024. "fileId": "206CMXZVtJ+qjP6QUXDlKI",
  1025. "sync": false
  1026. },
  1027. {
  1028. "__type__": "cc.PrivateNode",
  1029. "_name": "RICHTEXT_CHILD",
  1030. "_objFlags": 0,
  1031. "_parent": {
  1032. "__id__": 15
  1033. },
  1034. "_children": [],
  1035. "_active": true,
  1036. "_level": 4,
  1037. "_components": [
  1038. {
  1039. "__id__": 29
  1040. }
  1041. ],
  1042. "_prefab": {
  1043. "__id__": 30
  1044. },
  1045. "_opacity": 255,
  1046. "_color": {
  1047. "__type__": "cc.Color",
  1048. "r": 0,
  1049. "g": 0,
  1050. "b": 0,
  1051. "a": 255
  1052. },
  1053. "_contentSize": {
  1054. "__type__": "cc.Size",
  1055. "width": 305.56,
  1056. "height": 25
  1057. },
  1058. "_anchorPoint": {
  1059. "__type__": "cc.Vec2",
  1060. "x": 0,
  1061. "y": 0
  1062. },
  1063. "_position": {
  1064. "__type__": "cc.Vec3",
  1065. "x": -152.78,
  1066. "y": -25,
  1067. "z": 0
  1068. },
  1069. "_scale": {
  1070. "__type__": "cc.Vec3",
  1071. "x": 1,
  1072. "y": 1,
  1073. "z": 1
  1074. },
  1075. "_quat": {
  1076. "__type__": "cc.Quat",
  1077. "x": 0,
  1078. "y": 0,
  1079. "z": 0,
  1080. "w": 1
  1081. },
  1082. "_skewX": 0,
  1083. "_skewY": 0,
  1084. "_zIndex": -32768,
  1085. "_is3DNode": false,
  1086. "groupIndex": 0,
  1087. "_id": ""
  1088. },
  1089. {
  1090. "__type__": "cc.Label",
  1091. "_name": "",
  1092. "_objFlags": 0,
  1093. "node": {
  1094. "__id__": 28
  1095. },
  1096. "_enabled": true,
  1097. "_srcBlendFactor": 1,
  1098. "_dstBlendFactor": 771,
  1099. "_useOriginalSize": true,
  1100. "_string": " 全恢复了就可以去劳动了。是不是",
  1101. "_N$string": " 全恢复了就可以去劳动了。是不是",
  1102. "_fontSize": 20,
  1103. "_lineHeight": 25,
  1104. "_enableWrapText": true,
  1105. "_N$file": null,
  1106. "_isSystemFontUsed": true,
  1107. "_spacingX": 0,
  1108. "_N$horizontalAlign": 0,
  1109. "_N$verticalAlign": 1,
  1110. "_N$fontFamily": "Arial",
  1111. "_N$overflow": 0,
  1112. "_id": ""
  1113. },
  1114. {
  1115. "__type__": "cc.PrefabInfo",
  1116. "root": {
  1117. "__id__": 1
  1118. },
  1119. "asset": {
  1120. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1121. },
  1122. "fileId": "995reV/HdPgpVxmA2RDn2f",
  1123. "sync": false
  1124. },
  1125. {
  1126. "__type__": "cc.PrivateNode",
  1127. "_name": "RICHTEXT_CHILD",
  1128. "_objFlags": 0,
  1129. "_parent": {
  1130. "__id__": 15
  1131. },
  1132. "_children": [],
  1133. "_active": true,
  1134. "_level": 4,
  1135. "_components": [
  1136. {
  1137. "__id__": 32
  1138. }
  1139. ],
  1140. "_prefab": {
  1141. "__id__": 33
  1142. },
  1143. "_opacity": 255,
  1144. "_color": {
  1145. "__type__": "cc.Color",
  1146. "r": 0,
  1147. "g": 0,
  1148. "b": 0,
  1149. "a": 255
  1150. },
  1151. "_contentSize": {
  1152. "__type__": "cc.Size",
  1153. "width": 186.55,
  1154. "height": 25
  1155. },
  1156. "_anchorPoint": {
  1157. "__type__": "cc.Vec2",
  1158. "x": 0,
  1159. "y": 0
  1160. },
  1161. "_position": {
  1162. "__type__": "cc.Vec3",
  1163. "x": -152.78,
  1164. "y": -50,
  1165. "z": 0
  1166. },
  1167. "_scale": {
  1168. "__type__": "cc.Vec3",
  1169. "x": 1,
  1170. "y": 1,
  1171. "z": 1
  1172. },
  1173. "_quat": {
  1174. "__type__": "cc.Quat",
  1175. "x": 0,
  1176. "y": 0,
  1177. "z": 0,
  1178. "w": 1
  1179. },
  1180. "_skewX": 0,
  1181. "_skewY": 0,
  1182. "_zIndex": -32768,
  1183. "_is3DNode": false,
  1184. "groupIndex": 0,
  1185. "_id": ""
  1186. },
  1187. {
  1188. "__type__": "cc.Label",
  1189. "_name": "",
  1190. "_objFlags": 0,
  1191. "node": {
  1192. "__id__": 31
  1193. },
  1194. "_enabled": true,
  1195. "_srcBlendFactor": 1,
  1196. "_dstBlendFactor": 771,
  1197. "_useOriginalSize": true,
  1198. "_string": " 很像给电池充电^^",
  1199. "_N$string": " 很像给电池充电^^",
  1200. "_fontSize": 20,
  1201. "_lineHeight": 25,
  1202. "_enableWrapText": true,
  1203. "_N$file": null,
  1204. "_isSystemFontUsed": true,
  1205. "_spacingX": 0,
  1206. "_N$horizontalAlign": 0,
  1207. "_N$verticalAlign": 1,
  1208. "_N$fontFamily": "Arial",
  1209. "_N$overflow": 0,
  1210. "_id": ""
  1211. },
  1212. {
  1213. "__type__": "cc.PrefabInfo",
  1214. "root": {
  1215. "__id__": 1
  1216. },
  1217. "asset": {
  1218. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1219. },
  1220. "fileId": "b4rMKrsWpN0LJGoNwDj1sK",
  1221. "sync": false
  1222. },
  1223. {
  1224. "__type__": "cc.RichText",
  1225. "_name": "",
  1226. "_objFlags": 0,
  1227. "node": {
  1228. "__id__": 15
  1229. },
  1230. "_enabled": true,
  1231. "_N$string": "<color=#000000> 太好了,房子每次可以\n 恢复10点的体力,</c><color=#FF0000>员工</c><color=#000000>的体力完\n 全恢复了就可以去劳动了。是不是\n 很像给电池充电^^</c>",
  1232. "_N$horizontalAlign": 0,
  1233. "_N$fontSize": 20,
  1234. "_N$font": null,
  1235. "_N$maxWidth": 0,
  1236. "_N$lineHeight": 25,
  1237. "_N$imageAtlas": null,
  1238. "_N$handleTouchEvent": true,
  1239. "_id": ""
  1240. },
  1241. {
  1242. "__type__": "cc.PrefabInfo",
  1243. "root": {
  1244. "__id__": 1
  1245. },
  1246. "asset": {
  1247. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1248. },
  1249. "fileId": "92feP17p1MR5lvmW/liXO8",
  1250. "sync": false
  1251. },
  1252. {
  1253. "__type__": "cc.Sprite",
  1254. "_name": "",
  1255. "_objFlags": 0,
  1256. "node": {
  1257. "__id__": 8
  1258. },
  1259. "_enabled": true,
  1260. "_srcBlendFactor": 770,
  1261. "_dstBlendFactor": 771,
  1262. "_spriteFrame": {
  1263. "__uuid__": "c059390c-7d3d-429f-8b94-a784ad1f518f"
  1264. },
  1265. "_type": 0,
  1266. "_sizeMode": 0,
  1267. "_fillType": 0,
  1268. "_fillCenter": {
  1269. "__type__": "cc.Vec2",
  1270. "x": 0,
  1271. "y": 0
  1272. },
  1273. "_fillStart": 0,
  1274. "_fillRange": 0,
  1275. "_isTrimmedMode": true,
  1276. "_state": 0,
  1277. "_atlas": null,
  1278. "_id": ""
  1279. },
  1280. {
  1281. "__type__": "cc.PrefabInfo",
  1282. "root": {
  1283. "__id__": 1
  1284. },
  1285. "asset": {
  1286. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1287. },
  1288. "fileId": "19nPYa/XFBf4KUDUAQn5v3",
  1289. "sync": false
  1290. },
  1291. {
  1292. "__type__": "cc.Node",
  1293. "_name": "SureBtn",
  1294. "_objFlags": 0,
  1295. "_parent": {
  1296. "__id__": 1
  1297. },
  1298. "_children": [
  1299. {
  1300. "__id__": 39
  1301. }
  1302. ],
  1303. "_active": true,
  1304. "_level": 2,
  1305. "_components": [
  1306. {
  1307. "__id__": 42
  1308. },
  1309. {
  1310. "__id__": 43
  1311. }
  1312. ],
  1313. "_prefab": {
  1314. "__id__": 44
  1315. },
  1316. "_opacity": 255,
  1317. "_color": {
  1318. "__type__": "cc.Color",
  1319. "r": 255,
  1320. "g": 255,
  1321. "b": 255,
  1322. "a": 255
  1323. },
  1324. "_contentSize": {
  1325. "__type__": "cc.Size",
  1326. "width": 82,
  1327. "height": 37
  1328. },
  1329. "_anchorPoint": {
  1330. "__type__": "cc.Vec2",
  1331. "x": 0.5,
  1332. "y": 0.5
  1333. },
  1334. "_position": {
  1335. "__type__": "cc.Vec3",
  1336. "x": 0,
  1337. "y": -270,
  1338. "z": 0
  1339. },
  1340. "_scale": {
  1341. "__type__": "cc.Vec3",
  1342. "x": 2,
  1343. "y": 2,
  1344. "z": 1
  1345. },
  1346. "_quat": {
  1347. "__type__": "cc.Quat",
  1348. "x": 0,
  1349. "y": 0,
  1350. "z": 0,
  1351. "w": 1
  1352. },
  1353. "_skewX": 0,
  1354. "_skewY": 0,
  1355. "_zIndex": 0,
  1356. "_is3DNode": false,
  1357. "groupIndex": 0,
  1358. "_id": ""
  1359. },
  1360. {
  1361. "__type__": "cc.Node",
  1362. "_name": "New Label",
  1363. "_objFlags": 0,
  1364. "_parent": {
  1365. "__id__": 38
  1366. },
  1367. "_children": [],
  1368. "_active": true,
  1369. "_level": 3,
  1370. "_components": [
  1371. {
  1372. "__id__": 40
  1373. }
  1374. ],
  1375. "_prefab": {
  1376. "__id__": 41
  1377. },
  1378. "_opacity": 255,
  1379. "_color": {
  1380. "__type__": "cc.Color",
  1381. "r": 0,
  1382. "g": 0,
  1383. "b": 0,
  1384. "a": 255
  1385. },
  1386. "_contentSize": {
  1387. "__type__": "cc.Size",
  1388. "width": 60,
  1389. "height": 20
  1390. },
  1391. "_anchorPoint": {
  1392. "__type__": "cc.Vec2",
  1393. "x": 0.5,
  1394. "y": 0.5
  1395. },
  1396. "_position": {
  1397. "__type__": "cc.Vec3",
  1398. "x": -1,
  1399. "y": -2,
  1400. "z": 0
  1401. },
  1402. "_scale": {
  1403. "__type__": "cc.Vec3",
  1404. "x": 1,
  1405. "y": 1,
  1406. "z": 1
  1407. },
  1408. "_quat": {
  1409. "__type__": "cc.Quat",
  1410. "x": 0,
  1411. "y": 0,
  1412. "z": 0,
  1413. "w": 1
  1414. },
  1415. "_skewX": 0,
  1416. "_skewY": 0,
  1417. "_zIndex": 0,
  1418. "_is3DNode": false,
  1419. "groupIndex": 0,
  1420. "_rotationX": 0,
  1421. "_rotationY": 0,
  1422. "_id": ""
  1423. },
  1424. {
  1425. "__type__": "cc.Label",
  1426. "_name": "",
  1427. "_objFlags": 0,
  1428. "node": {
  1429. "__id__": 39
  1430. },
  1431. "_enabled": true,
  1432. "_srcBlendFactor": 1,
  1433. "_dstBlendFactor": 771,
  1434. "_useOriginalSize": false,
  1435. "_string": "下一步",
  1436. "_N$string": "下一步",
  1437. "_fontSize": 20,
  1438. "_lineHeight": 20,
  1439. "_enableWrapText": true,
  1440. "_N$file": null,
  1441. "_isSystemFontUsed": true,
  1442. "_spacingX": 0,
  1443. "_N$horizontalAlign": 1,
  1444. "_N$verticalAlign": 1,
  1445. "_N$fontFamily": "Arial",
  1446. "_N$overflow": 0,
  1447. "_id": ""
  1448. },
  1449. {
  1450. "__type__": "cc.PrefabInfo",
  1451. "root": {
  1452. "__id__": 1
  1453. },
  1454. "asset": {
  1455. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1456. },
  1457. "fileId": "f96x3ssB9MRYXwSKGgZUFI",
  1458. "sync": false
  1459. },
  1460. {
  1461. "__type__": "cc.Sprite",
  1462. "_name": "",
  1463. "_objFlags": 0,
  1464. "node": {
  1465. "__id__": 38
  1466. },
  1467. "_enabled": true,
  1468. "_srcBlendFactor": 770,
  1469. "_dstBlendFactor": 771,
  1470. "_spriteFrame": {
  1471. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  1472. },
  1473. "_type": 0,
  1474. "_sizeMode": 0,
  1475. "_fillType": 0,
  1476. "_fillCenter": {
  1477. "__type__": "cc.Vec2",
  1478. "x": 0,
  1479. "y": 0
  1480. },
  1481. "_fillStart": 0,
  1482. "_fillRange": 0,
  1483. "_isTrimmedMode": true,
  1484. "_state": 0,
  1485. "_atlas": null,
  1486. "_id": ""
  1487. },
  1488. {
  1489. "__type__": "cc.Button",
  1490. "_name": "",
  1491. "_objFlags": 0,
  1492. "node": {
  1493. "__id__": 38
  1494. },
  1495. "_enabled": true,
  1496. "duration": 0.1,
  1497. "zoomScale": 1.2,
  1498. "clickEvents": [],
  1499. "_N$interactable": true,
  1500. "_N$enableAutoGrayEffect": false,
  1501. "_N$transition": 3,
  1502. "transition": 3,
  1503. "_N$normalColor": {
  1504. "__type__": "cc.Color",
  1505. "r": 214,
  1506. "g": 214,
  1507. "b": 214,
  1508. "a": 255
  1509. },
  1510. "_N$pressedColor": {
  1511. "__type__": "cc.Color",
  1512. "r": 211,
  1513. "g": 211,
  1514. "b": 211,
  1515. "a": 255
  1516. },
  1517. "pressedColor": {
  1518. "__type__": "cc.Color",
  1519. "r": 211,
  1520. "g": 211,
  1521. "b": 211,
  1522. "a": 255
  1523. },
  1524. "_N$hoverColor": {
  1525. "__type__": "cc.Color",
  1526. "r": 255,
  1527. "g": 255,
  1528. "b": 255,
  1529. "a": 255
  1530. },
  1531. "hoverColor": {
  1532. "__type__": "cc.Color",
  1533. "r": 255,
  1534. "g": 255,
  1535. "b": 255,
  1536. "a": 255
  1537. },
  1538. "_N$disabledColor": {
  1539. "__type__": "cc.Color",
  1540. "r": 124,
  1541. "g": 124,
  1542. "b": 124,
  1543. "a": 255
  1544. },
  1545. "_N$normalSprite": null,
  1546. "_N$pressedSprite": null,
  1547. "pressedSprite": null,
  1548. "_N$hoverSprite": null,
  1549. "hoverSprite": null,
  1550. "_N$disabledSprite": null,
  1551. "_N$target": null,
  1552. "_id": ""
  1553. },
  1554. {
  1555. "__type__": "cc.PrefabInfo",
  1556. "root": {
  1557. "__id__": 1
  1558. },
  1559. "asset": {
  1560. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1561. },
  1562. "fileId": "897nXNY49BmZ6CrYuOM+PE",
  1563. "sync": false
  1564. },
  1565. {
  1566. "__type__": "cc.Node",
  1567. "_name": "info",
  1568. "_objFlags": 0,
  1569. "_parent": {
  1570. "__id__": 1
  1571. },
  1572. "_children": [
  1573. {
  1574. "__id__": 46
  1575. }
  1576. ],
  1577. "_active": false,
  1578. "_level": 2,
  1579. "_components": [
  1580. {
  1581. "__id__": 50
  1582. }
  1583. ],
  1584. "_prefab": {
  1585. "__id__": 51
  1586. },
  1587. "_opacity": 255,
  1588. "_color": {
  1589. "__type__": "cc.Color",
  1590. "r": 255,
  1591. "g": 255,
  1592. "b": 255,
  1593. "a": 255
  1594. },
  1595. "_contentSize": {
  1596. "__type__": "cc.Size",
  1597. "width": 82,
  1598. "height": 37
  1599. },
  1600. "_anchorPoint": {
  1601. "__type__": "cc.Vec2",
  1602. "x": 0.5,
  1603. "y": 0.5
  1604. },
  1605. "_position": {
  1606. "__type__": "cc.Vec3",
  1607. "x": 0,
  1608. "y": -270,
  1609. "z": 0
  1610. },
  1611. "_scale": {
  1612. "__type__": "cc.Vec3",
  1613. "x": 2,
  1614. "y": 2,
  1615. "z": 1
  1616. },
  1617. "_quat": {
  1618. "__type__": "cc.Quat",
  1619. "x": 0,
  1620. "y": 0,
  1621. "z": 0,
  1622. "w": 1
  1623. },
  1624. "_skewX": 0,
  1625. "_skewY": 0,
  1626. "_zIndex": 0,
  1627. "_is3DNode": false,
  1628. "groupIndex": 0,
  1629. "_id": ""
  1630. },
  1631. {
  1632. "__type__": "cc.Node",
  1633. "_name": "SmallArrow",
  1634. "_objFlags": 0,
  1635. "_parent": {
  1636. "__id__": 45
  1637. },
  1638. "_children": [],
  1639. "_active": false,
  1640. "_level": 3,
  1641. "_components": [
  1642. {
  1643. "__id__": 47
  1644. },
  1645. {
  1646. "__id__": 48
  1647. }
  1648. ],
  1649. "_prefab": {
  1650. "__id__": 49
  1651. },
  1652. "_opacity": 255,
  1653. "_color": {
  1654. "__type__": "cc.Color",
  1655. "r": 255,
  1656. "g": 255,
  1657. "b": 255,
  1658. "a": 255
  1659. },
  1660. "_contentSize": {
  1661. "__type__": "cc.Size",
  1662. "width": 50,
  1663. "height": 30
  1664. },
  1665. "_anchorPoint": {
  1666. "__type__": "cc.Vec2",
  1667. "x": 0.5,
  1668. "y": 0.5
  1669. },
  1670. "_position": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 143,
  1673. "y": -74,
  1674. "z": 0
  1675. },
  1676. "_scale": {
  1677. "__type__": "cc.Vec3",
  1678. "x": 1,
  1679. "y": 1,
  1680. "z": 1
  1681. },
  1682. "_quat": {
  1683. "__type__": "cc.Quat",
  1684. "x": 0,
  1685. "y": 0,
  1686. "z": 0,
  1687. "w": 1
  1688. },
  1689. "_skewX": 0,
  1690. "_skewY": 0,
  1691. "_zIndex": 0,
  1692. "_is3DNode": false,
  1693. "groupIndex": 0,
  1694. "_id": ""
  1695. },
  1696. {
  1697. "__type__": "cc.Sprite",
  1698. "_name": "",
  1699. "_objFlags": 0,
  1700. "node": {
  1701. "__id__": 46
  1702. },
  1703. "_enabled": true,
  1704. "_srcBlendFactor": 770,
  1705. "_dstBlendFactor": 771,
  1706. "_spriteFrame": {
  1707. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  1708. },
  1709. "_type": 0,
  1710. "_sizeMode": 1,
  1711. "_fillType": 0,
  1712. "_fillCenter": {
  1713. "__type__": "cc.Vec2",
  1714. "x": 0,
  1715. "y": 0
  1716. },
  1717. "_fillStart": 0,
  1718. "_fillRange": 0,
  1719. "_isTrimmedMode": true,
  1720. "_state": 0,
  1721. "_atlas": null,
  1722. "_id": ""
  1723. },
  1724. {
  1725. "__type__": "cc.Animation",
  1726. "_name": "",
  1727. "_objFlags": 0,
  1728. "node": {
  1729. "__id__": 46
  1730. },
  1731. "_enabled": true,
  1732. "_defaultClip": {
  1733. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  1734. },
  1735. "_clips": [
  1736. {
  1737. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  1738. }
  1739. ],
  1740. "playOnLoad": true,
  1741. "_id": ""
  1742. },
  1743. {
  1744. "__type__": "cc.PrefabInfo",
  1745. "root": {
  1746. "__id__": 1
  1747. },
  1748. "asset": {
  1749. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1750. },
  1751. "fileId": "59rRUH2SpEhokwSmCDj1i8",
  1752. "sync": false
  1753. },
  1754. {
  1755. "__type__": "cc.Sprite",
  1756. "_name": "",
  1757. "_objFlags": 0,
  1758. "node": {
  1759. "__id__": 45
  1760. },
  1761. "_enabled": true,
  1762. "_srcBlendFactor": 770,
  1763. "_dstBlendFactor": 771,
  1764. "_spriteFrame": {
  1765. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  1766. },
  1767. "_type": 0,
  1768. "_sizeMode": 1,
  1769. "_fillType": 0,
  1770. "_fillCenter": {
  1771. "__type__": "cc.Vec2",
  1772. "x": 0,
  1773. "y": 0
  1774. },
  1775. "_fillStart": 0,
  1776. "_fillRange": 0,
  1777. "_isTrimmedMode": true,
  1778. "_state": 0,
  1779. "_atlas": null,
  1780. "_id": ""
  1781. },
  1782. {
  1783. "__type__": "cc.PrefabInfo",
  1784. "root": {
  1785. "__id__": 1
  1786. },
  1787. "asset": {
  1788. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1789. },
  1790. "fileId": "1fXhE/GmpIXZO5rfA6haeG",
  1791. "sync": false
  1792. },
  1793. {
  1794. "__type__": "cc.Node",
  1795. "_name": "richman",
  1796. "_objFlags": 0,
  1797. "_parent": {
  1798. "__id__": 1
  1799. },
  1800. "_children": [],
  1801. "_active": true,
  1802. "_level": 2,
  1803. "_components": [
  1804. {
  1805. "__id__": 53
  1806. }
  1807. ],
  1808. "_prefab": {
  1809. "__id__": 54
  1810. },
  1811. "_opacity": 255,
  1812. "_color": {
  1813. "__type__": "cc.Color",
  1814. "r": 255,
  1815. "g": 255,
  1816. "b": 255,
  1817. "a": 255
  1818. },
  1819. "_contentSize": {
  1820. "__type__": "cc.Size",
  1821. "width": 142,
  1822. "height": 352
  1823. },
  1824. "_anchorPoint": {
  1825. "__type__": "cc.Vec2",
  1826. "x": 0.5,
  1827. "y": 0.5
  1828. },
  1829. "_position": {
  1830. "__type__": "cc.Vec3",
  1831. "x": -166,
  1832. "y": -12,
  1833. "z": 0
  1834. },
  1835. "_scale": {
  1836. "__type__": "cc.Vec3",
  1837. "x": 1,
  1838. "y": 1,
  1839. "z": 1
  1840. },
  1841. "_quat": {
  1842. "__type__": "cc.Quat",
  1843. "x": 0,
  1844. "y": 0,
  1845. "z": 0,
  1846. "w": 1
  1847. },
  1848. "_skewX": 0,
  1849. "_skewY": 0,
  1850. "_zIndex": 0,
  1851. "_is3DNode": false,
  1852. "groupIndex": 0,
  1853. "_id": ""
  1854. },
  1855. {
  1856. "__type__": "cc.Sprite",
  1857. "_name": "",
  1858. "_objFlags": 0,
  1859. "node": {
  1860. "__id__": 52
  1861. },
  1862. "_enabled": true,
  1863. "_srcBlendFactor": 770,
  1864. "_dstBlendFactor": 771,
  1865. "_spriteFrame": {
  1866. "__uuid__": "0ca9ab35-d23c-4e25-8cc0-b29c97940a69"
  1867. },
  1868. "_type": 0,
  1869. "_sizeMode": 1,
  1870. "_fillType": 0,
  1871. "_fillCenter": {
  1872. "__type__": "cc.Vec2",
  1873. "x": 0,
  1874. "y": 0
  1875. },
  1876. "_fillStart": 0,
  1877. "_fillRange": 0,
  1878. "_isTrimmedMode": true,
  1879. "_state": 0,
  1880. "_atlas": null,
  1881. "_id": ""
  1882. },
  1883. {
  1884. "__type__": "cc.PrefabInfo",
  1885. "root": {
  1886. "__id__": 1
  1887. },
  1888. "asset": {
  1889. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1890. },
  1891. "fileId": "92ccwdcI1J3bxBnYY4IfiX",
  1892. "sync": false
  1893. },
  1894. {
  1895. "__type__": "cc.PrefabInfo",
  1896. "root": {
  1897. "__id__": 1
  1898. },
  1899. "asset": {
  1900. "__uuid__": "dbfd58d1-fd3f-423c-9327-a76321e9bf67"
  1901. },
  1902. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  1903. "sync": false
  1904. }
  1905. ]