level15.prefab 88 KB

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