change_job.prefab 99 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515
  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. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "change_job",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 45
  24. },
  25. {
  26. "__id__": 99
  27. },
  28. {
  29. "__id__": 173
  30. }
  31. ],
  32. "_tag": -1,
  33. "_active": true,
  34. "_components": [
  35. {
  36. "__id__": 180
  37. },
  38. {
  39. "__id__": 181
  40. }
  41. ],
  42. "_prefab": {
  43. "__id__": 182
  44. },
  45. "_id": "",
  46. "_opacity": 255,
  47. "_color": {
  48. "__type__": "cc.Color",
  49. "r": 255,
  50. "g": 255,
  51. "b": 255,
  52. "a": 255
  53. },
  54. "_cascadeOpacityEnabled": true,
  55. "_anchorPoint": {
  56. "__type__": "cc.Vec2",
  57. "x": 0.5,
  58. "y": 0.5
  59. },
  60. "_contentSize": {
  61. "__type__": "cc.Size",
  62. "width": 750,
  63. "height": 1334
  64. },
  65. "_rotationX": 0,
  66. "_rotationY": 0,
  67. "_scaleX": 1,
  68. "_scaleY": 1,
  69. "_position": {
  70. "__type__": "cc.Vec2",
  71. "x": 0,
  72. "y": 667
  73. },
  74. "_skewX": 0,
  75. "_skewY": 0,
  76. "_localZOrder": 0,
  77. "_globalZOrder": 0,
  78. "_opacityModifyRGB": false,
  79. "groupIndex": 0
  80. },
  81. {
  82. "__type__": "cc.Node",
  83. "_name": "bottom",
  84. "_objFlags": 0,
  85. "_parent": {
  86. "__id__": 1
  87. },
  88. "_children": [
  89. {
  90. "__id__": 3
  91. },
  92. {
  93. "__id__": 12
  94. },
  95. {
  96. "__id__": 17
  97. }
  98. ],
  99. "_tag": -1,
  100. "_active": true,
  101. "_components": [
  102. {
  103. "__id__": 41
  104. },
  105. {
  106. "__id__": 42
  107. },
  108. {
  109. "__id__": 43
  110. }
  111. ],
  112. "_prefab": {
  113. "__id__": 44
  114. },
  115. "_id": "",
  116. "_opacity": 255,
  117. "_color": {
  118. "__type__": "cc.Color",
  119. "r": 19,
  120. "g": 10,
  121. "b": 39,
  122. "a": 255
  123. },
  124. "_cascadeOpacityEnabled": true,
  125. "_anchorPoint": {
  126. "__type__": "cc.Vec2",
  127. "x": 0.5,
  128. "y": 0.5
  129. },
  130. "_contentSize": {
  131. "__type__": "cc.Size",
  132. "width": 750,
  133. "height": 1334
  134. },
  135. "_rotationX": 0,
  136. "_rotationY": 0,
  137. "_scaleX": 1,
  138. "_scaleY": 1,
  139. "_position": {
  140. "__type__": "cc.Vec2",
  141. "x": 0,
  142. "y": 0
  143. },
  144. "_skewX": 0,
  145. "_skewY": 0,
  146. "_localZOrder": 0,
  147. "_globalZOrder": 0,
  148. "_opacityModifyRGB": false,
  149. "groupIndex": 0
  150. },
  151. {
  152. "__type__": "cc.Node",
  153. "_name": "confirm_button",
  154. "_objFlags": 0,
  155. "_parent": {
  156. "__id__": 2
  157. },
  158. "_children": [
  159. {
  160. "__id__": 4
  161. }
  162. ],
  163. "_tag": -1,
  164. "_active": true,
  165. "_components": [
  166. {
  167. "__id__": 7
  168. },
  169. {
  170. "__id__": 8
  171. },
  172. {
  173. "__id__": 10
  174. }
  175. ],
  176. "_prefab": {
  177. "__id__": 11
  178. },
  179. "_id": "",
  180. "_opacity": 255,
  181. "_color": {
  182. "__type__": "cc.Color",
  183. "r": 255,
  184. "g": 255,
  185. "b": 255,
  186. "a": 255
  187. },
  188. "_cascadeOpacityEnabled": true,
  189. "_anchorPoint": {
  190. "__type__": "cc.Vec2",
  191. "x": 0.5,
  192. "y": 0.5
  193. },
  194. "_contentSize": {
  195. "__type__": "cc.Size",
  196. "width": 236,
  197. "height": 80
  198. },
  199. "_rotationX": 0,
  200. "_rotationY": 0,
  201. "_scaleX": 1,
  202. "_scaleY": 1,
  203. "_position": {
  204. "__type__": "cc.Vec2",
  205. "x": 0,
  206. "y": -538
  207. },
  208. "_skewX": 0,
  209. "_skewY": 0,
  210. "_localZOrder": 0,
  211. "_globalZOrder": 0,
  212. "_opacityModifyRGB": false,
  213. "groupIndex": 0
  214. },
  215. {
  216. "__type__": "cc.Node",
  217. "_name": "text",
  218. "_objFlags": 0,
  219. "_parent": {
  220. "__id__": 3
  221. },
  222. "_children": [],
  223. "_tag": -1,
  224. "_active": true,
  225. "_components": [
  226. {
  227. "__id__": 5
  228. }
  229. ],
  230. "_prefab": {
  231. "__id__": 6
  232. },
  233. "_id": "",
  234. "_opacity": 255,
  235. "_color": {
  236. "__type__": "cc.Color",
  237. "r": 255,
  238. "g": 255,
  239. "b": 255,
  240. "a": 255
  241. },
  242. "_cascadeOpacityEnabled": true,
  243. "_anchorPoint": {
  244. "__type__": "cc.Vec2",
  245. "x": 0.5,
  246. "y": 0.5
  247. },
  248. "_contentSize": {
  249. "__type__": "cc.Size",
  250. "width": 63,
  251. "height": 50
  252. },
  253. "_rotationX": 0,
  254. "_rotationY": 0,
  255. "_scaleX": 1,
  256. "_scaleY": 1,
  257. "_position": {
  258. "__type__": "cc.Vec2",
  259. "x": 0,
  260. "y": 0
  261. },
  262. "_skewX": 0,
  263. "_skewY": 0,
  264. "_localZOrder": 0,
  265. "_globalZOrder": 0,
  266. "_opacityModifyRGB": false,
  267. "groupIndex": 0
  268. },
  269. {
  270. "__type__": "cc.RichText",
  271. "_name": "",
  272. "_objFlags": 0,
  273. "node": {
  274. "__id__": 4
  275. },
  276. "_enabled": true,
  277. "_N$string": "<outline color=#690802 width=1><b>转职</b></outline>",
  278. "_N$horizontalAlign": 0,
  279. "_N$fontSize": 30,
  280. "_N$font": null,
  281. "_N$maxWidth": 0,
  282. "_N$lineHeight": 50,
  283. "_N$imageAtlas": null,
  284. "_N$handleTouchEvent": true
  285. },
  286. {
  287. "__type__": "cc.PrefabInfo",
  288. "root": {
  289. "__id__": 1
  290. },
  291. "asset": {
  292. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  293. },
  294. "fileId": "92ydMcdVxIgrMH63pz2MYu",
  295. "sync": false
  296. },
  297. {
  298. "__type__": "cc.Sprite",
  299. "_name": "",
  300. "_objFlags": 0,
  301. "node": {
  302. "__id__": 3
  303. },
  304. "_enabled": true,
  305. "_spriteFrame": {
  306. "__uuid__": "9846fea6-c1ab-4444-ab57-88a46cac5019"
  307. },
  308. "_type": 0,
  309. "_sizeMode": 1,
  310. "_fillType": 0,
  311. "_fillCenter": {
  312. "__type__": "cc.Vec2",
  313. "x": 0,
  314. "y": 0
  315. },
  316. "_fillStart": 0,
  317. "_fillRange": 0,
  318. "_isTrimmedMode": true,
  319. "_srcBlendFactor": 770,
  320. "_dstBlendFactor": 771,
  321. "_atlas": null
  322. },
  323. {
  324. "__type__": "cc.Button",
  325. "_name": "",
  326. "_objFlags": 0,
  327. "node": {
  328. "__id__": 3
  329. },
  330. "_enabled": true,
  331. "transition": 2,
  332. "pressedColor": {
  333. "__type__": "cc.Color",
  334. "r": 120,
  335. "g": 120,
  336. "b": 120,
  337. "a": 255
  338. },
  339. "hoverColor": {
  340. "__type__": "cc.Color",
  341. "r": 255,
  342. "g": 255,
  343. "b": 255,
  344. "a": 255
  345. },
  346. "duration": 0.1,
  347. "zoomScale": 1.2,
  348. "clickEvents": [
  349. {
  350. "__id__": 9
  351. }
  352. ],
  353. "_N$interactable": true,
  354. "_N$enableAutoGrayEffect": false,
  355. "_N$normalColor": {
  356. "__type__": "cc.Color",
  357. "r": 255,
  358. "g": 255,
  359. "b": 255,
  360. "a": 255
  361. },
  362. "_N$disabledColor": {
  363. "__type__": "cc.Color",
  364. "r": 120,
  365. "g": 120,
  366. "b": 120,
  367. "a": 255
  368. },
  369. "_N$normalSprite": {
  370. "__uuid__": "9846fea6-c1ab-4444-ab57-88a46cac5019"
  371. },
  372. "_N$pressedSprite": null,
  373. "pressedSprite": null,
  374. "_N$hoverSprite": null,
  375. "hoverSprite": null,
  376. "_N$disabledSprite": {
  377. "__uuid__": "314439d1-5eda-4709-a881-212a32a8f676"
  378. },
  379. "_N$target": {
  380. "__id__": 3
  381. }
  382. },
  383. {
  384. "__type__": "cc.ClickEvent",
  385. "target": {
  386. "__id__": 1
  387. },
  388. "component": "ChangeJob",
  389. "handler": "confirmClick",
  390. "customEventData": ""
  391. },
  392. {
  393. "__type__": "9f4d2FyZDFEWaJD6/7b9oSz",
  394. "_name": "",
  395. "_objFlags": 0,
  396. "node": {
  397. "__id__": 3
  398. },
  399. "_enabled": true
  400. },
  401. {
  402. "__type__": "cc.PrefabInfo",
  403. "root": {
  404. "__id__": 1
  405. },
  406. "asset": {
  407. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  408. },
  409. "fileId": "c1yJ8kMPpJ0YKCGM94HSB8",
  410. "sync": false
  411. },
  412. {
  413. "__type__": "cc.Node",
  414. "_name": "backButton",
  415. "_objFlags": 0,
  416. "_parent": {
  417. "__id__": 2
  418. },
  419. "_children": [],
  420. "_tag": -1,
  421. "_active": true,
  422. "_components": [
  423. {
  424. "__id__": 13
  425. },
  426. {
  427. "__id__": 14
  428. }
  429. ],
  430. "_prefab": {
  431. "__id__": 16
  432. },
  433. "_id": "",
  434. "_opacity": 255,
  435. "_color": {
  436. "__type__": "cc.Color",
  437. "r": 255,
  438. "g": 255,
  439. "b": 255,
  440. "a": 255
  441. },
  442. "_cascadeOpacityEnabled": true,
  443. "_anchorPoint": {
  444. "__type__": "cc.Vec2",
  445. "x": 0.5,
  446. "y": 0.5
  447. },
  448. "_contentSize": {
  449. "__type__": "cc.Size",
  450. "width": 61,
  451. "height": 62
  452. },
  453. "_rotationX": 0,
  454. "_rotationY": 0,
  455. "_scaleX": 1,
  456. "_scaleY": 1,
  457. "_position": {
  458. "__type__": "cc.Vec2",
  459. "x": 311,
  460. "y": -588
  461. },
  462. "_skewX": 0,
  463. "_skewY": 0,
  464. "_localZOrder": 0,
  465. "_globalZOrder": 0,
  466. "_opacityModifyRGB": false,
  467. "groupIndex": 0
  468. },
  469. {
  470. "__type__": "cc.Sprite",
  471. "_name": "",
  472. "_objFlags": 0,
  473. "node": {
  474. "__id__": 12
  475. },
  476. "_enabled": true,
  477. "_spriteFrame": {
  478. "__uuid__": "9553995f-63c6-4bb2-8fec-2550bb4144d1"
  479. },
  480. "_type": 1,
  481. "_sizeMode": 0,
  482. "_fillType": 0,
  483. "_fillCenter": {
  484. "__type__": "cc.Vec2",
  485. "x": 0,
  486. "y": 0
  487. },
  488. "_fillStart": 0,
  489. "_fillRange": 0,
  490. "_isTrimmedMode": true,
  491. "_srcBlendFactor": 770,
  492. "_dstBlendFactor": 771,
  493. "_atlas": null
  494. },
  495. {
  496. "__type__": "cc.Button",
  497. "_name": "",
  498. "_objFlags": 0,
  499. "node": {
  500. "__id__": 12
  501. },
  502. "_enabled": true,
  503. "transition": 1,
  504. "pressedColor": {
  505. "__type__": "cc.Color",
  506. "r": 120,
  507. "g": 120,
  508. "b": 120,
  509. "a": 255
  510. },
  511. "hoverColor": {
  512. "__type__": "cc.Color",
  513. "r": 255,
  514. "g": 255,
  515. "b": 255,
  516. "a": 255
  517. },
  518. "duration": 0.1,
  519. "zoomScale": 1.2,
  520. "clickEvents": [
  521. {
  522. "__id__": 15
  523. }
  524. ],
  525. "_N$interactable": true,
  526. "_N$enableAutoGrayEffect": false,
  527. "_N$normalColor": {
  528. "__type__": "cc.Color",
  529. "r": 255,
  530. "g": 255,
  531. "b": 255,
  532. "a": 255
  533. },
  534. "_N$disabledColor": {
  535. "__type__": "cc.Color",
  536. "r": 255,
  537. "g": 255,
  538. "b": 255,
  539. "a": 255
  540. },
  541. "_N$normalSprite": {
  542. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  543. },
  544. "_N$pressedSprite": {
  545. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  546. },
  547. "pressedSprite": {
  548. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  549. },
  550. "_N$hoverSprite": {
  551. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  552. },
  553. "hoverSprite": {
  554. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  555. },
  556. "_N$disabledSprite": {
  557. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  558. },
  559. "_N$target": {
  560. "__id__": 12
  561. }
  562. },
  563. {
  564. "__type__": "cc.ClickEvent",
  565. "target": {
  566. "__id__": 1
  567. },
  568. "component": "ChangeJob",
  569. "handler": "close",
  570. "customEventData": ""
  571. },
  572. {
  573. "__type__": "cc.PrefabInfo",
  574. "root": {
  575. "__id__": 1
  576. },
  577. "asset": {
  578. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  579. },
  580. "fileId": "fd+1+ijwhF6JeGby6HdyRX",
  581. "sync": false
  582. },
  583. {
  584. "__type__": "cc.Node",
  585. "_name": "consume",
  586. "_objFlags": 0,
  587. "_parent": {
  588. "__id__": 2
  589. },
  590. "_children": [
  591. {
  592. "__id__": 18
  593. },
  594. {
  595. "__id__": 21
  596. },
  597. {
  598. "__id__": 24
  599. },
  600. {
  601. "__id__": 27
  602. },
  603. {
  604. "__id__": 30
  605. },
  606. {
  607. "__id__": 33
  608. },
  609. {
  610. "__id__": 36
  611. }
  612. ],
  613. "_tag": -1,
  614. "_active": true,
  615. "_components": [
  616. {
  617. "__id__": 39
  618. }
  619. ],
  620. "_prefab": {
  621. "__id__": 40
  622. },
  623. "_id": "",
  624. "_opacity": 255,
  625. "_color": {
  626. "__type__": "cc.Color",
  627. "r": 255,
  628. "g": 255,
  629. "b": 255,
  630. "a": 255
  631. },
  632. "_cascadeOpacityEnabled": true,
  633. "_anchorPoint": {
  634. "__type__": "cc.Vec2",
  635. "x": 0.5,
  636. "y": 0.5
  637. },
  638. "_contentSize": {
  639. "__type__": "cc.Size",
  640. "width": 510,
  641. "height": 150
  642. },
  643. "_rotationX": 0,
  644. "_rotationY": 0,
  645. "_scaleX": 1,
  646. "_scaleY": 1,
  647. "_position": {
  648. "__type__": "cc.Vec2",
  649. "x": 0,
  650. "y": -400
  651. },
  652. "_skewX": 0,
  653. "_skewY": 0,
  654. "_localZOrder": 0,
  655. "_globalZOrder": 0,
  656. "_opacityModifyRGB": false,
  657. "groupIndex": 0
  658. },
  659. {
  660. "__type__": "cc.Node",
  661. "_name": "bg",
  662. "_objFlags": 0,
  663. "_parent": {
  664. "__id__": 17
  665. },
  666. "_children": [],
  667. "_tag": -1,
  668. "_active": true,
  669. "_components": [
  670. {
  671. "__id__": 19
  672. }
  673. ],
  674. "_prefab": {
  675. "__id__": 20
  676. },
  677. "_id": "",
  678. "_opacity": 255,
  679. "_color": {
  680. "__type__": "cc.Color",
  681. "r": 255,
  682. "g": 255,
  683. "b": 255,
  684. "a": 255
  685. },
  686. "_cascadeOpacityEnabled": true,
  687. "_anchorPoint": {
  688. "__type__": "cc.Vec2",
  689. "x": 0.5,
  690. "y": 0.5
  691. },
  692. "_contentSize": {
  693. "__type__": "cc.Size",
  694. "width": 510,
  695. "height": 150
  696. },
  697. "_rotationX": 0,
  698. "_rotationY": 0,
  699. "_scaleX": 1,
  700. "_scaleY": 1,
  701. "_position": {
  702. "__type__": "cc.Vec2",
  703. "x": 0,
  704. "y": 0
  705. },
  706. "_skewX": 0,
  707. "_skewY": 0,
  708. "_localZOrder": 0,
  709. "_globalZOrder": 0,
  710. "_opacityModifyRGB": false,
  711. "groupIndex": 0
  712. },
  713. {
  714. "__type__": "cc.Sprite",
  715. "_name": "",
  716. "_objFlags": 0,
  717. "node": {
  718. "__id__": 18
  719. },
  720. "_enabled": true,
  721. "_spriteFrame": {
  722. "__uuid__": "6b290219-1572-4361-92ce-26796fb1fbd7"
  723. },
  724. "_type": 0,
  725. "_sizeMode": 0,
  726. "_fillType": 0,
  727. "_fillCenter": {
  728. "__type__": "cc.Vec2",
  729. "x": 0,
  730. "y": 0
  731. },
  732. "_fillStart": 0,
  733. "_fillRange": 0,
  734. "_isTrimmedMode": true,
  735. "_srcBlendFactor": 770,
  736. "_dstBlendFactor": 771,
  737. "_atlas": null
  738. },
  739. {
  740. "__type__": "cc.PrefabInfo",
  741. "root": {
  742. "__id__": 1
  743. },
  744. "asset": {
  745. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  746. },
  747. "fileId": "c4T7GaTGFJjYCWUG5rAA9y",
  748. "sync": false
  749. },
  750. {
  751. "__type__": "cc.Node",
  752. "_name": "letf_icon",
  753. "_objFlags": 0,
  754. "_parent": {
  755. "__id__": 17
  756. },
  757. "_children": [],
  758. "_tag": -1,
  759. "_active": true,
  760. "_components": [
  761. {
  762. "__id__": 22
  763. }
  764. ],
  765. "_prefab": {
  766. "__id__": 23
  767. },
  768. "_id": "",
  769. "_opacity": 255,
  770. "_color": {
  771. "__type__": "cc.Color",
  772. "r": 255,
  773. "g": 255,
  774. "b": 255,
  775. "a": 255
  776. },
  777. "_cascadeOpacityEnabled": true,
  778. "_anchorPoint": {
  779. "__type__": "cc.Vec2",
  780. "x": 0.5,
  781. "y": 0.5
  782. },
  783. "_contentSize": {
  784. "__type__": "cc.Size",
  785. "width": 59,
  786. "height": 57
  787. },
  788. "_rotationX": 0,
  789. "_rotationY": 0,
  790. "_scaleX": 1,
  791. "_scaleY": 1,
  792. "_position": {
  793. "__type__": "cc.Vec2",
  794. "x": -259,
  795. "y": 85
  796. },
  797. "_skewX": 0,
  798. "_skewY": 0,
  799. "_localZOrder": 0,
  800. "_globalZOrder": 0,
  801. "_opacityModifyRGB": false,
  802. "groupIndex": 0
  803. },
  804. {
  805. "__type__": "cc.Sprite",
  806. "_name": "",
  807. "_objFlags": 0,
  808. "node": {
  809. "__id__": 21
  810. },
  811. "_enabled": true,
  812. "_spriteFrame": null,
  813. "_type": 0,
  814. "_sizeMode": 1,
  815. "_fillType": 0,
  816. "_fillCenter": {
  817. "__type__": "cc.Vec2",
  818. "x": 0,
  819. "y": 0
  820. },
  821. "_fillStart": 0,
  822. "_fillRange": 0,
  823. "_isTrimmedMode": true,
  824. "_srcBlendFactor": 770,
  825. "_dstBlendFactor": 771,
  826. "_atlas": null
  827. },
  828. {
  829. "__type__": "cc.PrefabInfo",
  830. "root": {
  831. "__id__": 1
  832. },
  833. "asset": {
  834. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  835. },
  836. "fileId": "ed/HSbk/RGp6s7fm00aejp",
  837. "sync": false
  838. },
  839. {
  840. "__type__": "cc.Node",
  841. "_name": "consume_text",
  842. "_objFlags": 0,
  843. "_parent": {
  844. "__id__": 17
  845. },
  846. "_children": [],
  847. "_tag": -1,
  848. "_active": true,
  849. "_components": [
  850. {
  851. "__id__": 25
  852. }
  853. ],
  854. "_prefab": {
  855. "__id__": 26
  856. },
  857. "_id": "",
  858. "_opacity": 255,
  859. "_color": {
  860. "__type__": "cc.Color",
  861. "r": 255,
  862. "g": 255,
  863. "b": 255,
  864. "a": 255
  865. },
  866. "_cascadeOpacityEnabled": true,
  867. "_anchorPoint": {
  868. "__type__": "cc.Vec2",
  869. "x": 0.5,
  870. "y": 0.5
  871. },
  872. "_contentSize": {
  873. "__type__": "cc.Size",
  874. "width": 58,
  875. "height": 34
  876. },
  877. "_rotationX": 0,
  878. "_rotationY": 0,
  879. "_scaleX": 1,
  880. "_scaleY": 1,
  881. "_position": {
  882. "__type__": "cc.Vec2",
  883. "x": -195,
  884. "y": 82
  885. },
  886. "_skewX": 0,
  887. "_skewY": 0,
  888. "_localZOrder": 0,
  889. "_globalZOrder": 0,
  890. "_opacityModifyRGB": false,
  891. "groupIndex": 0
  892. },
  893. {
  894. "__type__": "cc.Sprite",
  895. "_name": "",
  896. "_objFlags": 0,
  897. "node": {
  898. "__id__": 24
  899. },
  900. "_enabled": true,
  901. "_spriteFrame": {
  902. "__uuid__": "121a1be6-94c7-4d68-a697-b17431a5c073"
  903. },
  904. "_type": 0,
  905. "_sizeMode": 1,
  906. "_fillType": 0,
  907. "_fillCenter": {
  908. "__type__": "cc.Vec2",
  909. "x": 0,
  910. "y": 0
  911. },
  912. "_fillStart": 0,
  913. "_fillRange": 0,
  914. "_isTrimmedMode": true,
  915. "_srcBlendFactor": 770,
  916. "_dstBlendFactor": 771,
  917. "_atlas": null
  918. },
  919. {
  920. "__type__": "cc.PrefabInfo",
  921. "root": {
  922. "__id__": 1
  923. },
  924. "asset": {
  925. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  926. },
  927. "fileId": "1eB9uY+IlD94JB4Xy1W1DE",
  928. "sync": false
  929. },
  930. {
  931. "__type__": "cc.Node",
  932. "_name": "first_icon",
  933. "_objFlags": 0,
  934. "_parent": {
  935. "__id__": 17
  936. },
  937. "_children": [],
  938. "_tag": -1,
  939. "_active": true,
  940. "_components": [
  941. {
  942. "__id__": 28
  943. }
  944. ],
  945. "_prefab": {
  946. "__id__": 29
  947. },
  948. "_id": "",
  949. "_opacity": 255,
  950. "_color": {
  951. "__type__": "cc.Color",
  952. "r": 255,
  953. "g": 255,
  954. "b": 255,
  955. "a": 255
  956. },
  957. "_cascadeOpacityEnabled": true,
  958. "_anchorPoint": {
  959. "__type__": "cc.Vec2",
  960. "x": 0.5,
  961. "y": 0.5
  962. },
  963. "_contentSize": {
  964. "__type__": "cc.Size",
  965. "width": 40,
  966. "height": 40
  967. },
  968. "_rotationX": 0,
  969. "_rotationY": 0,
  970. "_scaleX": 1,
  971. "_scaleY": 1,
  972. "_position": {
  973. "__type__": "cc.Vec2",
  974. "x": -136,
  975. "y": 29
  976. },
  977. "_skewX": 0,
  978. "_skewY": 0,
  979. "_localZOrder": 0,
  980. "_globalZOrder": 0,
  981. "_opacityModifyRGB": false,
  982. "groupIndex": 0
  983. },
  984. {
  985. "__type__": "cc.Sprite",
  986. "_name": "",
  987. "_objFlags": 0,
  988. "node": {
  989. "__id__": 27
  990. },
  991. "_enabled": true,
  992. "_spriteFrame": {
  993. "__uuid__": "9cefa796-7364-4fd6-89a0-ec010f8df6b3"
  994. },
  995. "_type": 0,
  996. "_sizeMode": 1,
  997. "_fillType": 0,
  998. "_fillCenter": {
  999. "__type__": "cc.Vec2",
  1000. "x": 0,
  1001. "y": 0
  1002. },
  1003. "_fillStart": 0,
  1004. "_fillRange": 0,
  1005. "_isTrimmedMode": true,
  1006. "_srcBlendFactor": 770,
  1007. "_dstBlendFactor": 771,
  1008. "_atlas": null
  1009. },
  1010. {
  1011. "__type__": "cc.PrefabInfo",
  1012. "root": {
  1013. "__id__": 1
  1014. },
  1015. "asset": {
  1016. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1017. },
  1018. "fileId": "e2mu7rldFBXKgEDhiYxVRm",
  1019. "sync": false
  1020. },
  1021. {
  1022. "__type__": "cc.Node",
  1023. "_name": "first_number",
  1024. "_objFlags": 0,
  1025. "_parent": {
  1026. "__id__": 17
  1027. },
  1028. "_children": [],
  1029. "_tag": -1,
  1030. "_active": true,
  1031. "_components": [
  1032. {
  1033. "__id__": 31
  1034. }
  1035. ],
  1036. "_prefab": {
  1037. "__id__": 32
  1038. },
  1039. "_id": "",
  1040. "_opacity": 255,
  1041. "_color": {
  1042. "__type__": "cc.Color",
  1043. "r": 255,
  1044. "g": 255,
  1045. "b": 255,
  1046. "a": 255
  1047. },
  1048. "_cascadeOpacityEnabled": true,
  1049. "_anchorPoint": {
  1050. "__type__": "cc.Vec2",
  1051. "x": 0,
  1052. "y": 0.5
  1053. },
  1054. "_contentSize": {
  1055. "__type__": "cc.Size",
  1056. "width": 93,
  1057. "height": 30
  1058. },
  1059. "_rotationX": 0,
  1060. "_rotationY": 0,
  1061. "_scaleX": 1,
  1062. "_scaleY": 1,
  1063. "_position": {
  1064. "__type__": "cc.Vec2",
  1065. "x": -105,
  1066. "y": 29
  1067. },
  1068. "_skewX": 0,
  1069. "_skewY": 0,
  1070. "_localZOrder": 0,
  1071. "_globalZOrder": 0,
  1072. "_opacityModifyRGB": false,
  1073. "groupIndex": 0
  1074. },
  1075. {
  1076. "__type__": "cc.RichText",
  1077. "_name": "",
  1078. "_objFlags": 0,
  1079. "node": {
  1080. "__id__": 30
  1081. },
  1082. "_enabled": true,
  1083. "_N$string": "1800000",
  1084. "_N$horizontalAlign": 0,
  1085. "_N$fontSize": 24,
  1086. "_N$font": null,
  1087. "_N$maxWidth": 0,
  1088. "_N$lineHeight": 30,
  1089. "_N$imageAtlas": null,
  1090. "_N$handleTouchEvent": true
  1091. },
  1092. {
  1093. "__type__": "cc.PrefabInfo",
  1094. "root": {
  1095. "__id__": 1
  1096. },
  1097. "asset": {
  1098. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1099. },
  1100. "fileId": "78egFhqGVDJ4qhkaoY7iWX",
  1101. "sync": false
  1102. },
  1103. {
  1104. "__type__": "cc.Node",
  1105. "_name": "second_icon",
  1106. "_objFlags": 0,
  1107. "_parent": {
  1108. "__id__": 17
  1109. },
  1110. "_children": [],
  1111. "_tag": -1,
  1112. "_active": true,
  1113. "_components": [
  1114. {
  1115. "__id__": 34
  1116. }
  1117. ],
  1118. "_prefab": {
  1119. "__id__": 35
  1120. },
  1121. "_id": "",
  1122. "_opacity": 255,
  1123. "_color": {
  1124. "__type__": "cc.Color",
  1125. "r": 255,
  1126. "g": 255,
  1127. "b": 255,
  1128. "a": 255
  1129. },
  1130. "_cascadeOpacityEnabled": true,
  1131. "_anchorPoint": {
  1132. "__type__": "cc.Vec2",
  1133. "x": 0.5,
  1134. "y": 0.5
  1135. },
  1136. "_contentSize": {
  1137. "__type__": "cc.Size",
  1138. "width": 44,
  1139. "height": 51
  1140. },
  1141. "_rotationX": 0,
  1142. "_rotationY": 0,
  1143. "_scaleX": 1,
  1144. "_scaleY": 1,
  1145. "_position": {
  1146. "__type__": "cc.Vec2",
  1147. "x": -136,
  1148. "y": -26
  1149. },
  1150. "_skewX": 0,
  1151. "_skewY": 0,
  1152. "_localZOrder": 0,
  1153. "_globalZOrder": 0,
  1154. "_opacityModifyRGB": false,
  1155. "groupIndex": 0
  1156. },
  1157. {
  1158. "__type__": "cc.Sprite",
  1159. "_name": "",
  1160. "_objFlags": 0,
  1161. "node": {
  1162. "__id__": 33
  1163. },
  1164. "_enabled": true,
  1165. "_spriteFrame": {
  1166. "__uuid__": "8560a746-55e8-4dbc-a369-d7b540710b9d"
  1167. },
  1168. "_type": 0,
  1169. "_sizeMode": 1,
  1170. "_fillType": 0,
  1171. "_fillCenter": {
  1172. "__type__": "cc.Vec2",
  1173. "x": 0,
  1174. "y": 0
  1175. },
  1176. "_fillStart": 0,
  1177. "_fillRange": 0,
  1178. "_isTrimmedMode": true,
  1179. "_srcBlendFactor": 770,
  1180. "_dstBlendFactor": 771,
  1181. "_atlas": null
  1182. },
  1183. {
  1184. "__type__": "cc.PrefabInfo",
  1185. "root": {
  1186. "__id__": 1
  1187. },
  1188. "asset": {
  1189. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1190. },
  1191. "fileId": "3cQm/LIv1MxqbKL88kQ+s1",
  1192. "sync": false
  1193. },
  1194. {
  1195. "__type__": "cc.Node",
  1196. "_name": "second_number",
  1197. "_objFlags": 0,
  1198. "_parent": {
  1199. "__id__": 17
  1200. },
  1201. "_children": [],
  1202. "_tag": -1,
  1203. "_active": true,
  1204. "_components": [
  1205. {
  1206. "__id__": 37
  1207. }
  1208. ],
  1209. "_prefab": {
  1210. "__id__": 38
  1211. },
  1212. "_id": "",
  1213. "_opacity": 255,
  1214. "_color": {
  1215. "__type__": "cc.Color",
  1216. "r": 255,
  1217. "g": 255,
  1218. "b": 255,
  1219. "a": 255
  1220. },
  1221. "_cascadeOpacityEnabled": true,
  1222. "_anchorPoint": {
  1223. "__type__": "cc.Vec2",
  1224. "x": 0,
  1225. "y": 0.5
  1226. },
  1227. "_contentSize": {
  1228. "__type__": "cc.Size",
  1229. "width": 148,
  1230. "height": 30
  1231. },
  1232. "_rotationX": 0,
  1233. "_rotationY": 0,
  1234. "_scaleX": 1,
  1235. "_scaleY": 1,
  1236. "_position": {
  1237. "__type__": "cc.Vec2",
  1238. "x": -105,
  1239. "y": -29
  1240. },
  1241. "_skewX": 0,
  1242. "_skewY": 0,
  1243. "_localZOrder": 0,
  1244. "_globalZOrder": 0,
  1245. "_opacityModifyRGB": false,
  1246. "groupIndex": 0
  1247. },
  1248. {
  1249. "__type__": "cc.RichText",
  1250. "_name": "",
  1251. "_objFlags": 0,
  1252. "node": {
  1253. "__id__": 36
  1254. },
  1255. "_enabled": true,
  1256. "_N$string": "转职卡(15/15)",
  1257. "_N$horizontalAlign": 0,
  1258. "_N$fontSize": 24,
  1259. "_N$font": null,
  1260. "_N$maxWidth": 0,
  1261. "_N$lineHeight": 30,
  1262. "_N$imageAtlas": null,
  1263. "_N$handleTouchEvent": true
  1264. },
  1265. {
  1266. "__type__": "cc.PrefabInfo",
  1267. "root": {
  1268. "__id__": 1
  1269. },
  1270. "asset": {
  1271. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1272. },
  1273. "fileId": "70KRSCu3xLEKxIwmusYf4L",
  1274. "sync": false
  1275. },
  1276. {
  1277. "__type__": "fc4311YbX1L5q57zSoNu4I7",
  1278. "_name": "",
  1279. "_objFlags": 0,
  1280. "node": {
  1281. "__id__": 17
  1282. },
  1283. "_enabled": true,
  1284. "iconSprite": {
  1285. "__id__": 22
  1286. },
  1287. "firstSprite": {
  1288. "__id__": 28
  1289. },
  1290. "firstText": {
  1291. "__id__": 31
  1292. },
  1293. "secondSprite": {
  1294. "__id__": 34
  1295. },
  1296. "secondText": {
  1297. "__id__": 37
  1298. }
  1299. },
  1300. {
  1301. "__type__": "cc.PrefabInfo",
  1302. "root": {
  1303. "__id__": 1
  1304. },
  1305. "asset": {
  1306. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1307. },
  1308. "fileId": "55vfE0h5RCCYic6JTlY0CJ",
  1309. "sync": false
  1310. },
  1311. {
  1312. "__type__": "cc.Sprite",
  1313. "_name": "",
  1314. "_objFlags": 0,
  1315. "node": {
  1316. "__id__": 2
  1317. },
  1318. "_enabled": true,
  1319. "_spriteFrame": {
  1320. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1321. },
  1322. "_type": 0,
  1323. "_sizeMode": 0,
  1324. "_fillType": 0,
  1325. "_fillCenter": {
  1326. "__type__": "cc.Vec2",
  1327. "x": 0,
  1328. "y": 0
  1329. },
  1330. "_fillStart": 0,
  1331. "_fillRange": 0,
  1332. "_isTrimmedMode": true,
  1333. "_srcBlendFactor": 770,
  1334. "_dstBlendFactor": 771,
  1335. "_atlas": null
  1336. },
  1337. {
  1338. "__type__": "cc.Widget",
  1339. "_name": "",
  1340. "_objFlags": 0,
  1341. "node": {
  1342. "__id__": 2
  1343. },
  1344. "_enabled": true,
  1345. "alignMode": 0,
  1346. "_target": null,
  1347. "_alignFlags": 44,
  1348. "_left": 0,
  1349. "_right": 0,
  1350. "_top": 0,
  1351. "_bottom": 0,
  1352. "_verticalCenter": 0,
  1353. "_horizontalCenter": 0,
  1354. "_isAbsLeft": true,
  1355. "_isAbsRight": true,
  1356. "_isAbsTop": true,
  1357. "_isAbsBottom": true,
  1358. "_isAbsHorizontalCenter": true,
  1359. "_isAbsVerticalCenter": true,
  1360. "_originalWidth": 100,
  1361. "_originalHeight": 1334
  1362. },
  1363. {
  1364. "__type__": "cc.BlockInputEvents",
  1365. "_name": "",
  1366. "_objFlags": 0,
  1367. "node": {
  1368. "__id__": 2
  1369. },
  1370. "_enabled": true
  1371. },
  1372. {
  1373. "__type__": "cc.PrefabInfo",
  1374. "root": {
  1375. "__id__": 1
  1376. },
  1377. "asset": {
  1378. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1379. },
  1380. "fileId": "94dPdQSrRLoprwhew/xIu4",
  1381. "sync": false
  1382. },
  1383. {
  1384. "__type__": "cc.Node",
  1385. "_name": "top",
  1386. "_objFlags": 0,
  1387. "_parent": {
  1388. "__id__": 1
  1389. },
  1390. "_children": [
  1391. {
  1392. "__id__": 46
  1393. },
  1394. {
  1395. "__id__": 53
  1396. },
  1397. {
  1398. "__id__": 58
  1399. },
  1400. {
  1401. "__id__": 86
  1402. },
  1403. {
  1404. "__id__": 121
  1405. }
  1406. ],
  1407. "_tag": -1,
  1408. "_active": true,
  1409. "_components": [
  1410. {
  1411. "__id__": 171
  1412. }
  1413. ],
  1414. "_prefab": {
  1415. "__id__": 172
  1416. },
  1417. "_id": "",
  1418. "_opacity": 255,
  1419. "_color": {
  1420. "__type__": "cc.Color",
  1421. "r": 255,
  1422. "g": 255,
  1423. "b": 255,
  1424. "a": 255
  1425. },
  1426. "_cascadeOpacityEnabled": true,
  1427. "_anchorPoint": {
  1428. "__type__": "cc.Vec2",
  1429. "x": 0.5,
  1430. "y": 0.5
  1431. },
  1432. "_contentSize": {
  1433. "__type__": "cc.Size",
  1434. "width": 750,
  1435. "height": 974
  1436. },
  1437. "_rotationX": 0,
  1438. "_rotationY": 0,
  1439. "_scaleX": 1,
  1440. "_scaleY": 1,
  1441. "_position": {
  1442. "__type__": "cc.Vec2",
  1443. "x": 0,
  1444. "y": 325
  1445. },
  1446. "_skewX": 0,
  1447. "_skewY": 0,
  1448. "_localZOrder": 0,
  1449. "_globalZOrder": 0,
  1450. "_opacityModifyRGB": false,
  1451. "groupIndex": 0
  1452. },
  1453. {
  1454. "__type__": "cc.Node",
  1455. "_name": "titleNode",
  1456. "_objFlags": 0,
  1457. "_parent": {
  1458. "__id__": 45
  1459. },
  1460. "_children": [
  1461. {
  1462. "__id__": 47
  1463. }
  1464. ],
  1465. "_tag": -1,
  1466. "_active": true,
  1467. "_components": [
  1468. {
  1469. "__id__": 50
  1470. },
  1471. {
  1472. "__id__": 51
  1473. }
  1474. ],
  1475. "_prefab": {
  1476. "__id__": 52
  1477. },
  1478. "_id": "",
  1479. "_opacity": 255,
  1480. "_color": {
  1481. "__type__": "cc.Color",
  1482. "r": 255,
  1483. "g": 255,
  1484. "b": 255,
  1485. "a": 255
  1486. },
  1487. "_cascadeOpacityEnabled": true,
  1488. "_anchorPoint": {
  1489. "__type__": "cc.Vec2",
  1490. "x": 0.5,
  1491. "y": 0.5
  1492. },
  1493. "_contentSize": {
  1494. "__type__": "cc.Size",
  1495. "width": 244,
  1496. "height": 105
  1497. },
  1498. "_rotationX": 0,
  1499. "_rotationY": 0,
  1500. "_scaleX": 1,
  1501. "_scaleY": 1,
  1502. "_position": {
  1503. "__type__": "cc.Vec2",
  1504. "x": -253,
  1505. "y": 259
  1506. },
  1507. "_skewX": 0,
  1508. "_skewY": 0,
  1509. "_localZOrder": 0,
  1510. "_globalZOrder": 0,
  1511. "_opacityModifyRGB": false,
  1512. "groupIndex": 0
  1513. },
  1514. {
  1515. "__type__": "cc.Node",
  1516. "_name": "titleRichText",
  1517. "_objFlags": 0,
  1518. "_parent": {
  1519. "__id__": 46
  1520. },
  1521. "_children": [],
  1522. "_tag": -1,
  1523. "_active": true,
  1524. "_components": [
  1525. {
  1526. "__id__": 48
  1527. }
  1528. ],
  1529. "_prefab": {
  1530. "__id__": 49
  1531. },
  1532. "_id": "",
  1533. "_opacity": 255,
  1534. "_color": {
  1535. "__type__": "cc.Color",
  1536. "r": 255,
  1537. "g": 242,
  1538. "b": 215,
  1539. "a": 255
  1540. },
  1541. "_cascadeOpacityEnabled": true,
  1542. "_anchorPoint": {
  1543. "__type__": "cc.Vec2",
  1544. "x": 0,
  1545. "y": 0.5
  1546. },
  1547. "_contentSize": {
  1548. "__type__": "cc.Size",
  1549. "width": 160,
  1550. "height": 50
  1551. },
  1552. "_rotationX": 0,
  1553. "_rotationY": 0,
  1554. "_scaleX": 1,
  1555. "_scaleY": 1,
  1556. "_position": {
  1557. "__type__": "cc.Vec2",
  1558. "x": -112,
  1559. "y": -12.5
  1560. },
  1561. "_skewX": 0,
  1562. "_skewY": 0,
  1563. "_localZOrder": 0,
  1564. "_globalZOrder": 0,
  1565. "_opacityModifyRGB": false,
  1566. "groupIndex": 0
  1567. },
  1568. {
  1569. "__type__": "cc.RichText",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "node": {
  1573. "__id__": 47
  1574. },
  1575. "_enabled": true,
  1576. "_N$string": "<outline color=#690802 width=3><b>职业转换</b></outline>",
  1577. "_N$horizontalAlign": 0,
  1578. "_N$fontSize": 36,
  1579. "_N$font": null,
  1580. "_N$maxWidth": 160,
  1581. "_N$lineHeight": 50,
  1582. "_N$imageAtlas": null,
  1583. "_N$handleTouchEvent": true
  1584. },
  1585. {
  1586. "__type__": "cc.PrefabInfo",
  1587. "root": {
  1588. "__id__": 1
  1589. },
  1590. "asset": {
  1591. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1592. },
  1593. "fileId": "98n8locuVNXpQ58ZwdbrWv",
  1594. "sync": false
  1595. },
  1596. {
  1597. "__type__": "cc.Sprite",
  1598. "_name": "",
  1599. "_objFlags": 0,
  1600. "node": {
  1601. "__id__": 46
  1602. },
  1603. "_enabled": true,
  1604. "_spriteFrame": {
  1605. "__uuid__": "c52dacbb-3992-464e-8138-99858f6ed62e"
  1606. },
  1607. "_type": 0,
  1608. "_sizeMode": 0,
  1609. "_fillType": 0,
  1610. "_fillCenter": {
  1611. "__type__": "cc.Vec2",
  1612. "x": 0,
  1613. "y": 0
  1614. },
  1615. "_fillStart": 0,
  1616. "_fillRange": 0,
  1617. "_isTrimmedMode": true,
  1618. "_srcBlendFactor": 770,
  1619. "_dstBlendFactor": 771,
  1620. "_atlas": null
  1621. },
  1622. {
  1623. "__type__": "cc.Widget",
  1624. "_name": "",
  1625. "_objFlags": 0,
  1626. "node": {
  1627. "__id__": 46
  1628. },
  1629. "_enabled": true,
  1630. "alignMode": 0,
  1631. "_target": null,
  1632. "_alignFlags": 9,
  1633. "_left": 0,
  1634. "_right": 0,
  1635. "_top": 175.5,
  1636. "_bottom": 0,
  1637. "_verticalCenter": 0,
  1638. "_horizontalCenter": 0,
  1639. "_isAbsLeft": true,
  1640. "_isAbsRight": true,
  1641. "_isAbsTop": true,
  1642. "_isAbsBottom": true,
  1643. "_isAbsHorizontalCenter": true,
  1644. "_isAbsVerticalCenter": true,
  1645. "_originalWidth": 0,
  1646. "_originalHeight": 0
  1647. },
  1648. {
  1649. "__type__": "cc.PrefabInfo",
  1650. "root": {
  1651. "__id__": 1
  1652. },
  1653. "asset": {
  1654. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1655. },
  1656. "fileId": "ffCI/l2VpAK6a5heKGtAyx",
  1657. "sync": false
  1658. },
  1659. {
  1660. "__type__": "cc.Node",
  1661. "_name": "closeButton",
  1662. "_objFlags": 0,
  1663. "_parent": {
  1664. "__id__": 45
  1665. },
  1666. "_children": [],
  1667. "_tag": -1,
  1668. "_active": true,
  1669. "_components": [
  1670. {
  1671. "__id__": 54
  1672. },
  1673. {
  1674. "__id__": 55
  1675. }
  1676. ],
  1677. "_prefab": {
  1678. "__id__": 57
  1679. },
  1680. "_id": "",
  1681. "_opacity": 255,
  1682. "_color": {
  1683. "__type__": "cc.Color",
  1684. "r": 255,
  1685. "g": 255,
  1686. "b": 255,
  1687. "a": 255
  1688. },
  1689. "_cascadeOpacityEnabled": true,
  1690. "_anchorPoint": {
  1691. "__type__": "cc.Vec2",
  1692. "x": 0.5,
  1693. "y": 0.5
  1694. },
  1695. "_contentSize": {
  1696. "__type__": "cc.Size",
  1697. "width": 32,
  1698. "height": 32
  1699. },
  1700. "_rotationX": 0,
  1701. "_rotationY": 0,
  1702. "_scaleX": 1,
  1703. "_scaleY": 1,
  1704. "_position": {
  1705. "__type__": "cc.Vec2",
  1706. "x": 327,
  1707. "y": 241
  1708. },
  1709. "_skewX": 0,
  1710. "_skewY": 0,
  1711. "_localZOrder": 0,
  1712. "_globalZOrder": 0,
  1713. "_opacityModifyRGB": false,
  1714. "groupIndex": 0
  1715. },
  1716. {
  1717. "__type__": "cc.Sprite",
  1718. "_name": "",
  1719. "_objFlags": 0,
  1720. "node": {
  1721. "__id__": 53
  1722. },
  1723. "_enabled": true,
  1724. "_spriteFrame": {
  1725. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1726. },
  1727. "_type": 1,
  1728. "_sizeMode": 0,
  1729. "_fillType": 0,
  1730. "_fillCenter": {
  1731. "__type__": "cc.Vec2",
  1732. "x": 0,
  1733. "y": 0
  1734. },
  1735. "_fillStart": 0,
  1736. "_fillRange": 0,
  1737. "_isTrimmedMode": true,
  1738. "_srcBlendFactor": 770,
  1739. "_dstBlendFactor": 771,
  1740. "_atlas": null
  1741. },
  1742. {
  1743. "__type__": "cc.Button",
  1744. "_name": "",
  1745. "_objFlags": 0,
  1746. "node": {
  1747. "__id__": 53
  1748. },
  1749. "_enabled": true,
  1750. "transition": 1,
  1751. "pressedColor": {
  1752. "__type__": "cc.Color",
  1753. "r": 120,
  1754. "g": 120,
  1755. "b": 120,
  1756. "a": 255
  1757. },
  1758. "hoverColor": {
  1759. "__type__": "cc.Color",
  1760. "r": 255,
  1761. "g": 255,
  1762. "b": 255,
  1763. "a": 255
  1764. },
  1765. "duration": 0.1,
  1766. "zoomScale": 1.2,
  1767. "clickEvents": [
  1768. {
  1769. "__id__": 56
  1770. }
  1771. ],
  1772. "_N$interactable": true,
  1773. "_N$enableAutoGrayEffect": false,
  1774. "_N$normalColor": {
  1775. "__type__": "cc.Color",
  1776. "r": 255,
  1777. "g": 255,
  1778. "b": 255,
  1779. "a": 255
  1780. },
  1781. "_N$disabledColor": {
  1782. "__type__": "cc.Color",
  1783. "r": 255,
  1784. "g": 255,
  1785. "b": 255,
  1786. "a": 255
  1787. },
  1788. "_N$normalSprite": {
  1789. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1790. },
  1791. "_N$pressedSprite": {
  1792. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1793. },
  1794. "pressedSprite": {
  1795. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1796. },
  1797. "_N$hoverSprite": {
  1798. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1799. },
  1800. "hoverSprite": {
  1801. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1802. },
  1803. "_N$disabledSprite": {
  1804. "__uuid__": "638c4cf6-8bae-4d08-abbb-478f2e33f940"
  1805. },
  1806. "_N$target": {
  1807. "__id__": 53
  1808. }
  1809. },
  1810. {
  1811. "__type__": "cc.ClickEvent",
  1812. "target": {
  1813. "__id__": 1
  1814. },
  1815. "component": "ChangeJob",
  1816. "handler": "close",
  1817. "customEventData": ""
  1818. },
  1819. {
  1820. "__type__": "cc.PrefabInfo",
  1821. "root": {
  1822. "__id__": 1
  1823. },
  1824. "asset": {
  1825. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1826. },
  1827. "fileId": "66uIUgUrdPLK6A/G5Urc6W",
  1828. "sync": false
  1829. },
  1830. {
  1831. "__type__": "cc.Node",
  1832. "_name": "user",
  1833. "_objFlags": 0,
  1834. "_parent": {
  1835. "__id__": 45
  1836. },
  1837. "_children": [
  1838. {
  1839. "__id__": 59
  1840. },
  1841. {
  1842. "__id__": 62
  1843. },
  1844. {
  1845. "__id__": 68
  1846. },
  1847. {
  1848. "__id__": 71
  1849. },
  1850. {
  1851. "__id__": 74
  1852. },
  1853. {
  1854. "__id__": 77
  1855. },
  1856. {
  1857. "__id__": 80
  1858. }
  1859. ],
  1860. "_tag": -1,
  1861. "_active": false,
  1862. "_components": [
  1863. {
  1864. "__id__": 83
  1865. },
  1866. {
  1867. "__id__": 84
  1868. }
  1869. ],
  1870. "_prefab": {
  1871. "__id__": 85
  1872. },
  1873. "_id": "",
  1874. "_opacity": 255,
  1875. "_color": {
  1876. "__type__": "cc.Color",
  1877. "r": 255,
  1878. "g": 255,
  1879. "b": 255,
  1880. "a": 255
  1881. },
  1882. "_cascadeOpacityEnabled": true,
  1883. "_anchorPoint": {
  1884. "__type__": "cc.Vec2",
  1885. "x": 0.5,
  1886. "y": 0.5
  1887. },
  1888. "_contentSize": {
  1889. "__type__": "cc.Size",
  1890. "width": 510,
  1891. "height": 150
  1892. },
  1893. "_rotationX": 0,
  1894. "_rotationY": 0,
  1895. "_scaleX": 1,
  1896. "_scaleY": 1,
  1897. "_position": {
  1898. "__type__": "cc.Vec2",
  1899. "x": 0,
  1900. "y": 78
  1901. },
  1902. "_skewX": 0,
  1903. "_skewY": 0,
  1904. "_localZOrder": 0,
  1905. "_globalZOrder": 0,
  1906. "_opacityModifyRGB": false,
  1907. "groupIndex": 0
  1908. },
  1909. {
  1910. "__type__": "cc.Node",
  1911. "_name": "tip",
  1912. "_objFlags": 0,
  1913. "_parent": {
  1914. "__id__": 58
  1915. },
  1916. "_children": [],
  1917. "_tag": -1,
  1918. "_active": true,
  1919. "_components": [
  1920. {
  1921. "__id__": 60
  1922. }
  1923. ],
  1924. "_prefab": {
  1925. "__id__": 61
  1926. },
  1927. "_id": "",
  1928. "_opacity": 255,
  1929. "_color": {
  1930. "__type__": "cc.Color",
  1931. "r": 74,
  1932. "g": 65,
  1933. "b": 58,
  1934. "a": 255
  1935. },
  1936. "_cascadeOpacityEnabled": true,
  1937. "_anchorPoint": {
  1938. "__type__": "cc.Vec2",
  1939. "x": 0,
  1940. "y": 0.5
  1941. },
  1942. "_contentSize": {
  1943. "__type__": "cc.Size",
  1944. "width": 295,
  1945. "height": 30
  1946. },
  1947. "_rotationX": 0,
  1948. "_rotationY": 0,
  1949. "_scaleX": 1,
  1950. "_scaleY": 1,
  1951. "_position": {
  1952. "__type__": "cc.Vec2",
  1953. "x": -251,
  1954. "y": 80.5
  1955. },
  1956. "_skewX": 0,
  1957. "_skewY": 0,
  1958. "_localZOrder": 0,
  1959. "_globalZOrder": 0,
  1960. "_opacityModifyRGB": false,
  1961. "groupIndex": 0
  1962. },
  1963. {
  1964. "__type__": "cc.RichText",
  1965. "_name": "",
  1966. "_objFlags": 0,
  1967. "node": {
  1968. "__id__": 59
  1969. },
  1970. "_enabled": true,
  1971. "_N$string": "<outline color=#ffffff><b>为Ta选择符合印象的职业</b></outline>",
  1972. "_N$horizontalAlign": 0,
  1973. "_N$fontSize": 26,
  1974. "_N$font": null,
  1975. "_N$maxWidth": 0,
  1976. "_N$lineHeight": 30,
  1977. "_N$imageAtlas": null,
  1978. "_N$handleTouchEvent": true
  1979. },
  1980. {
  1981. "__type__": "cc.PrefabInfo",
  1982. "root": {
  1983. "__id__": 1
  1984. },
  1985. "asset": {
  1986. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  1987. },
  1988. "fileId": "3e6Nddx6dC25ZtEs8Qeana",
  1989. "sync": false
  1990. },
  1991. {
  1992. "__type__": "cc.Node",
  1993. "_name": "mask",
  1994. "_objFlags": 0,
  1995. "_parent": {
  1996. "__id__": 58
  1997. },
  1998. "_children": [
  1999. {
  2000. "__id__": 63
  2001. }
  2002. ],
  2003. "_tag": -1,
  2004. "_active": true,
  2005. "_components": [
  2006. {
  2007. "__id__": 66
  2008. }
  2009. ],
  2010. "_prefab": {
  2011. "__id__": 67
  2012. },
  2013. "_id": "",
  2014. "_opacity": 255,
  2015. "_color": {
  2016. "__type__": "cc.Color",
  2017. "r": 255,
  2018. "g": 255,
  2019. "b": 255,
  2020. "a": 255
  2021. },
  2022. "_cascadeOpacityEnabled": true,
  2023. "_anchorPoint": {
  2024. "__type__": "cc.Vec2",
  2025. "x": 0.5,
  2026. "y": 0.5
  2027. },
  2028. "_contentSize": {
  2029. "__type__": "cc.Size",
  2030. "width": 82,
  2031. "height": 82
  2032. },
  2033. "_rotationX": 0,
  2034. "_rotationY": 0,
  2035. "_scaleX": 1,
  2036. "_scaleY": 1,
  2037. "_position": {
  2038. "__type__": "cc.Vec2",
  2039. "x": -80.7,
  2040. "y": 0
  2041. },
  2042. "_skewX": 0,
  2043. "_skewY": 0,
  2044. "_localZOrder": 0,
  2045. "_globalZOrder": 0,
  2046. "_opacityModifyRGB": false,
  2047. "groupIndex": 0
  2048. },
  2049. {
  2050. "__type__": "cc.Node",
  2051. "_name": "avatar",
  2052. "_objFlags": 0,
  2053. "_parent": {
  2054. "__id__": 62
  2055. },
  2056. "_children": [],
  2057. "_tag": -1,
  2058. "_active": true,
  2059. "_components": [
  2060. {
  2061. "__id__": 64
  2062. }
  2063. ],
  2064. "_prefab": {
  2065. "__id__": 65
  2066. },
  2067. "_id": "",
  2068. "_opacity": 255,
  2069. "_color": {
  2070. "__type__": "cc.Color",
  2071. "r": 255,
  2072. "g": 255,
  2073. "b": 255,
  2074. "a": 255
  2075. },
  2076. "_cascadeOpacityEnabled": true,
  2077. "_anchorPoint": {
  2078. "__type__": "cc.Vec2",
  2079. "x": 0.5,
  2080. "y": 0.5
  2081. },
  2082. "_contentSize": {
  2083. "__type__": "cc.Size",
  2084. "width": 82,
  2085. "height": 82
  2086. },
  2087. "_rotationX": 0,
  2088. "_rotationY": 0,
  2089. "_scaleX": 1,
  2090. "_scaleY": 1,
  2091. "_position": {
  2092. "__type__": "cc.Vec2",
  2093. "x": 0,
  2094. "y": 0
  2095. },
  2096. "_skewX": 0,
  2097. "_skewY": 0,
  2098. "_localZOrder": 0,
  2099. "_globalZOrder": 0,
  2100. "_opacityModifyRGB": false,
  2101. "groupIndex": 0
  2102. },
  2103. {
  2104. "__type__": "cc.Sprite",
  2105. "_name": "",
  2106. "_objFlags": 0,
  2107. "node": {
  2108. "__id__": 63
  2109. },
  2110. "_enabled": true,
  2111. "_spriteFrame": {
  2112. "__uuid__": "8cdb44ac-a3f6-449f-b354-7cd48cf84061"
  2113. },
  2114. "_type": 0,
  2115. "_sizeMode": 0,
  2116. "_fillType": 0,
  2117. "_fillCenter": {
  2118. "__type__": "cc.Vec2",
  2119. "x": 0,
  2120. "y": 0
  2121. },
  2122. "_fillStart": 0,
  2123. "_fillRange": 0,
  2124. "_isTrimmedMode": true,
  2125. "_srcBlendFactor": 770,
  2126. "_dstBlendFactor": 771,
  2127. "_atlas": null
  2128. },
  2129. {
  2130. "__type__": "cc.PrefabInfo",
  2131. "root": {
  2132. "__id__": 1
  2133. },
  2134. "asset": {
  2135. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2136. },
  2137. "fileId": "88cj7LnPFPRJzOGb/3Jmw3",
  2138. "sync": false
  2139. },
  2140. {
  2141. "__type__": "cc.Mask",
  2142. "_name": "",
  2143. "_objFlags": 0,
  2144. "node": {
  2145. "__id__": 62
  2146. },
  2147. "_enabled": true,
  2148. "_type": 1,
  2149. "_segements": 64,
  2150. "_N$spriteFrame": null,
  2151. "_N$alphaThreshold": 1,
  2152. "_N$inverted": false
  2153. },
  2154. {
  2155. "__type__": "cc.PrefabInfo",
  2156. "root": {
  2157. "__id__": 1
  2158. },
  2159. "asset": {
  2160. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2161. },
  2162. "fileId": "ac/4dll2FEeJSOm9VQq7vL",
  2163. "sync": false
  2164. },
  2165. {
  2166. "__type__": "cc.Node",
  2167. "_name": "userinformation_avatar_round",
  2168. "_objFlags": 0,
  2169. "_parent": {
  2170. "__id__": 58
  2171. },
  2172. "_children": [],
  2173. "_tag": -1,
  2174. "_active": true,
  2175. "_components": [
  2176. {
  2177. "__id__": 69
  2178. }
  2179. ],
  2180. "_prefab": {
  2181. "__id__": 70
  2182. },
  2183. "_id": "",
  2184. "_opacity": 255,
  2185. "_color": {
  2186. "__type__": "cc.Color",
  2187. "r": 255,
  2188. "g": 255,
  2189. "b": 255,
  2190. "a": 255
  2191. },
  2192. "_cascadeOpacityEnabled": true,
  2193. "_anchorPoint": {
  2194. "__type__": "cc.Vec2",
  2195. "x": 0.5,
  2196. "y": 0.5
  2197. },
  2198. "_contentSize": {
  2199. "__type__": "cc.Size",
  2200. "width": 90,
  2201. "height": 90
  2202. },
  2203. "_rotationX": 0,
  2204. "_rotationY": 0,
  2205. "_scaleX": 1,
  2206. "_scaleY": 1,
  2207. "_position": {
  2208. "__type__": "cc.Vec2",
  2209. "x": -80.7,
  2210. "y": 0
  2211. },
  2212. "_skewX": 0,
  2213. "_skewY": 0,
  2214. "_localZOrder": 0,
  2215. "_globalZOrder": 0,
  2216. "_opacityModifyRGB": false,
  2217. "groupIndex": 0
  2218. },
  2219. {
  2220. "__type__": "cc.Sprite",
  2221. "_name": "",
  2222. "_objFlags": 0,
  2223. "node": {
  2224. "__id__": 68
  2225. },
  2226. "_enabled": true,
  2227. "_spriteFrame": {
  2228. "__uuid__": "d14fb9eb-fb38-4b77-87cf-90ad8cad9b62"
  2229. },
  2230. "_type": 0,
  2231. "_sizeMode": 1,
  2232. "_fillType": 0,
  2233. "_fillCenter": {
  2234. "__type__": "cc.Vec2",
  2235. "x": 0,
  2236. "y": 0
  2237. },
  2238. "_fillStart": 0,
  2239. "_fillRange": 0,
  2240. "_isTrimmedMode": true,
  2241. "_srcBlendFactor": 770,
  2242. "_dstBlendFactor": 771,
  2243. "_atlas": null
  2244. },
  2245. {
  2246. "__type__": "cc.PrefabInfo",
  2247. "root": {
  2248. "__id__": 1
  2249. },
  2250. "asset": {
  2251. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2252. },
  2253. "fileId": "74MGGasgxNgI9udo4TTecG",
  2254. "sync": false
  2255. },
  2256. {
  2257. "__type__": "cc.Node",
  2258. "_name": "nick",
  2259. "_objFlags": 0,
  2260. "_parent": {
  2261. "__id__": 58
  2262. },
  2263. "_children": [],
  2264. "_tag": -1,
  2265. "_active": true,
  2266. "_components": [
  2267. {
  2268. "__id__": 72
  2269. }
  2270. ],
  2271. "_prefab": {
  2272. "__id__": 73
  2273. },
  2274. "_id": "",
  2275. "_opacity": 255,
  2276. "_color": {
  2277. "__type__": "cc.Color",
  2278. "r": 255,
  2279. "g": 255,
  2280. "b": 255,
  2281. "a": 255
  2282. },
  2283. "_cascadeOpacityEnabled": true,
  2284. "_anchorPoint": {
  2285. "__type__": "cc.Vec2",
  2286. "x": 0,
  2287. "y": 0.5
  2288. },
  2289. "_contentSize": {
  2290. "__type__": "cc.Size",
  2291. "width": 120,
  2292. "height": 24
  2293. },
  2294. "_rotationX": 0,
  2295. "_rotationY": 0,
  2296. "_scaleX": 1,
  2297. "_scaleY": 1,
  2298. "_position": {
  2299. "__type__": "cc.Vec2",
  2300. "x": -19.7,
  2301. "y": 25.6
  2302. },
  2303. "_skewX": 0,
  2304. "_skewY": 0,
  2305. "_localZOrder": 0,
  2306. "_globalZOrder": 0,
  2307. "_opacityModifyRGB": false,
  2308. "groupIndex": 0
  2309. },
  2310. {
  2311. "__type__": "cc.Label",
  2312. "_name": "",
  2313. "_objFlags": 0,
  2314. "node": {
  2315. "__id__": 71
  2316. },
  2317. "_enabled": true,
  2318. "_useOriginalSize": false,
  2319. "_actualFontSize": 24,
  2320. "_fontSize": 24,
  2321. "_lineHeight": 24,
  2322. "_enableWrapText": true,
  2323. "_N$file": null,
  2324. "_isSystemFontUsed": true,
  2325. "_spacingX": 0,
  2326. "_N$string": "这是兔兔酱",
  2327. "_N$horizontalAlign": 1,
  2328. "_N$verticalAlign": 1,
  2329. "_N$fontFamily": "Arial",
  2330. "_N$overflow": 0
  2331. },
  2332. {
  2333. "__type__": "cc.PrefabInfo",
  2334. "root": {
  2335. "__id__": 1
  2336. },
  2337. "asset": {
  2338. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2339. },
  2340. "fileId": "bbg4WwHZdIIr2tRkL0Xzfn",
  2341. "sync": false
  2342. },
  2343. {
  2344. "__type__": "cc.Node",
  2345. "_name": "star_icon",
  2346. "_objFlags": 0,
  2347. "_parent": {
  2348. "__id__": 58
  2349. },
  2350. "_children": [],
  2351. "_tag": -1,
  2352. "_active": true,
  2353. "_components": [
  2354. {
  2355. "__id__": 75
  2356. }
  2357. ],
  2358. "_prefab": {
  2359. "__id__": 76
  2360. },
  2361. "_id": "",
  2362. "_opacity": 255,
  2363. "_color": {
  2364. "__type__": "cc.Color",
  2365. "r": 255,
  2366. "g": 255,
  2367. "b": 255,
  2368. "a": 255
  2369. },
  2370. "_cascadeOpacityEnabled": true,
  2371. "_anchorPoint": {
  2372. "__type__": "cc.Vec2",
  2373. "x": 0.5,
  2374. "y": 0.5
  2375. },
  2376. "_contentSize": {
  2377. "__type__": "cc.Size",
  2378. "width": 36,
  2379. "height": 35
  2380. },
  2381. "_rotationX": 0,
  2382. "_rotationY": 0,
  2383. "_scaleX": 1,
  2384. "_scaleY": 1,
  2385. "_position": {
  2386. "__type__": "cc.Vec2",
  2387. "x": -1,
  2388. "y": -21.7
  2389. },
  2390. "_skewX": 0,
  2391. "_skewY": 0,
  2392. "_localZOrder": 0,
  2393. "_globalZOrder": 0,
  2394. "_opacityModifyRGB": false,
  2395. "groupIndex": 0
  2396. },
  2397. {
  2398. "__type__": "cc.Sprite",
  2399. "_name": "",
  2400. "_objFlags": 0,
  2401. "node": {
  2402. "__id__": 74
  2403. },
  2404. "_enabled": true,
  2405. "_spriteFrame": {
  2406. "__uuid__": "e34c77b5-02c6-404c-b186-7f2377158618"
  2407. },
  2408. "_type": 0,
  2409. "_sizeMode": 1,
  2410. "_fillType": 0,
  2411. "_fillCenter": {
  2412. "__type__": "cc.Vec2",
  2413. "x": 0,
  2414. "y": 0
  2415. },
  2416. "_fillStart": 0,
  2417. "_fillRange": 0,
  2418. "_isTrimmedMode": true,
  2419. "_srcBlendFactor": 770,
  2420. "_dstBlendFactor": 771,
  2421. "_atlas": null
  2422. },
  2423. {
  2424. "__type__": "cc.PrefabInfo",
  2425. "root": {
  2426. "__id__": 1
  2427. },
  2428. "asset": {
  2429. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2430. },
  2431. "fileId": "50mEyMhUpDmoGlGNM1LgNP",
  2432. "sync": false
  2433. },
  2434. {
  2435. "__type__": "cc.Node",
  2436. "_name": "star_label",
  2437. "_objFlags": 0,
  2438. "_parent": {
  2439. "__id__": 58
  2440. },
  2441. "_children": [],
  2442. "_tag": -1,
  2443. "_active": true,
  2444. "_components": [
  2445. {
  2446. "__id__": 78
  2447. }
  2448. ],
  2449. "_prefab": {
  2450. "__id__": 79
  2451. },
  2452. "_id": "",
  2453. "_opacity": 255,
  2454. "_color": {
  2455. "__type__": "cc.Color",
  2456. "r": 255,
  2457. "g": 255,
  2458. "b": 255,
  2459. "a": 255
  2460. },
  2461. "_cascadeOpacityEnabled": true,
  2462. "_anchorPoint": {
  2463. "__type__": "cc.Vec2",
  2464. "x": 0,
  2465. "y": 0.5
  2466. },
  2467. "_contentSize": {
  2468. "__type__": "cc.Size",
  2469. "width": 27,
  2470. "height": 24
  2471. },
  2472. "_rotationX": 0,
  2473. "_rotationY": 0,
  2474. "_scaleX": 1,
  2475. "_scaleY": 1,
  2476. "_position": {
  2477. "__type__": "cc.Vec2",
  2478. "x": 26.6,
  2479. "y": -23.6
  2480. },
  2481. "_skewX": 0,
  2482. "_skewY": 0,
  2483. "_localZOrder": 0,
  2484. "_globalZOrder": 0,
  2485. "_opacityModifyRGB": false,
  2486. "groupIndex": 0
  2487. },
  2488. {
  2489. "__type__": "cc.Label",
  2490. "_name": "",
  2491. "_objFlags": 0,
  2492. "node": {
  2493. "__id__": 77
  2494. },
  2495. "_enabled": true,
  2496. "_useOriginalSize": false,
  2497. "_actualFontSize": 24,
  2498. "_fontSize": 24,
  2499. "_lineHeight": 24,
  2500. "_enableWrapText": true,
  2501. "_N$file": null,
  2502. "_isSystemFontUsed": true,
  2503. "_spacingX": 0,
  2504. "_N$string": "10",
  2505. "_N$horizontalAlign": 1,
  2506. "_N$verticalAlign": 1,
  2507. "_N$fontFamily": "Arial",
  2508. "_N$overflow": 0
  2509. },
  2510. {
  2511. "__type__": "cc.PrefabInfo",
  2512. "root": {
  2513. "__id__": 1
  2514. },
  2515. "asset": {
  2516. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2517. },
  2518. "fileId": "244FbJunRBBZb6LgYRpwM9",
  2519. "sync": false
  2520. },
  2521. {
  2522. "__type__": "cc.Node",
  2523. "_name": "gender",
  2524. "_objFlags": 0,
  2525. "_parent": {
  2526. "__id__": 58
  2527. },
  2528. "_children": [],
  2529. "_tag": -1,
  2530. "_active": true,
  2531. "_components": [
  2532. {
  2533. "__id__": 81
  2534. }
  2535. ],
  2536. "_prefab": {
  2537. "__id__": 82
  2538. },
  2539. "_id": "",
  2540. "_opacity": 255,
  2541. "_color": {
  2542. "__type__": "cc.Color",
  2543. "r": 255,
  2544. "g": 255,
  2545. "b": 255,
  2546. "a": 255
  2547. },
  2548. "_cascadeOpacityEnabled": true,
  2549. "_anchorPoint": {
  2550. "__type__": "cc.Vec2",
  2551. "x": 0.5,
  2552. "y": 0.5
  2553. },
  2554. "_contentSize": {
  2555. "__type__": "cc.Size",
  2556. "width": 34,
  2557. "height": 34
  2558. },
  2559. "_rotationX": 0,
  2560. "_rotationY": 0,
  2561. "_scaleX": 1,
  2562. "_scaleY": 1,
  2563. "_position": {
  2564. "__type__": "cc.Vec2",
  2565. "x": -114,
  2566. "y": -30
  2567. },
  2568. "_skewX": 0,
  2569. "_skewY": 0,
  2570. "_localZOrder": 0,
  2571. "_globalZOrder": 0,
  2572. "_opacityModifyRGB": false,
  2573. "groupIndex": 0
  2574. },
  2575. {
  2576. "__type__": "cc.Sprite",
  2577. "_name": "",
  2578. "_objFlags": 0,
  2579. "node": {
  2580. "__id__": 80
  2581. },
  2582. "_enabled": true,
  2583. "_spriteFrame": {
  2584. "__uuid__": "31f51478-7bf6-4c5d-8bbf-b06325c22776"
  2585. },
  2586. "_type": 0,
  2587. "_sizeMode": 1,
  2588. "_fillType": 0,
  2589. "_fillCenter": {
  2590. "__type__": "cc.Vec2",
  2591. "x": 0,
  2592. "y": 0
  2593. },
  2594. "_fillStart": 0,
  2595. "_fillRange": 0,
  2596. "_isTrimmedMode": true,
  2597. "_srcBlendFactor": 770,
  2598. "_dstBlendFactor": 771,
  2599. "_atlas": null
  2600. },
  2601. {
  2602. "__type__": "cc.PrefabInfo",
  2603. "root": {
  2604. "__id__": 1
  2605. },
  2606. "asset": {
  2607. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2608. },
  2609. "fileId": "50MrtWXHpAvI0jJOCPYkX3",
  2610. "sync": false
  2611. },
  2612. {
  2613. "__type__": "cc.Sprite",
  2614. "_name": "",
  2615. "_objFlags": 0,
  2616. "node": {
  2617. "__id__": 58
  2618. },
  2619. "_enabled": true,
  2620. "_spriteFrame": {
  2621. "__uuid__": "6b290219-1572-4361-92ce-26796fb1fbd7"
  2622. },
  2623. "_type": 0,
  2624. "_sizeMode": 0,
  2625. "_fillType": 0,
  2626. "_fillCenter": {
  2627. "__type__": "cc.Vec2",
  2628. "x": 0,
  2629. "y": 0
  2630. },
  2631. "_fillStart": 0,
  2632. "_fillRange": 0,
  2633. "_isTrimmedMode": true,
  2634. "_srcBlendFactor": 770,
  2635. "_dstBlendFactor": 771,
  2636. "_atlas": null
  2637. },
  2638. {
  2639. "__type__": "5feafR+MSVNDJq9cqT7ecFW",
  2640. "_name": "",
  2641. "_objFlags": 0,
  2642. "node": {
  2643. "__id__": 58
  2644. },
  2645. "_enabled": true,
  2646. "avatarSprite": {
  2647. "__id__": 64
  2648. },
  2649. "genderSprite": {
  2650. "__id__": 81
  2651. },
  2652. "nickLabel": {
  2653. "__id__": 72
  2654. },
  2655. "starCountLabel": {
  2656. "__id__": 78
  2657. }
  2658. },
  2659. {
  2660. "__type__": "cc.PrefabInfo",
  2661. "root": {
  2662. "__id__": 1
  2663. },
  2664. "asset": {
  2665. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2666. },
  2667. "fileId": "a5e0zI5rJKl5ezwxwRC/Z7",
  2668. "sync": false
  2669. },
  2670. {
  2671. "__type__": "cc.Node",
  2672. "_name": "pageview",
  2673. "_objFlags": 0,
  2674. "_parent": {
  2675. "__id__": 45
  2676. },
  2677. "_children": [
  2678. {
  2679. "__id__": 87
  2680. },
  2681. {
  2682. "__id__": 90
  2683. }
  2684. ],
  2685. "_tag": -1,
  2686. "_active": true,
  2687. "_components": [
  2688. {
  2689. "__id__": 96
  2690. },
  2691. {
  2692. "__id__": 98
  2693. }
  2694. ],
  2695. "_prefab": {
  2696. "__id__": 120
  2697. },
  2698. "_id": "",
  2699. "_opacity": 255,
  2700. "_color": {
  2701. "__type__": "cc.Color",
  2702. "r": 255,
  2703. "g": 255,
  2704. "b": 255,
  2705. "a": 255
  2706. },
  2707. "_cascadeOpacityEnabled": true,
  2708. "_anchorPoint": {
  2709. "__type__": "cc.Vec2",
  2710. "x": 0.5,
  2711. "y": 0.5
  2712. },
  2713. "_contentSize": {
  2714. "__type__": "cc.Size",
  2715. "width": 750,
  2716. "height": 820
  2717. },
  2718. "_rotationX": 0,
  2719. "_rotationY": 0,
  2720. "_scaleX": 1,
  2721. "_scaleY": 1,
  2722. "_position": {
  2723. "__type__": "cc.Vec2",
  2724. "x": 0,
  2725. "y": -174
  2726. },
  2727. "_skewX": 0,
  2728. "_skewY": 0,
  2729. "_localZOrder": 0,
  2730. "_globalZOrder": 0,
  2731. "_opacityModifyRGB": false,
  2732. "groupIndex": 0
  2733. },
  2734. {
  2735. "__type__": "cc.Node",
  2736. "_name": "circle",
  2737. "_objFlags": 0,
  2738. "_parent": {
  2739. "__id__": 86
  2740. },
  2741. "_children": [],
  2742. "_tag": -1,
  2743. "_active": true,
  2744. "_components": [
  2745. {
  2746. "__id__": 88
  2747. }
  2748. ],
  2749. "_prefab": {
  2750. "__id__": 89
  2751. },
  2752. "_id": "",
  2753. "_opacity": 255,
  2754. "_color": {
  2755. "__type__": "cc.Color",
  2756. "r": 255,
  2757. "g": 255,
  2758. "b": 255,
  2759. "a": 255
  2760. },
  2761. "_cascadeOpacityEnabled": true,
  2762. "_anchorPoint": {
  2763. "__type__": "cc.Vec2",
  2764. "x": 0.5,
  2765. "y": 0.5
  2766. },
  2767. "_contentSize": {
  2768. "__type__": "cc.Size",
  2769. "width": 376,
  2770. "height": 130
  2771. },
  2772. "_rotationX": 0,
  2773. "_rotationY": 0,
  2774. "_scaleX": 1,
  2775. "_scaleY": 1,
  2776. "_position": {
  2777. "__type__": "cc.Vec2",
  2778. "x": 0,
  2779. "y": -249
  2780. },
  2781. "_skewX": 0,
  2782. "_skewY": 0,
  2783. "_localZOrder": 0,
  2784. "_globalZOrder": 0,
  2785. "_opacityModifyRGB": false,
  2786. "groupIndex": 0
  2787. },
  2788. {
  2789. "__type__": "cc.Sprite",
  2790. "_name": "",
  2791. "_objFlags": 0,
  2792. "node": {
  2793. "__id__": 87
  2794. },
  2795. "_enabled": true,
  2796. "_spriteFrame": {
  2797. "__uuid__": "d0013dec-23c9-417a-a767-c4b48c657a50"
  2798. },
  2799. "_type": 0,
  2800. "_sizeMode": 1,
  2801. "_fillType": 0,
  2802. "_fillCenter": {
  2803. "__type__": "cc.Vec2",
  2804. "x": 0,
  2805. "y": 0
  2806. },
  2807. "_fillStart": 0,
  2808. "_fillRange": 0,
  2809. "_isTrimmedMode": true,
  2810. "_srcBlendFactor": 770,
  2811. "_dstBlendFactor": 771,
  2812. "_atlas": null
  2813. },
  2814. {
  2815. "__type__": "cc.PrefabInfo",
  2816. "root": {
  2817. "__id__": 1
  2818. },
  2819. "asset": {
  2820. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2821. },
  2822. "fileId": "58Gpg8339BlLbERROTXeiN",
  2823. "sync": false
  2824. },
  2825. {
  2826. "__type__": "cc.Node",
  2827. "_name": "view",
  2828. "_objFlags": 0,
  2829. "_parent": {
  2830. "__id__": 86
  2831. },
  2832. "_children": [
  2833. {
  2834. "__id__": 91
  2835. }
  2836. ],
  2837. "_tag": -1,
  2838. "_active": true,
  2839. "_components": [
  2840. {
  2841. "__id__": 94
  2842. }
  2843. ],
  2844. "_prefab": {
  2845. "__id__": 95
  2846. },
  2847. "_id": "",
  2848. "_opacity": 255,
  2849. "_color": {
  2850. "__type__": "cc.Color",
  2851. "r": 255,
  2852. "g": 255,
  2853. "b": 255,
  2854. "a": 255
  2855. },
  2856. "_cascadeOpacityEnabled": true,
  2857. "_anchorPoint": {
  2858. "__type__": "cc.Vec2",
  2859. "x": 0.5,
  2860. "y": 0.5
  2861. },
  2862. "_contentSize": {
  2863. "__type__": "cc.Size",
  2864. "width": 750,
  2865. "height": 820
  2866. },
  2867. "_rotationX": 0,
  2868. "_rotationY": 0,
  2869. "_scaleX": 1,
  2870. "_scaleY": 1,
  2871. "_position": {
  2872. "__type__": "cc.Vec2",
  2873. "x": 0,
  2874. "y": 0
  2875. },
  2876. "_skewX": 0,
  2877. "_skewY": 0,
  2878. "_localZOrder": 0,
  2879. "_globalZOrder": 0,
  2880. "_opacityModifyRGB": false,
  2881. "groupIndex": 0
  2882. },
  2883. {
  2884. "__type__": "cc.Node",
  2885. "_name": "content",
  2886. "_objFlags": 0,
  2887. "_parent": {
  2888. "__id__": 90
  2889. },
  2890. "_children": [],
  2891. "_tag": -1,
  2892. "_active": true,
  2893. "_components": [
  2894. {
  2895. "__id__": 92
  2896. }
  2897. ],
  2898. "_prefab": {
  2899. "__id__": 93
  2900. },
  2901. "_id": "",
  2902. "_opacity": 255,
  2903. "_color": {
  2904. "__type__": "cc.Color",
  2905. "r": 255,
  2906. "g": 255,
  2907. "b": 255,
  2908. "a": 255
  2909. },
  2910. "_cascadeOpacityEnabled": true,
  2911. "_anchorPoint": {
  2912. "__type__": "cc.Vec2",
  2913. "x": 0,
  2914. "y": 0.5
  2915. },
  2916. "_contentSize": {
  2917. "__type__": "cc.Size",
  2918. "width": 0,
  2919. "height": 820
  2920. },
  2921. "_rotationX": 0,
  2922. "_rotationY": 0,
  2923. "_scaleX": 1,
  2924. "_scaleY": 1,
  2925. "_position": {
  2926. "__type__": "cc.Vec2",
  2927. "x": -375,
  2928. "y": 0
  2929. },
  2930. "_skewX": 0,
  2931. "_skewY": 0,
  2932. "_localZOrder": 0,
  2933. "_globalZOrder": 0,
  2934. "_opacityModifyRGB": false,
  2935. "groupIndex": 0
  2936. },
  2937. {
  2938. "__type__": "cc.Layout",
  2939. "_name": "",
  2940. "_objFlags": 0,
  2941. "node": {
  2942. "__id__": 91
  2943. },
  2944. "_enabled": true,
  2945. "_layoutSize": {
  2946. "__type__": "cc.Size",
  2947. "width": 0,
  2948. "height": 820
  2949. },
  2950. "_resize": 1,
  2951. "_N$layoutType": 1,
  2952. "_N$padding": 0,
  2953. "_N$cellSize": {
  2954. "__type__": "cc.Size",
  2955. "width": 40,
  2956. "height": 40
  2957. },
  2958. "_N$startAxis": 0,
  2959. "_N$paddingLeft": 375,
  2960. "_N$paddingRight": 375,
  2961. "_N$paddingTop": 0,
  2962. "_N$paddingBottom": 0,
  2963. "_N$spacingX": 10,
  2964. "_N$spacingY": 15,
  2965. "_N$verticalDirection": 1,
  2966. "_N$horizontalDirection": 0
  2967. },
  2968. {
  2969. "__type__": "cc.PrefabInfo",
  2970. "root": {
  2971. "__id__": 1
  2972. },
  2973. "asset": {
  2974. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  2975. },
  2976. "fileId": "84GAM511JEC4zc5Eat5lVa",
  2977. "sync": false
  2978. },
  2979. {
  2980. "__type__": "cc.Mask",
  2981. "_name": "",
  2982. "_objFlags": 0,
  2983. "node": {
  2984. "__id__": 90
  2985. },
  2986. "_enabled": true,
  2987. "_type": 0,
  2988. "_segements": 64,
  2989. "_N$spriteFrame": null,
  2990. "_N$alphaThreshold": 1,
  2991. "_N$inverted": false
  2992. },
  2993. {
  2994. "__type__": "cc.PrefabInfo",
  2995. "root": {
  2996. "__id__": 1
  2997. },
  2998. "asset": {
  2999. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3000. },
  3001. "fileId": "1cTlKqcddIMrvGwJk+yZuf",
  3002. "sync": false
  3003. },
  3004. {
  3005. "__type__": "cc.PageView",
  3006. "_name": "",
  3007. "_objFlags": 0,
  3008. "node": {
  3009. "__id__": 86
  3010. },
  3011. "_enabled": true,
  3012. "content": {
  3013. "__id__": 91
  3014. },
  3015. "horizontal": true,
  3016. "vertical": false,
  3017. "inertia": true,
  3018. "brake": 0.5,
  3019. "elastic": true,
  3020. "bounceDuration": 0.5,
  3021. "scrollEvents": [],
  3022. "cancelInnerEvents": true,
  3023. "scrollThreshold": 0.5,
  3024. "autoPageTurningThreshold": 100,
  3025. "pageTurningEventTiming": 0.1,
  3026. "pageTurningSpeed": 0.3,
  3027. "pageEvents": [
  3028. {
  3029. "__id__": 97
  3030. }
  3031. ],
  3032. "_N$sizeMode": 1,
  3033. "_N$direction": 0,
  3034. "_N$indicator": null
  3035. },
  3036. {
  3037. "__type__": "cc.ClickEvent",
  3038. "target": {
  3039. "__id__": 1
  3040. },
  3041. "component": "ChangeJob",
  3042. "handler": "pageviewChangeEvent",
  3043. "customEventData": ""
  3044. },
  3045. {
  3046. "__type__": "ee8dce69WlJupwN3jbLcrR1",
  3047. "_name": "",
  3048. "_objFlags": 0,
  3049. "node": {
  3050. "__id__": 86
  3051. },
  3052. "_enabled": true,
  3053. "pageview": {
  3054. "__id__": 96
  3055. },
  3056. "jobItem": {
  3057. "__id__": 99
  3058. }
  3059. },
  3060. {
  3061. "__type__": "cc.Node",
  3062. "_name": "job_item",
  3063. "_objFlags": 0,
  3064. "_parent": {
  3065. "__id__": 1
  3066. },
  3067. "_children": [
  3068. {
  3069. "__id__": 100
  3070. },
  3071. {
  3072. "__id__": 106
  3073. },
  3074. {
  3075. "__id__": 109
  3076. }
  3077. ],
  3078. "_tag": -1,
  3079. "_active": false,
  3080. "_components": [
  3081. {
  3082. "__id__": 118
  3083. }
  3084. ],
  3085. "_prefab": {
  3086. "__id__": 119
  3087. },
  3088. "_id": "",
  3089. "_opacity": 255,
  3090. "_color": {
  3091. "__type__": "cc.Color",
  3092. "r": 255,
  3093. "g": 255,
  3094. "b": 255,
  3095. "a": 255
  3096. },
  3097. "_cascadeOpacityEnabled": true,
  3098. "_anchorPoint": {
  3099. "__type__": "cc.Vec2",
  3100. "x": 0.5,
  3101. "y": 0.5
  3102. },
  3103. "_contentSize": {
  3104. "__type__": "cc.Size",
  3105. "width": 400,
  3106. "height": 720
  3107. },
  3108. "_rotationX": 0,
  3109. "_rotationY": 0,
  3110. "_scaleX": 1,
  3111. "_scaleY": 1,
  3112. "_position": {
  3113. "__type__": "cc.Vec2",
  3114. "x": -2.2737367544323206e-13,
  3115. "y": 0
  3116. },
  3117. "_skewX": 0,
  3118. "_skewY": 0,
  3119. "_localZOrder": 0,
  3120. "_globalZOrder": 0,
  3121. "_opacityModifyRGB": false,
  3122. "groupIndex": 0
  3123. },
  3124. {
  3125. "__type__": "cc.Node",
  3126. "_name": "role_wrapper",
  3127. "_objFlags": 0,
  3128. "_parent": {
  3129. "__id__": 99
  3130. },
  3131. "_children": [
  3132. {
  3133. "__id__": 101
  3134. }
  3135. ],
  3136. "_tag": -1,
  3137. "_active": true,
  3138. "_components": [
  3139. {
  3140. "__id__": 104
  3141. }
  3142. ],
  3143. "_prefab": {
  3144. "__id__": 105
  3145. },
  3146. "_id": "",
  3147. "_opacity": 255,
  3148. "_color": {
  3149. "__type__": "cc.Color",
  3150. "r": 255,
  3151. "g": 255,
  3152. "b": 255,
  3153. "a": 255
  3154. },
  3155. "_cascadeOpacityEnabled": true,
  3156. "_anchorPoint": {
  3157. "__type__": "cc.Vec2",
  3158. "x": 0.5,
  3159. "y": 0.5
  3160. },
  3161. "_contentSize": {
  3162. "__type__": "cc.Size",
  3163. "width": 250,
  3164. "height": 500
  3165. },
  3166. "_rotationX": 0,
  3167. "_rotationY": 0,
  3168. "_scaleX": 1,
  3169. "_scaleY": 1,
  3170. "_position": {
  3171. "__type__": "cc.Vec2",
  3172. "x": 0,
  3173. "y": -12
  3174. },
  3175. "_skewX": 0,
  3176. "_skewY": 0,
  3177. "_localZOrder": 0,
  3178. "_globalZOrder": 0,
  3179. "_opacityModifyRGB": false,
  3180. "groupIndex": 0
  3181. },
  3182. {
  3183. "__type__": "cc.Node",
  3184. "_name": "role",
  3185. "_objFlags": 0,
  3186. "_parent": {
  3187. "__id__": 100
  3188. },
  3189. "_children": [],
  3190. "_tag": -1,
  3191. "_active": true,
  3192. "_components": [
  3193. {
  3194. "__id__": 102
  3195. }
  3196. ],
  3197. "_prefab": {
  3198. "__id__": 103
  3199. },
  3200. "_id": "",
  3201. "_opacity": 255,
  3202. "_color": {
  3203. "__type__": "cc.Color",
  3204. "r": 255,
  3205. "g": 255,
  3206. "b": 255,
  3207. "a": 255
  3208. },
  3209. "_cascadeOpacityEnabled": true,
  3210. "_anchorPoint": {
  3211. "__type__": "cc.Vec2",
  3212. "x": 0.5,
  3213. "y": 0.5
  3214. },
  3215. "_contentSize": {
  3216. "__type__": "cc.Size",
  3217. "width": 0,
  3218. "height": 0
  3219. },
  3220. "_rotationX": 0,
  3221. "_rotationY": 0,
  3222. "_scaleX": 0.6,
  3223. "_scaleY": 0.6,
  3224. "_position": {
  3225. "__type__": "cc.Vec2",
  3226. "x": -15,
  3227. "y": -249
  3228. },
  3229. "_skewX": 0,
  3230. "_skewY": 0,
  3231. "_localZOrder": 0,
  3232. "_globalZOrder": 0,
  3233. "_opacityModifyRGB": false,
  3234. "groupIndex": 0
  3235. },
  3236. {
  3237. "__type__": "sp.Skeleton",
  3238. "_name": "",
  3239. "_objFlags": 0,
  3240. "node": {
  3241. "__id__": 101
  3242. },
  3243. "_enabled": true,
  3244. "_paused": false,
  3245. "defaultSkin": "",
  3246. "defaultAnimation": "stand",
  3247. "loop": true,
  3248. "_premultipliedAlpha": true,
  3249. "_N$skeletonData": {
  3250. "__uuid__": "6cf7ea64-1c6f-4092-9314-11f41f2d9576"
  3251. },
  3252. "_N$timeScale": 1,
  3253. "_N$debugSlots": false,
  3254. "_N$debugBones": false
  3255. },
  3256. {
  3257. "__type__": "cc.PrefabInfo",
  3258. "root": {
  3259. "__id__": 1
  3260. },
  3261. "asset": {
  3262. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3263. },
  3264. "fileId": "1cuIBkgXNNK4AqWEYs2dbw",
  3265. "sync": false
  3266. },
  3267. {
  3268. "__type__": "8546eJLjJZBj5IbJUYddjvR",
  3269. "_name": "",
  3270. "_objFlags": 0,
  3271. "node": {
  3272. "__id__": 100
  3273. },
  3274. "_enabled": true,
  3275. "role": {
  3276. "__id__": 102
  3277. }
  3278. },
  3279. {
  3280. "__type__": "cc.PrefabInfo",
  3281. "root": {
  3282. "__id__": 1
  3283. },
  3284. "asset": {
  3285. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3286. },
  3287. "fileId": "97RMeX+oJC+6xPU4T6T7+N",
  3288. "sync": false
  3289. },
  3290. {
  3291. "__type__": "cc.Node",
  3292. "_name": "summary",
  3293. "_objFlags": 0,
  3294. "_parent": {
  3295. "__id__": 99
  3296. },
  3297. "_children": [],
  3298. "_tag": -1,
  3299. "_active": true,
  3300. "_components": [
  3301. {
  3302. "__id__": 107
  3303. }
  3304. ],
  3305. "_prefab": {
  3306. "__id__": 108
  3307. },
  3308. "_id": "",
  3309. "_opacity": 255,
  3310. "_color": {
  3311. "__type__": "cc.Color",
  3312. "r": 255,
  3313. "g": 255,
  3314. "b": 255,
  3315. "a": 255
  3316. },
  3317. "_cascadeOpacityEnabled": true,
  3318. "_anchorPoint": {
  3319. "__type__": "cc.Vec2",
  3320. "x": 0.5,
  3321. "y": 0.5
  3322. },
  3323. "_contentSize": {
  3324. "__type__": "cc.Size",
  3325. "width": 240,
  3326. "height": 40
  3327. },
  3328. "_rotationX": 0,
  3329. "_rotationY": 0,
  3330. "_scaleX": 1,
  3331. "_scaleY": 1,
  3332. "_position": {
  3333. "__type__": "cc.Vec2",
  3334. "x": 0,
  3335. "y": -339
  3336. },
  3337. "_skewX": 0,
  3338. "_skewY": 0,
  3339. "_localZOrder": 0,
  3340. "_globalZOrder": 0,
  3341. "_opacityModifyRGB": false,
  3342. "groupIndex": 0
  3343. },
  3344. {
  3345. "__type__": "cc.Label",
  3346. "_name": "",
  3347. "_objFlags": 0,
  3348. "node": {
  3349. "__id__": 106
  3350. },
  3351. "_enabled": true,
  3352. "_useOriginalSize": false,
  3353. "_actualFontSize": 24,
  3354. "_fontSize": 24,
  3355. "_lineHeight": 40,
  3356. "_enableWrapText": true,
  3357. "_N$file": null,
  3358. "_isSystemFontUsed": true,
  3359. "_spacingX": 0,
  3360. "_N$string": "会跟着音乐的律动起舞",
  3361. "_N$horizontalAlign": 1,
  3362. "_N$verticalAlign": 1,
  3363. "_N$fontFamily": "Arial",
  3364. "_N$overflow": 0
  3365. },
  3366. {
  3367. "__type__": "cc.PrefabInfo",
  3368. "root": {
  3369. "__id__": 1
  3370. },
  3371. "asset": {
  3372. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3373. },
  3374. "fileId": "b8XN7aUi5J/qzK65FMmnyg",
  3375. "sync": false
  3376. },
  3377. {
  3378. "__type__": "cc.Node",
  3379. "_name": "nameLayout",
  3380. "_objFlags": 0,
  3381. "_parent": {
  3382. "__id__": 99
  3383. },
  3384. "_children": [
  3385. {
  3386. "__id__": 110
  3387. },
  3388. {
  3389. "__id__": 113
  3390. }
  3391. ],
  3392. "_tag": -1,
  3393. "_active": true,
  3394. "_components": [
  3395. {
  3396. "__id__": 116
  3397. }
  3398. ],
  3399. "_prefab": {
  3400. "__id__": 117
  3401. },
  3402. "_id": "",
  3403. "_opacity": 255,
  3404. "_color": {
  3405. "__type__": "cc.Color",
  3406. "r": 167,
  3407. "g": 167,
  3408. "b": 167,
  3409. "a": 255
  3410. },
  3411. "_cascadeOpacityEnabled": true,
  3412. "_anchorPoint": {
  3413. "__type__": "cc.Vec2",
  3414. "x": 0.5,
  3415. "y": 0.5
  3416. },
  3417. "_contentSize": {
  3418. "__type__": "cc.Size",
  3419. "width": 116,
  3420. "height": 0
  3421. },
  3422. "_rotationX": 0,
  3423. "_rotationY": 0,
  3424. "_scaleX": 1,
  3425. "_scaleY": 1,
  3426. "_position": {
  3427. "__type__": "cc.Vec2",
  3428. "x": 0,
  3429. "y": 305
  3430. },
  3431. "_skewX": 0,
  3432. "_skewY": 0,
  3433. "_localZOrder": 0,
  3434. "_globalZOrder": 0,
  3435. "_opacityModifyRGB": false,
  3436. "groupIndex": 0
  3437. },
  3438. {
  3439. "__type__": "cc.Node",
  3440. "_name": "icon",
  3441. "_objFlags": 0,
  3442. "_parent": {
  3443. "__id__": 109
  3444. },
  3445. "_children": [],
  3446. "_tag": -1,
  3447. "_active": true,
  3448. "_components": [
  3449. {
  3450. "__id__": 111
  3451. }
  3452. ],
  3453. "_prefab": {
  3454. "__id__": 112
  3455. },
  3456. "_id": "",
  3457. "_opacity": 255,
  3458. "_color": {
  3459. "__type__": "cc.Color",
  3460. "r": 255,
  3461. "g": 255,
  3462. "b": 255,
  3463. "a": 255
  3464. },
  3465. "_cascadeOpacityEnabled": true,
  3466. "_anchorPoint": {
  3467. "__type__": "cc.Vec2",
  3468. "x": 0.5,
  3469. "y": 0.5
  3470. },
  3471. "_contentSize": {
  3472. "__type__": "cc.Size",
  3473. "width": 44,
  3474. "height": 44
  3475. },
  3476. "_rotationX": 0,
  3477. "_rotationY": 0,
  3478. "_scaleX": 1,
  3479. "_scaleY": 1,
  3480. "_position": {
  3481. "__type__": "cc.Vec2",
  3482. "x": -36,
  3483. "y": 0
  3484. },
  3485. "_skewX": 0,
  3486. "_skewY": 0,
  3487. "_localZOrder": 0,
  3488. "_globalZOrder": 0,
  3489. "_opacityModifyRGB": false,
  3490. "groupIndex": 0
  3491. },
  3492. {
  3493. "__type__": "cc.Sprite",
  3494. "_name": "",
  3495. "_objFlags": 0,
  3496. "node": {
  3497. "__id__": 110
  3498. },
  3499. "_enabled": true,
  3500. "_spriteFrame": {
  3501. "__uuid__": "1478c5c4-1d37-468f-89d0-ce4582e564c2"
  3502. },
  3503. "_type": 0,
  3504. "_sizeMode": 1,
  3505. "_fillType": 0,
  3506. "_fillCenter": {
  3507. "__type__": "cc.Vec2",
  3508. "x": 0,
  3509. "y": 0
  3510. },
  3511. "_fillStart": 0,
  3512. "_fillRange": 0,
  3513. "_isTrimmedMode": true,
  3514. "_srcBlendFactor": 770,
  3515. "_dstBlendFactor": 771,
  3516. "_atlas": null
  3517. },
  3518. {
  3519. "__type__": "cc.PrefabInfo",
  3520. "root": {
  3521. "__id__": 1
  3522. },
  3523. "asset": {
  3524. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3525. },
  3526. "fileId": "32GMhDPzBLSLIAiow4k6yT",
  3527. "sync": false
  3528. },
  3529. {
  3530. "__type__": "cc.Node",
  3531. "_name": "name",
  3532. "_objFlags": 0,
  3533. "_parent": {
  3534. "__id__": 109
  3535. },
  3536. "_children": [],
  3537. "_tag": -1,
  3538. "_active": true,
  3539. "_components": [
  3540. {
  3541. "__id__": 114
  3542. }
  3543. ],
  3544. "_prefab": {
  3545. "__id__": 115
  3546. },
  3547. "_id": "",
  3548. "_opacity": 255,
  3549. "_color": {
  3550. "__type__": "cc.Color",
  3551. "r": 88,
  3552. "g": 74,
  3553. "b": 71,
  3554. "a": 255
  3555. },
  3556. "_cascadeOpacityEnabled": true,
  3557. "_anchorPoint": {
  3558. "__type__": "cc.Vec2",
  3559. "x": 0.5,
  3560. "y": 0.5
  3561. },
  3562. "_contentSize": {
  3563. "__type__": "cc.Size",
  3564. "width": 67,
  3565. "height": 50
  3566. },
  3567. "_rotationX": 0,
  3568. "_rotationY": 0,
  3569. "_scaleX": 1,
  3570. "_scaleY": 1,
  3571. "_position": {
  3572. "__type__": "cc.Vec2",
  3573. "x": 24.5,
  3574. "y": 0
  3575. },
  3576. "_skewX": 0,
  3577. "_skewY": 0,
  3578. "_localZOrder": 0,
  3579. "_globalZOrder": 0,
  3580. "_opacityModifyRGB": false,
  3581. "groupIndex": 0
  3582. },
  3583. {
  3584. "__type__": "cc.RichText",
  3585. "_name": "",
  3586. "_objFlags": 0,
  3587. "node": {
  3588. "__id__": 113
  3589. },
  3590. "_enabled": true,
  3591. "_N$string": "<outline color=#ffffff width=3><b>舞者</b></outline>",
  3592. "_N$horizontalAlign": 0,
  3593. "_N$fontSize": 30,
  3594. "_N$font": null,
  3595. "_N$maxWidth": 0,
  3596. "_N$lineHeight": 50,
  3597. "_N$imageAtlas": null,
  3598. "_N$handleTouchEvent": true
  3599. },
  3600. {
  3601. "__type__": "cc.PrefabInfo",
  3602. "root": {
  3603. "__id__": 1
  3604. },
  3605. "asset": {
  3606. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3607. },
  3608. "fileId": "e2GfA2yklCqJwtyn98Quo1",
  3609. "sync": false
  3610. },
  3611. {
  3612. "__type__": "cc.Layout",
  3613. "_name": "",
  3614. "_objFlags": 0,
  3615. "node": {
  3616. "__id__": 109
  3617. },
  3618. "_enabled": true,
  3619. "_layoutSize": {
  3620. "__type__": "cc.Size",
  3621. "width": 116,
  3622. "height": 0
  3623. },
  3624. "_resize": 1,
  3625. "_N$layoutType": 1,
  3626. "_N$padding": 0,
  3627. "_N$cellSize": {
  3628. "__type__": "cc.Size",
  3629. "width": 40,
  3630. "height": 40
  3631. },
  3632. "_N$startAxis": 0,
  3633. "_N$paddingLeft": 0,
  3634. "_N$paddingRight": 0,
  3635. "_N$paddingTop": 0,
  3636. "_N$paddingBottom": 0,
  3637. "_N$spacingX": 5,
  3638. "_N$spacingY": 0,
  3639. "_N$verticalDirection": 1,
  3640. "_N$horizontalDirection": 0
  3641. },
  3642. {
  3643. "__type__": "cc.PrefabInfo",
  3644. "root": {
  3645. "__id__": 1
  3646. },
  3647. "asset": {
  3648. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3649. },
  3650. "fileId": "69zARxCCFOOJ3KhLD86Uwt",
  3651. "sync": false
  3652. },
  3653. {
  3654. "__type__": "78608+tKmVKoKek4fNIO5Pc",
  3655. "_name": "",
  3656. "_objFlags": 0,
  3657. "node": {
  3658. "__id__": 99
  3659. },
  3660. "_enabled": true,
  3661. "skinSkeleton": {
  3662. "__id__": 102
  3663. },
  3664. "summaryLabel": {
  3665. "__id__": 107
  3666. },
  3667. "nameLabel": {
  3668. "__id__": 114
  3669. },
  3670. "iconSripte": {
  3671. "__id__": 111
  3672. }
  3673. },
  3674. {
  3675. "__type__": "cc.PrefabInfo",
  3676. "root": {
  3677. "__id__": 1
  3678. },
  3679. "asset": {
  3680. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3681. },
  3682. "fileId": "6cNTF1YthLpLSv+YW2kYPY",
  3683. "sync": false
  3684. },
  3685. {
  3686. "__type__": "cc.PrefabInfo",
  3687. "root": {
  3688. "__id__": 1
  3689. },
  3690. "asset": {
  3691. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3692. },
  3693. "fileId": "fa5hgWzLhILpICTsJbQME5",
  3694. "sync": false
  3695. },
  3696. {
  3697. "__type__": "cc.Node",
  3698. "_name": "level_up",
  3699. "_objFlags": 0,
  3700. "_parent": {
  3701. "__id__": 45
  3702. },
  3703. "_children": [
  3704. {
  3705. "__id__": 122
  3706. },
  3707. {
  3708. "__id__": 125
  3709. },
  3710. {
  3711. "__id__": 128
  3712. },
  3713. {
  3714. "__id__": 134
  3715. },
  3716. {
  3717. "__id__": 137
  3718. },
  3719. {
  3720. "__id__": 143
  3721. },
  3722. {
  3723. "__id__": 146
  3724. },
  3725. {
  3726. "__id__": 152
  3727. },
  3728. {
  3729. "__id__": 155
  3730. },
  3731. {
  3732. "__id__": 158
  3733. },
  3734. {
  3735. "__id__": 165
  3736. }
  3737. ],
  3738. "_tag": -1,
  3739. "_active": true,
  3740. "_components": [
  3741. {
  3742. "__id__": 168
  3743. },
  3744. {
  3745. "__id__": 169
  3746. }
  3747. ],
  3748. "_prefab": {
  3749. "__id__": 170
  3750. },
  3751. "_id": "",
  3752. "_opacity": 255,
  3753. "_color": {
  3754. "__type__": "cc.Color",
  3755. "r": 255,
  3756. "g": 255,
  3757. "b": 255,
  3758. "a": 255
  3759. },
  3760. "_cascadeOpacityEnabled": true,
  3761. "_anchorPoint": {
  3762. "__type__": "cc.Vec2",
  3763. "x": 0.5,
  3764. "y": 0.5
  3765. },
  3766. "_contentSize": {
  3767. "__type__": "cc.Size",
  3768. "width": 510,
  3769. "height": 100
  3770. },
  3771. "_rotationX": 0,
  3772. "_rotationY": 0,
  3773. "_scaleX": 1,
  3774. "_scaleY": 1,
  3775. "_position": {
  3776. "__type__": "cc.Vec2",
  3777. "x": 0,
  3778. "y": 139
  3779. },
  3780. "_skewX": 0,
  3781. "_skewY": 0,
  3782. "_localZOrder": 0,
  3783. "_globalZOrder": 0,
  3784. "_opacityModifyRGB": false,
  3785. "groupIndex": 0
  3786. },
  3787. {
  3788. "__type__": "cc.Node",
  3789. "_name": "circle",
  3790. "_objFlags": 0,
  3791. "_parent": {
  3792. "__id__": 121
  3793. },
  3794. "_children": [],
  3795. "_tag": -1,
  3796. "_active": true,
  3797. "_components": [
  3798. {
  3799. "__id__": 123
  3800. }
  3801. ],
  3802. "_prefab": {
  3803. "__id__": 124
  3804. },
  3805. "_id": "",
  3806. "_opacity": 255,
  3807. "_color": {
  3808. "__type__": "cc.Color",
  3809. "r": 255,
  3810. "g": 255,
  3811. "b": 255,
  3812. "a": 255
  3813. },
  3814. "_cascadeOpacityEnabled": true,
  3815. "_anchorPoint": {
  3816. "__type__": "cc.Vec2",
  3817. "x": 0.5,
  3818. "y": 0.5
  3819. },
  3820. "_contentSize": {
  3821. "__type__": "cc.Size",
  3822. "width": 376,
  3823. "height": 130
  3824. },
  3825. "_rotationX": 0,
  3826. "_rotationY": 0,
  3827. "_scaleX": 1,
  3828. "_scaleY": 1,
  3829. "_position": {
  3830. "__type__": "cc.Vec2",
  3831. "x": 0,
  3832. "y": -549
  3833. },
  3834. "_skewX": 0,
  3835. "_skewY": 0,
  3836. "_localZOrder": 0,
  3837. "_globalZOrder": 0,
  3838. "_opacityModifyRGB": false,
  3839. "groupIndex": 0
  3840. },
  3841. {
  3842. "__type__": "cc.Sprite",
  3843. "_name": "",
  3844. "_objFlags": 0,
  3845. "node": {
  3846. "__id__": 122
  3847. },
  3848. "_enabled": true,
  3849. "_spriteFrame": {
  3850. "__uuid__": "d0013dec-23c9-417a-a767-c4b48c657a50"
  3851. },
  3852. "_type": 0,
  3853. "_sizeMode": 1,
  3854. "_fillType": 0,
  3855. "_fillCenter": {
  3856. "__type__": "cc.Vec2",
  3857. "x": 0,
  3858. "y": 0
  3859. },
  3860. "_fillStart": 0,
  3861. "_fillRange": 0,
  3862. "_isTrimmedMode": true,
  3863. "_srcBlendFactor": 770,
  3864. "_dstBlendFactor": 771,
  3865. "_atlas": null
  3866. },
  3867. {
  3868. "__type__": "cc.PrefabInfo",
  3869. "root": {
  3870. "__id__": 1
  3871. },
  3872. "asset": {
  3873. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3874. },
  3875. "fileId": "6caOzbFmRK6pf+pshWphaS",
  3876. "sync": false
  3877. },
  3878. {
  3879. "__type__": "cc.Node",
  3880. "_name": "arrow",
  3881. "_objFlags": 0,
  3882. "_parent": {
  3883. "__id__": 121
  3884. },
  3885. "_children": [],
  3886. "_tag": -1,
  3887. "_active": true,
  3888. "_components": [
  3889. {
  3890. "__id__": 126
  3891. }
  3892. ],
  3893. "_prefab": {
  3894. "__id__": 127
  3895. },
  3896. "_id": "",
  3897. "_opacity": 255,
  3898. "_color": {
  3899. "__type__": "cc.Color",
  3900. "r": 255,
  3901. "g": 255,
  3902. "b": 255,
  3903. "a": 255
  3904. },
  3905. "_cascadeOpacityEnabled": true,
  3906. "_anchorPoint": {
  3907. "__type__": "cc.Vec2",
  3908. "x": 0.5,
  3909. "y": 0.5
  3910. },
  3911. "_contentSize": {
  3912. "__type__": "cc.Size",
  3913. "width": 25,
  3914. "height": 40
  3915. },
  3916. "_rotationX": 0,
  3917. "_rotationY": 0,
  3918. "_scaleX": 1,
  3919. "_scaleY": 1,
  3920. "_position": {
  3921. "__type__": "cc.Vec2",
  3922. "x": 0,
  3923. "y": 0
  3924. },
  3925. "_skewX": 0,
  3926. "_skewY": 0,
  3927. "_localZOrder": 0,
  3928. "_globalZOrder": 0,
  3929. "_opacityModifyRGB": false,
  3930. "groupIndex": 0
  3931. },
  3932. {
  3933. "__type__": "cc.Sprite",
  3934. "_name": "",
  3935. "_objFlags": 0,
  3936. "node": {
  3937. "__id__": 125
  3938. },
  3939. "_enabled": true,
  3940. "_spriteFrame": {
  3941. "__uuid__": "60a611f4-cb84-44ce-b2b1-cd743ed69b2f"
  3942. },
  3943. "_type": 0,
  3944. "_sizeMode": 0,
  3945. "_fillType": 0,
  3946. "_fillCenter": {
  3947. "__type__": "cc.Vec2",
  3948. "x": 0,
  3949. "y": 0
  3950. },
  3951. "_fillStart": 0,
  3952. "_fillRange": 0,
  3953. "_isTrimmedMode": true,
  3954. "_srcBlendFactor": 770,
  3955. "_dstBlendFactor": 771,
  3956. "_atlas": null
  3957. },
  3958. {
  3959. "__type__": "cc.PrefabInfo",
  3960. "root": {
  3961. "__id__": 1
  3962. },
  3963. "asset": {
  3964. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  3965. },
  3966. "fileId": "b8cGmCqZhKNaPbqnpCO7JT",
  3967. "sync": false
  3968. },
  3969. {
  3970. "__type__": "cc.Node",
  3971. "_name": "star_befor",
  3972. "_objFlags": 0,
  3973. "_parent": {
  3974. "__id__": 121
  3975. },
  3976. "_children": [
  3977. {
  3978. "__id__": 129
  3979. }
  3980. ],
  3981. "_tag": -1,
  3982. "_active": true,
  3983. "_components": [
  3984. {
  3985. "__id__": 132
  3986. }
  3987. ],
  3988. "_prefab": {
  3989. "__id__": 133
  3990. },
  3991. "_id": "",
  3992. "_opacity": 255,
  3993. "_color": {
  3994. "__type__": "cc.Color",
  3995. "r": 255,
  3996. "g": 255,
  3997. "b": 255,
  3998. "a": 255
  3999. },
  4000. "_cascadeOpacityEnabled": true,
  4001. "_anchorPoint": {
  4002. "__type__": "cc.Vec2",
  4003. "x": 0.5,
  4004. "y": 0.5
  4005. },
  4006. "_contentSize": {
  4007. "__type__": "cc.Size",
  4008. "width": 55,
  4009. "height": 51
  4010. },
  4011. "_rotationX": 0,
  4012. "_rotationY": 0,
  4013. "_scaleX": 1,
  4014. "_scaleY": 1,
  4015. "_position": {
  4016. "__type__": "cc.Vec2",
  4017. "x": -210.6,
  4018. "y": 0
  4019. },
  4020. "_skewX": 0,
  4021. "_skewY": 0,
  4022. "_localZOrder": 0,
  4023. "_globalZOrder": 0,
  4024. "_opacityModifyRGB": false,
  4025. "groupIndex": 0
  4026. },
  4027. {
  4028. "__type__": "cc.Node",
  4029. "_name": "level_befor",
  4030. "_objFlags": 0,
  4031. "_parent": {
  4032. "__id__": 128
  4033. },
  4034. "_children": [],
  4035. "_tag": -1,
  4036. "_active": true,
  4037. "_components": [
  4038. {
  4039. "__id__": 130
  4040. }
  4041. ],
  4042. "_prefab": {
  4043. "__id__": 131
  4044. },
  4045. "_id": "",
  4046. "_opacity": 255,
  4047. "_color": {
  4048. "__type__": "cc.Color",
  4049. "r": 255,
  4050. "g": 255,
  4051. "b": 255,
  4052. "a": 255
  4053. },
  4054. "_cascadeOpacityEnabled": true,
  4055. "_anchorPoint": {
  4056. "__type__": "cc.Vec2",
  4057. "x": 0.5,
  4058. "y": 0.5
  4059. },
  4060. "_contentSize": {
  4061. "__type__": "cc.Size",
  4062. "width": 0,
  4063. "height": 24
  4064. },
  4065. "_rotationX": 0,
  4066. "_rotationY": 0,
  4067. "_scaleX": 1,
  4068. "_scaleY": 1,
  4069. "_position": {
  4070. "__type__": "cc.Vec2",
  4071. "x": 0,
  4072. "y": -3
  4073. },
  4074. "_skewX": 0,
  4075. "_skewY": 0,
  4076. "_localZOrder": 0,
  4077. "_globalZOrder": 0,
  4078. "_opacityModifyRGB": false,
  4079. "groupIndex": 0
  4080. },
  4081. {
  4082. "__type__": "cc.RichText",
  4083. "_name": "",
  4084. "_objFlags": 0,
  4085. "node": {
  4086. "__id__": 129
  4087. },
  4088. "_enabled": true,
  4089. "_N$string": "",
  4090. "_N$horizontalAlign": 0,
  4091. "_N$fontSize": 24,
  4092. "_N$font": null,
  4093. "_N$maxWidth": 0,
  4094. "_N$lineHeight": 24,
  4095. "_N$imageAtlas": null,
  4096. "_N$handleTouchEvent": true
  4097. },
  4098. {
  4099. "__type__": "cc.PrefabInfo",
  4100. "root": {
  4101. "__id__": 1
  4102. },
  4103. "asset": {
  4104. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4105. },
  4106. "fileId": "5dskQMCT5Bnpsj7mLaUgwK",
  4107. "sync": false
  4108. },
  4109. {
  4110. "__type__": "cc.Sprite",
  4111. "_name": "",
  4112. "_objFlags": 0,
  4113. "node": {
  4114. "__id__": 128
  4115. },
  4116. "_enabled": true,
  4117. "_spriteFrame": {
  4118. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  4119. },
  4120. "_type": 0,
  4121. "_sizeMode": 1,
  4122. "_fillType": 0,
  4123. "_fillCenter": {
  4124. "__type__": "cc.Vec2",
  4125. "x": 0,
  4126. "y": 0
  4127. },
  4128. "_fillStart": 0,
  4129. "_fillRange": 0,
  4130. "_isTrimmedMode": true,
  4131. "_srcBlendFactor": 770,
  4132. "_dstBlendFactor": 771,
  4133. "_atlas": null
  4134. },
  4135. {
  4136. "__type__": "cc.PrefabInfo",
  4137. "root": {
  4138. "__id__": 1
  4139. },
  4140. "asset": {
  4141. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4142. },
  4143. "fileId": "5aeNHG6x5GN7myUNy7Mw+i",
  4144. "sync": false
  4145. },
  4146. {
  4147. "__type__": "cc.Node",
  4148. "_name": "name_befor",
  4149. "_objFlags": 0,
  4150. "_parent": {
  4151. "__id__": 121
  4152. },
  4153. "_children": [],
  4154. "_tag": -1,
  4155. "_active": true,
  4156. "_components": [
  4157. {
  4158. "__id__": 135
  4159. }
  4160. ],
  4161. "_prefab": {
  4162. "__id__": 136
  4163. },
  4164. "_id": "",
  4165. "_opacity": 255,
  4166. "_color": {
  4167. "__type__": "cc.Color",
  4168. "r": 88,
  4169. "g": 74,
  4170. "b": 71,
  4171. "a": 255
  4172. },
  4173. "_cascadeOpacityEnabled": true,
  4174. "_anchorPoint": {
  4175. "__type__": "cc.Vec2",
  4176. "x": 0,
  4177. "y": 0.5
  4178. },
  4179. "_contentSize": {
  4180. "__type__": "cc.Size",
  4181. "width": 0,
  4182. "height": 40
  4183. },
  4184. "_rotationX": 0,
  4185. "_rotationY": 0,
  4186. "_scaleX": 1,
  4187. "_scaleY": 1,
  4188. "_position": {
  4189. "__type__": "cc.Vec2",
  4190. "x": -178.1,
  4191. "y": 0
  4192. },
  4193. "_skewX": 0,
  4194. "_skewY": 0,
  4195. "_localZOrder": 0,
  4196. "_globalZOrder": 0,
  4197. "_opacityModifyRGB": false,
  4198. "groupIndex": 0
  4199. },
  4200. {
  4201. "__type__": "cc.RichText",
  4202. "_name": "",
  4203. "_objFlags": 0,
  4204. "node": {
  4205. "__id__": 134
  4206. },
  4207. "_enabled": true,
  4208. "_N$string": "",
  4209. "_N$horizontalAlign": 0,
  4210. "_N$fontSize": 28,
  4211. "_N$font": null,
  4212. "_N$maxWidth": 0,
  4213. "_N$lineHeight": 40,
  4214. "_N$imageAtlas": null,
  4215. "_N$handleTouchEvent": true
  4216. },
  4217. {
  4218. "__type__": "cc.PrefabInfo",
  4219. "root": {
  4220. "__id__": 1
  4221. },
  4222. "asset": {
  4223. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4224. },
  4225. "fileId": "69veChtG9ChI1C8ymqSlsG",
  4226. "sync": false
  4227. },
  4228. {
  4229. "__type__": "cc.Node",
  4230. "_name": "star_after",
  4231. "_objFlags": 0,
  4232. "_parent": {
  4233. "__id__": 121
  4234. },
  4235. "_children": [
  4236. {
  4237. "__id__": 138
  4238. }
  4239. ],
  4240. "_tag": -1,
  4241. "_active": true,
  4242. "_components": [
  4243. {
  4244. "__id__": 141
  4245. }
  4246. ],
  4247. "_prefab": {
  4248. "__id__": 142
  4249. },
  4250. "_id": "",
  4251. "_opacity": 255,
  4252. "_color": {
  4253. "__type__": "cc.Color",
  4254. "r": 255,
  4255. "g": 255,
  4256. "b": 255,
  4257. "a": 255
  4258. },
  4259. "_cascadeOpacityEnabled": true,
  4260. "_anchorPoint": {
  4261. "__type__": "cc.Vec2",
  4262. "x": 0.5,
  4263. "y": 0.5
  4264. },
  4265. "_contentSize": {
  4266. "__type__": "cc.Size",
  4267. "width": 55,
  4268. "height": 51
  4269. },
  4270. "_rotationX": 0,
  4271. "_rotationY": 0,
  4272. "_scaleX": 1,
  4273. "_scaleY": 1,
  4274. "_position": {
  4275. "__type__": "cc.Vec2",
  4276. "x": 87.5,
  4277. "y": 0
  4278. },
  4279. "_skewX": 0,
  4280. "_skewY": 0,
  4281. "_localZOrder": 0,
  4282. "_globalZOrder": 0,
  4283. "_opacityModifyRGB": false,
  4284. "groupIndex": 0
  4285. },
  4286. {
  4287. "__type__": "cc.Node",
  4288. "_name": "level_after",
  4289. "_objFlags": 0,
  4290. "_parent": {
  4291. "__id__": 137
  4292. },
  4293. "_children": [],
  4294. "_tag": -1,
  4295. "_active": true,
  4296. "_components": [
  4297. {
  4298. "__id__": 139
  4299. }
  4300. ],
  4301. "_prefab": {
  4302. "__id__": 140
  4303. },
  4304. "_id": "",
  4305. "_opacity": 255,
  4306. "_color": {
  4307. "__type__": "cc.Color",
  4308. "r": 255,
  4309. "g": 255,
  4310. "b": 255,
  4311. "a": 255
  4312. },
  4313. "_cascadeOpacityEnabled": true,
  4314. "_anchorPoint": {
  4315. "__type__": "cc.Vec2",
  4316. "x": 0.5,
  4317. "y": 0.5
  4318. },
  4319. "_contentSize": {
  4320. "__type__": "cc.Size",
  4321. "width": 0,
  4322. "height": 24
  4323. },
  4324. "_rotationX": 0,
  4325. "_rotationY": 0,
  4326. "_scaleX": 1,
  4327. "_scaleY": 1,
  4328. "_position": {
  4329. "__type__": "cc.Vec2",
  4330. "x": 0,
  4331. "y": -3
  4332. },
  4333. "_skewX": 0,
  4334. "_skewY": 0,
  4335. "_localZOrder": 0,
  4336. "_globalZOrder": 0,
  4337. "_opacityModifyRGB": false,
  4338. "groupIndex": 0
  4339. },
  4340. {
  4341. "__type__": "cc.RichText",
  4342. "_name": "",
  4343. "_objFlags": 0,
  4344. "node": {
  4345. "__id__": 138
  4346. },
  4347. "_enabled": true,
  4348. "_N$string": "",
  4349. "_N$horizontalAlign": 0,
  4350. "_N$fontSize": 24,
  4351. "_N$font": null,
  4352. "_N$maxWidth": 0,
  4353. "_N$lineHeight": 24,
  4354. "_N$imageAtlas": null,
  4355. "_N$handleTouchEvent": true
  4356. },
  4357. {
  4358. "__type__": "cc.PrefabInfo",
  4359. "root": {
  4360. "__id__": 1
  4361. },
  4362. "asset": {
  4363. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4364. },
  4365. "fileId": "80IfdQ9S5EaKEWfIsbyy4r",
  4366. "sync": false
  4367. },
  4368. {
  4369. "__type__": "cc.Sprite",
  4370. "_name": "",
  4371. "_objFlags": 0,
  4372. "node": {
  4373. "__id__": 137
  4374. },
  4375. "_enabled": true,
  4376. "_spriteFrame": {
  4377. "__uuid__": "bddf27cd-4a2e-4882-9101-8bda29e9fd59"
  4378. },
  4379. "_type": 0,
  4380. "_sizeMode": 1,
  4381. "_fillType": 0,
  4382. "_fillCenter": {
  4383. "__type__": "cc.Vec2",
  4384. "x": 0,
  4385. "y": 0
  4386. },
  4387. "_fillStart": 0,
  4388. "_fillRange": 0,
  4389. "_isTrimmedMode": true,
  4390. "_srcBlendFactor": 770,
  4391. "_dstBlendFactor": 771,
  4392. "_atlas": null
  4393. },
  4394. {
  4395. "__type__": "cc.PrefabInfo",
  4396. "root": {
  4397. "__id__": 1
  4398. },
  4399. "asset": {
  4400. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4401. },
  4402. "fileId": "aePYhAuD9ONpM62S4BV3k8",
  4403. "sync": false
  4404. },
  4405. {
  4406. "__type__": "cc.Node",
  4407. "_name": "name_after",
  4408. "_objFlags": 0,
  4409. "_parent": {
  4410. "__id__": 121
  4411. },
  4412. "_children": [],
  4413. "_tag": -1,
  4414. "_active": true,
  4415. "_components": [
  4416. {
  4417. "__id__": 144
  4418. }
  4419. ],
  4420. "_prefab": {
  4421. "__id__": 145
  4422. },
  4423. "_id": "",
  4424. "_opacity": 255,
  4425. "_color": {
  4426. "__type__": "cc.Color",
  4427. "r": 254,
  4428. "g": 208,
  4429. "b": 11,
  4430. "a": 255
  4431. },
  4432. "_cascadeOpacityEnabled": true,
  4433. "_anchorPoint": {
  4434. "__type__": "cc.Vec2",
  4435. "x": 0,
  4436. "y": 0.5
  4437. },
  4438. "_contentSize": {
  4439. "__type__": "cc.Size",
  4440. "width": 0,
  4441. "height": 40
  4442. },
  4443. "_rotationX": 0,
  4444. "_rotationY": 0,
  4445. "_scaleX": 1,
  4446. "_scaleY": 1,
  4447. "_position": {
  4448. "__type__": "cc.Vec2",
  4449. "x": 120,
  4450. "y": 0
  4451. },
  4452. "_skewX": 0,
  4453. "_skewY": 0,
  4454. "_localZOrder": 0,
  4455. "_globalZOrder": 0,
  4456. "_opacityModifyRGB": false,
  4457. "groupIndex": 0
  4458. },
  4459. {
  4460. "__type__": "cc.RichText",
  4461. "_name": "",
  4462. "_objFlags": 0,
  4463. "node": {
  4464. "__id__": 143
  4465. },
  4466. "_enabled": true,
  4467. "_N$string": "",
  4468. "_N$horizontalAlign": 0,
  4469. "_N$fontSize": 28,
  4470. "_N$font": null,
  4471. "_N$maxWidth": 0,
  4472. "_N$lineHeight": 40,
  4473. "_N$imageAtlas": null,
  4474. "_N$handleTouchEvent": true
  4475. },
  4476. {
  4477. "__type__": "cc.PrefabInfo",
  4478. "root": {
  4479. "__id__": 1
  4480. },
  4481. "asset": {
  4482. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4483. },
  4484. "fileId": "2fH8cK3JNKPJm8LzFRwmtS",
  4485. "sync": false
  4486. },
  4487. {
  4488. "__type__": "cc.Node",
  4489. "_name": "role_wrapper",
  4490. "_objFlags": 0,
  4491. "_parent": {
  4492. "__id__": 121
  4493. },
  4494. "_children": [
  4495. {
  4496. "__id__": 147
  4497. }
  4498. ],
  4499. "_tag": -1,
  4500. "_active": true,
  4501. "_components": [
  4502. {
  4503. "__id__": 150
  4504. }
  4505. ],
  4506. "_prefab": {
  4507. "__id__": 151
  4508. },
  4509. "_id": "",
  4510. "_opacity": 255,
  4511. "_color": {
  4512. "__type__": "cc.Color",
  4513. "r": 255,
  4514. "g": 255,
  4515. "b": 255,
  4516. "a": 255
  4517. },
  4518. "_cascadeOpacityEnabled": true,
  4519. "_anchorPoint": {
  4520. "__type__": "cc.Vec2",
  4521. "x": 0.5,
  4522. "y": 0.5
  4523. },
  4524. "_contentSize": {
  4525. "__type__": "cc.Size",
  4526. "width": 250,
  4527. "height": 500
  4528. },
  4529. "_rotationX": 0,
  4530. "_rotationY": 0,
  4531. "_scaleX": 1,
  4532. "_scaleY": 1,
  4533. "_position": {
  4534. "__type__": "cc.Vec2",
  4535. "x": 12,
  4536. "y": -346
  4537. },
  4538. "_skewX": 0,
  4539. "_skewY": 0,
  4540. "_localZOrder": 0,
  4541. "_globalZOrder": 0,
  4542. "_opacityModifyRGB": false,
  4543. "groupIndex": 0
  4544. },
  4545. {
  4546. "__type__": "cc.Node",
  4547. "_name": "role",
  4548. "_objFlags": 0,
  4549. "_parent": {
  4550. "__id__": 146
  4551. },
  4552. "_children": [],
  4553. "_tag": -1,
  4554. "_active": true,
  4555. "_components": [
  4556. {
  4557. "__id__": 148
  4558. }
  4559. ],
  4560. "_prefab": {
  4561. "__id__": 149
  4562. },
  4563. "_id": "",
  4564. "_opacity": 255,
  4565. "_color": {
  4566. "__type__": "cc.Color",
  4567. "r": 255,
  4568. "g": 255,
  4569. "b": 255,
  4570. "a": 255
  4571. },
  4572. "_cascadeOpacityEnabled": true,
  4573. "_anchorPoint": {
  4574. "__type__": "cc.Vec2",
  4575. "x": 0.5,
  4576. "y": 0.5
  4577. },
  4578. "_contentSize": {
  4579. "__type__": "cc.Size",
  4580. "width": 0,
  4581. "height": 0
  4582. },
  4583. "_rotationX": 0,
  4584. "_rotationY": 0,
  4585. "_scaleX": 0.6,
  4586. "_scaleY": 0.6,
  4587. "_position": {
  4588. "__type__": "cc.Vec2",
  4589. "x": -15,
  4590. "y": -232
  4591. },
  4592. "_skewX": 0,
  4593. "_skewY": 0,
  4594. "_localZOrder": 0,
  4595. "_globalZOrder": 0,
  4596. "_opacityModifyRGB": false,
  4597. "groupIndex": 0
  4598. },
  4599. {
  4600. "__type__": "sp.Skeleton",
  4601. "_name": "",
  4602. "_objFlags": 0,
  4603. "node": {
  4604. "__id__": 147
  4605. },
  4606. "_enabled": true,
  4607. "_paused": false,
  4608. "defaultSkin": "",
  4609. "defaultAnimation": "stand",
  4610. "loop": true,
  4611. "_premultipliedAlpha": true,
  4612. "_N$skeletonData": {
  4613. "__uuid__": "6cf7ea64-1c6f-4092-9314-11f41f2d9576"
  4614. },
  4615. "_N$timeScale": 1,
  4616. "_N$debugSlots": false,
  4617. "_N$debugBones": false
  4618. },
  4619. {
  4620. "__type__": "cc.PrefabInfo",
  4621. "root": {
  4622. "__id__": 1
  4623. },
  4624. "asset": {
  4625. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4626. },
  4627. "fileId": "07+o5496FLbKj+7LbuxLfW",
  4628. "sync": false
  4629. },
  4630. {
  4631. "__type__": "8546eJLjJZBj5IbJUYddjvR",
  4632. "_name": "",
  4633. "_objFlags": 0,
  4634. "node": {
  4635. "__id__": 146
  4636. },
  4637. "_enabled": true,
  4638. "role": {
  4639. "__id__": 148
  4640. }
  4641. },
  4642. {
  4643. "__type__": "cc.PrefabInfo",
  4644. "root": {
  4645. "__id__": 1
  4646. },
  4647. "asset": {
  4648. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4649. },
  4650. "fileId": "1bumKy959Jlp1edJRJ6EN8",
  4651. "sync": false
  4652. },
  4653. {
  4654. "__type__": "cc.Node",
  4655. "_name": "salary",
  4656. "_objFlags": 0,
  4657. "_parent": {
  4658. "__id__": 121
  4659. },
  4660. "_children": [],
  4661. "_tag": -1,
  4662. "_active": true,
  4663. "_components": [
  4664. {
  4665. "__id__": 153
  4666. }
  4667. ],
  4668. "_prefab": {
  4669. "__id__": 154
  4670. },
  4671. "_id": "",
  4672. "_opacity": 255,
  4673. "_color": {
  4674. "__type__": "cc.Color",
  4675. "r": 255,
  4676. "g": 193,
  4677. "b": 5,
  4678. "a": 255
  4679. },
  4680. "_cascadeOpacityEnabled": true,
  4681. "_anchorPoint": {
  4682. "__type__": "cc.Vec2",
  4683. "x": 0.5,
  4684. "y": 0.5
  4685. },
  4686. "_contentSize": {
  4687. "__type__": "cc.Size",
  4688. "width": 96,
  4689. "height": 40
  4690. },
  4691. "_rotationX": 0,
  4692. "_rotationY": 0,
  4693. "_scaleX": 1,
  4694. "_scaleY": 1,
  4695. "_position": {
  4696. "__type__": "cc.Vec2",
  4697. "x": -83,
  4698. "y": -630
  4699. },
  4700. "_skewX": 0,
  4701. "_skewY": 0,
  4702. "_localZOrder": 0,
  4703. "_globalZOrder": 0,
  4704. "_opacityModifyRGB": false,
  4705. "groupIndex": 0
  4706. },
  4707. {
  4708. "__type__": "cc.RichText",
  4709. "_name": "",
  4710. "_objFlags": 0,
  4711. "node": {
  4712. "__id__": 152
  4713. },
  4714. "_enabled": true,
  4715. "_N$string": "<outline color=#ffffff width=2><b>年薪:</b></outline>",
  4716. "_N$horizontalAlign": 0,
  4717. "_N$fontSize": 30,
  4718. "_N$font": null,
  4719. "_N$maxWidth": 0,
  4720. "_N$lineHeight": 40,
  4721. "_N$imageAtlas": null,
  4722. "_N$handleTouchEvent": true
  4723. },
  4724. {
  4725. "__type__": "cc.PrefabInfo",
  4726. "root": {
  4727. "__id__": 1
  4728. },
  4729. "asset": {
  4730. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4731. },
  4732. "fileId": "a2F9eyuvBAR64IxFXhwEFy",
  4733. "sync": false
  4734. },
  4735. {
  4736. "__type__": "cc.Node",
  4737. "_name": "salary_number",
  4738. "_objFlags": 0,
  4739. "_parent": {
  4740. "__id__": 121
  4741. },
  4742. "_children": [],
  4743. "_tag": -1,
  4744. "_active": true,
  4745. "_components": [
  4746. {
  4747. "__id__": 156
  4748. }
  4749. ],
  4750. "_prefab": {
  4751. "__id__": 157
  4752. },
  4753. "_id": "",
  4754. "_opacity": 255,
  4755. "_color": {
  4756. "__type__": "cc.Color",
  4757. "r": 255,
  4758. "g": 255,
  4759. "b": 255,
  4760. "a": 255
  4761. },
  4762. "_cascadeOpacityEnabled": true,
  4763. "_anchorPoint": {
  4764. "__type__": "cc.Vec2",
  4765. "x": 0,
  4766. "y": 0.5
  4767. },
  4768. "_contentSize": {
  4769. "__type__": "cc.Size",
  4770. "width": 0,
  4771. "height": 30
  4772. },
  4773. "_rotationX": 0,
  4774. "_rotationY": 0,
  4775. "_scaleX": 1,
  4776. "_scaleY": 1,
  4777. "_position": {
  4778. "__type__": "cc.Vec2",
  4779. "x": -48,
  4780. "y": -630
  4781. },
  4782. "_skewX": 0,
  4783. "_skewY": 0,
  4784. "_localZOrder": 0,
  4785. "_globalZOrder": 0,
  4786. "_opacityModifyRGB": false,
  4787. "groupIndex": 0
  4788. },
  4789. {
  4790. "__type__": "cc.Label",
  4791. "_name": "",
  4792. "_objFlags": 0,
  4793. "node": {
  4794. "__id__": 155
  4795. },
  4796. "_enabled": true,
  4797. "_useOriginalSize": false,
  4798. "_actualFontSize": 28,
  4799. "_fontSize": 28,
  4800. "_lineHeight": 30,
  4801. "_enableWrapText": true,
  4802. "_N$file": null,
  4803. "_isSystemFontUsed": true,
  4804. "_spacingX": 0,
  4805. "_N$string": "",
  4806. "_N$horizontalAlign": 1,
  4807. "_N$verticalAlign": 1,
  4808. "_N$fontFamily": "Arial",
  4809. "_N$overflow": 0
  4810. },
  4811. {
  4812. "__type__": "cc.PrefabInfo",
  4813. "root": {
  4814. "__id__": 1
  4815. },
  4816. "asset": {
  4817. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4818. },
  4819. "fileId": "bd9qxU/u5M0KcZWDp3YMKr",
  4820. "sync": false
  4821. },
  4822. {
  4823. "__type__": "cc.Node",
  4824. "_name": "progressbar",
  4825. "_objFlags": 0,
  4826. "_parent": {
  4827. "__id__": 121
  4828. },
  4829. "_children": [
  4830. {
  4831. "__id__": 159
  4832. }
  4833. ],
  4834. "_tag": -1,
  4835. "_active": true,
  4836. "_components": [
  4837. {
  4838. "__id__": 162
  4839. },
  4840. {
  4841. "__id__": 163
  4842. }
  4843. ],
  4844. "_prefab": {
  4845. "__id__": 164
  4846. },
  4847. "_id": "",
  4848. "_opacity": 255,
  4849. "_color": {
  4850. "__type__": "cc.Color",
  4851. "r": 255,
  4852. "g": 255,
  4853. "b": 255,
  4854. "a": 255
  4855. },
  4856. "_cascadeOpacityEnabled": true,
  4857. "_anchorPoint": {
  4858. "__type__": "cc.Vec2",
  4859. "x": 0,
  4860. "y": 0.5
  4861. },
  4862. "_contentSize": {
  4863. "__type__": "cc.Size",
  4864. "width": 478,
  4865. "height": 34
  4866. },
  4867. "_rotationX": 0,
  4868. "_rotationY": 0,
  4869. "_scaleX": 1,
  4870. "_scaleY": 1,
  4871. "_position": {
  4872. "__type__": "cc.Vec2",
  4873. "x": -239,
  4874. "y": -674
  4875. },
  4876. "_skewX": 0,
  4877. "_skewY": 0,
  4878. "_localZOrder": 0,
  4879. "_globalZOrder": 0,
  4880. "_opacityModifyRGB": false,
  4881. "groupIndex": 0
  4882. },
  4883. {
  4884. "__type__": "cc.Node",
  4885. "_name": "bar",
  4886. "_objFlags": 0,
  4887. "_parent": {
  4888. "__id__": 158
  4889. },
  4890. "_children": [],
  4891. "_tag": -1,
  4892. "_active": true,
  4893. "_components": [
  4894. {
  4895. "__id__": 160
  4896. }
  4897. ],
  4898. "_prefab": {
  4899. "__id__": 161
  4900. },
  4901. "_id": "",
  4902. "_opacity": 255,
  4903. "_color": {
  4904. "__type__": "cc.Color",
  4905. "r": 255,
  4906. "g": 255,
  4907. "b": 255,
  4908. "a": 255
  4909. },
  4910. "_cascadeOpacityEnabled": true,
  4911. "_anchorPoint": {
  4912. "__type__": "cc.Vec2",
  4913. "x": 0,
  4914. "y": 0.5
  4915. },
  4916. "_contentSize": {
  4917. "__type__": "cc.Size",
  4918. "width": 478,
  4919. "height": 34
  4920. },
  4921. "_rotationX": 0,
  4922. "_rotationY": 0,
  4923. "_scaleX": 1,
  4924. "_scaleY": 1,
  4925. "_position": {
  4926. "__type__": "cc.Vec2",
  4927. "x": 0,
  4928. "y": 0
  4929. },
  4930. "_skewX": 0,
  4931. "_skewY": 0,
  4932. "_localZOrder": 0,
  4933. "_globalZOrder": 0,
  4934. "_opacityModifyRGB": false,
  4935. "groupIndex": 0
  4936. },
  4937. {
  4938. "__type__": "cc.Sprite",
  4939. "_name": "",
  4940. "_objFlags": 0,
  4941. "node": {
  4942. "__id__": 159
  4943. },
  4944. "_enabled": true,
  4945. "_spriteFrame": {
  4946. "__uuid__": "be7a1cdc-6fd2-4e7b-8098-436030c3739e"
  4947. },
  4948. "_type": 2,
  4949. "_sizeMode": 0,
  4950. "_fillType": 0,
  4951. "_fillCenter": {
  4952. "__type__": "cc.Vec2",
  4953. "x": 0,
  4954. "y": 0
  4955. },
  4956. "_fillStart": 0,
  4957. "_fillRange": 0,
  4958. "_isTrimmedMode": true,
  4959. "_srcBlendFactor": 770,
  4960. "_dstBlendFactor": 771,
  4961. "_atlas": null
  4962. },
  4963. {
  4964. "__type__": "cc.PrefabInfo",
  4965. "root": {
  4966. "__id__": 1
  4967. },
  4968. "asset": {
  4969. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  4970. },
  4971. "fileId": "82sYtYym5DNrCPYsWSCkpW",
  4972. "sync": false
  4973. },
  4974. {
  4975. "__type__": "cc.Sprite",
  4976. "_name": "",
  4977. "_objFlags": 0,
  4978. "node": {
  4979. "__id__": 158
  4980. },
  4981. "_enabled": true,
  4982. "_spriteFrame": {
  4983. "__uuid__": "71774bee-cca6-486f-9e69-6ebdb594b944"
  4984. },
  4985. "_type": 0,
  4986. "_sizeMode": 0,
  4987. "_fillType": 0,
  4988. "_fillCenter": {
  4989. "__type__": "cc.Vec2",
  4990. "x": 0,
  4991. "y": 0
  4992. },
  4993. "_fillStart": 0,
  4994. "_fillRange": 0,
  4995. "_isTrimmedMode": true,
  4996. "_srcBlendFactor": 770,
  4997. "_dstBlendFactor": 771,
  4998. "_atlas": null
  4999. },
  5000. {
  5001. "__type__": "cc.ProgressBar",
  5002. "_name": "",
  5003. "_objFlags": 0,
  5004. "node": {
  5005. "__id__": 158
  5006. },
  5007. "_enabled": true,
  5008. "_N$totalLength": 100,
  5009. "_N$barSprite": {
  5010. "__id__": 160
  5011. },
  5012. "_N$mode": 0,
  5013. "_N$progress": 1,
  5014. "_N$reverse": false
  5015. },
  5016. {
  5017. "__type__": "cc.PrefabInfo",
  5018. "root": {
  5019. "__id__": 1
  5020. },
  5021. "asset": {
  5022. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5023. },
  5024. "fileId": "6c7x2F6UhMsYqAjfFIyabP",
  5025. "sync": false
  5026. },
  5027. {
  5028. "__type__": "cc.Node",
  5029. "_name": "progress_number",
  5030. "_objFlags": 0,
  5031. "_parent": {
  5032. "__id__": 121
  5033. },
  5034. "_children": [],
  5035. "_tag": -1,
  5036. "_active": true,
  5037. "_components": [
  5038. {
  5039. "__id__": 166
  5040. }
  5041. ],
  5042. "_prefab": {
  5043. "__id__": 167
  5044. },
  5045. "_id": "",
  5046. "_opacity": 255,
  5047. "_color": {
  5048. "__type__": "cc.Color",
  5049. "r": 88,
  5050. "g": 74,
  5051. "b": 71,
  5052. "a": 255
  5053. },
  5054. "_cascadeOpacityEnabled": true,
  5055. "_anchorPoint": {
  5056. "__type__": "cc.Vec2",
  5057. "x": 0.5,
  5058. "y": 0.5
  5059. },
  5060. "_contentSize": {
  5061. "__type__": "cc.Size",
  5062. "width": 118,
  5063. "height": 30
  5064. },
  5065. "_rotationX": 0,
  5066. "_rotationY": 0,
  5067. "_scaleX": 1,
  5068. "_scaleY": 1,
  5069. "_position": {
  5070. "__type__": "cc.Vec2",
  5071. "x": 0,
  5072. "y": -674
  5073. },
  5074. "_skewX": 0,
  5075. "_skewY": 0,
  5076. "_localZOrder": 0,
  5077. "_globalZOrder": 0,
  5078. "_opacityModifyRGB": false,
  5079. "groupIndex": 0
  5080. },
  5081. {
  5082. "__type__": "cc.RichText",
  5083. "_name": "",
  5084. "_objFlags": 0,
  5085. "node": {
  5086. "__id__": 165
  5087. },
  5088. "_enabled": true,
  5089. "_N$string": "<outline color=#ffffff width=2><b>祝福值:32</b></outline>",
  5090. "_N$horizontalAlign": 0,
  5091. "_N$fontSize": 22,
  5092. "_N$font": null,
  5093. "_N$maxWidth": 0,
  5094. "_N$lineHeight": 30,
  5095. "_N$imageAtlas": null,
  5096. "_N$handleTouchEvent": true
  5097. },
  5098. {
  5099. "__type__": "cc.PrefabInfo",
  5100. "root": {
  5101. "__id__": 1
  5102. },
  5103. "asset": {
  5104. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5105. },
  5106. "fileId": "44u2p+o2VPg5iQyEaPsFTq",
  5107. "sync": false
  5108. },
  5109. {
  5110. "__type__": "cc.Sprite",
  5111. "_name": "",
  5112. "_objFlags": 0,
  5113. "node": {
  5114. "__id__": 121
  5115. },
  5116. "_enabled": true,
  5117. "_spriteFrame": {
  5118. "__uuid__": "6b290219-1572-4361-92ce-26796fb1fbd7"
  5119. },
  5120. "_type": 0,
  5121. "_sizeMode": 0,
  5122. "_fillType": 0,
  5123. "_fillCenter": {
  5124. "__type__": "cc.Vec2",
  5125. "x": 0,
  5126. "y": 0
  5127. },
  5128. "_fillStart": 0,
  5129. "_fillRange": 0,
  5130. "_isTrimmedMode": true,
  5131. "_srcBlendFactor": 770,
  5132. "_dstBlendFactor": 771,
  5133. "_atlas": null
  5134. },
  5135. {
  5136. "__type__": "2c65dFRSRNImabhdvaGMnqB",
  5137. "_name": "",
  5138. "_objFlags": 0,
  5139. "node": {
  5140. "__id__": 121
  5141. },
  5142. "_enabled": true,
  5143. "levelBefor": {
  5144. "__id__": 130
  5145. },
  5146. "levelAfter": {
  5147. "__id__": 139
  5148. },
  5149. "nameBefor": {
  5150. "__id__": 135
  5151. },
  5152. "nameAfter": {
  5153. "__id__": 144
  5154. },
  5155. "role": {
  5156. "__id__": 148
  5157. },
  5158. "salaryLabel": {
  5159. "__id__": 156
  5160. },
  5161. "progressbar": {
  5162. "__id__": 163
  5163. },
  5164. "blessings": {
  5165. "__id__": 166
  5166. }
  5167. },
  5168. {
  5169. "__type__": "cc.PrefabInfo",
  5170. "root": {
  5171. "__id__": 1
  5172. },
  5173. "asset": {
  5174. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5175. },
  5176. "fileId": "bcNX7SFr9NeLnXRWBd7naA",
  5177. "sync": false
  5178. },
  5179. {
  5180. "__type__": "cc.Sprite",
  5181. "_name": "",
  5182. "_objFlags": 0,
  5183. "node": {
  5184. "__id__": 45
  5185. },
  5186. "_enabled": true,
  5187. "_spriteFrame": {
  5188. "__uuid__": "81b56d91-5bf0-432f-8ec6-e9e904ec3611"
  5189. },
  5190. "_type": 0,
  5191. "_sizeMode": 1,
  5192. "_fillType": 0,
  5193. "_fillCenter": {
  5194. "__type__": "cc.Vec2",
  5195. "x": 0,
  5196. "y": 0
  5197. },
  5198. "_fillStart": 0,
  5199. "_fillRange": 0,
  5200. "_isTrimmedMode": true,
  5201. "_srcBlendFactor": 770,
  5202. "_dstBlendFactor": 771,
  5203. "_atlas": null
  5204. },
  5205. {
  5206. "__type__": "cc.PrefabInfo",
  5207. "root": {
  5208. "__id__": 1
  5209. },
  5210. "asset": {
  5211. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5212. },
  5213. "fileId": "f6Qv8igIFMiJjeXQzrH5p8",
  5214. "sync": false
  5215. },
  5216. {
  5217. "__type__": "cc.Node",
  5218. "_name": "tips",
  5219. "_objFlags": 0,
  5220. "_parent": {
  5221. "__id__": 1
  5222. },
  5223. "_children": [
  5224. {
  5225. "__id__": 174
  5226. }
  5227. ],
  5228. "_tag": -1,
  5229. "_active": false,
  5230. "_components": [
  5231. {
  5232. "__id__": 177
  5233. },
  5234. {
  5235. "__id__": 178
  5236. }
  5237. ],
  5238. "_prefab": {
  5239. "__id__": 179
  5240. },
  5241. "_id": "",
  5242. "_opacity": 255,
  5243. "_color": {
  5244. "__type__": "cc.Color",
  5245. "r": 255,
  5246. "g": 255,
  5247. "b": 255,
  5248. "a": 255
  5249. },
  5250. "_cascadeOpacityEnabled": true,
  5251. "_anchorPoint": {
  5252. "__type__": "cc.Vec2",
  5253. "x": 0.5,
  5254. "y": 0.5
  5255. },
  5256. "_contentSize": {
  5257. "__type__": "cc.Size",
  5258. "width": 60,
  5259. "height": 116
  5260. },
  5261. "_rotationX": 0,
  5262. "_rotationY": 0,
  5263. "_scaleX": 1,
  5264. "_scaleY": 1,
  5265. "_position": {
  5266. "__type__": "cc.Vec2",
  5267. "x": 0,
  5268. "y": 0
  5269. },
  5270. "_skewX": 0,
  5271. "_skewY": 0,
  5272. "_localZOrder": 0,
  5273. "_globalZOrder": 0,
  5274. "_opacityModifyRGB": false,
  5275. "groupIndex": 0
  5276. },
  5277. {
  5278. "__type__": "cc.Node",
  5279. "_name": "New Label",
  5280. "_objFlags": 0,
  5281. "_parent": {
  5282. "__id__": 173
  5283. },
  5284. "_children": [],
  5285. "_tag": -1,
  5286. "_active": true,
  5287. "_components": [
  5288. {
  5289. "__id__": 175
  5290. }
  5291. ],
  5292. "_prefab": {
  5293. "__id__": 176
  5294. },
  5295. "_id": "",
  5296. "_opacity": 255,
  5297. "_color": {
  5298. "__type__": "cc.Color",
  5299. "r": 74,
  5300. "g": 65,
  5301. "b": 58,
  5302. "a": 255
  5303. },
  5304. "_cascadeOpacityEnabled": true,
  5305. "_anchorPoint": {
  5306. "__type__": "cc.Vec2",
  5307. "x": 0.5,
  5308. "y": 0.5
  5309. },
  5310. "_contentSize": {
  5311. "__type__": "cc.Size",
  5312. "width": 0,
  5313. "height": 40
  5314. },
  5315. "_rotationX": 0,
  5316. "_rotationY": 0,
  5317. "_scaleX": 1,
  5318. "_scaleY": 1,
  5319. "_position": {
  5320. "__type__": "cc.Vec2",
  5321. "x": 0,
  5322. "y": 0
  5323. },
  5324. "_skewX": 0,
  5325. "_skewY": 0,
  5326. "_localZOrder": 0,
  5327. "_globalZOrder": 0,
  5328. "_opacityModifyRGB": false,
  5329. "groupIndex": 0
  5330. },
  5331. {
  5332. "__type__": "cc.Label",
  5333. "_name": "",
  5334. "_objFlags": 0,
  5335. "node": {
  5336. "__id__": 174
  5337. },
  5338. "_enabled": true,
  5339. "_useOriginalSize": false,
  5340. "_actualFontSize": 30,
  5341. "_fontSize": 30,
  5342. "_lineHeight": 40,
  5343. "_enableWrapText": true,
  5344. "_N$file": null,
  5345. "_isSystemFontUsed": true,
  5346. "_spacingX": 0,
  5347. "_N$string": "",
  5348. "_N$horizontalAlign": 1,
  5349. "_N$verticalAlign": 1,
  5350. "_N$fontFamily": "Arial",
  5351. "_N$overflow": 0
  5352. },
  5353. {
  5354. "__type__": "cc.PrefabInfo",
  5355. "root": {
  5356. "__id__": 1
  5357. },
  5358. "asset": {
  5359. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5360. },
  5361. "fileId": "2cLOJcSsNE9JKxJCs2PMJB",
  5362. "sync": false
  5363. },
  5364. {
  5365. "__type__": "cc.Layout",
  5366. "_name": "",
  5367. "_objFlags": 0,
  5368. "node": {
  5369. "__id__": 173
  5370. },
  5371. "_enabled": true,
  5372. "_layoutSize": {
  5373. "__type__": "cc.Size",
  5374. "width": 60,
  5375. "height": 116
  5376. },
  5377. "_resize": 1,
  5378. "_N$layoutType": 1,
  5379. "_N$padding": 0,
  5380. "_N$cellSize": {
  5381. "__type__": "cc.Size",
  5382. "width": 40,
  5383. "height": 40
  5384. },
  5385. "_N$startAxis": 0,
  5386. "_N$paddingLeft": 30,
  5387. "_N$paddingRight": 30,
  5388. "_N$paddingTop": 0,
  5389. "_N$paddingBottom": 0,
  5390. "_N$spacingX": 0,
  5391. "_N$spacingY": 0,
  5392. "_N$verticalDirection": 1,
  5393. "_N$horizontalDirection": 0
  5394. },
  5395. {
  5396. "__type__": "cc.Sprite",
  5397. "_name": "",
  5398. "_objFlags": 0,
  5399. "node": {
  5400. "__id__": 173
  5401. },
  5402. "_enabled": true,
  5403. "_spriteFrame": {
  5404. "__uuid__": "9cf6fdf0-a8fc-4068-a5d1-7ae6e16b950c"
  5405. },
  5406. "_type": 0,
  5407. "_sizeMode": 0,
  5408. "_fillType": 0,
  5409. "_fillCenter": {
  5410. "__type__": "cc.Vec2",
  5411. "x": 0,
  5412. "y": 0
  5413. },
  5414. "_fillStart": 0,
  5415. "_fillRange": 0,
  5416. "_isTrimmedMode": true,
  5417. "_srcBlendFactor": 770,
  5418. "_dstBlendFactor": 771,
  5419. "_atlas": null
  5420. },
  5421. {
  5422. "__type__": "cc.PrefabInfo",
  5423. "root": {
  5424. "__id__": 1
  5425. },
  5426. "asset": {
  5427. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5428. },
  5429. "fileId": "adgp2T8l9CvapdEb80YJ8M",
  5430. "sync": false
  5431. },
  5432. {
  5433. "__type__": "87af2/eDIFGz4JxNErtedFh",
  5434. "_name": "",
  5435. "_objFlags": 0,
  5436. "node": {
  5437. "__id__": 1
  5438. },
  5439. "_enabled": true,
  5440. "titleText": {
  5441. "__id__": 48
  5442. },
  5443. "confirmText": {
  5444. "__id__": 5
  5445. },
  5446. "pageView": {
  5447. "__id__": 96
  5448. },
  5449. "levelUpNode": {
  5450. "__id__": 121
  5451. },
  5452. "top": {
  5453. "__id__": 45
  5454. },
  5455. "consume": {
  5456. "__id__": 17
  5457. },
  5458. "user": {
  5459. "__id__": 58
  5460. },
  5461. "myActor": [],
  5462. "changeJobSuccessPrefab": {
  5463. "__uuid__": "3ea4327a-f755-43a6-abcf-947458cb9605"
  5464. },
  5465. "levelUpSuccessPrefab": {
  5466. "__uuid__": "d6bd4401-da8b-4d66-9c15-497938759499"
  5467. },
  5468. "failPrefab": {
  5469. "__uuid__": "33f756c0-2638-46b1-9ea1-bcfbbb9f40dc"
  5470. },
  5471. "tipsNode": {
  5472. "__id__": 173
  5473. },
  5474. "tipsLabel": {
  5475. "__id__": 175
  5476. }
  5477. },
  5478. {
  5479. "__type__": "cc.Widget",
  5480. "_name": "",
  5481. "_objFlags": 0,
  5482. "node": {
  5483. "__id__": 1
  5484. },
  5485. "_enabled": true,
  5486. "alignMode": 0,
  5487. "_target": null,
  5488. "_alignFlags": 4,
  5489. "_left": 0,
  5490. "_right": 0,
  5491. "_top": 0,
  5492. "_bottom": 0,
  5493. "_verticalCenter": 0,
  5494. "_horizontalCenter": 0,
  5495. "_isAbsLeft": true,
  5496. "_isAbsRight": true,
  5497. "_isAbsTop": true,
  5498. "_isAbsBottom": true,
  5499. "_isAbsHorizontalCenter": true,
  5500. "_isAbsVerticalCenter": true,
  5501. "_originalWidth": 0,
  5502. "_originalHeight": 1334
  5503. },
  5504. {
  5505. "__type__": "cc.PrefabInfo",
  5506. "root": {
  5507. "__id__": 1
  5508. },
  5509. "asset": {
  5510. "__uuid__": "b8d60280-f597-474b-ad3c-04b5e260068b"
  5511. },
  5512. "fileId": "0bPcd8ohpBbYwVqKn7y1Sh",
  5513. "sync": false
  5514. }
  5515. ]