PManageContainer.prefab 64 KB

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