taskPrefab6.prefab 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390
  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__": 83
  31. },
  32. {
  33. "__id__": 87
  34. },
  35. {
  36. "__id__": 97
  37. }
  38. ],
  39. "_active": true,
  40. "_level": 1,
  41. "_components": [],
  42. "_prefab": {
  43. "__id__": 100
  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__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  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__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  273. },
  274. "fileId": "41Upov3CBBHrf54t71LV8T",
  275. "sync": false
  276. },
  277. {
  278. "__type__": "cc.Node",
  279. "_name": "bg",
  280. "_objFlags": 0,
  281. "_parent": {
  282. "__id__": 1
  283. },
  284. "_children": [
  285. {
  286. "__id__": 9
  287. },
  288. {
  289. "__id__": 27
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 2,
  294. "_components": [
  295. {
  296. "__id__": 81
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 82
  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": 506,
  313. "height": 357
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_position": {
  321. "__type__": "cc.Vec3",
  322. "x": 112,
  323. "y": 215,
  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__": 14
  361. },
  362. {
  363. "__id__": 17
  364. },
  365. {
  366. "__id__": 21
  367. }
  368. ],
  369. "_active": false,
  370. "_level": 3,
  371. "_components": [
  372. {
  373. "__id__": 25
  374. }
  375. ],
  376. "_prefab": {
  377. "__id__": 26
  378. },
  379. "_opacity": 255,
  380. "_color": {
  381. "__type__": "cc.Color",
  382. "r": 0,
  383. "g": 0,
  384. "b": 0,
  385. "a": 255
  386. },
  387. "_contentSize": {
  388. "__type__": "cc.Size",
  389. "width": 384.45,
  390. "height": 140
  391. },
  392. "_anchorPoint": {
  393. "__type__": "cc.Vec2",
  394. "x": 0.5,
  395. "y": 0.5
  396. },
  397. "_position": {
  398. "__type__": "cc.Vec3",
  399. "x": 8.9,
  400. "y": 70,
  401. "z": 0
  402. },
  403. "_scale": {
  404. "__type__": "cc.Vec3",
  405. "x": 1,
  406. "y": 1,
  407. "z": 1
  408. },
  409. "_quat": {
  410. "__type__": "cc.Quat",
  411. "x": 0,
  412. "y": 0,
  413. "z": 0,
  414. "w": 1
  415. },
  416. "_skewX": 0,
  417. "_skewY": 0,
  418. "_zIndex": 0,
  419. "_is3DNode": false,
  420. "groupIndex": 0,
  421. "_rotationX": 0,
  422. "_rotationY": 0,
  423. "_id": ""
  424. },
  425. {
  426. "__type__": "cc.Node",
  427. "_name": "New Label",
  428. "_objFlags": 0,
  429. "_parent": {
  430. "__id__": 9
  431. },
  432. "_children": [],
  433. "_active": false,
  434. "_level": 4,
  435. "_components": [
  436. {
  437. "__id__": 11
  438. },
  439. {
  440. "__id__": 12
  441. }
  442. ],
  443. "_prefab": {
  444. "__id__": 13
  445. },
  446. "_opacity": 255,
  447. "_color": {
  448. "__type__": "cc.Color",
  449. "r": 255,
  450. "g": 0,
  451. "b": 0,
  452. "a": 255
  453. },
  454. "_contentSize": {
  455. "__type__": "cc.Size",
  456. "width": 40,
  457. "height": 20
  458. },
  459. "_anchorPoint": {
  460. "__type__": "cc.Vec2",
  461. "x": 0.5,
  462. "y": 0.5
  463. },
  464. "_position": {
  465. "__type__": "cc.Vec3",
  466. "x": 82.8,
  467. "y": 60.9,
  468. "z": 0
  469. },
  470. "_scale": {
  471. "__type__": "cc.Vec3",
  472. "x": 1,
  473. "y": 1,
  474. "z": 1
  475. },
  476. "_quat": {
  477. "__type__": "cc.Quat",
  478. "x": 0,
  479. "y": 0,
  480. "z": 0,
  481. "w": 1
  482. },
  483. "_skewX": 0,
  484. "_skewY": 0,
  485. "_zIndex": 0,
  486. "_is3DNode": false,
  487. "groupIndex": 0,
  488. "_rotationX": 0,
  489. "_rotationY": 0,
  490. "_id": ""
  491. },
  492. {
  493. "__type__": "cc.Label",
  494. "_name": "",
  495. "_objFlags": 0,
  496. "node": {
  497. "__id__": 10
  498. },
  499. "_enabled": true,
  500. "_srcBlendFactor": 1,
  501. "_dstBlendFactor": 771,
  502. "_useOriginalSize": false,
  503. "_string": "首富",
  504. "_N$string": "首富",
  505. "_fontSize": 20,
  506. "_lineHeight": 20,
  507. "_enableWrapText": true,
  508. "_N$file": null,
  509. "_isSystemFontUsed": true,
  510. "_spacingX": 0,
  511. "_N$horizontalAlign": 0,
  512. "_N$verticalAlign": 0,
  513. "_N$fontFamily": "Arial",
  514. "_N$overflow": 0,
  515. "_id": ""
  516. },
  517. {
  518. "__type__": "cc.Animation",
  519. "_name": "",
  520. "_objFlags": 0,
  521. "node": {
  522. "__id__": 10
  523. },
  524. "_enabled": true,
  525. "_defaultClip": {
  526. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  527. },
  528. "_clips": [
  529. {
  530. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  531. }
  532. ],
  533. "playOnLoad": true,
  534. "_id": ""
  535. },
  536. {
  537. "__type__": "cc.PrefabInfo",
  538. "root": {
  539. "__id__": 1
  540. },
  541. "asset": {
  542. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  543. },
  544. "fileId": "66FhFw1JFIJISlmxqxqWVF",
  545. "sync": false
  546. },
  547. {
  548. "__type__": "cc.Node",
  549. "_name": "New Label",
  550. "_objFlags": 0,
  551. "_parent": {
  552. "__id__": 9
  553. },
  554. "_children": [],
  555. "_active": true,
  556. "_level": 4,
  557. "_components": [
  558. {
  559. "__id__": 15
  560. }
  561. ],
  562. "_prefab": {
  563. "__id__": 16
  564. },
  565. "_opacity": 255,
  566. "_color": {
  567. "__type__": "cc.Color",
  568. "r": 255,
  569. "g": 0,
  570. "b": 0,
  571. "a": 255
  572. },
  573. "_contentSize": {
  574. "__type__": "cc.Size",
  575. "width": 22.25,
  576. "height": 20
  577. },
  578. "_anchorPoint": {
  579. "__type__": "cc.Vec2",
  580. "x": 0.5,
  581. "y": 0.5
  582. },
  583. "_position": {
  584. "__type__": "cc.Vec3",
  585. "x": 150.9,
  586. "y": 0,
  587. "z": 0
  588. },
  589. "_scale": {
  590. "__type__": "cc.Vec3",
  591. "x": 1,
  592. "y": 1,
  593. "z": 1
  594. },
  595. "_quat": {
  596. "__type__": "cc.Quat",
  597. "x": 0,
  598. "y": 0,
  599. "z": 0,
  600. "w": 1
  601. },
  602. "_skewX": 0,
  603. "_skewY": 0,
  604. "_zIndex": 0,
  605. "_is3DNode": false,
  606. "groupIndex": 0,
  607. "_rotationX": 0,
  608. "_rotationY": 0,
  609. "_id": ""
  610. },
  611. {
  612. "__type__": "cc.Label",
  613. "_name": "",
  614. "_objFlags": 0,
  615. "node": {
  616. "__id__": 14
  617. },
  618. "_enabled": true,
  619. "_srcBlendFactor": 1,
  620. "_dstBlendFactor": 771,
  621. "_useOriginalSize": false,
  622. "_string": "15",
  623. "_N$string": "15",
  624. "_fontSize": 20,
  625. "_lineHeight": 20,
  626. "_enableWrapText": true,
  627. "_N$file": null,
  628. "_isSystemFontUsed": true,
  629. "_spacingX": 0,
  630. "_N$horizontalAlign": 0,
  631. "_N$verticalAlign": 0,
  632. "_N$fontFamily": "Arial",
  633. "_N$overflow": 0,
  634. "_id": ""
  635. },
  636. {
  637. "__type__": "cc.PrefabInfo",
  638. "root": {
  639. "__id__": 1
  640. },
  641. "asset": {
  642. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  643. },
  644. "fileId": "d1fiHgV5pMDrfEqnItlhSp",
  645. "sync": false
  646. },
  647. {
  648. "__type__": "cc.Node",
  649. "_name": "New Label",
  650. "_objFlags": 0,
  651. "_parent": {
  652. "__id__": 9
  653. },
  654. "_children": [],
  655. "_active": false,
  656. "_level": 4,
  657. "_components": [
  658. {
  659. "__id__": 18
  660. },
  661. {
  662. "__id__": 19
  663. }
  664. ],
  665. "_prefab": {
  666. "__id__": 20
  667. },
  668. "_opacity": 255,
  669. "_color": {
  670. "__type__": "cc.Color",
  671. "r": 255,
  672. "g": 0,
  673. "b": 0,
  674. "a": 255
  675. },
  676. "_contentSize": {
  677. "__type__": "cc.Size",
  678. "width": 40,
  679. "height": 20
  680. },
  681. "_anchorPoint": {
  682. "__type__": "cc.Vec2",
  683. "x": 0.5,
  684. "y": 0.5
  685. },
  686. "_position": {
  687. "__type__": "cc.Vec3",
  688. "x": -47.1,
  689. "y": -20.5,
  690. "z": 0
  691. },
  692. "_scale": {
  693. "__type__": "cc.Vec3",
  694. "x": 1,
  695. "y": 1,
  696. "z": 1
  697. },
  698. "_quat": {
  699. "__type__": "cc.Quat",
  700. "x": 0,
  701. "y": 0,
  702. "z": 0,
  703. "w": 1
  704. },
  705. "_skewX": 0,
  706. "_skewY": 0,
  707. "_zIndex": 0,
  708. "_is3DNode": false,
  709. "groupIndex": 0,
  710. "_rotationX": 0,
  711. "_rotationY": 0,
  712. "_id": ""
  713. },
  714. {
  715. "__type__": "cc.Label",
  716. "_name": "",
  717. "_objFlags": 0,
  718. "node": {
  719. "__id__": 17
  720. },
  721. "_enabled": true,
  722. "_srcBlendFactor": 1,
  723. "_dstBlendFactor": 771,
  724. "_useOriginalSize": false,
  725. "_string": "人才",
  726. "_N$string": "人才",
  727. "_fontSize": 20,
  728. "_lineHeight": 20,
  729. "_enableWrapText": true,
  730. "_N$file": null,
  731. "_isSystemFontUsed": true,
  732. "_spacingX": 0,
  733. "_N$horizontalAlign": 0,
  734. "_N$verticalAlign": 0,
  735. "_N$fontFamily": "Arial",
  736. "_N$overflow": 0,
  737. "_id": ""
  738. },
  739. {
  740. "__type__": "cc.Animation",
  741. "_name": "",
  742. "_objFlags": 0,
  743. "node": {
  744. "__id__": 17
  745. },
  746. "_enabled": true,
  747. "_defaultClip": {
  748. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  749. },
  750. "_clips": [
  751. {
  752. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  753. }
  754. ],
  755. "playOnLoad": true,
  756. "_id": ""
  757. },
  758. {
  759. "__type__": "cc.PrefabInfo",
  760. "root": {
  761. "__id__": 1
  762. },
  763. "asset": {
  764. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  765. },
  766. "fileId": "30TFEh9ENEtaSfP4X3oVUd",
  767. "sync": false
  768. },
  769. {
  770. "__type__": "cc.Node",
  771. "_name": "New Label",
  772. "_objFlags": 0,
  773. "_parent": {
  774. "__id__": 9
  775. },
  776. "_children": [],
  777. "_active": false,
  778. "_level": 4,
  779. "_components": [
  780. {
  781. "__id__": 22
  782. },
  783. {
  784. "__id__": 23
  785. }
  786. ],
  787. "_prefab": {
  788. "__id__": 24
  789. },
  790. "_opacity": 255,
  791. "_color": {
  792. "__type__": "cc.Color",
  793. "r": 255,
  794. "g": 0,
  795. "b": 0,
  796. "a": 255
  797. },
  798. "_contentSize": {
  799. "__type__": "cc.Size",
  800. "width": 40,
  801. "height": 20
  802. },
  803. "_anchorPoint": {
  804. "__type__": "cc.Vec2",
  805. "x": 0.5,
  806. "y": 0.5
  807. },
  808. "_position": {
  809. "__type__": "cc.Vec3",
  810. "x": -62.5,
  811. "y": 21,
  812. "z": 0
  813. },
  814. "_scale": {
  815. "__type__": "cc.Vec3",
  816. "x": 1,
  817. "y": 1,
  818. "z": 1
  819. },
  820. "_quat": {
  821. "__type__": "cc.Quat",
  822. "x": 0,
  823. "y": 0,
  824. "z": 0,
  825. "w": 1
  826. },
  827. "_skewX": 0,
  828. "_skewY": 0,
  829. "_zIndex": 0,
  830. "_is3DNode": false,
  831. "groupIndex": 0,
  832. "_rotationX": 0,
  833. "_rotationY": 0,
  834. "_id": ""
  835. },
  836. {
  837. "__type__": "cc.Label",
  838. "_name": "",
  839. "_objFlags": 0,
  840. "node": {
  841. "__id__": 21
  842. },
  843. "_enabled": true,
  844. "_srcBlendFactor": 1,
  845. "_dstBlendFactor": 771,
  846. "_useOriginalSize": false,
  847. "_string": "人才",
  848. "_N$string": "人才",
  849. "_fontSize": 20,
  850. "_lineHeight": 20,
  851. "_enableWrapText": true,
  852. "_N$file": null,
  853. "_isSystemFontUsed": true,
  854. "_spacingX": 0,
  855. "_N$horizontalAlign": 0,
  856. "_N$verticalAlign": 0,
  857. "_N$fontFamily": "Arial",
  858. "_N$overflow": 0,
  859. "_id": ""
  860. },
  861. {
  862. "__type__": "cc.Animation",
  863. "_name": "",
  864. "_objFlags": 0,
  865. "node": {
  866. "__id__": 21
  867. },
  868. "_enabled": true,
  869. "_defaultClip": {
  870. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  871. },
  872. "_clips": [
  873. {
  874. "__uuid__": "73afb457-2c0f-47ef-8539-c0e0092b9cdc"
  875. }
  876. ],
  877. "playOnLoad": true,
  878. "_id": ""
  879. },
  880. {
  881. "__type__": "cc.PrefabInfo",
  882. "root": {
  883. "__id__": 1
  884. },
  885. "asset": {
  886. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  887. },
  888. "fileId": "3a+VKIMcBB6pwhcHFxUS0L",
  889. "sync": false
  890. },
  891. {
  892. "__type__": "cc.Label",
  893. "_name": "",
  894. "_objFlags": 0,
  895. "node": {
  896. "__id__": 9
  897. },
  898. "_enabled": true,
  899. "_srcBlendFactor": 1,
  900. "_dstBlendFactor": 771,
  901. "_useOriginalSize": false,
  902. "_string": " 看!地里难道可以长出钻石!\n 赶紧点击收获它。其实地里是生产农作\n物的怎么会有钻石嘛!产生钻石的条件是可\n以产生交易的建筑物,如果 连续交易 次\n 就会获得 一颗钻石。\n这也是一个获得钻石的好机会,越多的店铺\n交易钻石就越多哦。",
  903. "_N$string": " 看!地里难道可以长出钻石!\n 赶紧点击收获它。其实地里是生产农作\n物的怎么会有钻石嘛!产生钻石的条件是可\n以产生交易的建筑物,如果 连续交易 次\n 就会获得 一颗钻石。\n这也是一个获得钻石的好机会,越多的店铺\n交易钻石就越多哦。",
  904. "_fontSize": 20,
  905. "_lineHeight": 20,
  906. "_enableWrapText": true,
  907. "_N$file": null,
  908. "_isSystemFontUsed": true,
  909. "_spacingX": 0,
  910. "_N$horizontalAlign": 0,
  911. "_N$verticalAlign": 0,
  912. "_N$fontFamily": "Arial",
  913. "_N$overflow": 0,
  914. "_id": ""
  915. },
  916. {
  917. "__type__": "cc.PrefabInfo",
  918. "root": {
  919. "__id__": 1
  920. },
  921. "asset": {
  922. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  923. },
  924. "fileId": "3dN5K+j39BUKty7MWkXNqP",
  925. "sync": false
  926. },
  927. {
  928. "__type__": "cc.Node",
  929. "_name": "richtext",
  930. "_objFlags": 0,
  931. "_parent": {
  932. "__id__": 8
  933. },
  934. "_children": [
  935. {
  936. "__id__": 28
  937. },
  938. {
  939. "__id__": 31
  940. },
  941. {
  942. "__id__": 34
  943. },
  944. {
  945. "__id__": 37
  946. },
  947. {
  948. "__id__": 40
  949. },
  950. {
  951. "__id__": 43
  952. },
  953. {
  954. "__id__": 46
  955. },
  956. {
  957. "__id__": 49
  958. },
  959. {
  960. "__id__": 52
  961. },
  962. {
  963. "__id__": 55
  964. },
  965. {
  966. "__id__": 58
  967. },
  968. {
  969. "__id__": 61
  970. },
  971. {
  972. "__id__": 64
  973. },
  974. {
  975. "__id__": 67
  976. },
  977. {
  978. "__id__": 70
  979. },
  980. {
  981. "__id__": 73
  982. },
  983. {
  984. "__id__": 76
  985. }
  986. ],
  987. "_active": true,
  988. "_level": 3,
  989. "_components": [
  990. {
  991. "__id__": 79
  992. }
  993. ],
  994. "_prefab": {
  995. "__id__": 80
  996. },
  997. "_opacity": 255,
  998. "_color": {
  999. "__type__": "cc.Color",
  1000. "r": 255,
  1001. "g": 255,
  1002. "b": 255,
  1003. "a": 255
  1004. },
  1005. "_contentSize": {
  1006. "__type__": "cc.Size",
  1007. "width": 440,
  1008. "height": 125
  1009. },
  1010. "_anchorPoint": {
  1011. "__type__": "cc.Vec2",
  1012. "x": 0.5,
  1013. "y": 0.5
  1014. },
  1015. "_position": {
  1016. "__type__": "cc.Vec3",
  1017. "x": 11,
  1018. "y": 61.4,
  1019. "z": 0
  1020. },
  1021. "_scale": {
  1022. "__type__": "cc.Vec3",
  1023. "x": 1,
  1024. "y": 1,
  1025. "z": 1
  1026. },
  1027. "_quat": {
  1028. "__type__": "cc.Quat",
  1029. "x": 0,
  1030. "y": 0,
  1031. "z": 0,
  1032. "w": 1
  1033. },
  1034. "_skewX": 0,
  1035. "_skewY": 0,
  1036. "_zIndex": 0,
  1037. "_is3DNode": false,
  1038. "groupIndex": 0,
  1039. "_rotationX": 0,
  1040. "_rotationY": 0,
  1041. "_id": ""
  1042. },
  1043. {
  1044. "__type__": "cc.PrivateNode",
  1045. "_name": "RICHTEXT_CHILD",
  1046. "_objFlags": 0,
  1047. "_parent": {
  1048. "__id__": 27
  1049. },
  1050. "_children": [],
  1051. "_active": true,
  1052. "_level": 4,
  1053. "_components": [
  1054. {
  1055. "__id__": 29
  1056. }
  1057. ],
  1058. "_prefab": {
  1059. "__id__": 30
  1060. },
  1061. "_opacity": 255,
  1062. "_color": {
  1063. "__type__": "cc.Color",
  1064. "r": 0,
  1065. "g": 0,
  1066. "b": 0,
  1067. "a": 255
  1068. },
  1069. "_contentSize": {
  1070. "__type__": "cc.Size",
  1071. "width": 400,
  1072. "height": 25
  1073. },
  1074. "_anchorPoint": {
  1075. "__type__": "cc.Vec2",
  1076. "x": 0,
  1077. "y": 0
  1078. },
  1079. "_position": {
  1080. "__type__": "cc.Vec3",
  1081. "x": -220,
  1082. "y": 37.5,
  1083. "z": 0
  1084. },
  1085. "_scale": {
  1086. "__type__": "cc.Vec3",
  1087. "x": 1,
  1088. "y": 1,
  1089. "z": 1
  1090. },
  1091. "_quat": {
  1092. "__type__": "cc.Quat",
  1093. "x": 0,
  1094. "y": 0,
  1095. "z": 0,
  1096. "w": 1
  1097. },
  1098. "_skewX": 0,
  1099. "_skewY": 0,
  1100. "_zIndex": -32768,
  1101. "_is3DNode": false,
  1102. "groupIndex": 0,
  1103. "_id": ""
  1104. },
  1105. {
  1106. "__type__": "cc.Label",
  1107. "_name": "",
  1108. "_objFlags": 0,
  1109. "node": {
  1110. "__id__": 28
  1111. },
  1112. "_enabled": true,
  1113. "_srcBlendFactor": 1,
  1114. "_dstBlendFactor": 771,
  1115. "_useOriginalSize": true,
  1116. "_string": "农田、采木场、矿坑、商铺产生多次交易后,",
  1117. "_N$string": "农田、采木场、矿坑、商铺产生多次交易后,",
  1118. "_fontSize": 20,
  1119. "_lineHeight": 25,
  1120. "_enableWrapText": true,
  1121. "_N$file": null,
  1122. "_isSystemFontUsed": true,
  1123. "_spacingX": 0,
  1124. "_N$horizontalAlign": 0,
  1125. "_N$verticalAlign": 1,
  1126. "_N$fontFamily": "Arial",
  1127. "_N$overflow": 0,
  1128. "_id": ""
  1129. },
  1130. {
  1131. "__type__": "cc.PrefabInfo",
  1132. "root": {
  1133. "__id__": 1
  1134. },
  1135. "asset": {
  1136. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1137. },
  1138. "fileId": "5aUGl0+v9Ad7zgWLwS8vTk",
  1139. "sync": false
  1140. },
  1141. {
  1142. "__type__": "cc.PrivateNode",
  1143. "_name": "RICHTEXT_CHILD",
  1144. "_objFlags": 0,
  1145. "_parent": {
  1146. "__id__": 27
  1147. },
  1148. "_children": [],
  1149. "_active": true,
  1150. "_level": 4,
  1151. "_components": [
  1152. {
  1153. "__id__": 32
  1154. }
  1155. ],
  1156. "_prefab": {
  1157. "__id__": 33
  1158. },
  1159. "_opacity": 255,
  1160. "_color": {
  1161. "__type__": "cc.Color",
  1162. "r": 0,
  1163. "g": 0,
  1164. "b": 0,
  1165. "a": 255
  1166. },
  1167. "_contentSize": {
  1168. "__type__": "cc.Size",
  1169. "width": 440,
  1170. "height": 25
  1171. },
  1172. "_anchorPoint": {
  1173. "__type__": "cc.Vec2",
  1174. "x": 0,
  1175. "y": 0
  1176. },
  1177. "_position": {
  1178. "__type__": "cc.Vec3",
  1179. "x": -220,
  1180. "y": 12.5,
  1181. "z": 0
  1182. },
  1183. "_scale": {
  1184. "__type__": "cc.Vec3",
  1185. "x": 1,
  1186. "y": 1,
  1187. "z": 1
  1188. },
  1189. "_quat": {
  1190. "__type__": "cc.Quat",
  1191. "x": 0,
  1192. "y": 0,
  1193. "z": 0,
  1194. "w": 1
  1195. },
  1196. "_skewX": 0,
  1197. "_skewY": 0,
  1198. "_zIndex": -32768,
  1199. "_is3DNode": false,
  1200. "groupIndex": 0,
  1201. "_id": ""
  1202. },
  1203. {
  1204. "__type__": "cc.Label",
  1205. "_name": "",
  1206. "_objFlags": 0,
  1207. "node": {
  1208. "__id__": 31
  1209. },
  1210. "_enabled": true,
  1211. "_srcBlendFactor": 1,
  1212. "_dstBlendFactor": 771,
  1213. "_useOriginalSize": true,
  1214. "_string": "可收获钻石。交易次数越多,收获的钻石就越多。",
  1215. "_N$string": "可收获钻石。交易次数越多,收获的钻石就越多。",
  1216. "_fontSize": 20,
  1217. "_lineHeight": 25,
  1218. "_enableWrapText": true,
  1219. "_N$file": null,
  1220. "_isSystemFontUsed": true,
  1221. "_spacingX": 0,
  1222. "_N$horizontalAlign": 0,
  1223. "_N$verticalAlign": 1,
  1224. "_N$fontFamily": "Arial",
  1225. "_N$overflow": 0,
  1226. "_id": ""
  1227. },
  1228. {
  1229. "__type__": "cc.PrefabInfo",
  1230. "root": {
  1231. "__id__": 1
  1232. },
  1233. "asset": {
  1234. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1235. },
  1236. "fileId": "c7/c4AHAlHZq4RlkKi+YVz",
  1237. "sync": false
  1238. },
  1239. {
  1240. "__type__": "cc.PrivateNode",
  1241. "_name": "RICHTEXT_CHILD",
  1242. "_objFlags": 0,
  1243. "_parent": {
  1244. "__id__": 27
  1245. },
  1246. "_children": [],
  1247. "_active": true,
  1248. "_level": 4,
  1249. "_components": [
  1250. {
  1251. "__id__": 35
  1252. }
  1253. ],
  1254. "_prefab": {
  1255. "__id__": 36
  1256. },
  1257. "_opacity": 255,
  1258. "_color": {
  1259. "__type__": "cc.Color",
  1260. "r": 0,
  1261. "g": 0,
  1262. "b": 0,
  1263. "a": 255
  1264. },
  1265. "_contentSize": {
  1266. "__type__": "cc.Size",
  1267. "width": 40,
  1268. "height": 25
  1269. },
  1270. "_anchorPoint": {
  1271. "__type__": "cc.Vec2",
  1272. "x": 0,
  1273. "y": 0
  1274. },
  1275. "_position": {
  1276. "__type__": "cc.Vec3",
  1277. "x": -220,
  1278. "y": -12.5,
  1279. "z": 0
  1280. },
  1281. "_scale": {
  1282. "__type__": "cc.Vec3",
  1283. "x": 1,
  1284. "y": 1,
  1285. "z": 1
  1286. },
  1287. "_quat": {
  1288. "__type__": "cc.Quat",
  1289. "x": 0,
  1290. "y": 0,
  1291. "z": 0,
  1292. "w": 1
  1293. },
  1294. "_skewX": 0,
  1295. "_skewY": 0,
  1296. "_zIndex": -32768,
  1297. "_is3DNode": false,
  1298. "groupIndex": 0,
  1299. "_id": ""
  1300. },
  1301. {
  1302. "__type__": "cc.Label",
  1303. "_name": "",
  1304. "_objFlags": 0,
  1305. "node": {
  1306. "__id__": 34
  1307. },
  1308. "_enabled": true,
  1309. "_srcBlendFactor": 1,
  1310. "_dstBlendFactor": 771,
  1311. "_useOriginalSize": true,
  1312. "_string": "交易",
  1313. "_N$string": "交易",
  1314. "_fontSize": 20,
  1315. "_lineHeight": 25,
  1316. "_enableWrapText": true,
  1317. "_N$file": null,
  1318. "_isSystemFontUsed": true,
  1319. "_spacingX": 0,
  1320. "_N$horizontalAlign": 0,
  1321. "_N$verticalAlign": 1,
  1322. "_N$fontFamily": "Arial",
  1323. "_N$overflow": 0,
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.PrefabInfo",
  1328. "root": {
  1329. "__id__": 1
  1330. },
  1331. "asset": {
  1332. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1333. },
  1334. "fileId": "54/QshMBtIubFe+kCh7Rnv",
  1335. "sync": false
  1336. },
  1337. {
  1338. "__type__": "cc.PrivateNode",
  1339. "_name": "RICHTEXT_CHILD",
  1340. "_objFlags": 0,
  1341. "_parent": {
  1342. "__id__": 27
  1343. },
  1344. "_children": [],
  1345. "_active": true,
  1346. "_level": 4,
  1347. "_components": [
  1348. {
  1349. "__id__": 38
  1350. }
  1351. ],
  1352. "_prefab": {
  1353. "__id__": 39
  1354. },
  1355. "_opacity": 255,
  1356. "_color": {
  1357. "__type__": "cc.Color",
  1358. "r": 255,
  1359. "g": 0,
  1360. "b": 0,
  1361. "a": 255
  1362. },
  1363. "_contentSize": {
  1364. "__type__": "cc.Size",
  1365. "width": 11.12,
  1366. "height": 25
  1367. },
  1368. "_anchorPoint": {
  1369. "__type__": "cc.Vec2",
  1370. "x": 0,
  1371. "y": 0
  1372. },
  1373. "_position": {
  1374. "__type__": "cc.Vec3",
  1375. "x": -180,
  1376. "y": -12.5,
  1377. "z": 0
  1378. },
  1379. "_scale": {
  1380. "__type__": "cc.Vec3",
  1381. "x": 1,
  1382. "y": 1,
  1383. "z": 1
  1384. },
  1385. "_quat": {
  1386. "__type__": "cc.Quat",
  1387. "x": 0,
  1388. "y": 0,
  1389. "z": 0,
  1390. "w": 1
  1391. },
  1392. "_skewX": 0,
  1393. "_skewY": 0,
  1394. "_zIndex": -32768,
  1395. "_is3DNode": false,
  1396. "groupIndex": 0,
  1397. "_id": ""
  1398. },
  1399. {
  1400. "__type__": "cc.Label",
  1401. "_name": "",
  1402. "_objFlags": 0,
  1403. "node": {
  1404. "__id__": 37
  1405. },
  1406. "_enabled": true,
  1407. "_srcBlendFactor": 1,
  1408. "_dstBlendFactor": 771,
  1409. "_useOriginalSize": true,
  1410. "_string": "2",
  1411. "_N$string": "2",
  1412. "_fontSize": 20,
  1413. "_lineHeight": 25,
  1414. "_enableWrapText": true,
  1415. "_N$file": null,
  1416. "_isSystemFontUsed": true,
  1417. "_spacingX": 0,
  1418. "_N$horizontalAlign": 0,
  1419. "_N$verticalAlign": 1,
  1420. "_N$fontFamily": "Arial",
  1421. "_N$overflow": 0,
  1422. "_id": ""
  1423. },
  1424. {
  1425. "__type__": "cc.PrefabInfo",
  1426. "root": {
  1427. "__id__": 1
  1428. },
  1429. "asset": {
  1430. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1431. },
  1432. "fileId": "7a7Wy4HjBJsIAA1V7TrTJd",
  1433. "sync": false
  1434. },
  1435. {
  1436. "__type__": "cc.PrivateNode",
  1437. "_name": "RICHTEXT_CHILD",
  1438. "_objFlags": 0,
  1439. "_parent": {
  1440. "__id__": 27
  1441. },
  1442. "_children": [],
  1443. "_active": true,
  1444. "_level": 4,
  1445. "_components": [
  1446. {
  1447. "__id__": 41
  1448. }
  1449. ],
  1450. "_prefab": {
  1451. "__id__": 42
  1452. },
  1453. "_opacity": 255,
  1454. "_color": {
  1455. "__type__": "cc.Color",
  1456. "r": 0,
  1457. "g": 0,
  1458. "b": 0,
  1459. "a": 255
  1460. },
  1461. "_contentSize": {
  1462. "__type__": "cc.Size",
  1463. "width": 100,
  1464. "height": 25
  1465. },
  1466. "_anchorPoint": {
  1467. "__type__": "cc.Vec2",
  1468. "x": 0,
  1469. "y": 0
  1470. },
  1471. "_position": {
  1472. "__type__": "cc.Vec3",
  1473. "x": -168.88,
  1474. "y": -12.5,
  1475. "z": 0
  1476. },
  1477. "_scale": {
  1478. "__type__": "cc.Vec3",
  1479. "x": 1,
  1480. "y": 1,
  1481. "z": 1
  1482. },
  1483. "_quat": {
  1484. "__type__": "cc.Quat",
  1485. "x": 0,
  1486. "y": 0,
  1487. "z": 0,
  1488. "w": 1
  1489. },
  1490. "_skewX": 0,
  1491. "_skewY": 0,
  1492. "_zIndex": -32768,
  1493. "_is3DNode": false,
  1494. "groupIndex": 0,
  1495. "_id": ""
  1496. },
  1497. {
  1498. "__type__": "cc.Label",
  1499. "_name": "",
  1500. "_objFlags": 0,
  1501. "node": {
  1502. "__id__": 40
  1503. },
  1504. "_enabled": true,
  1505. "_srcBlendFactor": 1,
  1506. "_dstBlendFactor": 771,
  1507. "_useOriginalSize": true,
  1508. "_string": "次,可获得",
  1509. "_N$string": "次,可获得",
  1510. "_fontSize": 20,
  1511. "_lineHeight": 25,
  1512. "_enableWrapText": true,
  1513. "_N$file": null,
  1514. "_isSystemFontUsed": true,
  1515. "_spacingX": 0,
  1516. "_N$horizontalAlign": 0,
  1517. "_N$verticalAlign": 1,
  1518. "_N$fontFamily": "Arial",
  1519. "_N$overflow": 0,
  1520. "_id": ""
  1521. },
  1522. {
  1523. "__type__": "cc.PrefabInfo",
  1524. "root": {
  1525. "__id__": 1
  1526. },
  1527. "asset": {
  1528. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1529. },
  1530. "fileId": "c6d6IjR35JZonbIrT3TeCz",
  1531. "sync": false
  1532. },
  1533. {
  1534. "__type__": "cc.PrivateNode",
  1535. "_name": "RICHTEXT_CHILD",
  1536. "_objFlags": 0,
  1537. "_parent": {
  1538. "__id__": 27
  1539. },
  1540. "_children": [],
  1541. "_active": true,
  1542. "_level": 4,
  1543. "_components": [
  1544. {
  1545. "__id__": 44
  1546. }
  1547. ],
  1548. "_prefab": {
  1549. "__id__": 45
  1550. },
  1551. "_opacity": 255,
  1552. "_color": {
  1553. "__type__": "cc.Color",
  1554. "r": 255,
  1555. "g": 0,
  1556. "b": 0,
  1557. "a": 255
  1558. },
  1559. "_contentSize": {
  1560. "__type__": "cc.Size",
  1561. "width": 11.12,
  1562. "height": 25
  1563. },
  1564. "_anchorPoint": {
  1565. "__type__": "cc.Vec2",
  1566. "x": 0,
  1567. "y": 0
  1568. },
  1569. "_position": {
  1570. "__type__": "cc.Vec3",
  1571. "x": -68.88,
  1572. "y": -12.5,
  1573. "z": 0
  1574. },
  1575. "_scale": {
  1576. "__type__": "cc.Vec3",
  1577. "x": 1,
  1578. "y": 1,
  1579. "z": 1
  1580. },
  1581. "_quat": {
  1582. "__type__": "cc.Quat",
  1583. "x": 0,
  1584. "y": 0,
  1585. "z": 0,
  1586. "w": 1
  1587. },
  1588. "_skewX": 0,
  1589. "_skewY": 0,
  1590. "_zIndex": -32768,
  1591. "_is3DNode": false,
  1592. "groupIndex": 0,
  1593. "_id": ""
  1594. },
  1595. {
  1596. "__type__": "cc.Label",
  1597. "_name": "",
  1598. "_objFlags": 0,
  1599. "node": {
  1600. "__id__": 43
  1601. },
  1602. "_enabled": true,
  1603. "_srcBlendFactor": 1,
  1604. "_dstBlendFactor": 771,
  1605. "_useOriginalSize": true,
  1606. "_string": "1",
  1607. "_N$string": "1",
  1608. "_fontSize": 20,
  1609. "_lineHeight": 25,
  1610. "_enableWrapText": true,
  1611. "_N$file": null,
  1612. "_isSystemFontUsed": true,
  1613. "_spacingX": 0,
  1614. "_N$horizontalAlign": 0,
  1615. "_N$verticalAlign": 1,
  1616. "_N$fontFamily": "Arial",
  1617. "_N$overflow": 0,
  1618. "_id": ""
  1619. },
  1620. {
  1621. "__type__": "cc.PrefabInfo",
  1622. "root": {
  1623. "__id__": 1
  1624. },
  1625. "asset": {
  1626. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1627. },
  1628. "fileId": "30WkoztZhLE4E0rEiIAu7h",
  1629. "sync": false
  1630. },
  1631. {
  1632. "__type__": "cc.PrivateNode",
  1633. "_name": "RICHTEXT_CHILD",
  1634. "_objFlags": 0,
  1635. "_parent": {
  1636. "__id__": 27
  1637. },
  1638. "_children": [],
  1639. "_active": true,
  1640. "_level": 4,
  1641. "_components": [
  1642. {
  1643. "__id__": 47
  1644. }
  1645. ],
  1646. "_prefab": {
  1647. "__id__": 48
  1648. },
  1649. "_opacity": 255,
  1650. "_color": {
  1651. "__type__": "cc.Color",
  1652. "r": 0,
  1653. "g": 0,
  1654. "b": 0,
  1655. "a": 255
  1656. },
  1657. "_contentSize": {
  1658. "__type__": "cc.Size",
  1659. "width": 60,
  1660. "height": 25
  1661. },
  1662. "_anchorPoint": {
  1663. "__type__": "cc.Vec2",
  1664. "x": 0,
  1665. "y": 0
  1666. },
  1667. "_position": {
  1668. "__type__": "cc.Vec3",
  1669. "x": -57.75999999999999,
  1670. "y": -12.5,
  1671. "z": 0
  1672. },
  1673. "_scale": {
  1674. "__type__": "cc.Vec3",
  1675. "x": 1,
  1676. "y": 1,
  1677. "z": 1
  1678. },
  1679. "_quat": {
  1680. "__type__": "cc.Quat",
  1681. "x": 0,
  1682. "y": 0,
  1683. "z": 0,
  1684. "w": 1
  1685. },
  1686. "_skewX": 0,
  1687. "_skewY": 0,
  1688. "_zIndex": -32768,
  1689. "_is3DNode": false,
  1690. "groupIndex": 0,
  1691. "_id": ""
  1692. },
  1693. {
  1694. "__type__": "cc.Label",
  1695. "_name": "",
  1696. "_objFlags": 0,
  1697. "node": {
  1698. "__id__": 46
  1699. },
  1700. "_enabled": true,
  1701. "_srcBlendFactor": 1,
  1702. "_dstBlendFactor": 771,
  1703. "_useOriginalSize": true,
  1704. "_string": "颗钻石",
  1705. "_N$string": "颗钻石",
  1706. "_fontSize": 20,
  1707. "_lineHeight": 25,
  1708. "_enableWrapText": true,
  1709. "_N$file": null,
  1710. "_isSystemFontUsed": true,
  1711. "_spacingX": 0,
  1712. "_N$horizontalAlign": 0,
  1713. "_N$verticalAlign": 1,
  1714. "_N$fontFamily": "Arial",
  1715. "_N$overflow": 0,
  1716. "_id": ""
  1717. },
  1718. {
  1719. "__type__": "cc.PrefabInfo",
  1720. "root": {
  1721. "__id__": 1
  1722. },
  1723. "asset": {
  1724. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1725. },
  1726. "fileId": "51QNGnFeNJVL/+QMRlbKsf",
  1727. "sync": false
  1728. },
  1729. {
  1730. "__type__": "cc.PrivateNode",
  1731. "_name": "RICHTEXT_CHILD",
  1732. "_objFlags": 0,
  1733. "_parent": {
  1734. "__id__": 27
  1735. },
  1736. "_children": [],
  1737. "_active": true,
  1738. "_level": 4,
  1739. "_components": [
  1740. {
  1741. "__id__": 50
  1742. }
  1743. ],
  1744. "_prefab": {
  1745. "__id__": 51
  1746. },
  1747. "_opacity": 255,
  1748. "_color": {
  1749. "__type__": "cc.Color",
  1750. "r": 0,
  1751. "g": 0,
  1752. "b": 0,
  1753. "a": 255
  1754. },
  1755. "_contentSize": {
  1756. "__type__": "cc.Size",
  1757. "width": 40,
  1758. "height": 25
  1759. },
  1760. "_anchorPoint": {
  1761. "__type__": "cc.Vec2",
  1762. "x": 0,
  1763. "y": 0
  1764. },
  1765. "_position": {
  1766. "__type__": "cc.Vec3",
  1767. "x": -220,
  1768. "y": -37.5,
  1769. "z": 0
  1770. },
  1771. "_scale": {
  1772. "__type__": "cc.Vec3",
  1773. "x": 1,
  1774. "y": 1,
  1775. "z": 1
  1776. },
  1777. "_quat": {
  1778. "__type__": "cc.Quat",
  1779. "x": 0,
  1780. "y": 0,
  1781. "z": 0,
  1782. "w": 1
  1783. },
  1784. "_skewX": 0,
  1785. "_skewY": 0,
  1786. "_zIndex": -32768,
  1787. "_is3DNode": false,
  1788. "groupIndex": 0,
  1789. "_id": ""
  1790. },
  1791. {
  1792. "__type__": "cc.Label",
  1793. "_name": "",
  1794. "_objFlags": 0,
  1795. "node": {
  1796. "__id__": 49
  1797. },
  1798. "_enabled": true,
  1799. "_srcBlendFactor": 1,
  1800. "_dstBlendFactor": 771,
  1801. "_useOriginalSize": true,
  1802. "_string": "交易",
  1803. "_N$string": "交易",
  1804. "_fontSize": 20,
  1805. "_lineHeight": 25,
  1806. "_enableWrapText": true,
  1807. "_N$file": null,
  1808. "_isSystemFontUsed": true,
  1809. "_spacingX": 0,
  1810. "_N$horizontalAlign": 0,
  1811. "_N$verticalAlign": 1,
  1812. "_N$fontFamily": "Arial",
  1813. "_N$overflow": 0,
  1814. "_id": ""
  1815. },
  1816. {
  1817. "__type__": "cc.PrefabInfo",
  1818. "root": {
  1819. "__id__": 1
  1820. },
  1821. "asset": {
  1822. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1823. },
  1824. "fileId": "a0+50S9QdCoZl7NHZpvYzh",
  1825. "sync": false
  1826. },
  1827. {
  1828. "__type__": "cc.PrivateNode",
  1829. "_name": "RICHTEXT_CHILD",
  1830. "_objFlags": 0,
  1831. "_parent": {
  1832. "__id__": 27
  1833. },
  1834. "_children": [],
  1835. "_active": true,
  1836. "_level": 4,
  1837. "_components": [
  1838. {
  1839. "__id__": 53
  1840. }
  1841. ],
  1842. "_prefab": {
  1843. "__id__": 54
  1844. },
  1845. "_opacity": 255,
  1846. "_color": {
  1847. "__type__": "cc.Color",
  1848. "r": 255,
  1849. "g": 0,
  1850. "b": 0,
  1851. "a": 255
  1852. },
  1853. "_contentSize": {
  1854. "__type__": "cc.Size",
  1855. "width": 11.12,
  1856. "height": 25
  1857. },
  1858. "_anchorPoint": {
  1859. "__type__": "cc.Vec2",
  1860. "x": 0,
  1861. "y": 0
  1862. },
  1863. "_position": {
  1864. "__type__": "cc.Vec3",
  1865. "x": -180,
  1866. "y": -37.5,
  1867. "z": 0
  1868. },
  1869. "_scale": {
  1870. "__type__": "cc.Vec3",
  1871. "x": 1,
  1872. "y": 1,
  1873. "z": 1
  1874. },
  1875. "_quat": {
  1876. "__type__": "cc.Quat",
  1877. "x": 0,
  1878. "y": 0,
  1879. "z": 0,
  1880. "w": 1
  1881. },
  1882. "_skewX": 0,
  1883. "_skewY": 0,
  1884. "_zIndex": -32768,
  1885. "_is3DNode": false,
  1886. "groupIndex": 0,
  1887. "_id": ""
  1888. },
  1889. {
  1890. "__type__": "cc.Label",
  1891. "_name": "",
  1892. "_objFlags": 0,
  1893. "node": {
  1894. "__id__": 52
  1895. },
  1896. "_enabled": true,
  1897. "_srcBlendFactor": 1,
  1898. "_dstBlendFactor": 771,
  1899. "_useOriginalSize": true,
  1900. "_string": "5",
  1901. "_N$string": "5",
  1902. "_fontSize": 20,
  1903. "_lineHeight": 25,
  1904. "_enableWrapText": true,
  1905. "_N$file": null,
  1906. "_isSystemFontUsed": true,
  1907. "_spacingX": 0,
  1908. "_N$horizontalAlign": 0,
  1909. "_N$verticalAlign": 1,
  1910. "_N$fontFamily": "Arial",
  1911. "_N$overflow": 0,
  1912. "_id": ""
  1913. },
  1914. {
  1915. "__type__": "cc.PrefabInfo",
  1916. "root": {
  1917. "__id__": 1
  1918. },
  1919. "asset": {
  1920. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  1921. },
  1922. "fileId": "98WBWop2hH5559vroNAnXN",
  1923. "sync": false
  1924. },
  1925. {
  1926. "__type__": "cc.PrivateNode",
  1927. "_name": "RICHTEXT_CHILD",
  1928. "_objFlags": 0,
  1929. "_parent": {
  1930. "__id__": 27
  1931. },
  1932. "_children": [],
  1933. "_active": true,
  1934. "_level": 4,
  1935. "_components": [
  1936. {
  1937. "__id__": 56
  1938. }
  1939. ],
  1940. "_prefab": {
  1941. "__id__": 57
  1942. },
  1943. "_opacity": 255,
  1944. "_color": {
  1945. "__type__": "cc.Color",
  1946. "r": 0,
  1947. "g": 0,
  1948. "b": 0,
  1949. "a": 255
  1950. },
  1951. "_contentSize": {
  1952. "__type__": "cc.Size",
  1953. "width": 100,
  1954. "height": 25
  1955. },
  1956. "_anchorPoint": {
  1957. "__type__": "cc.Vec2",
  1958. "x": 0,
  1959. "y": 0
  1960. },
  1961. "_position": {
  1962. "__type__": "cc.Vec3",
  1963. "x": -168.88,
  1964. "y": -37.5,
  1965. "z": 0
  1966. },
  1967. "_scale": {
  1968. "__type__": "cc.Vec3",
  1969. "x": 1,
  1970. "y": 1,
  1971. "z": 1
  1972. },
  1973. "_quat": {
  1974. "__type__": "cc.Quat",
  1975. "x": 0,
  1976. "y": 0,
  1977. "z": 0,
  1978. "w": 1
  1979. },
  1980. "_skewX": 0,
  1981. "_skewY": 0,
  1982. "_zIndex": -32768,
  1983. "_is3DNode": false,
  1984. "groupIndex": 0,
  1985. "_id": ""
  1986. },
  1987. {
  1988. "__type__": "cc.Label",
  1989. "_name": "",
  1990. "_objFlags": 0,
  1991. "node": {
  1992. "__id__": 55
  1993. },
  1994. "_enabled": true,
  1995. "_srcBlendFactor": 1,
  1996. "_dstBlendFactor": 771,
  1997. "_useOriginalSize": true,
  1998. "_string": "次,可获得",
  1999. "_N$string": "次,可获得",
  2000. "_fontSize": 20,
  2001. "_lineHeight": 25,
  2002. "_enableWrapText": true,
  2003. "_N$file": null,
  2004. "_isSystemFontUsed": true,
  2005. "_spacingX": 0,
  2006. "_N$horizontalAlign": 0,
  2007. "_N$verticalAlign": 1,
  2008. "_N$fontFamily": "Arial",
  2009. "_N$overflow": 0,
  2010. "_id": ""
  2011. },
  2012. {
  2013. "__type__": "cc.PrefabInfo",
  2014. "root": {
  2015. "__id__": 1
  2016. },
  2017. "asset": {
  2018. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2019. },
  2020. "fileId": "83XyB9p/tN/4HEPPeBo7T6",
  2021. "sync": false
  2022. },
  2023. {
  2024. "__type__": "cc.PrivateNode",
  2025. "_name": "RICHTEXT_CHILD",
  2026. "_objFlags": 0,
  2027. "_parent": {
  2028. "__id__": 27
  2029. },
  2030. "_children": [],
  2031. "_active": true,
  2032. "_level": 4,
  2033. "_components": [
  2034. {
  2035. "__id__": 59
  2036. }
  2037. ],
  2038. "_prefab": {
  2039. "__id__": 60
  2040. },
  2041. "_opacity": 255,
  2042. "_color": {
  2043. "__type__": "cc.Color",
  2044. "r": 255,
  2045. "g": 0,
  2046. "b": 0,
  2047. "a": 255
  2048. },
  2049. "_contentSize": {
  2050. "__type__": "cc.Size",
  2051. "width": 11.12,
  2052. "height": 25
  2053. },
  2054. "_anchorPoint": {
  2055. "__type__": "cc.Vec2",
  2056. "x": 0,
  2057. "y": 0
  2058. },
  2059. "_position": {
  2060. "__type__": "cc.Vec3",
  2061. "x": -68.88,
  2062. "y": -37.5,
  2063. "z": 0
  2064. },
  2065. "_scale": {
  2066. "__type__": "cc.Vec3",
  2067. "x": 1,
  2068. "y": 1,
  2069. "z": 1
  2070. },
  2071. "_quat": {
  2072. "__type__": "cc.Quat",
  2073. "x": 0,
  2074. "y": 0,
  2075. "z": 0,
  2076. "w": 1
  2077. },
  2078. "_skewX": 0,
  2079. "_skewY": 0,
  2080. "_zIndex": -32768,
  2081. "_is3DNode": false,
  2082. "groupIndex": 0,
  2083. "_id": ""
  2084. },
  2085. {
  2086. "__type__": "cc.Label",
  2087. "_name": "",
  2088. "_objFlags": 0,
  2089. "node": {
  2090. "__id__": 58
  2091. },
  2092. "_enabled": true,
  2093. "_srcBlendFactor": 1,
  2094. "_dstBlendFactor": 771,
  2095. "_useOriginalSize": true,
  2096. "_string": "2",
  2097. "_N$string": "2",
  2098. "_fontSize": 20,
  2099. "_lineHeight": 25,
  2100. "_enableWrapText": true,
  2101. "_N$file": null,
  2102. "_isSystemFontUsed": true,
  2103. "_spacingX": 0,
  2104. "_N$horizontalAlign": 0,
  2105. "_N$verticalAlign": 1,
  2106. "_N$fontFamily": "Arial",
  2107. "_N$overflow": 0,
  2108. "_id": ""
  2109. },
  2110. {
  2111. "__type__": "cc.PrefabInfo",
  2112. "root": {
  2113. "__id__": 1
  2114. },
  2115. "asset": {
  2116. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2117. },
  2118. "fileId": "13UxwTalBCmoV6x9xeEpzw",
  2119. "sync": false
  2120. },
  2121. {
  2122. "__type__": "cc.PrivateNode",
  2123. "_name": "RICHTEXT_CHILD",
  2124. "_objFlags": 0,
  2125. "_parent": {
  2126. "__id__": 27
  2127. },
  2128. "_children": [],
  2129. "_active": true,
  2130. "_level": 4,
  2131. "_components": [
  2132. {
  2133. "__id__": 62
  2134. }
  2135. ],
  2136. "_prefab": {
  2137. "__id__": 63
  2138. },
  2139. "_opacity": 255,
  2140. "_color": {
  2141. "__type__": "cc.Color",
  2142. "r": 0,
  2143. "g": 0,
  2144. "b": 0,
  2145. "a": 255
  2146. },
  2147. "_contentSize": {
  2148. "__type__": "cc.Size",
  2149. "width": 60,
  2150. "height": 25
  2151. },
  2152. "_anchorPoint": {
  2153. "__type__": "cc.Vec2",
  2154. "x": 0,
  2155. "y": 0
  2156. },
  2157. "_position": {
  2158. "__type__": "cc.Vec3",
  2159. "x": -57.75999999999999,
  2160. "y": -37.5,
  2161. "z": 0
  2162. },
  2163. "_scale": {
  2164. "__type__": "cc.Vec3",
  2165. "x": 1,
  2166. "y": 1,
  2167. "z": 1
  2168. },
  2169. "_quat": {
  2170. "__type__": "cc.Quat",
  2171. "x": 0,
  2172. "y": 0,
  2173. "z": 0,
  2174. "w": 1
  2175. },
  2176. "_skewX": 0,
  2177. "_skewY": 0,
  2178. "_zIndex": -32768,
  2179. "_is3DNode": false,
  2180. "groupIndex": 0,
  2181. "_id": ""
  2182. },
  2183. {
  2184. "__type__": "cc.Label",
  2185. "_name": "",
  2186. "_objFlags": 0,
  2187. "node": {
  2188. "__id__": 61
  2189. },
  2190. "_enabled": true,
  2191. "_srcBlendFactor": 1,
  2192. "_dstBlendFactor": 771,
  2193. "_useOriginalSize": true,
  2194. "_string": "颗钻石",
  2195. "_N$string": "颗钻石",
  2196. "_fontSize": 20,
  2197. "_lineHeight": 25,
  2198. "_enableWrapText": true,
  2199. "_N$file": null,
  2200. "_isSystemFontUsed": true,
  2201. "_spacingX": 0,
  2202. "_N$horizontalAlign": 0,
  2203. "_N$verticalAlign": 1,
  2204. "_N$fontFamily": "Arial",
  2205. "_N$overflow": 0,
  2206. "_id": ""
  2207. },
  2208. {
  2209. "__type__": "cc.PrefabInfo",
  2210. "root": {
  2211. "__id__": 1
  2212. },
  2213. "asset": {
  2214. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2215. },
  2216. "fileId": "bdKAatAM5DP4HnInxFLK67",
  2217. "sync": false
  2218. },
  2219. {
  2220. "__type__": "cc.PrivateNode",
  2221. "_name": "RICHTEXT_CHILD",
  2222. "_objFlags": 0,
  2223. "_parent": {
  2224. "__id__": 27
  2225. },
  2226. "_children": [],
  2227. "_active": true,
  2228. "_level": 4,
  2229. "_components": [
  2230. {
  2231. "__id__": 65
  2232. }
  2233. ],
  2234. "_prefab": {
  2235. "__id__": 66
  2236. },
  2237. "_opacity": 255,
  2238. "_color": {
  2239. "__type__": "cc.Color",
  2240. "r": 0,
  2241. "g": 0,
  2242. "b": 0,
  2243. "a": 255
  2244. },
  2245. "_contentSize": {
  2246. "__type__": "cc.Size",
  2247. "width": 40,
  2248. "height": 25
  2249. },
  2250. "_anchorPoint": {
  2251. "__type__": "cc.Vec2",
  2252. "x": 0,
  2253. "y": 0
  2254. },
  2255. "_position": {
  2256. "__type__": "cc.Vec3",
  2257. "x": -220,
  2258. "y": -62.5,
  2259. "z": 0
  2260. },
  2261. "_scale": {
  2262. "__type__": "cc.Vec3",
  2263. "x": 1,
  2264. "y": 1,
  2265. "z": 1
  2266. },
  2267. "_quat": {
  2268. "__type__": "cc.Quat",
  2269. "x": 0,
  2270. "y": 0,
  2271. "z": 0,
  2272. "w": 1
  2273. },
  2274. "_skewX": 0,
  2275. "_skewY": 0,
  2276. "_zIndex": -32768,
  2277. "_is3DNode": false,
  2278. "groupIndex": 0,
  2279. "_id": ""
  2280. },
  2281. {
  2282. "__type__": "cc.Label",
  2283. "_name": "",
  2284. "_objFlags": 0,
  2285. "node": {
  2286. "__id__": 64
  2287. },
  2288. "_enabled": true,
  2289. "_srcBlendFactor": 1,
  2290. "_dstBlendFactor": 771,
  2291. "_useOriginalSize": true,
  2292. "_string": "交易",
  2293. "_N$string": "交易",
  2294. "_fontSize": 20,
  2295. "_lineHeight": 25,
  2296. "_enableWrapText": true,
  2297. "_N$file": null,
  2298. "_isSystemFontUsed": true,
  2299. "_spacingX": 0,
  2300. "_N$horizontalAlign": 0,
  2301. "_N$verticalAlign": 1,
  2302. "_N$fontFamily": "Arial",
  2303. "_N$overflow": 0,
  2304. "_id": ""
  2305. },
  2306. {
  2307. "__type__": "cc.PrefabInfo",
  2308. "root": {
  2309. "__id__": 1
  2310. },
  2311. "asset": {
  2312. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2313. },
  2314. "fileId": "e2Fje3SkRKeYpwR45yNAcV",
  2315. "sync": false
  2316. },
  2317. {
  2318. "__type__": "cc.PrivateNode",
  2319. "_name": "RICHTEXT_CHILD",
  2320. "_objFlags": 0,
  2321. "_parent": {
  2322. "__id__": 27
  2323. },
  2324. "_children": [],
  2325. "_active": true,
  2326. "_level": 4,
  2327. "_components": [
  2328. {
  2329. "__id__": 68
  2330. }
  2331. ],
  2332. "_prefab": {
  2333. "__id__": 69
  2334. },
  2335. "_opacity": 255,
  2336. "_color": {
  2337. "__type__": "cc.Color",
  2338. "r": 255,
  2339. "g": 0,
  2340. "b": 0,
  2341. "a": 255
  2342. },
  2343. "_contentSize": {
  2344. "__type__": "cc.Size",
  2345. "width": 22.25,
  2346. "height": 25
  2347. },
  2348. "_anchorPoint": {
  2349. "__type__": "cc.Vec2",
  2350. "x": 0,
  2351. "y": 0
  2352. },
  2353. "_position": {
  2354. "__type__": "cc.Vec3",
  2355. "x": -180,
  2356. "y": -62.5,
  2357. "z": 0
  2358. },
  2359. "_scale": {
  2360. "__type__": "cc.Vec3",
  2361. "x": 1,
  2362. "y": 1,
  2363. "z": 1
  2364. },
  2365. "_quat": {
  2366. "__type__": "cc.Quat",
  2367. "x": 0,
  2368. "y": 0,
  2369. "z": 0,
  2370. "w": 1
  2371. },
  2372. "_skewX": 0,
  2373. "_skewY": 0,
  2374. "_zIndex": -32768,
  2375. "_is3DNode": false,
  2376. "groupIndex": 0,
  2377. "_id": ""
  2378. },
  2379. {
  2380. "__type__": "cc.Label",
  2381. "_name": "",
  2382. "_objFlags": 0,
  2383. "node": {
  2384. "__id__": 67
  2385. },
  2386. "_enabled": true,
  2387. "_srcBlendFactor": 1,
  2388. "_dstBlendFactor": 771,
  2389. "_useOriginalSize": true,
  2390. "_string": "10",
  2391. "_N$string": "10",
  2392. "_fontSize": 20,
  2393. "_lineHeight": 25,
  2394. "_enableWrapText": true,
  2395. "_N$file": null,
  2396. "_isSystemFontUsed": true,
  2397. "_spacingX": 0,
  2398. "_N$horizontalAlign": 0,
  2399. "_N$verticalAlign": 1,
  2400. "_N$fontFamily": "Arial",
  2401. "_N$overflow": 0,
  2402. "_id": ""
  2403. },
  2404. {
  2405. "__type__": "cc.PrefabInfo",
  2406. "root": {
  2407. "__id__": 1
  2408. },
  2409. "asset": {
  2410. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2411. },
  2412. "fileId": "130IfZGotNmqYldZXrcaAH",
  2413. "sync": false
  2414. },
  2415. {
  2416. "__type__": "cc.PrivateNode",
  2417. "_name": "RICHTEXT_CHILD",
  2418. "_objFlags": 0,
  2419. "_parent": {
  2420. "__id__": 27
  2421. },
  2422. "_children": [],
  2423. "_active": true,
  2424. "_level": 4,
  2425. "_components": [
  2426. {
  2427. "__id__": 71
  2428. }
  2429. ],
  2430. "_prefab": {
  2431. "__id__": 72
  2432. },
  2433. "_opacity": 255,
  2434. "_color": {
  2435. "__type__": "cc.Color",
  2436. "r": 0,
  2437. "g": 0,
  2438. "b": 0,
  2439. "a": 255
  2440. },
  2441. "_contentSize": {
  2442. "__type__": "cc.Size",
  2443. "width": 100,
  2444. "height": 25
  2445. },
  2446. "_anchorPoint": {
  2447. "__type__": "cc.Vec2",
  2448. "x": 0,
  2449. "y": 0
  2450. },
  2451. "_position": {
  2452. "__type__": "cc.Vec3",
  2453. "x": -157.75,
  2454. "y": -62.5,
  2455. "z": 0
  2456. },
  2457. "_scale": {
  2458. "__type__": "cc.Vec3",
  2459. "x": 1,
  2460. "y": 1,
  2461. "z": 1
  2462. },
  2463. "_quat": {
  2464. "__type__": "cc.Quat",
  2465. "x": 0,
  2466. "y": 0,
  2467. "z": 0,
  2468. "w": 1
  2469. },
  2470. "_skewX": 0,
  2471. "_skewY": 0,
  2472. "_zIndex": -32768,
  2473. "_is3DNode": false,
  2474. "groupIndex": 0,
  2475. "_id": ""
  2476. },
  2477. {
  2478. "__type__": "cc.Label",
  2479. "_name": "",
  2480. "_objFlags": 0,
  2481. "node": {
  2482. "__id__": 70
  2483. },
  2484. "_enabled": true,
  2485. "_srcBlendFactor": 1,
  2486. "_dstBlendFactor": 771,
  2487. "_useOriginalSize": true,
  2488. "_string": "次,可获得",
  2489. "_N$string": "次,可获得",
  2490. "_fontSize": 20,
  2491. "_lineHeight": 25,
  2492. "_enableWrapText": true,
  2493. "_N$file": null,
  2494. "_isSystemFontUsed": true,
  2495. "_spacingX": 0,
  2496. "_N$horizontalAlign": 0,
  2497. "_N$verticalAlign": 1,
  2498. "_N$fontFamily": "Arial",
  2499. "_N$overflow": 0,
  2500. "_id": ""
  2501. },
  2502. {
  2503. "__type__": "cc.PrefabInfo",
  2504. "root": {
  2505. "__id__": 1
  2506. },
  2507. "asset": {
  2508. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2509. },
  2510. "fileId": "d7tPoXgGhLTaJRIOBk2aH/",
  2511. "sync": false
  2512. },
  2513. {
  2514. "__type__": "cc.PrivateNode",
  2515. "_name": "RICHTEXT_CHILD",
  2516. "_objFlags": 0,
  2517. "_parent": {
  2518. "__id__": 27
  2519. },
  2520. "_children": [],
  2521. "_active": true,
  2522. "_level": 4,
  2523. "_components": [
  2524. {
  2525. "__id__": 74
  2526. }
  2527. ],
  2528. "_prefab": {
  2529. "__id__": 75
  2530. },
  2531. "_opacity": 255,
  2532. "_color": {
  2533. "__type__": "cc.Color",
  2534. "r": 255,
  2535. "g": 0,
  2536. "b": 0,
  2537. "a": 255
  2538. },
  2539. "_contentSize": {
  2540. "__type__": "cc.Size",
  2541. "width": 11.12,
  2542. "height": 25
  2543. },
  2544. "_anchorPoint": {
  2545. "__type__": "cc.Vec2",
  2546. "x": 0,
  2547. "y": 0
  2548. },
  2549. "_position": {
  2550. "__type__": "cc.Vec3",
  2551. "x": -57.75,
  2552. "y": -62.5,
  2553. "z": 0
  2554. },
  2555. "_scale": {
  2556. "__type__": "cc.Vec3",
  2557. "x": 1,
  2558. "y": 1,
  2559. "z": 1
  2560. },
  2561. "_quat": {
  2562. "__type__": "cc.Quat",
  2563. "x": 0,
  2564. "y": 0,
  2565. "z": 0,
  2566. "w": 1
  2567. },
  2568. "_skewX": 0,
  2569. "_skewY": 0,
  2570. "_zIndex": -32768,
  2571. "_is3DNode": false,
  2572. "groupIndex": 0,
  2573. "_id": ""
  2574. },
  2575. {
  2576. "__type__": "cc.Label",
  2577. "_name": "",
  2578. "_objFlags": 0,
  2579. "node": {
  2580. "__id__": 73
  2581. },
  2582. "_enabled": true,
  2583. "_srcBlendFactor": 1,
  2584. "_dstBlendFactor": 771,
  2585. "_useOriginalSize": true,
  2586. "_string": "5",
  2587. "_N$string": "5",
  2588. "_fontSize": 20,
  2589. "_lineHeight": 25,
  2590. "_enableWrapText": true,
  2591. "_N$file": null,
  2592. "_isSystemFontUsed": true,
  2593. "_spacingX": 0,
  2594. "_N$horizontalAlign": 0,
  2595. "_N$verticalAlign": 1,
  2596. "_N$fontFamily": "Arial",
  2597. "_N$overflow": 0,
  2598. "_id": ""
  2599. },
  2600. {
  2601. "__type__": "cc.PrefabInfo",
  2602. "root": {
  2603. "__id__": 1
  2604. },
  2605. "asset": {
  2606. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2607. },
  2608. "fileId": "16rLCDSl5AFIwM9Np+R3MP",
  2609. "sync": false
  2610. },
  2611. {
  2612. "__type__": "cc.PrivateNode",
  2613. "_name": "RICHTEXT_CHILD",
  2614. "_objFlags": 0,
  2615. "_parent": {
  2616. "__id__": 27
  2617. },
  2618. "_children": [],
  2619. "_active": true,
  2620. "_level": 4,
  2621. "_components": [
  2622. {
  2623. "__id__": 77
  2624. }
  2625. ],
  2626. "_prefab": {
  2627. "__id__": 78
  2628. },
  2629. "_opacity": 255,
  2630. "_color": {
  2631. "__type__": "cc.Color",
  2632. "r": 0,
  2633. "g": 0,
  2634. "b": 0,
  2635. "a": 255
  2636. },
  2637. "_contentSize": {
  2638. "__type__": "cc.Size",
  2639. "width": 60,
  2640. "height": 25
  2641. },
  2642. "_anchorPoint": {
  2643. "__type__": "cc.Vec2",
  2644. "x": 0,
  2645. "y": 0
  2646. },
  2647. "_position": {
  2648. "__type__": "cc.Vec3",
  2649. "x": -46.629999999999995,
  2650. "y": -62.5,
  2651. "z": 0
  2652. },
  2653. "_scale": {
  2654. "__type__": "cc.Vec3",
  2655. "x": 1,
  2656. "y": 1,
  2657. "z": 1
  2658. },
  2659. "_quat": {
  2660. "__type__": "cc.Quat",
  2661. "x": 0,
  2662. "y": 0,
  2663. "z": 0,
  2664. "w": 1
  2665. },
  2666. "_skewX": 0,
  2667. "_skewY": 0,
  2668. "_zIndex": -32768,
  2669. "_is3DNode": false,
  2670. "groupIndex": 0,
  2671. "_id": ""
  2672. },
  2673. {
  2674. "__type__": "cc.Label",
  2675. "_name": "",
  2676. "_objFlags": 0,
  2677. "node": {
  2678. "__id__": 76
  2679. },
  2680. "_enabled": true,
  2681. "_srcBlendFactor": 1,
  2682. "_dstBlendFactor": 771,
  2683. "_useOriginalSize": true,
  2684. "_string": "颗钻石",
  2685. "_N$string": "颗钻石",
  2686. "_fontSize": 20,
  2687. "_lineHeight": 25,
  2688. "_enableWrapText": true,
  2689. "_N$file": null,
  2690. "_isSystemFontUsed": true,
  2691. "_spacingX": 0,
  2692. "_N$horizontalAlign": 0,
  2693. "_N$verticalAlign": 1,
  2694. "_N$fontFamily": "Arial",
  2695. "_N$overflow": 0,
  2696. "_id": ""
  2697. },
  2698. {
  2699. "__type__": "cc.PrefabInfo",
  2700. "root": {
  2701. "__id__": 1
  2702. },
  2703. "asset": {
  2704. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2705. },
  2706. "fileId": "94MwHdFRJM0rxzt9jhOUS2",
  2707. "sync": false
  2708. },
  2709. {
  2710. "__type__": "cc.RichText",
  2711. "_name": "",
  2712. "_objFlags": 0,
  2713. "node": {
  2714. "__id__": 27
  2715. },
  2716. "_enabled": true,
  2717. "_N$string": "<color=#000000>农田、采木场、矿坑、商铺产生多次交易后,\n可收获钻石。交易次数越多,收获的钻石就越多。\n交易<color=#FF0000>2</c><color=#000000>次,可获得<color=#FF0000>1</c><color=#000000>颗钻石\n交易</c><color=#FF0000>5</c><color=#000000>次,可获得<color=#FF0000>2</c><color=#000000>颗钻石\n交易<color=#FF0000>10</c>次,可获得<color=#FF0000>5</c>颗钻石</c>",
  2718. "_N$horizontalAlign": 0,
  2719. "_N$fontSize": 20,
  2720. "_N$font": null,
  2721. "_N$maxWidth": 0,
  2722. "_N$lineHeight": 25,
  2723. "_N$imageAtlas": null,
  2724. "_N$handleTouchEvent": true,
  2725. "_id": ""
  2726. },
  2727. {
  2728. "__type__": "cc.PrefabInfo",
  2729. "root": {
  2730. "__id__": 1
  2731. },
  2732. "asset": {
  2733. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2734. },
  2735. "fileId": "79gHqshMhAMImUMHE6Ncvv",
  2736. "sync": false
  2737. },
  2738. {
  2739. "__type__": "cc.Sprite",
  2740. "_name": "",
  2741. "_objFlags": 0,
  2742. "node": {
  2743. "__id__": 8
  2744. },
  2745. "_enabled": true,
  2746. "_srcBlendFactor": 770,
  2747. "_dstBlendFactor": 771,
  2748. "_spriteFrame": {
  2749. "__uuid__": "7336ac05-5e39-44bc-92ff-d6e95545844a"
  2750. },
  2751. "_type": 0,
  2752. "_sizeMode": 0,
  2753. "_fillType": 0,
  2754. "_fillCenter": {
  2755. "__type__": "cc.Vec2",
  2756. "x": 0,
  2757. "y": 0
  2758. },
  2759. "_fillStart": 0,
  2760. "_fillRange": 0,
  2761. "_isTrimmedMode": true,
  2762. "_state": 0,
  2763. "_atlas": null,
  2764. "_id": ""
  2765. },
  2766. {
  2767. "__type__": "cc.PrefabInfo",
  2768. "root": {
  2769. "__id__": 1
  2770. },
  2771. "asset": {
  2772. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2773. },
  2774. "fileId": "501io/wxdC47go2RnMFVED",
  2775. "sync": false
  2776. },
  2777. {
  2778. "__type__": "cc.Node",
  2779. "_name": "SureBtn",
  2780. "_objFlags": 0,
  2781. "_parent": {
  2782. "__id__": 1
  2783. },
  2784. "_children": [],
  2785. "_active": true,
  2786. "_level": 2,
  2787. "_components": [
  2788. {
  2789. "__id__": 84
  2790. },
  2791. {
  2792. "__id__": 85
  2793. }
  2794. ],
  2795. "_prefab": {
  2796. "__id__": 86
  2797. },
  2798. "_opacity": 255,
  2799. "_color": {
  2800. "__type__": "cc.Color",
  2801. "r": 255,
  2802. "g": 255,
  2803. "b": 255,
  2804. "a": 255
  2805. },
  2806. "_contentSize": {
  2807. "__type__": "cc.Size",
  2808. "width": 82,
  2809. "height": 37
  2810. },
  2811. "_anchorPoint": {
  2812. "__type__": "cc.Vec2",
  2813. "x": 0.5,
  2814. "y": 0.5
  2815. },
  2816. "_position": {
  2817. "__type__": "cc.Vec3",
  2818. "x": 0,
  2819. "y": -270,
  2820. "z": 0
  2821. },
  2822. "_scale": {
  2823. "__type__": "cc.Vec3",
  2824. "x": 2,
  2825. "y": 2,
  2826. "z": 2
  2827. },
  2828. "_quat": {
  2829. "__type__": "cc.Quat",
  2830. "x": 0,
  2831. "y": 0,
  2832. "z": 0,
  2833. "w": 1
  2834. },
  2835. "_skewX": 0,
  2836. "_skewY": 0,
  2837. "_zIndex": 0,
  2838. "_is3DNode": false,
  2839. "groupIndex": 0,
  2840. "_id": ""
  2841. },
  2842. {
  2843. "__type__": "cc.Sprite",
  2844. "_name": "",
  2845. "_objFlags": 0,
  2846. "node": {
  2847. "__id__": 83
  2848. },
  2849. "_enabled": true,
  2850. "_srcBlendFactor": 770,
  2851. "_dstBlendFactor": 771,
  2852. "_spriteFrame": {
  2853. "__uuid__": "db8cfc1e-cabb-4762-a0d5-728f49694fe2"
  2854. },
  2855. "_type": 0,
  2856. "_sizeMode": 0,
  2857. "_fillType": 0,
  2858. "_fillCenter": {
  2859. "__type__": "cc.Vec2",
  2860. "x": 0,
  2861. "y": 0
  2862. },
  2863. "_fillStart": 0,
  2864. "_fillRange": 0,
  2865. "_isTrimmedMode": true,
  2866. "_state": 0,
  2867. "_atlas": null,
  2868. "_id": ""
  2869. },
  2870. {
  2871. "__type__": "cc.Button",
  2872. "_name": "",
  2873. "_objFlags": 0,
  2874. "node": {
  2875. "__id__": 83
  2876. },
  2877. "_enabled": true,
  2878. "duration": 0.1,
  2879. "zoomScale": 1.2,
  2880. "clickEvents": [],
  2881. "_N$interactable": true,
  2882. "_N$enableAutoGrayEffect": false,
  2883. "_N$transition": 3,
  2884. "transition": 3,
  2885. "_N$normalColor": {
  2886. "__type__": "cc.Color",
  2887. "r": 214,
  2888. "g": 214,
  2889. "b": 214,
  2890. "a": 255
  2891. },
  2892. "_N$pressedColor": {
  2893. "__type__": "cc.Color",
  2894. "r": 211,
  2895. "g": 211,
  2896. "b": 211,
  2897. "a": 255
  2898. },
  2899. "pressedColor": {
  2900. "__type__": "cc.Color",
  2901. "r": 211,
  2902. "g": 211,
  2903. "b": 211,
  2904. "a": 255
  2905. },
  2906. "_N$hoverColor": {
  2907. "__type__": "cc.Color",
  2908. "r": 255,
  2909. "g": 255,
  2910. "b": 255,
  2911. "a": 255
  2912. },
  2913. "hoverColor": {
  2914. "__type__": "cc.Color",
  2915. "r": 255,
  2916. "g": 255,
  2917. "b": 255,
  2918. "a": 255
  2919. },
  2920. "_N$disabledColor": {
  2921. "__type__": "cc.Color",
  2922. "r": 124,
  2923. "g": 124,
  2924. "b": 124,
  2925. "a": 255
  2926. },
  2927. "_N$normalSprite": null,
  2928. "_N$pressedSprite": null,
  2929. "pressedSprite": null,
  2930. "_N$hoverSprite": null,
  2931. "hoverSprite": null,
  2932. "_N$disabledSprite": null,
  2933. "_N$target": null,
  2934. "_id": ""
  2935. },
  2936. {
  2937. "__type__": "cc.PrefabInfo",
  2938. "root": {
  2939. "__id__": 1
  2940. },
  2941. "asset": {
  2942. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  2943. },
  2944. "fileId": "afkKS3NMJJpqk2Cod1/LSp",
  2945. "sync": false
  2946. },
  2947. {
  2948. "__type__": "cc.Node",
  2949. "_name": "info",
  2950. "_objFlags": 0,
  2951. "_parent": {
  2952. "__id__": 1
  2953. },
  2954. "_children": [
  2955. {
  2956. "__id__": 88
  2957. },
  2958. {
  2959. "__id__": 91
  2960. }
  2961. ],
  2962. "_active": false,
  2963. "_level": 2,
  2964. "_components": [
  2965. {
  2966. "__id__": 95
  2967. }
  2968. ],
  2969. "_prefab": {
  2970. "__id__": 96
  2971. },
  2972. "_opacity": 255,
  2973. "_color": {
  2974. "__type__": "cc.Color",
  2975. "r": 255,
  2976. "g": 255,
  2977. "b": 255,
  2978. "a": 255
  2979. },
  2980. "_contentSize": {
  2981. "__type__": "cc.Size",
  2982. "width": 82,
  2983. "height": 37
  2984. },
  2985. "_anchorPoint": {
  2986. "__type__": "cc.Vec2",
  2987. "x": 0.5,
  2988. "y": 0.5
  2989. },
  2990. "_position": {
  2991. "__type__": "cc.Vec3",
  2992. "x": 0,
  2993. "y": -270,
  2994. "z": 0
  2995. },
  2996. "_scale": {
  2997. "__type__": "cc.Vec3",
  2998. "x": 2,
  2999. "y": 2,
  3000. "z": 1
  3001. },
  3002. "_quat": {
  3003. "__type__": "cc.Quat",
  3004. "x": 0,
  3005. "y": 0,
  3006. "z": 0,
  3007. "w": 1
  3008. },
  3009. "_skewX": 0,
  3010. "_skewY": 0,
  3011. "_zIndex": 0,
  3012. "_is3DNode": false,
  3013. "groupIndex": 0,
  3014. "_id": ""
  3015. },
  3016. {
  3017. "__type__": "cc.Node",
  3018. "_name": "New Label",
  3019. "_objFlags": 0,
  3020. "_parent": {
  3021. "__id__": 87
  3022. },
  3023. "_children": [],
  3024. "_active": true,
  3025. "_level": 3,
  3026. "_components": [
  3027. {
  3028. "__id__": 89
  3029. }
  3030. ],
  3031. "_prefab": {
  3032. "__id__": 90
  3033. },
  3034. "_opacity": 255,
  3035. "_color": {
  3036. "__type__": "cc.Color",
  3037. "r": 0,
  3038. "g": 0,
  3039. "b": 0,
  3040. "a": 255
  3041. },
  3042. "_contentSize": {
  3043. "__type__": "cc.Size",
  3044. "width": 60,
  3045. "height": 20
  3046. },
  3047. "_anchorPoint": {
  3048. "__type__": "cc.Vec2",
  3049. "x": 0.5,
  3050. "y": 0.5
  3051. },
  3052. "_position": {
  3053. "__type__": "cc.Vec3",
  3054. "x": -1,
  3055. "y": -2,
  3056. "z": 0
  3057. },
  3058. "_scale": {
  3059. "__type__": "cc.Vec3",
  3060. "x": 1,
  3061. "y": 1,
  3062. "z": 1
  3063. },
  3064. "_quat": {
  3065. "__type__": "cc.Quat",
  3066. "x": 0,
  3067. "y": 0,
  3068. "z": 0,
  3069. "w": 1
  3070. },
  3071. "_skewX": 0,
  3072. "_skewY": 0,
  3073. "_zIndex": 0,
  3074. "_is3DNode": false,
  3075. "groupIndex": 0,
  3076. "_rotationX": 0,
  3077. "_rotationY": 0,
  3078. "_id": ""
  3079. },
  3080. {
  3081. "__type__": "cc.Label",
  3082. "_name": "",
  3083. "_objFlags": 0,
  3084. "node": {
  3085. "__id__": 88
  3086. },
  3087. "_enabled": true,
  3088. "_srcBlendFactor": 1,
  3089. "_dstBlendFactor": 771,
  3090. "_useOriginalSize": false,
  3091. "_string": "下一步",
  3092. "_N$string": "下一步",
  3093. "_fontSize": 20,
  3094. "_lineHeight": 20,
  3095. "_enableWrapText": true,
  3096. "_N$file": null,
  3097. "_isSystemFontUsed": true,
  3098. "_spacingX": 0,
  3099. "_N$horizontalAlign": 1,
  3100. "_N$verticalAlign": 1,
  3101. "_N$fontFamily": "Arial",
  3102. "_N$overflow": 0,
  3103. "_id": ""
  3104. },
  3105. {
  3106. "__type__": "cc.PrefabInfo",
  3107. "root": {
  3108. "__id__": 1
  3109. },
  3110. "asset": {
  3111. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  3112. },
  3113. "fileId": "79V0XPVrhNlbFpfJ25CKOY",
  3114. "sync": false
  3115. },
  3116. {
  3117. "__type__": "cc.Node",
  3118. "_name": "SmallArrow",
  3119. "_objFlags": 0,
  3120. "_parent": {
  3121. "__id__": 87
  3122. },
  3123. "_children": [],
  3124. "_active": false,
  3125. "_level": 3,
  3126. "_components": [
  3127. {
  3128. "__id__": 92
  3129. },
  3130. {
  3131. "__id__": 93
  3132. }
  3133. ],
  3134. "_prefab": {
  3135. "__id__": 94
  3136. },
  3137. "_opacity": 255,
  3138. "_color": {
  3139. "__type__": "cc.Color",
  3140. "r": 255,
  3141. "g": 255,
  3142. "b": 255,
  3143. "a": 255
  3144. },
  3145. "_contentSize": {
  3146. "__type__": "cc.Size",
  3147. "width": 50,
  3148. "height": 30
  3149. },
  3150. "_anchorPoint": {
  3151. "__type__": "cc.Vec2",
  3152. "x": 0.5,
  3153. "y": 0.5
  3154. },
  3155. "_position": {
  3156. "__type__": "cc.Vec3",
  3157. "x": 143,
  3158. "y": -74,
  3159. "z": 0
  3160. },
  3161. "_scale": {
  3162. "__type__": "cc.Vec3",
  3163. "x": 1,
  3164. "y": 1,
  3165. "z": 1
  3166. },
  3167. "_quat": {
  3168. "__type__": "cc.Quat",
  3169. "x": 0,
  3170. "y": 0,
  3171. "z": 0,
  3172. "w": 1
  3173. },
  3174. "_skewX": 0,
  3175. "_skewY": 0,
  3176. "_zIndex": 0,
  3177. "_is3DNode": false,
  3178. "groupIndex": 0,
  3179. "_id": ""
  3180. },
  3181. {
  3182. "__type__": "cc.Sprite",
  3183. "_name": "",
  3184. "_objFlags": 0,
  3185. "node": {
  3186. "__id__": 91
  3187. },
  3188. "_enabled": true,
  3189. "_srcBlendFactor": 770,
  3190. "_dstBlendFactor": 771,
  3191. "_spriteFrame": {
  3192. "__uuid__": "38f17776-98ef-4429-8190-483d106c3b97"
  3193. },
  3194. "_type": 0,
  3195. "_sizeMode": 1,
  3196. "_fillType": 0,
  3197. "_fillCenter": {
  3198. "__type__": "cc.Vec2",
  3199. "x": 0,
  3200. "y": 0
  3201. },
  3202. "_fillStart": 0,
  3203. "_fillRange": 0,
  3204. "_isTrimmedMode": true,
  3205. "_state": 0,
  3206. "_atlas": null,
  3207. "_id": ""
  3208. },
  3209. {
  3210. "__type__": "cc.Animation",
  3211. "_name": "",
  3212. "_objFlags": 0,
  3213. "node": {
  3214. "__id__": 91
  3215. },
  3216. "_enabled": true,
  3217. "_defaultClip": {
  3218. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  3219. },
  3220. "_clips": [
  3221. {
  3222. "__uuid__": "602e47f8-89be-4647-bf56-1d6c6ad3316f"
  3223. }
  3224. ],
  3225. "playOnLoad": true,
  3226. "_id": ""
  3227. },
  3228. {
  3229. "__type__": "cc.PrefabInfo",
  3230. "root": {
  3231. "__id__": 1
  3232. },
  3233. "asset": {
  3234. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  3235. },
  3236. "fileId": "e82VTNZItIOqz1xLHrldf9",
  3237. "sync": false
  3238. },
  3239. {
  3240. "__type__": "cc.Sprite",
  3241. "_name": "",
  3242. "_objFlags": 0,
  3243. "node": {
  3244. "__id__": 87
  3245. },
  3246. "_enabled": true,
  3247. "_srcBlendFactor": 770,
  3248. "_dstBlendFactor": 771,
  3249. "_spriteFrame": {
  3250. "__uuid__": "05325bf4-449c-44ee-8dd3-36e3dddc0e3f"
  3251. },
  3252. "_type": 0,
  3253. "_sizeMode": 1,
  3254. "_fillType": 0,
  3255. "_fillCenter": {
  3256. "__type__": "cc.Vec2",
  3257. "x": 0,
  3258. "y": 0
  3259. },
  3260. "_fillStart": 0,
  3261. "_fillRange": 0,
  3262. "_isTrimmedMode": true,
  3263. "_state": 0,
  3264. "_atlas": null,
  3265. "_id": ""
  3266. },
  3267. {
  3268. "__type__": "cc.PrefabInfo",
  3269. "root": {
  3270. "__id__": 1
  3271. },
  3272. "asset": {
  3273. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  3274. },
  3275. "fileId": "28WX5P3AJNgri4wEeyWMJY",
  3276. "sync": false
  3277. },
  3278. {
  3279. "__type__": "cc.Node",
  3280. "_name": "richman",
  3281. "_objFlags": 0,
  3282. "_parent": {
  3283. "__id__": 1
  3284. },
  3285. "_children": [],
  3286. "_active": true,
  3287. "_level": 2,
  3288. "_components": [
  3289. {
  3290. "__id__": 98
  3291. }
  3292. ],
  3293. "_prefab": {
  3294. "__id__": 99
  3295. },
  3296. "_opacity": 255,
  3297. "_color": {
  3298. "__type__": "cc.Color",
  3299. "r": 255,
  3300. "g": 255,
  3301. "b": 255,
  3302. "a": 255
  3303. },
  3304. "_contentSize": {
  3305. "__type__": "cc.Size",
  3306. "width": 216,
  3307. "height": 664
  3308. },
  3309. "_anchorPoint": {
  3310. "__type__": "cc.Vec2",
  3311. "x": 0.5,
  3312. "y": 0.5
  3313. },
  3314. "_position": {
  3315. "__type__": "cc.Vec3",
  3316. "x": -166,
  3317. "y": -12,
  3318. "z": 0
  3319. },
  3320. "_scale": {
  3321. "__type__": "cc.Vec3",
  3322. "x": 0.7,
  3323. "y": 0.7,
  3324. "z": 1
  3325. },
  3326. "_quat": {
  3327. "__type__": "cc.Quat",
  3328. "x": 0,
  3329. "y": 0,
  3330. "z": 0,
  3331. "w": 1
  3332. },
  3333. "_skewX": 0,
  3334. "_skewY": 0,
  3335. "_zIndex": 0,
  3336. "_is3DNode": false,
  3337. "groupIndex": 0,
  3338. "_id": ""
  3339. },
  3340. {
  3341. "__type__": "cc.Sprite",
  3342. "_name": "",
  3343. "_objFlags": 0,
  3344. "node": {
  3345. "__id__": 97
  3346. },
  3347. "_enabled": true,
  3348. "_srcBlendFactor": 770,
  3349. "_dstBlendFactor": 771,
  3350. "_spriteFrame": {
  3351. "__uuid__": "e9807e16-730d-451e-a06b-f9ce32aa4919"
  3352. },
  3353. "_type": 0,
  3354. "_sizeMode": 1,
  3355. "_fillType": 0,
  3356. "_fillCenter": {
  3357. "__type__": "cc.Vec2",
  3358. "x": 0,
  3359. "y": 0
  3360. },
  3361. "_fillStart": 0,
  3362. "_fillRange": 0,
  3363. "_isTrimmedMode": true,
  3364. "_state": 0,
  3365. "_atlas": null,
  3366. "_id": ""
  3367. },
  3368. {
  3369. "__type__": "cc.PrefabInfo",
  3370. "root": {
  3371. "__id__": 1
  3372. },
  3373. "asset": {
  3374. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  3375. },
  3376. "fileId": "f0JFpOvnZJtaRkyPFcgdpJ",
  3377. "sync": false
  3378. },
  3379. {
  3380. "__type__": "cc.PrefabInfo",
  3381. "root": {
  3382. "__id__": 1
  3383. },
  3384. "asset": {
  3385. "__uuid__": "9f88285c-14e6-4a32-8ab5-4dee9a9bdbbe"
  3386. },
  3387. "fileId": "95NHeUxnJOoZea8hBtGYHe",
  3388. "sync": false
  3389. }
  3390. ]