level18.prefab 98 KB

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