loading_view.prefab 104 KB

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