level8.prefab 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276
  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": "level8",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 6
  26. },
  27. {
  28. "__id__": 68
  29. },
  30. {
  31. "__id__": 92
  32. },
  33. {
  34. "__id__": 122
  35. },
  36. {
  37. "__id__": 159
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 199
  44. },
  45. {
  46. "__id__": 201
  47. },
  48. {
  49. "__id__": 203
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 205
  54. },
  55. "_lpos": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 803.31,
  59. "z": 0
  60. },
  61. "_lrot": {
  62. "__type__": "cc.Quat",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0,
  66. "w": 1
  67. },
  68. "_lscale": {
  69. "__type__": "cc.Vec3",
  70. "x": 1,
  71. "y": 1,
  72. "z": 1
  73. },
  74. "_layer": 33554432,
  75. "_euler": {
  76. "__type__": "cc.Vec3",
  77. "x": 0,
  78. "y": 0,
  79. "z": 0
  80. },
  81. "_id": ""
  82. },
  83. {
  84. "__type__": "cc.Node",
  85. "_name": "empty",
  86. "_objFlags": 0,
  87. "_parent": {
  88. "__id__": 1
  89. },
  90. "_children": [],
  91. "_active": true,
  92. "_components": [
  93. {
  94. "__id__": 3
  95. }
  96. ],
  97. "_prefab": {
  98. "__id__": 5
  99. },
  100. "_lpos": {
  101. "__type__": "cc.Vec3",
  102. "x": 0,
  103. "y": -250,
  104. "z": 0
  105. },
  106. "_lrot": {
  107. "__type__": "cc.Quat",
  108. "x": 0,
  109. "y": 0,
  110. "z": 0,
  111. "w": 1
  112. },
  113. "_lscale": {
  114. "__type__": "cc.Vec3",
  115. "x": 1,
  116. "y": 1,
  117. "z": 1
  118. },
  119. "_layer": 33554432,
  120. "_euler": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_id": ""
  127. },
  128. {
  129. "__type__": "cc.UITransform",
  130. "_name": "",
  131. "_objFlags": 0,
  132. "__editorExtras__": {},
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "__prefab": {
  138. "__id__": 4
  139. },
  140. "_contentSize": {
  141. "__type__": "cc.Size",
  142. "width": 720,
  143. "height": 500
  144. },
  145. "_anchorPoint": {
  146. "__type__": "cc.Vec2",
  147. "x": 0.5,
  148. "y": 0.5
  149. },
  150. "_id": ""
  151. },
  152. {
  153. "__type__": "cc.CompPrefabInfo",
  154. "fileId": "e9blwPeldJaZt4/6NXU0CT"
  155. },
  156. {
  157. "__type__": "cc.PrefabInfo",
  158. "root": {
  159. "__id__": 1
  160. },
  161. "asset": {
  162. "__id__": 0
  163. },
  164. "fileId": "e8pH4iOhRH45WSYdUTm31s"
  165. },
  166. {
  167. "__type__": "cc.Node",
  168. "_name": "f",
  169. "_objFlags": 0,
  170. "_parent": {
  171. "__id__": 1
  172. },
  173. "_children": [
  174. {
  175. "__id__": 7
  176. }
  177. ],
  178. "_active": true,
  179. "_components": [
  180. {
  181. "__id__": 65
  182. }
  183. ],
  184. "_prefab": {
  185. "__id__": 67
  186. },
  187. "_lpos": {
  188. "__type__": "cc.Vec3",
  189. "x": 0,
  190. "y": -700,
  191. "z": 0
  192. },
  193. "_lrot": {
  194. "__type__": "cc.Quat",
  195. "x": 0,
  196. "y": 0,
  197. "z": 0,
  198. "w": 1
  199. },
  200. "_lscale": {
  201. "__type__": "cc.Vec3",
  202. "x": 1,
  203. "y": 1,
  204. "z": 1
  205. },
  206. "_layer": 33554432,
  207. "_euler": {
  208. "__type__": "cc.Vec3",
  209. "x": 0,
  210. "y": 0,
  211. "z": 0
  212. },
  213. "_id": ""
  214. },
  215. {
  216. "__type__": "cc.Node",
  217. "_name": "g",
  218. "_objFlags": 0,
  219. "_parent": {
  220. "__id__": 6
  221. },
  222. "_children": [
  223. {
  224. "__id__": 8
  225. },
  226. {
  227. "__id__": 40
  228. }
  229. ],
  230. "_active": true,
  231. "_components": [
  232. {
  233. "__id__": 60
  234. },
  235. {
  236. "__id__": 62
  237. }
  238. ],
  239. "_prefab": {
  240. "__id__": 64
  241. },
  242. "_lpos": {
  243. "__type__": "cc.Vec3",
  244. "x": 110,
  245. "y": 0,
  246. "z": 0
  247. },
  248. "_lrot": {
  249. "__type__": "cc.Quat",
  250. "x": 0,
  251. "y": 0,
  252. "z": 0,
  253. "w": 1
  254. },
  255. "_lscale": {
  256. "__type__": "cc.Vec3",
  257. "x": 1,
  258. "y": 1,
  259. "z": 1
  260. },
  261. "_layer": 33554432,
  262. "_euler": {
  263. "__type__": "cc.Vec3",
  264. "x": 0,
  265. "y": 0,
  266. "z": 0
  267. },
  268. "_id": ""
  269. },
  270. {
  271. "__type__": "cc.Node",
  272. "_objFlags": 0,
  273. "_parent": {
  274. "__id__": 7
  275. },
  276. "_prefab": {
  277. "__id__": 9
  278. },
  279. "__editorExtras__": {}
  280. },
  281. {
  282. "__type__": "cc.PrefabInfo",
  283. "root": {
  284. "__id__": 8
  285. },
  286. "asset": {
  287. "__uuid__": "d4654775-69fb-417b-aa8e-e2b67ff35281",
  288. "__expectedType__": "cc.Prefab"
  289. },
  290. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  291. "instance": {
  292. "__id__": 10
  293. }
  294. },
  295. {
  296. "__type__": "cc.PrefabInstance",
  297. "fileId": "0d7Z0eCjVBBYMwND/S9ASE",
  298. "prefabRootNode": {
  299. "__id__": 1
  300. },
  301. "mountedChildren": [],
  302. "mountedComponents": [],
  303. "propertyOverrides": [
  304. {
  305. "__id__": 11
  306. },
  307. {
  308. "__id__": 13
  309. },
  310. {
  311. "__id__": 14
  312. },
  313. {
  314. "__id__": 15
  315. },
  316. {
  317. "__id__": 16
  318. },
  319. {
  320. "__id__": 18
  321. },
  322. {
  323. "__id__": 19
  324. },
  325. {
  326. "__id__": 21
  327. },
  328. {
  329. "__id__": 23
  330. },
  331. {
  332. "__id__": 24
  333. },
  334. {
  335. "__id__": 26
  336. },
  337. {
  338. "__id__": 28
  339. },
  340. {
  341. "__id__": 30
  342. },
  343. {
  344. "__id__": 31
  345. },
  346. {
  347. "__id__": 33
  348. },
  349. {
  350. "__id__": 35
  351. },
  352. {
  353. "__id__": 36
  354. },
  355. {
  356. "__id__": 38
  357. },
  358. {
  359. "__id__": 39
  360. }
  361. ],
  362. "removedComponents": []
  363. },
  364. {
  365. "__type__": "CCPropertyOverrideInfo",
  366. "targetInfo": {
  367. "__id__": 12
  368. },
  369. "propertyPath": [
  370. "_name"
  371. ],
  372. "value": "role_arrow"
  373. },
  374. {
  375. "__type__": "cc.TargetInfo",
  376. "localID": [
  377. "23Shh68qVKLJ0cCLTsPddX"
  378. ]
  379. },
  380. {
  381. "__type__": "CCPropertyOverrideInfo",
  382. "targetInfo": {
  383. "__id__": 12
  384. },
  385. "propertyPath": [
  386. "_lpos"
  387. ],
  388. "value": {
  389. "__type__": "cc.Vec3",
  390. "x": -135.635,
  391. "y": 0,
  392. "z": 0
  393. }
  394. },
  395. {
  396. "__type__": "CCPropertyOverrideInfo",
  397. "targetInfo": {
  398. "__id__": 12
  399. },
  400. "propertyPath": [
  401. "_lrot"
  402. ],
  403. "value": {
  404. "__type__": "cc.Quat",
  405. "x": 0,
  406. "y": 0,
  407. "z": 0,
  408. "w": 1
  409. }
  410. },
  411. {
  412. "__type__": "CCPropertyOverrideInfo",
  413. "targetInfo": {
  414. "__id__": 12
  415. },
  416. "propertyPath": [
  417. "_euler"
  418. ],
  419. "value": {
  420. "__type__": "cc.Vec3",
  421. "x": 0,
  422. "y": 0,
  423. "z": 0
  424. }
  425. },
  426. {
  427. "__type__": "CCPropertyOverrideInfo",
  428. "targetInfo": {
  429. "__id__": 17
  430. },
  431. "propertyPath": [
  432. "_name"
  433. ],
  434. "value": "arrow"
  435. },
  436. {
  437. "__type__": "cc.TargetInfo",
  438. "localID": [
  439. "42opOEKUJAWoxFzUMdQqWk"
  440. ]
  441. },
  442. {
  443. "__type__": "CCPropertyOverrideInfo",
  444. "targetInfo": {
  445. "__id__": 17
  446. },
  447. "propertyPath": [
  448. "_lpos"
  449. ],
  450. "value": {
  451. "__type__": "cc.Vec3",
  452. "x": 0,
  453. "y": 4.5,
  454. "z": 0
  455. }
  456. },
  457. {
  458. "__type__": "CCPropertyOverrideInfo",
  459. "targetInfo": {
  460. "__id__": 20
  461. },
  462. "propertyPath": [
  463. "_name"
  464. ],
  465. "value": "arrow-001"
  466. },
  467. {
  468. "__type__": "cc.TargetInfo",
  469. "localID": [
  470. "b9xRlyb11C9pa/y/L709DJ"
  471. ]
  472. },
  473. {
  474. "__type__": "CCPropertyOverrideInfo",
  475. "targetInfo": {
  476. "__id__": 22
  477. },
  478. "propertyPath": [
  479. "_name"
  480. ],
  481. "value": "arrow-002"
  482. },
  483. {
  484. "__type__": "cc.TargetInfo",
  485. "localID": [
  486. "57MbcUPwxCJqlYLcpzwcDp"
  487. ]
  488. },
  489. {
  490. "__type__": "CCPropertyOverrideInfo",
  491. "targetInfo": {
  492. "__id__": 22
  493. },
  494. "propertyPath": [
  495. "_lpos"
  496. ],
  497. "value": {
  498. "__type__": "cc.Vec3",
  499. "x": 0,
  500. "y": -30,
  501. "z": 0
  502. }
  503. },
  504. {
  505. "__type__": "CCPropertyOverrideInfo",
  506. "targetInfo": {
  507. "__id__": 25
  508. },
  509. "propertyPath": [
  510. "_string"
  511. ],
  512. "value": "-4"
  513. },
  514. {
  515. "__type__": "cc.TargetInfo",
  516. "localID": [
  517. "3cxFYWW1RLiLNjw6kMjSKk"
  518. ]
  519. },
  520. {
  521. "__type__": "CCPropertyOverrideInfo",
  522. "targetInfo": {
  523. "__id__": 27
  524. },
  525. "propertyPath": [
  526. "_contentSize"
  527. ],
  528. "value": {
  529. "__type__": "cc.Size",
  530. "width": 48.89,
  531. "height": 40
  532. }
  533. },
  534. {
  535. "__type__": "cc.TargetInfo",
  536. "localID": [
  537. "d9R+nrXWtEf6ZgmiV+Scpc"
  538. ]
  539. },
  540. {
  541. "__type__": "CCPropertyOverrideInfo",
  542. "targetInfo": {
  543. "__id__": 29
  544. },
  545. "propertyPath": [
  546. "_name"
  547. ],
  548. "value": "arrow-001"
  549. },
  550. {
  551. "__type__": "cc.TargetInfo",
  552. "localID": [
  553. "1dxL1lK35Du6k8O0qoakU5"
  554. ]
  555. },
  556. {
  557. "__type__": "CCPropertyOverrideInfo",
  558. "targetInfo": {
  559. "__id__": 29
  560. },
  561. "propertyPath": [
  562. "_lpos"
  563. ],
  564. "value": {
  565. "__type__": "cc.Vec3",
  566. "x": 0,
  567. "y": -4.5,
  568. "z": 0
  569. }
  570. },
  571. {
  572. "__type__": "CCPropertyOverrideInfo",
  573. "targetInfo": {
  574. "__id__": 32
  575. },
  576. "propertyPath": [
  577. "_lscale"
  578. ],
  579. "value": {
  580. "__type__": "cc.Vec3",
  581. "x": 0.7,
  582. "y": 0.7,
  583. "z": 1
  584. }
  585. },
  586. {
  587. "__type__": "cc.TargetInfo",
  588. "localID": [
  589. "9aWY3NvjVGN6BIf1YtifUZ"
  590. ]
  591. },
  592. {
  593. "__type__": "CCPropertyOverrideInfo",
  594. "targetInfo": {
  595. "__id__": 34
  596. },
  597. "propertyPath": [
  598. "_name"
  599. ],
  600. "value": "atk"
  601. },
  602. {
  603. "__type__": "cc.TargetInfo",
  604. "localID": [
  605. "c5BXU6uCFL+prImcapeAyO"
  606. ]
  607. },
  608. {
  609. "__type__": "CCPropertyOverrideInfo",
  610. "targetInfo": {
  611. "__id__": 34
  612. },
  613. "propertyPath": [
  614. "_lpos"
  615. ],
  616. "value": {
  617. "__type__": "cc.Vec3",
  618. "x": 0,
  619. "y": 199.867,
  620. "z": 0
  621. }
  622. },
  623. {
  624. "__type__": "CCPropertyOverrideInfo",
  625. "targetInfo": {
  626. "__id__": 37
  627. },
  628. "propertyPath": [
  629. "_name"
  630. ],
  631. "value": "arrows"
  632. },
  633. {
  634. "__type__": "cc.TargetInfo",
  635. "localID": [
  636. "33MREel1JKArFom6J5Xfiz"
  637. ]
  638. },
  639. {
  640. "__type__": "CCPropertyOverrideInfo",
  641. "targetInfo": {
  642. "__id__": 37
  643. },
  644. "propertyPath": [
  645. "_lpos"
  646. ],
  647. "value": {
  648. "__type__": "cc.Vec3",
  649. "x": 37.286,
  650. "y": 89.39,
  651. "z": 0
  652. }
  653. },
  654. {
  655. "__type__": "CCPropertyOverrideInfo",
  656. "targetInfo": {
  657. "__id__": 37
  658. },
  659. "propertyPath": [
  660. "_lscale"
  661. ],
  662. "value": {
  663. "__type__": "cc.Vec3",
  664. "x": 0.7,
  665. "y": 0.7,
  666. "z": 1
  667. }
  668. },
  669. {
  670. "__type__": "cc.Node",
  671. "_objFlags": 0,
  672. "_parent": {
  673. "__id__": 7
  674. },
  675. "_prefab": {
  676. "__id__": 41
  677. },
  678. "__editorExtras__": {}
  679. },
  680. {
  681. "__type__": "cc.PrefabInfo",
  682. "root": {
  683. "__id__": 40
  684. },
  685. "asset": {
  686. "__uuid__": "c046ec07-3fa9-43c2-b6b2-509244f6b0fa",
  687. "__expectedType__": "cc.Prefab"
  688. },
  689. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  690. "instance": {
  691. "__id__": 42
  692. }
  693. },
  694. {
  695. "__type__": "cc.PrefabInstance",
  696. "fileId": "fesAD/5DRJH7cmBMP7OXfg",
  697. "prefabRootNode": {
  698. "__id__": 1
  699. },
  700. "mountedChildren": [],
  701. "mountedComponents": [],
  702. "propertyOverrides": [
  703. {
  704. "__id__": 43
  705. },
  706. {
  707. "__id__": 45
  708. },
  709. {
  710. "__id__": 46
  711. },
  712. {
  713. "__id__": 47
  714. },
  715. {
  716. "__id__": 48
  717. },
  718. {
  719. "__id__": 50
  720. },
  721. {
  722. "__id__": 52
  723. },
  724. {
  725. "__id__": 54
  726. },
  727. {
  728. "__id__": 56
  729. },
  730. {
  731. "__id__": 58
  732. }
  733. ],
  734. "removedComponents": []
  735. },
  736. {
  737. "__type__": "CCPropertyOverrideInfo",
  738. "targetInfo": {
  739. "__id__": 44
  740. },
  741. "propertyPath": [
  742. "_name"
  743. ],
  744. "value": "role_tujiu"
  745. },
  746. {
  747. "__type__": "cc.TargetInfo",
  748. "localID": [
  749. "23Shh68qVKLJ0cCLTsPddX"
  750. ]
  751. },
  752. {
  753. "__type__": "CCPropertyOverrideInfo",
  754. "targetInfo": {
  755. "__id__": 44
  756. },
  757. "propertyPath": [
  758. "_lpos"
  759. ],
  760. "value": {
  761. "__type__": "cc.Vec3",
  762. "x": 97.32,
  763. "y": 0,
  764. "z": 0
  765. }
  766. },
  767. {
  768. "__type__": "CCPropertyOverrideInfo",
  769. "targetInfo": {
  770. "__id__": 44
  771. },
  772. "propertyPath": [
  773. "_lrot"
  774. ],
  775. "value": {
  776. "__type__": "cc.Quat",
  777. "x": 0,
  778. "y": 0,
  779. "z": 0,
  780. "w": 1
  781. }
  782. },
  783. {
  784. "__type__": "CCPropertyOverrideInfo",
  785. "targetInfo": {
  786. "__id__": 44
  787. },
  788. "propertyPath": [
  789. "_euler"
  790. ],
  791. "value": {
  792. "__type__": "cc.Vec3",
  793. "x": 0,
  794. "y": 0,
  795. "z": 0
  796. }
  797. },
  798. {
  799. "__type__": "CCPropertyOverrideInfo",
  800. "targetInfo": {
  801. "__id__": 49
  802. },
  803. "propertyPath": [
  804. "_string"
  805. ],
  806. "value": "60"
  807. },
  808. {
  809. "__type__": "cc.TargetInfo",
  810. "localID": [
  811. "3cxFYWW1RLiLNjw6kMjSKk"
  812. ]
  813. },
  814. {
  815. "__type__": "CCPropertyOverrideInfo",
  816. "targetInfo": {
  817. "__id__": 51
  818. },
  819. "propertyPath": [
  820. "_contentSize"
  821. ],
  822. "value": {
  823. "__type__": "cc.Size",
  824. "width": 48.89,
  825. "height": 40
  826. }
  827. },
  828. {
  829. "__type__": "cc.TargetInfo",
  830. "localID": [
  831. "d9R+nrXWtEf6ZgmiV+Scpc"
  832. ]
  833. },
  834. {
  835. "__type__": "CCPropertyOverrideInfo",
  836. "targetInfo": {
  837. "__id__": 53
  838. },
  839. "propertyPath": [
  840. "_lscale"
  841. ],
  842. "value": {
  843. "__type__": "cc.Vec3",
  844. "x": 0.8,
  845. "y": 0.8,
  846. "z": 1
  847. }
  848. },
  849. {
  850. "__type__": "cc.TargetInfo",
  851. "localID": [
  852. "9aWY3NvjVGN6BIf1YtifUZ"
  853. ]
  854. },
  855. {
  856. "__type__": "CCPropertyOverrideInfo",
  857. "targetInfo": {
  858. "__id__": 55
  859. },
  860. "propertyPath": [
  861. "_lpos"
  862. ],
  863. "value": {
  864. "__type__": "cc.Vec3",
  865. "x": -20.812,
  866. "y": 230.23,
  867. "z": 0
  868. }
  869. },
  870. {
  871. "__type__": "cc.TargetInfo",
  872. "localID": [
  873. "c5BXU6uCFL+prImcapeAyO"
  874. ]
  875. },
  876. {
  877. "__type__": "CCPropertyOverrideInfo",
  878. "targetInfo": {
  879. "__id__": 57
  880. },
  881. "propertyPath": [
  882. "_contentSize"
  883. ],
  884. "value": {
  885. "__type__": "cc.Size",
  886. "width": 200,
  887. "height": 150
  888. }
  889. },
  890. {
  891. "__type__": "cc.TargetInfo",
  892. "localID": [
  893. "e4WrRTi05BTLGa4GWa7RLh"
  894. ]
  895. },
  896. {
  897. "__type__": "CCPropertyOverrideInfo",
  898. "targetInfo": {
  899. "__id__": 59
  900. },
  901. "propertyPath": [
  902. "_size"
  903. ],
  904. "value": {
  905. "__type__": "cc.Size",
  906. "width": 200,
  907. "height": 150
  908. }
  909. },
  910. {
  911. "__type__": "cc.TargetInfo",
  912. "localID": [
  913. "a5mv6487tJwp8BXB22Ni+/"
  914. ]
  915. },
  916. {
  917. "__type__": "cc.UITransform",
  918. "_name": "",
  919. "_objFlags": 0,
  920. "__editorExtras__": {},
  921. "node": {
  922. "__id__": 7
  923. },
  924. "_enabled": true,
  925. "__prefab": {
  926. "__id__": 61
  927. },
  928. "_contentSize": {
  929. "__type__": "cc.Size",
  930. "width": 474,
  931. "height": 318
  932. },
  933. "_anchorPoint": {
  934. "__type__": "cc.Vec2",
  935. "x": 0.5,
  936. "y": 0.85
  937. },
  938. "_id": ""
  939. },
  940. {
  941. "__type__": "cc.CompPrefabInfo",
  942. "fileId": "aatglE9pNM75H3xuA40KHM"
  943. },
  944. {
  945. "__type__": "cc.Sprite",
  946. "_name": "",
  947. "_objFlags": 0,
  948. "__editorExtras__": {},
  949. "node": {
  950. "__id__": 7
  951. },
  952. "_enabled": true,
  953. "__prefab": {
  954. "__id__": 63
  955. },
  956. "_visFlags": 0,
  957. "_customMaterial": null,
  958. "_srcBlendFactor": 2,
  959. "_dstBlendFactor": 4,
  960. "_color": {
  961. "__type__": "cc.Color",
  962. "r": 255,
  963. "g": 255,
  964. "b": 255,
  965. "a": 255
  966. },
  967. "_spriteFrame": {
  968. "__uuid__": "87bba8b7-d10b-469f-a621-de35488e64b1@f9941",
  969. "__expectedType__": "cc.SpriteFrame"
  970. },
  971. "_type": 0,
  972. "_fillType": 0,
  973. "_sizeMode": 2,
  974. "_fillCenter": {
  975. "__type__": "cc.Vec2",
  976. "x": 0,
  977. "y": 0
  978. },
  979. "_fillStart": 0,
  980. "_fillRange": 0,
  981. "_isTrimmedMode": false,
  982. "_useGrayscale": false,
  983. "_atlas": null,
  984. "_id": ""
  985. },
  986. {
  987. "__type__": "cc.CompPrefabInfo",
  988. "fileId": "f6fqFzuf9GXK5QigaU1t+k"
  989. },
  990. {
  991. "__type__": "cc.PrefabInfo",
  992. "root": {
  993. "__id__": 1
  994. },
  995. "asset": {
  996. "__id__": 0
  997. },
  998. "fileId": "6f0HYAUrVM9oz0Hfg98H8K"
  999. },
  1000. {
  1001. "__type__": "cc.UITransform",
  1002. "_name": "",
  1003. "_objFlags": 0,
  1004. "__editorExtras__": {},
  1005. "node": {
  1006. "__id__": 6
  1007. },
  1008. "_enabled": true,
  1009. "__prefab": {
  1010. "__id__": 66
  1011. },
  1012. "_contentSize": {
  1013. "__type__": "cc.Size",
  1014. "width": 747,
  1015. "height": 400
  1016. },
  1017. "_anchorPoint": {
  1018. "__type__": "cc.Vec2",
  1019. "x": 0.5,
  1020. "y": 0.5
  1021. },
  1022. "_id": ""
  1023. },
  1024. {
  1025. "__type__": "cc.CompPrefabInfo",
  1026. "fileId": "90D8b3Q7pB25Rrw0MnrFxM"
  1027. },
  1028. {
  1029. "__type__": "cc.PrefabInfo",
  1030. "root": {
  1031. "__id__": 1
  1032. },
  1033. "asset": {
  1034. "__id__": 0
  1035. },
  1036. "fileId": "809kJKSXFPV7k46Sie7A/f"
  1037. },
  1038. {
  1039. "__type__": "cc.Node",
  1040. "_name": "f",
  1041. "_objFlags": 0,
  1042. "_parent": {
  1043. "__id__": 1
  1044. },
  1045. "_children": [
  1046. {
  1047. "__id__": 69
  1048. }
  1049. ],
  1050. "_active": true,
  1051. "_components": [
  1052. {
  1053. "__id__": 89
  1054. }
  1055. ],
  1056. "_prefab": {
  1057. "__id__": 91
  1058. },
  1059. "_lpos": {
  1060. "__type__": "cc.Vec3",
  1061. "x": 0,
  1062. "y": -1000,
  1063. "z": 0
  1064. },
  1065. "_lrot": {
  1066. "__type__": "cc.Quat",
  1067. "x": 0,
  1068. "y": 0,
  1069. "z": 0,
  1070. "w": 1
  1071. },
  1072. "_lscale": {
  1073. "__type__": "cc.Vec3",
  1074. "x": 1,
  1075. "y": 1,
  1076. "z": 1
  1077. },
  1078. "_layer": 33554432,
  1079. "_euler": {
  1080. "__type__": "cc.Vec3",
  1081. "x": 0,
  1082. "y": 0,
  1083. "z": 0
  1084. },
  1085. "_id": ""
  1086. },
  1087. {
  1088. "__type__": "cc.Node",
  1089. "_name": "g",
  1090. "_objFlags": 0,
  1091. "_parent": {
  1092. "__id__": 68
  1093. },
  1094. "_children": [
  1095. {
  1096. "__id__": 70
  1097. }
  1098. ],
  1099. "_active": true,
  1100. "_components": [
  1101. {
  1102. "__id__": 84
  1103. },
  1104. {
  1105. "__id__": 86
  1106. }
  1107. ],
  1108. "_prefab": {
  1109. "__id__": 88
  1110. },
  1111. "_lpos": {
  1112. "__type__": "cc.Vec3",
  1113. "x": 220,
  1114. "y": 0,
  1115. "z": 0
  1116. },
  1117. "_lrot": {
  1118. "__type__": "cc.Quat",
  1119. "x": 0,
  1120. "y": 0,
  1121. "z": 0,
  1122. "w": 1
  1123. },
  1124. "_lscale": {
  1125. "__type__": "cc.Vec3",
  1126. "x": 1,
  1127. "y": 1,
  1128. "z": 1
  1129. },
  1130. "_layer": 33554432,
  1131. "_euler": {
  1132. "__type__": "cc.Vec3",
  1133. "x": 0,
  1134. "y": 0,
  1135. "z": 0
  1136. },
  1137. "_id": ""
  1138. },
  1139. {
  1140. "__type__": "cc.Node",
  1141. "_objFlags": 0,
  1142. "_parent": {
  1143. "__id__": 69
  1144. },
  1145. "_prefab": {
  1146. "__id__": 71
  1147. },
  1148. "__editorExtras__": {}
  1149. },
  1150. {
  1151. "__type__": "cc.PrefabInfo",
  1152. "root": {
  1153. "__id__": 70
  1154. },
  1155. "asset": {
  1156. "__uuid__": "d8e13a5f-49af-4013-812d-1ba73633d584",
  1157. "__expectedType__": "cc.Prefab"
  1158. },
  1159. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  1160. "instance": {
  1161. "__id__": 72
  1162. }
  1163. },
  1164. {
  1165. "__type__": "cc.PrefabInstance",
  1166. "fileId": "1bPxDu8jlENplpeWsbVvm7",
  1167. "prefabRootNode": {
  1168. "__id__": 1
  1169. },
  1170. "mountedChildren": [],
  1171. "mountedComponents": [],
  1172. "propertyOverrides": [
  1173. {
  1174. "__id__": 73
  1175. },
  1176. {
  1177. "__id__": 75
  1178. },
  1179. {
  1180. "__id__": 76
  1181. },
  1182. {
  1183. "__id__": 77
  1184. },
  1185. {
  1186. "__id__": 78
  1187. },
  1188. {
  1189. "__id__": 80
  1190. },
  1191. {
  1192. "__id__": 82
  1193. }
  1194. ],
  1195. "removedComponents": []
  1196. },
  1197. {
  1198. "__type__": "CCPropertyOverrideInfo",
  1199. "targetInfo": {
  1200. "__id__": 74
  1201. },
  1202. "propertyPath": [
  1203. "_name"
  1204. ],
  1205. "value": "role_atk"
  1206. },
  1207. {
  1208. "__type__": "cc.TargetInfo",
  1209. "localID": [
  1210. "23Shh68qVKLJ0cCLTsPddX"
  1211. ]
  1212. },
  1213. {
  1214. "__type__": "CCPropertyOverrideInfo",
  1215. "targetInfo": {
  1216. "__id__": 74
  1217. },
  1218. "propertyPath": [
  1219. "_lpos"
  1220. ],
  1221. "value": {
  1222. "__type__": "cc.Vec3",
  1223. "x": 0,
  1224. "y": 0,
  1225. "z": 0
  1226. }
  1227. },
  1228. {
  1229. "__type__": "CCPropertyOverrideInfo",
  1230. "targetInfo": {
  1231. "__id__": 74
  1232. },
  1233. "propertyPath": [
  1234. "_lrot"
  1235. ],
  1236. "value": {
  1237. "__type__": "cc.Quat",
  1238. "x": 0,
  1239. "y": 0,
  1240. "z": 0,
  1241. "w": 1
  1242. }
  1243. },
  1244. {
  1245. "__type__": "CCPropertyOverrideInfo",
  1246. "targetInfo": {
  1247. "__id__": 74
  1248. },
  1249. "propertyPath": [
  1250. "_euler"
  1251. ],
  1252. "value": {
  1253. "__type__": "cc.Vec3",
  1254. "x": 0,
  1255. "y": 0,
  1256. "z": 0
  1257. }
  1258. },
  1259. {
  1260. "__type__": "CCPropertyOverrideInfo",
  1261. "targetInfo": {
  1262. "__id__": 79
  1263. },
  1264. "propertyPath": [
  1265. "_string"
  1266. ],
  1267. "value": "+5"
  1268. },
  1269. {
  1270. "__type__": "cc.TargetInfo",
  1271. "localID": [
  1272. "3cxFYWW1RLiLNjw6kMjSKk"
  1273. ]
  1274. },
  1275. {
  1276. "__type__": "CCPropertyOverrideInfo",
  1277. "targetInfo": {
  1278. "__id__": 81
  1279. },
  1280. "propertyPath": [
  1281. "_contentSize"
  1282. ],
  1283. "value": {
  1284. "__type__": "cc.Size",
  1285. "width": 48.89,
  1286. "height": 40
  1287. }
  1288. },
  1289. {
  1290. "__type__": "cc.TargetInfo",
  1291. "localID": [
  1292. "d9R+nrXWtEf6ZgmiV+Scpc"
  1293. ]
  1294. },
  1295. {
  1296. "__type__": "CCPropertyOverrideInfo",
  1297. "targetInfo": {
  1298. "__id__": 83
  1299. },
  1300. "propertyPath": [
  1301. "roleTypeP1"
  1302. ],
  1303. "value": 0
  1304. },
  1305. {
  1306. "__type__": "cc.TargetInfo",
  1307. "localID": [
  1308. "55VnFEbkREiaRWBMGwR83j"
  1309. ]
  1310. },
  1311. {
  1312. "__type__": "cc.UITransform",
  1313. "_name": "",
  1314. "_objFlags": 0,
  1315. "__editorExtras__": {},
  1316. "node": {
  1317. "__id__": 69
  1318. },
  1319. "_enabled": true,
  1320. "__prefab": {
  1321. "__id__": 85
  1322. },
  1323. "_contentSize": {
  1324. "__type__": "cc.Size",
  1325. "width": 253,
  1326. "height": 142
  1327. },
  1328. "_anchorPoint": {
  1329. "__type__": "cc.Vec2",
  1330. "x": 0.5,
  1331. "y": 0.8
  1332. },
  1333. "_id": ""
  1334. },
  1335. {
  1336. "__type__": "cc.CompPrefabInfo",
  1337. "fileId": "afKUw6ymtE1Ks4gklHP9KW"
  1338. },
  1339. {
  1340. "__type__": "cc.Sprite",
  1341. "_name": "",
  1342. "_objFlags": 0,
  1343. "__editorExtras__": {},
  1344. "node": {
  1345. "__id__": 69
  1346. },
  1347. "_enabled": true,
  1348. "__prefab": {
  1349. "__id__": 87
  1350. },
  1351. "_visFlags": 0,
  1352. "_customMaterial": null,
  1353. "_srcBlendFactor": 2,
  1354. "_dstBlendFactor": 4,
  1355. "_color": {
  1356. "__type__": "cc.Color",
  1357. "r": 255,
  1358. "g": 255,
  1359. "b": 255,
  1360. "a": 255
  1361. },
  1362. "_spriteFrame": {
  1363. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  1364. "__expectedType__": "cc.SpriteFrame"
  1365. },
  1366. "_type": 0,
  1367. "_fillType": 0,
  1368. "_sizeMode": 2,
  1369. "_fillCenter": {
  1370. "__type__": "cc.Vec2",
  1371. "x": 0,
  1372. "y": 0
  1373. },
  1374. "_fillStart": 0,
  1375. "_fillRange": 0,
  1376. "_isTrimmedMode": false,
  1377. "_useGrayscale": false,
  1378. "_atlas": null,
  1379. "_id": ""
  1380. },
  1381. {
  1382. "__type__": "cc.CompPrefabInfo",
  1383. "fileId": "7dNH3g1WBGVZu/w+nEyskM"
  1384. },
  1385. {
  1386. "__type__": "cc.PrefabInfo",
  1387. "root": {
  1388. "__id__": 1
  1389. },
  1390. "asset": {
  1391. "__id__": 0
  1392. },
  1393. "fileId": "961uvQA9JKoq9JZ6mJPYSJ"
  1394. },
  1395. {
  1396. "__type__": "cc.UITransform",
  1397. "_name": "",
  1398. "_objFlags": 0,
  1399. "__editorExtras__": {},
  1400. "node": {
  1401. "__id__": 68
  1402. },
  1403. "_enabled": true,
  1404. "__prefab": {
  1405. "__id__": 90
  1406. },
  1407. "_contentSize": {
  1408. "__type__": "cc.Size",
  1409. "width": 720,
  1410. "height": 200
  1411. },
  1412. "_anchorPoint": {
  1413. "__type__": "cc.Vec2",
  1414. "x": 0.5,
  1415. "y": 0.5
  1416. },
  1417. "_id": ""
  1418. },
  1419. {
  1420. "__type__": "cc.CompPrefabInfo",
  1421. "fileId": "e6FiixuTlJToDImeUFJjPU"
  1422. },
  1423. {
  1424. "__type__": "cc.PrefabInfo",
  1425. "root": {
  1426. "__id__": 1
  1427. },
  1428. "asset": {
  1429. "__id__": 0
  1430. },
  1431. "fileId": "5a18gAgz1K6KB8lYXWvVYP"
  1432. },
  1433. {
  1434. "__type__": "cc.Node",
  1435. "_name": "f",
  1436. "_objFlags": 0,
  1437. "_parent": {
  1438. "__id__": 1
  1439. },
  1440. "_children": [
  1441. {
  1442. "__id__": 93
  1443. }
  1444. ],
  1445. "_active": true,
  1446. "_components": [
  1447. {
  1448. "__id__": 119
  1449. }
  1450. ],
  1451. "_prefab": {
  1452. "__id__": 121
  1453. },
  1454. "_lpos": {
  1455. "__type__": "cc.Vec3",
  1456. "x": 0,
  1457. "y": -1250,
  1458. "z": 0
  1459. },
  1460. "_lrot": {
  1461. "__type__": "cc.Quat",
  1462. "x": 0,
  1463. "y": 0,
  1464. "z": 0,
  1465. "w": 1
  1466. },
  1467. "_lscale": {
  1468. "__type__": "cc.Vec3",
  1469. "x": 1,
  1470. "y": 1,
  1471. "z": 1
  1472. },
  1473. "_layer": 33554432,
  1474. "_euler": {
  1475. "__type__": "cc.Vec3",
  1476. "x": 0,
  1477. "y": 0,
  1478. "z": 0
  1479. },
  1480. "_id": ""
  1481. },
  1482. {
  1483. "__type__": "cc.Node",
  1484. "_name": "g",
  1485. "_objFlags": 0,
  1486. "_parent": {
  1487. "__id__": 92
  1488. },
  1489. "_children": [
  1490. {
  1491. "__id__": 94
  1492. }
  1493. ],
  1494. "_active": true,
  1495. "_components": [
  1496. {
  1497. "__id__": 114
  1498. },
  1499. {
  1500. "__id__": 116
  1501. }
  1502. ],
  1503. "_prefab": {
  1504. "__id__": 118
  1505. },
  1506. "_lpos": {
  1507. "__type__": "cc.Vec3",
  1508. "x": -100,
  1509. "y": 0,
  1510. "z": 0
  1511. },
  1512. "_lrot": {
  1513. "__type__": "cc.Quat",
  1514. "x": 0,
  1515. "y": 0,
  1516. "z": 0,
  1517. "w": 1
  1518. },
  1519. "_lscale": {
  1520. "__type__": "cc.Vec3",
  1521. "x": 1,
  1522. "y": 1,
  1523. "z": 1
  1524. },
  1525. "_layer": 33554432,
  1526. "_euler": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 0,
  1529. "y": 0,
  1530. "z": 0
  1531. },
  1532. "_id": ""
  1533. },
  1534. {
  1535. "__type__": "cc.Node",
  1536. "_objFlags": 0,
  1537. "_parent": {
  1538. "__id__": 93
  1539. },
  1540. "_prefab": {
  1541. "__id__": 95
  1542. },
  1543. "__editorExtras__": {}
  1544. },
  1545. {
  1546. "__type__": "cc.PrefabInfo",
  1547. "root": {
  1548. "__id__": 94
  1549. },
  1550. "asset": {
  1551. "__uuid__": "c046ec07-3fa9-43c2-b6b2-509244f6b0fa",
  1552. "__expectedType__": "cc.Prefab"
  1553. },
  1554. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  1555. "instance": {
  1556. "__id__": 96
  1557. }
  1558. },
  1559. {
  1560. "__type__": "cc.PrefabInstance",
  1561. "fileId": "0fiPUl9gVLy5d51SinLp/H",
  1562. "prefabRootNode": {
  1563. "__id__": 1
  1564. },
  1565. "mountedChildren": [],
  1566. "mountedComponents": [],
  1567. "propertyOverrides": [
  1568. {
  1569. "__id__": 97
  1570. },
  1571. {
  1572. "__id__": 99
  1573. },
  1574. {
  1575. "__id__": 100
  1576. },
  1577. {
  1578. "__id__": 101
  1579. },
  1580. {
  1581. "__id__": 102
  1582. },
  1583. {
  1584. "__id__": 104
  1585. },
  1586. {
  1587. "__id__": 106
  1588. },
  1589. {
  1590. "__id__": 108
  1591. },
  1592. {
  1593. "__id__": 110
  1594. },
  1595. {
  1596. "__id__": 112
  1597. }
  1598. ],
  1599. "removedComponents": []
  1600. },
  1601. {
  1602. "__type__": "CCPropertyOverrideInfo",
  1603. "targetInfo": {
  1604. "__id__": 98
  1605. },
  1606. "propertyPath": [
  1607. "_name"
  1608. ],
  1609. "value": "role_tujiu"
  1610. },
  1611. {
  1612. "__type__": "cc.TargetInfo",
  1613. "localID": [
  1614. "23Shh68qVKLJ0cCLTsPddX"
  1615. ]
  1616. },
  1617. {
  1618. "__type__": "CCPropertyOverrideInfo",
  1619. "targetInfo": {
  1620. "__id__": 98
  1621. },
  1622. "propertyPath": [
  1623. "_lpos"
  1624. ],
  1625. "value": {
  1626. "__type__": "cc.Vec3",
  1627. "x": 61.462,
  1628. "y": 0,
  1629. "z": 0
  1630. }
  1631. },
  1632. {
  1633. "__type__": "CCPropertyOverrideInfo",
  1634. "targetInfo": {
  1635. "__id__": 98
  1636. },
  1637. "propertyPath": [
  1638. "_lrot"
  1639. ],
  1640. "value": {
  1641. "__type__": "cc.Quat",
  1642. "x": 0,
  1643. "y": 0,
  1644. "z": 0,
  1645. "w": 1
  1646. }
  1647. },
  1648. {
  1649. "__type__": "CCPropertyOverrideInfo",
  1650. "targetInfo": {
  1651. "__id__": 98
  1652. },
  1653. "propertyPath": [
  1654. "_euler"
  1655. ],
  1656. "value": {
  1657. "__type__": "cc.Vec3",
  1658. "x": 0,
  1659. "y": 0,
  1660. "z": 0
  1661. }
  1662. },
  1663. {
  1664. "__type__": "CCPropertyOverrideInfo",
  1665. "targetInfo": {
  1666. "__id__": 103
  1667. },
  1668. "propertyPath": [
  1669. "_string"
  1670. ],
  1671. "value": "25"
  1672. },
  1673. {
  1674. "__type__": "cc.TargetInfo",
  1675. "localID": [
  1676. "3cxFYWW1RLiLNjw6kMjSKk"
  1677. ]
  1678. },
  1679. {
  1680. "__type__": "CCPropertyOverrideInfo",
  1681. "targetInfo": {
  1682. "__id__": 105
  1683. },
  1684. "propertyPath": [
  1685. "_contentSize"
  1686. ],
  1687. "value": {
  1688. "__type__": "cc.Size",
  1689. "width": 48.89,
  1690. "height": 40
  1691. }
  1692. },
  1693. {
  1694. "__type__": "cc.TargetInfo",
  1695. "localID": [
  1696. "d9R+nrXWtEf6ZgmiV+Scpc"
  1697. ]
  1698. },
  1699. {
  1700. "__type__": "CCPropertyOverrideInfo",
  1701. "targetInfo": {
  1702. "__id__": 107
  1703. },
  1704. "propertyPath": [
  1705. "_lscale"
  1706. ],
  1707. "value": {
  1708. "__type__": "cc.Vec3",
  1709. "x": 0.6,
  1710. "y": 0.6,
  1711. "z": 1
  1712. }
  1713. },
  1714. {
  1715. "__type__": "cc.TargetInfo",
  1716. "localID": [
  1717. "9aWY3NvjVGN6BIf1YtifUZ"
  1718. ]
  1719. },
  1720. {
  1721. "__type__": "CCPropertyOverrideInfo",
  1722. "targetInfo": {
  1723. "__id__": 109
  1724. },
  1725. "propertyPath": [
  1726. "_contentSize"
  1727. ],
  1728. "value": {
  1729. "__type__": "cc.Size",
  1730. "width": 160,
  1731. "height": 150
  1732. }
  1733. },
  1734. {
  1735. "__type__": "cc.TargetInfo",
  1736. "localID": [
  1737. "e4WrRTi05BTLGa4GWa7RLh"
  1738. ]
  1739. },
  1740. {
  1741. "__type__": "CCPropertyOverrideInfo",
  1742. "targetInfo": {
  1743. "__id__": 111
  1744. },
  1745. "propertyPath": [
  1746. "_size"
  1747. ],
  1748. "value": {
  1749. "__type__": "cc.Size",
  1750. "width": 160,
  1751. "height": 150
  1752. }
  1753. },
  1754. {
  1755. "__type__": "cc.TargetInfo",
  1756. "localID": [
  1757. "a5mv6487tJwp8BXB22Ni+/"
  1758. ]
  1759. },
  1760. {
  1761. "__type__": "CCPropertyOverrideInfo",
  1762. "targetInfo": {
  1763. "__id__": 113
  1764. },
  1765. "propertyPath": [
  1766. "_lpos"
  1767. ],
  1768. "value": {
  1769. "__type__": "cc.Vec3",
  1770. "x": -26.812,
  1771. "y": 180,
  1772. "z": 0
  1773. }
  1774. },
  1775. {
  1776. "__type__": "cc.TargetInfo",
  1777. "localID": [
  1778. "c5BXU6uCFL+prImcapeAyO"
  1779. ]
  1780. },
  1781. {
  1782. "__type__": "cc.UITransform",
  1783. "_name": "",
  1784. "_objFlags": 0,
  1785. "__editorExtras__": {},
  1786. "node": {
  1787. "__id__": 93
  1788. },
  1789. "_enabled": true,
  1790. "__prefab": {
  1791. "__id__": 115
  1792. },
  1793. "_contentSize": {
  1794. "__type__": "cc.Size",
  1795. "width": 474,
  1796. "height": 318
  1797. },
  1798. "_anchorPoint": {
  1799. "__type__": "cc.Vec2",
  1800. "x": 0.5,
  1801. "y": 0.85
  1802. },
  1803. "_id": ""
  1804. },
  1805. {
  1806. "__type__": "cc.CompPrefabInfo",
  1807. "fileId": "18zPeNWnNIMa6vEmarG0ZC"
  1808. },
  1809. {
  1810. "__type__": "cc.Sprite",
  1811. "_name": "",
  1812. "_objFlags": 0,
  1813. "__editorExtras__": {},
  1814. "node": {
  1815. "__id__": 93
  1816. },
  1817. "_enabled": true,
  1818. "__prefab": {
  1819. "__id__": 117
  1820. },
  1821. "_visFlags": 0,
  1822. "_customMaterial": null,
  1823. "_srcBlendFactor": 2,
  1824. "_dstBlendFactor": 4,
  1825. "_color": {
  1826. "__type__": "cc.Color",
  1827. "r": 255,
  1828. "g": 255,
  1829. "b": 255,
  1830. "a": 255
  1831. },
  1832. "_spriteFrame": {
  1833. "__uuid__": "87bba8b7-d10b-469f-a621-de35488e64b1@f9941",
  1834. "__expectedType__": "cc.SpriteFrame"
  1835. },
  1836. "_type": 0,
  1837. "_fillType": 0,
  1838. "_sizeMode": 2,
  1839. "_fillCenter": {
  1840. "__type__": "cc.Vec2",
  1841. "x": 0,
  1842. "y": 0
  1843. },
  1844. "_fillStart": 0,
  1845. "_fillRange": 0,
  1846. "_isTrimmedMode": false,
  1847. "_useGrayscale": false,
  1848. "_atlas": null,
  1849. "_id": ""
  1850. },
  1851. {
  1852. "__type__": "cc.CompPrefabInfo",
  1853. "fileId": "013S0JY0dGhZtKfFvQ2ptp"
  1854. },
  1855. {
  1856. "__type__": "cc.PrefabInfo",
  1857. "root": {
  1858. "__id__": 1
  1859. },
  1860. "asset": {
  1861. "__id__": 0
  1862. },
  1863. "fileId": "ffrAPmWpZOEZDfgnVL9KEA"
  1864. },
  1865. {
  1866. "__type__": "cc.UITransform",
  1867. "_name": "",
  1868. "_objFlags": 0,
  1869. "__editorExtras__": {},
  1870. "node": {
  1871. "__id__": 92
  1872. },
  1873. "_enabled": true,
  1874. "__prefab": {
  1875. "__id__": 120
  1876. },
  1877. "_contentSize": {
  1878. "__type__": "cc.Size",
  1879. "width": 747,
  1880. "height": 300
  1881. },
  1882. "_anchorPoint": {
  1883. "__type__": "cc.Vec2",
  1884. "x": 0.5,
  1885. "y": 0.5
  1886. },
  1887. "_id": ""
  1888. },
  1889. {
  1890. "__type__": "cc.CompPrefabInfo",
  1891. "fileId": "1aqxEN4AJJ5pViXeb8cae6"
  1892. },
  1893. {
  1894. "__type__": "cc.PrefabInfo",
  1895. "root": {
  1896. "__id__": 1
  1897. },
  1898. "asset": {
  1899. "__id__": 0
  1900. },
  1901. "fileId": "5fSh/HrcRA4Is7CTj8wsuZ"
  1902. },
  1903. {
  1904. "__type__": "cc.Node",
  1905. "_name": "f",
  1906. "_objFlags": 0,
  1907. "_parent": {
  1908. "__id__": 1
  1909. },
  1910. "_children": [
  1911. {
  1912. "__id__": 123
  1913. }
  1914. ],
  1915. "_active": true,
  1916. "_components": [
  1917. {
  1918. "__id__": 156
  1919. }
  1920. ],
  1921. "_prefab": {
  1922. "__id__": 158
  1923. },
  1924. "_lpos": {
  1925. "__type__": "cc.Vec3",
  1926. "x": 0,
  1927. "y": -1650,
  1928. "z": 0
  1929. },
  1930. "_lrot": {
  1931. "__type__": "cc.Quat",
  1932. "x": 0,
  1933. "y": 0,
  1934. "z": 0,
  1935. "w": 1
  1936. },
  1937. "_lscale": {
  1938. "__type__": "cc.Vec3",
  1939. "x": 1,
  1940. "y": 1,
  1941. "z": 1
  1942. },
  1943. "_layer": 33554432,
  1944. "_euler": {
  1945. "__type__": "cc.Vec3",
  1946. "x": 0,
  1947. "y": 0,
  1948. "z": 0
  1949. },
  1950. "_id": ""
  1951. },
  1952. {
  1953. "__type__": "cc.Node",
  1954. "_name": "g",
  1955. "_objFlags": 0,
  1956. "_parent": {
  1957. "__id__": 122
  1958. },
  1959. "_children": [
  1960. {
  1961. "__id__": 124
  1962. },
  1963. {
  1964. "__id__": 139
  1965. }
  1966. ],
  1967. "_active": true,
  1968. "_components": [
  1969. {
  1970. "__id__": 151
  1971. },
  1972. {
  1973. "__id__": 153
  1974. }
  1975. ],
  1976. "_prefab": {
  1977. "__id__": 155
  1978. },
  1979. "_lpos": {
  1980. "__type__": "cc.Vec3",
  1981. "x": -100,
  1982. "y": 0,
  1983. "z": 0
  1984. },
  1985. "_lrot": {
  1986. "__type__": "cc.Quat",
  1987. "x": 0,
  1988. "y": 0,
  1989. "z": 0,
  1990. "w": 1
  1991. },
  1992. "_lscale": {
  1993. "__type__": "cc.Vec3",
  1994. "x": 1,
  1995. "y": 1,
  1996. "z": 1
  1997. },
  1998. "_layer": 33554432,
  1999. "_euler": {
  2000. "__type__": "cc.Vec3",
  2001. "x": 0,
  2002. "y": 0,
  2003. "z": 0
  2004. },
  2005. "_id": ""
  2006. },
  2007. {
  2008. "__type__": "cc.Node",
  2009. "_objFlags": 0,
  2010. "_parent": {
  2011. "__id__": 123
  2012. },
  2013. "_prefab": {
  2014. "__id__": 125
  2015. },
  2016. "__editorExtras__": {}
  2017. },
  2018. {
  2019. "__type__": "cc.PrefabInfo",
  2020. "root": {
  2021. "__id__": 124
  2022. },
  2023. "asset": {
  2024. "__uuid__": "765453ef-514e-459a-9d7d-c58b9104dd34",
  2025. "__expectedType__": "cc.Prefab"
  2026. },
  2027. "fileId": "20cVgNMc9LLYnnK6S4McTL",
  2028. "instance": {
  2029. "__id__": 126
  2030. }
  2031. },
  2032. {
  2033. "__type__": "cc.PrefabInstance",
  2034. "fileId": "a9L5oiMhZBbrZpMo1XEQdK",
  2035. "prefabRootNode": {
  2036. "__id__": 1
  2037. },
  2038. "mountedChildren": [],
  2039. "mountedComponents": [],
  2040. "propertyOverrides": [
  2041. {
  2042. "__id__": 127
  2043. },
  2044. {
  2045. "__id__": 129
  2046. },
  2047. {
  2048. "__id__": 130
  2049. },
  2050. {
  2051. "__id__": 131
  2052. },
  2053. {
  2054. "__id__": 132
  2055. },
  2056. {
  2057. "__id__": 134
  2058. },
  2059. {
  2060. "__id__": 136
  2061. },
  2062. {
  2063. "__id__": 138
  2064. }
  2065. ],
  2066. "removedComponents": []
  2067. },
  2068. {
  2069. "__type__": "CCPropertyOverrideInfo",
  2070. "targetInfo": {
  2071. "__id__": 128
  2072. },
  2073. "propertyPath": [
  2074. "_name"
  2075. ],
  2076. "value": "role_player"
  2077. },
  2078. {
  2079. "__type__": "cc.TargetInfo",
  2080. "localID": [
  2081. "20cVgNMc9LLYnnK6S4McTL"
  2082. ]
  2083. },
  2084. {
  2085. "__type__": "CCPropertyOverrideInfo",
  2086. "targetInfo": {
  2087. "__id__": 128
  2088. },
  2089. "propertyPath": [
  2090. "_lpos"
  2091. ],
  2092. "value": {
  2093. "__type__": "cc.Vec3",
  2094. "x": -114.291,
  2095. "y": 0,
  2096. "z": 0
  2097. }
  2098. },
  2099. {
  2100. "__type__": "CCPropertyOverrideInfo",
  2101. "targetInfo": {
  2102. "__id__": 128
  2103. },
  2104. "propertyPath": [
  2105. "_lrot"
  2106. ],
  2107. "value": {
  2108. "__type__": "cc.Quat",
  2109. "x": 0,
  2110. "y": 0,
  2111. "z": 0,
  2112. "w": 1
  2113. }
  2114. },
  2115. {
  2116. "__type__": "CCPropertyOverrideInfo",
  2117. "targetInfo": {
  2118. "__id__": 128
  2119. },
  2120. "propertyPath": [
  2121. "_euler"
  2122. ],
  2123. "value": {
  2124. "__type__": "cc.Vec3",
  2125. "x": 0,
  2126. "y": 0,
  2127. "z": 0
  2128. }
  2129. },
  2130. {
  2131. "__type__": "CCPropertyOverrideInfo",
  2132. "targetInfo": {
  2133. "__id__": 133
  2134. },
  2135. "propertyPath": [
  2136. "_string"
  2137. ],
  2138. "value": "4"
  2139. },
  2140. {
  2141. "__type__": "cc.TargetInfo",
  2142. "localID": [
  2143. "ebDK9ERglCvIaTlwSdEF+S"
  2144. ]
  2145. },
  2146. {
  2147. "__type__": "CCPropertyOverrideInfo",
  2148. "targetInfo": {
  2149. "__id__": 135
  2150. },
  2151. "propertyPath": [
  2152. "_contentSize"
  2153. ],
  2154. "value": {
  2155. "__type__": "cc.Size",
  2156. "width": 24.44,
  2157. "height": 40
  2158. }
  2159. },
  2160. {
  2161. "__type__": "cc.TargetInfo",
  2162. "localID": [
  2163. "0855lmLBBESolir6c7gFnt"
  2164. ]
  2165. },
  2166. {
  2167. "__type__": "CCPropertyOverrideInfo",
  2168. "targetInfo": {
  2169. "__id__": 137
  2170. },
  2171. "propertyPath": [
  2172. "_name"
  2173. ],
  2174. "value": "body"
  2175. },
  2176. {
  2177. "__type__": "cc.TargetInfo",
  2178. "localID": [
  2179. "ab11MmQKpKW58TBu7sIYxC"
  2180. ]
  2181. },
  2182. {
  2183. "__type__": "CCPropertyOverrideInfo",
  2184. "targetInfo": {
  2185. "__id__": 137
  2186. },
  2187. "propertyPath": [
  2188. "_lpos"
  2189. ],
  2190. "value": {
  2191. "__type__": "cc.Vec3",
  2192. "x": 0,
  2193. "y": 47.751999999999995,
  2194. "z": 0
  2195. }
  2196. },
  2197. {
  2198. "__type__": "cc.Node",
  2199. "_objFlags": 0,
  2200. "_parent": {
  2201. "__id__": 123
  2202. },
  2203. "_prefab": {
  2204. "__id__": 140
  2205. },
  2206. "__editorExtras__": {}
  2207. },
  2208. {
  2209. "__type__": "cc.PrefabInfo",
  2210. "root": {
  2211. "__id__": 139
  2212. },
  2213. "asset": {
  2214. "__uuid__": "5f192278-7ef6-446d-9252-71e331226a67",
  2215. "__expectedType__": "cc.Prefab"
  2216. },
  2217. "fileId": "84e6Gm3CtJ2opACdVLG5f/",
  2218. "instance": {
  2219. "__id__": 141
  2220. }
  2221. },
  2222. {
  2223. "__type__": "cc.PrefabInstance",
  2224. "fileId": "cet69mqwNOgbQ9F+Lo8X/n",
  2225. "prefabRootNode": {
  2226. "__id__": 1
  2227. },
  2228. "mountedChildren": [],
  2229. "mountedComponents": [],
  2230. "propertyOverrides": [
  2231. {
  2232. "__id__": 142
  2233. },
  2234. {
  2235. "__id__": 144
  2236. },
  2237. {
  2238. "__id__": 145
  2239. },
  2240. {
  2241. "__id__": 146
  2242. },
  2243. {
  2244. "__id__": 147
  2245. },
  2246. {
  2247. "__id__": 149
  2248. }
  2249. ],
  2250. "removedComponents": []
  2251. },
  2252. {
  2253. "__type__": "CCPropertyOverrideInfo",
  2254. "targetInfo": {
  2255. "__id__": 143
  2256. },
  2257. "propertyPath": [
  2258. "_name"
  2259. ],
  2260. "value": "role_lang"
  2261. },
  2262. {
  2263. "__type__": "cc.TargetInfo",
  2264. "localID": [
  2265. "84e6Gm3CtJ2opACdVLG5f/"
  2266. ]
  2267. },
  2268. {
  2269. "__type__": "CCPropertyOverrideInfo",
  2270. "targetInfo": {
  2271. "__id__": 143
  2272. },
  2273. "propertyPath": [
  2274. "_lpos"
  2275. ],
  2276. "value": {
  2277. "__type__": "cc.Vec3",
  2278. "x": 106.575,
  2279. "y": 0,
  2280. "z": 0
  2281. }
  2282. },
  2283. {
  2284. "__type__": "CCPropertyOverrideInfo",
  2285. "targetInfo": {
  2286. "__id__": 143
  2287. },
  2288. "propertyPath": [
  2289. "_lrot"
  2290. ],
  2291. "value": {
  2292. "__type__": "cc.Quat",
  2293. "x": 0,
  2294. "y": 0,
  2295. "z": 0,
  2296. "w": 1
  2297. }
  2298. },
  2299. {
  2300. "__type__": "CCPropertyOverrideInfo",
  2301. "targetInfo": {
  2302. "__id__": 143
  2303. },
  2304. "propertyPath": [
  2305. "_euler"
  2306. ],
  2307. "value": {
  2308. "__type__": "cc.Vec3",
  2309. "x": 0,
  2310. "y": 0,
  2311. "z": 0
  2312. }
  2313. },
  2314. {
  2315. "__type__": "CCPropertyOverrideInfo",
  2316. "targetInfo": {
  2317. "__id__": 148
  2318. },
  2319. "propertyPath": [
  2320. "_string"
  2321. ],
  2322. "value": "5"
  2323. },
  2324. {
  2325. "__type__": "cc.TargetInfo",
  2326. "localID": [
  2327. "7eyftaaShMbqQ0iQPCELlY"
  2328. ]
  2329. },
  2330. {
  2331. "__type__": "CCPropertyOverrideInfo",
  2332. "targetInfo": {
  2333. "__id__": 150
  2334. },
  2335. "propertyPath": [
  2336. "_contentSize"
  2337. ],
  2338. "value": {
  2339. "__type__": "cc.Size",
  2340. "width": 24.44,
  2341. "height": 40
  2342. }
  2343. },
  2344. {
  2345. "__type__": "cc.TargetInfo",
  2346. "localID": [
  2347. "11Z9Y5S1JLs7bwR+zlJGob"
  2348. ]
  2349. },
  2350. {
  2351. "__type__": "cc.UITransform",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "__editorExtras__": {},
  2355. "node": {
  2356. "__id__": 123
  2357. },
  2358. "_enabled": true,
  2359. "__prefab": {
  2360. "__id__": 152
  2361. },
  2362. "_contentSize": {
  2363. "__type__": "cc.Size",
  2364. "width": 474,
  2365. "height": 318
  2366. },
  2367. "_anchorPoint": {
  2368. "__type__": "cc.Vec2",
  2369. "x": 0.5,
  2370. "y": 0.85
  2371. },
  2372. "_id": ""
  2373. },
  2374. {
  2375. "__type__": "cc.CompPrefabInfo",
  2376. "fileId": "c9ihak0dZFoKWjEI7+LeRM"
  2377. },
  2378. {
  2379. "__type__": "cc.Sprite",
  2380. "_name": "",
  2381. "_objFlags": 0,
  2382. "__editorExtras__": {},
  2383. "node": {
  2384. "__id__": 123
  2385. },
  2386. "_enabled": true,
  2387. "__prefab": {
  2388. "__id__": 154
  2389. },
  2390. "_visFlags": 0,
  2391. "_customMaterial": null,
  2392. "_srcBlendFactor": 2,
  2393. "_dstBlendFactor": 4,
  2394. "_color": {
  2395. "__type__": "cc.Color",
  2396. "r": 255,
  2397. "g": 255,
  2398. "b": 255,
  2399. "a": 255
  2400. },
  2401. "_spriteFrame": {
  2402. "__uuid__": "87bba8b7-d10b-469f-a621-de35488e64b1@f9941",
  2403. "__expectedType__": "cc.SpriteFrame"
  2404. },
  2405. "_type": 0,
  2406. "_fillType": 0,
  2407. "_sizeMode": 2,
  2408. "_fillCenter": {
  2409. "__type__": "cc.Vec2",
  2410. "x": 0,
  2411. "y": 0
  2412. },
  2413. "_fillStart": 0,
  2414. "_fillRange": 0,
  2415. "_isTrimmedMode": false,
  2416. "_useGrayscale": false,
  2417. "_atlas": null,
  2418. "_id": ""
  2419. },
  2420. {
  2421. "__type__": "cc.CompPrefabInfo",
  2422. "fileId": "4fLxiyzvZMs60zzLf/InJr"
  2423. },
  2424. {
  2425. "__type__": "cc.PrefabInfo",
  2426. "root": {
  2427. "__id__": 1
  2428. },
  2429. "asset": {
  2430. "__id__": 0
  2431. },
  2432. "fileId": "29jmDeC79D97fUr9CThBMm"
  2433. },
  2434. {
  2435. "__type__": "cc.UITransform",
  2436. "_name": "",
  2437. "_objFlags": 0,
  2438. "__editorExtras__": {},
  2439. "node": {
  2440. "__id__": 122
  2441. },
  2442. "_enabled": true,
  2443. "__prefab": {
  2444. "__id__": 157
  2445. },
  2446. "_contentSize": {
  2447. "__type__": "cc.Size",
  2448. "width": 747,
  2449. "height": 500
  2450. },
  2451. "_anchorPoint": {
  2452. "__type__": "cc.Vec2",
  2453. "x": 0.5,
  2454. "y": 0.5
  2455. },
  2456. "_id": ""
  2457. },
  2458. {
  2459. "__type__": "cc.CompPrefabInfo",
  2460. "fileId": "4bs0uksI5NsYfSw0ArGGS+"
  2461. },
  2462. {
  2463. "__type__": "cc.PrefabInfo",
  2464. "root": {
  2465. "__id__": 1
  2466. },
  2467. "asset": {
  2468. "__id__": 0
  2469. },
  2470. "fileId": "71ZzEuPRpA9bHgq0yIqFnR"
  2471. },
  2472. {
  2473. "__type__": "cc.Node",
  2474. "_name": "f",
  2475. "_objFlags": 0,
  2476. "_parent": {
  2477. "__id__": 1
  2478. },
  2479. "_children": [
  2480. {
  2481. "__id__": 160
  2482. },
  2483. {
  2484. "__id__": 178
  2485. }
  2486. ],
  2487. "_active": true,
  2488. "_components": [
  2489. {
  2490. "__id__": 196
  2491. }
  2492. ],
  2493. "_prefab": {
  2494. "__id__": 198
  2495. },
  2496. "_lpos": {
  2497. "__type__": "cc.Vec3",
  2498. "x": 0,
  2499. "y": -2100,
  2500. "z": 0
  2501. },
  2502. "_lrot": {
  2503. "__type__": "cc.Quat",
  2504. "x": 0,
  2505. "y": 0,
  2506. "z": 0,
  2507. "w": 1
  2508. },
  2509. "_lscale": {
  2510. "__type__": "cc.Vec3",
  2511. "x": 1,
  2512. "y": 1,
  2513. "z": 1
  2514. },
  2515. "_layer": 33554432,
  2516. "_euler": {
  2517. "__type__": "cc.Vec3",
  2518. "x": 0,
  2519. "y": 0,
  2520. "z": 0
  2521. },
  2522. "_id": ""
  2523. },
  2524. {
  2525. "__type__": "cc.Node",
  2526. "_name": "g",
  2527. "_objFlags": 0,
  2528. "_parent": {
  2529. "__id__": 159
  2530. },
  2531. "_children": [
  2532. {
  2533. "__id__": 161
  2534. }
  2535. ],
  2536. "_active": true,
  2537. "_components": [
  2538. {
  2539. "__id__": 173
  2540. },
  2541. {
  2542. "__id__": 175
  2543. }
  2544. ],
  2545. "_prefab": {
  2546. "__id__": 177
  2547. },
  2548. "_lpos": {
  2549. "__type__": "cc.Vec3",
  2550. "x": -220,
  2551. "y": 0,
  2552. "z": 0
  2553. },
  2554. "_lrot": {
  2555. "__type__": "cc.Quat",
  2556. "x": 0,
  2557. "y": 0,
  2558. "z": 0,
  2559. "w": 1
  2560. },
  2561. "_lscale": {
  2562. "__type__": "cc.Vec3",
  2563. "x": 1,
  2564. "y": 1,
  2565. "z": 1
  2566. },
  2567. "_layer": 33554432,
  2568. "_euler": {
  2569. "__type__": "cc.Vec3",
  2570. "x": 0,
  2571. "y": 0,
  2572. "z": 0
  2573. },
  2574. "_id": ""
  2575. },
  2576. {
  2577. "__type__": "cc.Node",
  2578. "_objFlags": 0,
  2579. "_parent": {
  2580. "__id__": 160
  2581. },
  2582. "_prefab": {
  2583. "__id__": 162
  2584. },
  2585. "__editorExtras__": {}
  2586. },
  2587. {
  2588. "__type__": "cc.PrefabInfo",
  2589. "root": {
  2590. "__id__": 161
  2591. },
  2592. "asset": {
  2593. "__uuid__": "63632dab-cec1-4aab-951d-5bf0064e8f61",
  2594. "__expectedType__": "cc.Prefab"
  2595. },
  2596. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  2597. "instance": {
  2598. "__id__": 163
  2599. }
  2600. },
  2601. {
  2602. "__type__": "cc.PrefabInstance",
  2603. "fileId": "cd6eAzW2tGY51hJwt7WNX+",
  2604. "prefabRootNode": {
  2605. "__id__": 1
  2606. },
  2607. "mountedChildren": [],
  2608. "mountedComponents": [],
  2609. "propertyOverrides": [
  2610. {
  2611. "__id__": 164
  2612. },
  2613. {
  2614. "__id__": 166
  2615. },
  2616. {
  2617. "__id__": 167
  2618. },
  2619. {
  2620. "__id__": 168
  2621. },
  2622. {
  2623. "__id__": 169
  2624. },
  2625. {
  2626. "__id__": 171
  2627. }
  2628. ],
  2629. "removedComponents": []
  2630. },
  2631. {
  2632. "__type__": "CCPropertyOverrideInfo",
  2633. "targetInfo": {
  2634. "__id__": 165
  2635. },
  2636. "propertyPath": [
  2637. "_name"
  2638. ],
  2639. "value": "role_equip"
  2640. },
  2641. {
  2642. "__type__": "cc.TargetInfo",
  2643. "localID": [
  2644. "23Shh68qVKLJ0cCLTsPddX"
  2645. ]
  2646. },
  2647. {
  2648. "__type__": "CCPropertyOverrideInfo",
  2649. "targetInfo": {
  2650. "__id__": 165
  2651. },
  2652. "propertyPath": [
  2653. "_lpos"
  2654. ],
  2655. "value": {
  2656. "__type__": "cc.Vec3",
  2657. "x": 0,
  2658. "y": 0,
  2659. "z": 0
  2660. }
  2661. },
  2662. {
  2663. "__type__": "CCPropertyOverrideInfo",
  2664. "targetInfo": {
  2665. "__id__": 165
  2666. },
  2667. "propertyPath": [
  2668. "_lrot"
  2669. ],
  2670. "value": {
  2671. "__type__": "cc.Quat",
  2672. "x": 0,
  2673. "y": 0,
  2674. "z": 0,
  2675. "w": 1
  2676. }
  2677. },
  2678. {
  2679. "__type__": "CCPropertyOverrideInfo",
  2680. "targetInfo": {
  2681. "__id__": 165
  2682. },
  2683. "propertyPath": [
  2684. "_euler"
  2685. ],
  2686. "value": {
  2687. "__type__": "cc.Vec3",
  2688. "x": 0,
  2689. "y": 0,
  2690. "z": 0
  2691. }
  2692. },
  2693. {
  2694. "__type__": "CCPropertyOverrideInfo",
  2695. "targetInfo": {
  2696. "__id__": 170
  2697. },
  2698. "propertyPath": [
  2699. "roleTypeP1"
  2700. ],
  2701. "value": 2
  2702. },
  2703. {
  2704. "__type__": "cc.TargetInfo",
  2705. "localID": [
  2706. "55VnFEbkREiaRWBMGwR83j"
  2707. ]
  2708. },
  2709. {
  2710. "__type__": "CCPropertyOverrideInfo",
  2711. "targetInfo": {
  2712. "__id__": 172
  2713. },
  2714. "propertyPath": [
  2715. "_lpos"
  2716. ],
  2717. "value": {
  2718. "__type__": "cc.Vec3",
  2719. "x": 0,
  2720. "y": 240,
  2721. "z": 0
  2722. }
  2723. },
  2724. {
  2725. "__type__": "cc.TargetInfo",
  2726. "localID": [
  2727. "c5BXU6uCFL+prImcapeAyO"
  2728. ]
  2729. },
  2730. {
  2731. "__type__": "cc.UITransform",
  2732. "_name": "",
  2733. "_objFlags": 0,
  2734. "__editorExtras__": {},
  2735. "node": {
  2736. "__id__": 160
  2737. },
  2738. "_enabled": true,
  2739. "__prefab": {
  2740. "__id__": 174
  2741. },
  2742. "_contentSize": {
  2743. "__type__": "cc.Size",
  2744. "width": 253,
  2745. "height": 142
  2746. },
  2747. "_anchorPoint": {
  2748. "__type__": "cc.Vec2",
  2749. "x": 0.5,
  2750. "y": 0.8
  2751. },
  2752. "_id": ""
  2753. },
  2754. {
  2755. "__type__": "cc.CompPrefabInfo",
  2756. "fileId": "56lNM4AVRH/JAkiFHR6SXU"
  2757. },
  2758. {
  2759. "__type__": "cc.Sprite",
  2760. "_name": "",
  2761. "_objFlags": 0,
  2762. "__editorExtras__": {},
  2763. "node": {
  2764. "__id__": 160
  2765. },
  2766. "_enabled": true,
  2767. "__prefab": {
  2768. "__id__": 176
  2769. },
  2770. "_visFlags": 0,
  2771. "_customMaterial": null,
  2772. "_srcBlendFactor": 2,
  2773. "_dstBlendFactor": 4,
  2774. "_color": {
  2775. "__type__": "cc.Color",
  2776. "r": 255,
  2777. "g": 255,
  2778. "b": 255,
  2779. "a": 255
  2780. },
  2781. "_spriteFrame": {
  2782. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  2783. "__expectedType__": "cc.SpriteFrame"
  2784. },
  2785. "_type": 0,
  2786. "_fillType": 0,
  2787. "_sizeMode": 2,
  2788. "_fillCenter": {
  2789. "__type__": "cc.Vec2",
  2790. "x": 0,
  2791. "y": 0
  2792. },
  2793. "_fillStart": 0,
  2794. "_fillRange": 0,
  2795. "_isTrimmedMode": false,
  2796. "_useGrayscale": false,
  2797. "_atlas": null,
  2798. "_id": ""
  2799. },
  2800. {
  2801. "__type__": "cc.CompPrefabInfo",
  2802. "fileId": "4eC7xFVqZHpbEu1FbGP5Gi"
  2803. },
  2804. {
  2805. "__type__": "cc.PrefabInfo",
  2806. "root": {
  2807. "__id__": 1
  2808. },
  2809. "asset": {
  2810. "__id__": 0
  2811. },
  2812. "fileId": "f8KYBDJ3FF3Ksq+G6pACAi"
  2813. },
  2814. {
  2815. "__type__": "cc.Node",
  2816. "_name": "g",
  2817. "_objFlags": 0,
  2818. "_parent": {
  2819. "__id__": 159
  2820. },
  2821. "_children": [
  2822. {
  2823. "__id__": 179
  2824. }
  2825. ],
  2826. "_active": true,
  2827. "_components": [
  2828. {
  2829. "__id__": 191
  2830. },
  2831. {
  2832. "__id__": 193
  2833. }
  2834. ],
  2835. "_prefab": {
  2836. "__id__": 195
  2837. },
  2838. "_lpos": {
  2839. "__type__": "cc.Vec3",
  2840. "x": 220,
  2841. "y": 0,
  2842. "z": 0
  2843. },
  2844. "_lrot": {
  2845. "__type__": "cc.Quat",
  2846. "x": 0,
  2847. "y": 0,
  2848. "z": 0,
  2849. "w": 1
  2850. },
  2851. "_lscale": {
  2852. "__type__": "cc.Vec3",
  2853. "x": 1,
  2854. "y": 1,
  2855. "z": 1
  2856. },
  2857. "_layer": 33554432,
  2858. "_euler": {
  2859. "__type__": "cc.Vec3",
  2860. "x": 0,
  2861. "y": 0,
  2862. "z": 0
  2863. },
  2864. "_id": ""
  2865. },
  2866. {
  2867. "__type__": "cc.Node",
  2868. "_objFlags": 0,
  2869. "_parent": {
  2870. "__id__": 178
  2871. },
  2872. "_prefab": {
  2873. "__id__": 180
  2874. },
  2875. "__editorExtras__": {}
  2876. },
  2877. {
  2878. "__type__": "cc.PrefabInfo",
  2879. "root": {
  2880. "__id__": 179
  2881. },
  2882. "asset": {
  2883. "__uuid__": "5f192278-7ef6-446d-9252-71e331226a67",
  2884. "__expectedType__": "cc.Prefab"
  2885. },
  2886. "fileId": "84e6Gm3CtJ2opACdVLG5f/",
  2887. "instance": {
  2888. "__id__": 181
  2889. }
  2890. },
  2891. {
  2892. "__type__": "cc.PrefabInstance",
  2893. "fileId": "cep6bhnnBGN6u04zwhdSxS",
  2894. "prefabRootNode": {
  2895. "__id__": 1
  2896. },
  2897. "mountedChildren": [],
  2898. "mountedComponents": [],
  2899. "propertyOverrides": [
  2900. {
  2901. "__id__": 182
  2902. },
  2903. {
  2904. "__id__": 184
  2905. },
  2906. {
  2907. "__id__": 185
  2908. },
  2909. {
  2910. "__id__": 186
  2911. },
  2912. {
  2913. "__id__": 187
  2914. },
  2915. {
  2916. "__id__": 189
  2917. }
  2918. ],
  2919. "removedComponents": []
  2920. },
  2921. {
  2922. "__type__": "CCPropertyOverrideInfo",
  2923. "targetInfo": {
  2924. "__id__": 183
  2925. },
  2926. "propertyPath": [
  2927. "_name"
  2928. ],
  2929. "value": "role_lang"
  2930. },
  2931. {
  2932. "__type__": "cc.TargetInfo",
  2933. "localID": [
  2934. "84e6Gm3CtJ2opACdVLG5f/"
  2935. ]
  2936. },
  2937. {
  2938. "__type__": "CCPropertyOverrideInfo",
  2939. "targetInfo": {
  2940. "__id__": 183
  2941. },
  2942. "propertyPath": [
  2943. "_lpos"
  2944. ],
  2945. "value": {
  2946. "__type__": "cc.Vec3",
  2947. "x": 25.825000000000003,
  2948. "y": 0,
  2949. "z": 0
  2950. }
  2951. },
  2952. {
  2953. "__type__": "CCPropertyOverrideInfo",
  2954. "targetInfo": {
  2955. "__id__": 183
  2956. },
  2957. "propertyPath": [
  2958. "_lrot"
  2959. ],
  2960. "value": {
  2961. "__type__": "cc.Quat",
  2962. "x": 0,
  2963. "y": 0,
  2964. "z": 0,
  2965. "w": 1
  2966. }
  2967. },
  2968. {
  2969. "__type__": "CCPropertyOverrideInfo",
  2970. "targetInfo": {
  2971. "__id__": 183
  2972. },
  2973. "propertyPath": [
  2974. "_euler"
  2975. ],
  2976. "value": {
  2977. "__type__": "cc.Vec3",
  2978. "x": 0,
  2979. "y": 0,
  2980. "z": 0
  2981. }
  2982. },
  2983. {
  2984. "__type__": "CCPropertyOverrideInfo",
  2985. "targetInfo": {
  2986. "__id__": 188
  2987. },
  2988. "propertyPath": [
  2989. "_string"
  2990. ],
  2991. "value": "14"
  2992. },
  2993. {
  2994. "__type__": "cc.TargetInfo",
  2995. "localID": [
  2996. "7eyftaaShMbqQ0iQPCELlY"
  2997. ]
  2998. },
  2999. {
  3000. "__type__": "CCPropertyOverrideInfo",
  3001. "targetInfo": {
  3002. "__id__": 190
  3003. },
  3004. "propertyPath": [
  3005. "_contentSize"
  3006. ],
  3007. "value": {
  3008. "__type__": "cc.Size",
  3009. "width": 48.89,
  3010. "height": 40
  3011. }
  3012. },
  3013. {
  3014. "__type__": "cc.TargetInfo",
  3015. "localID": [
  3016. "11Z9Y5S1JLs7bwR+zlJGob"
  3017. ]
  3018. },
  3019. {
  3020. "__type__": "cc.UITransform",
  3021. "_name": "",
  3022. "_objFlags": 0,
  3023. "__editorExtras__": {},
  3024. "node": {
  3025. "__id__": 178
  3026. },
  3027. "_enabled": true,
  3028. "__prefab": {
  3029. "__id__": 192
  3030. },
  3031. "_contentSize": {
  3032. "__type__": "cc.Size",
  3033. "width": 253,
  3034. "height": 142
  3035. },
  3036. "_anchorPoint": {
  3037. "__type__": "cc.Vec2",
  3038. "x": 0.5,
  3039. "y": 0.8
  3040. },
  3041. "_id": ""
  3042. },
  3043. {
  3044. "__type__": "cc.CompPrefabInfo",
  3045. "fileId": "8fwgQiDG9Bw6dGKB/RSm4T"
  3046. },
  3047. {
  3048. "__type__": "cc.Sprite",
  3049. "_name": "",
  3050. "_objFlags": 0,
  3051. "__editorExtras__": {},
  3052. "node": {
  3053. "__id__": 178
  3054. },
  3055. "_enabled": true,
  3056. "__prefab": {
  3057. "__id__": 194
  3058. },
  3059. "_visFlags": 0,
  3060. "_customMaterial": null,
  3061. "_srcBlendFactor": 2,
  3062. "_dstBlendFactor": 4,
  3063. "_color": {
  3064. "__type__": "cc.Color",
  3065. "r": 255,
  3066. "g": 255,
  3067. "b": 255,
  3068. "a": 255
  3069. },
  3070. "_spriteFrame": {
  3071. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  3072. "__expectedType__": "cc.SpriteFrame"
  3073. },
  3074. "_type": 0,
  3075. "_fillType": 0,
  3076. "_sizeMode": 2,
  3077. "_fillCenter": {
  3078. "__type__": "cc.Vec2",
  3079. "x": 0,
  3080. "y": 0
  3081. },
  3082. "_fillStart": 0,
  3083. "_fillRange": 0,
  3084. "_isTrimmedMode": false,
  3085. "_useGrayscale": false,
  3086. "_atlas": null,
  3087. "_id": ""
  3088. },
  3089. {
  3090. "__type__": "cc.CompPrefabInfo",
  3091. "fileId": "17ubI/pgpJkahyloYZpQcb"
  3092. },
  3093. {
  3094. "__type__": "cc.PrefabInfo",
  3095. "root": {
  3096. "__id__": 1
  3097. },
  3098. "asset": {
  3099. "__id__": 0
  3100. },
  3101. "fileId": "5d+SB/PMRHQ5DtV60ZebpO"
  3102. },
  3103. {
  3104. "__type__": "cc.UITransform",
  3105. "_name": "",
  3106. "_objFlags": 0,
  3107. "__editorExtras__": {},
  3108. "node": {
  3109. "__id__": 159
  3110. },
  3111. "_enabled": true,
  3112. "__prefab": {
  3113. "__id__": 197
  3114. },
  3115. "_contentSize": {
  3116. "__type__": "cc.Size",
  3117. "width": 720,
  3118. "height": 400
  3119. },
  3120. "_anchorPoint": {
  3121. "__type__": "cc.Vec2",
  3122. "x": 0.5,
  3123. "y": 0.5
  3124. },
  3125. "_id": ""
  3126. },
  3127. {
  3128. "__type__": "cc.CompPrefabInfo",
  3129. "fileId": "ccwQ7Ek9JP2ZVZxI/rtI2s"
  3130. },
  3131. {
  3132. "__type__": "cc.PrefabInfo",
  3133. "root": {
  3134. "__id__": 1
  3135. },
  3136. "asset": {
  3137. "__id__": 0
  3138. },
  3139. "fileId": "40r2OENhhDoboL9rRGjVl4"
  3140. },
  3141. {
  3142. "__type__": "cc.UITransform",
  3143. "_name": "",
  3144. "_objFlags": 0,
  3145. "node": {
  3146. "__id__": 1
  3147. },
  3148. "_enabled": true,
  3149. "__prefab": {
  3150. "__id__": 200
  3151. },
  3152. "_contentSize": {
  3153. "__type__": "cc.Size",
  3154. "width": 720,
  3155. "height": 2300
  3156. },
  3157. "_anchorPoint": {
  3158. "__type__": "cc.Vec2",
  3159. "x": 0.5,
  3160. "y": 1
  3161. },
  3162. "_id": ""
  3163. },
  3164. {
  3165. "__type__": "cc.CompPrefabInfo",
  3166. "fileId": "f5C73TBO1BUaTJzq9UqK7o"
  3167. },
  3168. {
  3169. "__type__": "cc.Widget",
  3170. "_name": "",
  3171. "_objFlags": 0,
  3172. "node": {
  3173. "__id__": 1
  3174. },
  3175. "_enabled": true,
  3176. "__prefab": {
  3177. "__id__": 202
  3178. },
  3179. "_alignFlags": 40,
  3180. "_target": null,
  3181. "_left": 0,
  3182. "_right": 0,
  3183. "_top": 0,
  3184. "_bottom": 0,
  3185. "_horizontalCenter": 0,
  3186. "_verticalCenter": 0,
  3187. "_isAbsLeft": true,
  3188. "_isAbsRight": true,
  3189. "_isAbsTop": true,
  3190. "_isAbsBottom": true,
  3191. "_isAbsHorizontalCenter": true,
  3192. "_isAbsVerticalCenter": true,
  3193. "_originalWidth": 100,
  3194. "_originalHeight": 0,
  3195. "_alignMode": 2,
  3196. "_lockFlags": 0,
  3197. "_id": ""
  3198. },
  3199. {
  3200. "__type__": "cc.CompPrefabInfo",
  3201. "fileId": "514IyosJ9FLJyJjdTuWe/D"
  3202. },
  3203. {
  3204. "__type__": "cc.Layout",
  3205. "_name": "",
  3206. "_objFlags": 0,
  3207. "node": {
  3208. "__id__": 1
  3209. },
  3210. "_enabled": true,
  3211. "__prefab": {
  3212. "__id__": 204
  3213. },
  3214. "_resizeMode": 1,
  3215. "_layoutType": 2,
  3216. "_cellSize": {
  3217. "__type__": "cc.Size",
  3218. "width": 40,
  3219. "height": 40
  3220. },
  3221. "_startAxis": 0,
  3222. "_paddingLeft": 0,
  3223. "_paddingRight": 0,
  3224. "_paddingTop": 0,
  3225. "_paddingBottom": 0,
  3226. "_spacingX": 0,
  3227. "_spacingY": 0,
  3228. "_verticalDirection": 1,
  3229. "_horizontalDirection": 0,
  3230. "_constraint": 0,
  3231. "_constraintNum": 2,
  3232. "_affectedByScale": false,
  3233. "_isAlign": false,
  3234. "_id": ""
  3235. },
  3236. {
  3237. "__type__": "cc.CompPrefabInfo",
  3238. "fileId": "3e40aiiXNPZK59rLGry/jm"
  3239. },
  3240. {
  3241. "__type__": "cc.PrefabInfo",
  3242. "root": {
  3243. "__id__": 1
  3244. },
  3245. "asset": {
  3246. "__id__": 0
  3247. },
  3248. "fileId": "96sI46BKJGa6hjFwLecxx8",
  3249. "nestedPrefabInstanceRoots": [
  3250. {
  3251. "__id__": 8
  3252. },
  3253. {
  3254. "__id__": 40
  3255. },
  3256. {
  3257. "__id__": 70
  3258. },
  3259. {
  3260. "__id__": 94
  3261. },
  3262. {
  3263. "__id__": 124
  3264. },
  3265. {
  3266. "__id__": 139
  3267. },
  3268. {
  3269. "__id__": 161
  3270. },
  3271. {
  3272. "__id__": 179
  3273. }
  3274. ]
  3275. }
  3276. ]