BindPhone.prefab 184 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false,
  12. "readonly": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "BindPhone",
  17. "_objFlags": 0,
  18. "_parent": null,
  19. "_children": [
  20. {
  21. "__id__": 2
  22. },
  23. {
  24. "__id__": 6
  25. },
  26. {
  27. "__id__": 23
  28. },
  29. {
  30. "__id__": 72
  31. },
  32. {
  33. "__id__": 115
  34. },
  35. {
  36. "__id__": 123
  37. },
  38. {
  39. "__id__": 173
  40. },
  41. {
  42. "__id__": 281
  43. }
  44. ],
  45. "_active": true,
  46. "_components": [
  47. {
  48. "__id__": 286
  49. }
  50. ],
  51. "_prefab": {
  52. "__id__": 287
  53. },
  54. "_opacity": 255,
  55. "_color": {
  56. "__type__": "cc.Color",
  57. "r": 255,
  58. "g": 255,
  59. "b": 255,
  60. "a": 255
  61. },
  62. "_contentSize": {
  63. "__type__": "cc.Size",
  64. "width": 0,
  65. "height": 0
  66. },
  67. "_anchorPoint": {
  68. "__type__": "cc.Vec2",
  69. "x": 0.5,
  70. "y": 0.5
  71. },
  72. "_trs": {
  73. "__type__": "TypedArray",
  74. "ctor": "Float64Array",
  75. "array": [
  76. 0,
  77. 0,
  78. 0,
  79. 0,
  80. 0,
  81. 0,
  82. 1,
  83. 1,
  84. 1,
  85. 1
  86. ]
  87. },
  88. "_eulerAngles": {
  89. "__type__": "cc.Vec3",
  90. "x": 0,
  91. "y": 0,
  92. "z": 0
  93. },
  94. "_skewX": 0,
  95. "_skewY": 0,
  96. "_is3DNode": false,
  97. "_groupIndex": 0,
  98. "groupIndex": 0,
  99. "_id": ""
  100. },
  101. {
  102. "__type__": "cc.Node",
  103. "_name": "NoClick",
  104. "_objFlags": 0,
  105. "_parent": {
  106. "__id__": 1
  107. },
  108. "_children": [],
  109. "_active": true,
  110. "_components": [
  111. {
  112. "__id__": 3
  113. },
  114. {
  115. "__id__": 4
  116. }
  117. ],
  118. "_prefab": {
  119. "__id__": 5
  120. },
  121. "_opacity": 150,
  122. "_color": {
  123. "__type__": "cc.Color",
  124. "r": 0,
  125. "g": 0,
  126. "b": 0,
  127. "a": 255
  128. },
  129. "_contentSize": {
  130. "__type__": "cc.Size",
  131. "width": 2280,
  132. "height": 1400
  133. },
  134. "_anchorPoint": {
  135. "__type__": "cc.Vec2",
  136. "x": 0.5,
  137. "y": 0.5
  138. },
  139. "_trs": {
  140. "__type__": "TypedArray",
  141. "ctor": "Float64Array",
  142. "array": [
  143. 0,
  144. 0,
  145. 0,
  146. 0,
  147. 0,
  148. 0,
  149. 1,
  150. 1,
  151. 1,
  152. 1
  153. ]
  154. },
  155. "_eulerAngles": {
  156. "__type__": "cc.Vec3",
  157. "x": 0,
  158. "y": 0,
  159. "z": 0
  160. },
  161. "_skewX": 0,
  162. "_skewY": 0,
  163. "_is3DNode": false,
  164. "_groupIndex": 0,
  165. "groupIndex": 0,
  166. "_id": ""
  167. },
  168. {
  169. "__type__": "cc.Sprite",
  170. "_name": "",
  171. "_objFlags": 0,
  172. "node": {
  173. "__id__": 2
  174. },
  175. "_enabled": true,
  176. "_materials": [
  177. {
  178. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  179. }
  180. ],
  181. "_srcBlendFactor": 770,
  182. "_dstBlendFactor": 771,
  183. "_spriteFrame": {
  184. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  185. },
  186. "_type": 0,
  187. "_sizeMode": 0,
  188. "_fillType": 0,
  189. "_fillCenter": {
  190. "__type__": "cc.Vec2",
  191. "x": 0,
  192. "y": 0
  193. },
  194. "_fillStart": 0,
  195. "_fillRange": 0,
  196. "_isTrimmedMode": true,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.Button",
  202. "_name": "",
  203. "_objFlags": 0,
  204. "node": {
  205. "__id__": 2
  206. },
  207. "_enabled": true,
  208. "_normalMaterial": null,
  209. "_grayMaterial": null,
  210. "duration": 0.1,
  211. "zoomScale": 1.2,
  212. "clickEvents": [],
  213. "_N$interactable": true,
  214. "_N$enableAutoGrayEffect": false,
  215. "_N$transition": 0,
  216. "transition": 0,
  217. "_N$normalColor": {
  218. "__type__": "cc.Color",
  219. "r": 214,
  220. "g": 214,
  221. "b": 214,
  222. "a": 255
  223. },
  224. "_N$pressedColor": {
  225. "__type__": "cc.Color",
  226. "r": 211,
  227. "g": 211,
  228. "b": 211,
  229. "a": 255
  230. },
  231. "pressedColor": {
  232. "__type__": "cc.Color",
  233. "r": 211,
  234. "g": 211,
  235. "b": 211,
  236. "a": 255
  237. },
  238. "_N$hoverColor": {
  239. "__type__": "cc.Color",
  240. "r": 255,
  241. "g": 255,
  242. "b": 255,
  243. "a": 255
  244. },
  245. "hoverColor": {
  246. "__type__": "cc.Color",
  247. "r": 255,
  248. "g": 255,
  249. "b": 255,
  250. "a": 255
  251. },
  252. "_N$disabledColor": {
  253. "__type__": "cc.Color",
  254. "r": 124,
  255. "g": 124,
  256. "b": 124,
  257. "a": 255
  258. },
  259. "_N$normalSprite": null,
  260. "_N$pressedSprite": null,
  261. "pressedSprite": null,
  262. "_N$hoverSprite": null,
  263. "hoverSprite": null,
  264. "_N$disabledSprite": null,
  265. "_N$target": {
  266. "__id__": 2
  267. },
  268. "_id": ""
  269. },
  270. {
  271. "__type__": "cc.PrefabInfo",
  272. "root": {
  273. "__id__": 1
  274. },
  275. "asset": {
  276. "__id__": 0
  277. },
  278. "fileId": "24abJML5tOM5feeGoEXV8d",
  279. "sync": false
  280. },
  281. {
  282. "__type__": "cc.Node",
  283. "_name": "BGM",
  284. "_objFlags": 0,
  285. "_parent": {
  286. "__id__": 1
  287. },
  288. "_children": [
  289. {
  290. "__id__": 7
  291. },
  292. {
  293. "__id__": 12
  294. },
  295. {
  296. "__id__": 15
  297. },
  298. {
  299. "__id__": 18
  300. }
  301. ],
  302. "_active": false,
  303. "_components": [
  304. {
  305. "__id__": 21
  306. }
  307. ],
  308. "_prefab": {
  309. "__id__": 22
  310. },
  311. "_opacity": 255,
  312. "_color": {
  313. "__type__": "cc.Color",
  314. "r": 255,
  315. "g": 255,
  316. "b": 255,
  317. "a": 255
  318. },
  319. "_contentSize": {
  320. "__type__": "cc.Size",
  321. "width": 917,
  322. "height": 557
  323. },
  324. "_anchorPoint": {
  325. "__type__": "cc.Vec2",
  326. "x": 0.5,
  327. "y": 0.5
  328. },
  329. "_trs": {
  330. "__type__": "TypedArray",
  331. "ctor": "Float64Array",
  332. "array": [
  333. 0,
  334. 0,
  335. 0,
  336. 0,
  337. 0,
  338. 0,
  339. 1,
  340. 1,
  341. 1,
  342. 1
  343. ]
  344. },
  345. "_eulerAngles": {
  346. "__type__": "cc.Vec3",
  347. "x": 0,
  348. "y": 0,
  349. "z": 0
  350. },
  351. "_skewX": 0,
  352. "_skewY": 0,
  353. "_is3DNode": false,
  354. "_groupIndex": 0,
  355. "groupIndex": 0,
  356. "_id": ""
  357. },
  358. {
  359. "__type__": "cc.Node",
  360. "_name": "BtCloseDlg",
  361. "_objFlags": 0,
  362. "_parent": {
  363. "__id__": 6
  364. },
  365. "_children": [],
  366. "_active": true,
  367. "_components": [
  368. {
  369. "__id__": 8
  370. },
  371. {
  372. "__id__": 9
  373. }
  374. ],
  375. "_prefab": {
  376. "__id__": 11
  377. },
  378. "_opacity": 255,
  379. "_color": {
  380. "__type__": "cc.Color",
  381. "r": 255,
  382. "g": 255,
  383. "b": 255,
  384. "a": 255
  385. },
  386. "_contentSize": {
  387. "__type__": "cc.Size",
  388. "width": 51,
  389. "height": 50
  390. },
  391. "_anchorPoint": {
  392. "__type__": "cc.Vec2",
  393. "x": 0.5,
  394. "y": 0.5
  395. },
  396. "_trs": {
  397. "__type__": "TypedArray",
  398. "ctor": "Float64Array",
  399. "array": [
  400. 425.512,
  401. 170,
  402. 0,
  403. 0,
  404. 0,
  405. 0,
  406. 1,
  407. 1,
  408. 1,
  409. 1
  410. ]
  411. },
  412. "_eulerAngles": {
  413. "__type__": "cc.Vec3",
  414. "x": 0,
  415. "y": 0,
  416. "z": 0
  417. },
  418. "_skewX": 0,
  419. "_skewY": 0,
  420. "_is3DNode": false,
  421. "_groupIndex": 0,
  422. "groupIndex": 0,
  423. "_id": ""
  424. },
  425. {
  426. "__type__": "cc.Sprite",
  427. "_name": "",
  428. "_objFlags": 0,
  429. "node": {
  430. "__id__": 7
  431. },
  432. "_enabled": true,
  433. "_materials": [
  434. {
  435. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  436. }
  437. ],
  438. "_srcBlendFactor": 770,
  439. "_dstBlendFactor": 771,
  440. "_spriteFrame": {
  441. "__uuid__": "a198d832-abf5-4b7d-9ef7-00975f5473a8"
  442. },
  443. "_type": 0,
  444. "_sizeMode": 1,
  445. "_fillType": 0,
  446. "_fillCenter": {
  447. "__type__": "cc.Vec2",
  448. "x": 0,
  449. "y": 0
  450. },
  451. "_fillStart": 0,
  452. "_fillRange": 0,
  453. "_isTrimmedMode": true,
  454. "_atlas": null,
  455. "_id": ""
  456. },
  457. {
  458. "__type__": "cc.Button",
  459. "_name": "",
  460. "_objFlags": 0,
  461. "node": {
  462. "__id__": 7
  463. },
  464. "_enabled": true,
  465. "_normalMaterial": null,
  466. "_grayMaterial": null,
  467. "duration": 0,
  468. "zoomScale": 1.2,
  469. "clickEvents": [
  470. {
  471. "__id__": 10
  472. }
  473. ],
  474. "_N$interactable": true,
  475. "_N$enableAutoGrayEffect": false,
  476. "_N$transition": 1,
  477. "transition": 1,
  478. "_N$normalColor": {
  479. "__type__": "cc.Color",
  480. "r": 255,
  481. "g": 255,
  482. "b": 255,
  483. "a": 255
  484. },
  485. "_N$pressedColor": {
  486. "__type__": "cc.Color",
  487. "r": 180,
  488. "g": 180,
  489. "b": 180,
  490. "a": 255
  491. },
  492. "pressedColor": {
  493. "__type__": "cc.Color",
  494. "r": 180,
  495. "g": 180,
  496. "b": 180,
  497. "a": 255
  498. },
  499. "_N$hoverColor": {
  500. "__type__": "cc.Color",
  501. "r": 255,
  502. "g": 255,
  503. "b": 255,
  504. "a": 255
  505. },
  506. "hoverColor": {
  507. "__type__": "cc.Color",
  508. "r": 255,
  509. "g": 255,
  510. "b": 255,
  511. "a": 255
  512. },
  513. "_N$disabledColor": {
  514. "__type__": "cc.Color",
  515. "r": 255,
  516. "g": 255,
  517. "b": 255,
  518. "a": 255
  519. },
  520. "_N$normalSprite": null,
  521. "_N$pressedSprite": null,
  522. "pressedSprite": null,
  523. "_N$hoverSprite": null,
  524. "hoverSprite": null,
  525. "_N$disabledSprite": null,
  526. "_N$target": {
  527. "__id__": 7
  528. },
  529. "_id": ""
  530. },
  531. {
  532. "__type__": "cc.ClickEvent",
  533. "target": {
  534. "__id__": 1
  535. },
  536. "component": "",
  537. "_componentId": "6073d6wDtBMibHWPorl7qEm",
  538. "handler": "HideView",
  539. "customEventData": ""
  540. },
  541. {
  542. "__type__": "cc.PrefabInfo",
  543. "root": {
  544. "__id__": 1
  545. },
  546. "asset": {
  547. "__id__": 0
  548. },
  549. "fileId": "7cllLtx7hEU5eF0tOKb7HM",
  550. "sync": false
  551. },
  552. {
  553. "__type__": "cc.Node",
  554. "_name": "BindBG",
  555. "_objFlags": 0,
  556. "_parent": {
  557. "__id__": 6
  558. },
  559. "_children": [],
  560. "_active": true,
  561. "_components": [
  562. {
  563. "__id__": 13
  564. }
  565. ],
  566. "_prefab": {
  567. "__id__": 14
  568. },
  569. "_opacity": 255,
  570. "_color": {
  571. "__type__": "cc.Color",
  572. "r": 255,
  573. "g": 255,
  574. "b": 255,
  575. "a": 255
  576. },
  577. "_contentSize": {
  578. "__type__": "cc.Size",
  579. "width": 750,
  580. "height": 126
  581. },
  582. "_anchorPoint": {
  583. "__type__": "cc.Vec2",
  584. "x": 0.5,
  585. "y": 0.5
  586. },
  587. "_trs": {
  588. "__type__": "TypedArray",
  589. "ctor": "Float64Array",
  590. "array": [
  591. 0,
  592. 154,
  593. 0,
  594. 0,
  595. 0,
  596. 0,
  597. 1,
  598. 1,
  599. 1,
  600. 1
  601. ]
  602. },
  603. "_eulerAngles": {
  604. "__type__": "cc.Vec3",
  605. "x": 0,
  606. "y": 0,
  607. "z": 0
  608. },
  609. "_skewX": 0,
  610. "_skewY": 0,
  611. "_is3DNode": false,
  612. "_groupIndex": 0,
  613. "groupIndex": 0,
  614. "_id": ""
  615. },
  616. {
  617. "__type__": "cc.Sprite",
  618. "_name": "",
  619. "_objFlags": 0,
  620. "node": {
  621. "__id__": 12
  622. },
  623. "_enabled": true,
  624. "_materials": [
  625. {
  626. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  627. }
  628. ],
  629. "_srcBlendFactor": 770,
  630. "_dstBlendFactor": 771,
  631. "_spriteFrame": {
  632. "__uuid__": "9c346d8d-f4bd-4448-a285-d30b27a9702d"
  633. },
  634. "_type": 0,
  635. "_sizeMode": 1,
  636. "_fillType": 0,
  637. "_fillCenter": {
  638. "__type__": "cc.Vec2",
  639. "x": 0,
  640. "y": 0
  641. },
  642. "_fillStart": 0,
  643. "_fillRange": 0,
  644. "_isTrimmedMode": true,
  645. "_atlas": null,
  646. "_id": ""
  647. },
  648. {
  649. "__type__": "cc.PrefabInfo",
  650. "root": {
  651. "__id__": 1
  652. },
  653. "asset": {
  654. "__id__": 0
  655. },
  656. "fileId": "d2Ii9PUjJN25bN8wkuiiJ4",
  657. "sync": false
  658. },
  659. {
  660. "__type__": "cc.Node",
  661. "_name": "Tip",
  662. "_objFlags": 0,
  663. "_parent": {
  664. "__id__": 6
  665. },
  666. "_children": [],
  667. "_active": true,
  668. "_components": [
  669. {
  670. "__id__": 16
  671. }
  672. ],
  673. "_prefab": {
  674. "__id__": 17
  675. },
  676. "_opacity": 255,
  677. "_color": {
  678. "__type__": "cc.Color",
  679. "r": 222,
  680. "g": 92,
  681. "b": 66,
  682. "a": 255
  683. },
  684. "_contentSize": {
  685. "__type__": "cc.Size",
  686. "width": 144,
  687. "height": 32.76
  688. },
  689. "_anchorPoint": {
  690. "__type__": "cc.Vec2",
  691. "x": 0.5,
  692. "y": 0.5
  693. },
  694. "_trs": {
  695. "__type__": "TypedArray",
  696. "ctor": "Float64Array",
  697. "array": [
  698. -9.2,
  699. 60.9,
  700. 0,
  701. 0,
  702. 0,
  703. 0,
  704. 1,
  705. 1,
  706. 1,
  707. 1
  708. ]
  709. },
  710. "_eulerAngles": {
  711. "__type__": "cc.Vec3",
  712. "x": 0,
  713. "y": 0,
  714. "z": 0
  715. },
  716. "_skewX": 0,
  717. "_skewY": 0,
  718. "_is3DNode": false,
  719. "_groupIndex": 0,
  720. "groupIndex": 0,
  721. "_id": ""
  722. },
  723. {
  724. "__type__": "cc.Label",
  725. "_name": "",
  726. "_objFlags": 0,
  727. "node": {
  728. "__id__": 15
  729. },
  730. "_enabled": true,
  731. "_materials": [
  732. {
  733. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  734. }
  735. ],
  736. "_srcBlendFactor": 770,
  737. "_dstBlendFactor": 771,
  738. "_string": "填写手机信息",
  739. "_N$string": "填写手机信息",
  740. "_fontSize": 24,
  741. "_lineHeight": 26,
  742. "_enableWrapText": true,
  743. "_N$file": {
  744. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  745. },
  746. "_isSystemFontUsed": false,
  747. "_spacingX": 0,
  748. "_batchAsBitmap": false,
  749. "_styleFlags": 0,
  750. "_underlineHeight": 0,
  751. "_N$horizontalAlign": 1,
  752. "_N$verticalAlign": 1,
  753. "_N$fontFamily": "Arial",
  754. "_N$overflow": 0,
  755. "_N$cacheMode": 0,
  756. "_id": ""
  757. },
  758. {
  759. "__type__": "cc.PrefabInfo",
  760. "root": {
  761. "__id__": 1
  762. },
  763. "asset": {
  764. "__id__": 0
  765. },
  766. "fileId": "19pDt83stNpKbWKIiQGC0z",
  767. "sync": false
  768. },
  769. {
  770. "__type__": "cc.Node",
  771. "_name": "Tip2",
  772. "_objFlags": 0,
  773. "_parent": {
  774. "__id__": 6
  775. },
  776. "_children": [],
  777. "_active": true,
  778. "_components": [
  779. {
  780. "__id__": 19
  781. }
  782. ],
  783. "_prefab": {
  784. "__id__": 20
  785. },
  786. "_opacity": 255,
  787. "_color": {
  788. "__type__": "cc.Color",
  789. "r": 222,
  790. "g": 92,
  791. "b": 66,
  792. "a": 255
  793. },
  794. "_contentSize": {
  795. "__type__": "cc.Size",
  796. "width": 336,
  797. "height": 58.76
  798. },
  799. "_anchorPoint": {
  800. "__type__": "cc.Vec2",
  801. "x": 0.5,
  802. "y": 0.5
  803. },
  804. "_trs": {
  805. "__type__": "TypedArray",
  806. "ctor": "Float64Array",
  807. "array": [
  808. 0,
  809. -164,
  810. 0,
  811. 0,
  812. 0,
  813. 0,
  814. 1,
  815. 1,
  816. 1,
  817. 1
  818. ]
  819. },
  820. "_eulerAngles": {
  821. "__type__": "cc.Vec3",
  822. "x": 0,
  823. "y": 0,
  824. "z": 0
  825. },
  826. "_skewX": 0,
  827. "_skewY": 0,
  828. "_is3DNode": false,
  829. "_groupIndex": 0,
  830. "groupIndex": 0,
  831. "_id": ""
  832. },
  833. {
  834. "__type__": "cc.Label",
  835. "_name": "",
  836. "_objFlags": 0,
  837. "node": {
  838. "__id__": 18
  839. },
  840. "_enabled": true,
  841. "_materials": [
  842. {
  843. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  844. }
  845. ],
  846. "_srcBlendFactor": 770,
  847. "_dstBlendFactor": 771,
  848. "_string": "您的账号尚未绑定手机,\n为了提供更好的服务请绑定手机",
  849. "_N$string": "您的账号尚未绑定手机,\n为了提供更好的服务请绑定手机",
  850. "_fontSize": 24,
  851. "_lineHeight": 26,
  852. "_enableWrapText": true,
  853. "_N$file": {
  854. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  855. },
  856. "_isSystemFontUsed": false,
  857. "_spacingX": 0,
  858. "_batchAsBitmap": false,
  859. "_styleFlags": 0,
  860. "_underlineHeight": 0,
  861. "_N$horizontalAlign": 1,
  862. "_N$verticalAlign": 1,
  863. "_N$fontFamily": "Arial",
  864. "_N$overflow": 0,
  865. "_N$cacheMode": 0,
  866. "_id": ""
  867. },
  868. {
  869. "__type__": "cc.PrefabInfo",
  870. "root": {
  871. "__id__": 1
  872. },
  873. "asset": {
  874. "__id__": 0
  875. },
  876. "fileId": "56OiCU6WxIlZl3Tqxustc1",
  877. "sync": false
  878. },
  879. {
  880. "__type__": "cc.Sprite",
  881. "_name": "",
  882. "_objFlags": 0,
  883. "node": {
  884. "__id__": 6
  885. },
  886. "_enabled": true,
  887. "_materials": [
  888. {
  889. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  890. }
  891. ],
  892. "_srcBlendFactor": 770,
  893. "_dstBlendFactor": 771,
  894. "_spriteFrame": {
  895. "__uuid__": "f1840760-206d-49fe-af98-b1e0e6232e06"
  896. },
  897. "_type": 1,
  898. "_sizeMode": 1,
  899. "_fillType": 0,
  900. "_fillCenter": {
  901. "__type__": "cc.Vec2",
  902. "x": 0,
  903. "y": 0
  904. },
  905. "_fillStart": 0,
  906. "_fillRange": 0,
  907. "_isTrimmedMode": true,
  908. "_atlas": null,
  909. "_id": ""
  910. },
  911. {
  912. "__type__": "cc.PrefabInfo",
  913. "root": {
  914. "__id__": 1
  915. },
  916. "asset": {
  917. "__id__": 0
  918. },
  919. "fileId": "2eZd7iLPlDv4to1y2MZvum",
  920. "sync": false
  921. },
  922. {
  923. "__type__": "cc.Node",
  924. "_name": "NdPhone",
  925. "_objFlags": 0,
  926. "_parent": {
  927. "__id__": 1
  928. },
  929. "_children": [
  930. {
  931. "__id__": 24
  932. },
  933. {
  934. "__id__": 42
  935. },
  936. {
  937. "__id__": 65
  938. }
  939. ],
  940. "_active": false,
  941. "_components": [
  942. {
  943. "__id__": 70
  944. }
  945. ],
  946. "_prefab": {
  947. "__id__": 71
  948. },
  949. "_opacity": 255,
  950. "_color": {
  951. "__type__": "cc.Color",
  952. "r": 255,
  953. "g": 255,
  954. "b": 255,
  955. "a": 255
  956. },
  957. "_contentSize": {
  958. "__type__": "cc.Size",
  959. "width": 520,
  960. "height": 347
  961. },
  962. "_anchorPoint": {
  963. "__type__": "cc.Vec2",
  964. "x": 0.5,
  965. "y": 0.5
  966. },
  967. "_trs": {
  968. "__type__": "TypedArray",
  969. "ctor": "Float64Array",
  970. "array": [
  971. 0,
  972. -85,
  973. 0,
  974. 0,
  975. 0,
  976. 0,
  977. 1,
  978. 1,
  979. 1,
  980. 1
  981. ]
  982. },
  983. "_eulerAngles": {
  984. "__type__": "cc.Vec3",
  985. "x": 0,
  986. "y": 0,
  987. "z": 0
  988. },
  989. "_skewX": 0,
  990. "_skewY": 0,
  991. "_is3DNode": false,
  992. "_groupIndex": 0,
  993. "groupIndex": 0,
  994. "_id": ""
  995. },
  996. {
  997. "__type__": "cc.Node",
  998. "_name": "LabPhone",
  999. "_objFlags": 0,
  1000. "_parent": {
  1001. "__id__": 23
  1002. },
  1003. "_children": [
  1004. {
  1005. "__id__": 25
  1006. },
  1007. {
  1008. "__id__": 28
  1009. }
  1010. ],
  1011. "_active": true,
  1012. "_components": [
  1013. {
  1014. "__id__": 40
  1015. }
  1016. ],
  1017. "_prefab": {
  1018. "__id__": 41
  1019. },
  1020. "_opacity": 255,
  1021. "_color": {
  1022. "__type__": "cc.Color",
  1023. "r": 189,
  1024. "g": 70,
  1025. "b": 52,
  1026. "a": 255
  1027. },
  1028. "_contentSize": {
  1029. "__type__": "cc.Size",
  1030. "width": 144,
  1031. "height": 40.32
  1032. },
  1033. "_anchorPoint": {
  1034. "__type__": "cc.Vec2",
  1035. "x": 1,
  1036. "y": 0.5
  1037. },
  1038. "_trs": {
  1039. "__type__": "TypedArray",
  1040. "ctor": "Float64Array",
  1041. "array": [
  1042. -195,
  1043. 72,
  1044. 0,
  1045. 0,
  1046. 0,
  1047. 0,
  1048. 1,
  1049. 1,
  1050. 1,
  1051. 1
  1052. ]
  1053. },
  1054. "_eulerAngles": {
  1055. "__type__": "cc.Vec3",
  1056. "x": 0,
  1057. "y": 0,
  1058. "z": 0
  1059. },
  1060. "_skewX": 0,
  1061. "_skewY": 0,
  1062. "_is3DNode": false,
  1063. "_groupIndex": 0,
  1064. "groupIndex": 0,
  1065. "_id": ""
  1066. },
  1067. {
  1068. "__type__": "cc.Node",
  1069. "_name": "BGInput",
  1070. "_objFlags": 0,
  1071. "_parent": {
  1072. "__id__": 24
  1073. },
  1074. "_children": [],
  1075. "_active": true,
  1076. "_components": [
  1077. {
  1078. "__id__": 26
  1079. }
  1080. ],
  1081. "_prefab": {
  1082. "__id__": 27
  1083. },
  1084. "_opacity": 255,
  1085. "_color": {
  1086. "__type__": "cc.Color",
  1087. "r": 255,
  1088. "g": 255,
  1089. "b": 255,
  1090. "a": 255
  1091. },
  1092. "_contentSize": {
  1093. "__type__": "cc.Size",
  1094. "width": 500,
  1095. "height": 52
  1096. },
  1097. "_anchorPoint": {
  1098. "__type__": "cc.Vec2",
  1099. "x": 0.5,
  1100. "y": 0.5
  1101. },
  1102. "_trs": {
  1103. "__type__": "TypedArray",
  1104. "ctor": "Float64Array",
  1105. "array": [
  1106. 266,
  1107. 0,
  1108. 0,
  1109. 0,
  1110. 0,
  1111. 0,
  1112. 1,
  1113. 1,
  1114. 1,
  1115. 1
  1116. ]
  1117. },
  1118. "_eulerAngles": {
  1119. "__type__": "cc.Vec3",
  1120. "x": 0,
  1121. "y": 0,
  1122. "z": 0
  1123. },
  1124. "_skewX": 0,
  1125. "_skewY": 0,
  1126. "_is3DNode": false,
  1127. "_groupIndex": 0,
  1128. "groupIndex": 0,
  1129. "_id": ""
  1130. },
  1131. {
  1132. "__type__": "cc.Sprite",
  1133. "_name": "",
  1134. "_objFlags": 0,
  1135. "node": {
  1136. "__id__": 25
  1137. },
  1138. "_enabled": true,
  1139. "_materials": [
  1140. {
  1141. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1142. }
  1143. ],
  1144. "_srcBlendFactor": 770,
  1145. "_dstBlendFactor": 771,
  1146. "_spriteFrame": {
  1147. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  1148. },
  1149. "_type": 1,
  1150. "_sizeMode": 0,
  1151. "_fillType": 0,
  1152. "_fillCenter": {
  1153. "__type__": "cc.Vec2",
  1154. "x": 0,
  1155. "y": 0
  1156. },
  1157. "_fillStart": 0,
  1158. "_fillRange": 0,
  1159. "_isTrimmedMode": true,
  1160. "_atlas": null,
  1161. "_id": ""
  1162. },
  1163. {
  1164. "__type__": "cc.PrefabInfo",
  1165. "root": {
  1166. "__id__": 1
  1167. },
  1168. "asset": {
  1169. "__id__": 0
  1170. },
  1171. "fileId": "a6M0A63UhJRqvwULXIoDj6",
  1172. "sync": false
  1173. },
  1174. {
  1175. "__type__": "cc.Node",
  1176. "_name": "EditBox",
  1177. "_objFlags": 0,
  1178. "_parent": {
  1179. "__id__": 24
  1180. },
  1181. "_children": [
  1182. {
  1183. "__id__": 29
  1184. },
  1185. {
  1186. "__id__": 32
  1187. },
  1188. {
  1189. "__id__": 35
  1190. }
  1191. ],
  1192. "_active": true,
  1193. "_components": [
  1194. {
  1195. "__id__": 38
  1196. }
  1197. ],
  1198. "_prefab": {
  1199. "__id__": 39
  1200. },
  1201. "_opacity": 255,
  1202. "_color": {
  1203. "__type__": "cc.Color",
  1204. "r": 189,
  1205. "g": 70,
  1206. "b": 52,
  1207. "a": 255
  1208. },
  1209. "_contentSize": {
  1210. "__type__": "cc.Size",
  1211. "width": 450,
  1212. "height": 45
  1213. },
  1214. "_anchorPoint": {
  1215. "__type__": "cc.Vec2",
  1216. "x": 0.5,
  1217. "y": 0.5
  1218. },
  1219. "_trs": {
  1220. "__type__": "TypedArray",
  1221. "ctor": "Float64Array",
  1222. "array": [
  1223. 251,
  1224. 0,
  1225. 0,
  1226. 0,
  1227. 0,
  1228. 0,
  1229. 1,
  1230. 1,
  1231. 1,
  1232. 1
  1233. ]
  1234. },
  1235. "_eulerAngles": {
  1236. "__type__": "cc.Vec3",
  1237. "x": 0,
  1238. "y": 0,
  1239. "z": 0
  1240. },
  1241. "_skewX": 0,
  1242. "_skewY": 0,
  1243. "_is3DNode": false,
  1244. "_groupIndex": 0,
  1245. "groupIndex": 0,
  1246. "_id": ""
  1247. },
  1248. {
  1249. "__type__": "cc.Node",
  1250. "_name": "BACKGROUND_SPRITE",
  1251. "_objFlags": 512,
  1252. "_parent": {
  1253. "__id__": 28
  1254. },
  1255. "_children": [],
  1256. "_active": true,
  1257. "_components": [
  1258. {
  1259. "__id__": 30
  1260. }
  1261. ],
  1262. "_prefab": {
  1263. "__id__": 31
  1264. },
  1265. "_opacity": 255,
  1266. "_color": {
  1267. "__type__": "cc.Color",
  1268. "r": 255,
  1269. "g": 255,
  1270. "b": 255,
  1271. "a": 255
  1272. },
  1273. "_contentSize": {
  1274. "__type__": "cc.Size",
  1275. "width": 450,
  1276. "height": 45
  1277. },
  1278. "_anchorPoint": {
  1279. "__type__": "cc.Vec2",
  1280. "x": 0.5,
  1281. "y": 0.5
  1282. },
  1283. "_trs": {
  1284. "__type__": "TypedArray",
  1285. "ctor": "Float64Array",
  1286. "array": [
  1287. 0,
  1288. 0,
  1289. 0,
  1290. 0,
  1291. 0,
  1292. 0,
  1293. 1,
  1294. 1,
  1295. 1,
  1296. 1
  1297. ]
  1298. },
  1299. "_eulerAngles": {
  1300. "__type__": "cc.Vec3",
  1301. "x": 0,
  1302. "y": 0,
  1303. "z": 0
  1304. },
  1305. "_skewX": 0,
  1306. "_skewY": 0,
  1307. "_is3DNode": false,
  1308. "_groupIndex": 0,
  1309. "groupIndex": 0,
  1310. "_id": ""
  1311. },
  1312. {
  1313. "__type__": "cc.Sprite",
  1314. "_name": "",
  1315. "_objFlags": 0,
  1316. "node": {
  1317. "__id__": 29
  1318. },
  1319. "_enabled": true,
  1320. "_materials": [
  1321. {
  1322. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1323. }
  1324. ],
  1325. "_srcBlendFactor": 770,
  1326. "_dstBlendFactor": 771,
  1327. "_spriteFrame": null,
  1328. "_type": 1,
  1329. "_sizeMode": 1,
  1330. "_fillType": 0,
  1331. "_fillCenter": {
  1332. "__type__": "cc.Vec2",
  1333. "x": 0,
  1334. "y": 0
  1335. },
  1336. "_fillStart": 0,
  1337. "_fillRange": 0,
  1338. "_isTrimmedMode": true,
  1339. "_atlas": null,
  1340. "_id": ""
  1341. },
  1342. {
  1343. "__type__": "cc.PrefabInfo",
  1344. "root": {
  1345. "__id__": 1
  1346. },
  1347. "asset": {
  1348. "__id__": 0
  1349. },
  1350. "fileId": "45AWdWymhI5JLF4rJnhch9",
  1351. "sync": false
  1352. },
  1353. {
  1354. "__type__": "cc.Node",
  1355. "_name": "TEXT_LABEL",
  1356. "_objFlags": 512,
  1357. "_parent": {
  1358. "__id__": 28
  1359. },
  1360. "_children": [],
  1361. "_active": false,
  1362. "_components": [
  1363. {
  1364. "__id__": 33
  1365. }
  1366. ],
  1367. "_prefab": {
  1368. "__id__": 34
  1369. },
  1370. "_opacity": 255,
  1371. "_color": {
  1372. "__type__": "cc.Color",
  1373. "r": 189,
  1374. "g": 70,
  1375. "b": 52,
  1376. "a": 255
  1377. },
  1378. "_contentSize": {
  1379. "__type__": "cc.Size",
  1380. "width": 450,
  1381. "height": 45
  1382. },
  1383. "_anchorPoint": {
  1384. "__type__": "cc.Vec2",
  1385. "x": 0.5,
  1386. "y": 0.5
  1387. },
  1388. "_trs": {
  1389. "__type__": "TypedArray",
  1390. "ctor": "Float64Array",
  1391. "array": [
  1392. 0,
  1393. 0,
  1394. 0,
  1395. 0,
  1396. 0,
  1397. 0,
  1398. 1,
  1399. 1,
  1400. 1,
  1401. 1
  1402. ]
  1403. },
  1404. "_eulerAngles": {
  1405. "__type__": "cc.Vec3",
  1406. "x": 0,
  1407. "y": 0,
  1408. "z": 0
  1409. },
  1410. "_skewX": 0,
  1411. "_skewY": 0,
  1412. "_is3DNode": false,
  1413. "_groupIndex": 0,
  1414. "groupIndex": 0,
  1415. "_id": ""
  1416. },
  1417. {
  1418. "__type__": "cc.Label",
  1419. "_name": "",
  1420. "_objFlags": 0,
  1421. "node": {
  1422. "__id__": 32
  1423. },
  1424. "_enabled": true,
  1425. "_materials": [
  1426. {
  1427. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1428. }
  1429. ],
  1430. "_srcBlendFactor": 770,
  1431. "_dstBlendFactor": 771,
  1432. "_string": "",
  1433. "_N$string": "",
  1434. "_fontSize": 22,
  1435. "_lineHeight": 24,
  1436. "_enableWrapText": false,
  1437. "_N$file": {
  1438. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1439. },
  1440. "_isSystemFontUsed": false,
  1441. "_spacingX": 0,
  1442. "_batchAsBitmap": false,
  1443. "_styleFlags": 0,
  1444. "_underlineHeight": 0,
  1445. "_N$horizontalAlign": 0,
  1446. "_N$verticalAlign": 1,
  1447. "_N$fontFamily": "Arial",
  1448. "_N$overflow": 1,
  1449. "_N$cacheMode": 0,
  1450. "_id": ""
  1451. },
  1452. {
  1453. "__type__": "cc.PrefabInfo",
  1454. "root": {
  1455. "__id__": 1
  1456. },
  1457. "asset": {
  1458. "__id__": 0
  1459. },
  1460. "fileId": "bevrXsc3RKiZvZP+Dw0Imo",
  1461. "sync": false
  1462. },
  1463. {
  1464. "__type__": "cc.Node",
  1465. "_name": "PLACEHOLDER_LABEL",
  1466. "_objFlags": 512,
  1467. "_parent": {
  1468. "__id__": 28
  1469. },
  1470. "_children": [],
  1471. "_active": true,
  1472. "_components": [
  1473. {
  1474. "__id__": 36
  1475. }
  1476. ],
  1477. "_prefab": {
  1478. "__id__": 37
  1479. },
  1480. "_opacity": 255,
  1481. "_color": {
  1482. "__type__": "cc.Color",
  1483. "r": 189,
  1484. "g": 70,
  1485. "b": 52,
  1486. "a": 255
  1487. },
  1488. "_contentSize": {
  1489. "__type__": "cc.Size",
  1490. "width": 450,
  1491. "height": 45
  1492. },
  1493. "_anchorPoint": {
  1494. "__type__": "cc.Vec2",
  1495. "x": 0.5,
  1496. "y": 0.5
  1497. },
  1498. "_trs": {
  1499. "__type__": "TypedArray",
  1500. "ctor": "Float64Array",
  1501. "array": [
  1502. 0,
  1503. 0,
  1504. 0,
  1505. 0,
  1506. 0,
  1507. 0,
  1508. 1,
  1509. 1,
  1510. 1,
  1511. 1
  1512. ]
  1513. },
  1514. "_eulerAngles": {
  1515. "__type__": "cc.Vec3",
  1516. "x": 0,
  1517. "y": 0,
  1518. "z": 0
  1519. },
  1520. "_skewX": 0,
  1521. "_skewY": 0,
  1522. "_is3DNode": false,
  1523. "_groupIndex": 0,
  1524. "groupIndex": 0,
  1525. "_id": ""
  1526. },
  1527. {
  1528. "__type__": "cc.Label",
  1529. "_name": "",
  1530. "_objFlags": 0,
  1531. "node": {
  1532. "__id__": 35
  1533. },
  1534. "_enabled": true,
  1535. "_materials": [
  1536. {
  1537. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1538. }
  1539. ],
  1540. "_srcBlendFactor": 770,
  1541. "_dstBlendFactor": 771,
  1542. "_string": "請輸入手機號",
  1543. "_N$string": "請輸入手機號",
  1544. "_fontSize": 22,
  1545. "_lineHeight": 24,
  1546. "_enableWrapText": false,
  1547. "_N$file": {
  1548. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1549. },
  1550. "_isSystemFontUsed": false,
  1551. "_spacingX": 0,
  1552. "_batchAsBitmap": false,
  1553. "_styleFlags": 0,
  1554. "_underlineHeight": 0,
  1555. "_N$horizontalAlign": 0,
  1556. "_N$verticalAlign": 1,
  1557. "_N$fontFamily": "Arial",
  1558. "_N$overflow": 1,
  1559. "_N$cacheMode": 0,
  1560. "_id": ""
  1561. },
  1562. {
  1563. "__type__": "cc.PrefabInfo",
  1564. "root": {
  1565. "__id__": 1
  1566. },
  1567. "asset": {
  1568. "__id__": 0
  1569. },
  1570. "fileId": "62YUdLN3NFtJq7PqV48Jn8",
  1571. "sync": false
  1572. },
  1573. {
  1574. "__type__": "cc.EditBox",
  1575. "_name": "",
  1576. "_objFlags": 0,
  1577. "node": {
  1578. "__id__": 28
  1579. },
  1580. "_enabled": true,
  1581. "_string": "",
  1582. "returnType": 0,
  1583. "maxLength": 11,
  1584. "_tabIndex": 0,
  1585. "editingDidBegan": [],
  1586. "textChanged": [],
  1587. "editingDidEnded": [],
  1588. "editingReturn": [],
  1589. "_N$textLabel": {
  1590. "__id__": 33
  1591. },
  1592. "_N$placeholderLabel": {
  1593. "__id__": 36
  1594. },
  1595. "_N$background": {
  1596. "__id__": 30
  1597. },
  1598. "_N$inputFlag": 5,
  1599. "_N$inputMode": 3,
  1600. "_N$stayOnTop": false,
  1601. "_id": ""
  1602. },
  1603. {
  1604. "__type__": "cc.PrefabInfo",
  1605. "root": {
  1606. "__id__": 1
  1607. },
  1608. "asset": {
  1609. "__id__": 0
  1610. },
  1611. "fileId": "4cf34tZLFIqK4P3B5Ww5E6",
  1612. "sync": false
  1613. },
  1614. {
  1615. "__type__": "cc.Label",
  1616. "_name": "",
  1617. "_objFlags": 0,
  1618. "node": {
  1619. "__id__": 24
  1620. },
  1621. "_enabled": true,
  1622. "_materials": [
  1623. {
  1624. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1625. }
  1626. ],
  1627. "_srcBlendFactor": 770,
  1628. "_dstBlendFactor": 771,
  1629. "_string": "手 機 號:",
  1630. "_N$string": "手 機 號:",
  1631. "_fontSize": 32,
  1632. "_lineHeight": 32,
  1633. "_enableWrapText": true,
  1634. "_N$file": {
  1635. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  1636. },
  1637. "_isSystemFontUsed": false,
  1638. "_spacingX": 0,
  1639. "_batchAsBitmap": false,
  1640. "_styleFlags": 0,
  1641. "_underlineHeight": 0,
  1642. "_N$horizontalAlign": 0,
  1643. "_N$verticalAlign": 0,
  1644. "_N$fontFamily": "Arial",
  1645. "_N$overflow": 0,
  1646. "_N$cacheMode": 0,
  1647. "_id": ""
  1648. },
  1649. {
  1650. "__type__": "cc.PrefabInfo",
  1651. "root": {
  1652. "__id__": 1
  1653. },
  1654. "asset": {
  1655. "__id__": 0
  1656. },
  1657. "fileId": "bcmpLdaxRHypLZPlfQWReN",
  1658. "sync": false
  1659. },
  1660. {
  1661. "__type__": "cc.Node",
  1662. "_name": "LabCode",
  1663. "_objFlags": 0,
  1664. "_parent": {
  1665. "__id__": 23
  1666. },
  1667. "_children": [
  1668. {
  1669. "__id__": 43
  1670. },
  1671. {
  1672. "__id__": 48
  1673. },
  1674. {
  1675. "__id__": 51
  1676. }
  1677. ],
  1678. "_active": true,
  1679. "_components": [
  1680. {
  1681. "__id__": 63
  1682. }
  1683. ],
  1684. "_prefab": {
  1685. "__id__": 64
  1686. },
  1687. "_opacity": 255,
  1688. "_color": {
  1689. "__type__": "cc.Color",
  1690. "r": 189,
  1691. "g": 70,
  1692. "b": 52,
  1693. "a": 255
  1694. },
  1695. "_contentSize": {
  1696. "__type__": "cc.Size",
  1697. "width": 144,
  1698. "height": 40.32
  1699. },
  1700. "_anchorPoint": {
  1701. "__type__": "cc.Vec2",
  1702. "x": 1,
  1703. "y": 0.5
  1704. },
  1705. "_trs": {
  1706. "__type__": "TypedArray",
  1707. "ctor": "Float64Array",
  1708. "array": [
  1709. -195,
  1710. -10,
  1711. 0,
  1712. 0,
  1713. 0,
  1714. 0,
  1715. 1,
  1716. 1,
  1717. 1,
  1718. 1
  1719. ]
  1720. },
  1721. "_eulerAngles": {
  1722. "__type__": "cc.Vec3",
  1723. "x": 0,
  1724. "y": 0,
  1725. "z": 0
  1726. },
  1727. "_skewX": 0,
  1728. "_skewY": 0,
  1729. "_is3DNode": false,
  1730. "_groupIndex": 0,
  1731. "groupIndex": 0,
  1732. "_id": ""
  1733. },
  1734. {
  1735. "__type__": "cc.Node",
  1736. "_name": "BtGetCode",
  1737. "_objFlags": 0,
  1738. "_parent": {
  1739. "__id__": 42
  1740. },
  1741. "_children": [],
  1742. "_active": true,
  1743. "_components": [
  1744. {
  1745. "__id__": 44
  1746. },
  1747. {
  1748. "__id__": 46
  1749. }
  1750. ],
  1751. "_prefab": {
  1752. "__id__": 47
  1753. },
  1754. "_opacity": 255,
  1755. "_color": {
  1756. "__type__": "cc.Color",
  1757. "r": 84,
  1758. "g": 177,
  1759. "b": 32,
  1760. "a": 255
  1761. },
  1762. "_contentSize": {
  1763. "__type__": "cc.Size",
  1764. "width": 125,
  1765. "height": 31.5
  1766. },
  1767. "_anchorPoint": {
  1768. "__type__": "cc.Vec2",
  1769. "x": 0.5,
  1770. "y": 0.5
  1771. },
  1772. "_trs": {
  1773. "__type__": "TypedArray",
  1774. "ctor": "Float64Array",
  1775. "array": [
  1776. 431,
  1777. 0,
  1778. 0,
  1779. 0,
  1780. 0,
  1781. 0,
  1782. 1,
  1783. 1,
  1784. 1,
  1785. 1
  1786. ]
  1787. },
  1788. "_eulerAngles": {
  1789. "__type__": "cc.Vec3",
  1790. "x": 0,
  1791. "y": 0,
  1792. "z": 0
  1793. },
  1794. "_skewX": 0,
  1795. "_skewY": 0,
  1796. "_is3DNode": false,
  1797. "_groupIndex": 0,
  1798. "groupIndex": 0,
  1799. "_id": ""
  1800. },
  1801. {
  1802. "__type__": "cc.Button",
  1803. "_name": "",
  1804. "_objFlags": 0,
  1805. "node": {
  1806. "__id__": 43
  1807. },
  1808. "_enabled": true,
  1809. "_normalMaterial": null,
  1810. "_grayMaterial": null,
  1811. "duration": 0,
  1812. "zoomScale": 1.2,
  1813. "clickEvents": [
  1814. {
  1815. "__id__": 45
  1816. }
  1817. ],
  1818. "_N$interactable": true,
  1819. "_N$enableAutoGrayEffect": false,
  1820. "_N$transition": 1,
  1821. "transition": 1,
  1822. "_N$normalColor": {
  1823. "__type__": "cc.Color",
  1824. "r": 84,
  1825. "g": 177,
  1826. "b": 32,
  1827. "a": 255
  1828. },
  1829. "_N$pressedColor": {
  1830. "__type__": "cc.Color",
  1831. "r": 180,
  1832. "g": 180,
  1833. "b": 180,
  1834. "a": 255
  1835. },
  1836. "pressedColor": {
  1837. "__type__": "cc.Color",
  1838. "r": 180,
  1839. "g": 180,
  1840. "b": 180,
  1841. "a": 255
  1842. },
  1843. "_N$hoverColor": {
  1844. "__type__": "cc.Color",
  1845. "r": 255,
  1846. "g": 255,
  1847. "b": 255,
  1848. "a": 255
  1849. },
  1850. "hoverColor": {
  1851. "__type__": "cc.Color",
  1852. "r": 255,
  1853. "g": 255,
  1854. "b": 255,
  1855. "a": 255
  1856. },
  1857. "_N$disabledColor": {
  1858. "__type__": "cc.Color",
  1859. "r": 124,
  1860. "g": 124,
  1861. "b": 124,
  1862. "a": 255
  1863. },
  1864. "_N$normalSprite": null,
  1865. "_N$pressedSprite": null,
  1866. "pressedSprite": null,
  1867. "_N$hoverSprite": null,
  1868. "hoverSprite": null,
  1869. "_N$disabledSprite": null,
  1870. "_N$target": {
  1871. "__id__": 43
  1872. },
  1873. "_id": ""
  1874. },
  1875. {
  1876. "__type__": "cc.ClickEvent",
  1877. "target": {
  1878. "__id__": 23
  1879. },
  1880. "component": "",
  1881. "_componentId": "cd27feRjGRCbLHYCZO0j/d3",
  1882. "handler": "GetVerificationCode",
  1883. "customEventData": ""
  1884. },
  1885. {
  1886. "__type__": "cc.Label",
  1887. "_name": "",
  1888. "_objFlags": 0,
  1889. "node": {
  1890. "__id__": 43
  1891. },
  1892. "_enabled": true,
  1893. "_materials": [
  1894. {
  1895. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1896. }
  1897. ],
  1898. "_srcBlendFactor": 770,
  1899. "_dstBlendFactor": 771,
  1900. "_string": "獲取驗證碼",
  1901. "_N$string": "獲取驗證碼",
  1902. "_fontSize": 25,
  1903. "_lineHeight": 25,
  1904. "_enableWrapText": true,
  1905. "_N$file": null,
  1906. "_isSystemFontUsed": true,
  1907. "_spacingX": 0,
  1908. "_batchAsBitmap": false,
  1909. "_styleFlags": 4,
  1910. "_underlineHeight": 0,
  1911. "_N$horizontalAlign": 0,
  1912. "_N$verticalAlign": 0,
  1913. "_N$fontFamily": "Arial",
  1914. "_N$overflow": 0,
  1915. "_N$cacheMode": 0,
  1916. "_id": ""
  1917. },
  1918. {
  1919. "__type__": "cc.PrefabInfo",
  1920. "root": {
  1921. "__id__": 1
  1922. },
  1923. "asset": {
  1924. "__id__": 0
  1925. },
  1926. "fileId": "58K4EM/DBIn4qR1CAJTDVl",
  1927. "sync": false
  1928. },
  1929. {
  1930. "__type__": "cc.Node",
  1931. "_name": "BGInput",
  1932. "_objFlags": 0,
  1933. "_parent": {
  1934. "__id__": 42
  1935. },
  1936. "_children": [],
  1937. "_active": true,
  1938. "_components": [
  1939. {
  1940. "__id__": 49
  1941. }
  1942. ],
  1943. "_prefab": {
  1944. "__id__": 50
  1945. },
  1946. "_opacity": 255,
  1947. "_color": {
  1948. "__type__": "cc.Color",
  1949. "r": 255,
  1950. "g": 255,
  1951. "b": 255,
  1952. "a": 255
  1953. },
  1954. "_contentSize": {
  1955. "__type__": "cc.Size",
  1956. "width": 310,
  1957. "height": 52
  1958. },
  1959. "_anchorPoint": {
  1960. "__type__": "cc.Vec2",
  1961. "x": 0.5,
  1962. "y": 0.5
  1963. },
  1964. "_trs": {
  1965. "__type__": "TypedArray",
  1966. "ctor": "Float64Array",
  1967. "array": [
  1968. 171,
  1969. 0,
  1970. 0,
  1971. 0,
  1972. 0,
  1973. 0,
  1974. 1,
  1975. 1,
  1976. 1,
  1977. 1
  1978. ]
  1979. },
  1980. "_eulerAngles": {
  1981. "__type__": "cc.Vec3",
  1982. "x": 0,
  1983. "y": 0,
  1984. "z": 0
  1985. },
  1986. "_skewX": 0,
  1987. "_skewY": 0,
  1988. "_is3DNode": false,
  1989. "_groupIndex": 0,
  1990. "groupIndex": 0,
  1991. "_id": ""
  1992. },
  1993. {
  1994. "__type__": "cc.Sprite",
  1995. "_name": "",
  1996. "_objFlags": 0,
  1997. "node": {
  1998. "__id__": 48
  1999. },
  2000. "_enabled": true,
  2001. "_materials": [
  2002. {
  2003. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2004. }
  2005. ],
  2006. "_srcBlendFactor": 770,
  2007. "_dstBlendFactor": 771,
  2008. "_spriteFrame": {
  2009. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  2010. },
  2011. "_type": 1,
  2012. "_sizeMode": 0,
  2013. "_fillType": 0,
  2014. "_fillCenter": {
  2015. "__type__": "cc.Vec2",
  2016. "x": 0,
  2017. "y": 0
  2018. },
  2019. "_fillStart": 0,
  2020. "_fillRange": 0,
  2021. "_isTrimmedMode": true,
  2022. "_atlas": null,
  2023. "_id": ""
  2024. },
  2025. {
  2026. "__type__": "cc.PrefabInfo",
  2027. "root": {
  2028. "__id__": 1
  2029. },
  2030. "asset": {
  2031. "__id__": 0
  2032. },
  2033. "fileId": "6fKzlZmAdOwa0D5t9enkcc",
  2034. "sync": false
  2035. },
  2036. {
  2037. "__type__": "cc.Node",
  2038. "_name": "EditBox",
  2039. "_objFlags": 0,
  2040. "_parent": {
  2041. "__id__": 42
  2042. },
  2043. "_children": [
  2044. {
  2045. "__id__": 52
  2046. },
  2047. {
  2048. "__id__": 55
  2049. },
  2050. {
  2051. "__id__": 58
  2052. }
  2053. ],
  2054. "_active": true,
  2055. "_components": [
  2056. {
  2057. "__id__": 61
  2058. }
  2059. ],
  2060. "_prefab": {
  2061. "__id__": 62
  2062. },
  2063. "_opacity": 255,
  2064. "_color": {
  2065. "__type__": "cc.Color",
  2066. "r": 189,
  2067. "g": 70,
  2068. "b": 52,
  2069. "a": 255
  2070. },
  2071. "_contentSize": {
  2072. "__type__": "cc.Size",
  2073. "width": 280,
  2074. "height": 45
  2075. },
  2076. "_anchorPoint": {
  2077. "__type__": "cc.Vec2",
  2078. "x": 0.5,
  2079. "y": 0.5
  2080. },
  2081. "_trs": {
  2082. "__type__": "TypedArray",
  2083. "ctor": "Float64Array",
  2084. "array": [
  2085. 166,
  2086. 0,
  2087. 0,
  2088. 0,
  2089. 0,
  2090. 0,
  2091. 1,
  2092. 1,
  2093. 1,
  2094. 1
  2095. ]
  2096. },
  2097. "_eulerAngles": {
  2098. "__type__": "cc.Vec3",
  2099. "x": 0,
  2100. "y": 0,
  2101. "z": 0
  2102. },
  2103. "_skewX": 0,
  2104. "_skewY": 0,
  2105. "_is3DNode": false,
  2106. "_groupIndex": 0,
  2107. "groupIndex": 0,
  2108. "_id": ""
  2109. },
  2110. {
  2111. "__type__": "cc.Node",
  2112. "_name": "BACKGROUND_SPRITE",
  2113. "_objFlags": 512,
  2114. "_parent": {
  2115. "__id__": 51
  2116. },
  2117. "_children": [],
  2118. "_active": true,
  2119. "_components": [
  2120. {
  2121. "__id__": 53
  2122. }
  2123. ],
  2124. "_prefab": {
  2125. "__id__": 54
  2126. },
  2127. "_opacity": 255,
  2128. "_color": {
  2129. "__type__": "cc.Color",
  2130. "r": 255,
  2131. "g": 255,
  2132. "b": 255,
  2133. "a": 255
  2134. },
  2135. "_contentSize": {
  2136. "__type__": "cc.Size",
  2137. "width": 280,
  2138. "height": 45
  2139. },
  2140. "_anchorPoint": {
  2141. "__type__": "cc.Vec2",
  2142. "x": 0.5,
  2143. "y": 0.5
  2144. },
  2145. "_trs": {
  2146. "__type__": "TypedArray",
  2147. "ctor": "Float64Array",
  2148. "array": [
  2149. 0,
  2150. 0,
  2151. 0,
  2152. 0,
  2153. 0,
  2154. 0,
  2155. 1,
  2156. 1,
  2157. 1,
  2158. 1
  2159. ]
  2160. },
  2161. "_eulerAngles": {
  2162. "__type__": "cc.Vec3",
  2163. "x": 0,
  2164. "y": 0,
  2165. "z": 0
  2166. },
  2167. "_skewX": 0,
  2168. "_skewY": 0,
  2169. "_is3DNode": false,
  2170. "_groupIndex": 0,
  2171. "groupIndex": 0,
  2172. "_id": ""
  2173. },
  2174. {
  2175. "__type__": "cc.Sprite",
  2176. "_name": "",
  2177. "_objFlags": 0,
  2178. "node": {
  2179. "__id__": 52
  2180. },
  2181. "_enabled": true,
  2182. "_materials": [
  2183. {
  2184. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2185. }
  2186. ],
  2187. "_srcBlendFactor": 770,
  2188. "_dstBlendFactor": 771,
  2189. "_spriteFrame": null,
  2190. "_type": 1,
  2191. "_sizeMode": 1,
  2192. "_fillType": 0,
  2193. "_fillCenter": {
  2194. "__type__": "cc.Vec2",
  2195. "x": 0,
  2196. "y": 0
  2197. },
  2198. "_fillStart": 0,
  2199. "_fillRange": 0,
  2200. "_isTrimmedMode": true,
  2201. "_atlas": null,
  2202. "_id": ""
  2203. },
  2204. {
  2205. "__type__": "cc.PrefabInfo",
  2206. "root": {
  2207. "__id__": 1
  2208. },
  2209. "asset": {
  2210. "__id__": 0
  2211. },
  2212. "fileId": "5bS2/9uz9FE5zqtGGVQD8+",
  2213. "sync": false
  2214. },
  2215. {
  2216. "__type__": "cc.Node",
  2217. "_name": "TEXT_LABEL",
  2218. "_objFlags": 512,
  2219. "_parent": {
  2220. "__id__": 51
  2221. },
  2222. "_children": [],
  2223. "_active": false,
  2224. "_components": [
  2225. {
  2226. "__id__": 56
  2227. }
  2228. ],
  2229. "_prefab": {
  2230. "__id__": 57
  2231. },
  2232. "_opacity": 255,
  2233. "_color": {
  2234. "__type__": "cc.Color",
  2235. "r": 189,
  2236. "g": 70,
  2237. "b": 52,
  2238. "a": 255
  2239. },
  2240. "_contentSize": {
  2241. "__type__": "cc.Size",
  2242. "width": 280,
  2243. "height": 45
  2244. },
  2245. "_anchorPoint": {
  2246. "__type__": "cc.Vec2",
  2247. "x": 0.5,
  2248. "y": 0.5
  2249. },
  2250. "_trs": {
  2251. "__type__": "TypedArray",
  2252. "ctor": "Float64Array",
  2253. "array": [
  2254. 0,
  2255. 0,
  2256. 0,
  2257. 0,
  2258. 0,
  2259. 0,
  2260. 1,
  2261. 1,
  2262. 1,
  2263. 1
  2264. ]
  2265. },
  2266. "_eulerAngles": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 0,
  2269. "y": 0,
  2270. "z": 0
  2271. },
  2272. "_skewX": 0,
  2273. "_skewY": 0,
  2274. "_is3DNode": false,
  2275. "_groupIndex": 0,
  2276. "groupIndex": 0,
  2277. "_id": ""
  2278. },
  2279. {
  2280. "__type__": "cc.Label",
  2281. "_name": "",
  2282. "_objFlags": 0,
  2283. "node": {
  2284. "__id__": 55
  2285. },
  2286. "_enabled": true,
  2287. "_materials": [
  2288. {
  2289. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2290. }
  2291. ],
  2292. "_srcBlendFactor": 770,
  2293. "_dstBlendFactor": 771,
  2294. "_string": "",
  2295. "_N$string": "",
  2296. "_fontSize": 22,
  2297. "_lineHeight": 24,
  2298. "_enableWrapText": false,
  2299. "_N$file": {
  2300. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2301. },
  2302. "_isSystemFontUsed": false,
  2303. "_spacingX": 0,
  2304. "_batchAsBitmap": false,
  2305. "_styleFlags": 0,
  2306. "_underlineHeight": 0,
  2307. "_N$horizontalAlign": 0,
  2308. "_N$verticalAlign": 1,
  2309. "_N$fontFamily": "Arial",
  2310. "_N$overflow": 1,
  2311. "_N$cacheMode": 0,
  2312. "_id": ""
  2313. },
  2314. {
  2315. "__type__": "cc.PrefabInfo",
  2316. "root": {
  2317. "__id__": 1
  2318. },
  2319. "asset": {
  2320. "__id__": 0
  2321. },
  2322. "fileId": "109ZQIkVVJCbxX5bv8cQA8",
  2323. "sync": false
  2324. },
  2325. {
  2326. "__type__": "cc.Node",
  2327. "_name": "PLACEHOLDER_LABEL",
  2328. "_objFlags": 512,
  2329. "_parent": {
  2330. "__id__": 51
  2331. },
  2332. "_children": [],
  2333. "_active": true,
  2334. "_components": [
  2335. {
  2336. "__id__": 59
  2337. }
  2338. ],
  2339. "_prefab": {
  2340. "__id__": 60
  2341. },
  2342. "_opacity": 255,
  2343. "_color": {
  2344. "__type__": "cc.Color",
  2345. "r": 189,
  2346. "g": 70,
  2347. "b": 52,
  2348. "a": 255
  2349. },
  2350. "_contentSize": {
  2351. "__type__": "cc.Size",
  2352. "width": 280,
  2353. "height": 45
  2354. },
  2355. "_anchorPoint": {
  2356. "__type__": "cc.Vec2",
  2357. "x": 0.5,
  2358. "y": 0.5
  2359. },
  2360. "_trs": {
  2361. "__type__": "TypedArray",
  2362. "ctor": "Float64Array",
  2363. "array": [
  2364. 0,
  2365. 0,
  2366. 0,
  2367. 0,
  2368. 0,
  2369. 0,
  2370. 1,
  2371. 1,
  2372. 1,
  2373. 1
  2374. ]
  2375. },
  2376. "_eulerAngles": {
  2377. "__type__": "cc.Vec3",
  2378. "x": 0,
  2379. "y": 0,
  2380. "z": 0
  2381. },
  2382. "_skewX": 0,
  2383. "_skewY": 0,
  2384. "_is3DNode": false,
  2385. "_groupIndex": 0,
  2386. "groupIndex": 0,
  2387. "_id": ""
  2388. },
  2389. {
  2390. "__type__": "cc.Label",
  2391. "_name": "",
  2392. "_objFlags": 0,
  2393. "node": {
  2394. "__id__": 58
  2395. },
  2396. "_enabled": true,
  2397. "_materials": [
  2398. {
  2399. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2400. }
  2401. ],
  2402. "_srcBlendFactor": 770,
  2403. "_dstBlendFactor": 771,
  2404. "_string": "請輸入驗證碼",
  2405. "_N$string": "請輸入驗證碼",
  2406. "_fontSize": 22,
  2407. "_lineHeight": 24,
  2408. "_enableWrapText": false,
  2409. "_N$file": {
  2410. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2411. },
  2412. "_isSystemFontUsed": false,
  2413. "_spacingX": 0,
  2414. "_batchAsBitmap": false,
  2415. "_styleFlags": 0,
  2416. "_underlineHeight": 0,
  2417. "_N$horizontalAlign": 0,
  2418. "_N$verticalAlign": 1,
  2419. "_N$fontFamily": "Arial",
  2420. "_N$overflow": 1,
  2421. "_N$cacheMode": 0,
  2422. "_id": ""
  2423. },
  2424. {
  2425. "__type__": "cc.PrefabInfo",
  2426. "root": {
  2427. "__id__": 1
  2428. },
  2429. "asset": {
  2430. "__id__": 0
  2431. },
  2432. "fileId": "2fjeWmpHdFaqDNZVdjUp64",
  2433. "sync": false
  2434. },
  2435. {
  2436. "__type__": "cc.EditBox",
  2437. "_name": "",
  2438. "_objFlags": 0,
  2439. "node": {
  2440. "__id__": 51
  2441. },
  2442. "_enabled": true,
  2443. "_string": "",
  2444. "returnType": 0,
  2445. "maxLength": 6,
  2446. "_tabIndex": 0,
  2447. "editingDidBegan": [],
  2448. "textChanged": [],
  2449. "editingDidEnded": [],
  2450. "editingReturn": [],
  2451. "_N$textLabel": {
  2452. "__id__": 56
  2453. },
  2454. "_N$placeholderLabel": {
  2455. "__id__": 59
  2456. },
  2457. "_N$background": {
  2458. "__id__": 53
  2459. },
  2460. "_N$inputFlag": 5,
  2461. "_N$inputMode": 2,
  2462. "_N$stayOnTop": false,
  2463. "_id": ""
  2464. },
  2465. {
  2466. "__type__": "cc.PrefabInfo",
  2467. "root": {
  2468. "__id__": 1
  2469. },
  2470. "asset": {
  2471. "__id__": 0
  2472. },
  2473. "fileId": "48UXc0W3JGW7c4XZfILBGA",
  2474. "sync": false
  2475. },
  2476. {
  2477. "__type__": "cc.Label",
  2478. "_name": "",
  2479. "_objFlags": 0,
  2480. "node": {
  2481. "__id__": 42
  2482. },
  2483. "_enabled": true,
  2484. "_materials": [
  2485. {
  2486. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2487. }
  2488. ],
  2489. "_srcBlendFactor": 770,
  2490. "_dstBlendFactor": 771,
  2491. "_string": "驗 證 碼:",
  2492. "_N$string": "驗 證 碼:",
  2493. "_fontSize": 32,
  2494. "_lineHeight": 32,
  2495. "_enableWrapText": true,
  2496. "_N$file": {
  2497. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  2498. },
  2499. "_isSystemFontUsed": false,
  2500. "_spacingX": 0,
  2501. "_batchAsBitmap": false,
  2502. "_styleFlags": 0,
  2503. "_underlineHeight": 0,
  2504. "_N$horizontalAlign": 0,
  2505. "_N$verticalAlign": 0,
  2506. "_N$fontFamily": "Arial",
  2507. "_N$overflow": 0,
  2508. "_N$cacheMode": 0,
  2509. "_id": ""
  2510. },
  2511. {
  2512. "__type__": "cc.PrefabInfo",
  2513. "root": {
  2514. "__id__": 1
  2515. },
  2516. "asset": {
  2517. "__id__": 0
  2518. },
  2519. "fileId": "e0tlRtHNFAl62IjFD4Yny0",
  2520. "sync": false
  2521. },
  2522. {
  2523. "__type__": "cc.Node",
  2524. "_name": "BtNext",
  2525. "_objFlags": 0,
  2526. "_parent": {
  2527. "__id__": 23
  2528. },
  2529. "_children": [],
  2530. "_active": true,
  2531. "_components": [
  2532. {
  2533. "__id__": 66
  2534. },
  2535. {
  2536. "__id__": 67
  2537. }
  2538. ],
  2539. "_prefab": {
  2540. "__id__": 69
  2541. },
  2542. "_opacity": 255,
  2543. "_color": {
  2544. "__type__": "cc.Color",
  2545. "r": 255,
  2546. "g": 255,
  2547. "b": 255,
  2548. "a": 255
  2549. },
  2550. "_contentSize": {
  2551. "__type__": "cc.Size",
  2552. "width": 242,
  2553. "height": 81
  2554. },
  2555. "_anchorPoint": {
  2556. "__type__": "cc.Vec2",
  2557. "x": 0.5,
  2558. "y": 0.5
  2559. },
  2560. "_trs": {
  2561. "__type__": "TypedArray",
  2562. "ctor": "Float64Array",
  2563. "array": [
  2564. 0,
  2565. -169,
  2566. 0,
  2567. 0,
  2568. 0,
  2569. 0,
  2570. 1,
  2571. 1,
  2572. 1,
  2573. 1
  2574. ]
  2575. },
  2576. "_eulerAngles": {
  2577. "__type__": "cc.Vec3",
  2578. "x": 0,
  2579. "y": 0,
  2580. "z": 0
  2581. },
  2582. "_skewX": 0,
  2583. "_skewY": 0,
  2584. "_is3DNode": false,
  2585. "_groupIndex": 0,
  2586. "groupIndex": 0,
  2587. "_id": ""
  2588. },
  2589. {
  2590. "__type__": "cc.Sprite",
  2591. "_name": "",
  2592. "_objFlags": 0,
  2593. "node": {
  2594. "__id__": 65
  2595. },
  2596. "_enabled": true,
  2597. "_materials": [
  2598. {
  2599. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2600. }
  2601. ],
  2602. "_srcBlendFactor": 770,
  2603. "_dstBlendFactor": 771,
  2604. "_spriteFrame": {
  2605. "__uuid__": "bc38dbd6-3305-4eb0-a8ae-3fc45bfb0896"
  2606. },
  2607. "_type": 0,
  2608. "_sizeMode": 1,
  2609. "_fillType": 0,
  2610. "_fillCenter": {
  2611. "__type__": "cc.Vec2",
  2612. "x": 0,
  2613. "y": 0
  2614. },
  2615. "_fillStart": 0,
  2616. "_fillRange": 0,
  2617. "_isTrimmedMode": true,
  2618. "_atlas": null,
  2619. "_id": ""
  2620. },
  2621. {
  2622. "__type__": "cc.Button",
  2623. "_name": "",
  2624. "_objFlags": 0,
  2625. "node": {
  2626. "__id__": 65
  2627. },
  2628. "_enabled": true,
  2629. "_normalMaterial": null,
  2630. "_grayMaterial": null,
  2631. "duration": 0.1,
  2632. "zoomScale": 1.2,
  2633. "clickEvents": [
  2634. {
  2635. "__id__": 68
  2636. }
  2637. ],
  2638. "_N$interactable": true,
  2639. "_N$enableAutoGrayEffect": false,
  2640. "_N$transition": 0,
  2641. "transition": 0,
  2642. "_N$normalColor": {
  2643. "__type__": "cc.Color",
  2644. "r": 214,
  2645. "g": 214,
  2646. "b": 214,
  2647. "a": 255
  2648. },
  2649. "_N$pressedColor": {
  2650. "__type__": "cc.Color",
  2651. "r": 211,
  2652. "g": 211,
  2653. "b": 211,
  2654. "a": 255
  2655. },
  2656. "pressedColor": {
  2657. "__type__": "cc.Color",
  2658. "r": 211,
  2659. "g": 211,
  2660. "b": 211,
  2661. "a": 255
  2662. },
  2663. "_N$hoverColor": {
  2664. "__type__": "cc.Color",
  2665. "r": 255,
  2666. "g": 255,
  2667. "b": 255,
  2668. "a": 255
  2669. },
  2670. "hoverColor": {
  2671. "__type__": "cc.Color",
  2672. "r": 255,
  2673. "g": 255,
  2674. "b": 255,
  2675. "a": 255
  2676. },
  2677. "_N$disabledColor": {
  2678. "__type__": "cc.Color",
  2679. "r": 124,
  2680. "g": 124,
  2681. "b": 124,
  2682. "a": 255
  2683. },
  2684. "_N$normalSprite": null,
  2685. "_N$pressedSprite": null,
  2686. "pressedSprite": null,
  2687. "_N$hoverSprite": null,
  2688. "hoverSprite": null,
  2689. "_N$disabledSprite": null,
  2690. "_N$target": {
  2691. "__id__": 65
  2692. },
  2693. "_id": ""
  2694. },
  2695. {
  2696. "__type__": "cc.ClickEvent",
  2697. "target": {
  2698. "__id__": 1
  2699. },
  2700. "component": "",
  2701. "_componentId": "6073d6wDtBMibHWPorl7qEm",
  2702. "handler": "OnClick_BtNext",
  2703. "customEventData": ""
  2704. },
  2705. {
  2706. "__type__": "cc.PrefabInfo",
  2707. "root": {
  2708. "__id__": 1
  2709. },
  2710. "asset": {
  2711. "__id__": 0
  2712. },
  2713. "fileId": "b9OdefaBxN8LXd9UI6MrLZ",
  2714. "sync": false
  2715. },
  2716. {
  2717. "__type__": "cd27feRjGRCbLHYCZO0j/d3",
  2718. "_name": "",
  2719. "_objFlags": 0,
  2720. "node": {
  2721. "__id__": 23
  2722. },
  2723. "_enabled": true,
  2724. "m_EdPhone": {
  2725. "__id__": 38
  2726. },
  2727. "m_EdCode": {
  2728. "__id__": 61
  2729. },
  2730. "m_BtGetCode": {
  2731. "__id__": 44
  2732. },
  2733. "_id": ""
  2734. },
  2735. {
  2736. "__type__": "cc.PrefabInfo",
  2737. "root": {
  2738. "__id__": 1
  2739. },
  2740. "asset": {
  2741. "__id__": 0
  2742. },
  2743. "fileId": "85nnymTNFHA7v1TCn/m+vX",
  2744. "sync": false
  2745. },
  2746. {
  2747. "__type__": "cc.Node",
  2748. "_name": "NdPsw",
  2749. "_objFlags": 0,
  2750. "_parent": {
  2751. "__id__": 1
  2752. },
  2753. "_children": [
  2754. {
  2755. "__id__": 73
  2756. },
  2757. {
  2758. "__id__": 91
  2759. },
  2760. {
  2761. "__id__": 109
  2762. }
  2763. ],
  2764. "_active": false,
  2765. "_components": [],
  2766. "_prefab": {
  2767. "__id__": 114
  2768. },
  2769. "_opacity": 255,
  2770. "_color": {
  2771. "__type__": "cc.Color",
  2772. "r": 255,
  2773. "g": 255,
  2774. "b": 255,
  2775. "a": 255
  2776. },
  2777. "_contentSize": {
  2778. "__type__": "cc.Size",
  2779. "width": 0,
  2780. "height": 0
  2781. },
  2782. "_anchorPoint": {
  2783. "__type__": "cc.Vec2",
  2784. "x": 0.5,
  2785. "y": 0.5
  2786. },
  2787. "_trs": {
  2788. "__type__": "TypedArray",
  2789. "ctor": "Float64Array",
  2790. "array": [
  2791. 0,
  2792. 0,
  2793. 0,
  2794. 0,
  2795. 0,
  2796. 0,
  2797. 1,
  2798. 1,
  2799. 1,
  2800. 1
  2801. ]
  2802. },
  2803. "_eulerAngles": {
  2804. "__type__": "cc.Vec3",
  2805. "x": 0,
  2806. "y": 0,
  2807. "z": 0
  2808. },
  2809. "_skewX": 0,
  2810. "_skewY": 0,
  2811. "_is3DNode": false,
  2812. "_groupIndex": 0,
  2813. "groupIndex": 0,
  2814. "_id": ""
  2815. },
  2816. {
  2817. "__type__": "cc.Node",
  2818. "_name": "LabPSW",
  2819. "_objFlags": 0,
  2820. "_parent": {
  2821. "__id__": 72
  2822. },
  2823. "_children": [
  2824. {
  2825. "__id__": 74
  2826. },
  2827. {
  2828. "__id__": 77
  2829. }
  2830. ],
  2831. "_active": true,
  2832. "_components": [
  2833. {
  2834. "__id__": 89
  2835. }
  2836. ],
  2837. "_prefab": {
  2838. "__id__": 90
  2839. },
  2840. "_opacity": 255,
  2841. "_color": {
  2842. "__type__": "cc.Color",
  2843. "r": 189,
  2844. "g": 70,
  2845. "b": 52,
  2846. "a": 255
  2847. },
  2848. "_contentSize": {
  2849. "__type__": "cc.Size",
  2850. "width": 144,
  2851. "height": 40.32
  2852. },
  2853. "_anchorPoint": {
  2854. "__type__": "cc.Vec2",
  2855. "x": 1,
  2856. "y": 0.5
  2857. },
  2858. "_trs": {
  2859. "__type__": "TypedArray",
  2860. "ctor": "Float64Array",
  2861. "array": [
  2862. -195,
  2863. -12.9,
  2864. 0,
  2865. 0,
  2866. 0,
  2867. 0,
  2868. 1,
  2869. 1,
  2870. 1,
  2871. 1
  2872. ]
  2873. },
  2874. "_eulerAngles": {
  2875. "__type__": "cc.Vec3",
  2876. "x": 0,
  2877. "y": 0,
  2878. "z": 0
  2879. },
  2880. "_skewX": 0,
  2881. "_skewY": 0,
  2882. "_is3DNode": false,
  2883. "_groupIndex": 0,
  2884. "groupIndex": 0,
  2885. "_id": ""
  2886. },
  2887. {
  2888. "__type__": "cc.Node",
  2889. "_name": "BGInput",
  2890. "_objFlags": 0,
  2891. "_parent": {
  2892. "__id__": 73
  2893. },
  2894. "_children": [],
  2895. "_active": true,
  2896. "_components": [
  2897. {
  2898. "__id__": 75
  2899. }
  2900. ],
  2901. "_prefab": {
  2902. "__id__": 76
  2903. },
  2904. "_opacity": 255,
  2905. "_color": {
  2906. "__type__": "cc.Color",
  2907. "r": 255,
  2908. "g": 255,
  2909. "b": 255,
  2910. "a": 255
  2911. },
  2912. "_contentSize": {
  2913. "__type__": "cc.Size",
  2914. "width": 500,
  2915. "height": 50
  2916. },
  2917. "_anchorPoint": {
  2918. "__type__": "cc.Vec2",
  2919. "x": 0.5,
  2920. "y": 0.5
  2921. },
  2922. "_trs": {
  2923. "__type__": "TypedArray",
  2924. "ctor": "Float64Array",
  2925. "array": [
  2926. 266,
  2927. 0,
  2928. 0,
  2929. 0,
  2930. 0,
  2931. 0,
  2932. 1,
  2933. 1,
  2934. 1,
  2935. 1
  2936. ]
  2937. },
  2938. "_eulerAngles": {
  2939. "__type__": "cc.Vec3",
  2940. "x": 0,
  2941. "y": 0,
  2942. "z": 0
  2943. },
  2944. "_skewX": 0,
  2945. "_skewY": 0,
  2946. "_is3DNode": false,
  2947. "_groupIndex": 0,
  2948. "groupIndex": 0,
  2949. "_id": ""
  2950. },
  2951. {
  2952. "__type__": "cc.Sprite",
  2953. "_name": "",
  2954. "_objFlags": 0,
  2955. "node": {
  2956. "__id__": 74
  2957. },
  2958. "_enabled": true,
  2959. "_materials": [
  2960. {
  2961. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2962. }
  2963. ],
  2964. "_srcBlendFactor": 770,
  2965. "_dstBlendFactor": 771,
  2966. "_spriteFrame": {
  2967. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  2968. },
  2969. "_type": 1,
  2970. "_sizeMode": 0,
  2971. "_fillType": 0,
  2972. "_fillCenter": {
  2973. "__type__": "cc.Vec2",
  2974. "x": 0,
  2975. "y": 0
  2976. },
  2977. "_fillStart": 0,
  2978. "_fillRange": 0,
  2979. "_isTrimmedMode": true,
  2980. "_atlas": null,
  2981. "_id": ""
  2982. },
  2983. {
  2984. "__type__": "cc.PrefabInfo",
  2985. "root": {
  2986. "__id__": 1
  2987. },
  2988. "asset": {
  2989. "__id__": 0
  2990. },
  2991. "fileId": "95JzQy0f9M54nFANbPTN5m",
  2992. "sync": false
  2993. },
  2994. {
  2995. "__type__": "cc.Node",
  2996. "_name": "EditBox",
  2997. "_objFlags": 0,
  2998. "_parent": {
  2999. "__id__": 73
  3000. },
  3001. "_children": [
  3002. {
  3003. "__id__": 78
  3004. },
  3005. {
  3006. "__id__": 81
  3007. },
  3008. {
  3009. "__id__": 84
  3010. }
  3011. ],
  3012. "_active": true,
  3013. "_components": [
  3014. {
  3015. "__id__": 87
  3016. }
  3017. ],
  3018. "_prefab": {
  3019. "__id__": 88
  3020. },
  3021. "_opacity": 255,
  3022. "_color": {
  3023. "__type__": "cc.Color",
  3024. "r": 255,
  3025. "g": 255,
  3026. "b": 255,
  3027. "a": 255
  3028. },
  3029. "_contentSize": {
  3030. "__type__": "cc.Size",
  3031. "width": 450,
  3032. "height": 45
  3033. },
  3034. "_anchorPoint": {
  3035. "__type__": "cc.Vec2",
  3036. "x": 0,
  3037. "y": 0.5
  3038. },
  3039. "_trs": {
  3040. "__type__": "TypedArray",
  3041. "ctor": "Float64Array",
  3042. "array": [
  3043. 30,
  3044. 0,
  3045. 0,
  3046. 0,
  3047. 0,
  3048. 0,
  3049. 1,
  3050. 1,
  3051. 1,
  3052. 1
  3053. ]
  3054. },
  3055. "_eulerAngles": {
  3056. "__type__": "cc.Vec3",
  3057. "x": 0,
  3058. "y": 0,
  3059. "z": 0
  3060. },
  3061. "_skewX": 0,
  3062. "_skewY": 0,
  3063. "_is3DNode": false,
  3064. "_groupIndex": 0,
  3065. "groupIndex": 0,
  3066. "_id": ""
  3067. },
  3068. {
  3069. "__type__": "cc.Node",
  3070. "_name": "BACKGROUND_SPRITE",
  3071. "_objFlags": 512,
  3072. "_parent": {
  3073. "__id__": 77
  3074. },
  3075. "_children": [],
  3076. "_active": true,
  3077. "_components": [
  3078. {
  3079. "__id__": 79
  3080. }
  3081. ],
  3082. "_prefab": {
  3083. "__id__": 80
  3084. },
  3085. "_opacity": 255,
  3086. "_color": {
  3087. "__type__": "cc.Color",
  3088. "r": 255,
  3089. "g": 255,
  3090. "b": 255,
  3091. "a": 255
  3092. },
  3093. "_contentSize": {
  3094. "__type__": "cc.Size",
  3095. "width": 450,
  3096. "height": 45
  3097. },
  3098. "_anchorPoint": {
  3099. "__type__": "cc.Vec2",
  3100. "x": 0,
  3101. "y": 0.5
  3102. },
  3103. "_trs": {
  3104. "__type__": "TypedArray",
  3105. "ctor": "Float64Array",
  3106. "array": [
  3107. 0,
  3108. 0,
  3109. 0,
  3110. 0,
  3111. 0,
  3112. 0,
  3113. 1,
  3114. 1,
  3115. 1,
  3116. 1
  3117. ]
  3118. },
  3119. "_eulerAngles": {
  3120. "__type__": "cc.Vec3",
  3121. "x": 0,
  3122. "y": 0,
  3123. "z": 0
  3124. },
  3125. "_skewX": 0,
  3126. "_skewY": 0,
  3127. "_is3DNode": false,
  3128. "_groupIndex": 0,
  3129. "groupIndex": 0,
  3130. "_id": ""
  3131. },
  3132. {
  3133. "__type__": "cc.Sprite",
  3134. "_name": "",
  3135. "_objFlags": 0,
  3136. "node": {
  3137. "__id__": 78
  3138. },
  3139. "_enabled": true,
  3140. "_materials": [
  3141. {
  3142. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3143. }
  3144. ],
  3145. "_srcBlendFactor": 770,
  3146. "_dstBlendFactor": 771,
  3147. "_spriteFrame": null,
  3148. "_type": 1,
  3149. "_sizeMode": 0,
  3150. "_fillType": 0,
  3151. "_fillCenter": {
  3152. "__type__": "cc.Vec2",
  3153. "x": 0,
  3154. "y": 0
  3155. },
  3156. "_fillStart": 0,
  3157. "_fillRange": 0,
  3158. "_isTrimmedMode": true,
  3159. "_atlas": null,
  3160. "_id": ""
  3161. },
  3162. {
  3163. "__type__": "cc.PrefabInfo",
  3164. "root": {
  3165. "__id__": 1
  3166. },
  3167. "asset": {
  3168. "__id__": 0
  3169. },
  3170. "fileId": "ccITOQ72NBibNRDBBHm7vL",
  3171. "sync": false
  3172. },
  3173. {
  3174. "__type__": "cc.Node",
  3175. "_name": "TEXT_LABEL",
  3176. "_objFlags": 512,
  3177. "_parent": {
  3178. "__id__": 77
  3179. },
  3180. "_children": [],
  3181. "_active": false,
  3182. "_components": [
  3183. {
  3184. "__id__": 82
  3185. }
  3186. ],
  3187. "_prefab": {
  3188. "__id__": 83
  3189. },
  3190. "_opacity": 255,
  3191. "_color": {
  3192. "__type__": "cc.Color",
  3193. "r": 189,
  3194. "g": 70,
  3195. "b": 52,
  3196. "a": 255
  3197. },
  3198. "_contentSize": {
  3199. "__type__": "cc.Size",
  3200. "width": 450,
  3201. "height": 45
  3202. },
  3203. "_anchorPoint": {
  3204. "__type__": "cc.Vec2",
  3205. "x": 0,
  3206. "y": 0.5
  3207. },
  3208. "_trs": {
  3209. "__type__": "TypedArray",
  3210. "ctor": "Float64Array",
  3211. "array": [
  3212. 0,
  3213. 0,
  3214. 0,
  3215. 0,
  3216. 0,
  3217. 0,
  3218. 1,
  3219. 1,
  3220. 1,
  3221. 1
  3222. ]
  3223. },
  3224. "_eulerAngles": {
  3225. "__type__": "cc.Vec3",
  3226. "x": 0,
  3227. "y": 0,
  3228. "z": 0
  3229. },
  3230. "_skewX": 0,
  3231. "_skewY": 0,
  3232. "_is3DNode": false,
  3233. "_groupIndex": 0,
  3234. "groupIndex": 0,
  3235. "_id": ""
  3236. },
  3237. {
  3238. "__type__": "cc.Label",
  3239. "_name": "",
  3240. "_objFlags": 0,
  3241. "node": {
  3242. "__id__": 81
  3243. },
  3244. "_enabled": true,
  3245. "_materials": [
  3246. {
  3247. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3248. }
  3249. ],
  3250. "_srcBlendFactor": 770,
  3251. "_dstBlendFactor": 771,
  3252. "_string": "",
  3253. "_N$string": "",
  3254. "_fontSize": 30,
  3255. "_lineHeight": 32,
  3256. "_enableWrapText": false,
  3257. "_N$file": {
  3258. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3259. },
  3260. "_isSystemFontUsed": false,
  3261. "_spacingX": 0,
  3262. "_batchAsBitmap": false,
  3263. "_styleFlags": 0,
  3264. "_underlineHeight": 0,
  3265. "_N$horizontalAlign": 0,
  3266. "_N$verticalAlign": 1,
  3267. "_N$fontFamily": "Arial",
  3268. "_N$overflow": 1,
  3269. "_N$cacheMode": 0,
  3270. "_id": ""
  3271. },
  3272. {
  3273. "__type__": "cc.PrefabInfo",
  3274. "root": {
  3275. "__id__": 1
  3276. },
  3277. "asset": {
  3278. "__id__": 0
  3279. },
  3280. "fileId": "a8d5IEYDxM14ueXS1Y2FQQ",
  3281. "sync": false
  3282. },
  3283. {
  3284. "__type__": "cc.Node",
  3285. "_name": "PLACEHOLDER_LABEL",
  3286. "_objFlags": 512,
  3287. "_parent": {
  3288. "__id__": 77
  3289. },
  3290. "_children": [],
  3291. "_active": true,
  3292. "_components": [
  3293. {
  3294. "__id__": 85
  3295. }
  3296. ],
  3297. "_prefab": {
  3298. "__id__": 86
  3299. },
  3300. "_opacity": 255,
  3301. "_color": {
  3302. "__type__": "cc.Color",
  3303. "r": 173,
  3304. "g": 71,
  3305. "b": 31,
  3306. "a": 255
  3307. },
  3308. "_contentSize": {
  3309. "__type__": "cc.Size",
  3310. "width": 450,
  3311. "height": 45
  3312. },
  3313. "_anchorPoint": {
  3314. "__type__": "cc.Vec2",
  3315. "x": 0,
  3316. "y": 0.5
  3317. },
  3318. "_trs": {
  3319. "__type__": "TypedArray",
  3320. "ctor": "Float64Array",
  3321. "array": [
  3322. 0,
  3323. 0,
  3324. 0,
  3325. 0,
  3326. 0,
  3327. 0,
  3328. 1,
  3329. 1,
  3330. 1,
  3331. 1
  3332. ]
  3333. },
  3334. "_eulerAngles": {
  3335. "__type__": "cc.Vec3",
  3336. "x": 0,
  3337. "y": 0,
  3338. "z": 0
  3339. },
  3340. "_skewX": 0,
  3341. "_skewY": 0,
  3342. "_is3DNode": false,
  3343. "_groupIndex": 0,
  3344. "groupIndex": 0,
  3345. "_id": ""
  3346. },
  3347. {
  3348. "__type__": "cc.Label",
  3349. "_name": "",
  3350. "_objFlags": 0,
  3351. "node": {
  3352. "__id__": 84
  3353. },
  3354. "_enabled": true,
  3355. "_materials": [
  3356. {
  3357. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3358. }
  3359. ],
  3360. "_srcBlendFactor": 770,
  3361. "_dstBlendFactor": 771,
  3362. "_string": " 請輸入密碼",
  3363. "_N$string": " 請輸入密碼",
  3364. "_fontSize": 30,
  3365. "_lineHeight": 32,
  3366. "_enableWrapText": false,
  3367. "_N$file": {
  3368. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3369. },
  3370. "_isSystemFontUsed": false,
  3371. "_spacingX": 0,
  3372. "_batchAsBitmap": false,
  3373. "_styleFlags": 0,
  3374. "_underlineHeight": 0,
  3375. "_N$horizontalAlign": 0,
  3376. "_N$verticalAlign": 1,
  3377. "_N$fontFamily": "Arial",
  3378. "_N$overflow": 1,
  3379. "_N$cacheMode": 0,
  3380. "_id": ""
  3381. },
  3382. {
  3383. "__type__": "cc.PrefabInfo",
  3384. "root": {
  3385. "__id__": 1
  3386. },
  3387. "asset": {
  3388. "__id__": 0
  3389. },
  3390. "fileId": "c53JO2/hJPK4f5e2ct83rR",
  3391. "sync": false
  3392. },
  3393. {
  3394. "__type__": "cc.EditBox",
  3395. "_name": "",
  3396. "_objFlags": 0,
  3397. "node": {
  3398. "__id__": 77
  3399. },
  3400. "_enabled": true,
  3401. "_string": "",
  3402. "returnType": 0,
  3403. "maxLength": 8,
  3404. "_tabIndex": 0,
  3405. "editingDidBegan": [],
  3406. "textChanged": [],
  3407. "editingDidEnded": [],
  3408. "editingReturn": [],
  3409. "_N$textLabel": {
  3410. "__id__": 82
  3411. },
  3412. "_N$placeholderLabel": {
  3413. "__id__": 85
  3414. },
  3415. "_N$background": {
  3416. "__id__": 79
  3417. },
  3418. "_N$inputFlag": 0,
  3419. "_N$inputMode": 2,
  3420. "_N$stayOnTop": false,
  3421. "_id": ""
  3422. },
  3423. {
  3424. "__type__": "cc.PrefabInfo",
  3425. "root": {
  3426. "__id__": 1
  3427. },
  3428. "asset": {
  3429. "__id__": 0
  3430. },
  3431. "fileId": "f9m7jl2XFJVK1T1E2jr0xs",
  3432. "sync": false
  3433. },
  3434. {
  3435. "__type__": "cc.Label",
  3436. "_name": "",
  3437. "_objFlags": 0,
  3438. "node": {
  3439. "__id__": 73
  3440. },
  3441. "_enabled": true,
  3442. "_materials": [
  3443. {
  3444. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3445. }
  3446. ],
  3447. "_srcBlendFactor": 770,
  3448. "_dstBlendFactor": 771,
  3449. "_string": "輸入密碼:",
  3450. "_N$string": "輸入密碼:",
  3451. "_fontSize": 32,
  3452. "_lineHeight": 32,
  3453. "_enableWrapText": true,
  3454. "_N$file": {
  3455. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3456. },
  3457. "_isSystemFontUsed": false,
  3458. "_spacingX": 0,
  3459. "_batchAsBitmap": false,
  3460. "_styleFlags": 0,
  3461. "_underlineHeight": 0,
  3462. "_N$horizontalAlign": 0,
  3463. "_N$verticalAlign": 0,
  3464. "_N$fontFamily": "Arial",
  3465. "_N$overflow": 0,
  3466. "_N$cacheMode": 0,
  3467. "_id": ""
  3468. },
  3469. {
  3470. "__type__": "cc.PrefabInfo",
  3471. "root": {
  3472. "__id__": 1
  3473. },
  3474. "asset": {
  3475. "__id__": 0
  3476. },
  3477. "fileId": "b1Iy4wbLNCsqw5YLU/51qb",
  3478. "sync": false
  3479. },
  3480. {
  3481. "__type__": "cc.Node",
  3482. "_name": "LabRPSW",
  3483. "_objFlags": 0,
  3484. "_parent": {
  3485. "__id__": 72
  3486. },
  3487. "_children": [
  3488. {
  3489. "__id__": 92
  3490. },
  3491. {
  3492. "__id__": 95
  3493. }
  3494. ],
  3495. "_active": true,
  3496. "_components": [
  3497. {
  3498. "__id__": 107
  3499. }
  3500. ],
  3501. "_prefab": {
  3502. "__id__": 108
  3503. },
  3504. "_opacity": 255,
  3505. "_color": {
  3506. "__type__": "cc.Color",
  3507. "r": 189,
  3508. "g": 70,
  3509. "b": 52,
  3510. "a": 255
  3511. },
  3512. "_contentSize": {
  3513. "__type__": "cc.Size",
  3514. "width": 144,
  3515. "height": 40.32
  3516. },
  3517. "_anchorPoint": {
  3518. "__type__": "cc.Vec2",
  3519. "x": 1,
  3520. "y": 0.5
  3521. },
  3522. "_trs": {
  3523. "__type__": "TypedArray",
  3524. "ctor": "Float64Array",
  3525. "array": [
  3526. -195,
  3527. -94,
  3528. 0,
  3529. 0,
  3530. 0,
  3531. 0,
  3532. 1,
  3533. 1,
  3534. 1,
  3535. 1
  3536. ]
  3537. },
  3538. "_eulerAngles": {
  3539. "__type__": "cc.Vec3",
  3540. "x": 0,
  3541. "y": 0,
  3542. "z": 0
  3543. },
  3544. "_skewX": 0,
  3545. "_skewY": 0,
  3546. "_is3DNode": false,
  3547. "_groupIndex": 0,
  3548. "groupIndex": 0,
  3549. "_id": ""
  3550. },
  3551. {
  3552. "__type__": "cc.Node",
  3553. "_name": "BGInput",
  3554. "_objFlags": 0,
  3555. "_parent": {
  3556. "__id__": 91
  3557. },
  3558. "_children": [],
  3559. "_active": true,
  3560. "_components": [
  3561. {
  3562. "__id__": 93
  3563. }
  3564. ],
  3565. "_prefab": {
  3566. "__id__": 94
  3567. },
  3568. "_opacity": 255,
  3569. "_color": {
  3570. "__type__": "cc.Color",
  3571. "r": 255,
  3572. "g": 255,
  3573. "b": 255,
  3574. "a": 255
  3575. },
  3576. "_contentSize": {
  3577. "__type__": "cc.Size",
  3578. "width": 500,
  3579. "height": 50
  3580. },
  3581. "_anchorPoint": {
  3582. "__type__": "cc.Vec2",
  3583. "x": 0.5,
  3584. "y": 0.5
  3585. },
  3586. "_trs": {
  3587. "__type__": "TypedArray",
  3588. "ctor": "Float64Array",
  3589. "array": [
  3590. 266,
  3591. 0,
  3592. 0,
  3593. 0,
  3594. 0,
  3595. 0,
  3596. 1,
  3597. 1,
  3598. 1,
  3599. 1
  3600. ]
  3601. },
  3602. "_eulerAngles": {
  3603. "__type__": "cc.Vec3",
  3604. "x": 0,
  3605. "y": 0,
  3606. "z": 0
  3607. },
  3608. "_skewX": 0,
  3609. "_skewY": 0,
  3610. "_is3DNode": false,
  3611. "_groupIndex": 0,
  3612. "groupIndex": 0,
  3613. "_id": ""
  3614. },
  3615. {
  3616. "__type__": "cc.Sprite",
  3617. "_name": "",
  3618. "_objFlags": 0,
  3619. "node": {
  3620. "__id__": 92
  3621. },
  3622. "_enabled": true,
  3623. "_materials": [
  3624. {
  3625. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3626. }
  3627. ],
  3628. "_srcBlendFactor": 770,
  3629. "_dstBlendFactor": 771,
  3630. "_spriteFrame": {
  3631. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  3632. },
  3633. "_type": 1,
  3634. "_sizeMode": 0,
  3635. "_fillType": 0,
  3636. "_fillCenter": {
  3637. "__type__": "cc.Vec2",
  3638. "x": 0,
  3639. "y": 0
  3640. },
  3641. "_fillStart": 0,
  3642. "_fillRange": 0,
  3643. "_isTrimmedMode": true,
  3644. "_atlas": null,
  3645. "_id": ""
  3646. },
  3647. {
  3648. "__type__": "cc.PrefabInfo",
  3649. "root": {
  3650. "__id__": 1
  3651. },
  3652. "asset": {
  3653. "__id__": 0
  3654. },
  3655. "fileId": "8aZoS1V2pKvqywjfurenGb",
  3656. "sync": false
  3657. },
  3658. {
  3659. "__type__": "cc.Node",
  3660. "_name": "EditBox",
  3661. "_objFlags": 0,
  3662. "_parent": {
  3663. "__id__": 91
  3664. },
  3665. "_children": [
  3666. {
  3667. "__id__": 96
  3668. },
  3669. {
  3670. "__id__": 99
  3671. },
  3672. {
  3673. "__id__": 102
  3674. }
  3675. ],
  3676. "_active": true,
  3677. "_components": [
  3678. {
  3679. "__id__": 105
  3680. }
  3681. ],
  3682. "_prefab": {
  3683. "__id__": 106
  3684. },
  3685. "_opacity": 255,
  3686. "_color": {
  3687. "__type__": "cc.Color",
  3688. "r": 255,
  3689. "g": 255,
  3690. "b": 255,
  3691. "a": 255
  3692. },
  3693. "_contentSize": {
  3694. "__type__": "cc.Size",
  3695. "width": 450,
  3696. "height": 45
  3697. },
  3698. "_anchorPoint": {
  3699. "__type__": "cc.Vec2",
  3700. "x": 0,
  3701. "y": 0.5
  3702. },
  3703. "_trs": {
  3704. "__type__": "TypedArray",
  3705. "ctor": "Float64Array",
  3706. "array": [
  3707. 30,
  3708. 0,
  3709. 0,
  3710. 0,
  3711. 0,
  3712. 0,
  3713. 1,
  3714. 1,
  3715. 1,
  3716. 1
  3717. ]
  3718. },
  3719. "_eulerAngles": {
  3720. "__type__": "cc.Vec3",
  3721. "x": 0,
  3722. "y": 0,
  3723. "z": 0
  3724. },
  3725. "_skewX": 0,
  3726. "_skewY": 0,
  3727. "_is3DNode": false,
  3728. "_groupIndex": 0,
  3729. "groupIndex": 0,
  3730. "_id": ""
  3731. },
  3732. {
  3733. "__type__": "cc.Node",
  3734. "_name": "BACKGROUND_SPRITE",
  3735. "_objFlags": 512,
  3736. "_parent": {
  3737. "__id__": 95
  3738. },
  3739. "_children": [],
  3740. "_active": true,
  3741. "_components": [
  3742. {
  3743. "__id__": 97
  3744. }
  3745. ],
  3746. "_prefab": {
  3747. "__id__": 98
  3748. },
  3749. "_opacity": 255,
  3750. "_color": {
  3751. "__type__": "cc.Color",
  3752. "r": 255,
  3753. "g": 255,
  3754. "b": 255,
  3755. "a": 255
  3756. },
  3757. "_contentSize": {
  3758. "__type__": "cc.Size",
  3759. "width": 450,
  3760. "height": 45
  3761. },
  3762. "_anchorPoint": {
  3763. "__type__": "cc.Vec2",
  3764. "x": 0,
  3765. "y": 0.5
  3766. },
  3767. "_trs": {
  3768. "__type__": "TypedArray",
  3769. "ctor": "Float64Array",
  3770. "array": [
  3771. 0,
  3772. 0,
  3773. 0,
  3774. 0,
  3775. 0,
  3776. 0,
  3777. 1,
  3778. 1,
  3779. 1,
  3780. 1
  3781. ]
  3782. },
  3783. "_eulerAngles": {
  3784. "__type__": "cc.Vec3",
  3785. "x": 0,
  3786. "y": 0,
  3787. "z": 0
  3788. },
  3789. "_skewX": 0,
  3790. "_skewY": 0,
  3791. "_is3DNode": false,
  3792. "_groupIndex": 0,
  3793. "groupIndex": 0,
  3794. "_id": ""
  3795. },
  3796. {
  3797. "__type__": "cc.Sprite",
  3798. "_name": "",
  3799. "_objFlags": 0,
  3800. "node": {
  3801. "__id__": 96
  3802. },
  3803. "_enabled": true,
  3804. "_materials": [
  3805. {
  3806. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3807. }
  3808. ],
  3809. "_srcBlendFactor": 770,
  3810. "_dstBlendFactor": 771,
  3811. "_spriteFrame": null,
  3812. "_type": 1,
  3813. "_sizeMode": 0,
  3814. "_fillType": 0,
  3815. "_fillCenter": {
  3816. "__type__": "cc.Vec2",
  3817. "x": 0,
  3818. "y": 0
  3819. },
  3820. "_fillStart": 0,
  3821. "_fillRange": 0,
  3822. "_isTrimmedMode": true,
  3823. "_atlas": null,
  3824. "_id": ""
  3825. },
  3826. {
  3827. "__type__": "cc.PrefabInfo",
  3828. "root": {
  3829. "__id__": 1
  3830. },
  3831. "asset": {
  3832. "__id__": 0
  3833. },
  3834. "fileId": "550EEiSYlDYamPTohBw+nw",
  3835. "sync": false
  3836. },
  3837. {
  3838. "__type__": "cc.Node",
  3839. "_name": "TEXT_LABEL",
  3840. "_objFlags": 512,
  3841. "_parent": {
  3842. "__id__": 95
  3843. },
  3844. "_children": [],
  3845. "_active": false,
  3846. "_components": [
  3847. {
  3848. "__id__": 100
  3849. }
  3850. ],
  3851. "_prefab": {
  3852. "__id__": 101
  3853. },
  3854. "_opacity": 255,
  3855. "_color": {
  3856. "__type__": "cc.Color",
  3857. "r": 189,
  3858. "g": 70,
  3859. "b": 52,
  3860. "a": 255
  3861. },
  3862. "_contentSize": {
  3863. "__type__": "cc.Size",
  3864. "width": 450,
  3865. "height": 45
  3866. },
  3867. "_anchorPoint": {
  3868. "__type__": "cc.Vec2",
  3869. "x": 0,
  3870. "y": 0.5
  3871. },
  3872. "_trs": {
  3873. "__type__": "TypedArray",
  3874. "ctor": "Float64Array",
  3875. "array": [
  3876. 0,
  3877. 0,
  3878. 0,
  3879. 0,
  3880. 0,
  3881. 0,
  3882. 1,
  3883. 1,
  3884. 1,
  3885. 1
  3886. ]
  3887. },
  3888. "_eulerAngles": {
  3889. "__type__": "cc.Vec3",
  3890. "x": 0,
  3891. "y": 0,
  3892. "z": 0
  3893. },
  3894. "_skewX": 0,
  3895. "_skewY": 0,
  3896. "_is3DNode": false,
  3897. "_groupIndex": 0,
  3898. "groupIndex": 0,
  3899. "_id": ""
  3900. },
  3901. {
  3902. "__type__": "cc.Label",
  3903. "_name": "",
  3904. "_objFlags": 0,
  3905. "node": {
  3906. "__id__": 99
  3907. },
  3908. "_enabled": true,
  3909. "_materials": [
  3910. {
  3911. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3912. }
  3913. ],
  3914. "_srcBlendFactor": 770,
  3915. "_dstBlendFactor": 771,
  3916. "_string": "",
  3917. "_N$string": "",
  3918. "_fontSize": 30,
  3919. "_lineHeight": 32,
  3920. "_enableWrapText": false,
  3921. "_N$file": {
  3922. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  3923. },
  3924. "_isSystemFontUsed": false,
  3925. "_spacingX": 0,
  3926. "_batchAsBitmap": false,
  3927. "_styleFlags": 0,
  3928. "_underlineHeight": 0,
  3929. "_N$horizontalAlign": 0,
  3930. "_N$verticalAlign": 1,
  3931. "_N$fontFamily": "Arial",
  3932. "_N$overflow": 1,
  3933. "_N$cacheMode": 0,
  3934. "_id": ""
  3935. },
  3936. {
  3937. "__type__": "cc.PrefabInfo",
  3938. "root": {
  3939. "__id__": 1
  3940. },
  3941. "asset": {
  3942. "__id__": 0
  3943. },
  3944. "fileId": "41BB4TCn1NeJY2hIC+pexK",
  3945. "sync": false
  3946. },
  3947. {
  3948. "__type__": "cc.Node",
  3949. "_name": "PLACEHOLDER_LABEL",
  3950. "_objFlags": 512,
  3951. "_parent": {
  3952. "__id__": 95
  3953. },
  3954. "_children": [],
  3955. "_active": true,
  3956. "_components": [
  3957. {
  3958. "__id__": 103
  3959. }
  3960. ],
  3961. "_prefab": {
  3962. "__id__": 104
  3963. },
  3964. "_opacity": 255,
  3965. "_color": {
  3966. "__type__": "cc.Color",
  3967. "r": 173,
  3968. "g": 71,
  3969. "b": 31,
  3970. "a": 255
  3971. },
  3972. "_contentSize": {
  3973. "__type__": "cc.Size",
  3974. "width": 450,
  3975. "height": 45
  3976. },
  3977. "_anchorPoint": {
  3978. "__type__": "cc.Vec2",
  3979. "x": 0,
  3980. "y": 0.5
  3981. },
  3982. "_trs": {
  3983. "__type__": "TypedArray",
  3984. "ctor": "Float64Array",
  3985. "array": [
  3986. 0,
  3987. 0,
  3988. 0,
  3989. 0,
  3990. 0,
  3991. 0,
  3992. 1,
  3993. 1,
  3994. 1,
  3995. 1
  3996. ]
  3997. },
  3998. "_eulerAngles": {
  3999. "__type__": "cc.Vec3",
  4000. "x": 0,
  4001. "y": 0,
  4002. "z": 0
  4003. },
  4004. "_skewX": 0,
  4005. "_skewY": 0,
  4006. "_is3DNode": false,
  4007. "_groupIndex": 0,
  4008. "groupIndex": 0,
  4009. "_id": ""
  4010. },
  4011. {
  4012. "__type__": "cc.Label",
  4013. "_name": "",
  4014. "_objFlags": 0,
  4015. "node": {
  4016. "__id__": 102
  4017. },
  4018. "_enabled": true,
  4019. "_materials": [
  4020. {
  4021. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4022. }
  4023. ],
  4024. "_srcBlendFactor": 770,
  4025. "_dstBlendFactor": 771,
  4026. "_string": " 請確認密碼",
  4027. "_N$string": " 請確認密碼",
  4028. "_fontSize": 30,
  4029. "_lineHeight": 32,
  4030. "_enableWrapText": false,
  4031. "_N$file": {
  4032. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4033. },
  4034. "_isSystemFontUsed": false,
  4035. "_spacingX": 0,
  4036. "_batchAsBitmap": false,
  4037. "_styleFlags": 0,
  4038. "_underlineHeight": 0,
  4039. "_N$horizontalAlign": 0,
  4040. "_N$verticalAlign": 1,
  4041. "_N$fontFamily": "Arial",
  4042. "_N$overflow": 1,
  4043. "_N$cacheMode": 0,
  4044. "_id": ""
  4045. },
  4046. {
  4047. "__type__": "cc.PrefabInfo",
  4048. "root": {
  4049. "__id__": 1
  4050. },
  4051. "asset": {
  4052. "__id__": 0
  4053. },
  4054. "fileId": "141pa/el5IMaPa3IGNSc8x",
  4055. "sync": false
  4056. },
  4057. {
  4058. "__type__": "cc.EditBox",
  4059. "_name": "",
  4060. "_objFlags": 0,
  4061. "node": {
  4062. "__id__": 95
  4063. },
  4064. "_enabled": true,
  4065. "_string": "",
  4066. "returnType": 0,
  4067. "maxLength": 8,
  4068. "_tabIndex": 0,
  4069. "editingDidBegan": [],
  4070. "textChanged": [],
  4071. "editingDidEnded": [],
  4072. "editingReturn": [],
  4073. "_N$textLabel": {
  4074. "__id__": 100
  4075. },
  4076. "_N$placeholderLabel": {
  4077. "__id__": 103
  4078. },
  4079. "_N$background": {
  4080. "__id__": 97
  4081. },
  4082. "_N$inputFlag": 0,
  4083. "_N$inputMode": 2,
  4084. "_N$stayOnTop": false,
  4085. "_id": ""
  4086. },
  4087. {
  4088. "__type__": "cc.PrefabInfo",
  4089. "root": {
  4090. "__id__": 1
  4091. },
  4092. "asset": {
  4093. "__id__": 0
  4094. },
  4095. "fileId": "52LLTTUqhB/4oV5vhSgx+4",
  4096. "sync": false
  4097. },
  4098. {
  4099. "__type__": "cc.Label",
  4100. "_name": "",
  4101. "_objFlags": 0,
  4102. "node": {
  4103. "__id__": 91
  4104. },
  4105. "_enabled": true,
  4106. "_materials": [
  4107. {
  4108. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4109. }
  4110. ],
  4111. "_srcBlendFactor": 770,
  4112. "_dstBlendFactor": 771,
  4113. "_string": "確認密碼:",
  4114. "_N$string": "確認密碼:",
  4115. "_fontSize": 32,
  4116. "_lineHeight": 32,
  4117. "_enableWrapText": true,
  4118. "_N$file": {
  4119. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  4120. },
  4121. "_isSystemFontUsed": false,
  4122. "_spacingX": 0,
  4123. "_batchAsBitmap": false,
  4124. "_styleFlags": 0,
  4125. "_underlineHeight": 0,
  4126. "_N$horizontalAlign": 0,
  4127. "_N$verticalAlign": 0,
  4128. "_N$fontFamily": "Arial",
  4129. "_N$overflow": 0,
  4130. "_N$cacheMode": 0,
  4131. "_id": ""
  4132. },
  4133. {
  4134. "__type__": "cc.PrefabInfo",
  4135. "root": {
  4136. "__id__": 1
  4137. },
  4138. "asset": {
  4139. "__id__": 0
  4140. },
  4141. "fileId": "7aVB/xk2dEx4eMR2XSaxPo",
  4142. "sync": false
  4143. },
  4144. {
  4145. "__type__": "cc.Node",
  4146. "_name": "Sure",
  4147. "_objFlags": 0,
  4148. "_parent": {
  4149. "__id__": 72
  4150. },
  4151. "_children": [],
  4152. "_active": true,
  4153. "_components": [
  4154. {
  4155. "__id__": 110
  4156. },
  4157. {
  4158. "__id__": 111
  4159. }
  4160. ],
  4161. "_prefab": {
  4162. "__id__": 113
  4163. },
  4164. "_opacity": 255,
  4165. "_color": {
  4166. "__type__": "cc.Color",
  4167. "r": 255,
  4168. "g": 255,
  4169. "b": 255,
  4170. "a": 255
  4171. },
  4172. "_contentSize": {
  4173. "__type__": "cc.Size",
  4174. "width": 244,
  4175. "height": 83
  4176. },
  4177. "_anchorPoint": {
  4178. "__type__": "cc.Vec2",
  4179. "x": 0.5,
  4180. "y": 0.5
  4181. },
  4182. "_trs": {
  4183. "__type__": "TypedArray",
  4184. "ctor": "Float64Array",
  4185. "array": [
  4186. 0,
  4187. -254,
  4188. 0,
  4189. 0,
  4190. 0,
  4191. 0,
  4192. 1,
  4193. 1,
  4194. 1,
  4195. 1
  4196. ]
  4197. },
  4198. "_eulerAngles": {
  4199. "__type__": "cc.Vec3",
  4200. "x": 0,
  4201. "y": 0,
  4202. "z": 0
  4203. },
  4204. "_skewX": 0,
  4205. "_skewY": 0,
  4206. "_is3DNode": false,
  4207. "_groupIndex": 0,
  4208. "groupIndex": 0,
  4209. "_id": ""
  4210. },
  4211. {
  4212. "__type__": "cc.Sprite",
  4213. "_name": "",
  4214. "_objFlags": 0,
  4215. "node": {
  4216. "__id__": 109
  4217. },
  4218. "_enabled": true,
  4219. "_materials": [
  4220. {
  4221. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4222. }
  4223. ],
  4224. "_srcBlendFactor": 770,
  4225. "_dstBlendFactor": 771,
  4226. "_spriteFrame": {
  4227. "__uuid__": "8e20fbfb-a027-47aa-ba81-99ce205dad79"
  4228. },
  4229. "_type": 0,
  4230. "_sizeMode": 1,
  4231. "_fillType": 0,
  4232. "_fillCenter": {
  4233. "__type__": "cc.Vec2",
  4234. "x": 0,
  4235. "y": 0
  4236. },
  4237. "_fillStart": 0,
  4238. "_fillRange": 0,
  4239. "_isTrimmedMode": true,
  4240. "_atlas": null,
  4241. "_id": ""
  4242. },
  4243. {
  4244. "__type__": "cc.Button",
  4245. "_name": "",
  4246. "_objFlags": 0,
  4247. "node": {
  4248. "__id__": 109
  4249. },
  4250. "_enabled": true,
  4251. "_normalMaterial": null,
  4252. "_grayMaterial": null,
  4253. "duration": 0.1,
  4254. "zoomScale": 1.2,
  4255. "clickEvents": [
  4256. {
  4257. "__id__": 112
  4258. }
  4259. ],
  4260. "_N$interactable": true,
  4261. "_N$enableAutoGrayEffect": false,
  4262. "_N$transition": 0,
  4263. "transition": 0,
  4264. "_N$normalColor": {
  4265. "__type__": "cc.Color",
  4266. "r": 214,
  4267. "g": 214,
  4268. "b": 214,
  4269. "a": 255
  4270. },
  4271. "_N$pressedColor": {
  4272. "__type__": "cc.Color",
  4273. "r": 211,
  4274. "g": 211,
  4275. "b": 211,
  4276. "a": 255
  4277. },
  4278. "pressedColor": {
  4279. "__type__": "cc.Color",
  4280. "r": 211,
  4281. "g": 211,
  4282. "b": 211,
  4283. "a": 255
  4284. },
  4285. "_N$hoverColor": {
  4286. "__type__": "cc.Color",
  4287. "r": 255,
  4288. "g": 255,
  4289. "b": 255,
  4290. "a": 255
  4291. },
  4292. "hoverColor": {
  4293. "__type__": "cc.Color",
  4294. "r": 255,
  4295. "g": 255,
  4296. "b": 255,
  4297. "a": 255
  4298. },
  4299. "_N$disabledColor": {
  4300. "__type__": "cc.Color",
  4301. "r": 124,
  4302. "g": 124,
  4303. "b": 124,
  4304. "a": 255
  4305. },
  4306. "_N$normalSprite": null,
  4307. "_N$pressedSprite": null,
  4308. "pressedSprite": null,
  4309. "_N$hoverSprite": null,
  4310. "hoverSprite": null,
  4311. "_N$disabledSprite": null,
  4312. "_N$target": {
  4313. "__id__": 109
  4314. },
  4315. "_id": ""
  4316. },
  4317. {
  4318. "__type__": "cc.ClickEvent",
  4319. "target": {
  4320. "__id__": 1
  4321. },
  4322. "component": "",
  4323. "_componentId": "6073d6wDtBMibHWPorl7qEm",
  4324. "handler": "OnBtSubmit",
  4325. "customEventData": ""
  4326. },
  4327. {
  4328. "__type__": "cc.PrefabInfo",
  4329. "root": {
  4330. "__id__": 1
  4331. },
  4332. "asset": {
  4333. "__id__": 0
  4334. },
  4335. "fileId": "42a9JCeApMLY1TjwtxT+5J",
  4336. "sync": false
  4337. },
  4338. {
  4339. "__type__": "cc.PrefabInfo",
  4340. "root": {
  4341. "__id__": 1
  4342. },
  4343. "asset": {
  4344. "__id__": 0
  4345. },
  4346. "fileId": "d1tlSl6slFEru/PHfiINP0",
  4347. "sync": false
  4348. },
  4349. {
  4350. "__type__": "cc.Node",
  4351. "_name": "BG",
  4352. "_objFlags": 0,
  4353. "_parent": {
  4354. "__id__": 1
  4355. },
  4356. "_children": [
  4357. {
  4358. "__id__": 116
  4359. }
  4360. ],
  4361. "_active": true,
  4362. "_components": [
  4363. {
  4364. "__id__": 121
  4365. }
  4366. ],
  4367. "_prefab": {
  4368. "__id__": 122
  4369. },
  4370. "_opacity": 255,
  4371. "_color": {
  4372. "__type__": "cc.Color",
  4373. "r": 255,
  4374. "g": 255,
  4375. "b": 255,
  4376. "a": 255
  4377. },
  4378. "_contentSize": {
  4379. "__type__": "cc.Size",
  4380. "width": 917,
  4381. "height": 557
  4382. },
  4383. "_anchorPoint": {
  4384. "__type__": "cc.Vec2",
  4385. "x": 0.5,
  4386. "y": 0.5
  4387. },
  4388. "_trs": {
  4389. "__type__": "TypedArray",
  4390. "ctor": "Float64Array",
  4391. "array": [
  4392. 0,
  4393. 0,
  4394. 0,
  4395. 0,
  4396. 0,
  4397. 0,
  4398. 1,
  4399. 1,
  4400. 1,
  4401. 1
  4402. ]
  4403. },
  4404. "_eulerAngles": {
  4405. "__type__": "cc.Vec3",
  4406. "x": 0,
  4407. "y": 0,
  4408. "z": 0
  4409. },
  4410. "_skewX": 0,
  4411. "_skewY": 0,
  4412. "_is3DNode": false,
  4413. "_groupIndex": 0,
  4414. "groupIndex": 0,
  4415. "_id": ""
  4416. },
  4417. {
  4418. "__type__": "cc.Node",
  4419. "_name": "BtCloseDlg1",
  4420. "_objFlags": 0,
  4421. "_parent": {
  4422. "__id__": 115
  4423. },
  4424. "_children": [],
  4425. "_active": true,
  4426. "_components": [
  4427. {
  4428. "__id__": 117
  4429. },
  4430. {
  4431. "__id__": 118
  4432. }
  4433. ],
  4434. "_prefab": {
  4435. "__id__": 120
  4436. },
  4437. "_opacity": 255,
  4438. "_color": {
  4439. "__type__": "cc.Color",
  4440. "r": 255,
  4441. "g": 255,
  4442. "b": 255,
  4443. "a": 255
  4444. },
  4445. "_contentSize": {
  4446. "__type__": "cc.Size",
  4447. "width": 52,
  4448. "height": 55
  4449. },
  4450. "_anchorPoint": {
  4451. "__type__": "cc.Vec2",
  4452. "x": 0.5,
  4453. "y": 0.5
  4454. },
  4455. "_trs": {
  4456. "__type__": "TypedArray",
  4457. "ctor": "Float64Array",
  4458. "array": [
  4459. 381,
  4460. 222,
  4461. 0,
  4462. 0,
  4463. 0,
  4464. 0,
  4465. 1,
  4466. 1,
  4467. 1,
  4468. 1
  4469. ]
  4470. },
  4471. "_eulerAngles": {
  4472. "__type__": "cc.Vec3",
  4473. "x": 0,
  4474. "y": 0,
  4475. "z": 0
  4476. },
  4477. "_skewX": 0,
  4478. "_skewY": 0,
  4479. "_is3DNode": false,
  4480. "_groupIndex": 0,
  4481. "groupIndex": 0,
  4482. "_id": ""
  4483. },
  4484. {
  4485. "__type__": "cc.Sprite",
  4486. "_name": "",
  4487. "_objFlags": 0,
  4488. "node": {
  4489. "__id__": 116
  4490. },
  4491. "_enabled": true,
  4492. "_materials": [
  4493. {
  4494. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4495. }
  4496. ],
  4497. "_srcBlendFactor": 770,
  4498. "_dstBlendFactor": 771,
  4499. "_spriteFrame": {
  4500. "__uuid__": "0af21981-27d3-4f38-a8c5-4dcc169dc3f8"
  4501. },
  4502. "_type": 0,
  4503. "_sizeMode": 1,
  4504. "_fillType": 0,
  4505. "_fillCenter": {
  4506. "__type__": "cc.Vec2",
  4507. "x": 0,
  4508. "y": 0
  4509. },
  4510. "_fillStart": 0,
  4511. "_fillRange": 0,
  4512. "_isTrimmedMode": true,
  4513. "_atlas": null,
  4514. "_id": ""
  4515. },
  4516. {
  4517. "__type__": "cc.Button",
  4518. "_name": "",
  4519. "_objFlags": 0,
  4520. "node": {
  4521. "__id__": 116
  4522. },
  4523. "_enabled": true,
  4524. "_normalMaterial": null,
  4525. "_grayMaterial": null,
  4526. "duration": 0,
  4527. "zoomScale": 1.2,
  4528. "clickEvents": [
  4529. {
  4530. "__id__": 119
  4531. }
  4532. ],
  4533. "_N$interactable": true,
  4534. "_N$enableAutoGrayEffect": false,
  4535. "_N$transition": 1,
  4536. "transition": 1,
  4537. "_N$normalColor": {
  4538. "__type__": "cc.Color",
  4539. "r": 255,
  4540. "g": 255,
  4541. "b": 255,
  4542. "a": 255
  4543. },
  4544. "_N$pressedColor": {
  4545. "__type__": "cc.Color",
  4546. "r": 211,
  4547. "g": 211,
  4548. "b": 211,
  4549. "a": 255
  4550. },
  4551. "pressedColor": {
  4552. "__type__": "cc.Color",
  4553. "r": 211,
  4554. "g": 211,
  4555. "b": 211,
  4556. "a": 255
  4557. },
  4558. "_N$hoverColor": {
  4559. "__type__": "cc.Color",
  4560. "r": 255,
  4561. "g": 255,
  4562. "b": 255,
  4563. "a": 255
  4564. },
  4565. "hoverColor": {
  4566. "__type__": "cc.Color",
  4567. "r": 255,
  4568. "g": 255,
  4569. "b": 255,
  4570. "a": 255
  4571. },
  4572. "_N$disabledColor": {
  4573. "__type__": "cc.Color",
  4574. "r": 124,
  4575. "g": 124,
  4576. "b": 124,
  4577. "a": 255
  4578. },
  4579. "_N$normalSprite": null,
  4580. "_N$pressedSprite": null,
  4581. "pressedSprite": null,
  4582. "_N$hoverSprite": null,
  4583. "hoverSprite": null,
  4584. "_N$disabledSprite": null,
  4585. "_N$target": {
  4586. "__id__": 116
  4587. },
  4588. "_id": ""
  4589. },
  4590. {
  4591. "__type__": "cc.ClickEvent",
  4592. "target": {
  4593. "__id__": 1
  4594. },
  4595. "component": "",
  4596. "_componentId": "6073d6wDtBMibHWPorl7qEm",
  4597. "handler": "HideView",
  4598. "customEventData": ""
  4599. },
  4600. {
  4601. "__type__": "cc.PrefabInfo",
  4602. "root": {
  4603. "__id__": 1
  4604. },
  4605. "asset": {
  4606. "__id__": 0
  4607. },
  4608. "fileId": "dfsNXDHQNDlKaEJS0LN8hW",
  4609. "sync": false
  4610. },
  4611. {
  4612. "__type__": "cc.Sprite",
  4613. "_name": "",
  4614. "_objFlags": 0,
  4615. "node": {
  4616. "__id__": 115
  4617. },
  4618. "_enabled": true,
  4619. "_materials": [
  4620. {
  4621. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4622. }
  4623. ],
  4624. "_srcBlendFactor": 770,
  4625. "_dstBlendFactor": 771,
  4626. "_spriteFrame": {
  4627. "__uuid__": "f1840760-206d-49fe-af98-b1e0e6232e06"
  4628. },
  4629. "_type": 1,
  4630. "_sizeMode": 1,
  4631. "_fillType": 0,
  4632. "_fillCenter": {
  4633. "__type__": "cc.Vec2",
  4634. "x": 0,
  4635. "y": 0
  4636. },
  4637. "_fillStart": 0,
  4638. "_fillRange": 0,
  4639. "_isTrimmedMode": true,
  4640. "_atlas": null,
  4641. "_id": ""
  4642. },
  4643. {
  4644. "__type__": "cc.PrefabInfo",
  4645. "root": {
  4646. "__id__": 1
  4647. },
  4648. "asset": {
  4649. "__id__": 0
  4650. },
  4651. "fileId": "c6bip2uDpDHow6MC+cJvvY",
  4652. "sync": false
  4653. },
  4654. {
  4655. "__type__": "cc.Node",
  4656. "_name": "BindPhone",
  4657. "_objFlags": 0,
  4658. "_parent": {
  4659. "__id__": 1
  4660. },
  4661. "_children": [
  4662. {
  4663. "__id__": 124
  4664. },
  4665. {
  4666. "__id__": 127
  4667. },
  4668. {
  4669. "__id__": 130
  4670. },
  4671. {
  4672. "__id__": 148
  4673. }
  4674. ],
  4675. "_active": false,
  4676. "_components": [
  4677. {
  4678. "__id__": 171
  4679. }
  4680. ],
  4681. "_prefab": {
  4682. "__id__": 172
  4683. },
  4684. "_opacity": 255,
  4685. "_color": {
  4686. "__type__": "cc.Color",
  4687. "r": 255,
  4688. "g": 255,
  4689. "b": 255,
  4690. "a": 255
  4691. },
  4692. "_contentSize": {
  4693. "__type__": "cc.Size",
  4694. "width": 0,
  4695. "height": 0
  4696. },
  4697. "_anchorPoint": {
  4698. "__type__": "cc.Vec2",
  4699. "x": 0.5,
  4700. "y": 0.5
  4701. },
  4702. "_trs": {
  4703. "__type__": "TypedArray",
  4704. "ctor": "Float64Array",
  4705. "array": [
  4706. 0,
  4707. 0,
  4708. 0,
  4709. 0,
  4710. 0,
  4711. 0,
  4712. 1,
  4713. 1,
  4714. 1,
  4715. 1
  4716. ]
  4717. },
  4718. "_eulerAngles": {
  4719. "__type__": "cc.Vec3",
  4720. "x": 0,
  4721. "y": 0,
  4722. "z": 0
  4723. },
  4724. "_skewX": 0,
  4725. "_skewY": 0,
  4726. "_is3DNode": false,
  4727. "_groupIndex": 0,
  4728. "groupIndex": 0,
  4729. "_id": ""
  4730. },
  4731. {
  4732. "__type__": "cc.Node",
  4733. "_name": "BGT3",
  4734. "_objFlags": 0,
  4735. "_parent": {
  4736. "__id__": 123
  4737. },
  4738. "_children": [],
  4739. "_active": true,
  4740. "_components": [
  4741. {
  4742. "__id__": 125
  4743. }
  4744. ],
  4745. "_prefab": {
  4746. "__id__": 126
  4747. },
  4748. "_opacity": 255,
  4749. "_color": {
  4750. "__type__": "cc.Color",
  4751. "r": 255,
  4752. "g": 255,
  4753. "b": 255,
  4754. "a": 255
  4755. },
  4756. "_contentSize": {
  4757. "__type__": "cc.Size",
  4758. "width": 421,
  4759. "height": 28
  4760. },
  4761. "_anchorPoint": {
  4762. "__type__": "cc.Vec2",
  4763. "x": 0.5,
  4764. "y": 0.5
  4765. },
  4766. "_trs": {
  4767. "__type__": "TypedArray",
  4768. "ctor": "Float64Array",
  4769. "array": [
  4770. 0,
  4771. 224.5,
  4772. 0,
  4773. 0,
  4774. 0,
  4775. 0,
  4776. 1,
  4777. 1,
  4778. 1,
  4779. 1
  4780. ]
  4781. },
  4782. "_eulerAngles": {
  4783. "__type__": "cc.Vec3",
  4784. "x": 0,
  4785. "y": 0,
  4786. "z": 0
  4787. },
  4788. "_skewX": 0,
  4789. "_skewY": 0,
  4790. "_is3DNode": false,
  4791. "_groupIndex": 0,
  4792. "groupIndex": 0,
  4793. "_id": ""
  4794. },
  4795. {
  4796. "__type__": "cc.Sprite",
  4797. "_name": "",
  4798. "_objFlags": 0,
  4799. "node": {
  4800. "__id__": 124
  4801. },
  4802. "_enabled": true,
  4803. "_materials": [
  4804. {
  4805. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4806. }
  4807. ],
  4808. "_srcBlendFactor": 770,
  4809. "_dstBlendFactor": 771,
  4810. "_spriteFrame": {
  4811. "__uuid__": "6b58055b-5b84-4f90-9ed8-e9097240f3a5"
  4812. },
  4813. "_type": 0,
  4814. "_sizeMode": 1,
  4815. "_fillType": 0,
  4816. "_fillCenter": {
  4817. "__type__": "cc.Vec2",
  4818. "x": 0,
  4819. "y": 0
  4820. },
  4821. "_fillStart": 0,
  4822. "_fillRange": 0,
  4823. "_isTrimmedMode": true,
  4824. "_atlas": null,
  4825. "_id": ""
  4826. },
  4827. {
  4828. "__type__": "cc.PrefabInfo",
  4829. "root": {
  4830. "__id__": 1
  4831. },
  4832. "asset": {
  4833. "__id__": 0
  4834. },
  4835. "fileId": "b6F0K8MUNE5oWr0Cf9EjoN",
  4836. "sync": false
  4837. },
  4838. {
  4839. "__type__": "cc.Node",
  4840. "_name": "TBindPhone",
  4841. "_objFlags": 0,
  4842. "_parent": {
  4843. "__id__": 123
  4844. },
  4845. "_children": [],
  4846. "_active": true,
  4847. "_components": [
  4848. {
  4849. "__id__": 128
  4850. }
  4851. ],
  4852. "_prefab": {
  4853. "__id__": 129
  4854. },
  4855. "_opacity": 255,
  4856. "_color": {
  4857. "__type__": "cc.Color",
  4858. "r": 255,
  4859. "g": 255,
  4860. "b": 255,
  4861. "a": 255
  4862. },
  4863. "_contentSize": {
  4864. "__type__": "cc.Size",
  4865. "width": 179,
  4866. "height": 51
  4867. },
  4868. "_anchorPoint": {
  4869. "__type__": "cc.Vec2",
  4870. "x": 0.5,
  4871. "y": 0.5
  4872. },
  4873. "_trs": {
  4874. "__type__": "TypedArray",
  4875. "ctor": "Float64Array",
  4876. "array": [
  4877. 0,
  4878. 221,
  4879. 0,
  4880. 0,
  4881. 0,
  4882. 0,
  4883. 1,
  4884. 1,
  4885. 1,
  4886. 1
  4887. ]
  4888. },
  4889. "_eulerAngles": {
  4890. "__type__": "cc.Vec3",
  4891. "x": 0,
  4892. "y": 0,
  4893. "z": 0
  4894. },
  4895. "_skewX": 0,
  4896. "_skewY": 0,
  4897. "_is3DNode": false,
  4898. "_groupIndex": 0,
  4899. "groupIndex": 0,
  4900. "_id": ""
  4901. },
  4902. {
  4903. "__type__": "cc.Sprite",
  4904. "_name": "",
  4905. "_objFlags": 0,
  4906. "node": {
  4907. "__id__": 127
  4908. },
  4909. "_enabled": true,
  4910. "_materials": [
  4911. {
  4912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4913. }
  4914. ],
  4915. "_srcBlendFactor": 770,
  4916. "_dstBlendFactor": 771,
  4917. "_spriteFrame": {
  4918. "__uuid__": "282575eb-ede6-4c0e-b60e-d616cf823848"
  4919. },
  4920. "_type": 0,
  4921. "_sizeMode": 1,
  4922. "_fillType": 0,
  4923. "_fillCenter": {
  4924. "__type__": "cc.Vec2",
  4925. "x": 0,
  4926. "y": 0
  4927. },
  4928. "_fillStart": 0,
  4929. "_fillRange": 0,
  4930. "_isTrimmedMode": true,
  4931. "_atlas": null,
  4932. "_id": ""
  4933. },
  4934. {
  4935. "__type__": "cc.PrefabInfo",
  4936. "root": {
  4937. "__id__": 1
  4938. },
  4939. "asset": {
  4940. "__id__": 0
  4941. },
  4942. "fileId": "f41SVL0jZBAIA+JVyTCGmb",
  4943. "sync": false
  4944. },
  4945. {
  4946. "__type__": "cc.Node",
  4947. "_name": "PhoneNum",
  4948. "_objFlags": 0,
  4949. "_parent": {
  4950. "__id__": 123
  4951. },
  4952. "_children": [
  4953. {
  4954. "__id__": 131
  4955. },
  4956. {
  4957. "__id__": 134
  4958. }
  4959. ],
  4960. "_active": true,
  4961. "_components": [
  4962. {
  4963. "__id__": 146
  4964. }
  4965. ],
  4966. "_prefab": {
  4967. "__id__": 147
  4968. },
  4969. "_opacity": 255,
  4970. "_color": {
  4971. "__type__": "cc.Color",
  4972. "r": 201,
  4973. "g": 73,
  4974. "b": 36,
  4975. "a": 255
  4976. },
  4977. "_contentSize": {
  4978. "__type__": "cc.Size",
  4979. "width": 128,
  4980. "height": 40.32
  4981. },
  4982. "_anchorPoint": {
  4983. "__type__": "cc.Vec2",
  4984. "x": 1,
  4985. "y": 0.5
  4986. },
  4987. "_trs": {
  4988. "__type__": "TypedArray",
  4989. "ctor": "Float64Array",
  4990. "array": [
  4991. -157.352,
  4992. 75.287,
  4993. 0,
  4994. 0,
  4995. 0,
  4996. 0,
  4997. 1,
  4998. 1,
  4999. 1,
  5000. 1
  5001. ]
  5002. },
  5003. "_eulerAngles": {
  5004. "__type__": "cc.Vec3",
  5005. "x": 0,
  5006. "y": 0,
  5007. "z": 0
  5008. },
  5009. "_skewX": 0,
  5010. "_skewY": 0,
  5011. "_is3DNode": false,
  5012. "_groupIndex": 0,
  5013. "groupIndex": 0,
  5014. "_id": ""
  5015. },
  5016. {
  5017. "__type__": "cc.Node",
  5018. "_name": "iconPhone",
  5019. "_objFlags": 0,
  5020. "_parent": {
  5021. "__id__": 130
  5022. },
  5023. "_children": [],
  5024. "_active": true,
  5025. "_components": [
  5026. {
  5027. "__id__": 132
  5028. }
  5029. ],
  5030. "_prefab": {
  5031. "__id__": 133
  5032. },
  5033. "_opacity": 255,
  5034. "_color": {
  5035. "__type__": "cc.Color",
  5036. "r": 255,
  5037. "g": 255,
  5038. "b": 255,
  5039. "a": 255
  5040. },
  5041. "_contentSize": {
  5042. "__type__": "cc.Size",
  5043. "width": 28,
  5044. "height": 41
  5045. },
  5046. "_anchorPoint": {
  5047. "__type__": "cc.Vec2",
  5048. "x": 0.5,
  5049. "y": 0.5
  5050. },
  5051. "_trs": {
  5052. "__type__": "TypedArray",
  5053. "ctor": "Float64Array",
  5054. "array": [
  5055. -166.932,
  5056. 0,
  5057. 0,
  5058. 0,
  5059. 0,
  5060. 0,
  5061. 1,
  5062. 1,
  5063. 1,
  5064. 1
  5065. ]
  5066. },
  5067. "_eulerAngles": {
  5068. "__type__": "cc.Vec3",
  5069. "x": 0,
  5070. "y": 0,
  5071. "z": 0
  5072. },
  5073. "_skewX": 0,
  5074. "_skewY": 0,
  5075. "_is3DNode": false,
  5076. "_groupIndex": 0,
  5077. "groupIndex": 0,
  5078. "_id": ""
  5079. },
  5080. {
  5081. "__type__": "cc.Sprite",
  5082. "_name": "",
  5083. "_objFlags": 0,
  5084. "node": {
  5085. "__id__": 131
  5086. },
  5087. "_enabled": true,
  5088. "_materials": [
  5089. {
  5090. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5091. }
  5092. ],
  5093. "_srcBlendFactor": 770,
  5094. "_dstBlendFactor": 771,
  5095. "_spriteFrame": {
  5096. "__uuid__": "1b39859a-2979-4b24-bca5-2a400026e390"
  5097. },
  5098. "_type": 0,
  5099. "_sizeMode": 1,
  5100. "_fillType": 0,
  5101. "_fillCenter": {
  5102. "__type__": "cc.Vec2",
  5103. "x": 0,
  5104. "y": 0
  5105. },
  5106. "_fillStart": 0,
  5107. "_fillRange": 0,
  5108. "_isTrimmedMode": true,
  5109. "_atlas": null,
  5110. "_id": ""
  5111. },
  5112. {
  5113. "__type__": "cc.PrefabInfo",
  5114. "root": {
  5115. "__id__": 1
  5116. },
  5117. "asset": {
  5118. "__id__": 0
  5119. },
  5120. "fileId": "b9Zkz9uCtBWryHUvxrhEB/",
  5121. "sync": false
  5122. },
  5123. {
  5124. "__type__": "cc.Node",
  5125. "_name": "input",
  5126. "_objFlags": 0,
  5127. "_parent": {
  5128. "__id__": 130
  5129. },
  5130. "_children": [
  5131. {
  5132. "__id__": 135
  5133. },
  5134. {
  5135. "__id__": 138
  5136. },
  5137. {
  5138. "__id__": 141
  5139. }
  5140. ],
  5141. "_active": true,
  5142. "_components": [
  5143. {
  5144. "__id__": 144
  5145. }
  5146. ],
  5147. "_prefab": {
  5148. "__id__": 145
  5149. },
  5150. "_opacity": 255,
  5151. "_color": {
  5152. "__type__": "cc.Color",
  5153. "r": 255,
  5154. "g": 255,
  5155. "b": 255,
  5156. "a": 255
  5157. },
  5158. "_contentSize": {
  5159. "__type__": "cc.Size",
  5160. "width": 440,
  5161. "height": 60
  5162. },
  5163. "_anchorPoint": {
  5164. "__type__": "cc.Vec2",
  5165. "x": 0.5,
  5166. "y": 0.5
  5167. },
  5168. "_trs": {
  5169. "__type__": "TypedArray",
  5170. "ctor": "Float64Array",
  5171. "array": [
  5172. 260,
  5173. 0,
  5174. 0,
  5175. 0,
  5176. 0,
  5177. 0,
  5178. 1,
  5179. 1,
  5180. 1,
  5181. 1
  5182. ]
  5183. },
  5184. "_eulerAngles": {
  5185. "__type__": "cc.Vec3",
  5186. "x": 0,
  5187. "y": 0,
  5188. "z": 0
  5189. },
  5190. "_skewX": 0,
  5191. "_skewY": 0,
  5192. "_is3DNode": false,
  5193. "_groupIndex": 0,
  5194. "groupIndex": 0,
  5195. "_id": ""
  5196. },
  5197. {
  5198. "__type__": "cc.Node",
  5199. "_name": "BACKGROUND_SPRITE",
  5200. "_objFlags": 0,
  5201. "_parent": {
  5202. "__id__": 134
  5203. },
  5204. "_children": [],
  5205. "_active": true,
  5206. "_components": [
  5207. {
  5208. "__id__": 136
  5209. }
  5210. ],
  5211. "_prefab": {
  5212. "__id__": 137
  5213. },
  5214. "_opacity": 255,
  5215. "_color": {
  5216. "__type__": "cc.Color",
  5217. "r": 255,
  5218. "g": 255,
  5219. "b": 255,
  5220. "a": 255
  5221. },
  5222. "_contentSize": {
  5223. "__type__": "cc.Size",
  5224. "width": 480,
  5225. "height": 60
  5226. },
  5227. "_anchorPoint": {
  5228. "__type__": "cc.Vec2",
  5229. "x": 0.5,
  5230. "y": 0.5
  5231. },
  5232. "_trs": {
  5233. "__type__": "TypedArray",
  5234. "ctor": "Float64Array",
  5235. "array": [
  5236. 0,
  5237. 0,
  5238. 0,
  5239. 0,
  5240. 0,
  5241. 0,
  5242. 1,
  5243. 1,
  5244. 1,
  5245. 1
  5246. ]
  5247. },
  5248. "_eulerAngles": {
  5249. "__type__": "cc.Vec3",
  5250. "x": 0,
  5251. "y": 0,
  5252. "z": 0
  5253. },
  5254. "_skewX": 0,
  5255. "_skewY": 0,
  5256. "_is3DNode": false,
  5257. "_groupIndex": 0,
  5258. "groupIndex": 0,
  5259. "_id": ""
  5260. },
  5261. {
  5262. "__type__": "cc.Sprite",
  5263. "_name": "",
  5264. "_objFlags": 0,
  5265. "node": {
  5266. "__id__": 135
  5267. },
  5268. "_enabled": true,
  5269. "_materials": [
  5270. {
  5271. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5272. }
  5273. ],
  5274. "_srcBlendFactor": 770,
  5275. "_dstBlendFactor": 771,
  5276. "_spriteFrame": {
  5277. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  5278. },
  5279. "_type": 1,
  5280. "_sizeMode": 0,
  5281. "_fillType": 0,
  5282. "_fillCenter": {
  5283. "__type__": "cc.Vec2",
  5284. "x": 0,
  5285. "y": 0
  5286. },
  5287. "_fillStart": 0,
  5288. "_fillRange": 0,
  5289. "_isTrimmedMode": true,
  5290. "_atlas": null,
  5291. "_id": ""
  5292. },
  5293. {
  5294. "__type__": "cc.PrefabInfo",
  5295. "root": {
  5296. "__id__": 1
  5297. },
  5298. "asset": {
  5299. "__id__": 0
  5300. },
  5301. "fileId": "53srTB2FZE6rwAXePDBvnv",
  5302. "sync": false
  5303. },
  5304. {
  5305. "__type__": "cc.Node",
  5306. "_name": "TEXT_LABEL",
  5307. "_objFlags": 0,
  5308. "_parent": {
  5309. "__id__": 134
  5310. },
  5311. "_children": [],
  5312. "_active": false,
  5313. "_components": [
  5314. {
  5315. "__id__": 139
  5316. }
  5317. ],
  5318. "_prefab": {
  5319. "__id__": 140
  5320. },
  5321. "_opacity": 255,
  5322. "_color": {
  5323. "__type__": "cc.Color",
  5324. "r": 201,
  5325. "g": 73,
  5326. "b": 36,
  5327. "a": 255
  5328. },
  5329. "_contentSize": {
  5330. "__type__": "cc.Size",
  5331. "width": 440,
  5332. "height": 60
  5333. },
  5334. "_anchorPoint": {
  5335. "__type__": "cc.Vec2",
  5336. "x": 0.5,
  5337. "y": 0.5
  5338. },
  5339. "_trs": {
  5340. "__type__": "TypedArray",
  5341. "ctor": "Float64Array",
  5342. "array": [
  5343. 0,
  5344. 0,
  5345. 0,
  5346. 0,
  5347. 0,
  5348. 0,
  5349. 1,
  5350. 1,
  5351. 1,
  5352. 1
  5353. ]
  5354. },
  5355. "_eulerAngles": {
  5356. "__type__": "cc.Vec3",
  5357. "x": 0,
  5358. "y": 0,
  5359. "z": 0
  5360. },
  5361. "_skewX": 0,
  5362. "_skewY": 0,
  5363. "_is3DNode": false,
  5364. "_groupIndex": 0,
  5365. "groupIndex": 0,
  5366. "_id": ""
  5367. },
  5368. {
  5369. "__type__": "cc.Label",
  5370. "_name": "",
  5371. "_objFlags": 0,
  5372. "node": {
  5373. "__id__": 138
  5374. },
  5375. "_enabled": true,
  5376. "_materials": [
  5377. {
  5378. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5379. }
  5380. ],
  5381. "_srcBlendFactor": 770,
  5382. "_dstBlendFactor": 771,
  5383. "_string": "",
  5384. "_N$string": "",
  5385. "_fontSize": 30,
  5386. "_lineHeight": 32,
  5387. "_enableWrapText": false,
  5388. "_N$file": {
  5389. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5390. },
  5391. "_isSystemFontUsed": false,
  5392. "_spacingX": 0,
  5393. "_batchAsBitmap": false,
  5394. "_styleFlags": 0,
  5395. "_underlineHeight": 0,
  5396. "_N$horizontalAlign": 0,
  5397. "_N$verticalAlign": 1,
  5398. "_N$fontFamily": "Arial",
  5399. "_N$overflow": 1,
  5400. "_N$cacheMode": 0,
  5401. "_id": ""
  5402. },
  5403. {
  5404. "__type__": "cc.PrefabInfo",
  5405. "root": {
  5406. "__id__": 1
  5407. },
  5408. "asset": {
  5409. "__id__": 0
  5410. },
  5411. "fileId": "37eAfnRVxHGbC19c2e6iW5",
  5412. "sync": false
  5413. },
  5414. {
  5415. "__type__": "cc.Node",
  5416. "_name": "PLACEHOLDER_LABEL",
  5417. "_objFlags": 0,
  5418. "_parent": {
  5419. "__id__": 134
  5420. },
  5421. "_children": [],
  5422. "_active": true,
  5423. "_components": [
  5424. {
  5425. "__id__": 142
  5426. }
  5427. ],
  5428. "_prefab": {
  5429. "__id__": 143
  5430. },
  5431. "_opacity": 255,
  5432. "_color": {
  5433. "__type__": "cc.Color",
  5434. "r": 202,
  5435. "g": 140,
  5436. "b": 97,
  5437. "a": 255
  5438. },
  5439. "_contentSize": {
  5440. "__type__": "cc.Size",
  5441. "width": 440,
  5442. "height": 60
  5443. },
  5444. "_anchorPoint": {
  5445. "__type__": "cc.Vec2",
  5446. "x": 0.5,
  5447. "y": 0.5
  5448. },
  5449. "_trs": {
  5450. "__type__": "TypedArray",
  5451. "ctor": "Float64Array",
  5452. "array": [
  5453. 0,
  5454. 0,
  5455. 0,
  5456. 0,
  5457. 0,
  5458. 0,
  5459. 1,
  5460. 1,
  5461. 1,
  5462. 1
  5463. ]
  5464. },
  5465. "_eulerAngles": {
  5466. "__type__": "cc.Vec3",
  5467. "x": 0,
  5468. "y": 0,
  5469. "z": 0
  5470. },
  5471. "_skewX": 0,
  5472. "_skewY": 0,
  5473. "_is3DNode": false,
  5474. "_groupIndex": 0,
  5475. "groupIndex": 0,
  5476. "_id": ""
  5477. },
  5478. {
  5479. "__type__": "cc.Label",
  5480. "_name": "",
  5481. "_objFlags": 0,
  5482. "node": {
  5483. "__id__": 141
  5484. },
  5485. "_enabled": true,
  5486. "_materials": [
  5487. {
  5488. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5489. }
  5490. ],
  5491. "_srcBlendFactor": 770,
  5492. "_dstBlendFactor": 771,
  5493. "_string": "請輸入手機號",
  5494. "_N$string": "請輸入手機號",
  5495. "_fontSize": 30,
  5496. "_lineHeight": 32,
  5497. "_enableWrapText": false,
  5498. "_N$file": {
  5499. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5500. },
  5501. "_isSystemFontUsed": false,
  5502. "_spacingX": 0,
  5503. "_batchAsBitmap": false,
  5504. "_styleFlags": 0,
  5505. "_underlineHeight": 0,
  5506. "_N$horizontalAlign": 0,
  5507. "_N$verticalAlign": 1,
  5508. "_N$fontFamily": "Arial",
  5509. "_N$overflow": 1,
  5510. "_N$cacheMode": 0,
  5511. "_id": ""
  5512. },
  5513. {
  5514. "__type__": "cc.PrefabInfo",
  5515. "root": {
  5516. "__id__": 1
  5517. },
  5518. "asset": {
  5519. "__id__": 0
  5520. },
  5521. "fileId": "22su5iK+ZEmKGcGw2EiRSZ",
  5522. "sync": false
  5523. },
  5524. {
  5525. "__type__": "cc.EditBox",
  5526. "_name": "",
  5527. "_objFlags": 0,
  5528. "node": {
  5529. "__id__": 134
  5530. },
  5531. "_enabled": true,
  5532. "_string": "",
  5533. "returnType": 0,
  5534. "maxLength": 11,
  5535. "_tabIndex": 0,
  5536. "editingDidBegan": [],
  5537. "textChanged": [],
  5538. "editingDidEnded": [],
  5539. "editingReturn": [],
  5540. "_N$textLabel": {
  5541. "__id__": 139
  5542. },
  5543. "_N$placeholderLabel": {
  5544. "__id__": 142
  5545. },
  5546. "_N$background": {
  5547. "__id__": 136
  5548. },
  5549. "_N$inputFlag": 1,
  5550. "_N$inputMode": 6,
  5551. "_N$stayOnTop": false,
  5552. "_id": ""
  5553. },
  5554. {
  5555. "__type__": "cc.PrefabInfo",
  5556. "root": {
  5557. "__id__": 1
  5558. },
  5559. "asset": {
  5560. "__id__": 0
  5561. },
  5562. "fileId": "8bq7NLxO5DAq0cVKpvx1jr",
  5563. "sync": false
  5564. },
  5565. {
  5566. "__type__": "cc.Label",
  5567. "_name": "",
  5568. "_objFlags": 0,
  5569. "node": {
  5570. "__id__": 130
  5571. },
  5572. "_enabled": true,
  5573. "_materials": [
  5574. {
  5575. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5576. }
  5577. ],
  5578. "_srcBlendFactor": 770,
  5579. "_dstBlendFactor": 771,
  5580. "_string": "手 機 號",
  5581. "_N$string": "手 機 號",
  5582. "_fontSize": 32,
  5583. "_lineHeight": 32,
  5584. "_enableWrapText": true,
  5585. "_N$file": {
  5586. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  5587. },
  5588. "_isSystemFontUsed": false,
  5589. "_spacingX": 0,
  5590. "_batchAsBitmap": false,
  5591. "_styleFlags": 0,
  5592. "_underlineHeight": 0,
  5593. "_N$horizontalAlign": 1,
  5594. "_N$verticalAlign": 1,
  5595. "_N$fontFamily": "Arial",
  5596. "_N$overflow": 0,
  5597. "_N$cacheMode": 0,
  5598. "_id": ""
  5599. },
  5600. {
  5601. "__type__": "cc.PrefabInfo",
  5602. "root": {
  5603. "__id__": 1
  5604. },
  5605. "asset": {
  5606. "__id__": 0
  5607. },
  5608. "fileId": "eaOQ/hsV1K4piVYo0eOvnz",
  5609. "sync": false
  5610. },
  5611. {
  5612. "__type__": "cc.Node",
  5613. "_name": "VerCode",
  5614. "_objFlags": 0,
  5615. "_parent": {
  5616. "__id__": 123
  5617. },
  5618. "_children": [
  5619. {
  5620. "__id__": 149
  5621. },
  5622. {
  5623. "__id__": 152
  5624. },
  5625. {
  5626. "__id__": 164
  5627. }
  5628. ],
  5629. "_active": true,
  5630. "_components": [
  5631. {
  5632. "__id__": 169
  5633. }
  5634. ],
  5635. "_prefab": {
  5636. "__id__": 170
  5637. },
  5638. "_opacity": 255,
  5639. "_color": {
  5640. "__type__": "cc.Color",
  5641. "r": 201,
  5642. "g": 73,
  5643. "b": 36,
  5644. "a": 255
  5645. },
  5646. "_contentSize": {
  5647. "__type__": "cc.Size",
  5648. "width": 128,
  5649. "height": 40.32
  5650. },
  5651. "_anchorPoint": {
  5652. "__type__": "cc.Vec2",
  5653. "x": 1,
  5654. "y": 0.5
  5655. },
  5656. "_trs": {
  5657. "__type__": "TypedArray",
  5658. "ctor": "Float64Array",
  5659. "array": [
  5660. -157.352,
  5661. -46.463,
  5662. 0,
  5663. 0,
  5664. 0,
  5665. 0,
  5666. 1,
  5667. 1,
  5668. 1,
  5669. 1
  5670. ]
  5671. },
  5672. "_eulerAngles": {
  5673. "__type__": "cc.Vec3",
  5674. "x": 0,
  5675. "y": 0,
  5676. "z": 0
  5677. },
  5678. "_skewX": 0,
  5679. "_skewY": 0,
  5680. "_is3DNode": false,
  5681. "_groupIndex": 0,
  5682. "groupIndex": 0,
  5683. "_id": ""
  5684. },
  5685. {
  5686. "__type__": "cc.Node",
  5687. "_name": "iconCode",
  5688. "_objFlags": 0,
  5689. "_parent": {
  5690. "__id__": 148
  5691. },
  5692. "_children": [],
  5693. "_active": true,
  5694. "_components": [
  5695. {
  5696. "__id__": 150
  5697. }
  5698. ],
  5699. "_prefab": {
  5700. "__id__": 151
  5701. },
  5702. "_opacity": 255,
  5703. "_color": {
  5704. "__type__": "cc.Color",
  5705. "r": 255,
  5706. "g": 255,
  5707. "b": 255,
  5708. "a": 255
  5709. },
  5710. "_contentSize": {
  5711. "__type__": "cc.Size",
  5712. "width": 33,
  5713. "height": 38
  5714. },
  5715. "_anchorPoint": {
  5716. "__type__": "cc.Vec2",
  5717. "x": 0.5,
  5718. "y": 0.5
  5719. },
  5720. "_trs": {
  5721. "__type__": "TypedArray",
  5722. "ctor": "Float64Array",
  5723. "array": [
  5724. -164.932,
  5725. 0,
  5726. 0,
  5727. 0,
  5728. 0,
  5729. 0,
  5730. 1,
  5731. 1,
  5732. 1,
  5733. 1
  5734. ]
  5735. },
  5736. "_eulerAngles": {
  5737. "__type__": "cc.Vec3",
  5738. "x": 0,
  5739. "y": 0,
  5740. "z": 0
  5741. },
  5742. "_skewX": 0,
  5743. "_skewY": 0,
  5744. "_is3DNode": false,
  5745. "_groupIndex": 0,
  5746. "groupIndex": 0,
  5747. "_id": ""
  5748. },
  5749. {
  5750. "__type__": "cc.Sprite",
  5751. "_name": "",
  5752. "_objFlags": 0,
  5753. "node": {
  5754. "__id__": 149
  5755. },
  5756. "_enabled": true,
  5757. "_materials": [
  5758. {
  5759. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5760. }
  5761. ],
  5762. "_srcBlendFactor": 770,
  5763. "_dstBlendFactor": 771,
  5764. "_spriteFrame": {
  5765. "__uuid__": "e9c06952-6524-490b-9868-e9ed8ca2a36c"
  5766. },
  5767. "_type": 0,
  5768. "_sizeMode": 1,
  5769. "_fillType": 0,
  5770. "_fillCenter": {
  5771. "__type__": "cc.Vec2",
  5772. "x": 0,
  5773. "y": 0
  5774. },
  5775. "_fillStart": 0,
  5776. "_fillRange": 0,
  5777. "_isTrimmedMode": true,
  5778. "_atlas": null,
  5779. "_id": ""
  5780. },
  5781. {
  5782. "__type__": "cc.PrefabInfo",
  5783. "root": {
  5784. "__id__": 1
  5785. },
  5786. "asset": {
  5787. "__id__": 0
  5788. },
  5789. "fileId": "927b+iUetDqrHs0rFYgrEK",
  5790. "sync": false
  5791. },
  5792. {
  5793. "__type__": "cc.Node",
  5794. "_name": "input",
  5795. "_objFlags": 0,
  5796. "_parent": {
  5797. "__id__": 148
  5798. },
  5799. "_children": [
  5800. {
  5801. "__id__": 153
  5802. },
  5803. {
  5804. "__id__": 156
  5805. },
  5806. {
  5807. "__id__": 159
  5808. }
  5809. ],
  5810. "_active": true,
  5811. "_components": [
  5812. {
  5813. "__id__": 162
  5814. }
  5815. ],
  5816. "_prefab": {
  5817. "__id__": 163
  5818. },
  5819. "_opacity": 255,
  5820. "_color": {
  5821. "__type__": "cc.Color",
  5822. "r": 255,
  5823. "g": 255,
  5824. "b": 255,
  5825. "a": 255
  5826. },
  5827. "_contentSize": {
  5828. "__type__": "cc.Size",
  5829. "width": 280,
  5830. "height": 60
  5831. },
  5832. "_anchorPoint": {
  5833. "__type__": "cc.Vec2",
  5834. "x": 0.5,
  5835. "y": 0.5
  5836. },
  5837. "_trs": {
  5838. "__type__": "TypedArray",
  5839. "ctor": "Float64Array",
  5840. "array": [
  5841. 180,
  5842. 0,
  5843. 0,
  5844. 0,
  5845. 0,
  5846. 0,
  5847. 1,
  5848. 1,
  5849. 1,
  5850. 1
  5851. ]
  5852. },
  5853. "_eulerAngles": {
  5854. "__type__": "cc.Vec3",
  5855. "x": 0,
  5856. "y": 0,
  5857. "z": 0
  5858. },
  5859. "_skewX": 0,
  5860. "_skewY": 0,
  5861. "_is3DNode": false,
  5862. "_groupIndex": 0,
  5863. "groupIndex": 0,
  5864. "_id": ""
  5865. },
  5866. {
  5867. "__type__": "cc.Node",
  5868. "_name": "BACKGROUND_SPRITE",
  5869. "_objFlags": 0,
  5870. "_parent": {
  5871. "__id__": 152
  5872. },
  5873. "_children": [],
  5874. "_active": true,
  5875. "_components": [
  5876. {
  5877. "__id__": 154
  5878. }
  5879. ],
  5880. "_prefab": {
  5881. "__id__": 155
  5882. },
  5883. "_opacity": 255,
  5884. "_color": {
  5885. "__type__": "cc.Color",
  5886. "r": 255,
  5887. "g": 255,
  5888. "b": 255,
  5889. "a": 255
  5890. },
  5891. "_contentSize": {
  5892. "__type__": "cc.Size",
  5893. "width": 480,
  5894. "height": 60
  5895. },
  5896. "_anchorPoint": {
  5897. "__type__": "cc.Vec2",
  5898. "x": 0.5,
  5899. "y": 0.5
  5900. },
  5901. "_trs": {
  5902. "__type__": "TypedArray",
  5903. "ctor": "Float64Array",
  5904. "array": [
  5905. 80,
  5906. 0,
  5907. 0,
  5908. 0,
  5909. 0,
  5910. 0,
  5911. 1,
  5912. 1,
  5913. 1,
  5914. 1
  5915. ]
  5916. },
  5917. "_eulerAngles": {
  5918. "__type__": "cc.Vec3",
  5919. "x": 0,
  5920. "y": 0,
  5921. "z": 0
  5922. },
  5923. "_skewX": 0,
  5924. "_skewY": 0,
  5925. "_is3DNode": false,
  5926. "_groupIndex": 0,
  5927. "groupIndex": 0,
  5928. "_id": ""
  5929. },
  5930. {
  5931. "__type__": "cc.Sprite",
  5932. "_name": "",
  5933. "_objFlags": 0,
  5934. "node": {
  5935. "__id__": 153
  5936. },
  5937. "_enabled": true,
  5938. "_materials": [
  5939. {
  5940. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  5941. }
  5942. ],
  5943. "_srcBlendFactor": 770,
  5944. "_dstBlendFactor": 771,
  5945. "_spriteFrame": {
  5946. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  5947. },
  5948. "_type": 1,
  5949. "_sizeMode": 0,
  5950. "_fillType": 0,
  5951. "_fillCenter": {
  5952. "__type__": "cc.Vec2",
  5953. "x": 0,
  5954. "y": 0
  5955. },
  5956. "_fillStart": 0,
  5957. "_fillRange": 0,
  5958. "_isTrimmedMode": true,
  5959. "_atlas": null,
  5960. "_id": ""
  5961. },
  5962. {
  5963. "__type__": "cc.PrefabInfo",
  5964. "root": {
  5965. "__id__": 1
  5966. },
  5967. "asset": {
  5968. "__id__": 0
  5969. },
  5970. "fileId": "8eJ/3GvG5DIr9vWoEpbv84",
  5971. "sync": false
  5972. },
  5973. {
  5974. "__type__": "cc.Node",
  5975. "_name": "TEXT_LABEL",
  5976. "_objFlags": 0,
  5977. "_parent": {
  5978. "__id__": 152
  5979. },
  5980. "_children": [],
  5981. "_active": false,
  5982. "_components": [
  5983. {
  5984. "__id__": 157
  5985. }
  5986. ],
  5987. "_prefab": {
  5988. "__id__": 158
  5989. },
  5990. "_opacity": 255,
  5991. "_color": {
  5992. "__type__": "cc.Color",
  5993. "r": 201,
  5994. "g": 73,
  5995. "b": 36,
  5996. "a": 255
  5997. },
  5998. "_contentSize": {
  5999. "__type__": "cc.Size",
  6000. "width": 280,
  6001. "height": 60
  6002. },
  6003. "_anchorPoint": {
  6004. "__type__": "cc.Vec2",
  6005. "x": 0.5,
  6006. "y": 0.5
  6007. },
  6008. "_trs": {
  6009. "__type__": "TypedArray",
  6010. "ctor": "Float64Array",
  6011. "array": [
  6012. 0,
  6013. 0,
  6014. 0,
  6015. 0,
  6016. 0,
  6017. 0,
  6018. 1,
  6019. 1,
  6020. 1,
  6021. 1
  6022. ]
  6023. },
  6024. "_eulerAngles": {
  6025. "__type__": "cc.Vec3",
  6026. "x": 0,
  6027. "y": 0,
  6028. "z": 0
  6029. },
  6030. "_skewX": 0,
  6031. "_skewY": 0,
  6032. "_is3DNode": false,
  6033. "_groupIndex": 0,
  6034. "groupIndex": 0,
  6035. "_id": ""
  6036. },
  6037. {
  6038. "__type__": "cc.Label",
  6039. "_name": "",
  6040. "_objFlags": 0,
  6041. "node": {
  6042. "__id__": 156
  6043. },
  6044. "_enabled": true,
  6045. "_materials": [
  6046. {
  6047. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6048. }
  6049. ],
  6050. "_srcBlendFactor": 770,
  6051. "_dstBlendFactor": 771,
  6052. "_string": "",
  6053. "_N$string": "",
  6054. "_fontSize": 30,
  6055. "_lineHeight": 32,
  6056. "_enableWrapText": false,
  6057. "_N$file": {
  6058. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  6059. },
  6060. "_isSystemFontUsed": false,
  6061. "_spacingX": 0,
  6062. "_batchAsBitmap": false,
  6063. "_styleFlags": 0,
  6064. "_underlineHeight": 0,
  6065. "_N$horizontalAlign": 0,
  6066. "_N$verticalAlign": 1,
  6067. "_N$fontFamily": "",
  6068. "_N$overflow": 1,
  6069. "_N$cacheMode": 0,
  6070. "_id": ""
  6071. },
  6072. {
  6073. "__type__": "cc.PrefabInfo",
  6074. "root": {
  6075. "__id__": 1
  6076. },
  6077. "asset": {
  6078. "__id__": 0
  6079. },
  6080. "fileId": "20N7RJsutN4ra14SHdNL3c",
  6081. "sync": false
  6082. },
  6083. {
  6084. "__type__": "cc.Node",
  6085. "_name": "PLACEHOLDER_LABEL",
  6086. "_objFlags": 0,
  6087. "_parent": {
  6088. "__id__": 152
  6089. },
  6090. "_children": [],
  6091. "_active": true,
  6092. "_components": [
  6093. {
  6094. "__id__": 160
  6095. }
  6096. ],
  6097. "_prefab": {
  6098. "__id__": 161
  6099. },
  6100. "_opacity": 255,
  6101. "_color": {
  6102. "__type__": "cc.Color",
  6103. "r": 202,
  6104. "g": 140,
  6105. "b": 97,
  6106. "a": 255
  6107. },
  6108. "_contentSize": {
  6109. "__type__": "cc.Size",
  6110. "width": 280,
  6111. "height": 60
  6112. },
  6113. "_anchorPoint": {
  6114. "__type__": "cc.Vec2",
  6115. "x": 0.5,
  6116. "y": 0.5
  6117. },
  6118. "_trs": {
  6119. "__type__": "TypedArray",
  6120. "ctor": "Float64Array",
  6121. "array": [
  6122. 0,
  6123. 0,
  6124. 0,
  6125. 0,
  6126. 0,
  6127. 0,
  6128. 1,
  6129. 1,
  6130. 1,
  6131. 1
  6132. ]
  6133. },
  6134. "_eulerAngles": {
  6135. "__type__": "cc.Vec3",
  6136. "x": 0,
  6137. "y": 0,
  6138. "z": 0
  6139. },
  6140. "_skewX": 0,
  6141. "_skewY": 0,
  6142. "_is3DNode": false,
  6143. "_groupIndex": 0,
  6144. "groupIndex": 0,
  6145. "_id": ""
  6146. },
  6147. {
  6148. "__type__": "cc.Label",
  6149. "_name": "",
  6150. "_objFlags": 0,
  6151. "node": {
  6152. "__id__": 159
  6153. },
  6154. "_enabled": true,
  6155. "_materials": [
  6156. {
  6157. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6158. }
  6159. ],
  6160. "_srcBlendFactor": 770,
  6161. "_dstBlendFactor": 771,
  6162. "_string": "請輸入驗證碼",
  6163. "_N$string": "請輸入驗證碼",
  6164. "_fontSize": 30,
  6165. "_lineHeight": 32,
  6166. "_enableWrapText": false,
  6167. "_N$file": {
  6168. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  6169. },
  6170. "_isSystemFontUsed": false,
  6171. "_spacingX": 0,
  6172. "_batchAsBitmap": false,
  6173. "_styleFlags": 0,
  6174. "_underlineHeight": 0,
  6175. "_N$horizontalAlign": 0,
  6176. "_N$verticalAlign": 1,
  6177. "_N$fontFamily": "Arial",
  6178. "_N$overflow": 1,
  6179. "_N$cacheMode": 0,
  6180. "_id": ""
  6181. },
  6182. {
  6183. "__type__": "cc.PrefabInfo",
  6184. "root": {
  6185. "__id__": 1
  6186. },
  6187. "asset": {
  6188. "__id__": 0
  6189. },
  6190. "fileId": "41QHEjsyNH6YF5z0JwjHOf",
  6191. "sync": false
  6192. },
  6193. {
  6194. "__type__": "cc.EditBox",
  6195. "_name": "",
  6196. "_objFlags": 0,
  6197. "node": {
  6198. "__id__": 152
  6199. },
  6200. "_enabled": true,
  6201. "_string": "",
  6202. "returnType": 0,
  6203. "maxLength": 6,
  6204. "_tabIndex": 0,
  6205. "editingDidBegan": [],
  6206. "textChanged": [],
  6207. "editingDidEnded": [],
  6208. "editingReturn": [],
  6209. "_N$textLabel": {
  6210. "__id__": 157
  6211. },
  6212. "_N$placeholderLabel": {
  6213. "__id__": 160
  6214. },
  6215. "_N$background": {
  6216. "__id__": 154
  6217. },
  6218. "_N$inputFlag": 5,
  6219. "_N$inputMode": 6,
  6220. "_N$stayOnTop": false,
  6221. "_id": ""
  6222. },
  6223. {
  6224. "__type__": "cc.PrefabInfo",
  6225. "root": {
  6226. "__id__": 1
  6227. },
  6228. "asset": {
  6229. "__id__": 0
  6230. },
  6231. "fileId": "19b5b1EepDk5JcRyDlzkoA",
  6232. "sync": false
  6233. },
  6234. {
  6235. "__type__": "cc.Node",
  6236. "_name": "BtGetCode",
  6237. "_objFlags": 0,
  6238. "_parent": {
  6239. "__id__": 148
  6240. },
  6241. "_children": [],
  6242. "_active": true,
  6243. "_components": [
  6244. {
  6245. "__id__": 165
  6246. },
  6247. {
  6248. "__id__": 167
  6249. }
  6250. ],
  6251. "_prefab": {
  6252. "__id__": 168
  6253. },
  6254. "_opacity": 255,
  6255. "_color": {
  6256. "__type__": "cc.Color",
  6257. "r": 70,
  6258. "g": 178,
  6259. "b": 69,
  6260. "a": 255
  6261. },
  6262. "_contentSize": {
  6263. "__type__": "cc.Size",
  6264. "width": 135,
  6265. "height": 34.02
  6266. },
  6267. "_anchorPoint": {
  6268. "__type__": "cc.Vec2",
  6269. "x": 0.5,
  6270. "y": 0.5
  6271. },
  6272. "_trs": {
  6273. "__type__": "TypedArray",
  6274. "ctor": "Float64Array",
  6275. "array": [
  6276. 412,
  6277. 0,
  6278. 0,
  6279. 0,
  6280. 0,
  6281. 0,
  6282. 1,
  6283. 1,
  6284. 1,
  6285. 1
  6286. ]
  6287. },
  6288. "_eulerAngles": {
  6289. "__type__": "cc.Vec3",
  6290. "x": 0,
  6291. "y": 0,
  6292. "z": 0
  6293. },
  6294. "_skewX": 0,
  6295. "_skewY": 0,
  6296. "_is3DNode": false,
  6297. "_groupIndex": 0,
  6298. "groupIndex": 0,
  6299. "_id": ""
  6300. },
  6301. {
  6302. "__type__": "cc.Button",
  6303. "_name": "",
  6304. "_objFlags": 0,
  6305. "node": {
  6306. "__id__": 164
  6307. },
  6308. "_enabled": true,
  6309. "_normalMaterial": null,
  6310. "_grayMaterial": null,
  6311. "duration": 0,
  6312. "zoomScale": 1.2,
  6313. "clickEvents": [
  6314. {
  6315. "__id__": 166
  6316. }
  6317. ],
  6318. "_N$interactable": true,
  6319. "_N$enableAutoGrayEffect": false,
  6320. "_N$transition": 1,
  6321. "transition": 1,
  6322. "_N$normalColor": {
  6323. "__type__": "cc.Color",
  6324. "r": 70,
  6325. "g": 178,
  6326. "b": 69,
  6327. "a": 255
  6328. },
  6329. "_N$pressedColor": {
  6330. "__type__": "cc.Color",
  6331. "r": 211,
  6332. "g": 211,
  6333. "b": 211,
  6334. "a": 255
  6335. },
  6336. "pressedColor": {
  6337. "__type__": "cc.Color",
  6338. "r": 211,
  6339. "g": 211,
  6340. "b": 211,
  6341. "a": 255
  6342. },
  6343. "_N$hoverColor": {
  6344. "__type__": "cc.Color",
  6345. "r": 255,
  6346. "g": 255,
  6347. "b": 255,
  6348. "a": 255
  6349. },
  6350. "hoverColor": {
  6351. "__type__": "cc.Color",
  6352. "r": 255,
  6353. "g": 255,
  6354. "b": 255,
  6355. "a": 255
  6356. },
  6357. "_N$disabledColor": {
  6358. "__type__": "cc.Color",
  6359. "r": 124,
  6360. "g": 124,
  6361. "b": 124,
  6362. "a": 255
  6363. },
  6364. "_N$normalSprite": null,
  6365. "_N$pressedSprite": null,
  6366. "pressedSprite": null,
  6367. "_N$hoverSprite": null,
  6368. "hoverSprite": null,
  6369. "_N$disabledSprite": null,
  6370. "_N$target": {
  6371. "__id__": 164
  6372. },
  6373. "_id": ""
  6374. },
  6375. {
  6376. "__type__": "cc.ClickEvent",
  6377. "target": {
  6378. "__id__": 123
  6379. },
  6380. "component": "",
  6381. "_componentId": "cd27feRjGRCbLHYCZO0j/d3",
  6382. "handler": "GetVerificationCode",
  6383. "customEventData": ""
  6384. },
  6385. {
  6386. "__type__": "cc.Label",
  6387. "_name": "",
  6388. "_objFlags": 0,
  6389. "node": {
  6390. "__id__": 164
  6391. },
  6392. "_enabled": true,
  6393. "_materials": [
  6394. {
  6395. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6396. }
  6397. ],
  6398. "_srcBlendFactor": 770,
  6399. "_dstBlendFactor": 771,
  6400. "_string": "獲取驗證碼",
  6401. "_N$string": "獲取驗證碼",
  6402. "_fontSize": 27,
  6403. "_lineHeight": 27,
  6404. "_enableWrapText": true,
  6405. "_N$file": null,
  6406. "_isSystemFontUsed": true,
  6407. "_spacingX": 0,
  6408. "_batchAsBitmap": false,
  6409. "_styleFlags": 4,
  6410. "_underlineHeight": 0,
  6411. "_N$horizontalAlign": 0,
  6412. "_N$verticalAlign": 0,
  6413. "_N$fontFamily": "Arial",
  6414. "_N$overflow": 0,
  6415. "_N$cacheMode": 0,
  6416. "_id": ""
  6417. },
  6418. {
  6419. "__type__": "cc.PrefabInfo",
  6420. "root": {
  6421. "__id__": 1
  6422. },
  6423. "asset": {
  6424. "__id__": 0
  6425. },
  6426. "fileId": "3a6UThrItH9b1RikoIA8A6",
  6427. "sync": false
  6428. },
  6429. {
  6430. "__type__": "cc.Label",
  6431. "_name": "",
  6432. "_objFlags": 0,
  6433. "node": {
  6434. "__id__": 148
  6435. },
  6436. "_enabled": true,
  6437. "_materials": [
  6438. {
  6439. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6440. }
  6441. ],
  6442. "_srcBlendFactor": 770,
  6443. "_dstBlendFactor": 771,
  6444. "_string": "驗 證 碼",
  6445. "_N$string": "驗 證 碼",
  6446. "_fontSize": 32,
  6447. "_lineHeight": 32,
  6448. "_enableWrapText": true,
  6449. "_N$file": {
  6450. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  6451. },
  6452. "_isSystemFontUsed": false,
  6453. "_spacingX": 0,
  6454. "_batchAsBitmap": false,
  6455. "_styleFlags": 0,
  6456. "_underlineHeight": 0,
  6457. "_N$horizontalAlign": 1,
  6458. "_N$verticalAlign": 1,
  6459. "_N$fontFamily": "Arial",
  6460. "_N$overflow": 0,
  6461. "_N$cacheMode": 0,
  6462. "_id": ""
  6463. },
  6464. {
  6465. "__type__": "cc.PrefabInfo",
  6466. "root": {
  6467. "__id__": 1
  6468. },
  6469. "asset": {
  6470. "__id__": 0
  6471. },
  6472. "fileId": "4aA+74LVlOJqPb9PoFe9lh",
  6473. "sync": false
  6474. },
  6475. {
  6476. "__type__": "cd27feRjGRCbLHYCZO0j/d3",
  6477. "_name": "",
  6478. "_objFlags": 0,
  6479. "node": {
  6480. "__id__": 123
  6481. },
  6482. "_enabled": true,
  6483. "m_EdPhone": {
  6484. "__id__": 144
  6485. },
  6486. "m_EdCode": {
  6487. "__id__": 162
  6488. },
  6489. "m_BtGetCode": {
  6490. "__id__": 165
  6491. },
  6492. "_id": ""
  6493. },
  6494. {
  6495. "__type__": "cc.PrefabInfo",
  6496. "root": {
  6497. "__id__": 1
  6498. },
  6499. "asset": {
  6500. "__id__": 0
  6501. },
  6502. "fileId": "d9462WaNhNnYDjQepbdXQ4",
  6503. "sync": false
  6504. },
  6505. {
  6506. "__type__": "cc.Node",
  6507. "_name": "RebindPhone",
  6508. "_objFlags": 0,
  6509. "_parent": {
  6510. "__id__": 1
  6511. },
  6512. "_children": [
  6513. {
  6514. "__id__": 174
  6515. },
  6516. {
  6517. "__id__": 177
  6518. },
  6519. {
  6520. "__id__": 180
  6521. },
  6522. {
  6523. "__id__": 233
  6524. }
  6525. ],
  6526. "_active": true,
  6527. "_components": [],
  6528. "_prefab": {
  6529. "__id__": 280
  6530. },
  6531. "_opacity": 255,
  6532. "_color": {
  6533. "__type__": "cc.Color",
  6534. "r": 255,
  6535. "g": 255,
  6536. "b": 255,
  6537. "a": 255
  6538. },
  6539. "_contentSize": {
  6540. "__type__": "cc.Size",
  6541. "width": 0,
  6542. "height": 0
  6543. },
  6544. "_anchorPoint": {
  6545. "__type__": "cc.Vec2",
  6546. "x": 0.5,
  6547. "y": 0.5
  6548. },
  6549. "_trs": {
  6550. "__type__": "TypedArray",
  6551. "ctor": "Float64Array",
  6552. "array": [
  6553. 0,
  6554. 0,
  6555. 0,
  6556. 0,
  6557. 0,
  6558. 0,
  6559. 1,
  6560. 1,
  6561. 1,
  6562. 1
  6563. ]
  6564. },
  6565. "_eulerAngles": {
  6566. "__type__": "cc.Vec3",
  6567. "x": 0,
  6568. "y": 0,
  6569. "z": 0
  6570. },
  6571. "_skewX": 0,
  6572. "_skewY": 0,
  6573. "_is3DNode": false,
  6574. "_groupIndex": 0,
  6575. "groupIndex": 0,
  6576. "_id": ""
  6577. },
  6578. {
  6579. "__type__": "cc.Node",
  6580. "_name": "BGT3",
  6581. "_objFlags": 0,
  6582. "_parent": {
  6583. "__id__": 173
  6584. },
  6585. "_children": [],
  6586. "_active": true,
  6587. "_components": [
  6588. {
  6589. "__id__": 175
  6590. }
  6591. ],
  6592. "_prefab": {
  6593. "__id__": 176
  6594. },
  6595. "_opacity": 255,
  6596. "_color": {
  6597. "__type__": "cc.Color",
  6598. "r": 255,
  6599. "g": 255,
  6600. "b": 255,
  6601. "a": 255
  6602. },
  6603. "_contentSize": {
  6604. "__type__": "cc.Size",
  6605. "width": 421,
  6606. "height": 28
  6607. },
  6608. "_anchorPoint": {
  6609. "__type__": "cc.Vec2",
  6610. "x": 0.5,
  6611. "y": 0.5
  6612. },
  6613. "_trs": {
  6614. "__type__": "TypedArray",
  6615. "ctor": "Float64Array",
  6616. "array": [
  6617. 0,
  6618. 221.017,
  6619. 0,
  6620. 0,
  6621. 0,
  6622. 0,
  6623. 1,
  6624. 1,
  6625. 1,
  6626. 1
  6627. ]
  6628. },
  6629. "_eulerAngles": {
  6630. "__type__": "cc.Vec3",
  6631. "x": 0,
  6632. "y": 0,
  6633. "z": 0
  6634. },
  6635. "_skewX": 0,
  6636. "_skewY": 0,
  6637. "_is3DNode": false,
  6638. "_groupIndex": 0,
  6639. "groupIndex": 0,
  6640. "_id": ""
  6641. },
  6642. {
  6643. "__type__": "cc.Sprite",
  6644. "_name": "",
  6645. "_objFlags": 0,
  6646. "node": {
  6647. "__id__": 174
  6648. },
  6649. "_enabled": true,
  6650. "_materials": [
  6651. {
  6652. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6653. }
  6654. ],
  6655. "_srcBlendFactor": 770,
  6656. "_dstBlendFactor": 771,
  6657. "_spriteFrame": {
  6658. "__uuid__": "6b58055b-5b84-4f90-9ed8-e9097240f3a5"
  6659. },
  6660. "_type": 0,
  6661. "_sizeMode": 1,
  6662. "_fillType": 0,
  6663. "_fillCenter": {
  6664. "__type__": "cc.Vec2",
  6665. "x": 0,
  6666. "y": 0
  6667. },
  6668. "_fillStart": 0,
  6669. "_fillRange": 0,
  6670. "_isTrimmedMode": true,
  6671. "_atlas": null,
  6672. "_id": ""
  6673. },
  6674. {
  6675. "__type__": "cc.PrefabInfo",
  6676. "root": {
  6677. "__id__": 1
  6678. },
  6679. "asset": {
  6680. "__id__": 0
  6681. },
  6682. "fileId": "9fxV7l3edOJruh7WDqosyN",
  6683. "sync": false
  6684. },
  6685. {
  6686. "__type__": "cc.Node",
  6687. "_name": "TReBind",
  6688. "_objFlags": 0,
  6689. "_parent": {
  6690. "__id__": 173
  6691. },
  6692. "_children": [],
  6693. "_active": true,
  6694. "_components": [
  6695. {
  6696. "__id__": 178
  6697. }
  6698. ],
  6699. "_prefab": {
  6700. "__id__": 179
  6701. },
  6702. "_opacity": 255,
  6703. "_color": {
  6704. "__type__": "cc.Color",
  6705. "r": 255,
  6706. "g": 255,
  6707. "b": 255,
  6708. "a": 255
  6709. },
  6710. "_contentSize": {
  6711. "__type__": "cc.Size",
  6712. "width": 178,
  6713. "height": 51
  6714. },
  6715. "_anchorPoint": {
  6716. "__type__": "cc.Vec2",
  6717. "x": 0.5,
  6718. "y": 0.5
  6719. },
  6720. "_trs": {
  6721. "__type__": "TypedArray",
  6722. "ctor": "Float64Array",
  6723. "array": [
  6724. 0,
  6725. 220,
  6726. 0,
  6727. 0,
  6728. 0,
  6729. 0,
  6730. 1,
  6731. 1,
  6732. 1,
  6733. 1
  6734. ]
  6735. },
  6736. "_eulerAngles": {
  6737. "__type__": "cc.Vec3",
  6738. "x": 0,
  6739. "y": 0,
  6740. "z": 0
  6741. },
  6742. "_skewX": 0,
  6743. "_skewY": 0,
  6744. "_is3DNode": false,
  6745. "_groupIndex": 0,
  6746. "groupIndex": 0,
  6747. "_id": ""
  6748. },
  6749. {
  6750. "__type__": "cc.Sprite",
  6751. "_name": "",
  6752. "_objFlags": 0,
  6753. "node": {
  6754. "__id__": 177
  6755. },
  6756. "_enabled": true,
  6757. "_materials": [
  6758. {
  6759. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6760. }
  6761. ],
  6762. "_srcBlendFactor": 770,
  6763. "_dstBlendFactor": 771,
  6764. "_spriteFrame": {
  6765. "__uuid__": "7b3e8ffb-a96d-4a89-be76-e338d16c99e6"
  6766. },
  6767. "_type": 0,
  6768. "_sizeMode": 1,
  6769. "_fillType": 0,
  6770. "_fillCenter": {
  6771. "__type__": "cc.Vec2",
  6772. "x": 0,
  6773. "y": 0
  6774. },
  6775. "_fillStart": 0,
  6776. "_fillRange": 0,
  6777. "_isTrimmedMode": true,
  6778. "_atlas": null,
  6779. "_id": ""
  6780. },
  6781. {
  6782. "__type__": "cc.PrefabInfo",
  6783. "root": {
  6784. "__id__": 1
  6785. },
  6786. "asset": {
  6787. "__id__": 0
  6788. },
  6789. "fileId": "41kRVIurhER7LWmrtC3ywF",
  6790. "sync": false
  6791. },
  6792. {
  6793. "__type__": "cc.Node",
  6794. "_name": "Old",
  6795. "_objFlags": 0,
  6796. "_parent": {
  6797. "__id__": 173
  6798. },
  6799. "_children": [
  6800. {
  6801. "__id__": 181
  6802. },
  6803. {
  6804. "__id__": 184
  6805. },
  6806. {
  6807. "__id__": 205
  6808. }
  6809. ],
  6810. "_active": true,
  6811. "_components": [
  6812. {
  6813. "__id__": 231
  6814. }
  6815. ],
  6816. "_prefab": {
  6817. "__id__": 232
  6818. },
  6819. "_opacity": 255,
  6820. "_color": {
  6821. "__type__": "cc.Color",
  6822. "r": 255,
  6823. "g": 255,
  6824. "b": 255,
  6825. "a": 255
  6826. },
  6827. "_contentSize": {
  6828. "__type__": "cc.Size",
  6829. "width": 0,
  6830. "height": 0
  6831. },
  6832. "_anchorPoint": {
  6833. "__type__": "cc.Vec2",
  6834. "x": 0.5,
  6835. "y": 0.5
  6836. },
  6837. "_trs": {
  6838. "__type__": "TypedArray",
  6839. "ctor": "Float64Array",
  6840. "array": [
  6841. 0,
  6842. 18.054,
  6843. 0,
  6844. 0,
  6845. 0,
  6846. 0,
  6847. 1,
  6848. 1,
  6849. 1,
  6850. 1
  6851. ]
  6852. },
  6853. "_eulerAngles": {
  6854. "__type__": "cc.Vec3",
  6855. "x": 0,
  6856. "y": 0,
  6857. "z": 0
  6858. },
  6859. "_skewX": 0,
  6860. "_skewY": 0,
  6861. "_is3DNode": false,
  6862. "_groupIndex": 0,
  6863. "groupIndex": 0,
  6864. "_id": ""
  6865. },
  6866. {
  6867. "__type__": "cc.Node",
  6868. "_name": "LabPNum",
  6869. "_objFlags": 0,
  6870. "_parent": {
  6871. "__id__": 180
  6872. },
  6873. "_children": [],
  6874. "_active": true,
  6875. "_components": [
  6876. {
  6877. "__id__": 182
  6878. }
  6879. ],
  6880. "_prefab": {
  6881. "__id__": 183
  6882. },
  6883. "_opacity": 255,
  6884. "_color": {
  6885. "__type__": "cc.Color",
  6886. "r": 211,
  6887. "g": 187,
  6888. "b": 241,
  6889. "a": 255
  6890. },
  6891. "_contentSize": {
  6892. "__type__": "cc.Size",
  6893. "width": 410,
  6894. "height": 60
  6895. },
  6896. "_anchorPoint": {
  6897. "__type__": "cc.Vec2",
  6898. "x": 0.5,
  6899. "y": 0.5
  6900. },
  6901. "_trs": {
  6902. "__type__": "TypedArray",
  6903. "ctor": "Float64Array",
  6904. "array": [
  6905. 70,
  6906. 120,
  6907. 0,
  6908. 0,
  6909. 0,
  6910. 0,
  6911. 1,
  6912. 1,
  6913. 1,
  6914. 1
  6915. ]
  6916. },
  6917. "_eulerAngles": {
  6918. "__type__": "cc.Vec3",
  6919. "x": 0,
  6920. "y": 0,
  6921. "z": 0
  6922. },
  6923. "_skewX": 0,
  6924. "_skewY": 0,
  6925. "_is3DNode": false,
  6926. "_groupIndex": 0,
  6927. "groupIndex": 0,
  6928. "_id": ""
  6929. },
  6930. {
  6931. "__type__": "cc.Label",
  6932. "_name": "",
  6933. "_objFlags": 0,
  6934. "node": {
  6935. "__id__": 181
  6936. },
  6937. "_enabled": true,
  6938. "_materials": [
  6939. {
  6940. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  6941. }
  6942. ],
  6943. "_srcBlendFactor": 770,
  6944. "_dstBlendFactor": 771,
  6945. "_string": "",
  6946. "_N$string": "",
  6947. "_fontSize": 32,
  6948. "_lineHeight": 40,
  6949. "_enableWrapText": false,
  6950. "_N$file": null,
  6951. "_isSystemFontUsed": true,
  6952. "_spacingX": 0,
  6953. "_batchAsBitmap": false,
  6954. "_styleFlags": 0,
  6955. "_underlineHeight": 0,
  6956. "_N$horizontalAlign": 0,
  6957. "_N$verticalAlign": 1,
  6958. "_N$fontFamily": "",
  6959. "_N$overflow": 1,
  6960. "_N$cacheMode": 0,
  6961. "_id": ""
  6962. },
  6963. {
  6964. "__type__": "cc.PrefabInfo",
  6965. "root": {
  6966. "__id__": 1
  6967. },
  6968. "asset": {
  6969. "__id__": 0
  6970. },
  6971. "fileId": "05vM4jK3RD/LNfyncvMdw4",
  6972. "sync": false
  6973. },
  6974. {
  6975. "__type__": "cc.Node",
  6976. "_name": "PhoneNum",
  6977. "_objFlags": 0,
  6978. "_parent": {
  6979. "__id__": 180
  6980. },
  6981. "_children": [
  6982. {
  6983. "__id__": 185
  6984. },
  6985. {
  6986. "__id__": 188
  6987. },
  6988. {
  6989. "__id__": 200
  6990. }
  6991. ],
  6992. "_active": true,
  6993. "_components": [
  6994. {
  6995. "__id__": 203
  6996. }
  6997. ],
  6998. "_prefab": {
  6999. "__id__": 204
  7000. },
  7001. "_opacity": 255,
  7002. "_color": {
  7003. "__type__": "cc.Color",
  7004. "r": 201,
  7005. "g": 73,
  7006. "b": 36,
  7007. "a": 255
  7008. },
  7009. "_contentSize": {
  7010. "__type__": "cc.Size",
  7011. "width": 165,
  7012. "height": 40.32
  7013. },
  7014. "_anchorPoint": {
  7015. "__type__": "cc.Vec2",
  7016. "x": 1,
  7017. "y": 0.5
  7018. },
  7019. "_trs": {
  7020. "__type__": "TypedArray",
  7021. "ctor": "Float64Array",
  7022. "array": [
  7023. -140,
  7024. 120,
  7025. 0,
  7026. 0,
  7027. 0,
  7028. 0,
  7029. 1,
  7030. 1,
  7031. 1,
  7032. 1
  7033. ]
  7034. },
  7035. "_eulerAngles": {
  7036. "__type__": "cc.Vec3",
  7037. "x": 0,
  7038. "y": 0,
  7039. "z": 0
  7040. },
  7041. "_skewX": 0,
  7042. "_skewY": 0,
  7043. "_is3DNode": false,
  7044. "_groupIndex": 0,
  7045. "groupIndex": 0,
  7046. "_id": ""
  7047. },
  7048. {
  7049. "__type__": "cc.Node",
  7050. "_name": "iconPhone",
  7051. "_objFlags": 0,
  7052. "_parent": {
  7053. "__id__": 184
  7054. },
  7055. "_children": [],
  7056. "_active": true,
  7057. "_components": [
  7058. {
  7059. "__id__": 186
  7060. }
  7061. ],
  7062. "_prefab": {
  7063. "__id__": 187
  7064. },
  7065. "_opacity": 255,
  7066. "_color": {
  7067. "__type__": "cc.Color",
  7068. "r": 255,
  7069. "g": 255,
  7070. "b": 255,
  7071. "a": 255
  7072. },
  7073. "_contentSize": {
  7074. "__type__": "cc.Size",
  7075. "width": 28,
  7076. "height": 41
  7077. },
  7078. "_anchorPoint": {
  7079. "__type__": "cc.Vec2",
  7080. "x": 0.5,
  7081. "y": 0.5
  7082. },
  7083. "_trs": {
  7084. "__type__": "TypedArray",
  7085. "ctor": "Float64Array",
  7086. "array": [
  7087. -185,
  7088. 0,
  7089. 0,
  7090. 0,
  7091. 0,
  7092. 0,
  7093. 1,
  7094. 1,
  7095. 1,
  7096. 1
  7097. ]
  7098. },
  7099. "_eulerAngles": {
  7100. "__type__": "cc.Vec3",
  7101. "x": 0,
  7102. "y": 0,
  7103. "z": 0
  7104. },
  7105. "_skewX": 0,
  7106. "_skewY": 0,
  7107. "_is3DNode": false,
  7108. "_groupIndex": 0,
  7109. "groupIndex": 0,
  7110. "_id": ""
  7111. },
  7112. {
  7113. "__type__": "cc.Sprite",
  7114. "_name": "",
  7115. "_objFlags": 0,
  7116. "node": {
  7117. "__id__": 185
  7118. },
  7119. "_enabled": true,
  7120. "_materials": [
  7121. {
  7122. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7123. }
  7124. ],
  7125. "_srcBlendFactor": 770,
  7126. "_dstBlendFactor": 771,
  7127. "_spriteFrame": {
  7128. "__uuid__": "1b39859a-2979-4b24-bca5-2a400026e390"
  7129. },
  7130. "_type": 0,
  7131. "_sizeMode": 1,
  7132. "_fillType": 0,
  7133. "_fillCenter": {
  7134. "__type__": "cc.Vec2",
  7135. "x": 0,
  7136. "y": 0
  7137. },
  7138. "_fillStart": 0,
  7139. "_fillRange": 0,
  7140. "_isTrimmedMode": true,
  7141. "_atlas": null,
  7142. "_id": ""
  7143. },
  7144. {
  7145. "__type__": "cc.PrefabInfo",
  7146. "root": {
  7147. "__id__": 1
  7148. },
  7149. "asset": {
  7150. "__id__": 0
  7151. },
  7152. "fileId": "9cmT4RenlGKbXSlahpOx7i",
  7153. "sync": false
  7154. },
  7155. {
  7156. "__type__": "cc.Node",
  7157. "_name": "input",
  7158. "_objFlags": 0,
  7159. "_parent": {
  7160. "__id__": 184
  7161. },
  7162. "_children": [
  7163. {
  7164. "__id__": 189
  7165. },
  7166. {
  7167. "__id__": 192
  7168. },
  7169. {
  7170. "__id__": 195
  7171. }
  7172. ],
  7173. "_active": true,
  7174. "_components": [
  7175. {
  7176. "__id__": 198
  7177. }
  7178. ],
  7179. "_prefab": {
  7180. "__id__": 199
  7181. },
  7182. "_opacity": 255,
  7183. "_color": {
  7184. "__type__": "cc.Color",
  7185. "r": 255,
  7186. "g": 255,
  7187. "b": 255,
  7188. "a": 255
  7189. },
  7190. "_contentSize": {
  7191. "__type__": "cc.Size",
  7192. "width": 410,
  7193. "height": 60
  7194. },
  7195. "_anchorPoint": {
  7196. "__type__": "cc.Vec2",
  7197. "x": 0.5,
  7198. "y": 0.5
  7199. },
  7200. "_trs": {
  7201. "__type__": "TypedArray",
  7202. "ctor": "Float64Array",
  7203. "array": [
  7204. 240,
  7205. 0,
  7206. 0,
  7207. 0,
  7208. 0,
  7209. 0,
  7210. 1,
  7211. 1,
  7212. 1,
  7213. 1
  7214. ]
  7215. },
  7216. "_eulerAngles": {
  7217. "__type__": "cc.Vec3",
  7218. "x": 0,
  7219. "y": 0,
  7220. "z": 0
  7221. },
  7222. "_skewX": 0,
  7223. "_skewY": 0,
  7224. "_is3DNode": false,
  7225. "_groupIndex": 0,
  7226. "groupIndex": 0,
  7227. "_id": ""
  7228. },
  7229. {
  7230. "__type__": "cc.Node",
  7231. "_name": "BACKGROUND_SPRITE",
  7232. "_objFlags": 0,
  7233. "_parent": {
  7234. "__id__": 188
  7235. },
  7236. "_children": [],
  7237. "_active": true,
  7238. "_components": [
  7239. {
  7240. "__id__": 190
  7241. }
  7242. ],
  7243. "_prefab": {
  7244. "__id__": 191
  7245. },
  7246. "_opacity": 255,
  7247. "_color": {
  7248. "__type__": "cc.Color",
  7249. "r": 255,
  7250. "g": 255,
  7251. "b": 255,
  7252. "a": 255
  7253. },
  7254. "_contentSize": {
  7255. "__type__": "cc.Size",
  7256. "width": 450,
  7257. "height": 60
  7258. },
  7259. "_anchorPoint": {
  7260. "__type__": "cc.Vec2",
  7261. "x": 0.5,
  7262. "y": 0.5
  7263. },
  7264. "_trs": {
  7265. "__type__": "TypedArray",
  7266. "ctor": "Float64Array",
  7267. "array": [
  7268. 0,
  7269. 0,
  7270. 0,
  7271. 0,
  7272. 0,
  7273. 0,
  7274. 1,
  7275. 1,
  7276. 1,
  7277. 1
  7278. ]
  7279. },
  7280. "_eulerAngles": {
  7281. "__type__": "cc.Vec3",
  7282. "x": 0,
  7283. "y": 0,
  7284. "z": 0
  7285. },
  7286. "_skewX": 0,
  7287. "_skewY": 0,
  7288. "_is3DNode": false,
  7289. "_groupIndex": 0,
  7290. "groupIndex": 0,
  7291. "_id": ""
  7292. },
  7293. {
  7294. "__type__": "cc.Sprite",
  7295. "_name": "",
  7296. "_objFlags": 0,
  7297. "node": {
  7298. "__id__": 189
  7299. },
  7300. "_enabled": true,
  7301. "_materials": [
  7302. {
  7303. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7304. }
  7305. ],
  7306. "_srcBlendFactor": 770,
  7307. "_dstBlendFactor": 771,
  7308. "_spriteFrame": {
  7309. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  7310. },
  7311. "_type": 1,
  7312. "_sizeMode": 0,
  7313. "_fillType": 0,
  7314. "_fillCenter": {
  7315. "__type__": "cc.Vec2",
  7316. "x": 0,
  7317. "y": 0
  7318. },
  7319. "_fillStart": 0,
  7320. "_fillRange": 0,
  7321. "_isTrimmedMode": true,
  7322. "_atlas": null,
  7323. "_id": ""
  7324. },
  7325. {
  7326. "__type__": "cc.PrefabInfo",
  7327. "root": {
  7328. "__id__": 1
  7329. },
  7330. "asset": {
  7331. "__id__": 0
  7332. },
  7333. "fileId": "80AD/1sPNFwoBfvTDoKO94",
  7334. "sync": false
  7335. },
  7336. {
  7337. "__type__": "cc.Node",
  7338. "_name": "TEXT_LABEL",
  7339. "_objFlags": 0,
  7340. "_parent": {
  7341. "__id__": 188
  7342. },
  7343. "_children": [],
  7344. "_active": false,
  7345. "_components": [
  7346. {
  7347. "__id__": 193
  7348. }
  7349. ],
  7350. "_prefab": {
  7351. "__id__": 194
  7352. },
  7353. "_opacity": 255,
  7354. "_color": {
  7355. "__type__": "cc.Color",
  7356. "r": 201,
  7357. "g": 73,
  7358. "b": 36,
  7359. "a": 255
  7360. },
  7361. "_contentSize": {
  7362. "__type__": "cc.Size",
  7363. "width": 240,
  7364. "height": 60
  7365. },
  7366. "_anchorPoint": {
  7367. "__type__": "cc.Vec2",
  7368. "x": 0.5,
  7369. "y": 0.5
  7370. },
  7371. "_trs": {
  7372. "__type__": "TypedArray",
  7373. "ctor": "Float64Array",
  7374. "array": [
  7375. -85,
  7376. 0,
  7377. 0,
  7378. 0,
  7379. 0,
  7380. 0,
  7381. 1,
  7382. 1,
  7383. 1,
  7384. 1
  7385. ]
  7386. },
  7387. "_eulerAngles": {
  7388. "__type__": "cc.Vec3",
  7389. "x": 0,
  7390. "y": 0,
  7391. "z": 0
  7392. },
  7393. "_skewX": 0,
  7394. "_skewY": 0,
  7395. "_is3DNode": false,
  7396. "_groupIndex": 0,
  7397. "groupIndex": 0,
  7398. "_id": ""
  7399. },
  7400. {
  7401. "__type__": "cc.Label",
  7402. "_name": "",
  7403. "_objFlags": 0,
  7404. "node": {
  7405. "__id__": 192
  7406. },
  7407. "_enabled": true,
  7408. "_materials": [
  7409. {
  7410. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7411. }
  7412. ],
  7413. "_srcBlendFactor": 770,
  7414. "_dstBlendFactor": 771,
  7415. "_string": "",
  7416. "_N$string": "",
  7417. "_fontSize": 30,
  7418. "_lineHeight": 32,
  7419. "_enableWrapText": false,
  7420. "_N$file": {
  7421. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  7422. },
  7423. "_isSystemFontUsed": false,
  7424. "_spacingX": 0,
  7425. "_batchAsBitmap": false,
  7426. "_styleFlags": 0,
  7427. "_underlineHeight": 0,
  7428. "_N$horizontalAlign": 0,
  7429. "_N$verticalAlign": 1,
  7430. "_N$fontFamily": "Arial",
  7431. "_N$overflow": 1,
  7432. "_N$cacheMode": 0,
  7433. "_id": ""
  7434. },
  7435. {
  7436. "__type__": "cc.PrefabInfo",
  7437. "root": {
  7438. "__id__": 1
  7439. },
  7440. "asset": {
  7441. "__id__": 0
  7442. },
  7443. "fileId": "0aG3XW9bxM8Y5/EhHpYFI8",
  7444. "sync": false
  7445. },
  7446. {
  7447. "__type__": "cc.Node",
  7448. "_name": "PLACEHOLDER_LABEL",
  7449. "_objFlags": 0,
  7450. "_parent": {
  7451. "__id__": 188
  7452. },
  7453. "_children": [],
  7454. "_active": true,
  7455. "_components": [
  7456. {
  7457. "__id__": 196
  7458. }
  7459. ],
  7460. "_prefab": {
  7461. "__id__": 197
  7462. },
  7463. "_opacity": 255,
  7464. "_color": {
  7465. "__type__": "cc.Color",
  7466. "r": 202,
  7467. "g": 140,
  7468. "b": 97,
  7469. "a": 255
  7470. },
  7471. "_contentSize": {
  7472. "__type__": "cc.Size",
  7473. "width": 410,
  7474. "height": 60
  7475. },
  7476. "_anchorPoint": {
  7477. "__type__": "cc.Vec2",
  7478. "x": 0.5,
  7479. "y": 0.5
  7480. },
  7481. "_trs": {
  7482. "__type__": "TypedArray",
  7483. "ctor": "Float64Array",
  7484. "array": [
  7485. 0,
  7486. 0,
  7487. 0,
  7488. 0,
  7489. 0,
  7490. 0,
  7491. 1,
  7492. 1,
  7493. 1,
  7494. 1
  7495. ]
  7496. },
  7497. "_eulerAngles": {
  7498. "__type__": "cc.Vec3",
  7499. "x": 0,
  7500. "y": 0,
  7501. "z": 0
  7502. },
  7503. "_skewX": 0,
  7504. "_skewY": 0,
  7505. "_is3DNode": false,
  7506. "_groupIndex": 0,
  7507. "groupIndex": 0,
  7508. "_id": ""
  7509. },
  7510. {
  7511. "__type__": "cc.Label",
  7512. "_name": "",
  7513. "_objFlags": 0,
  7514. "node": {
  7515. "__id__": 195
  7516. },
  7517. "_enabled": true,
  7518. "_materials": [
  7519. {
  7520. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7521. }
  7522. ],
  7523. "_srcBlendFactor": 770,
  7524. "_dstBlendFactor": 771,
  7525. "_string": "請輸入手機號碼",
  7526. "_N$string": "請輸入手機號碼",
  7527. "_fontSize": 30,
  7528. "_lineHeight": 32,
  7529. "_enableWrapText": false,
  7530. "_N$file": {
  7531. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  7532. },
  7533. "_isSystemFontUsed": false,
  7534. "_spacingX": 0,
  7535. "_batchAsBitmap": false,
  7536. "_styleFlags": 0,
  7537. "_underlineHeight": 0,
  7538. "_N$horizontalAlign": 0,
  7539. "_N$verticalAlign": 1,
  7540. "_N$fontFamily": "Arial",
  7541. "_N$overflow": 1,
  7542. "_N$cacheMode": 0,
  7543. "_id": ""
  7544. },
  7545. {
  7546. "__type__": "cc.PrefabInfo",
  7547. "root": {
  7548. "__id__": 1
  7549. },
  7550. "asset": {
  7551. "__id__": 0
  7552. },
  7553. "fileId": "e7qLmmbnlMfaTXY28tNIAp",
  7554. "sync": false
  7555. },
  7556. {
  7557. "__type__": "cc.EditBox",
  7558. "_name": "",
  7559. "_objFlags": 0,
  7560. "node": {
  7561. "__id__": 188
  7562. },
  7563. "_enabled": true,
  7564. "_string": "",
  7565. "returnType": 0,
  7566. "maxLength": 11,
  7567. "_tabIndex": 0,
  7568. "editingDidBegan": [],
  7569. "textChanged": [],
  7570. "editingDidEnded": [],
  7571. "editingReturn": [],
  7572. "_N$textLabel": {
  7573. "__id__": 193
  7574. },
  7575. "_N$placeholderLabel": {
  7576. "__id__": 196
  7577. },
  7578. "_N$background": {
  7579. "__id__": 190
  7580. },
  7581. "_N$inputFlag": 1,
  7582. "_N$inputMode": 6,
  7583. "_N$stayOnTop": false,
  7584. "_id": ""
  7585. },
  7586. {
  7587. "__type__": "cc.PrefabInfo",
  7588. "root": {
  7589. "__id__": 1
  7590. },
  7591. "asset": {
  7592. "__id__": 0
  7593. },
  7594. "fileId": "cdq/S991RJc5E3EeobwYYW",
  7595. "sync": false
  7596. },
  7597. {
  7598. "__type__": "cc.Node",
  7599. "_name": "New Button",
  7600. "_objFlags": 0,
  7601. "_parent": {
  7602. "__id__": 184
  7603. },
  7604. "_children": [],
  7605. "_active": true,
  7606. "_components": [
  7607. {
  7608. "__id__": 201
  7609. }
  7610. ],
  7611. "_prefab": {
  7612. "__id__": 202
  7613. },
  7614. "_opacity": 255,
  7615. "_color": {
  7616. "__type__": "cc.Color",
  7617. "r": 255,
  7618. "g": 255,
  7619. "b": 255,
  7620. "a": 255
  7621. },
  7622. "_contentSize": {
  7623. "__type__": "cc.Size",
  7624. "width": 500,
  7625. "height": 66
  7626. },
  7627. "_anchorPoint": {
  7628. "__type__": "cc.Vec2",
  7629. "x": 0.5,
  7630. "y": 0.5
  7631. },
  7632. "_trs": {
  7633. "__type__": "TypedArray",
  7634. "ctor": "Float64Array",
  7635. "array": [
  7636. 240,
  7637. 0,
  7638. 0,
  7639. 0,
  7640. 0,
  7641. 0,
  7642. 1,
  7643. 1,
  7644. 1,
  7645. 1
  7646. ]
  7647. },
  7648. "_eulerAngles": {
  7649. "__type__": "cc.Vec3",
  7650. "x": 0,
  7651. "y": 0,
  7652. "z": 0
  7653. },
  7654. "_skewX": 0,
  7655. "_skewY": 0,
  7656. "_is3DNode": false,
  7657. "_groupIndex": 0,
  7658. "groupIndex": 0,
  7659. "_id": ""
  7660. },
  7661. {
  7662. "__type__": "cc.Button",
  7663. "_name": "",
  7664. "_objFlags": 0,
  7665. "node": {
  7666. "__id__": 200
  7667. },
  7668. "_enabled": true,
  7669. "_normalMaterial": null,
  7670. "_grayMaterial": null,
  7671. "duration": 0.1,
  7672. "zoomScale": 1.2,
  7673. "clickEvents": [],
  7674. "_N$interactable": true,
  7675. "_N$enableAutoGrayEffect": false,
  7676. "_N$transition": 2,
  7677. "transition": 2,
  7678. "_N$normalColor": {
  7679. "__type__": "cc.Color",
  7680. "r": 230,
  7681. "g": 230,
  7682. "b": 230,
  7683. "a": 255
  7684. },
  7685. "_N$pressedColor": {
  7686. "__type__": "cc.Color",
  7687. "r": 200,
  7688. "g": 200,
  7689. "b": 200,
  7690. "a": 255
  7691. },
  7692. "pressedColor": {
  7693. "__type__": "cc.Color",
  7694. "r": 200,
  7695. "g": 200,
  7696. "b": 200,
  7697. "a": 255
  7698. },
  7699. "_N$hoverColor": {
  7700. "__type__": "cc.Color",
  7701. "r": 255,
  7702. "g": 255,
  7703. "b": 255,
  7704. "a": 255
  7705. },
  7706. "hoverColor": {
  7707. "__type__": "cc.Color",
  7708. "r": 255,
  7709. "g": 255,
  7710. "b": 255,
  7711. "a": 255
  7712. },
  7713. "_N$disabledColor": {
  7714. "__type__": "cc.Color",
  7715. "r": 120,
  7716. "g": 120,
  7717. "b": 120,
  7718. "a": 200
  7719. },
  7720. "_N$normalSprite": {
  7721. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7722. },
  7723. "_N$pressedSprite": {
  7724. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7725. },
  7726. "pressedSprite": {
  7727. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  7728. },
  7729. "_N$hoverSprite": {
  7730. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7731. },
  7732. "hoverSprite": {
  7733. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  7734. },
  7735. "_N$disabledSprite": {
  7736. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  7737. },
  7738. "_N$target": null,
  7739. "_id": ""
  7740. },
  7741. {
  7742. "__type__": "cc.PrefabInfo",
  7743. "root": {
  7744. "__id__": 1
  7745. },
  7746. "asset": {
  7747. "__id__": 0
  7748. },
  7749. "fileId": "3ayQ9BshtM1ZrLu2bknMt0",
  7750. "sync": false
  7751. },
  7752. {
  7753. "__type__": "cc.Label",
  7754. "_name": "",
  7755. "_objFlags": 0,
  7756. "node": {
  7757. "__id__": 184
  7758. },
  7759. "_enabled": true,
  7760. "_materials": [
  7761. {
  7762. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7763. }
  7764. ],
  7765. "_srcBlendFactor": 770,
  7766. "_dstBlendFactor": 771,
  7767. "_string": "原手機號碼:",
  7768. "_N$string": "原手機號碼:",
  7769. "_fontSize": 30,
  7770. "_lineHeight": 32,
  7771. "_enableWrapText": true,
  7772. "_N$file": {
  7773. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  7774. },
  7775. "_isSystemFontUsed": false,
  7776. "_spacingX": 0,
  7777. "_batchAsBitmap": false,
  7778. "_styleFlags": 0,
  7779. "_underlineHeight": 0,
  7780. "_N$horizontalAlign": 1,
  7781. "_N$verticalAlign": 1,
  7782. "_N$fontFamily": "Arial",
  7783. "_N$overflow": 0,
  7784. "_N$cacheMode": 0,
  7785. "_id": ""
  7786. },
  7787. {
  7788. "__type__": "cc.PrefabInfo",
  7789. "root": {
  7790. "__id__": 1
  7791. },
  7792. "asset": {
  7793. "__id__": 0
  7794. },
  7795. "fileId": "cbHJppRllPIIkv53Tn6K3V",
  7796. "sync": false
  7797. },
  7798. {
  7799. "__type__": "cc.Node",
  7800. "_name": "VerCode",
  7801. "_objFlags": 0,
  7802. "_parent": {
  7803. "__id__": 180
  7804. },
  7805. "_children": [
  7806. {
  7807. "__id__": 206
  7808. },
  7809. {
  7810. "__id__": 209
  7811. },
  7812. {
  7813. "__id__": 221
  7814. }
  7815. ],
  7816. "_active": true,
  7817. "_components": [
  7818. {
  7819. "__id__": 229
  7820. }
  7821. ],
  7822. "_prefab": {
  7823. "__id__": 230
  7824. },
  7825. "_opacity": 255,
  7826. "_color": {
  7827. "__type__": "cc.Color",
  7828. "r": 201,
  7829. "g": 73,
  7830. "b": 36,
  7831. "a": 255
  7832. },
  7833. "_contentSize": {
  7834. "__type__": "cc.Size",
  7835. "width": 165,
  7836. "height": 40.32
  7837. },
  7838. "_anchorPoint": {
  7839. "__type__": "cc.Vec2",
  7840. "x": 1,
  7841. "y": 0.5
  7842. },
  7843. "_trs": {
  7844. "__type__": "TypedArray",
  7845. "ctor": "Float64Array",
  7846. "array": [
  7847. -140,
  7848. 41,
  7849. 0,
  7850. 0,
  7851. 0,
  7852. 0,
  7853. 1,
  7854. 1,
  7855. 1,
  7856. 1
  7857. ]
  7858. },
  7859. "_eulerAngles": {
  7860. "__type__": "cc.Vec3",
  7861. "x": 0,
  7862. "y": 0,
  7863. "z": 0
  7864. },
  7865. "_skewX": 0,
  7866. "_skewY": 0,
  7867. "_is3DNode": false,
  7868. "_groupIndex": 0,
  7869. "groupIndex": 0,
  7870. "_id": ""
  7871. },
  7872. {
  7873. "__type__": "cc.Node",
  7874. "_name": "iconCode",
  7875. "_objFlags": 0,
  7876. "_parent": {
  7877. "__id__": 205
  7878. },
  7879. "_children": [],
  7880. "_active": true,
  7881. "_components": [
  7882. {
  7883. "__id__": 207
  7884. }
  7885. ],
  7886. "_prefab": {
  7887. "__id__": 208
  7888. },
  7889. "_opacity": 255,
  7890. "_color": {
  7891. "__type__": "cc.Color",
  7892. "r": 255,
  7893. "g": 255,
  7894. "b": 255,
  7895. "a": 255
  7896. },
  7897. "_contentSize": {
  7898. "__type__": "cc.Size",
  7899. "width": 33,
  7900. "height": 38
  7901. },
  7902. "_anchorPoint": {
  7903. "__type__": "cc.Vec2",
  7904. "x": 0.5,
  7905. "y": 0.5
  7906. },
  7907. "_trs": {
  7908. "__type__": "TypedArray",
  7909. "ctor": "Float64Array",
  7910. "array": [
  7911. -185,
  7912. 0,
  7913. 0,
  7914. 0,
  7915. 0,
  7916. 0,
  7917. 1,
  7918. 1,
  7919. 1,
  7920. 1
  7921. ]
  7922. },
  7923. "_eulerAngles": {
  7924. "__type__": "cc.Vec3",
  7925. "x": 0,
  7926. "y": 0,
  7927. "z": 0
  7928. },
  7929. "_skewX": 0,
  7930. "_skewY": 0,
  7931. "_is3DNode": false,
  7932. "_groupIndex": 0,
  7933. "groupIndex": 0,
  7934. "_id": ""
  7935. },
  7936. {
  7937. "__type__": "cc.Sprite",
  7938. "_name": "",
  7939. "_objFlags": 0,
  7940. "node": {
  7941. "__id__": 206
  7942. },
  7943. "_enabled": true,
  7944. "_materials": [
  7945. {
  7946. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  7947. }
  7948. ],
  7949. "_srcBlendFactor": 770,
  7950. "_dstBlendFactor": 771,
  7951. "_spriteFrame": {
  7952. "__uuid__": "e9c06952-6524-490b-9868-e9ed8ca2a36c"
  7953. },
  7954. "_type": 0,
  7955. "_sizeMode": 1,
  7956. "_fillType": 0,
  7957. "_fillCenter": {
  7958. "__type__": "cc.Vec2",
  7959. "x": 0,
  7960. "y": 0
  7961. },
  7962. "_fillStart": 0,
  7963. "_fillRange": 0,
  7964. "_isTrimmedMode": true,
  7965. "_atlas": null,
  7966. "_id": ""
  7967. },
  7968. {
  7969. "__type__": "cc.PrefabInfo",
  7970. "root": {
  7971. "__id__": 1
  7972. },
  7973. "asset": {
  7974. "__id__": 0
  7975. },
  7976. "fileId": "cdpJ3UVYtHbYVVpS1vEJhE",
  7977. "sync": false
  7978. },
  7979. {
  7980. "__type__": "cc.Node",
  7981. "_name": "input",
  7982. "_objFlags": 0,
  7983. "_parent": {
  7984. "__id__": 205
  7985. },
  7986. "_children": [
  7987. {
  7988. "__id__": 210
  7989. },
  7990. {
  7991. "__id__": 213
  7992. },
  7993. {
  7994. "__id__": 216
  7995. }
  7996. ],
  7997. "_active": true,
  7998. "_components": [
  7999. {
  8000. "__id__": 219
  8001. }
  8002. ],
  8003. "_prefab": {
  8004. "__id__": 220
  8005. },
  8006. "_opacity": 255,
  8007. "_color": {
  8008. "__type__": "cc.Color",
  8009. "r": 255,
  8010. "g": 255,
  8011. "b": 255,
  8012. "a": 255
  8013. },
  8014. "_contentSize": {
  8015. "__type__": "cc.Size",
  8016. "width": 410,
  8017. "height": 60
  8018. },
  8019. "_anchorPoint": {
  8020. "__type__": "cc.Vec2",
  8021. "x": 0.5,
  8022. "y": 0.5
  8023. },
  8024. "_trs": {
  8025. "__type__": "TypedArray",
  8026. "ctor": "Float64Array",
  8027. "array": [
  8028. 240,
  8029. 0,
  8030. 0,
  8031. 0,
  8032. 0,
  8033. 0,
  8034. 1,
  8035. 1,
  8036. 1,
  8037. 1
  8038. ]
  8039. },
  8040. "_eulerAngles": {
  8041. "__type__": "cc.Vec3",
  8042. "x": 0,
  8043. "y": 0,
  8044. "z": 0
  8045. },
  8046. "_skewX": 0,
  8047. "_skewY": 0,
  8048. "_is3DNode": false,
  8049. "_groupIndex": 0,
  8050. "groupIndex": 0,
  8051. "_id": ""
  8052. },
  8053. {
  8054. "__type__": "cc.Node",
  8055. "_name": "BACKGROUND_SPRITE",
  8056. "_objFlags": 0,
  8057. "_parent": {
  8058. "__id__": 209
  8059. },
  8060. "_children": [],
  8061. "_active": true,
  8062. "_components": [
  8063. {
  8064. "__id__": 211
  8065. }
  8066. ],
  8067. "_prefab": {
  8068. "__id__": 212
  8069. },
  8070. "_opacity": 255,
  8071. "_color": {
  8072. "__type__": "cc.Color",
  8073. "r": 255,
  8074. "g": 255,
  8075. "b": 255,
  8076. "a": 255
  8077. },
  8078. "_contentSize": {
  8079. "__type__": "cc.Size",
  8080. "width": 450,
  8081. "height": 60
  8082. },
  8083. "_anchorPoint": {
  8084. "__type__": "cc.Vec2",
  8085. "x": 0.5,
  8086. "y": 0.5
  8087. },
  8088. "_trs": {
  8089. "__type__": "TypedArray",
  8090. "ctor": "Float64Array",
  8091. "array": [
  8092. 0,
  8093. 0,
  8094. 0,
  8095. 0,
  8096. 0,
  8097. 0,
  8098. 1,
  8099. 1,
  8100. 1,
  8101. 1
  8102. ]
  8103. },
  8104. "_eulerAngles": {
  8105. "__type__": "cc.Vec3",
  8106. "x": 0,
  8107. "y": 0,
  8108. "z": 0
  8109. },
  8110. "_skewX": 0,
  8111. "_skewY": 0,
  8112. "_is3DNode": false,
  8113. "_groupIndex": 0,
  8114. "groupIndex": 0,
  8115. "_id": ""
  8116. },
  8117. {
  8118. "__type__": "cc.Sprite",
  8119. "_name": "",
  8120. "_objFlags": 0,
  8121. "node": {
  8122. "__id__": 210
  8123. },
  8124. "_enabled": true,
  8125. "_materials": [
  8126. {
  8127. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8128. }
  8129. ],
  8130. "_srcBlendFactor": 770,
  8131. "_dstBlendFactor": 771,
  8132. "_spriteFrame": {
  8133. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  8134. },
  8135. "_type": 1,
  8136. "_sizeMode": 0,
  8137. "_fillType": 0,
  8138. "_fillCenter": {
  8139. "__type__": "cc.Vec2",
  8140. "x": 0,
  8141. "y": 0
  8142. },
  8143. "_fillStart": 0,
  8144. "_fillRange": 0,
  8145. "_isTrimmedMode": true,
  8146. "_atlas": null,
  8147. "_id": ""
  8148. },
  8149. {
  8150. "__type__": "cc.PrefabInfo",
  8151. "root": {
  8152. "__id__": 1
  8153. },
  8154. "asset": {
  8155. "__id__": 0
  8156. },
  8157. "fileId": "5dAldoSbpI5bSt1LLz17DI",
  8158. "sync": false
  8159. },
  8160. {
  8161. "__type__": "cc.Node",
  8162. "_name": "TEXT_LABEL",
  8163. "_objFlags": 0,
  8164. "_parent": {
  8165. "__id__": 209
  8166. },
  8167. "_children": [],
  8168. "_active": false,
  8169. "_components": [
  8170. {
  8171. "__id__": 214
  8172. }
  8173. ],
  8174. "_prefab": {
  8175. "__id__": 215
  8176. },
  8177. "_opacity": 255,
  8178. "_color": {
  8179. "__type__": "cc.Color",
  8180. "r": 201,
  8181. "g": 73,
  8182. "b": 36,
  8183. "a": 255
  8184. },
  8185. "_contentSize": {
  8186. "__type__": "cc.Size",
  8187. "width": 240,
  8188. "height": 60
  8189. },
  8190. "_anchorPoint": {
  8191. "__type__": "cc.Vec2",
  8192. "x": 0.5,
  8193. "y": 0.5
  8194. },
  8195. "_trs": {
  8196. "__type__": "TypedArray",
  8197. "ctor": "Float64Array",
  8198. "array": [
  8199. -85,
  8200. 0,
  8201. 0,
  8202. 0,
  8203. 0,
  8204. 0,
  8205. 1,
  8206. 1,
  8207. 1,
  8208. 1
  8209. ]
  8210. },
  8211. "_eulerAngles": {
  8212. "__type__": "cc.Vec3",
  8213. "x": 0,
  8214. "y": 0,
  8215. "z": 0
  8216. },
  8217. "_skewX": 0,
  8218. "_skewY": 0,
  8219. "_is3DNode": false,
  8220. "_groupIndex": 0,
  8221. "groupIndex": 0,
  8222. "_id": ""
  8223. },
  8224. {
  8225. "__type__": "cc.Label",
  8226. "_name": "",
  8227. "_objFlags": 0,
  8228. "node": {
  8229. "__id__": 213
  8230. },
  8231. "_enabled": true,
  8232. "_materials": [
  8233. {
  8234. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8235. }
  8236. ],
  8237. "_srcBlendFactor": 770,
  8238. "_dstBlendFactor": 771,
  8239. "_string": "",
  8240. "_N$string": "",
  8241. "_fontSize": 30,
  8242. "_lineHeight": 32,
  8243. "_enableWrapText": false,
  8244. "_N$file": {
  8245. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8246. },
  8247. "_isSystemFontUsed": false,
  8248. "_spacingX": 0,
  8249. "_batchAsBitmap": false,
  8250. "_styleFlags": 0,
  8251. "_underlineHeight": 0,
  8252. "_N$horizontalAlign": 0,
  8253. "_N$verticalAlign": 1,
  8254. "_N$fontFamily": "",
  8255. "_N$overflow": 1,
  8256. "_N$cacheMode": 0,
  8257. "_id": ""
  8258. },
  8259. {
  8260. "__type__": "cc.PrefabInfo",
  8261. "root": {
  8262. "__id__": 1
  8263. },
  8264. "asset": {
  8265. "__id__": 0
  8266. },
  8267. "fileId": "5eZbteqSFHTLcqCCnsKWco",
  8268. "sync": false
  8269. },
  8270. {
  8271. "__type__": "cc.Node",
  8272. "_name": "PLACEHOLDER_LABEL",
  8273. "_objFlags": 0,
  8274. "_parent": {
  8275. "__id__": 209
  8276. },
  8277. "_children": [],
  8278. "_active": true,
  8279. "_components": [
  8280. {
  8281. "__id__": 217
  8282. }
  8283. ],
  8284. "_prefab": {
  8285. "__id__": 218
  8286. },
  8287. "_opacity": 255,
  8288. "_color": {
  8289. "__type__": "cc.Color",
  8290. "r": 202,
  8291. "g": 140,
  8292. "b": 97,
  8293. "a": 255
  8294. },
  8295. "_contentSize": {
  8296. "__type__": "cc.Size",
  8297. "width": 240,
  8298. "height": 60
  8299. },
  8300. "_anchorPoint": {
  8301. "__type__": "cc.Vec2",
  8302. "x": 0.5,
  8303. "y": 0.5
  8304. },
  8305. "_trs": {
  8306. "__type__": "TypedArray",
  8307. "ctor": "Float64Array",
  8308. "array": [
  8309. -85,
  8310. 0,
  8311. 0,
  8312. 0,
  8313. 0,
  8314. 0,
  8315. 1,
  8316. 1,
  8317. 1,
  8318. 1
  8319. ]
  8320. },
  8321. "_eulerAngles": {
  8322. "__type__": "cc.Vec3",
  8323. "x": 0,
  8324. "y": 0,
  8325. "z": 0
  8326. },
  8327. "_skewX": 0,
  8328. "_skewY": 0,
  8329. "_is3DNode": false,
  8330. "_groupIndex": 0,
  8331. "groupIndex": 0,
  8332. "_id": ""
  8333. },
  8334. {
  8335. "__type__": "cc.Label",
  8336. "_name": "",
  8337. "_objFlags": 0,
  8338. "node": {
  8339. "__id__": 216
  8340. },
  8341. "_enabled": true,
  8342. "_materials": [
  8343. {
  8344. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8345. }
  8346. ],
  8347. "_srcBlendFactor": 770,
  8348. "_dstBlendFactor": 771,
  8349. "_string": "請輸入驗證碼",
  8350. "_N$string": "請輸入驗證碼",
  8351. "_fontSize": 30,
  8352. "_lineHeight": 32,
  8353. "_enableWrapText": false,
  8354. "_N$file": {
  8355. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8356. },
  8357. "_isSystemFontUsed": false,
  8358. "_spacingX": 0,
  8359. "_batchAsBitmap": false,
  8360. "_styleFlags": 0,
  8361. "_underlineHeight": 0,
  8362. "_N$horizontalAlign": 0,
  8363. "_N$verticalAlign": 1,
  8364. "_N$fontFamily": "Arial",
  8365. "_N$overflow": 1,
  8366. "_N$cacheMode": 0,
  8367. "_id": ""
  8368. },
  8369. {
  8370. "__type__": "cc.PrefabInfo",
  8371. "root": {
  8372. "__id__": 1
  8373. },
  8374. "asset": {
  8375. "__id__": 0
  8376. },
  8377. "fileId": "famBRtYp1Hl6uI9wm1jieS",
  8378. "sync": false
  8379. },
  8380. {
  8381. "__type__": "cc.EditBox",
  8382. "_name": "",
  8383. "_objFlags": 0,
  8384. "node": {
  8385. "__id__": 209
  8386. },
  8387. "_enabled": true,
  8388. "_string": "",
  8389. "returnType": 0,
  8390. "maxLength": 6,
  8391. "_tabIndex": 0,
  8392. "editingDidBegan": [],
  8393. "textChanged": [],
  8394. "editingDidEnded": [],
  8395. "editingReturn": [],
  8396. "_N$textLabel": {
  8397. "__id__": 214
  8398. },
  8399. "_N$placeholderLabel": {
  8400. "__id__": 217
  8401. },
  8402. "_N$background": {
  8403. "__id__": 211
  8404. },
  8405. "_N$inputFlag": 5,
  8406. "_N$inputMode": 6,
  8407. "_N$stayOnTop": false,
  8408. "_id": ""
  8409. },
  8410. {
  8411. "__type__": "cc.PrefabInfo",
  8412. "root": {
  8413. "__id__": 1
  8414. },
  8415. "asset": {
  8416. "__id__": 0
  8417. },
  8418. "fileId": "6aiokR4c9L8qQjhvAfhVN+",
  8419. "sync": false
  8420. },
  8421. {
  8422. "__type__": "cc.Node",
  8423. "_name": "BtGetCode",
  8424. "_objFlags": 0,
  8425. "_parent": {
  8426. "__id__": 205
  8427. },
  8428. "_children": [
  8429. {
  8430. "__id__": 222
  8431. }
  8432. ],
  8433. "_active": true,
  8434. "_components": [
  8435. {
  8436. "__id__": 225
  8437. },
  8438. {
  8439. "__id__": 226
  8440. }
  8441. ],
  8442. "_prefab": {
  8443. "__id__": 228
  8444. },
  8445. "_opacity": 255,
  8446. "_color": {
  8447. "__type__": "cc.Color",
  8448. "r": 255,
  8449. "g": 255,
  8450. "b": 255,
  8451. "a": 255
  8452. },
  8453. "_contentSize": {
  8454. "__type__": "cc.Size",
  8455. "width": 143,
  8456. "height": 33
  8457. },
  8458. "_anchorPoint": {
  8459. "__type__": "cc.Vec2",
  8460. "x": 0.5,
  8461. "y": 0.5
  8462. },
  8463. "_trs": {
  8464. "__type__": "TypedArray",
  8465. "ctor": "Float64Array",
  8466. "array": [
  8467. 380,
  8468. 0,
  8469. 0,
  8470. 0,
  8471. 0,
  8472. 0,
  8473. 1,
  8474. 1,
  8475. 1,
  8476. 1
  8477. ]
  8478. },
  8479. "_eulerAngles": {
  8480. "__type__": "cc.Vec3",
  8481. "x": 0,
  8482. "y": 0,
  8483. "z": 0
  8484. },
  8485. "_skewX": 0,
  8486. "_skewY": 0,
  8487. "_is3DNode": false,
  8488. "_groupIndex": 0,
  8489. "groupIndex": 0,
  8490. "_id": ""
  8491. },
  8492. {
  8493. "__type__": "cc.Node",
  8494. "_name": "New Label",
  8495. "_objFlags": 0,
  8496. "_parent": {
  8497. "__id__": 221
  8498. },
  8499. "_children": [],
  8500. "_active": true,
  8501. "_components": [
  8502. {
  8503. "__id__": 223
  8504. }
  8505. ],
  8506. "_prefab": {
  8507. "__id__": 224
  8508. },
  8509. "_opacity": 255,
  8510. "_color": {
  8511. "__type__": "cc.Color",
  8512. "r": 51,
  8513. "g": 160,
  8514. "b": 0,
  8515. "a": 255
  8516. },
  8517. "_contentSize": {
  8518. "__type__": "cc.Size",
  8519. "width": 150,
  8520. "height": 50.4
  8521. },
  8522. "_anchorPoint": {
  8523. "__type__": "cc.Vec2",
  8524. "x": 0.5,
  8525. "y": 0.5
  8526. },
  8527. "_trs": {
  8528. "__type__": "TypedArray",
  8529. "ctor": "Float64Array",
  8530. "array": [
  8531. 0,
  8532. 2,
  8533. 0,
  8534. 0,
  8535. 0,
  8536. 0,
  8537. 1,
  8538. 1,
  8539. 1,
  8540. 1
  8541. ]
  8542. },
  8543. "_eulerAngles": {
  8544. "__type__": "cc.Vec3",
  8545. "x": 0,
  8546. "y": 0,
  8547. "z": 0
  8548. },
  8549. "_skewX": 0,
  8550. "_skewY": 0,
  8551. "_is3DNode": false,
  8552. "_groupIndex": 0,
  8553. "groupIndex": 0,
  8554. "_id": ""
  8555. },
  8556. {
  8557. "__type__": "cc.Label",
  8558. "_name": "",
  8559. "_objFlags": 0,
  8560. "node": {
  8561. "__id__": 222
  8562. },
  8563. "_enabled": true,
  8564. "_materials": [
  8565. {
  8566. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8567. }
  8568. ],
  8569. "_srcBlendFactor": 770,
  8570. "_dstBlendFactor": 771,
  8571. "_string": "獲取驗證碼",
  8572. "_N$string": "獲取驗證碼",
  8573. "_fontSize": 30,
  8574. "_lineHeight": 40,
  8575. "_enableWrapText": true,
  8576. "_N$file": null,
  8577. "_isSystemFontUsed": true,
  8578. "_spacingX": 0,
  8579. "_batchAsBitmap": false,
  8580. "_styleFlags": 4,
  8581. "_underlineHeight": 1.5,
  8582. "_N$horizontalAlign": 1,
  8583. "_N$verticalAlign": 1,
  8584. "_N$fontFamily": "Arial",
  8585. "_N$overflow": 0,
  8586. "_N$cacheMode": 0,
  8587. "_id": ""
  8588. },
  8589. {
  8590. "__type__": "cc.PrefabInfo",
  8591. "root": {
  8592. "__id__": 1
  8593. },
  8594. "asset": {
  8595. "__id__": 0
  8596. },
  8597. "fileId": "7bdUhZpwBFSK9O2cIuClh1",
  8598. "sync": false
  8599. },
  8600. {
  8601. "__type__": "cc.Sprite",
  8602. "_name": "",
  8603. "_objFlags": 0,
  8604. "node": {
  8605. "__id__": 221
  8606. },
  8607. "_enabled": false,
  8608. "_materials": [
  8609. {
  8610. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8611. }
  8612. ],
  8613. "_srcBlendFactor": 770,
  8614. "_dstBlendFactor": 771,
  8615. "_spriteFrame": {
  8616. "__uuid__": "38f9b396-4977-446e-bbec-2407b47f9de5"
  8617. },
  8618. "_type": 0,
  8619. "_sizeMode": 1,
  8620. "_fillType": 0,
  8621. "_fillCenter": {
  8622. "__type__": "cc.Vec2",
  8623. "x": 0,
  8624. "y": 0
  8625. },
  8626. "_fillStart": 0,
  8627. "_fillRange": 0,
  8628. "_isTrimmedMode": true,
  8629. "_atlas": null,
  8630. "_id": ""
  8631. },
  8632. {
  8633. "__type__": "cc.Button",
  8634. "_name": "",
  8635. "_objFlags": 0,
  8636. "node": {
  8637. "__id__": 221
  8638. },
  8639. "_enabled": true,
  8640. "_normalMaterial": null,
  8641. "_grayMaterial": null,
  8642. "duration": 0,
  8643. "zoomScale": 1.2,
  8644. "clickEvents": [
  8645. {
  8646. "__id__": 227
  8647. }
  8648. ],
  8649. "_N$interactable": true,
  8650. "_N$enableAutoGrayEffect": false,
  8651. "_N$transition": 1,
  8652. "transition": 1,
  8653. "_N$normalColor": {
  8654. "__type__": "cc.Color",
  8655. "r": 255,
  8656. "g": 255,
  8657. "b": 255,
  8658. "a": 255
  8659. },
  8660. "_N$pressedColor": {
  8661. "__type__": "cc.Color",
  8662. "r": 211,
  8663. "g": 211,
  8664. "b": 211,
  8665. "a": 255
  8666. },
  8667. "pressedColor": {
  8668. "__type__": "cc.Color",
  8669. "r": 211,
  8670. "g": 211,
  8671. "b": 211,
  8672. "a": 255
  8673. },
  8674. "_N$hoverColor": {
  8675. "__type__": "cc.Color",
  8676. "r": 255,
  8677. "g": 255,
  8678. "b": 255,
  8679. "a": 255
  8680. },
  8681. "hoverColor": {
  8682. "__type__": "cc.Color",
  8683. "r": 255,
  8684. "g": 255,
  8685. "b": 255,
  8686. "a": 255
  8687. },
  8688. "_N$disabledColor": {
  8689. "__type__": "cc.Color",
  8690. "r": 124,
  8691. "g": 124,
  8692. "b": 124,
  8693. "a": 255
  8694. },
  8695. "_N$normalSprite": null,
  8696. "_N$pressedSprite": null,
  8697. "pressedSprite": null,
  8698. "_N$hoverSprite": null,
  8699. "hoverSprite": null,
  8700. "_N$disabledSprite": null,
  8701. "_N$target": {
  8702. "__id__": 221
  8703. },
  8704. "_id": ""
  8705. },
  8706. {
  8707. "__type__": "cc.ClickEvent",
  8708. "target": {
  8709. "__id__": 180
  8710. },
  8711. "component": "",
  8712. "_componentId": "cd27feRjGRCbLHYCZO0j/d3",
  8713. "handler": "GetVerificationCode",
  8714. "customEventData": ""
  8715. },
  8716. {
  8717. "__type__": "cc.PrefabInfo",
  8718. "root": {
  8719. "__id__": 1
  8720. },
  8721. "asset": {
  8722. "__id__": 0
  8723. },
  8724. "fileId": "9cr6EczJJKs5+EBAJ6o7F6",
  8725. "sync": false
  8726. },
  8727. {
  8728. "__type__": "cc.Label",
  8729. "_name": "",
  8730. "_objFlags": 0,
  8731. "node": {
  8732. "__id__": 205
  8733. },
  8734. "_enabled": true,
  8735. "_materials": [
  8736. {
  8737. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  8738. }
  8739. ],
  8740. "_srcBlendFactor": 770,
  8741. "_dstBlendFactor": 771,
  8742. "_string": "驗 證 碼:",
  8743. "_N$string": "驗 證 碼:",
  8744. "_fontSize": 30,
  8745. "_lineHeight": 32,
  8746. "_enableWrapText": true,
  8747. "_N$file": {
  8748. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  8749. },
  8750. "_isSystemFontUsed": false,
  8751. "_spacingX": 0,
  8752. "_batchAsBitmap": false,
  8753. "_styleFlags": 0,
  8754. "_underlineHeight": 0,
  8755. "_N$horizontalAlign": 1,
  8756. "_N$verticalAlign": 1,
  8757. "_N$fontFamily": "Arial",
  8758. "_N$overflow": 0,
  8759. "_N$cacheMode": 0,
  8760. "_id": ""
  8761. },
  8762. {
  8763. "__type__": "cc.PrefabInfo",
  8764. "root": {
  8765. "__id__": 1
  8766. },
  8767. "asset": {
  8768. "__id__": 0
  8769. },
  8770. "fileId": "0aHykkduhFab7UPrmcOetd",
  8771. "sync": false
  8772. },
  8773. {
  8774. "__type__": "cd27feRjGRCbLHYCZO0j/d3",
  8775. "_name": "",
  8776. "_objFlags": 0,
  8777. "node": {
  8778. "__id__": 180
  8779. },
  8780. "_enabled": true,
  8781. "m_EdPhone": {
  8782. "__id__": 198
  8783. },
  8784. "m_EdCode": {
  8785. "__id__": 219
  8786. },
  8787. "m_BtGetCode": {
  8788. "__id__": 226
  8789. },
  8790. "_id": ""
  8791. },
  8792. {
  8793. "__type__": "cc.PrefabInfo",
  8794. "root": {
  8795. "__id__": 1
  8796. },
  8797. "asset": {
  8798. "__id__": 0
  8799. },
  8800. "fileId": "81LKN6gtBKobLi5cFgSl0D",
  8801. "sync": false
  8802. },
  8803. {
  8804. "__type__": "cc.Node",
  8805. "_name": "New",
  8806. "_objFlags": 0,
  8807. "_parent": {
  8808. "__id__": 173
  8809. },
  8810. "_children": [
  8811. {
  8812. "__id__": 234
  8813. },
  8814. {
  8815. "__id__": 252
  8816. }
  8817. ],
  8818. "_active": true,
  8819. "_components": [
  8820. {
  8821. "__id__": 278
  8822. }
  8823. ],
  8824. "_prefab": {
  8825. "__id__": 279
  8826. },
  8827. "_opacity": 255,
  8828. "_color": {
  8829. "__type__": "cc.Color",
  8830. "r": 255,
  8831. "g": 255,
  8832. "b": 255,
  8833. "a": 255
  8834. },
  8835. "_contentSize": {
  8836. "__type__": "cc.Size",
  8837. "width": 0,
  8838. "height": 0
  8839. },
  8840. "_anchorPoint": {
  8841. "__type__": "cc.Vec2",
  8842. "x": 0.5,
  8843. "y": 0.5
  8844. },
  8845. "_trs": {
  8846. "__type__": "TypedArray",
  8847. "ctor": "Float64Array",
  8848. "array": [
  8849. 0,
  8850. -121.946,
  8851. 0,
  8852. 0,
  8853. 0,
  8854. 0,
  8855. 1,
  8856. 1,
  8857. 1,
  8858. 1
  8859. ]
  8860. },
  8861. "_eulerAngles": {
  8862. "__type__": "cc.Vec3",
  8863. "x": 0,
  8864. "y": 0,
  8865. "z": 0
  8866. },
  8867. "_skewX": 0,
  8868. "_skewY": 0,
  8869. "_is3DNode": false,
  8870. "_groupIndex": 0,
  8871. "groupIndex": 0,
  8872. "_id": ""
  8873. },
  8874. {
  8875. "__type__": "cc.Node",
  8876. "_name": "PhoneNum",
  8877. "_objFlags": 0,
  8878. "_parent": {
  8879. "__id__": 233
  8880. },
  8881. "_children": [
  8882. {
  8883. "__id__": 235
  8884. },
  8885. {
  8886. "__id__": 238
  8887. }
  8888. ],
  8889. "_active": true,
  8890. "_components": [
  8891. {
  8892. "__id__": 250
  8893. }
  8894. ],
  8895. "_prefab": {
  8896. "__id__": 251
  8897. },
  8898. "_opacity": 255,
  8899. "_color": {
  8900. "__type__": "cc.Color",
  8901. "r": 201,
  8902. "g": 73,
  8903. "b": 36,
  8904. "a": 255
  8905. },
  8906. "_contentSize": {
  8907. "__type__": "cc.Size",
  8908. "width": 165,
  8909. "height": 40.32
  8910. },
  8911. "_anchorPoint": {
  8912. "__type__": "cc.Vec2",
  8913. "x": 1,
  8914. "y": 0.5
  8915. },
  8916. "_trs": {
  8917. "__type__": "TypedArray",
  8918. "ctor": "Float64Array",
  8919. "array": [
  8920. -140,
  8921. 102,
  8922. 0,
  8923. 0,
  8924. 0,
  8925. 0,
  8926. 1,
  8927. 1,
  8928. 1,
  8929. 1
  8930. ]
  8931. },
  8932. "_eulerAngles": {
  8933. "__type__": "cc.Vec3",
  8934. "x": 0,
  8935. "y": 0,
  8936. "z": 0
  8937. },
  8938. "_skewX": 0,
  8939. "_skewY": 0,
  8940. "_is3DNode": false,
  8941. "_groupIndex": 0,
  8942. "groupIndex": 0,
  8943. "_id": ""
  8944. },
  8945. {
  8946. "__type__": "cc.Node",
  8947. "_name": "iconPhone",
  8948. "_objFlags": 0,
  8949. "_parent": {
  8950. "__id__": 234
  8951. },
  8952. "_children": [],
  8953. "_active": true,
  8954. "_components": [
  8955. {
  8956. "__id__": 236
  8957. }
  8958. ],
  8959. "_prefab": {
  8960. "__id__": 237
  8961. },
  8962. "_opacity": 255,
  8963. "_color": {
  8964. "__type__": "cc.Color",
  8965. "r": 255,
  8966. "g": 255,
  8967. "b": 255,
  8968. "a": 255
  8969. },
  8970. "_contentSize": {
  8971. "__type__": "cc.Size",
  8972. "width": 28,
  8973. "height": 41
  8974. },
  8975. "_anchorPoint": {
  8976. "__type__": "cc.Vec2",
  8977. "x": 0.5,
  8978. "y": 0.5
  8979. },
  8980. "_trs": {
  8981. "__type__": "TypedArray",
  8982. "ctor": "Float64Array",
  8983. "array": [
  8984. -185,
  8985. 0,
  8986. 0,
  8987. 0,
  8988. 0,
  8989. 0,
  8990. 1,
  8991. 1,
  8992. 1,
  8993. 1
  8994. ]
  8995. },
  8996. "_eulerAngles": {
  8997. "__type__": "cc.Vec3",
  8998. "x": 0,
  8999. "y": 0,
  9000. "z": 0
  9001. },
  9002. "_skewX": 0,
  9003. "_skewY": 0,
  9004. "_is3DNode": false,
  9005. "_groupIndex": 0,
  9006. "groupIndex": 0,
  9007. "_id": ""
  9008. },
  9009. {
  9010. "__type__": "cc.Sprite",
  9011. "_name": "",
  9012. "_objFlags": 0,
  9013. "node": {
  9014. "__id__": 235
  9015. },
  9016. "_enabled": true,
  9017. "_materials": [
  9018. {
  9019. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9020. }
  9021. ],
  9022. "_srcBlendFactor": 770,
  9023. "_dstBlendFactor": 771,
  9024. "_spriteFrame": {
  9025. "__uuid__": "1b39859a-2979-4b24-bca5-2a400026e390"
  9026. },
  9027. "_type": 0,
  9028. "_sizeMode": 1,
  9029. "_fillType": 0,
  9030. "_fillCenter": {
  9031. "__type__": "cc.Vec2",
  9032. "x": 0,
  9033. "y": 0
  9034. },
  9035. "_fillStart": 0,
  9036. "_fillRange": 0,
  9037. "_isTrimmedMode": true,
  9038. "_atlas": null,
  9039. "_id": ""
  9040. },
  9041. {
  9042. "__type__": "cc.PrefabInfo",
  9043. "root": {
  9044. "__id__": 1
  9045. },
  9046. "asset": {
  9047. "__id__": 0
  9048. },
  9049. "fileId": "58zHhAXPRPG6iOpnOrl4k1",
  9050. "sync": false
  9051. },
  9052. {
  9053. "__type__": "cc.Node",
  9054. "_name": "input",
  9055. "_objFlags": 0,
  9056. "_parent": {
  9057. "__id__": 234
  9058. },
  9059. "_children": [
  9060. {
  9061. "__id__": 239
  9062. },
  9063. {
  9064. "__id__": 242
  9065. },
  9066. {
  9067. "__id__": 245
  9068. }
  9069. ],
  9070. "_active": true,
  9071. "_components": [
  9072. {
  9073. "__id__": 248
  9074. }
  9075. ],
  9076. "_prefab": {
  9077. "__id__": 249
  9078. },
  9079. "_opacity": 255,
  9080. "_color": {
  9081. "__type__": "cc.Color",
  9082. "r": 255,
  9083. "g": 255,
  9084. "b": 255,
  9085. "a": 255
  9086. },
  9087. "_contentSize": {
  9088. "__type__": "cc.Size",
  9089. "width": 410,
  9090. "height": 60
  9091. },
  9092. "_anchorPoint": {
  9093. "__type__": "cc.Vec2",
  9094. "x": 0.5,
  9095. "y": 0.5
  9096. },
  9097. "_trs": {
  9098. "__type__": "TypedArray",
  9099. "ctor": "Float64Array",
  9100. "array": [
  9101. 240,
  9102. 0,
  9103. 0,
  9104. 0,
  9105. 0,
  9106. 0,
  9107. 1,
  9108. 1,
  9109. 1,
  9110. 1
  9111. ]
  9112. },
  9113. "_eulerAngles": {
  9114. "__type__": "cc.Vec3",
  9115. "x": 0,
  9116. "y": 0,
  9117. "z": 0
  9118. },
  9119. "_skewX": 0,
  9120. "_skewY": 0,
  9121. "_is3DNode": false,
  9122. "_groupIndex": 0,
  9123. "groupIndex": 0,
  9124. "_id": ""
  9125. },
  9126. {
  9127. "__type__": "cc.Node",
  9128. "_name": "BACKGROUND_SPRITE",
  9129. "_objFlags": 0,
  9130. "_parent": {
  9131. "__id__": 238
  9132. },
  9133. "_children": [],
  9134. "_active": true,
  9135. "_components": [
  9136. {
  9137. "__id__": 240
  9138. }
  9139. ],
  9140. "_prefab": {
  9141. "__id__": 241
  9142. },
  9143. "_opacity": 255,
  9144. "_color": {
  9145. "__type__": "cc.Color",
  9146. "r": 255,
  9147. "g": 255,
  9148. "b": 255,
  9149. "a": 255
  9150. },
  9151. "_contentSize": {
  9152. "__type__": "cc.Size",
  9153. "width": 450,
  9154. "height": 60
  9155. },
  9156. "_anchorPoint": {
  9157. "__type__": "cc.Vec2",
  9158. "x": 0.5,
  9159. "y": 0.5
  9160. },
  9161. "_trs": {
  9162. "__type__": "TypedArray",
  9163. "ctor": "Float64Array",
  9164. "array": [
  9165. 0,
  9166. 0,
  9167. 0,
  9168. 0,
  9169. 0,
  9170. 0,
  9171. 1,
  9172. 1,
  9173. 1,
  9174. 1
  9175. ]
  9176. },
  9177. "_eulerAngles": {
  9178. "__type__": "cc.Vec3",
  9179. "x": 0,
  9180. "y": 0,
  9181. "z": 0
  9182. },
  9183. "_skewX": 0,
  9184. "_skewY": 0,
  9185. "_is3DNode": false,
  9186. "_groupIndex": 0,
  9187. "groupIndex": 0,
  9188. "_id": ""
  9189. },
  9190. {
  9191. "__type__": "cc.Sprite",
  9192. "_name": "",
  9193. "_objFlags": 0,
  9194. "node": {
  9195. "__id__": 239
  9196. },
  9197. "_enabled": true,
  9198. "_materials": [
  9199. {
  9200. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9201. }
  9202. ],
  9203. "_srcBlendFactor": 770,
  9204. "_dstBlendFactor": 771,
  9205. "_spriteFrame": {
  9206. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  9207. },
  9208. "_type": 1,
  9209. "_sizeMode": 0,
  9210. "_fillType": 0,
  9211. "_fillCenter": {
  9212. "__type__": "cc.Vec2",
  9213. "x": 0,
  9214. "y": 0
  9215. },
  9216. "_fillStart": 0,
  9217. "_fillRange": 0,
  9218. "_isTrimmedMode": true,
  9219. "_atlas": null,
  9220. "_id": ""
  9221. },
  9222. {
  9223. "__type__": "cc.PrefabInfo",
  9224. "root": {
  9225. "__id__": 1
  9226. },
  9227. "asset": {
  9228. "__id__": 0
  9229. },
  9230. "fileId": "30he1wCXJJA4wWiSd/xOkU",
  9231. "sync": false
  9232. },
  9233. {
  9234. "__type__": "cc.Node",
  9235. "_name": "TEXT_LABEL",
  9236. "_objFlags": 0,
  9237. "_parent": {
  9238. "__id__": 238
  9239. },
  9240. "_children": [],
  9241. "_active": false,
  9242. "_components": [
  9243. {
  9244. "__id__": 243
  9245. }
  9246. ],
  9247. "_prefab": {
  9248. "__id__": 244
  9249. },
  9250. "_opacity": 255,
  9251. "_color": {
  9252. "__type__": "cc.Color",
  9253. "r": 201,
  9254. "g": 73,
  9255. "b": 36,
  9256. "a": 255
  9257. },
  9258. "_contentSize": {
  9259. "__type__": "cc.Size",
  9260. "width": 410,
  9261. "height": 60
  9262. },
  9263. "_anchorPoint": {
  9264. "__type__": "cc.Vec2",
  9265. "x": 0.5,
  9266. "y": 0.5
  9267. },
  9268. "_trs": {
  9269. "__type__": "TypedArray",
  9270. "ctor": "Float64Array",
  9271. "array": [
  9272. 0,
  9273. 0,
  9274. 0,
  9275. 0,
  9276. 0,
  9277. 0,
  9278. 1,
  9279. 1,
  9280. 1,
  9281. 1
  9282. ]
  9283. },
  9284. "_eulerAngles": {
  9285. "__type__": "cc.Vec3",
  9286. "x": 0,
  9287. "y": 0,
  9288. "z": 0
  9289. },
  9290. "_skewX": 0,
  9291. "_skewY": 0,
  9292. "_is3DNode": false,
  9293. "_groupIndex": 0,
  9294. "groupIndex": 0,
  9295. "_id": ""
  9296. },
  9297. {
  9298. "__type__": "cc.Label",
  9299. "_name": "",
  9300. "_objFlags": 0,
  9301. "node": {
  9302. "__id__": 242
  9303. },
  9304. "_enabled": true,
  9305. "_materials": [
  9306. {
  9307. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9308. }
  9309. ],
  9310. "_srcBlendFactor": 770,
  9311. "_dstBlendFactor": 771,
  9312. "_string": "",
  9313. "_N$string": "",
  9314. "_fontSize": 30,
  9315. "_lineHeight": 32,
  9316. "_enableWrapText": false,
  9317. "_N$file": {
  9318. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  9319. },
  9320. "_isSystemFontUsed": false,
  9321. "_spacingX": 0,
  9322. "_batchAsBitmap": false,
  9323. "_styleFlags": 0,
  9324. "_underlineHeight": 0,
  9325. "_N$horizontalAlign": 0,
  9326. "_N$verticalAlign": 1,
  9327. "_N$fontFamily": "Arial",
  9328. "_N$overflow": 1,
  9329. "_N$cacheMode": 0,
  9330. "_id": ""
  9331. },
  9332. {
  9333. "__type__": "cc.PrefabInfo",
  9334. "root": {
  9335. "__id__": 1
  9336. },
  9337. "asset": {
  9338. "__id__": 0
  9339. },
  9340. "fileId": "adm7k0qR1OqKVt1Q7KUQ0W",
  9341. "sync": false
  9342. },
  9343. {
  9344. "__type__": "cc.Node",
  9345. "_name": "PLACEHOLDER_LABEL",
  9346. "_objFlags": 0,
  9347. "_parent": {
  9348. "__id__": 238
  9349. },
  9350. "_children": [],
  9351. "_active": true,
  9352. "_components": [
  9353. {
  9354. "__id__": 246
  9355. }
  9356. ],
  9357. "_prefab": {
  9358. "__id__": 247
  9359. },
  9360. "_opacity": 255,
  9361. "_color": {
  9362. "__type__": "cc.Color",
  9363. "r": 202,
  9364. "g": 140,
  9365. "b": 97,
  9366. "a": 255
  9367. },
  9368. "_contentSize": {
  9369. "__type__": "cc.Size",
  9370. "width": 410,
  9371. "height": 60
  9372. },
  9373. "_anchorPoint": {
  9374. "__type__": "cc.Vec2",
  9375. "x": 0.5,
  9376. "y": 0.5
  9377. },
  9378. "_trs": {
  9379. "__type__": "TypedArray",
  9380. "ctor": "Float64Array",
  9381. "array": [
  9382. 0,
  9383. 0,
  9384. 0,
  9385. 0,
  9386. 0,
  9387. 0,
  9388. 1,
  9389. 1,
  9390. 1,
  9391. 1
  9392. ]
  9393. },
  9394. "_eulerAngles": {
  9395. "__type__": "cc.Vec3",
  9396. "x": 0,
  9397. "y": 0,
  9398. "z": 0
  9399. },
  9400. "_skewX": 0,
  9401. "_skewY": 0,
  9402. "_is3DNode": false,
  9403. "_groupIndex": 0,
  9404. "groupIndex": 0,
  9405. "_id": ""
  9406. },
  9407. {
  9408. "__type__": "cc.Label",
  9409. "_name": "",
  9410. "_objFlags": 0,
  9411. "node": {
  9412. "__id__": 245
  9413. },
  9414. "_enabled": true,
  9415. "_materials": [
  9416. {
  9417. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9418. }
  9419. ],
  9420. "_srcBlendFactor": 770,
  9421. "_dstBlendFactor": 771,
  9422. "_string": "請輸入手機號碼",
  9423. "_N$string": "請輸入手機號碼",
  9424. "_fontSize": 30,
  9425. "_lineHeight": 32,
  9426. "_enableWrapText": false,
  9427. "_N$file": {
  9428. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  9429. },
  9430. "_isSystemFontUsed": false,
  9431. "_spacingX": 0,
  9432. "_batchAsBitmap": false,
  9433. "_styleFlags": 0,
  9434. "_underlineHeight": 0,
  9435. "_N$horizontalAlign": 0,
  9436. "_N$verticalAlign": 1,
  9437. "_N$fontFamily": "Arial",
  9438. "_N$overflow": 1,
  9439. "_N$cacheMode": 0,
  9440. "_id": ""
  9441. },
  9442. {
  9443. "__type__": "cc.PrefabInfo",
  9444. "root": {
  9445. "__id__": 1
  9446. },
  9447. "asset": {
  9448. "__id__": 0
  9449. },
  9450. "fileId": "18xI9iolhM3pnZbLHHQBEp",
  9451. "sync": false
  9452. },
  9453. {
  9454. "__type__": "cc.EditBox",
  9455. "_name": "",
  9456. "_objFlags": 0,
  9457. "node": {
  9458. "__id__": 238
  9459. },
  9460. "_enabled": true,
  9461. "_string": "",
  9462. "returnType": 0,
  9463. "maxLength": 11,
  9464. "_tabIndex": 0,
  9465. "editingDidBegan": [],
  9466. "textChanged": [],
  9467. "editingDidEnded": [],
  9468. "editingReturn": [],
  9469. "_N$textLabel": {
  9470. "__id__": 243
  9471. },
  9472. "_N$placeholderLabel": {
  9473. "__id__": 246
  9474. },
  9475. "_N$background": {
  9476. "__id__": 240
  9477. },
  9478. "_N$inputFlag": 1,
  9479. "_N$inputMode": 3,
  9480. "_N$stayOnTop": false,
  9481. "_id": ""
  9482. },
  9483. {
  9484. "__type__": "cc.PrefabInfo",
  9485. "root": {
  9486. "__id__": 1
  9487. },
  9488. "asset": {
  9489. "__id__": 0
  9490. },
  9491. "fileId": "4deB5MjipKxpCVLpRNCyCl",
  9492. "sync": false
  9493. },
  9494. {
  9495. "__type__": "cc.Label",
  9496. "_name": "",
  9497. "_objFlags": 0,
  9498. "node": {
  9499. "__id__": 234
  9500. },
  9501. "_enabled": true,
  9502. "_materials": [
  9503. {
  9504. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9505. }
  9506. ],
  9507. "_srcBlendFactor": 770,
  9508. "_dstBlendFactor": 771,
  9509. "_string": "新手機號碼:",
  9510. "_N$string": "新手機號碼:",
  9511. "_fontSize": 30,
  9512. "_lineHeight": 32,
  9513. "_enableWrapText": true,
  9514. "_N$file": {
  9515. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  9516. },
  9517. "_isSystemFontUsed": false,
  9518. "_spacingX": 0,
  9519. "_batchAsBitmap": false,
  9520. "_styleFlags": 0,
  9521. "_underlineHeight": 0,
  9522. "_N$horizontalAlign": 1,
  9523. "_N$verticalAlign": 1,
  9524. "_N$fontFamily": "Arial",
  9525. "_N$overflow": 0,
  9526. "_N$cacheMode": 0,
  9527. "_id": ""
  9528. },
  9529. {
  9530. "__type__": "cc.PrefabInfo",
  9531. "root": {
  9532. "__id__": 1
  9533. },
  9534. "asset": {
  9535. "__id__": 0
  9536. },
  9537. "fileId": "acsIRZqzZO+Z023Ie++LC/",
  9538. "sync": false
  9539. },
  9540. {
  9541. "__type__": "cc.Node",
  9542. "_name": "VerCode",
  9543. "_objFlags": 0,
  9544. "_parent": {
  9545. "__id__": 233
  9546. },
  9547. "_children": [
  9548. {
  9549. "__id__": 253
  9550. },
  9551. {
  9552. "__id__": 256
  9553. },
  9554. {
  9555. "__id__": 268
  9556. }
  9557. ],
  9558. "_active": true,
  9559. "_components": [
  9560. {
  9561. "__id__": 276
  9562. }
  9563. ],
  9564. "_prefab": {
  9565. "__id__": 277
  9566. },
  9567. "_opacity": 255,
  9568. "_color": {
  9569. "__type__": "cc.Color",
  9570. "r": 201,
  9571. "g": 73,
  9572. "b": 36,
  9573. "a": 255
  9574. },
  9575. "_contentSize": {
  9576. "__type__": "cc.Size",
  9577. "width": 165,
  9578. "height": 40.32
  9579. },
  9580. "_anchorPoint": {
  9581. "__type__": "cc.Vec2",
  9582. "x": 1,
  9583. "y": 0.5
  9584. },
  9585. "_trs": {
  9586. "__type__": "TypedArray",
  9587. "ctor": "Float64Array",
  9588. "array": [
  9589. -140,
  9590. 24,
  9591. 0,
  9592. 0,
  9593. 0,
  9594. 0,
  9595. 1,
  9596. 1,
  9597. 1,
  9598. 1
  9599. ]
  9600. },
  9601. "_eulerAngles": {
  9602. "__type__": "cc.Vec3",
  9603. "x": 0,
  9604. "y": 0,
  9605. "z": 0
  9606. },
  9607. "_skewX": 0,
  9608. "_skewY": 0,
  9609. "_is3DNode": false,
  9610. "_groupIndex": 0,
  9611. "groupIndex": 0,
  9612. "_id": ""
  9613. },
  9614. {
  9615. "__type__": "cc.Node",
  9616. "_name": "iconCode",
  9617. "_objFlags": 0,
  9618. "_parent": {
  9619. "__id__": 252
  9620. },
  9621. "_children": [],
  9622. "_active": true,
  9623. "_components": [
  9624. {
  9625. "__id__": 254
  9626. }
  9627. ],
  9628. "_prefab": {
  9629. "__id__": 255
  9630. },
  9631. "_opacity": 255,
  9632. "_color": {
  9633. "__type__": "cc.Color",
  9634. "r": 255,
  9635. "g": 255,
  9636. "b": 255,
  9637. "a": 255
  9638. },
  9639. "_contentSize": {
  9640. "__type__": "cc.Size",
  9641. "width": 33,
  9642. "height": 38
  9643. },
  9644. "_anchorPoint": {
  9645. "__type__": "cc.Vec2",
  9646. "x": 0.5,
  9647. "y": 0.5
  9648. },
  9649. "_trs": {
  9650. "__type__": "TypedArray",
  9651. "ctor": "Float64Array",
  9652. "array": [
  9653. -185,
  9654. 0,
  9655. 0,
  9656. 0,
  9657. 0,
  9658. 0,
  9659. 1,
  9660. 1,
  9661. 1,
  9662. 1
  9663. ]
  9664. },
  9665. "_eulerAngles": {
  9666. "__type__": "cc.Vec3",
  9667. "x": 0,
  9668. "y": 0,
  9669. "z": 0
  9670. },
  9671. "_skewX": 0,
  9672. "_skewY": 0,
  9673. "_is3DNode": false,
  9674. "_groupIndex": 0,
  9675. "groupIndex": 0,
  9676. "_id": ""
  9677. },
  9678. {
  9679. "__type__": "cc.Sprite",
  9680. "_name": "",
  9681. "_objFlags": 0,
  9682. "node": {
  9683. "__id__": 253
  9684. },
  9685. "_enabled": true,
  9686. "_materials": [
  9687. {
  9688. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9689. }
  9690. ],
  9691. "_srcBlendFactor": 770,
  9692. "_dstBlendFactor": 771,
  9693. "_spriteFrame": {
  9694. "__uuid__": "e9c06952-6524-490b-9868-e9ed8ca2a36c"
  9695. },
  9696. "_type": 0,
  9697. "_sizeMode": 1,
  9698. "_fillType": 0,
  9699. "_fillCenter": {
  9700. "__type__": "cc.Vec2",
  9701. "x": 0,
  9702. "y": 0
  9703. },
  9704. "_fillStart": 0,
  9705. "_fillRange": 0,
  9706. "_isTrimmedMode": true,
  9707. "_atlas": null,
  9708. "_id": ""
  9709. },
  9710. {
  9711. "__type__": "cc.PrefabInfo",
  9712. "root": {
  9713. "__id__": 1
  9714. },
  9715. "asset": {
  9716. "__id__": 0
  9717. },
  9718. "fileId": "a1OpYqgztNfrJ6CDsjgHh4",
  9719. "sync": false
  9720. },
  9721. {
  9722. "__type__": "cc.Node",
  9723. "_name": "input",
  9724. "_objFlags": 0,
  9725. "_parent": {
  9726. "__id__": 252
  9727. },
  9728. "_children": [
  9729. {
  9730. "__id__": 257
  9731. },
  9732. {
  9733. "__id__": 260
  9734. },
  9735. {
  9736. "__id__": 263
  9737. }
  9738. ],
  9739. "_active": true,
  9740. "_components": [
  9741. {
  9742. "__id__": 266
  9743. }
  9744. ],
  9745. "_prefab": {
  9746. "__id__": 267
  9747. },
  9748. "_opacity": 255,
  9749. "_color": {
  9750. "__type__": "cc.Color",
  9751. "r": 255,
  9752. "g": 255,
  9753. "b": 255,
  9754. "a": 255
  9755. },
  9756. "_contentSize": {
  9757. "__type__": "cc.Size",
  9758. "width": 410,
  9759. "height": 60
  9760. },
  9761. "_anchorPoint": {
  9762. "__type__": "cc.Vec2",
  9763. "x": 0.5,
  9764. "y": 0.5
  9765. },
  9766. "_trs": {
  9767. "__type__": "TypedArray",
  9768. "ctor": "Float64Array",
  9769. "array": [
  9770. 240,
  9771. 0,
  9772. 0,
  9773. 0,
  9774. 0,
  9775. 0,
  9776. 1,
  9777. 1,
  9778. 1,
  9779. 1
  9780. ]
  9781. },
  9782. "_eulerAngles": {
  9783. "__type__": "cc.Vec3",
  9784. "x": 0,
  9785. "y": 0,
  9786. "z": 0
  9787. },
  9788. "_skewX": 0,
  9789. "_skewY": 0,
  9790. "_is3DNode": false,
  9791. "_groupIndex": 0,
  9792. "groupIndex": 0,
  9793. "_id": ""
  9794. },
  9795. {
  9796. "__type__": "cc.Node",
  9797. "_name": "BACKGROUND_SPRITE",
  9798. "_objFlags": 0,
  9799. "_parent": {
  9800. "__id__": 256
  9801. },
  9802. "_children": [],
  9803. "_active": true,
  9804. "_components": [
  9805. {
  9806. "__id__": 258
  9807. }
  9808. ],
  9809. "_prefab": {
  9810. "__id__": 259
  9811. },
  9812. "_opacity": 255,
  9813. "_color": {
  9814. "__type__": "cc.Color",
  9815. "r": 255,
  9816. "g": 255,
  9817. "b": 255,
  9818. "a": 255
  9819. },
  9820. "_contentSize": {
  9821. "__type__": "cc.Size",
  9822. "width": 450,
  9823. "height": 60
  9824. },
  9825. "_anchorPoint": {
  9826. "__type__": "cc.Vec2",
  9827. "x": 0.5,
  9828. "y": 0.5
  9829. },
  9830. "_trs": {
  9831. "__type__": "TypedArray",
  9832. "ctor": "Float64Array",
  9833. "array": [
  9834. 0,
  9835. 0,
  9836. 0,
  9837. 0,
  9838. 0,
  9839. 0,
  9840. 1,
  9841. 1,
  9842. 1,
  9843. 1
  9844. ]
  9845. },
  9846. "_eulerAngles": {
  9847. "__type__": "cc.Vec3",
  9848. "x": 0,
  9849. "y": 0,
  9850. "z": 0
  9851. },
  9852. "_skewX": 0,
  9853. "_skewY": 0,
  9854. "_is3DNode": false,
  9855. "_groupIndex": 0,
  9856. "groupIndex": 0,
  9857. "_id": ""
  9858. },
  9859. {
  9860. "__type__": "cc.Sprite",
  9861. "_name": "",
  9862. "_objFlags": 0,
  9863. "node": {
  9864. "__id__": 257
  9865. },
  9866. "_enabled": true,
  9867. "_materials": [
  9868. {
  9869. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9870. }
  9871. ],
  9872. "_srcBlendFactor": 770,
  9873. "_dstBlendFactor": 771,
  9874. "_spriteFrame": {
  9875. "__uuid__": "12fde944-5393-40fb-a3a5-1964a92f169b"
  9876. },
  9877. "_type": 1,
  9878. "_sizeMode": 0,
  9879. "_fillType": 0,
  9880. "_fillCenter": {
  9881. "__type__": "cc.Vec2",
  9882. "x": 0,
  9883. "y": 0
  9884. },
  9885. "_fillStart": 0,
  9886. "_fillRange": 0,
  9887. "_isTrimmedMode": true,
  9888. "_atlas": null,
  9889. "_id": ""
  9890. },
  9891. {
  9892. "__type__": "cc.PrefabInfo",
  9893. "root": {
  9894. "__id__": 1
  9895. },
  9896. "asset": {
  9897. "__id__": 0
  9898. },
  9899. "fileId": "5dkG3NCThHlrKp0dtPjNc6",
  9900. "sync": false
  9901. },
  9902. {
  9903. "__type__": "cc.Node",
  9904. "_name": "TEXT_LABEL",
  9905. "_objFlags": 0,
  9906. "_parent": {
  9907. "__id__": 256
  9908. },
  9909. "_children": [],
  9910. "_active": false,
  9911. "_components": [
  9912. {
  9913. "__id__": 261
  9914. }
  9915. ],
  9916. "_prefab": {
  9917. "__id__": 262
  9918. },
  9919. "_opacity": 255,
  9920. "_color": {
  9921. "__type__": "cc.Color",
  9922. "r": 201,
  9923. "g": 73,
  9924. "b": 36,
  9925. "a": 255
  9926. },
  9927. "_contentSize": {
  9928. "__type__": "cc.Size",
  9929. "width": 240,
  9930. "height": 60
  9931. },
  9932. "_anchorPoint": {
  9933. "__type__": "cc.Vec2",
  9934. "x": 0.5,
  9935. "y": 0.5
  9936. },
  9937. "_trs": {
  9938. "__type__": "TypedArray",
  9939. "ctor": "Float64Array",
  9940. "array": [
  9941. -85,
  9942. 0,
  9943. 0,
  9944. 0,
  9945. 0,
  9946. 0,
  9947. 1,
  9948. 1,
  9949. 1,
  9950. 1
  9951. ]
  9952. },
  9953. "_eulerAngles": {
  9954. "__type__": "cc.Vec3",
  9955. "x": 0,
  9956. "y": 0,
  9957. "z": 0
  9958. },
  9959. "_skewX": 0,
  9960. "_skewY": 0,
  9961. "_is3DNode": false,
  9962. "_groupIndex": 0,
  9963. "groupIndex": 0,
  9964. "_id": ""
  9965. },
  9966. {
  9967. "__type__": "cc.Label",
  9968. "_name": "",
  9969. "_objFlags": 0,
  9970. "node": {
  9971. "__id__": 260
  9972. },
  9973. "_enabled": true,
  9974. "_materials": [
  9975. {
  9976. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  9977. }
  9978. ],
  9979. "_srcBlendFactor": 770,
  9980. "_dstBlendFactor": 771,
  9981. "_string": "",
  9982. "_N$string": "",
  9983. "_fontSize": 30,
  9984. "_lineHeight": 32,
  9985. "_enableWrapText": false,
  9986. "_N$file": {
  9987. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  9988. },
  9989. "_isSystemFontUsed": false,
  9990. "_spacingX": 0,
  9991. "_batchAsBitmap": false,
  9992. "_styleFlags": 0,
  9993. "_underlineHeight": 0,
  9994. "_N$horizontalAlign": 0,
  9995. "_N$verticalAlign": 1,
  9996. "_N$fontFamily": "",
  9997. "_N$overflow": 1,
  9998. "_N$cacheMode": 0,
  9999. "_id": ""
  10000. },
  10001. {
  10002. "__type__": "cc.PrefabInfo",
  10003. "root": {
  10004. "__id__": 1
  10005. },
  10006. "asset": {
  10007. "__id__": 0
  10008. },
  10009. "fileId": "649gbVFxhELJPT1JxSTBVy",
  10010. "sync": false
  10011. },
  10012. {
  10013. "__type__": "cc.Node",
  10014. "_name": "PLACEHOLDER_LABEL",
  10015. "_objFlags": 0,
  10016. "_parent": {
  10017. "__id__": 256
  10018. },
  10019. "_children": [],
  10020. "_active": true,
  10021. "_components": [
  10022. {
  10023. "__id__": 264
  10024. }
  10025. ],
  10026. "_prefab": {
  10027. "__id__": 265
  10028. },
  10029. "_opacity": 255,
  10030. "_color": {
  10031. "__type__": "cc.Color",
  10032. "r": 202,
  10033. "g": 140,
  10034. "b": 97,
  10035. "a": 255
  10036. },
  10037. "_contentSize": {
  10038. "__type__": "cc.Size",
  10039. "width": 240,
  10040. "height": 60
  10041. },
  10042. "_anchorPoint": {
  10043. "__type__": "cc.Vec2",
  10044. "x": 0.5,
  10045. "y": 0.5
  10046. },
  10047. "_trs": {
  10048. "__type__": "TypedArray",
  10049. "ctor": "Float64Array",
  10050. "array": [
  10051. -85,
  10052. 0,
  10053. 0,
  10054. 0,
  10055. 0,
  10056. 0,
  10057. 1,
  10058. 1,
  10059. 1,
  10060. 1
  10061. ]
  10062. },
  10063. "_eulerAngles": {
  10064. "__type__": "cc.Vec3",
  10065. "x": 0,
  10066. "y": 0,
  10067. "z": 0
  10068. },
  10069. "_skewX": 0,
  10070. "_skewY": 0,
  10071. "_is3DNode": false,
  10072. "_groupIndex": 0,
  10073. "groupIndex": 0,
  10074. "_id": ""
  10075. },
  10076. {
  10077. "__type__": "cc.Label",
  10078. "_name": "",
  10079. "_objFlags": 0,
  10080. "node": {
  10081. "__id__": 263
  10082. },
  10083. "_enabled": true,
  10084. "_materials": [
  10085. {
  10086. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10087. }
  10088. ],
  10089. "_srcBlendFactor": 770,
  10090. "_dstBlendFactor": 771,
  10091. "_string": "請輸入驗證碼",
  10092. "_N$string": "請輸入驗證碼",
  10093. "_fontSize": 30,
  10094. "_lineHeight": 32,
  10095. "_enableWrapText": false,
  10096. "_N$file": {
  10097. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  10098. },
  10099. "_isSystemFontUsed": false,
  10100. "_spacingX": 0,
  10101. "_batchAsBitmap": false,
  10102. "_styleFlags": 0,
  10103. "_underlineHeight": 0,
  10104. "_N$horizontalAlign": 0,
  10105. "_N$verticalAlign": 1,
  10106. "_N$fontFamily": "Arial",
  10107. "_N$overflow": 1,
  10108. "_N$cacheMode": 0,
  10109. "_id": ""
  10110. },
  10111. {
  10112. "__type__": "cc.PrefabInfo",
  10113. "root": {
  10114. "__id__": 1
  10115. },
  10116. "asset": {
  10117. "__id__": 0
  10118. },
  10119. "fileId": "c7UxUuWDxPH4Ws0V+V08dr",
  10120. "sync": false
  10121. },
  10122. {
  10123. "__type__": "cc.EditBox",
  10124. "_name": "",
  10125. "_objFlags": 0,
  10126. "node": {
  10127. "__id__": 256
  10128. },
  10129. "_enabled": true,
  10130. "_string": "",
  10131. "returnType": 0,
  10132. "maxLength": 6,
  10133. "_tabIndex": 0,
  10134. "editingDidBegan": [],
  10135. "textChanged": [],
  10136. "editingDidEnded": [],
  10137. "editingReturn": [],
  10138. "_N$textLabel": {
  10139. "__id__": 261
  10140. },
  10141. "_N$placeholderLabel": {
  10142. "__id__": 264
  10143. },
  10144. "_N$background": {
  10145. "__id__": 258
  10146. },
  10147. "_N$inputFlag": 5,
  10148. "_N$inputMode": 6,
  10149. "_N$stayOnTop": false,
  10150. "_id": ""
  10151. },
  10152. {
  10153. "__type__": "cc.PrefabInfo",
  10154. "root": {
  10155. "__id__": 1
  10156. },
  10157. "asset": {
  10158. "__id__": 0
  10159. },
  10160. "fileId": "49k8rtRhRIyJ/ZhuRQg5Cb",
  10161. "sync": false
  10162. },
  10163. {
  10164. "__type__": "cc.Node",
  10165. "_name": "BtGetCode",
  10166. "_objFlags": 0,
  10167. "_parent": {
  10168. "__id__": 252
  10169. },
  10170. "_children": [
  10171. {
  10172. "__id__": 269
  10173. }
  10174. ],
  10175. "_active": true,
  10176. "_components": [
  10177. {
  10178. "__id__": 272
  10179. },
  10180. {
  10181. "__id__": 273
  10182. }
  10183. ],
  10184. "_prefab": {
  10185. "__id__": 275
  10186. },
  10187. "_opacity": 255,
  10188. "_color": {
  10189. "__type__": "cc.Color",
  10190. "r": 255,
  10191. "g": 255,
  10192. "b": 255,
  10193. "a": 255
  10194. },
  10195. "_contentSize": {
  10196. "__type__": "cc.Size",
  10197. "width": 143,
  10198. "height": 33
  10199. },
  10200. "_anchorPoint": {
  10201. "__type__": "cc.Vec2",
  10202. "x": 0.5,
  10203. "y": 0.5
  10204. },
  10205. "_trs": {
  10206. "__type__": "TypedArray",
  10207. "ctor": "Float64Array",
  10208. "array": [
  10209. 380,
  10210. 0,
  10211. 0,
  10212. 0,
  10213. 0,
  10214. 0,
  10215. 1,
  10216. 1,
  10217. 1,
  10218. 1
  10219. ]
  10220. },
  10221. "_eulerAngles": {
  10222. "__type__": "cc.Vec3",
  10223. "x": 0,
  10224. "y": 0,
  10225. "z": 0
  10226. },
  10227. "_skewX": 0,
  10228. "_skewY": 0,
  10229. "_is3DNode": false,
  10230. "_groupIndex": 0,
  10231. "groupIndex": 0,
  10232. "_id": ""
  10233. },
  10234. {
  10235. "__type__": "cc.Node",
  10236. "_name": "New Label",
  10237. "_objFlags": 0,
  10238. "_parent": {
  10239. "__id__": 268
  10240. },
  10241. "_children": [],
  10242. "_active": true,
  10243. "_components": [
  10244. {
  10245. "__id__": 270
  10246. }
  10247. ],
  10248. "_prefab": {
  10249. "__id__": 271
  10250. },
  10251. "_opacity": 255,
  10252. "_color": {
  10253. "__type__": "cc.Color",
  10254. "r": 51,
  10255. "g": 160,
  10256. "b": 0,
  10257. "a": 255
  10258. },
  10259. "_contentSize": {
  10260. "__type__": "cc.Size",
  10261. "width": 150,
  10262. "height": 50.4
  10263. },
  10264. "_anchorPoint": {
  10265. "__type__": "cc.Vec2",
  10266. "x": 0.5,
  10267. "y": 0.5
  10268. },
  10269. "_trs": {
  10270. "__type__": "TypedArray",
  10271. "ctor": "Float64Array",
  10272. "array": [
  10273. 0,
  10274. 2,
  10275. 0,
  10276. 0,
  10277. 0,
  10278. 0,
  10279. 1,
  10280. 1,
  10281. 1,
  10282. 1
  10283. ]
  10284. },
  10285. "_eulerAngles": {
  10286. "__type__": "cc.Vec3",
  10287. "x": 0,
  10288. "y": 0,
  10289. "z": 0
  10290. },
  10291. "_skewX": 0,
  10292. "_skewY": 0,
  10293. "_is3DNode": false,
  10294. "_groupIndex": 0,
  10295. "groupIndex": 0,
  10296. "_id": ""
  10297. },
  10298. {
  10299. "__type__": "cc.Label",
  10300. "_name": "",
  10301. "_objFlags": 0,
  10302. "node": {
  10303. "__id__": 269
  10304. },
  10305. "_enabled": true,
  10306. "_materials": [
  10307. {
  10308. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10309. }
  10310. ],
  10311. "_srcBlendFactor": 770,
  10312. "_dstBlendFactor": 771,
  10313. "_string": "獲取驗證碼",
  10314. "_N$string": "獲取驗證碼",
  10315. "_fontSize": 30,
  10316. "_lineHeight": 40,
  10317. "_enableWrapText": true,
  10318. "_N$file": null,
  10319. "_isSystemFontUsed": true,
  10320. "_spacingX": 0,
  10321. "_batchAsBitmap": false,
  10322. "_styleFlags": 4,
  10323. "_underlineHeight": 1.5,
  10324. "_N$horizontalAlign": 1,
  10325. "_N$verticalAlign": 1,
  10326. "_N$fontFamily": "Arial",
  10327. "_N$overflow": 0,
  10328. "_N$cacheMode": 0,
  10329. "_id": ""
  10330. },
  10331. {
  10332. "__type__": "cc.PrefabInfo",
  10333. "root": {
  10334. "__id__": 1
  10335. },
  10336. "asset": {
  10337. "__id__": 0
  10338. },
  10339. "fileId": "69Lbt9YjpK/LI27tTx9+jE",
  10340. "sync": false
  10341. },
  10342. {
  10343. "__type__": "cc.Sprite",
  10344. "_name": "",
  10345. "_objFlags": 0,
  10346. "node": {
  10347. "__id__": 268
  10348. },
  10349. "_enabled": false,
  10350. "_materials": [
  10351. {
  10352. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10353. }
  10354. ],
  10355. "_srcBlendFactor": 770,
  10356. "_dstBlendFactor": 771,
  10357. "_spriteFrame": {
  10358. "__uuid__": "38f9b396-4977-446e-bbec-2407b47f9de5"
  10359. },
  10360. "_type": 0,
  10361. "_sizeMode": 1,
  10362. "_fillType": 0,
  10363. "_fillCenter": {
  10364. "__type__": "cc.Vec2",
  10365. "x": 0,
  10366. "y": 0
  10367. },
  10368. "_fillStart": 0,
  10369. "_fillRange": 0,
  10370. "_isTrimmedMode": true,
  10371. "_atlas": null,
  10372. "_id": ""
  10373. },
  10374. {
  10375. "__type__": "cc.Button",
  10376. "_name": "",
  10377. "_objFlags": 0,
  10378. "node": {
  10379. "__id__": 268
  10380. },
  10381. "_enabled": true,
  10382. "_normalMaterial": null,
  10383. "_grayMaterial": null,
  10384. "duration": 0,
  10385. "zoomScale": 1.2,
  10386. "clickEvents": [
  10387. {
  10388. "__id__": 274
  10389. }
  10390. ],
  10391. "_N$interactable": true,
  10392. "_N$enableAutoGrayEffect": false,
  10393. "_N$transition": 1,
  10394. "transition": 1,
  10395. "_N$normalColor": {
  10396. "__type__": "cc.Color",
  10397. "r": 255,
  10398. "g": 255,
  10399. "b": 255,
  10400. "a": 255
  10401. },
  10402. "_N$pressedColor": {
  10403. "__type__": "cc.Color",
  10404. "r": 211,
  10405. "g": 211,
  10406. "b": 211,
  10407. "a": 255
  10408. },
  10409. "pressedColor": {
  10410. "__type__": "cc.Color",
  10411. "r": 211,
  10412. "g": 211,
  10413. "b": 211,
  10414. "a": 255
  10415. },
  10416. "_N$hoverColor": {
  10417. "__type__": "cc.Color",
  10418. "r": 255,
  10419. "g": 255,
  10420. "b": 255,
  10421. "a": 255
  10422. },
  10423. "hoverColor": {
  10424. "__type__": "cc.Color",
  10425. "r": 255,
  10426. "g": 255,
  10427. "b": 255,
  10428. "a": 255
  10429. },
  10430. "_N$disabledColor": {
  10431. "__type__": "cc.Color",
  10432. "r": 124,
  10433. "g": 124,
  10434. "b": 124,
  10435. "a": 255
  10436. },
  10437. "_N$normalSprite": null,
  10438. "_N$pressedSprite": null,
  10439. "pressedSprite": null,
  10440. "_N$hoverSprite": null,
  10441. "hoverSprite": null,
  10442. "_N$disabledSprite": null,
  10443. "_N$target": {
  10444. "__id__": 268
  10445. },
  10446. "_id": ""
  10447. },
  10448. {
  10449. "__type__": "cc.ClickEvent",
  10450. "target": {
  10451. "__id__": 233
  10452. },
  10453. "component": "",
  10454. "_componentId": "cd27feRjGRCbLHYCZO0j/d3",
  10455. "handler": "GetVerificationCode",
  10456. "customEventData": ""
  10457. },
  10458. {
  10459. "__type__": "cc.PrefabInfo",
  10460. "root": {
  10461. "__id__": 1
  10462. },
  10463. "asset": {
  10464. "__id__": 0
  10465. },
  10466. "fileId": "efzqgWYj9GULXo7z5czC1M",
  10467. "sync": false
  10468. },
  10469. {
  10470. "__type__": "cc.Label",
  10471. "_name": "",
  10472. "_objFlags": 0,
  10473. "node": {
  10474. "__id__": 252
  10475. },
  10476. "_enabled": true,
  10477. "_materials": [
  10478. {
  10479. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10480. }
  10481. ],
  10482. "_srcBlendFactor": 770,
  10483. "_dstBlendFactor": 771,
  10484. "_string": "驗 證 碼:",
  10485. "_N$string": "驗 證 碼:",
  10486. "_fontSize": 30,
  10487. "_lineHeight": 32,
  10488. "_enableWrapText": true,
  10489. "_N$file": {
  10490. "__uuid__": "8232a6ae-f8d5-41ca-a32f-6ce1a50a585f"
  10491. },
  10492. "_isSystemFontUsed": false,
  10493. "_spacingX": 0,
  10494. "_batchAsBitmap": false,
  10495. "_styleFlags": 0,
  10496. "_underlineHeight": 0,
  10497. "_N$horizontalAlign": 1,
  10498. "_N$verticalAlign": 1,
  10499. "_N$fontFamily": "Arial",
  10500. "_N$overflow": 0,
  10501. "_N$cacheMode": 0,
  10502. "_id": ""
  10503. },
  10504. {
  10505. "__type__": "cc.PrefabInfo",
  10506. "root": {
  10507. "__id__": 1
  10508. },
  10509. "asset": {
  10510. "__id__": 0
  10511. },
  10512. "fileId": "10heTXnAtJvopr/JiuSTSo",
  10513. "sync": false
  10514. },
  10515. {
  10516. "__type__": "cd27feRjGRCbLHYCZO0j/d3",
  10517. "_name": "",
  10518. "_objFlags": 0,
  10519. "node": {
  10520. "__id__": 233
  10521. },
  10522. "_enabled": true,
  10523. "m_EdPhone": {
  10524. "__id__": 248
  10525. },
  10526. "m_EdCode": {
  10527. "__id__": 266
  10528. },
  10529. "m_BtGetCode": {
  10530. "__id__": 273
  10531. },
  10532. "_id": ""
  10533. },
  10534. {
  10535. "__type__": "cc.PrefabInfo",
  10536. "root": {
  10537. "__id__": 1
  10538. },
  10539. "asset": {
  10540. "__id__": 0
  10541. },
  10542. "fileId": "30gL09KVhESLCJcW4PP8I9",
  10543. "sync": false
  10544. },
  10545. {
  10546. "__type__": "cc.PrefabInfo",
  10547. "root": {
  10548. "__id__": 1
  10549. },
  10550. "asset": {
  10551. "__id__": 0
  10552. },
  10553. "fileId": "08F4zHWbdEOr0r43WEWjoO",
  10554. "sync": false
  10555. },
  10556. {
  10557. "__type__": "cc.Node",
  10558. "_name": "Sure",
  10559. "_objFlags": 0,
  10560. "_parent": {
  10561. "__id__": 1
  10562. },
  10563. "_children": [],
  10564. "_active": true,
  10565. "_components": [
  10566. {
  10567. "__id__": 282
  10568. },
  10569. {
  10570. "__id__": 283
  10571. }
  10572. ],
  10573. "_prefab": {
  10574. "__id__": 285
  10575. },
  10576. "_opacity": 255,
  10577. "_color": {
  10578. "__type__": "cc.Color",
  10579. "r": 255,
  10580. "g": 255,
  10581. "b": 255,
  10582. "a": 255
  10583. },
  10584. "_contentSize": {
  10585. "__type__": "cc.Size",
  10586. "width": 244,
  10587. "height": 83
  10588. },
  10589. "_anchorPoint": {
  10590. "__type__": "cc.Vec2",
  10591. "x": 0.5,
  10592. "y": 0.5
  10593. },
  10594. "_trs": {
  10595. "__type__": "TypedArray",
  10596. "ctor": "Float64Array",
  10597. "array": [
  10598. 0,
  10599. -190,
  10600. 0,
  10601. 0,
  10602. 0,
  10603. 0,
  10604. 1,
  10605. 1,
  10606. 1,
  10607. 1
  10608. ]
  10609. },
  10610. "_eulerAngles": {
  10611. "__type__": "cc.Vec3",
  10612. "x": 0,
  10613. "y": 0,
  10614. "z": 0
  10615. },
  10616. "_skewX": 0,
  10617. "_skewY": 0,
  10618. "_is3DNode": false,
  10619. "_groupIndex": 0,
  10620. "groupIndex": 0,
  10621. "_id": ""
  10622. },
  10623. {
  10624. "__type__": "cc.Sprite",
  10625. "_name": "",
  10626. "_objFlags": 0,
  10627. "node": {
  10628. "__id__": 281
  10629. },
  10630. "_enabled": true,
  10631. "_materials": [
  10632. {
  10633. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  10634. }
  10635. ],
  10636. "_srcBlendFactor": 770,
  10637. "_dstBlendFactor": 771,
  10638. "_spriteFrame": {
  10639. "__uuid__": "abeeb8be-365d-40ee-bfd6-316794505cf7"
  10640. },
  10641. "_type": 0,
  10642. "_sizeMode": 1,
  10643. "_fillType": 0,
  10644. "_fillCenter": {
  10645. "__type__": "cc.Vec2",
  10646. "x": 0,
  10647. "y": 0
  10648. },
  10649. "_fillStart": 0,
  10650. "_fillRange": 0,
  10651. "_isTrimmedMode": true,
  10652. "_atlas": null,
  10653. "_id": ""
  10654. },
  10655. {
  10656. "__type__": "cc.Button",
  10657. "_name": "",
  10658. "_objFlags": 0,
  10659. "node": {
  10660. "__id__": 281
  10661. },
  10662. "_enabled": true,
  10663. "_normalMaterial": null,
  10664. "_grayMaterial": null,
  10665. "duration": 0.1,
  10666. "zoomScale": 1.2,
  10667. "clickEvents": [
  10668. {
  10669. "__id__": 284
  10670. }
  10671. ],
  10672. "_N$interactable": true,
  10673. "_N$enableAutoGrayEffect": false,
  10674. "_N$transition": 1,
  10675. "transition": 1,
  10676. "_N$normalColor": {
  10677. "__type__": "cc.Color",
  10678. "r": 255,
  10679. "g": 255,
  10680. "b": 255,
  10681. "a": 255
  10682. },
  10683. "_N$pressedColor": {
  10684. "__type__": "cc.Color",
  10685. "r": 211,
  10686. "g": 211,
  10687. "b": 211,
  10688. "a": 255
  10689. },
  10690. "pressedColor": {
  10691. "__type__": "cc.Color",
  10692. "r": 211,
  10693. "g": 211,
  10694. "b": 211,
  10695. "a": 255
  10696. },
  10697. "_N$hoverColor": {
  10698. "__type__": "cc.Color",
  10699. "r": 255,
  10700. "g": 255,
  10701. "b": 255,
  10702. "a": 255
  10703. },
  10704. "hoverColor": {
  10705. "__type__": "cc.Color",
  10706. "r": 255,
  10707. "g": 255,
  10708. "b": 255,
  10709. "a": 255
  10710. },
  10711. "_N$disabledColor": {
  10712. "__type__": "cc.Color",
  10713. "r": 124,
  10714. "g": 124,
  10715. "b": 124,
  10716. "a": 255
  10717. },
  10718. "_N$normalSprite": null,
  10719. "_N$pressedSprite": null,
  10720. "pressedSprite": null,
  10721. "_N$hoverSprite": null,
  10722. "hoverSprite": null,
  10723. "_N$disabledSprite": null,
  10724. "_N$target": {
  10725. "__id__": 281
  10726. },
  10727. "_id": ""
  10728. },
  10729. {
  10730. "__type__": "cc.ClickEvent",
  10731. "target": {
  10732. "__id__": 1
  10733. },
  10734. "component": "",
  10735. "_componentId": "6073d6wDtBMibHWPorl7qEm",
  10736. "handler": "OnClicked_Submit",
  10737. "customEventData": ""
  10738. },
  10739. {
  10740. "__type__": "cc.PrefabInfo",
  10741. "root": {
  10742. "__id__": 1
  10743. },
  10744. "asset": {
  10745. "__id__": 0
  10746. },
  10747. "fileId": "9esM6O24lIPrzZPVCRAnbM",
  10748. "sync": false
  10749. },
  10750. {
  10751. "__type__": "6073d6wDtBMibHWPorl7qEm",
  10752. "_name": "",
  10753. "_objFlags": 0,
  10754. "node": {
  10755. "__id__": 1
  10756. },
  10757. "_enabled": true,
  10758. "m_EdPSW": {
  10759. "__id__": 87
  10760. },
  10761. "m_EdPSW2": {
  10762. "__id__": 105
  10763. },
  10764. "m_VeriNode": null,
  10765. "_id": ""
  10766. },
  10767. {
  10768. "__type__": "cc.PrefabInfo",
  10769. "root": {
  10770. "__id__": 1
  10771. },
  10772. "asset": {
  10773. "__id__": 0
  10774. },
  10775. "fileId": "",
  10776. "sync": false
  10777. }
  10778. ]