level12.prefab 76 KB

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