level10.prefab 68 KB

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