doubleRewards.prefab 97 KB

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