PManageContainer.prefab 64 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627
  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": "PManageContainer",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 11
  25. }
  26. ],
  27. "_active": true,
  28. "_level": 1,
  29. "_components": [
  30. {
  31. "__id__": 104
  32. }
  33. ],
  34. "_prefab": {
  35. "__id__": 105
  36. },
  37. "_opacity": 255,
  38. "_color": {
  39. "__type__": "cc.Color",
  40. "r": 255,
  41. "g": 255,
  42. "b": 255,
  43. "a": 255
  44. },
  45. "_contentSize": {
  46. "__type__": "cc.Size",
  47. "width": 50,
  48. "height": 50
  49. },
  50. "_anchorPoint": {
  51. "__type__": "cc.Vec2",
  52. "x": 0.5,
  53. "y": 0.5
  54. },
  55. "_position": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0
  60. },
  61. "_scale": {
  62. "__type__": "cc.Vec3",
  63. "x": 1,
  64. "y": 1,
  65. "z": 1
  66. },
  67. "_quat": {
  68. "__type__": "cc.Quat",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0,
  72. "w": 1
  73. },
  74. "_skewX": 0,
  75. "_skewY": 0,
  76. "_zIndex": 0,
  77. "_is3DNode": false,
  78. "groupIndex": 0,
  79. "_id": ""
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "PManageButton",
  84. "_objFlags": 0,
  85. "_parent": {
  86. "__id__": 1
  87. },
  88. "_children": [
  89. {
  90. "__id__": 3
  91. }
  92. ],
  93. "_active": true,
  94. "_level": 4,
  95. "_components": [
  96. {
  97. "__id__": 6
  98. },
  99. {
  100. "__id__": 7
  101. }
  102. ],
  103. "_prefab": {
  104. "__id__": 10
  105. },
  106. "_opacity": 255,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 255,
  110. "g": 255,
  111. "b": 255,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 75,
  117. "height": 77
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_position": {
  125. "__type__": "cc.Vec3",
  126. "x": 0,
  127. "y": 0,
  128. "z": 0
  129. },
  130. "_scale": {
  131. "__type__": "cc.Vec3",
  132. "x": 1,
  133. "y": 1,
  134. "z": 1
  135. },
  136. "_quat": {
  137. "__type__": "cc.Quat",
  138. "x": 0,
  139. "y": 0,
  140. "z": 0,
  141. "w": 1
  142. },
  143. "_skewX": 0,
  144. "_skewY": 0,
  145. "_zIndex": 0,
  146. "_is3DNode": false,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Node",
  152. "_name": "Label",
  153. "_objFlags": 0,
  154. "_parent": {
  155. "__id__": 2
  156. },
  157. "_children": [],
  158. "_active": false,
  159. "_level": 0,
  160. "_components": [
  161. {
  162. "__id__": 4
  163. }
  164. ],
  165. "_prefab": {
  166. "__id__": 5
  167. },
  168. "_opacity": 255,
  169. "_color": {
  170. "__type__": "cc.Color",
  171. "r": 0,
  172. "g": 0,
  173. "b": 0,
  174. "a": 255
  175. },
  176. "_contentSize": {
  177. "__type__": "cc.Size",
  178. "width": 100,
  179. "height": 40
  180. },
  181. "_anchorPoint": {
  182. "__type__": "cc.Vec2",
  183. "x": 0.5,
  184. "y": 0.5
  185. },
  186. "_position": {
  187. "__type__": "cc.Vec3",
  188. "x": 0,
  189. "y": 0,
  190. "z": 0
  191. },
  192. "_scale": {
  193. "__type__": "cc.Vec3",
  194. "x": 1,
  195. "y": 1,
  196. "z": 1
  197. },
  198. "_quat": {
  199. "__type__": "cc.Quat",
  200. "x": 0,
  201. "y": 0,
  202. "z": 0,
  203. "w": 1
  204. },
  205. "_skewX": 0,
  206. "_skewY": 0,
  207. "_zIndex": 0,
  208. "_is3DNode": false,
  209. "groupIndex": 0,
  210. "_id": ""
  211. },
  212. {
  213. "__type__": "cc.Label",
  214. "_name": "",
  215. "_objFlags": 0,
  216. "node": {
  217. "__id__": 3
  218. },
  219. "_enabled": true,
  220. "_srcBlendFactor": 1,
  221. "_dstBlendFactor": 771,
  222. "_useOriginalSize": false,
  223. "_string": "button",
  224. "_N$string": "button",
  225. "_fontSize": 20,
  226. "_lineHeight": 40,
  227. "_enableWrapText": false,
  228. "_N$file": null,
  229. "_isSystemFontUsed": true,
  230. "_spacingX": 0,
  231. "_N$horizontalAlign": 1,
  232. "_N$verticalAlign": 1,
  233. "_N$fontFamily": "Arial",
  234. "_N$overflow": 1,
  235. "_id": ""
  236. },
  237. {
  238. "__type__": "cc.PrefabInfo",
  239. "root": {
  240. "__id__": 1
  241. },
  242. "asset": {
  243. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  244. },
  245. "fileId": "feSMBf9MlFcZC1RelFb+CA",
  246. "sync": false
  247. },
  248. {
  249. "__type__": "cc.Sprite",
  250. "_name": "",
  251. "_objFlags": 0,
  252. "node": {
  253. "__id__": 2
  254. },
  255. "_enabled": true,
  256. "_srcBlendFactor": 770,
  257. "_dstBlendFactor": 771,
  258. "_spriteFrame": {
  259. "__uuid__": "d1c9bfd3-0e89-44a6-a34f-204dff9ae7da"
  260. },
  261. "_type": 1,
  262. "_sizeMode": 0,
  263. "_fillType": 0,
  264. "_fillCenter": {
  265. "__type__": "cc.Vec2",
  266. "x": 0,
  267. "y": 0
  268. },
  269. "_fillStart": 0,
  270. "_fillRange": 0,
  271. "_isTrimmedMode": true,
  272. "_state": 0,
  273. "_atlas": null,
  274. "_id": ""
  275. },
  276. {
  277. "__type__": "cc.Button",
  278. "_name": "",
  279. "_objFlags": 0,
  280. "node": {
  281. "__id__": 2
  282. },
  283. "_enabled": true,
  284. "duration": 0.1,
  285. "zoomScale": 1.2,
  286. "clickEvents": [
  287. {
  288. "__id__": 8
  289. },
  290. {
  291. "__id__": 9
  292. }
  293. ],
  294. "_N$interactable": true,
  295. "_N$enableAutoGrayEffect": false,
  296. "_N$transition": 3,
  297. "transition": 3,
  298. "_N$normalColor": {
  299. "__type__": "cc.Color",
  300. "r": 255,
  301. "g": 255,
  302. "b": 255,
  303. "a": 255
  304. },
  305. "_N$pressedColor": {
  306. "__type__": "cc.Color",
  307. "r": 255,
  308. "g": 255,
  309. "b": 255,
  310. "a": 255
  311. },
  312. "pressedColor": {
  313. "__type__": "cc.Color",
  314. "r": 255,
  315. "g": 255,
  316. "b": 255,
  317. "a": 255
  318. },
  319. "_N$hoverColor": {
  320. "__type__": "cc.Color",
  321. "r": 255,
  322. "g": 255,
  323. "b": 255,
  324. "a": 255
  325. },
  326. "hoverColor": {
  327. "__type__": "cc.Color",
  328. "r": 255,
  329. "g": 255,
  330. "b": 255,
  331. "a": 255
  332. },
  333. "_N$disabledColor": {
  334. "__type__": "cc.Color",
  335. "r": 255,
  336. "g": 255,
  337. "b": 255,
  338. "a": 255
  339. },
  340. "_N$normalSprite": {
  341. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  342. },
  343. "_N$pressedSprite": {
  344. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  345. },
  346. "pressedSprite": {
  347. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  348. },
  349. "_N$hoverSprite": {
  350. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  351. },
  352. "hoverSprite": {
  353. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  354. },
  355. "_N$disabledSprite": {
  356. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  357. },
  358. "_N$target": {
  359. "__id__": 2
  360. },
  361. "_id": ""
  362. },
  363. {
  364. "__type__": "cc.ClickEvent",
  365. "target": null,
  366. "component": "",
  367. "_componentId": "",
  368. "handler": "",
  369. "customEventData": ""
  370. },
  371. {
  372. "__type__": "cc.ClickEvent",
  373. "target": null,
  374. "component": "",
  375. "_componentId": "",
  376. "handler": "",
  377. "customEventData": ""
  378. },
  379. {
  380. "__type__": "cc.PrefabInfo",
  381. "root": {
  382. "__id__": 1
  383. },
  384. "asset": {
  385. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  386. },
  387. "fileId": "ebcl0ddQtFkqpQogiJDKIl",
  388. "sync": false
  389. },
  390. {
  391. "__type__": "cc.Node",
  392. "_name": "PManageView",
  393. "_objFlags": 0,
  394. "_parent": {
  395. "__id__": 1
  396. },
  397. "_children": [
  398. {
  399. "__id__": 12
  400. },
  401. {
  402. "__id__": 15
  403. },
  404. {
  405. "__id__": 24
  406. }
  407. ],
  408. "_active": true,
  409. "_level": 4,
  410. "_components": [
  411. {
  412. "__id__": 102
  413. }
  414. ],
  415. "_prefab": {
  416. "__id__": 103
  417. },
  418. "_opacity": 255,
  419. "_color": {
  420. "__type__": "cc.Color",
  421. "r": 255,
  422. "g": 255,
  423. "b": 255,
  424. "a": 255
  425. },
  426. "_contentSize": {
  427. "__type__": "cc.Size",
  428. "width": 0,
  429. "height": 0
  430. },
  431. "_anchorPoint": {
  432. "__type__": "cc.Vec2",
  433. "x": 0.5,
  434. "y": 0.5
  435. },
  436. "_position": {
  437. "__type__": "cc.Vec3",
  438. "x": 0,
  439. "y": 0,
  440. "z": 0
  441. },
  442. "_scale": {
  443. "__type__": "cc.Vec3",
  444. "x": 1,
  445. "y": 1,
  446. "z": 1
  447. },
  448. "_skewX": 0,
  449. "_skewY": 0,
  450. "_zIndex": 0,
  451. "_is3DNode": false,
  452. "groupIndex": 0,
  453. "_id": "",
  454. "_eulerAngles": {
  455. "__type__": "cc.Vec3",
  456. "x": 0,
  457. "y": 0,
  458. "z": 0
  459. }
  460. },
  461. {
  462. "__type__": "cc.Node",
  463. "_name": "PManageBG",
  464. "_objFlags": 0,
  465. "_parent": {
  466. "__id__": 11
  467. },
  468. "_children": [],
  469. "_active": true,
  470. "_level": 5,
  471. "_components": [
  472. {
  473. "__id__": 13
  474. }
  475. ],
  476. "_prefab": {
  477. "__id__": 14
  478. },
  479. "_opacity": 255,
  480. "_color": {
  481. "__type__": "cc.Color",
  482. "r": 255,
  483. "g": 255,
  484. "b": 255,
  485. "a": 255
  486. },
  487. "_contentSize": {
  488. "__type__": "cc.Size",
  489. "width": 613,
  490. "height": 392
  491. },
  492. "_anchorPoint": {
  493. "__type__": "cc.Vec2",
  494. "x": 0.5,
  495. "y": 0.5
  496. },
  497. "_position": {
  498. "__type__": "cc.Vec3",
  499. "x": 0,
  500. "y": 0,
  501. "z": 0
  502. },
  503. "_scale": {
  504. "__type__": "cc.Vec3",
  505. "x": 1,
  506. "y": 1,
  507. "z": 1
  508. },
  509. "_quat": {
  510. "__type__": "cc.Quat",
  511. "x": 0,
  512. "y": 0,
  513. "z": 0,
  514. "w": 1
  515. },
  516. "_skewX": 0,
  517. "_skewY": 0,
  518. "_zIndex": 0,
  519. "_is3DNode": false,
  520. "groupIndex": 0,
  521. "_id": ""
  522. },
  523. {
  524. "__type__": "cc.Sprite",
  525. "_name": "",
  526. "_objFlags": 0,
  527. "node": {
  528. "__id__": 12
  529. },
  530. "_enabled": true,
  531. "_srcBlendFactor": 770,
  532. "_dstBlendFactor": 771,
  533. "_spriteFrame": {
  534. "__uuid__": "2032b82f-82ca-4256-8272-a76651fc5e11"
  535. },
  536. "_type": 0,
  537. "_sizeMode": 0,
  538. "_fillType": 0,
  539. "_fillCenter": {
  540. "__type__": "cc.Vec2",
  541. "x": 0,
  542. "y": 0
  543. },
  544. "_fillStart": 0,
  545. "_fillRange": 0,
  546. "_isTrimmedMode": true,
  547. "_state": 0,
  548. "_atlas": null,
  549. "_id": ""
  550. },
  551. {
  552. "__type__": "cc.PrefabInfo",
  553. "root": {
  554. "__id__": 1
  555. },
  556. "asset": {
  557. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  558. },
  559. "fileId": "7cDvrgGlBAhbSiHgv0A1gt",
  560. "sync": false
  561. },
  562. {
  563. "__type__": "cc.Node",
  564. "_name": "SCloseButton",
  565. "_objFlags": 0,
  566. "_parent": {
  567. "__id__": 11
  568. },
  569. "_children": [
  570. {
  571. "__id__": 16
  572. }
  573. ],
  574. "_active": true,
  575. "_level": 5,
  576. "_components": [
  577. {
  578. "__id__": 19
  579. },
  580. {
  581. "__id__": 20
  582. }
  583. ],
  584. "_prefab": {
  585. "__id__": 23
  586. },
  587. "_opacity": 255,
  588. "_color": {
  589. "__type__": "cc.Color",
  590. "r": 255,
  591. "g": 255,
  592. "b": 255,
  593. "a": 255
  594. },
  595. "_contentSize": {
  596. "__type__": "cc.Size",
  597. "width": 54,
  598. "height": 53
  599. },
  600. "_anchorPoint": {
  601. "__type__": "cc.Vec2",
  602. "x": 0.5,
  603. "y": 0.5
  604. },
  605. "_position": {
  606. "__type__": "cc.Vec3",
  607. "x": 283,
  608. "y": 177,
  609. "z": 0
  610. },
  611. "_scale": {
  612. "__type__": "cc.Vec3",
  613. "x": 1,
  614. "y": 1,
  615. "z": 1
  616. },
  617. "_quat": {
  618. "__type__": "cc.Quat",
  619. "x": 0,
  620. "y": 0,
  621. "z": 0,
  622. "w": 1
  623. },
  624. "_skewX": 0,
  625. "_skewY": 0,
  626. "_zIndex": 0,
  627. "_is3DNode": false,
  628. "groupIndex": 0,
  629. "_id": ""
  630. },
  631. {
  632. "__type__": "cc.Node",
  633. "_name": "Label",
  634. "_objFlags": 0,
  635. "_parent": {
  636. "__id__": 15
  637. },
  638. "_children": [],
  639. "_active": false,
  640. "_level": 0,
  641. "_components": [
  642. {
  643. "__id__": 17
  644. }
  645. ],
  646. "_prefab": {
  647. "__id__": 18
  648. },
  649. "_opacity": 255,
  650. "_color": {
  651. "__type__": "cc.Color",
  652. "r": 0,
  653. "g": 0,
  654. "b": 0,
  655. "a": 255
  656. },
  657. "_contentSize": {
  658. "__type__": "cc.Size",
  659. "width": 100,
  660. "height": 40
  661. },
  662. "_anchorPoint": {
  663. "__type__": "cc.Vec2",
  664. "x": 0.5,
  665. "y": 0.5
  666. },
  667. "_position": {
  668. "__type__": "cc.Vec3",
  669. "x": 0,
  670. "y": 0,
  671. "z": 0
  672. },
  673. "_scale": {
  674. "__type__": "cc.Vec3",
  675. "x": 1,
  676. "y": 1,
  677. "z": 1
  678. },
  679. "_quat": {
  680. "__type__": "cc.Quat",
  681. "x": 0,
  682. "y": 0,
  683. "z": 0,
  684. "w": 1
  685. },
  686. "_skewX": 0,
  687. "_skewY": 0,
  688. "_zIndex": 0,
  689. "_is3DNode": false,
  690. "groupIndex": 0,
  691. "_id": ""
  692. },
  693. {
  694. "__type__": "cc.Label",
  695. "_name": "",
  696. "_objFlags": 0,
  697. "node": {
  698. "__id__": 16
  699. },
  700. "_enabled": true,
  701. "_srcBlendFactor": 1,
  702. "_dstBlendFactor": 771,
  703. "_useOriginalSize": false,
  704. "_string": "button",
  705. "_N$string": "button",
  706. "_fontSize": 20,
  707. "_lineHeight": 40,
  708. "_enableWrapText": false,
  709. "_N$file": null,
  710. "_isSystemFontUsed": true,
  711. "_spacingX": 0,
  712. "_N$horizontalAlign": 1,
  713. "_N$verticalAlign": 1,
  714. "_N$fontFamily": "Arial",
  715. "_N$overflow": 1,
  716. "_id": ""
  717. },
  718. {
  719. "__type__": "cc.PrefabInfo",
  720. "root": {
  721. "__id__": 1
  722. },
  723. "asset": {
  724. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  725. },
  726. "fileId": "86qooRDchFiqVurHrp5eRQ",
  727. "sync": false
  728. },
  729. {
  730. "__type__": "cc.Sprite",
  731. "_name": "",
  732. "_objFlags": 0,
  733. "node": {
  734. "__id__": 15
  735. },
  736. "_enabled": true,
  737. "_srcBlendFactor": 770,
  738. "_dstBlendFactor": 771,
  739. "_spriteFrame": {
  740. "__uuid__": "e5780f65-f39c-4fe9-92a9-7cc6cc1f94e7"
  741. },
  742. "_type": 1,
  743. "_sizeMode": 0,
  744. "_fillType": 0,
  745. "_fillCenter": {
  746. "__type__": "cc.Vec2",
  747. "x": 0,
  748. "y": 0
  749. },
  750. "_fillStart": 0,
  751. "_fillRange": 0,
  752. "_isTrimmedMode": true,
  753. "_state": 0,
  754. "_atlas": null,
  755. "_id": ""
  756. },
  757. {
  758. "__type__": "cc.Button",
  759. "_name": "",
  760. "_objFlags": 0,
  761. "node": {
  762. "__id__": 15
  763. },
  764. "_enabled": true,
  765. "duration": 0.1,
  766. "zoomScale": 1.2,
  767. "clickEvents": [
  768. {
  769. "__id__": 21
  770. },
  771. {
  772. "__id__": 22
  773. }
  774. ],
  775. "_N$interactable": true,
  776. "_N$enableAutoGrayEffect": false,
  777. "_N$transition": 3,
  778. "transition": 3,
  779. "_N$normalColor": {
  780. "__type__": "cc.Color",
  781. "r": 255,
  782. "g": 255,
  783. "b": 255,
  784. "a": 255
  785. },
  786. "_N$pressedColor": {
  787. "__type__": "cc.Color",
  788. "r": 255,
  789. "g": 255,
  790. "b": 255,
  791. "a": 255
  792. },
  793. "pressedColor": {
  794. "__type__": "cc.Color",
  795. "r": 255,
  796. "g": 255,
  797. "b": 255,
  798. "a": 255
  799. },
  800. "_N$hoverColor": {
  801. "__type__": "cc.Color",
  802. "r": 255,
  803. "g": 255,
  804. "b": 255,
  805. "a": 255
  806. },
  807. "hoverColor": {
  808. "__type__": "cc.Color",
  809. "r": 255,
  810. "g": 255,
  811. "b": 255,
  812. "a": 255
  813. },
  814. "_N$disabledColor": {
  815. "__type__": "cc.Color",
  816. "r": 255,
  817. "g": 255,
  818. "b": 255,
  819. "a": 255
  820. },
  821. "_N$normalSprite": {
  822. "__uuid__": "e5780f65-f39c-4fe9-92a9-7cc6cc1f94e7"
  823. },
  824. "_N$pressedSprite": {
  825. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  826. },
  827. "pressedSprite": {
  828. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  829. },
  830. "_N$hoverSprite": {
  831. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  832. },
  833. "hoverSprite": {
  834. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  835. },
  836. "_N$disabledSprite": {
  837. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  838. },
  839. "_N$target": {
  840. "__id__": 15
  841. },
  842. "_id": ""
  843. },
  844. {
  845. "__type__": "cc.ClickEvent",
  846. "target": null,
  847. "component": "",
  848. "_componentId": "",
  849. "handler": "",
  850. "customEventData": ""
  851. },
  852. {
  853. "__type__": "cc.ClickEvent",
  854. "target": null,
  855. "component": "",
  856. "_componentId": "",
  857. "handler": "",
  858. "customEventData": ""
  859. },
  860. {
  861. "__type__": "cc.PrefabInfo",
  862. "root": {
  863. "__id__": 1
  864. },
  865. "asset": {
  866. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  867. },
  868. "fileId": "654f/I5IVEx77lta1JbMWg",
  869. "sync": false
  870. },
  871. {
  872. "__type__": "cc.Node",
  873. "_name": "Container",
  874. "_objFlags": 0,
  875. "_parent": {
  876. "__id__": 11
  877. },
  878. "_children": [
  879. {
  880. "__id__": 25
  881. },
  882. {
  883. "__id__": 28
  884. },
  885. {
  886. "__id__": 31
  887. },
  888. {
  889. "__id__": 34
  890. },
  891. {
  892. "__id__": 37
  893. },
  894. {
  895. "__id__": 40
  896. },
  897. {
  898. "__id__": 43
  899. },
  900. {
  901. "__id__": 46
  902. },
  903. {
  904. "__id__": 49
  905. },
  906. {
  907. "__id__": 52
  908. },
  909. {
  910. "__id__": 55
  911. },
  912. {
  913. "__id__": 58
  914. },
  915. {
  916. "__id__": 61
  917. },
  918. {
  919. "__id__": 64
  920. },
  921. {
  922. "__id__": 67
  923. },
  924. {
  925. "__id__": 70
  926. },
  927. {
  928. "__id__": 73
  929. },
  930. {
  931. "__id__": 82
  932. },
  933. {
  934. "__id__": 91
  935. }
  936. ],
  937. "_active": true,
  938. "_level": 5,
  939. "_components": [
  940. {
  941. "__id__": 100
  942. }
  943. ],
  944. "_prefab": {
  945. "__id__": 101
  946. },
  947. "_opacity": 255,
  948. "_color": {
  949. "__type__": "cc.Color",
  950. "r": 255,
  951. "g": 255,
  952. "b": 255,
  953. "a": 255
  954. },
  955. "_contentSize": {
  956. "__type__": "cc.Size",
  957. "width": 0,
  958. "height": 0
  959. },
  960. "_anchorPoint": {
  961. "__type__": "cc.Vec2",
  962. "x": 0.5,
  963. "y": 0.5
  964. },
  965. "_position": {
  966. "__type__": "cc.Vec3",
  967. "x": 0,
  968. "y": 0,
  969. "z": 0
  970. },
  971. "_scale": {
  972. "__type__": "cc.Vec3",
  973. "x": 1,
  974. "y": 1,
  975. "z": 1
  976. },
  977. "_skewX": 0,
  978. "_skewY": 0,
  979. "_zIndex": 0,
  980. "_is3DNode": false,
  981. "groupIndex": 0,
  982. "_id": "",
  983. "_eulerAngles": {
  984. "__type__": "cc.Vec3",
  985. "x": 0,
  986. "y": 0,
  987. "z": 0
  988. }
  989. },
  990. {
  991. "__type__": "cc.Node",
  992. "_name": "Num_Grade_SingleP",
  993. "_objFlags": 0,
  994. "_parent": {
  995. "__id__": 24
  996. },
  997. "_children": [],
  998. "_active": true,
  999. "_level": 6,
  1000. "_components": [
  1001. {
  1002. "__id__": 26
  1003. }
  1004. ],
  1005. "_prefab": {
  1006. "__id__": 27
  1007. },
  1008. "_opacity": 255,
  1009. "_color": {
  1010. "__type__": "cc.Color",
  1011. "r": 255,
  1012. "g": 255,
  1013. "b": 255,
  1014. "a": 255
  1015. },
  1016. "_contentSize": {
  1017. "__type__": "cc.Size",
  1018. "width": 15,
  1019. "height": 26
  1020. },
  1021. "_anchorPoint": {
  1022. "__type__": "cc.Vec2",
  1023. "x": 0.5,
  1024. "y": 0.5
  1025. },
  1026. "_position": {
  1027. "__type__": "cc.Vec3",
  1028. "x": -32.2,
  1029. "y": 12.7,
  1030. "z": 0
  1031. },
  1032. "_scale": {
  1033. "__type__": "cc.Vec3",
  1034. "x": 1,
  1035. "y": 1,
  1036. "z": 1
  1037. },
  1038. "_skewX": 0,
  1039. "_skewY": 0,
  1040. "_zIndex": 0,
  1041. "_is3DNode": false,
  1042. "groupIndex": 0,
  1043. "_id": "",
  1044. "_eulerAngles": {
  1045. "__type__": "cc.Vec3",
  1046. "x": 0,
  1047. "y": 0,
  1048. "z": 0
  1049. }
  1050. },
  1051. {
  1052. "__type__": "cc.Sprite",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "node": {
  1056. "__id__": 25
  1057. },
  1058. "_enabled": true,
  1059. "_srcBlendFactor": 770,
  1060. "_dstBlendFactor": 771,
  1061. "_spriteFrame": {
  1062. "__uuid__": "08649f91-605e-4c88-94f7-57f0d57139cc"
  1063. },
  1064. "_type": 0,
  1065. "_sizeMode": 1,
  1066. "_fillType": 0,
  1067. "_fillCenter": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 0,
  1070. "y": 0
  1071. },
  1072. "_fillStart": 0,
  1073. "_fillRange": 0,
  1074. "_isTrimmedMode": true,
  1075. "_state": 0,
  1076. "_atlas": null,
  1077. "_id": ""
  1078. },
  1079. {
  1080. "__type__": "cc.PrefabInfo",
  1081. "root": {
  1082. "__id__": 1
  1083. },
  1084. "asset": {
  1085. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1086. },
  1087. "fileId": "21BZe5FHJNa63mKRV49MbL",
  1088. "sync": false
  1089. },
  1090. {
  1091. "__type__": "cc.Node",
  1092. "_name": "Num_Grade_TenP",
  1093. "_objFlags": 0,
  1094. "_parent": {
  1095. "__id__": 24
  1096. },
  1097. "_children": [],
  1098. "_active": true,
  1099. "_level": 6,
  1100. "_components": [
  1101. {
  1102. "__id__": 29
  1103. }
  1104. ],
  1105. "_prefab": {
  1106. "__id__": 30
  1107. },
  1108. "_opacity": 255,
  1109. "_color": {
  1110. "__type__": "cc.Color",
  1111. "r": 255,
  1112. "g": 255,
  1113. "b": 255,
  1114. "a": 255
  1115. },
  1116. "_contentSize": {
  1117. "__type__": "cc.Size",
  1118. "width": 20,
  1119. "height": 27
  1120. },
  1121. "_anchorPoint": {
  1122. "__type__": "cc.Vec2",
  1123. "x": 0.5,
  1124. "y": 0.5
  1125. },
  1126. "_position": {
  1127. "__type__": "cc.Vec3",
  1128. "x": -55,
  1129. "y": 12.7,
  1130. "z": 0
  1131. },
  1132. "_scale": {
  1133. "__type__": "cc.Vec3",
  1134. "x": 1,
  1135. "y": 1,
  1136. "z": 1
  1137. },
  1138. "_skewX": 0,
  1139. "_skewY": 0,
  1140. "_zIndex": 0,
  1141. "_is3DNode": false,
  1142. "groupIndex": 0,
  1143. "_id": "",
  1144. "_eulerAngles": {
  1145. "__type__": "cc.Vec3",
  1146. "x": 0,
  1147. "y": 0,
  1148. "z": 0
  1149. }
  1150. },
  1151. {
  1152. "__type__": "cc.Sprite",
  1153. "_name": "",
  1154. "_objFlags": 0,
  1155. "node": {
  1156. "__id__": 28
  1157. },
  1158. "_enabled": true,
  1159. "_srcBlendFactor": 770,
  1160. "_dstBlendFactor": 771,
  1161. "_spriteFrame": {
  1162. "__uuid__": "5e18bb2b-2ce9-4dfa-9a36-c3f87961eca4"
  1163. },
  1164. "_type": 0,
  1165. "_sizeMode": 1,
  1166. "_fillType": 0,
  1167. "_fillCenter": {
  1168. "__type__": "cc.Vec2",
  1169. "x": 0,
  1170. "y": 0
  1171. },
  1172. "_fillStart": 0,
  1173. "_fillRange": 0,
  1174. "_isTrimmedMode": true,
  1175. "_state": 0,
  1176. "_atlas": null,
  1177. "_id": ""
  1178. },
  1179. {
  1180. "__type__": "cc.PrefabInfo",
  1181. "root": {
  1182. "__id__": 1
  1183. },
  1184. "asset": {
  1185. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1186. },
  1187. "fileId": "3bPpRRkN1OKq7cCA1usQoj",
  1188. "sync": false
  1189. },
  1190. {
  1191. "__type__": "cc.Node",
  1192. "_name": "PManage_2",
  1193. "_objFlags": 0,
  1194. "_parent": {
  1195. "__id__": 24
  1196. },
  1197. "_children": [],
  1198. "_active": true,
  1199. "_level": 6,
  1200. "_components": [
  1201. {
  1202. "__id__": 32
  1203. }
  1204. ],
  1205. "_prefab": {
  1206. "__id__": 33
  1207. },
  1208. "_opacity": 255,
  1209. "_color": {
  1210. "__type__": "cc.Color",
  1211. "r": 255,
  1212. "g": 255,
  1213. "b": 255,
  1214. "a": 255
  1215. },
  1216. "_contentSize": {
  1217. "__type__": "cc.Size",
  1218. "width": 41,
  1219. "height": 27
  1220. },
  1221. "_anchorPoint": {
  1222. "__type__": "cc.Vec2",
  1223. "x": 0.5,
  1224. "y": 0.5
  1225. },
  1226. "_position": {
  1227. "__type__": "cc.Vec3",
  1228. "x": -89.8,
  1229. "y": 12.7,
  1230. "z": 0
  1231. },
  1232. "_scale": {
  1233. "__type__": "cc.Vec3",
  1234. "x": 1,
  1235. "y": 1,
  1236. "z": 1
  1237. },
  1238. "_skewX": 0,
  1239. "_skewY": 0,
  1240. "_zIndex": 0,
  1241. "_is3DNode": false,
  1242. "groupIndex": 0,
  1243. "_id": "",
  1244. "_eulerAngles": {
  1245. "__type__": "cc.Vec3",
  1246. "x": 0,
  1247. "y": 0,
  1248. "z": 0
  1249. }
  1250. },
  1251. {
  1252. "__type__": "cc.Sprite",
  1253. "_name": "",
  1254. "_objFlags": 0,
  1255. "node": {
  1256. "__id__": 31
  1257. },
  1258. "_enabled": true,
  1259. "_srcBlendFactor": 770,
  1260. "_dstBlendFactor": 771,
  1261. "_spriteFrame": {
  1262. "__uuid__": "2f74a069-556d-4ec2-85a7-88d1e79f8cbd"
  1263. },
  1264. "_type": 0,
  1265. "_sizeMode": 1,
  1266. "_fillType": 0,
  1267. "_fillCenter": {
  1268. "__type__": "cc.Vec2",
  1269. "x": 0,
  1270. "y": 0
  1271. },
  1272. "_fillStart": 0,
  1273. "_fillRange": 0,
  1274. "_isTrimmedMode": true,
  1275. "_state": 0,
  1276. "_atlas": null,
  1277. "_id": ""
  1278. },
  1279. {
  1280. "__type__": "cc.PrefabInfo",
  1281. "root": {
  1282. "__id__": 1
  1283. },
  1284. "asset": {
  1285. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1286. },
  1287. "fileId": "adYaiPCZBH7LdsN/nXGHHu",
  1288. "sync": false
  1289. },
  1290. {
  1291. "__type__": "cc.Node",
  1292. "_name": "PManage_1",
  1293. "_objFlags": 0,
  1294. "_parent": {
  1295. "__id__": 24
  1296. },
  1297. "_children": [],
  1298. "_active": true,
  1299. "_level": 6,
  1300. "_components": [
  1301. {
  1302. "__id__": 35
  1303. }
  1304. ],
  1305. "_prefab": {
  1306. "__id__": 36
  1307. },
  1308. "_opacity": 255,
  1309. "_color": {
  1310. "__type__": "cc.Color",
  1311. "r": 255,
  1312. "g": 255,
  1313. "b": 255,
  1314. "a": 255
  1315. },
  1316. "_contentSize": {
  1317. "__type__": "cc.Size",
  1318. "width": 16,
  1319. "height": 29
  1320. },
  1321. "_anchorPoint": {
  1322. "__type__": "cc.Vec2",
  1323. "x": 0.5,
  1324. "y": 0.5
  1325. },
  1326. "_position": {
  1327. "__type__": "cc.Vec3",
  1328. "x": 119.8,
  1329. "y": 14,
  1330. "z": 0
  1331. },
  1332. "_scale": {
  1333. "__type__": "cc.Vec3",
  1334. "x": 1,
  1335. "y": 1,
  1336. "z": 1
  1337. },
  1338. "_skewX": 0,
  1339. "_skewY": 0,
  1340. "_zIndex": 0,
  1341. "_is3DNode": false,
  1342. "groupIndex": 0,
  1343. "_id": "",
  1344. "_eulerAngles": {
  1345. "__type__": "cc.Vec3",
  1346. "x": 0,
  1347. "y": 0,
  1348. "z": 0
  1349. }
  1350. },
  1351. {
  1352. "__type__": "cc.Sprite",
  1353. "_name": "",
  1354. "_objFlags": 0,
  1355. "node": {
  1356. "__id__": 34
  1357. },
  1358. "_enabled": true,
  1359. "_srcBlendFactor": 770,
  1360. "_dstBlendFactor": 771,
  1361. "_spriteFrame": {
  1362. "__uuid__": "026bdea0-7a11-4ceb-9975-f147f694af59"
  1363. },
  1364. "_type": 0,
  1365. "_sizeMode": 1,
  1366. "_fillType": 0,
  1367. "_fillCenter": {
  1368. "__type__": "cc.Vec2",
  1369. "x": 0,
  1370. "y": 0
  1371. },
  1372. "_fillStart": 0,
  1373. "_fillRange": 0,
  1374. "_isTrimmedMode": true,
  1375. "_state": 0,
  1376. "_atlas": null,
  1377. "_id": ""
  1378. },
  1379. {
  1380. "__type__": "cc.PrefabInfo",
  1381. "root": {
  1382. "__id__": 1
  1383. },
  1384. "asset": {
  1385. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1386. },
  1387. "fileId": "14ktiE4StJ6IgPjoDCTowX",
  1388. "sync": false
  1389. },
  1390. {
  1391. "__type__": "cc.Node",
  1392. "_name": "PManage_3",
  1393. "_objFlags": 0,
  1394. "_parent": {
  1395. "__id__": 24
  1396. },
  1397. "_children": [],
  1398. "_active": true,
  1399. "_level": 6,
  1400. "_components": [
  1401. {
  1402. "__id__": 38
  1403. }
  1404. ],
  1405. "_prefab": {
  1406. "__id__": 39
  1407. },
  1408. "_opacity": 255,
  1409. "_color": {
  1410. "__type__": "cc.Color",
  1411. "r": 255,
  1412. "g": 255,
  1413. "b": 255,
  1414. "a": 255
  1415. },
  1416. "_contentSize": {
  1417. "__type__": "cc.Size",
  1418. "width": 49,
  1419. "height": 23
  1420. },
  1421. "_anchorPoint": {
  1422. "__type__": "cc.Vec2",
  1423. "x": 0.5,
  1424. "y": 0.5
  1425. },
  1426. "_position": {
  1427. "__type__": "cc.Vec3",
  1428. "x": -145,
  1429. "y": 11,
  1430. "z": 0
  1431. },
  1432. "_scale": {
  1433. "__type__": "cc.Vec3",
  1434. "x": 1,
  1435. "y": 1,
  1436. "z": 1
  1437. },
  1438. "_skewX": 0,
  1439. "_skewY": 0,
  1440. "_zIndex": 0,
  1441. "_is3DNode": false,
  1442. "groupIndex": 0,
  1443. "_id": "",
  1444. "_eulerAngles": {
  1445. "__type__": "cc.Vec3",
  1446. "x": 0,
  1447. "y": 0,
  1448. "z": 0
  1449. }
  1450. },
  1451. {
  1452. "__type__": "cc.Sprite",
  1453. "_name": "",
  1454. "_objFlags": 0,
  1455. "node": {
  1456. "__id__": 37
  1457. },
  1458. "_enabled": true,
  1459. "_srcBlendFactor": 770,
  1460. "_dstBlendFactor": 771,
  1461. "_spriteFrame": {
  1462. "__uuid__": "8b8a4c87-0bd5-48b7-a5eb-146bd6c28586"
  1463. },
  1464. "_type": 0,
  1465. "_sizeMode": 1,
  1466. "_fillType": 0,
  1467. "_fillCenter": {
  1468. "__type__": "cc.Vec2",
  1469. "x": 0,
  1470. "y": 0
  1471. },
  1472. "_fillStart": 0,
  1473. "_fillRange": 0,
  1474. "_isTrimmedMode": true,
  1475. "_state": 0,
  1476. "_atlas": null,
  1477. "_id": ""
  1478. },
  1479. {
  1480. "__type__": "cc.PrefabInfo",
  1481. "root": {
  1482. "__id__": 1
  1483. },
  1484. "asset": {
  1485. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1486. },
  1487. "fileId": "4aSaOyZjZPc6BIgMegGk4D",
  1488. "sync": false
  1489. },
  1490. {
  1491. "__type__": "cc.Node",
  1492. "_name": "PManage_4",
  1493. "_objFlags": 0,
  1494. "_parent": {
  1495. "__id__": 24
  1496. },
  1497. "_children": [],
  1498. "_active": true,
  1499. "_level": 6,
  1500. "_components": [
  1501. {
  1502. "__id__": 41
  1503. }
  1504. ],
  1505. "_prefab": {
  1506. "__id__": 42
  1507. },
  1508. "_opacity": 255,
  1509. "_color": {
  1510. "__type__": "cc.Color",
  1511. "r": 255,
  1512. "g": 255,
  1513. "b": 255,
  1514. "a": 255
  1515. },
  1516. "_contentSize": {
  1517. "__type__": "cc.Size",
  1518. "width": 49,
  1519. "height": 23
  1520. },
  1521. "_anchorPoint": {
  1522. "__type__": "cc.Vec2",
  1523. "x": 0.5,
  1524. "y": 0.5
  1525. },
  1526. "_position": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 28,
  1529. "y": 11,
  1530. "z": 0
  1531. },
  1532. "_scale": {
  1533. "__type__": "cc.Vec3",
  1534. "x": 1,
  1535. "y": 1,
  1536. "z": 1
  1537. },
  1538. "_skewX": 0,
  1539. "_skewY": 0,
  1540. "_zIndex": 0,
  1541. "_is3DNode": false,
  1542. "groupIndex": 0,
  1543. "_id": "",
  1544. "_eulerAngles": {
  1545. "__type__": "cc.Vec3",
  1546. "x": 0,
  1547. "y": 0,
  1548. "z": 0
  1549. }
  1550. },
  1551. {
  1552. "__type__": "cc.Sprite",
  1553. "_name": "",
  1554. "_objFlags": 0,
  1555. "node": {
  1556. "__id__": 40
  1557. },
  1558. "_enabled": true,
  1559. "_srcBlendFactor": 770,
  1560. "_dstBlendFactor": 771,
  1561. "_spriteFrame": {
  1562. "__uuid__": "338e2f6a-619b-43cc-82bd-ac3db35ae536"
  1563. },
  1564. "_type": 0,
  1565. "_sizeMode": 1,
  1566. "_fillType": 0,
  1567. "_fillCenter": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0,
  1570. "y": 0
  1571. },
  1572. "_fillStart": 0,
  1573. "_fillRange": 0,
  1574. "_isTrimmedMode": true,
  1575. "_state": 0,
  1576. "_atlas": null,
  1577. "_id": ""
  1578. },
  1579. {
  1580. "__type__": "cc.PrefabInfo",
  1581. "root": {
  1582. "__id__": 1
  1583. },
  1584. "asset": {
  1585. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1586. },
  1587. "fileId": "545qwxQCNBYb6gpcZnCOLK",
  1588. "sync": false
  1589. },
  1590. {
  1591. "__type__": "cc.Node",
  1592. "_name": "PManage_6",
  1593. "_objFlags": 0,
  1594. "_parent": {
  1595. "__id__": 24
  1596. },
  1597. "_children": [],
  1598. "_active": true,
  1599. "_level": 6,
  1600. "_components": [
  1601. {
  1602. "__id__": 44
  1603. }
  1604. ],
  1605. "_prefab": {
  1606. "__id__": 45
  1607. },
  1608. "_opacity": 255,
  1609. "_color": {
  1610. "__type__": "cc.Color",
  1611. "r": 255,
  1612. "g": 255,
  1613. "b": 255,
  1614. "a": 255
  1615. },
  1616. "_contentSize": {
  1617. "__type__": "cc.Size",
  1618. "width": 101,
  1619. "height": 29
  1620. },
  1621. "_anchorPoint": {
  1622. "__type__": "cc.Vec2",
  1623. "x": 0.5,
  1624. "y": 0.5
  1625. },
  1626. "_position": {
  1627. "__type__": "cc.Vec3",
  1628. "x": 78,
  1629. "y": -47,
  1630. "z": 0
  1631. },
  1632. "_scale": {
  1633. "__type__": "cc.Vec3",
  1634. "x": 1,
  1635. "y": 1,
  1636. "z": 1
  1637. },
  1638. "_skewX": 0,
  1639. "_skewY": 0,
  1640. "_zIndex": 0,
  1641. "_is3DNode": false,
  1642. "groupIndex": 0,
  1643. "_id": "",
  1644. "_eulerAngles": {
  1645. "__type__": "cc.Vec3",
  1646. "x": 0,
  1647. "y": 0,
  1648. "z": 0
  1649. }
  1650. },
  1651. {
  1652. "__type__": "cc.Sprite",
  1653. "_name": "",
  1654. "_objFlags": 0,
  1655. "node": {
  1656. "__id__": 43
  1657. },
  1658. "_enabled": true,
  1659. "_srcBlendFactor": 770,
  1660. "_dstBlendFactor": 771,
  1661. "_spriteFrame": {
  1662. "__uuid__": "c07acbdd-d778-4d2a-a2b8-97696e6c70cc"
  1663. },
  1664. "_type": 0,
  1665. "_sizeMode": 1,
  1666. "_fillType": 0,
  1667. "_fillCenter": {
  1668. "__type__": "cc.Vec2",
  1669. "x": 0,
  1670. "y": 0
  1671. },
  1672. "_fillStart": 0,
  1673. "_fillRange": 0,
  1674. "_isTrimmedMode": true,
  1675. "_state": 0,
  1676. "_atlas": null,
  1677. "_id": ""
  1678. },
  1679. {
  1680. "__type__": "cc.PrefabInfo",
  1681. "root": {
  1682. "__id__": 1
  1683. },
  1684. "asset": {
  1685. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1686. },
  1687. "fileId": "baJGUy0yBG8IsbGRuKTf7h",
  1688. "sync": false
  1689. },
  1690. {
  1691. "__type__": "cc.Node",
  1692. "_name": "PManage_9",
  1693. "_objFlags": 0,
  1694. "_parent": {
  1695. "__id__": 24
  1696. },
  1697. "_children": [],
  1698. "_active": true,
  1699. "_level": 6,
  1700. "_components": [
  1701. {
  1702. "__id__": 47
  1703. }
  1704. ],
  1705. "_prefab": {
  1706. "__id__": 48
  1707. },
  1708. "_opacity": 255,
  1709. "_color": {
  1710. "__type__": "cc.Color",
  1711. "r": 255,
  1712. "g": 255,
  1713. "b": 255,
  1714. "a": 255
  1715. },
  1716. "_contentSize": {
  1717. "__type__": "cc.Size",
  1718. "width": 71,
  1719. "height": 29
  1720. },
  1721. "_anchorPoint": {
  1722. "__type__": "cc.Vec2",
  1723. "x": 0.5,
  1724. "y": 0.5
  1725. },
  1726. "_position": {
  1727. "__type__": "cc.Vec3",
  1728. "x": -148,
  1729. "y": -96,
  1730. "z": 0
  1731. },
  1732. "_scale": {
  1733. "__type__": "cc.Vec3",
  1734. "x": 1,
  1735. "y": 1,
  1736. "z": 1
  1737. },
  1738. "_skewX": 0,
  1739. "_skewY": 0,
  1740. "_zIndex": 0,
  1741. "_is3DNode": false,
  1742. "groupIndex": 0,
  1743. "_id": "",
  1744. "_eulerAngles": {
  1745. "__type__": "cc.Vec3",
  1746. "x": 0,
  1747. "y": 0,
  1748. "z": 0
  1749. }
  1750. },
  1751. {
  1752. "__type__": "cc.Sprite",
  1753. "_name": "",
  1754. "_objFlags": 0,
  1755. "node": {
  1756. "__id__": 46
  1757. },
  1758. "_enabled": true,
  1759. "_srcBlendFactor": 770,
  1760. "_dstBlendFactor": 771,
  1761. "_spriteFrame": {
  1762. "__uuid__": "94f4d09c-99c3-47c6-9e4e-6c78f6ab5543"
  1763. },
  1764. "_type": 0,
  1765. "_sizeMode": 1,
  1766. "_fillType": 0,
  1767. "_fillCenter": {
  1768. "__type__": "cc.Vec2",
  1769. "x": 0,
  1770. "y": 0
  1771. },
  1772. "_fillStart": 0,
  1773. "_fillRange": 0,
  1774. "_isTrimmedMode": true,
  1775. "_state": 0,
  1776. "_atlas": null,
  1777. "_id": ""
  1778. },
  1779. {
  1780. "__type__": "cc.PrefabInfo",
  1781. "root": {
  1782. "__id__": 1
  1783. },
  1784. "asset": {
  1785. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1786. },
  1787. "fileId": "78sL+oH8pBIpofyQk5oPZp",
  1788. "sync": false
  1789. },
  1790. {
  1791. "__type__": "cc.Node",
  1792. "_name": "PManage_8",
  1793. "_objFlags": 0,
  1794. "_parent": {
  1795. "__id__": 24
  1796. },
  1797. "_children": [],
  1798. "_active": true,
  1799. "_level": 6,
  1800. "_components": [
  1801. {
  1802. "__id__": 50
  1803. }
  1804. ],
  1805. "_prefab": {
  1806. "__id__": 51
  1807. },
  1808. "_opacity": 255,
  1809. "_color": {
  1810. "__type__": "cc.Color",
  1811. "r": 255,
  1812. "g": 255,
  1813. "b": 255,
  1814. "a": 255
  1815. },
  1816. "_contentSize": {
  1817. "__type__": "cc.Size",
  1818. "width": 71,
  1819. "height": 29
  1820. },
  1821. "_anchorPoint": {
  1822. "__type__": "cc.Vec2",
  1823. "x": 0.5,
  1824. "y": 0.5
  1825. },
  1826. "_position": {
  1827. "__type__": "cc.Vec3",
  1828. "x": -148,
  1829. "y": -47,
  1830. "z": 0
  1831. },
  1832. "_scale": {
  1833. "__type__": "cc.Vec3",
  1834. "x": 1,
  1835. "y": 1,
  1836. "z": 1
  1837. },
  1838. "_skewX": 0,
  1839. "_skewY": 0,
  1840. "_zIndex": 0,
  1841. "_is3DNode": false,
  1842. "groupIndex": 0,
  1843. "_id": "",
  1844. "_eulerAngles": {
  1845. "__type__": "cc.Vec3",
  1846. "x": 0,
  1847. "y": 0,
  1848. "z": 0
  1849. }
  1850. },
  1851. {
  1852. "__type__": "cc.Sprite",
  1853. "_name": "",
  1854. "_objFlags": 0,
  1855. "node": {
  1856. "__id__": 49
  1857. },
  1858. "_enabled": true,
  1859. "_srcBlendFactor": 770,
  1860. "_dstBlendFactor": 771,
  1861. "_spriteFrame": {
  1862. "__uuid__": "5939d065-2106-44ea-9192-80c2c9a97046"
  1863. },
  1864. "_type": 0,
  1865. "_sizeMode": 1,
  1866. "_fillType": 0,
  1867. "_fillCenter": {
  1868. "__type__": "cc.Vec2",
  1869. "x": 0,
  1870. "y": 0
  1871. },
  1872. "_fillStart": 0,
  1873. "_fillRange": 0,
  1874. "_isTrimmedMode": true,
  1875. "_state": 0,
  1876. "_atlas": null,
  1877. "_id": ""
  1878. },
  1879. {
  1880. "__type__": "cc.PrefabInfo",
  1881. "root": {
  1882. "__id__": 1
  1883. },
  1884. "asset": {
  1885. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1886. },
  1887. "fileId": "33NOerI3tBcrX9saf/3/FP",
  1888. "sync": false
  1889. },
  1890. {
  1891. "__type__": "cc.Node",
  1892. "_name": "Num_Current_SingleP",
  1893. "_objFlags": 0,
  1894. "_parent": {
  1895. "__id__": 24
  1896. },
  1897. "_children": [],
  1898. "_active": true,
  1899. "_level": 6,
  1900. "_components": [
  1901. {
  1902. "__id__": 53
  1903. }
  1904. ],
  1905. "_prefab": {
  1906. "__id__": 54
  1907. },
  1908. "_opacity": 255,
  1909. "_color": {
  1910. "__type__": "cc.Color",
  1911. "r": 255,
  1912. "g": 255,
  1913. "b": 255,
  1914. "a": 255
  1915. },
  1916. "_contentSize": {
  1917. "__type__": "cc.Size",
  1918. "width": 15,
  1919. "height": 26
  1920. },
  1921. "_anchorPoint": {
  1922. "__type__": "cc.Vec2",
  1923. "x": 0.5,
  1924. "y": 0.5
  1925. },
  1926. "_position": {
  1927. "__type__": "cc.Vec3",
  1928. "x": 94,
  1929. "y": 12.7,
  1930. "z": 0
  1931. },
  1932. "_scale": {
  1933. "__type__": "cc.Vec3",
  1934. "x": 1,
  1935. "y": 1,
  1936. "z": 1
  1937. },
  1938. "_skewX": 0,
  1939. "_skewY": 0,
  1940. "_zIndex": 0,
  1941. "_is3DNode": false,
  1942. "groupIndex": 0,
  1943. "_id": "",
  1944. "_eulerAngles": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 0,
  1947. "y": 0,
  1948. "z": 0
  1949. }
  1950. },
  1951. {
  1952. "__type__": "cc.Sprite",
  1953. "_name": "",
  1954. "_objFlags": 0,
  1955. "node": {
  1956. "__id__": 52
  1957. },
  1958. "_enabled": true,
  1959. "_srcBlendFactor": 770,
  1960. "_dstBlendFactor": 771,
  1961. "_spriteFrame": {
  1962. "__uuid__": "08649f91-605e-4c88-94f7-57f0d57139cc"
  1963. },
  1964. "_type": 0,
  1965. "_sizeMode": 1,
  1966. "_fillType": 0,
  1967. "_fillCenter": {
  1968. "__type__": "cc.Vec2",
  1969. "x": 0,
  1970. "y": 0
  1971. },
  1972. "_fillStart": 0,
  1973. "_fillRange": 0,
  1974. "_isTrimmedMode": true,
  1975. "_state": 0,
  1976. "_atlas": null,
  1977. "_id": ""
  1978. },
  1979. {
  1980. "__type__": "cc.PrefabInfo",
  1981. "root": {
  1982. "__id__": 1
  1983. },
  1984. "asset": {
  1985. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  1986. },
  1987. "fileId": "196XHdq+FMEpJSSOFO4tUV",
  1988. "sync": false
  1989. },
  1990. {
  1991. "__type__": "cc.Node",
  1992. "_name": "Num_Current_TenP",
  1993. "_objFlags": 0,
  1994. "_parent": {
  1995. "__id__": 24
  1996. },
  1997. "_children": [],
  1998. "_active": true,
  1999. "_level": 6,
  2000. "_components": [
  2001. {
  2002. "__id__": 56
  2003. }
  2004. ],
  2005. "_prefab": {
  2006. "__id__": 57
  2007. },
  2008. "_opacity": 255,
  2009. "_color": {
  2010. "__type__": "cc.Color",
  2011. "r": 255,
  2012. "g": 255,
  2013. "b": 255,
  2014. "a": 255
  2015. },
  2016. "_contentSize": {
  2017. "__type__": "cc.Size",
  2018. "width": 20,
  2019. "height": 27
  2020. },
  2021. "_anchorPoint": {
  2022. "__type__": "cc.Vec2",
  2023. "x": 0.5,
  2024. "y": 0.5
  2025. },
  2026. "_position": {
  2027. "__type__": "cc.Vec3",
  2028. "x": 71.2,
  2029. "y": 12.7,
  2030. "z": 0
  2031. },
  2032. "_scale": {
  2033. "__type__": "cc.Vec3",
  2034. "x": 1,
  2035. "y": 1,
  2036. "z": 1
  2037. },
  2038. "_skewX": 0,
  2039. "_skewY": 0,
  2040. "_zIndex": 0,
  2041. "_is3DNode": false,
  2042. "groupIndex": 0,
  2043. "_id": "",
  2044. "_eulerAngles": {
  2045. "__type__": "cc.Vec3",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0
  2049. }
  2050. },
  2051. {
  2052. "__type__": "cc.Sprite",
  2053. "_name": "",
  2054. "_objFlags": 0,
  2055. "node": {
  2056. "__id__": 55
  2057. },
  2058. "_enabled": true,
  2059. "_srcBlendFactor": 770,
  2060. "_dstBlendFactor": 771,
  2061. "_spriteFrame": {
  2062. "__uuid__": "5e18bb2b-2ce9-4dfa-9a36-c3f87961eca4"
  2063. },
  2064. "_type": 0,
  2065. "_sizeMode": 1,
  2066. "_fillType": 0,
  2067. "_fillCenter": {
  2068. "__type__": "cc.Vec2",
  2069. "x": 0,
  2070. "y": 0
  2071. },
  2072. "_fillStart": 0,
  2073. "_fillRange": 0,
  2074. "_isTrimmedMode": true,
  2075. "_state": 0,
  2076. "_atlas": null,
  2077. "_id": ""
  2078. },
  2079. {
  2080. "__type__": "cc.PrefabInfo",
  2081. "root": {
  2082. "__id__": 1
  2083. },
  2084. "asset": {
  2085. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2086. },
  2087. "fileId": "0eRXQz2hlO5I+RcWXla4KZ",
  2088. "sync": false
  2089. },
  2090. {
  2091. "__type__": "cc.Node",
  2092. "_name": "Num_Total_SingleP",
  2093. "_objFlags": 0,
  2094. "_parent": {
  2095. "__id__": 24
  2096. },
  2097. "_children": [],
  2098. "_active": true,
  2099. "_level": 6,
  2100. "_components": [
  2101. {
  2102. "__id__": 59
  2103. }
  2104. ],
  2105. "_prefab": {
  2106. "__id__": 60
  2107. },
  2108. "_opacity": 255,
  2109. "_color": {
  2110. "__type__": "cc.Color",
  2111. "r": 255,
  2112. "g": 255,
  2113. "b": 255,
  2114. "a": 255
  2115. },
  2116. "_contentSize": {
  2117. "__type__": "cc.Size",
  2118. "width": 15,
  2119. "height": 26
  2120. },
  2121. "_anchorPoint": {
  2122. "__type__": "cc.Vec2",
  2123. "x": 0.5,
  2124. "y": 0.5
  2125. },
  2126. "_position": {
  2127. "__type__": "cc.Vec3",
  2128. "x": 163.4,
  2129. "y": 12.7,
  2130. "z": 0
  2131. },
  2132. "_scale": {
  2133. "__type__": "cc.Vec3",
  2134. "x": 1,
  2135. "y": 1,
  2136. "z": 1
  2137. },
  2138. "_skewX": 0,
  2139. "_skewY": 0,
  2140. "_zIndex": 0,
  2141. "_is3DNode": false,
  2142. "groupIndex": 0,
  2143. "_id": "",
  2144. "_eulerAngles": {
  2145. "__type__": "cc.Vec3",
  2146. "x": 0,
  2147. "y": 0,
  2148. "z": 0
  2149. }
  2150. },
  2151. {
  2152. "__type__": "cc.Sprite",
  2153. "_name": "",
  2154. "_objFlags": 0,
  2155. "node": {
  2156. "__id__": 58
  2157. },
  2158. "_enabled": true,
  2159. "_srcBlendFactor": 770,
  2160. "_dstBlendFactor": 771,
  2161. "_spriteFrame": {
  2162. "__uuid__": "08649f91-605e-4c88-94f7-57f0d57139cc"
  2163. },
  2164. "_type": 0,
  2165. "_sizeMode": 1,
  2166. "_fillType": 0,
  2167. "_fillCenter": {
  2168. "__type__": "cc.Vec2",
  2169. "x": 0,
  2170. "y": 0
  2171. },
  2172. "_fillStart": 0,
  2173. "_fillRange": 0,
  2174. "_isTrimmedMode": true,
  2175. "_state": 0,
  2176. "_atlas": null,
  2177. "_id": ""
  2178. },
  2179. {
  2180. "__type__": "cc.PrefabInfo",
  2181. "root": {
  2182. "__id__": 1
  2183. },
  2184. "asset": {
  2185. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2186. },
  2187. "fileId": "36PaPsUVtJCrr7ZXfR+KcZ",
  2188. "sync": false
  2189. },
  2190. {
  2191. "__type__": "cc.Node",
  2192. "_name": "Num_Total_TenP",
  2193. "_objFlags": 0,
  2194. "_parent": {
  2195. "__id__": 24
  2196. },
  2197. "_children": [],
  2198. "_active": true,
  2199. "_level": 6,
  2200. "_components": [
  2201. {
  2202. "__id__": 62
  2203. }
  2204. ],
  2205. "_prefab": {
  2206. "__id__": 63
  2207. },
  2208. "_opacity": 255,
  2209. "_color": {
  2210. "__type__": "cc.Color",
  2211. "r": 255,
  2212. "g": 255,
  2213. "b": 255,
  2214. "a": 255
  2215. },
  2216. "_contentSize": {
  2217. "__type__": "cc.Size",
  2218. "width": 20,
  2219. "height": 27
  2220. },
  2221. "_anchorPoint": {
  2222. "__type__": "cc.Vec2",
  2223. "x": 0.5,
  2224. "y": 0.5
  2225. },
  2226. "_position": {
  2227. "__type__": "cc.Vec3",
  2228. "x": 140.6,
  2229. "y": 12.7,
  2230. "z": 0
  2231. },
  2232. "_scale": {
  2233. "__type__": "cc.Vec3",
  2234. "x": 1,
  2235. "y": 1,
  2236. "z": 1
  2237. },
  2238. "_skewX": 0,
  2239. "_skewY": 0,
  2240. "_zIndex": 0,
  2241. "_is3DNode": false,
  2242. "groupIndex": 0,
  2243. "_id": "",
  2244. "_eulerAngles": {
  2245. "__type__": "cc.Vec3",
  2246. "x": 0,
  2247. "y": 0,
  2248. "z": 0
  2249. }
  2250. },
  2251. {
  2252. "__type__": "cc.Sprite",
  2253. "_name": "",
  2254. "_objFlags": 0,
  2255. "node": {
  2256. "__id__": 61
  2257. },
  2258. "_enabled": true,
  2259. "_srcBlendFactor": 770,
  2260. "_dstBlendFactor": 771,
  2261. "_spriteFrame": {
  2262. "__uuid__": "5e18bb2b-2ce9-4dfa-9a36-c3f87961eca4"
  2263. },
  2264. "_type": 0,
  2265. "_sizeMode": 1,
  2266. "_fillType": 0,
  2267. "_fillCenter": {
  2268. "__type__": "cc.Vec2",
  2269. "x": 0,
  2270. "y": 0
  2271. },
  2272. "_fillStart": 0,
  2273. "_fillRange": 0,
  2274. "_isTrimmedMode": true,
  2275. "_state": 0,
  2276. "_atlas": null,
  2277. "_id": ""
  2278. },
  2279. {
  2280. "__type__": "cc.PrefabInfo",
  2281. "root": {
  2282. "__id__": 1
  2283. },
  2284. "asset": {
  2285. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2286. },
  2287. "fileId": "d51L/R1RpO54D3xqlPG6un",
  2288. "sync": false
  2289. },
  2290. {
  2291. "__type__": "cc.Node",
  2292. "_name": "Num_PhysicalStrength",
  2293. "_objFlags": 0,
  2294. "_parent": {
  2295. "__id__": 24
  2296. },
  2297. "_children": [],
  2298. "_active": true,
  2299. "_level": 6,
  2300. "_components": [
  2301. {
  2302. "__id__": 65
  2303. }
  2304. ],
  2305. "_prefab": {
  2306. "__id__": 66
  2307. },
  2308. "_opacity": 255,
  2309. "_color": {
  2310. "__type__": "cc.Color",
  2311. "r": 0,
  2312. "g": 0,
  2313. "b": 0,
  2314. "a": 255
  2315. },
  2316. "_contentSize": {
  2317. "__type__": "cc.Size",
  2318. "width": 34,
  2319. "height": 40
  2320. },
  2321. "_anchorPoint": {
  2322. "__type__": "cc.Vec2",
  2323. "x": 0,
  2324. "y": 0.5
  2325. },
  2326. "_position": {
  2327. "__type__": "cc.Vec3",
  2328. "x": -93,
  2329. "y": -47,
  2330. "z": 0
  2331. },
  2332. "_scale": {
  2333. "__type__": "cc.Vec3",
  2334. "x": 1,
  2335. "y": 1,
  2336. "z": 1
  2337. },
  2338. "_quat": {
  2339. "__type__": "cc.Quat",
  2340. "x": 0,
  2341. "y": 0,
  2342. "z": 0,
  2343. "w": 1
  2344. },
  2345. "_skewX": 0,
  2346. "_skewY": 0,
  2347. "_zIndex": 0,
  2348. "_is3DNode": false,
  2349. "groupIndex": 0,
  2350. "_id": ""
  2351. },
  2352. {
  2353. "__type__": "cc.Label",
  2354. "_name": "",
  2355. "_objFlags": 0,
  2356. "node": {
  2357. "__id__": 64
  2358. },
  2359. "_enabled": true,
  2360. "_srcBlendFactor": 1,
  2361. "_dstBlendFactor": 771,
  2362. "_useOriginalSize": false,
  2363. "_string": "32",
  2364. "_N$string": "32",
  2365. "_fontSize": 30,
  2366. "_lineHeight": 40,
  2367. "_enableWrapText": true,
  2368. "_N$file": null,
  2369. "_isSystemFontUsed": true,
  2370. "_spacingX": 0,
  2371. "_N$horizontalAlign": 1,
  2372. "_N$verticalAlign": 1,
  2373. "_N$fontFamily": "Arial",
  2374. "_N$overflow": 0,
  2375. "_id": ""
  2376. },
  2377. {
  2378. "__type__": "cc.PrefabInfo",
  2379. "root": {
  2380. "__id__": 1
  2381. },
  2382. "asset": {
  2383. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2384. },
  2385. "fileId": "87aYNfbUZN2pic4JhNCapJ",
  2386. "sync": false
  2387. },
  2388. {
  2389. "__type__": "cc.Node",
  2390. "_name": "Num_Labor",
  2391. "_objFlags": 0,
  2392. "_parent": {
  2393. "__id__": 24
  2394. },
  2395. "_children": [],
  2396. "_active": true,
  2397. "_level": 6,
  2398. "_components": [
  2399. {
  2400. "__id__": 68
  2401. }
  2402. ],
  2403. "_prefab": {
  2404. "__id__": 69
  2405. },
  2406. "_opacity": 255,
  2407. "_color": {
  2408. "__type__": "cc.Color",
  2409. "r": 0,
  2410. "g": 0,
  2411. "b": 0,
  2412. "a": 255
  2413. },
  2414. "_contentSize": {
  2415. "__type__": "cc.Size",
  2416. "width": 34,
  2417. "height": 40
  2418. },
  2419. "_anchorPoint": {
  2420. "__type__": "cc.Vec2",
  2421. "x": 0,
  2422. "y": 0.5
  2423. },
  2424. "_position": {
  2425. "__type__": "cc.Vec3",
  2426. "x": 150.7,
  2427. "y": -47,
  2428. "z": 0
  2429. },
  2430. "_scale": {
  2431. "__type__": "cc.Vec3",
  2432. "x": 1,
  2433. "y": 1,
  2434. "z": 1
  2435. },
  2436. "_quat": {
  2437. "__type__": "cc.Quat",
  2438. "x": 0,
  2439. "y": 0,
  2440. "z": 0,
  2441. "w": 1
  2442. },
  2443. "_skewX": 0,
  2444. "_skewY": 0,
  2445. "_zIndex": 0,
  2446. "_is3DNode": false,
  2447. "groupIndex": 0,
  2448. "_id": ""
  2449. },
  2450. {
  2451. "__type__": "cc.Label",
  2452. "_name": "",
  2453. "_objFlags": 0,
  2454. "node": {
  2455. "__id__": 67
  2456. },
  2457. "_enabled": true,
  2458. "_srcBlendFactor": 1,
  2459. "_dstBlendFactor": 771,
  2460. "_useOriginalSize": false,
  2461. "_string": "26",
  2462. "_N$string": "26",
  2463. "_fontSize": 30,
  2464. "_lineHeight": 40,
  2465. "_enableWrapText": true,
  2466. "_N$file": null,
  2467. "_isSystemFontUsed": true,
  2468. "_spacingX": 0,
  2469. "_N$horizontalAlign": 1,
  2470. "_N$verticalAlign": 1,
  2471. "_N$fontFamily": "Arial",
  2472. "_N$overflow": 0,
  2473. "_id": ""
  2474. },
  2475. {
  2476. "__type__": "cc.PrefabInfo",
  2477. "root": {
  2478. "__id__": 1
  2479. },
  2480. "asset": {
  2481. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2482. },
  2483. "fileId": "44EWhXXupKBYedazw1doeq",
  2484. "sync": false
  2485. },
  2486. {
  2487. "__type__": "cc.Node",
  2488. "_name": "Num_Wages",
  2489. "_objFlags": 0,
  2490. "_parent": {
  2491. "__id__": 24
  2492. },
  2493. "_children": [],
  2494. "_active": true,
  2495. "_level": 6,
  2496. "_components": [
  2497. {
  2498. "__id__": 71
  2499. }
  2500. ],
  2501. "_prefab": {
  2502. "__id__": 72
  2503. },
  2504. "_opacity": 255,
  2505. "_color": {
  2506. "__type__": "cc.Color",
  2507. "r": 0,
  2508. "g": 0,
  2509. "b": 0,
  2510. "a": 255
  2511. },
  2512. "_contentSize": {
  2513. "__type__": "cc.Size",
  2514. "width": 68,
  2515. "height": 40
  2516. },
  2517. "_anchorPoint": {
  2518. "__type__": "cc.Vec2",
  2519. "x": 0,
  2520. "y": 0.5
  2521. },
  2522. "_position": {
  2523. "__type__": "cc.Vec3",
  2524. "x": -93,
  2525. "y": -96,
  2526. "z": 0
  2527. },
  2528. "_scale": {
  2529. "__type__": "cc.Vec3",
  2530. "x": 1,
  2531. "y": 1,
  2532. "z": 1
  2533. },
  2534. "_quat": {
  2535. "__type__": "cc.Quat",
  2536. "x": 0,
  2537. "y": 0,
  2538. "z": 0,
  2539. "w": 1
  2540. },
  2541. "_skewX": 0,
  2542. "_skewY": 0,
  2543. "_zIndex": 0,
  2544. "_is3DNode": false,
  2545. "groupIndex": 0,
  2546. "_id": ""
  2547. },
  2548. {
  2549. "__type__": "cc.Label",
  2550. "_name": "",
  2551. "_objFlags": 0,
  2552. "node": {
  2553. "__id__": 70
  2554. },
  2555. "_enabled": true,
  2556. "_srcBlendFactor": 1,
  2557. "_dstBlendFactor": 771,
  2558. "_useOriginalSize": false,
  2559. "_string": "3200",
  2560. "_N$string": "3200",
  2561. "_fontSize": 30,
  2562. "_lineHeight": 40,
  2563. "_enableWrapText": true,
  2564. "_N$file": null,
  2565. "_isSystemFontUsed": true,
  2566. "_spacingX": 0,
  2567. "_N$horizontalAlign": 1,
  2568. "_N$verticalAlign": 1,
  2569. "_N$fontFamily": "Arial",
  2570. "_N$overflow": 0,
  2571. "_id": ""
  2572. },
  2573. {
  2574. "__type__": "cc.PrefabInfo",
  2575. "root": {
  2576. "__id__": 1
  2577. },
  2578. "asset": {
  2579. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2580. },
  2581. "fileId": "57yDHMuitCdo2fllSpPBuu",
  2582. "sync": false
  2583. },
  2584. {
  2585. "__type__": "cc.Node",
  2586. "_name": "Btn_Recruit",
  2587. "_objFlags": 0,
  2588. "_parent": {
  2589. "__id__": 24
  2590. },
  2591. "_children": [
  2592. {
  2593. "__id__": 74
  2594. }
  2595. ],
  2596. "_active": true,
  2597. "_level": 6,
  2598. "_components": [
  2599. {
  2600. "__id__": 77
  2601. },
  2602. {
  2603. "__id__": 78
  2604. }
  2605. ],
  2606. "_prefab": {
  2607. "__id__": 81
  2608. },
  2609. "_opacity": 255,
  2610. "_color": {
  2611. "__type__": "cc.Color",
  2612. "r": 255,
  2613. "g": 255,
  2614. "b": 255,
  2615. "a": 255
  2616. },
  2617. "_contentSize": {
  2618. "__type__": "cc.Size",
  2619. "width": 91,
  2620. "height": 49
  2621. },
  2622. "_anchorPoint": {
  2623. "__type__": "cc.Vec2",
  2624. "x": 0.5,
  2625. "y": 0.5
  2626. },
  2627. "_position": {
  2628. "__type__": "cc.Vec3",
  2629. "x": -160.1,
  2630. "y": 73,
  2631. "z": 0
  2632. },
  2633. "_scale": {
  2634. "__type__": "cc.Vec3",
  2635. "x": 1,
  2636. "y": 1,
  2637. "z": 1
  2638. },
  2639. "_quat": {
  2640. "__type__": "cc.Quat",
  2641. "x": 0,
  2642. "y": 0,
  2643. "z": 0,
  2644. "w": 1
  2645. },
  2646. "_skewX": 0,
  2647. "_skewY": 0,
  2648. "_zIndex": 0,
  2649. "_is3DNode": false,
  2650. "groupIndex": 0,
  2651. "_id": ""
  2652. },
  2653. {
  2654. "__type__": "cc.Node",
  2655. "_name": "Label",
  2656. "_objFlags": 0,
  2657. "_parent": {
  2658. "__id__": 73
  2659. },
  2660. "_children": [],
  2661. "_active": true,
  2662. "_level": 0,
  2663. "_components": [
  2664. {
  2665. "__id__": 75
  2666. }
  2667. ],
  2668. "_prefab": {
  2669. "__id__": 76
  2670. },
  2671. "_opacity": 255,
  2672. "_color": {
  2673. "__type__": "cc.Color",
  2674. "r": 0,
  2675. "g": 0,
  2676. "b": 0,
  2677. "a": 255
  2678. },
  2679. "_contentSize": {
  2680. "__type__": "cc.Size",
  2681. "width": 100,
  2682. "height": 40
  2683. },
  2684. "_anchorPoint": {
  2685. "__type__": "cc.Vec2",
  2686. "x": 0.5,
  2687. "y": 0.5
  2688. },
  2689. "_position": {
  2690. "__type__": "cc.Vec3",
  2691. "x": 0,
  2692. "y": 0,
  2693. "z": 0
  2694. },
  2695. "_scale": {
  2696. "__type__": "cc.Vec3",
  2697. "x": 1,
  2698. "y": 1,
  2699. "z": 1
  2700. },
  2701. "_quat": {
  2702. "__type__": "cc.Quat",
  2703. "x": 0,
  2704. "y": 0,
  2705. "z": 0,
  2706. "w": 1
  2707. },
  2708. "_skewX": 0,
  2709. "_skewY": 0,
  2710. "_zIndex": 0,
  2711. "_is3DNode": false,
  2712. "groupIndex": 0,
  2713. "_id": ""
  2714. },
  2715. {
  2716. "__type__": "cc.Label",
  2717. "_name": "",
  2718. "_objFlags": 0,
  2719. "node": {
  2720. "__id__": 74
  2721. },
  2722. "_enabled": true,
  2723. "_srcBlendFactor": 1,
  2724. "_dstBlendFactor": 771,
  2725. "_useOriginalSize": false,
  2726. "_string": "",
  2727. "_N$string": "",
  2728. "_fontSize": 20,
  2729. "_lineHeight": 40,
  2730. "_enableWrapText": false,
  2731. "_N$file": null,
  2732. "_isSystemFontUsed": true,
  2733. "_spacingX": 0,
  2734. "_N$horizontalAlign": 1,
  2735. "_N$verticalAlign": 1,
  2736. "_N$fontFamily": "Arial",
  2737. "_N$overflow": 1,
  2738. "_id": ""
  2739. },
  2740. {
  2741. "__type__": "cc.PrefabInfo",
  2742. "root": {
  2743. "__id__": 1
  2744. },
  2745. "asset": {
  2746. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2747. },
  2748. "fileId": "7cF2aCEyBGypniVqAw0sVu",
  2749. "sync": false
  2750. },
  2751. {
  2752. "__type__": "cc.Sprite",
  2753. "_name": "",
  2754. "_objFlags": 0,
  2755. "node": {
  2756. "__id__": 73
  2757. },
  2758. "_enabled": true,
  2759. "_srcBlendFactor": 770,
  2760. "_dstBlendFactor": 771,
  2761. "_spriteFrame": {
  2762. "__uuid__": "b3334859-cb24-42a8-9db5-1b0e0eb355b0"
  2763. },
  2764. "_type": 1,
  2765. "_sizeMode": 0,
  2766. "_fillType": 0,
  2767. "_fillCenter": {
  2768. "__type__": "cc.Vec2",
  2769. "x": 0,
  2770. "y": 0
  2771. },
  2772. "_fillStart": 0,
  2773. "_fillRange": 0,
  2774. "_isTrimmedMode": true,
  2775. "_state": 0,
  2776. "_atlas": null,
  2777. "_id": ""
  2778. },
  2779. {
  2780. "__type__": "cc.Button",
  2781. "_name": "",
  2782. "_objFlags": 0,
  2783. "node": {
  2784. "__id__": 73
  2785. },
  2786. "_enabled": true,
  2787. "duration": 0.1,
  2788. "zoomScale": 1.2,
  2789. "clickEvents": [
  2790. {
  2791. "__id__": 79
  2792. },
  2793. {
  2794. "__id__": 80
  2795. }
  2796. ],
  2797. "_N$interactable": true,
  2798. "_N$enableAutoGrayEffect": false,
  2799. "_N$transition": 3,
  2800. "transition": 3,
  2801. "_N$normalColor": {
  2802. "__type__": "cc.Color",
  2803. "r": 255,
  2804. "g": 255,
  2805. "b": 255,
  2806. "a": 255
  2807. },
  2808. "_N$pressedColor": {
  2809. "__type__": "cc.Color",
  2810. "r": 255,
  2811. "g": 255,
  2812. "b": 255,
  2813. "a": 255
  2814. },
  2815. "pressedColor": {
  2816. "__type__": "cc.Color",
  2817. "r": 255,
  2818. "g": 255,
  2819. "b": 255,
  2820. "a": 255
  2821. },
  2822. "_N$hoverColor": {
  2823. "__type__": "cc.Color",
  2824. "r": 255,
  2825. "g": 255,
  2826. "b": 255,
  2827. "a": 255
  2828. },
  2829. "hoverColor": {
  2830. "__type__": "cc.Color",
  2831. "r": 255,
  2832. "g": 255,
  2833. "b": 255,
  2834. "a": 255
  2835. },
  2836. "_N$disabledColor": {
  2837. "__type__": "cc.Color",
  2838. "r": 255,
  2839. "g": 255,
  2840. "b": 255,
  2841. "a": 255
  2842. },
  2843. "_N$normalSprite": {
  2844. "__uuid__": "b3334859-cb24-42a8-9db5-1b0e0eb355b0"
  2845. },
  2846. "_N$pressedSprite": {
  2847. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2848. },
  2849. "pressedSprite": {
  2850. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  2851. },
  2852. "_N$hoverSprite": {
  2853. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2854. },
  2855. "hoverSprite": {
  2856. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  2857. },
  2858. "_N$disabledSprite": {
  2859. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  2860. },
  2861. "_N$target": {
  2862. "__id__": 73
  2863. },
  2864. "_id": ""
  2865. },
  2866. {
  2867. "__type__": "cc.ClickEvent",
  2868. "target": null,
  2869. "component": "",
  2870. "_componentId": "01354FKIo9OCrVQDnt9wG3U",
  2871. "handler": "onSpawnWorkerAI",
  2872. "customEventData": ""
  2873. },
  2874. {
  2875. "__type__": "cc.ClickEvent",
  2876. "target": null,
  2877. "component": "",
  2878. "_componentId": "6288fqnXBlP5bDmGZ2N3mYo",
  2879. "handler": "PlayPressBtn",
  2880. "customEventData": ""
  2881. },
  2882. {
  2883. "__type__": "cc.PrefabInfo",
  2884. "root": {
  2885. "__id__": 1
  2886. },
  2887. "asset": {
  2888. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  2889. },
  2890. "fileId": "9f60Ti4kNEUYOldDtgNPAk",
  2891. "sync": false
  2892. },
  2893. {
  2894. "__type__": "cc.Node",
  2895. "_name": "Btn_Layoff",
  2896. "_objFlags": 0,
  2897. "_parent": {
  2898. "__id__": 24
  2899. },
  2900. "_children": [
  2901. {
  2902. "__id__": 83
  2903. }
  2904. ],
  2905. "_active": true,
  2906. "_level": 6,
  2907. "_components": [
  2908. {
  2909. "__id__": 86
  2910. },
  2911. {
  2912. "__id__": 87
  2913. }
  2914. ],
  2915. "_prefab": {
  2916. "__id__": 90
  2917. },
  2918. "_opacity": 255,
  2919. "_color": {
  2920. "__type__": "cc.Color",
  2921. "r": 255,
  2922. "g": 255,
  2923. "b": 255,
  2924. "a": 255
  2925. },
  2926. "_contentSize": {
  2927. "__type__": "cc.Size",
  2928. "width": 91,
  2929. "height": 49
  2930. },
  2931. "_anchorPoint": {
  2932. "__type__": "cc.Vec2",
  2933. "x": 0.5,
  2934. "y": 0.5
  2935. },
  2936. "_position": {
  2937. "__type__": "cc.Vec3",
  2938. "x": 0,
  2939. "y": 73,
  2940. "z": 0
  2941. },
  2942. "_scale": {
  2943. "__type__": "cc.Vec3",
  2944. "x": 1,
  2945. "y": 1,
  2946. "z": 1
  2947. },
  2948. "_quat": {
  2949. "__type__": "cc.Quat",
  2950. "x": 0,
  2951. "y": 0,
  2952. "z": 0,
  2953. "w": 1
  2954. },
  2955. "_skewX": 0,
  2956. "_skewY": 0,
  2957. "_zIndex": 0,
  2958. "_is3DNode": false,
  2959. "groupIndex": 0,
  2960. "_id": ""
  2961. },
  2962. {
  2963. "__type__": "cc.Node",
  2964. "_name": "Label",
  2965. "_objFlags": 0,
  2966. "_parent": {
  2967. "__id__": 82
  2968. },
  2969. "_children": [],
  2970. "_active": true,
  2971. "_level": 0,
  2972. "_components": [
  2973. {
  2974. "__id__": 84
  2975. }
  2976. ],
  2977. "_prefab": {
  2978. "__id__": 85
  2979. },
  2980. "_opacity": 255,
  2981. "_color": {
  2982. "__type__": "cc.Color",
  2983. "r": 0,
  2984. "g": 0,
  2985. "b": 0,
  2986. "a": 255
  2987. },
  2988. "_contentSize": {
  2989. "__type__": "cc.Size",
  2990. "width": 100,
  2991. "height": 40
  2992. },
  2993. "_anchorPoint": {
  2994. "__type__": "cc.Vec2",
  2995. "x": 0.5,
  2996. "y": 0.5
  2997. },
  2998. "_position": {
  2999. "__type__": "cc.Vec3",
  3000. "x": 0,
  3001. "y": 0,
  3002. "z": 0
  3003. },
  3004. "_scale": {
  3005. "__type__": "cc.Vec3",
  3006. "x": 1,
  3007. "y": 1,
  3008. "z": 1
  3009. },
  3010. "_quat": {
  3011. "__type__": "cc.Quat",
  3012. "x": 0,
  3013. "y": 0,
  3014. "z": 0,
  3015. "w": 1
  3016. },
  3017. "_skewX": 0,
  3018. "_skewY": 0,
  3019. "_zIndex": 0,
  3020. "_is3DNode": false,
  3021. "groupIndex": 0,
  3022. "_id": ""
  3023. },
  3024. {
  3025. "__type__": "cc.Label",
  3026. "_name": "",
  3027. "_objFlags": 0,
  3028. "node": {
  3029. "__id__": 83
  3030. },
  3031. "_enabled": true,
  3032. "_srcBlendFactor": 1,
  3033. "_dstBlendFactor": 771,
  3034. "_useOriginalSize": false,
  3035. "_string": "",
  3036. "_N$string": "",
  3037. "_fontSize": 20,
  3038. "_lineHeight": 40,
  3039. "_enableWrapText": false,
  3040. "_N$file": null,
  3041. "_isSystemFontUsed": true,
  3042. "_spacingX": 0,
  3043. "_N$horizontalAlign": 1,
  3044. "_N$verticalAlign": 1,
  3045. "_N$fontFamily": "Arial",
  3046. "_N$overflow": 1,
  3047. "_id": ""
  3048. },
  3049. {
  3050. "__type__": "cc.PrefabInfo",
  3051. "root": {
  3052. "__id__": 1
  3053. },
  3054. "asset": {
  3055. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3056. },
  3057. "fileId": "c9rDJ9vTFCMbAfQF5M0cW5",
  3058. "sync": false
  3059. },
  3060. {
  3061. "__type__": "cc.Sprite",
  3062. "_name": "",
  3063. "_objFlags": 0,
  3064. "node": {
  3065. "__id__": 82
  3066. },
  3067. "_enabled": true,
  3068. "_srcBlendFactor": 770,
  3069. "_dstBlendFactor": 771,
  3070. "_spriteFrame": {
  3071. "__uuid__": "4930b84b-c347-4a80-909d-31f41fdac2b2"
  3072. },
  3073. "_type": 1,
  3074. "_sizeMode": 0,
  3075. "_fillType": 0,
  3076. "_fillCenter": {
  3077. "__type__": "cc.Vec2",
  3078. "x": 0,
  3079. "y": 0
  3080. },
  3081. "_fillStart": 0,
  3082. "_fillRange": 0,
  3083. "_isTrimmedMode": true,
  3084. "_state": 0,
  3085. "_atlas": null,
  3086. "_id": ""
  3087. },
  3088. {
  3089. "__type__": "cc.Button",
  3090. "_name": "",
  3091. "_objFlags": 0,
  3092. "node": {
  3093. "__id__": 82
  3094. },
  3095. "_enabled": true,
  3096. "duration": 0.1,
  3097. "zoomScale": 1.2,
  3098. "clickEvents": [
  3099. {
  3100. "__id__": 88
  3101. },
  3102. {
  3103. "__id__": 89
  3104. }
  3105. ],
  3106. "_N$interactable": true,
  3107. "_N$enableAutoGrayEffect": false,
  3108. "_N$transition": 3,
  3109. "transition": 3,
  3110. "_N$normalColor": {
  3111. "__type__": "cc.Color",
  3112. "r": 255,
  3113. "g": 255,
  3114. "b": 255,
  3115. "a": 255
  3116. },
  3117. "_N$pressedColor": {
  3118. "__type__": "cc.Color",
  3119. "r": 255,
  3120. "g": 255,
  3121. "b": 255,
  3122. "a": 255
  3123. },
  3124. "pressedColor": {
  3125. "__type__": "cc.Color",
  3126. "r": 255,
  3127. "g": 255,
  3128. "b": 255,
  3129. "a": 255
  3130. },
  3131. "_N$hoverColor": {
  3132. "__type__": "cc.Color",
  3133. "r": 255,
  3134. "g": 255,
  3135. "b": 255,
  3136. "a": 255
  3137. },
  3138. "hoverColor": {
  3139. "__type__": "cc.Color",
  3140. "r": 255,
  3141. "g": 255,
  3142. "b": 255,
  3143. "a": 255
  3144. },
  3145. "_N$disabledColor": {
  3146. "__type__": "cc.Color",
  3147. "r": 255,
  3148. "g": 255,
  3149. "b": 255,
  3150. "a": 255
  3151. },
  3152. "_N$normalSprite": {
  3153. "__uuid__": "b3334859-cb24-42a8-9db5-1b0e0eb355b0"
  3154. },
  3155. "_N$pressedSprite": {
  3156. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3157. },
  3158. "pressedSprite": {
  3159. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3160. },
  3161. "_N$hoverSprite": {
  3162. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3163. },
  3164. "hoverSprite": {
  3165. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3166. },
  3167. "_N$disabledSprite": {
  3168. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3169. },
  3170. "_N$target": {
  3171. "__id__": 82
  3172. },
  3173. "_id": ""
  3174. },
  3175. {
  3176. "__type__": "cc.ClickEvent",
  3177. "target": null,
  3178. "component": "",
  3179. "_componentId": "01354FKIo9OCrVQDnt9wG3U",
  3180. "handler": "onSpawnWorkerAI",
  3181. "customEventData": ""
  3182. },
  3183. {
  3184. "__type__": "cc.ClickEvent",
  3185. "target": null,
  3186. "component": "",
  3187. "_componentId": "6288fqnXBlP5bDmGZ2N3mYo",
  3188. "handler": "PlayPressBtn",
  3189. "customEventData": ""
  3190. },
  3191. {
  3192. "__type__": "cc.PrefabInfo",
  3193. "root": {
  3194. "__id__": 1
  3195. },
  3196. "asset": {
  3197. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3198. },
  3199. "fileId": "4e7d5G7ZxNDIt+/mVJp768",
  3200. "sync": false
  3201. },
  3202. {
  3203. "__type__": "cc.Node",
  3204. "_name": "Btn_Upgrade",
  3205. "_objFlags": 0,
  3206. "_parent": {
  3207. "__id__": 24
  3208. },
  3209. "_children": [
  3210. {
  3211. "__id__": 92
  3212. }
  3213. ],
  3214. "_active": true,
  3215. "_level": 6,
  3216. "_components": [
  3217. {
  3218. "__id__": 95
  3219. },
  3220. {
  3221. "__id__": 96
  3222. }
  3223. ],
  3224. "_prefab": {
  3225. "__id__": 99
  3226. },
  3227. "_opacity": 255,
  3228. "_color": {
  3229. "__type__": "cc.Color",
  3230. "r": 255,
  3231. "g": 255,
  3232. "b": 255,
  3233. "a": 255
  3234. },
  3235. "_contentSize": {
  3236. "__type__": "cc.Size",
  3237. "width": 91,
  3238. "height": 49
  3239. },
  3240. "_anchorPoint": {
  3241. "__type__": "cc.Vec2",
  3242. "x": 0.5,
  3243. "y": 0.5
  3244. },
  3245. "_position": {
  3246. "__type__": "cc.Vec3",
  3247. "x": 173,
  3248. "y": 73,
  3249. "z": 0
  3250. },
  3251. "_scale": {
  3252. "__type__": "cc.Vec3",
  3253. "x": 1,
  3254. "y": 1,
  3255. "z": 1
  3256. },
  3257. "_quat": {
  3258. "__type__": "cc.Quat",
  3259. "x": 0,
  3260. "y": 0,
  3261. "z": 0,
  3262. "w": 1
  3263. },
  3264. "_skewX": 0,
  3265. "_skewY": 0,
  3266. "_zIndex": 0,
  3267. "_is3DNode": false,
  3268. "groupIndex": 0,
  3269. "_id": ""
  3270. },
  3271. {
  3272. "__type__": "cc.Node",
  3273. "_name": "Label",
  3274. "_objFlags": 0,
  3275. "_parent": {
  3276. "__id__": 91
  3277. },
  3278. "_children": [],
  3279. "_active": true,
  3280. "_level": 0,
  3281. "_components": [
  3282. {
  3283. "__id__": 93
  3284. }
  3285. ],
  3286. "_prefab": {
  3287. "__id__": 94
  3288. },
  3289. "_opacity": 255,
  3290. "_color": {
  3291. "__type__": "cc.Color",
  3292. "r": 0,
  3293. "g": 0,
  3294. "b": 0,
  3295. "a": 255
  3296. },
  3297. "_contentSize": {
  3298. "__type__": "cc.Size",
  3299. "width": 100,
  3300. "height": 40
  3301. },
  3302. "_anchorPoint": {
  3303. "__type__": "cc.Vec2",
  3304. "x": 0.5,
  3305. "y": 0.5
  3306. },
  3307. "_position": {
  3308. "__type__": "cc.Vec3",
  3309. "x": 0,
  3310. "y": 0,
  3311. "z": 0
  3312. },
  3313. "_scale": {
  3314. "__type__": "cc.Vec3",
  3315. "x": 1,
  3316. "y": 1,
  3317. "z": 1
  3318. },
  3319. "_quat": {
  3320. "__type__": "cc.Quat",
  3321. "x": 0,
  3322. "y": 0,
  3323. "z": 0,
  3324. "w": 1
  3325. },
  3326. "_skewX": 0,
  3327. "_skewY": 0,
  3328. "_zIndex": 0,
  3329. "_is3DNode": false,
  3330. "groupIndex": 0,
  3331. "_id": ""
  3332. },
  3333. {
  3334. "__type__": "cc.Label",
  3335. "_name": "",
  3336. "_objFlags": 0,
  3337. "node": {
  3338. "__id__": 92
  3339. },
  3340. "_enabled": true,
  3341. "_srcBlendFactor": 1,
  3342. "_dstBlendFactor": 771,
  3343. "_useOriginalSize": false,
  3344. "_string": "",
  3345. "_N$string": "",
  3346. "_fontSize": 20,
  3347. "_lineHeight": 40,
  3348. "_enableWrapText": false,
  3349. "_N$file": null,
  3350. "_isSystemFontUsed": true,
  3351. "_spacingX": 0,
  3352. "_N$horizontalAlign": 1,
  3353. "_N$verticalAlign": 1,
  3354. "_N$fontFamily": "Arial",
  3355. "_N$overflow": 1,
  3356. "_id": ""
  3357. },
  3358. {
  3359. "__type__": "cc.PrefabInfo",
  3360. "root": {
  3361. "__id__": 1
  3362. },
  3363. "asset": {
  3364. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3365. },
  3366. "fileId": "56pZk+T75PYr5fsjhRXLiv",
  3367. "sync": false
  3368. },
  3369. {
  3370. "__type__": "cc.Sprite",
  3371. "_name": "",
  3372. "_objFlags": 0,
  3373. "node": {
  3374. "__id__": 91
  3375. },
  3376. "_enabled": true,
  3377. "_srcBlendFactor": 770,
  3378. "_dstBlendFactor": 771,
  3379. "_spriteFrame": {
  3380. "__uuid__": "48de2a3d-67a9-4184-8767-0d66f6d3a201"
  3381. },
  3382. "_type": 1,
  3383. "_sizeMode": 0,
  3384. "_fillType": 0,
  3385. "_fillCenter": {
  3386. "__type__": "cc.Vec2",
  3387. "x": 0,
  3388. "y": 0
  3389. },
  3390. "_fillStart": 0,
  3391. "_fillRange": 0,
  3392. "_isTrimmedMode": true,
  3393. "_state": 0,
  3394. "_atlas": null,
  3395. "_id": ""
  3396. },
  3397. {
  3398. "__type__": "cc.Button",
  3399. "_name": "",
  3400. "_objFlags": 0,
  3401. "node": {
  3402. "__id__": 91
  3403. },
  3404. "_enabled": true,
  3405. "duration": 0.1,
  3406. "zoomScale": 1.2,
  3407. "clickEvents": [
  3408. {
  3409. "__id__": 97
  3410. },
  3411. {
  3412. "__id__": 98
  3413. }
  3414. ],
  3415. "_N$interactable": true,
  3416. "_N$enableAutoGrayEffect": false,
  3417. "_N$transition": 3,
  3418. "transition": 3,
  3419. "_N$normalColor": {
  3420. "__type__": "cc.Color",
  3421. "r": 255,
  3422. "g": 255,
  3423. "b": 255,
  3424. "a": 255
  3425. },
  3426. "_N$pressedColor": {
  3427. "__type__": "cc.Color",
  3428. "r": 255,
  3429. "g": 255,
  3430. "b": 255,
  3431. "a": 255
  3432. },
  3433. "pressedColor": {
  3434. "__type__": "cc.Color",
  3435. "r": 255,
  3436. "g": 255,
  3437. "b": 255,
  3438. "a": 255
  3439. },
  3440. "_N$hoverColor": {
  3441. "__type__": "cc.Color",
  3442. "r": 255,
  3443. "g": 255,
  3444. "b": 255,
  3445. "a": 255
  3446. },
  3447. "hoverColor": {
  3448. "__type__": "cc.Color",
  3449. "r": 255,
  3450. "g": 255,
  3451. "b": 255,
  3452. "a": 255
  3453. },
  3454. "_N$disabledColor": {
  3455. "__type__": "cc.Color",
  3456. "r": 255,
  3457. "g": 255,
  3458. "b": 255,
  3459. "a": 255
  3460. },
  3461. "_N$normalSprite": {
  3462. "__uuid__": "b3334859-cb24-42a8-9db5-1b0e0eb355b0"
  3463. },
  3464. "_N$pressedSprite": {
  3465. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3466. },
  3467. "pressedSprite": {
  3468. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3469. },
  3470. "_N$hoverSprite": {
  3471. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3472. },
  3473. "hoverSprite": {
  3474. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3475. },
  3476. "_N$disabledSprite": {
  3477. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3478. },
  3479. "_N$target": {
  3480. "__id__": 91
  3481. },
  3482. "_id": ""
  3483. },
  3484. {
  3485. "__type__": "cc.ClickEvent",
  3486. "target": null,
  3487. "component": "",
  3488. "_componentId": "01354FKIo9OCrVQDnt9wG3U",
  3489. "handler": "onSpawnWorkerAI",
  3490. "customEventData": ""
  3491. },
  3492. {
  3493. "__type__": "cc.ClickEvent",
  3494. "target": null,
  3495. "component": "",
  3496. "_componentId": "6288fqnXBlP5bDmGZ2N3mYo",
  3497. "handler": "PlayPressBtn",
  3498. "customEventData": ""
  3499. },
  3500. {
  3501. "__type__": "cc.PrefabInfo",
  3502. "root": {
  3503. "__id__": 1
  3504. },
  3505. "asset": {
  3506. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3507. },
  3508. "fileId": "1cJeKaAspKboad1XNTNZKq",
  3509. "sync": false
  3510. },
  3511. {
  3512. "__type__": "cc.Widget",
  3513. "_name": "",
  3514. "_objFlags": 0,
  3515. "node": {
  3516. "__id__": 24
  3517. },
  3518. "_enabled": true,
  3519. "alignMode": 1,
  3520. "_target": {
  3521. "__id__": 11
  3522. },
  3523. "_alignFlags": 18,
  3524. "_left": 0,
  3525. "_right": 0,
  3526. "_top": 0,
  3527. "_bottom": 0,
  3528. "_verticalCenter": 0,
  3529. "_horizontalCenter": 0,
  3530. "_isAbsLeft": true,
  3531. "_isAbsRight": true,
  3532. "_isAbsTop": true,
  3533. "_isAbsBottom": true,
  3534. "_isAbsHorizontalCenter": true,
  3535. "_isAbsVerticalCenter": true,
  3536. "_originalWidth": 0,
  3537. "_originalHeight": 0,
  3538. "_id": ""
  3539. },
  3540. {
  3541. "__type__": "cc.PrefabInfo",
  3542. "root": {
  3543. "__id__": 1
  3544. },
  3545. "asset": {
  3546. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3547. },
  3548. "fileId": "7dO2zA4LhCyqNXmiJ+hR5y",
  3549. "sync": false
  3550. },
  3551. {
  3552. "__type__": "cc.Widget",
  3553. "_name": "",
  3554. "_objFlags": 0,
  3555. "node": {
  3556. "__id__": 11
  3557. },
  3558. "_enabled": true,
  3559. "alignMode": 1,
  3560. "_target": null,
  3561. "_alignFlags": 18,
  3562. "_left": 0,
  3563. "_right": 0,
  3564. "_top": 0,
  3565. "_bottom": 0,
  3566. "_verticalCenter": 0,
  3567. "_horizontalCenter": 0,
  3568. "_isAbsLeft": true,
  3569. "_isAbsRight": true,
  3570. "_isAbsTop": true,
  3571. "_isAbsBottom": true,
  3572. "_isAbsHorizontalCenter": true,
  3573. "_isAbsVerticalCenter": true,
  3574. "_originalWidth": 0,
  3575. "_originalHeight": 0,
  3576. "_id": ""
  3577. },
  3578. {
  3579. "__type__": "cc.PrefabInfo",
  3580. "root": {
  3581. "__id__": 1
  3582. },
  3583. "asset": {
  3584. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3585. },
  3586. "fileId": "a1GreYJLhAs75RWvwdbOmb",
  3587. "sync": false
  3588. },
  3589. {
  3590. "__type__": "cc.Widget",
  3591. "_name": "",
  3592. "_objFlags": 0,
  3593. "node": {
  3594. "__id__": 1
  3595. },
  3596. "_enabled": true,
  3597. "alignMode": 1,
  3598. "_target": null,
  3599. "_alignFlags": 33,
  3600. "_left": 0,
  3601. "_right": 695,
  3602. "_top": 1255,
  3603. "_bottom": 0,
  3604. "_verticalCenter": 0,
  3605. "_horizontalCenter": 0,
  3606. "_isAbsLeft": true,
  3607. "_isAbsRight": true,
  3608. "_isAbsTop": true,
  3609. "_isAbsBottom": true,
  3610. "_isAbsHorizontalCenter": true,
  3611. "_isAbsVerticalCenter": true,
  3612. "_originalWidth": 0,
  3613. "_originalHeight": 0,
  3614. "_id": ""
  3615. },
  3616. {
  3617. "__type__": "cc.PrefabInfo",
  3618. "root": {
  3619. "__id__": 1
  3620. },
  3621. "asset": {
  3622. "__uuid__": "43cf9aae-e4b0-4fa8-9364-66bcd197ba07"
  3623. },
  3624. "fileId": "ef4Nem+oJGYaoCNY11xd9P",
  3625. "sync": false
  3626. }
  3627. ]