level6.prefab 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766
  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": "level6",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 6
  26. },
  27. {
  28. "__id__": 37
  29. },
  30. {
  31. "__id__": 59
  32. },
  33. {
  34. "__id__": 102
  35. },
  36. {
  37. "__id__": 125
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 162
  44. },
  45. {
  46. "__id__": 164
  47. },
  48. {
  49. "__id__": 166
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 168
  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__": 34
  182. }
  183. ],
  184. "_prefab": {
  185. "__id__": 36
  186. },
  187. "_lpos": {
  188. "__type__": "cc.Vec3",
  189. "x": 0,
  190. "y": -650,
  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. "_active": true,
  228. "_components": [
  229. {
  230. "__id__": 29
  231. },
  232. {
  233. "__id__": 31
  234. }
  235. ],
  236. "_prefab": {
  237. "__id__": 33
  238. },
  239. "_lpos": {
  240. "__type__": "cc.Vec3",
  241. "x": 100,
  242. "y": 0,
  243. "z": 0
  244. },
  245. "_lrot": {
  246. "__type__": "cc.Quat",
  247. "x": 0,
  248. "y": 0,
  249. "z": 0,
  250. "w": 1
  251. },
  252. "_lscale": {
  253. "__type__": "cc.Vec3",
  254. "x": 1,
  255. "y": 1,
  256. "z": 1
  257. },
  258. "_layer": 33554432,
  259. "_euler": {
  260. "__type__": "cc.Vec3",
  261. "x": 0,
  262. "y": 0,
  263. "z": 0
  264. },
  265. "_id": ""
  266. },
  267. {
  268. "__type__": "cc.Node",
  269. "_objFlags": 0,
  270. "_parent": {
  271. "__id__": 7
  272. },
  273. "_prefab": {
  274. "__id__": 9
  275. },
  276. "__editorExtras__": {}
  277. },
  278. {
  279. "__type__": "cc.PrefabInfo",
  280. "root": {
  281. "__id__": 8
  282. },
  283. "asset": {
  284. "__uuid__": "8d504f54-4b30-462e-8114-b1ecf449ae8c",
  285. "__expectedType__": "cc.Prefab"
  286. },
  287. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  288. "instance": {
  289. "__id__": 10
  290. }
  291. },
  292. {
  293. "__type__": "cc.PrefabInstance",
  294. "fileId": "bcdeoL/hBMlqyVBl0Vvw4D",
  295. "prefabRootNode": {
  296. "__id__": 1
  297. },
  298. "mountedChildren": [],
  299. "mountedComponents": [],
  300. "propertyOverrides": [
  301. {
  302. "__id__": 11
  303. },
  304. {
  305. "__id__": 13
  306. },
  307. {
  308. "__id__": 14
  309. },
  310. {
  311. "__id__": 15
  312. },
  313. {
  314. "__id__": 16
  315. },
  316. {
  317. "__id__": 18
  318. },
  319. {
  320. "__id__": 20
  321. },
  322. {
  323. "__id__": 22
  324. },
  325. {
  326. "__id__": 24
  327. },
  328. {
  329. "__id__": 26
  330. },
  331. {
  332. "__id__": 28
  333. }
  334. ],
  335. "removedComponents": []
  336. },
  337. {
  338. "__type__": "CCPropertyOverrideInfo",
  339. "targetInfo": {
  340. "__id__": 12
  341. },
  342. "propertyPath": [
  343. "_name"
  344. ],
  345. "value": "role_xiezi"
  346. },
  347. {
  348. "__type__": "cc.TargetInfo",
  349. "localID": [
  350. "23Shh68qVKLJ0cCLTsPddX"
  351. ]
  352. },
  353. {
  354. "__type__": "CCPropertyOverrideInfo",
  355. "targetInfo": {
  356. "__id__": 12
  357. },
  358. "propertyPath": [
  359. "_lpos"
  360. ],
  361. "value": {
  362. "__type__": "cc.Vec3",
  363. "x": 82.328,
  364. "y": 0,
  365. "z": 0
  366. }
  367. },
  368. {
  369. "__type__": "CCPropertyOverrideInfo",
  370. "targetInfo": {
  371. "__id__": 12
  372. },
  373. "propertyPath": [
  374. "_lrot"
  375. ],
  376. "value": {
  377. "__type__": "cc.Quat",
  378. "x": 0,
  379. "y": 0,
  380. "z": 0,
  381. "w": 1
  382. }
  383. },
  384. {
  385. "__type__": "CCPropertyOverrideInfo",
  386. "targetInfo": {
  387. "__id__": 12
  388. },
  389. "propertyPath": [
  390. "_euler"
  391. ],
  392. "value": {
  393. "__type__": "cc.Vec3",
  394. "x": 0,
  395. "y": 0,
  396. "z": 0
  397. }
  398. },
  399. {
  400. "__type__": "CCPropertyOverrideInfo",
  401. "targetInfo": {
  402. "__id__": 17
  403. },
  404. "propertyPath": [
  405. "_string"
  406. ],
  407. "value": "45"
  408. },
  409. {
  410. "__type__": "cc.TargetInfo",
  411. "localID": [
  412. "3cxFYWW1RLiLNjw6kMjSKk"
  413. ]
  414. },
  415. {
  416. "__type__": "CCPropertyOverrideInfo",
  417. "targetInfo": {
  418. "__id__": 19
  419. },
  420. "propertyPath": [
  421. "_contentSize"
  422. ],
  423. "value": {
  424. "__type__": "cc.Size",
  425. "width": 48.89,
  426. "height": 40
  427. }
  428. },
  429. {
  430. "__type__": "cc.TargetInfo",
  431. "localID": [
  432. "d9R+nrXWtEf6ZgmiV+Scpc"
  433. ]
  434. },
  435. {
  436. "__type__": "CCPropertyOverrideInfo",
  437. "targetInfo": {
  438. "__id__": 21
  439. },
  440. "propertyPath": [
  441. "_lscale"
  442. ],
  443. "value": {
  444. "__type__": "cc.Vec3",
  445. "x": 0.9,
  446. "y": 0.9,
  447. "z": 1
  448. }
  449. },
  450. {
  451. "__type__": "cc.TargetInfo",
  452. "localID": [
  453. "9aWY3NvjVGN6BIf1YtifUZ"
  454. ]
  455. },
  456. {
  457. "__type__": "CCPropertyOverrideInfo",
  458. "targetInfo": {
  459. "__id__": 23
  460. },
  461. "propertyPath": [
  462. "_lpos"
  463. ],
  464. "value": {
  465. "__type__": "cc.Vec3",
  466. "x": 20.143,
  467. "y": 270.689,
  468. "z": 0
  469. }
  470. },
  471. {
  472. "__type__": "cc.TargetInfo",
  473. "localID": [
  474. "c5BXU6uCFL+prImcapeAyO"
  475. ]
  476. },
  477. {
  478. "__type__": "CCPropertyOverrideInfo",
  479. "targetInfo": {
  480. "__id__": 25
  481. },
  482. "propertyPath": [
  483. "_contentSize"
  484. ],
  485. "value": {
  486. "__type__": "cc.Size",
  487. "width": 280,
  488. "height": 200
  489. }
  490. },
  491. {
  492. "__type__": "cc.TargetInfo",
  493. "localID": [
  494. "e4WrRTi05BTLGa4GWa7RLh"
  495. ]
  496. },
  497. {
  498. "__type__": "CCPropertyOverrideInfo",
  499. "targetInfo": {
  500. "__id__": 27
  501. },
  502. "propertyPath": [
  503. "_size"
  504. ],
  505. "value": {
  506. "__type__": "cc.Size",
  507. "width": 280,
  508. "height": 200
  509. }
  510. },
  511. {
  512. "__type__": "cc.TargetInfo",
  513. "localID": [
  514. "951q6YLjZN4Id/RXFzaIcT"
  515. ]
  516. },
  517. {
  518. "__type__": "CCPropertyOverrideInfo",
  519. "targetInfo": {
  520. "__id__": 27
  521. },
  522. "propertyPath": [
  523. "_offset"
  524. ],
  525. "value": {
  526. "__type__": "cc.Vec2",
  527. "x": 0,
  528. "y": 100
  529. }
  530. },
  531. {
  532. "__type__": "cc.UITransform",
  533. "_name": "",
  534. "_objFlags": 0,
  535. "__editorExtras__": {},
  536. "node": {
  537. "__id__": 7
  538. },
  539. "_enabled": true,
  540. "__prefab": {
  541. "__id__": 30
  542. },
  543. "_contentSize": {
  544. "__type__": "cc.Size",
  545. "width": 474,
  546. "height": 318
  547. },
  548. "_anchorPoint": {
  549. "__type__": "cc.Vec2",
  550. "x": 0.5,
  551. "y": 0.85
  552. },
  553. "_id": ""
  554. },
  555. {
  556. "__type__": "cc.CompPrefabInfo",
  557. "fileId": "6bE4D2LdRDf7JQsZPkidEV"
  558. },
  559. {
  560. "__type__": "cc.Sprite",
  561. "_name": "",
  562. "_objFlags": 0,
  563. "__editorExtras__": {},
  564. "node": {
  565. "__id__": 7
  566. },
  567. "_enabled": true,
  568. "__prefab": {
  569. "__id__": 32
  570. },
  571. "_visFlags": 0,
  572. "_customMaterial": null,
  573. "_srcBlendFactor": 2,
  574. "_dstBlendFactor": 4,
  575. "_color": {
  576. "__type__": "cc.Color",
  577. "r": 255,
  578. "g": 255,
  579. "b": 255,
  580. "a": 255
  581. },
  582. "_spriteFrame": {
  583. "__uuid__": "87bba8b7-d10b-469f-a621-de35488e64b1@f9941",
  584. "__expectedType__": "cc.SpriteFrame"
  585. },
  586. "_type": 0,
  587. "_fillType": 0,
  588. "_sizeMode": 2,
  589. "_fillCenter": {
  590. "__type__": "cc.Vec2",
  591. "x": 0,
  592. "y": 0
  593. },
  594. "_fillStart": 0,
  595. "_fillRange": 0,
  596. "_isTrimmedMode": false,
  597. "_useGrayscale": false,
  598. "_atlas": null,
  599. "_id": ""
  600. },
  601. {
  602. "__type__": "cc.CompPrefabInfo",
  603. "fileId": "01CEt1jF5P17GrTK0KZtGr"
  604. },
  605. {
  606. "__type__": "cc.PrefabInfo",
  607. "root": {
  608. "__id__": 1
  609. },
  610. "asset": {
  611. "__id__": 0
  612. },
  613. "fileId": "9aKMaZQ25J4rb7mUwdUmYf"
  614. },
  615. {
  616. "__type__": "cc.UITransform",
  617. "_name": "",
  618. "_objFlags": 0,
  619. "__editorExtras__": {},
  620. "node": {
  621. "__id__": 6
  622. },
  623. "_enabled": true,
  624. "__prefab": {
  625. "__id__": 35
  626. },
  627. "_contentSize": {
  628. "__type__": "cc.Size",
  629. "width": 747,
  630. "height": 300
  631. },
  632. "_anchorPoint": {
  633. "__type__": "cc.Vec2",
  634. "x": 0.5,
  635. "y": 0.5
  636. },
  637. "_id": ""
  638. },
  639. {
  640. "__type__": "cc.CompPrefabInfo",
  641. "fileId": "6ergFxBzhPWKVE6tibVMm/"
  642. },
  643. {
  644. "__type__": "cc.PrefabInfo",
  645. "root": {
  646. "__id__": 1
  647. },
  648. "asset": {
  649. "__id__": 0
  650. },
  651. "fileId": "aaEdNycpdIAIW6FsvZEq1c"
  652. },
  653. {
  654. "__type__": "cc.Node",
  655. "_name": "f",
  656. "_objFlags": 0,
  657. "_parent": {
  658. "__id__": 1
  659. },
  660. "_children": [
  661. {
  662. "__id__": 38
  663. }
  664. ],
  665. "_active": true,
  666. "_components": [
  667. {
  668. "__id__": 56
  669. }
  670. ],
  671. "_prefab": {
  672. "__id__": 58
  673. },
  674. "_lpos": {
  675. "__type__": "cc.Vec3",
  676. "x": 0,
  677. "y": -950,
  678. "z": 0
  679. },
  680. "_lrot": {
  681. "__type__": "cc.Quat",
  682. "x": 0,
  683. "y": 0,
  684. "z": 0,
  685. "w": 1
  686. },
  687. "_lscale": {
  688. "__type__": "cc.Vec3",
  689. "x": 1,
  690. "y": 1,
  691. "z": 1
  692. },
  693. "_layer": 33554432,
  694. "_euler": {
  695. "__type__": "cc.Vec3",
  696. "x": 0,
  697. "y": 0,
  698. "z": 0
  699. },
  700. "_id": ""
  701. },
  702. {
  703. "__type__": "cc.Node",
  704. "_name": "g",
  705. "_objFlags": 0,
  706. "_parent": {
  707. "__id__": 37
  708. },
  709. "_children": [
  710. {
  711. "__id__": 39
  712. }
  713. ],
  714. "_active": true,
  715. "_components": [
  716. {
  717. "__id__": 51
  718. },
  719. {
  720. "__id__": 53
  721. }
  722. ],
  723. "_prefab": {
  724. "__id__": 55
  725. },
  726. "_lpos": {
  727. "__type__": "cc.Vec3",
  728. "x": -220,
  729. "y": 0,
  730. "z": 0
  731. },
  732. "_lrot": {
  733. "__type__": "cc.Quat",
  734. "x": 0,
  735. "y": 0,
  736. "z": 0,
  737. "w": 1
  738. },
  739. "_lscale": {
  740. "__type__": "cc.Vec3",
  741. "x": 1,
  742. "y": 1,
  743. "z": 1
  744. },
  745. "_layer": 33554432,
  746. "_euler": {
  747. "__type__": "cc.Vec3",
  748. "x": 0,
  749. "y": 0,
  750. "z": 0
  751. },
  752. "_id": ""
  753. },
  754. {
  755. "__type__": "cc.Node",
  756. "_objFlags": 0,
  757. "_parent": {
  758. "__id__": 38
  759. },
  760. "_prefab": {
  761. "__id__": 40
  762. },
  763. "__editorExtras__": {}
  764. },
  765. {
  766. "__type__": "cc.PrefabInfo",
  767. "root": {
  768. "__id__": 39
  769. },
  770. "asset": {
  771. "__uuid__": "d8e13a5f-49af-4013-812d-1ba73633d584",
  772. "__expectedType__": "cc.Prefab"
  773. },
  774. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  775. "instance": {
  776. "__id__": 41
  777. }
  778. },
  779. {
  780. "__type__": "cc.PrefabInstance",
  781. "fileId": "5btmAxavBKjp+5OUNkkzdC",
  782. "prefabRootNode": {
  783. "__id__": 1
  784. },
  785. "mountedChildren": [],
  786. "mountedComponents": [],
  787. "propertyOverrides": [
  788. {
  789. "__id__": 42
  790. },
  791. {
  792. "__id__": 44
  793. },
  794. {
  795. "__id__": 45
  796. },
  797. {
  798. "__id__": 46
  799. },
  800. {
  801. "__id__": 47
  802. },
  803. {
  804. "__id__": 49
  805. }
  806. ],
  807. "removedComponents": []
  808. },
  809. {
  810. "__type__": "CCPropertyOverrideInfo",
  811. "targetInfo": {
  812. "__id__": 43
  813. },
  814. "propertyPath": [
  815. "_name"
  816. ],
  817. "value": "role_atk"
  818. },
  819. {
  820. "__type__": "cc.TargetInfo",
  821. "localID": [
  822. "23Shh68qVKLJ0cCLTsPddX"
  823. ]
  824. },
  825. {
  826. "__type__": "CCPropertyOverrideInfo",
  827. "targetInfo": {
  828. "__id__": 43
  829. },
  830. "propertyPath": [
  831. "_lpos"
  832. ],
  833. "value": {
  834. "__type__": "cc.Vec3",
  835. "x": 0,
  836. "y": 0,
  837. "z": 0
  838. }
  839. },
  840. {
  841. "__type__": "CCPropertyOverrideInfo",
  842. "targetInfo": {
  843. "__id__": 43
  844. },
  845. "propertyPath": [
  846. "_lrot"
  847. ],
  848. "value": {
  849. "__type__": "cc.Quat",
  850. "x": 0,
  851. "y": 0,
  852. "z": 0,
  853. "w": 1
  854. }
  855. },
  856. {
  857. "__type__": "CCPropertyOverrideInfo",
  858. "targetInfo": {
  859. "__id__": 43
  860. },
  861. "propertyPath": [
  862. "_euler"
  863. ],
  864. "value": {
  865. "__type__": "cc.Vec3",
  866. "x": 0,
  867. "y": 0,
  868. "z": 0
  869. }
  870. },
  871. {
  872. "__type__": "CCPropertyOverrideInfo",
  873. "targetInfo": {
  874. "__id__": 48
  875. },
  876. "propertyPath": [
  877. "_string"
  878. ],
  879. "value": "+9"
  880. },
  881. {
  882. "__type__": "cc.TargetInfo",
  883. "localID": [
  884. "3cxFYWW1RLiLNjw6kMjSKk"
  885. ]
  886. },
  887. {
  888. "__type__": "CCPropertyOverrideInfo",
  889. "targetInfo": {
  890. "__id__": 50
  891. },
  892. "propertyPath": [
  893. "_contentSize"
  894. ],
  895. "value": {
  896. "__type__": "cc.Size",
  897. "width": 34.2,
  898. "height": 50.4
  899. }
  900. },
  901. {
  902. "__type__": "cc.TargetInfo",
  903. "localID": [
  904. "d9R+nrXWtEf6ZgmiV+Scpc"
  905. ]
  906. },
  907. {
  908. "__type__": "cc.UITransform",
  909. "_name": "",
  910. "_objFlags": 0,
  911. "__editorExtras__": {},
  912. "node": {
  913. "__id__": 38
  914. },
  915. "_enabled": true,
  916. "__prefab": {
  917. "__id__": 52
  918. },
  919. "_contentSize": {
  920. "__type__": "cc.Size",
  921. "width": 253,
  922. "height": 142
  923. },
  924. "_anchorPoint": {
  925. "__type__": "cc.Vec2",
  926. "x": 0.5,
  927. "y": 0.8
  928. },
  929. "_id": ""
  930. },
  931. {
  932. "__type__": "cc.CompPrefabInfo",
  933. "fileId": "60OQdrvZBDPLKxMiTWYB8p"
  934. },
  935. {
  936. "__type__": "cc.Sprite",
  937. "_name": "",
  938. "_objFlags": 0,
  939. "__editorExtras__": {},
  940. "node": {
  941. "__id__": 38
  942. },
  943. "_enabled": true,
  944. "__prefab": {
  945. "__id__": 54
  946. },
  947. "_visFlags": 0,
  948. "_customMaterial": null,
  949. "_srcBlendFactor": 2,
  950. "_dstBlendFactor": 4,
  951. "_color": {
  952. "__type__": "cc.Color",
  953. "r": 255,
  954. "g": 255,
  955. "b": 255,
  956. "a": 255
  957. },
  958. "_spriteFrame": {
  959. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  960. "__expectedType__": "cc.SpriteFrame"
  961. },
  962. "_type": 0,
  963. "_fillType": 0,
  964. "_sizeMode": 2,
  965. "_fillCenter": {
  966. "__type__": "cc.Vec2",
  967. "x": 0,
  968. "y": 0
  969. },
  970. "_fillStart": 0,
  971. "_fillRange": 0,
  972. "_isTrimmedMode": false,
  973. "_useGrayscale": false,
  974. "_atlas": null,
  975. "_id": ""
  976. },
  977. {
  978. "__type__": "cc.CompPrefabInfo",
  979. "fileId": "8dF0GLNv9PHaQ1i/M33IWd"
  980. },
  981. {
  982. "__type__": "cc.PrefabInfo",
  983. "root": {
  984. "__id__": 1
  985. },
  986. "asset": {
  987. "__id__": 0
  988. },
  989. "fileId": "87K4jACuNB4KloofTNGuRr"
  990. },
  991. {
  992. "__type__": "cc.UITransform",
  993. "_name": "",
  994. "_objFlags": 0,
  995. "__editorExtras__": {},
  996. "node": {
  997. "__id__": 37
  998. },
  999. "_enabled": true,
  1000. "__prefab": {
  1001. "__id__": 57
  1002. },
  1003. "_contentSize": {
  1004. "__type__": "cc.Size",
  1005. "width": 747,
  1006. "height": 300
  1007. },
  1008. "_anchorPoint": {
  1009. "__type__": "cc.Vec2",
  1010. "x": 0.5,
  1011. "y": 0.5
  1012. },
  1013. "_id": ""
  1014. },
  1015. {
  1016. "__type__": "cc.CompPrefabInfo",
  1017. "fileId": "bc4f3SUFxD9YLHl02Kb3wu"
  1018. },
  1019. {
  1020. "__type__": "cc.PrefabInfo",
  1021. "root": {
  1022. "__id__": 1
  1023. },
  1024. "asset": {
  1025. "__id__": 0
  1026. },
  1027. "fileId": "36M7coDeRJi49IkKZzLOpB"
  1028. },
  1029. {
  1030. "__type__": "cc.Node",
  1031. "_name": "f",
  1032. "_objFlags": 0,
  1033. "_parent": {
  1034. "__id__": 1
  1035. },
  1036. "_children": [
  1037. {
  1038. "__id__": 60
  1039. }
  1040. ],
  1041. "_active": true,
  1042. "_components": [
  1043. {
  1044. "__id__": 99
  1045. }
  1046. ],
  1047. "_prefab": {
  1048. "__id__": 101
  1049. },
  1050. "_lpos": {
  1051. "__type__": "cc.Vec3",
  1052. "x": 0,
  1053. "y": -1250,
  1054. "z": 0
  1055. },
  1056. "_lrot": {
  1057. "__type__": "cc.Quat",
  1058. "x": 0,
  1059. "y": 0,
  1060. "z": 0,
  1061. "w": 1
  1062. },
  1063. "_lscale": {
  1064. "__type__": "cc.Vec3",
  1065. "x": 1,
  1066. "y": 1,
  1067. "z": 1
  1068. },
  1069. "_layer": 33554432,
  1070. "_euler": {
  1071. "__type__": "cc.Vec3",
  1072. "x": 0,
  1073. "y": 0,
  1074. "z": 0
  1075. },
  1076. "_id": ""
  1077. },
  1078. {
  1079. "__type__": "cc.Node",
  1080. "_name": "g",
  1081. "_objFlags": 0,
  1082. "_parent": {
  1083. "__id__": 59
  1084. },
  1085. "_children": [
  1086. {
  1087. "__id__": 61
  1088. },
  1089. {
  1090. "__id__": 73
  1091. }
  1092. ],
  1093. "_active": true,
  1094. "_components": [
  1095. {
  1096. "__id__": 94
  1097. },
  1098. {
  1099. "__id__": 96
  1100. }
  1101. ],
  1102. "_prefab": {
  1103. "__id__": 98
  1104. },
  1105. "_lpos": {
  1106. "__type__": "cc.Vec3",
  1107. "x": 0,
  1108. "y": 0,
  1109. "z": 0
  1110. },
  1111. "_lrot": {
  1112. "__type__": "cc.Quat",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0,
  1116. "w": 1
  1117. },
  1118. "_lscale": {
  1119. "__type__": "cc.Vec3",
  1120. "x": 1,
  1121. "y": 1,
  1122. "z": 1
  1123. },
  1124. "_layer": 33554432,
  1125. "_euler": {
  1126. "__type__": "cc.Vec3",
  1127. "x": 0,
  1128. "y": 0,
  1129. "z": 0
  1130. },
  1131. "_id": ""
  1132. },
  1133. {
  1134. "__type__": "cc.Node",
  1135. "_objFlags": 0,
  1136. "_parent": {
  1137. "__id__": 60
  1138. },
  1139. "_prefab": {
  1140. "__id__": 62
  1141. },
  1142. "__editorExtras__": {}
  1143. },
  1144. {
  1145. "__type__": "cc.PrefabInfo",
  1146. "root": {
  1147. "__id__": 61
  1148. },
  1149. "asset": {
  1150. "__uuid__": "8d504f54-4b30-462e-8114-b1ecf449ae8c",
  1151. "__expectedType__": "cc.Prefab"
  1152. },
  1153. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  1154. "instance": {
  1155. "__id__": 63
  1156. }
  1157. },
  1158. {
  1159. "__type__": "cc.PrefabInstance",
  1160. "fileId": "57c25NdnJKSJ7UitD/i90k",
  1161. "prefabRootNode": {
  1162. "__id__": 1
  1163. },
  1164. "mountedChildren": [],
  1165. "mountedComponents": [],
  1166. "propertyOverrides": [
  1167. {
  1168. "__id__": 64
  1169. },
  1170. {
  1171. "__id__": 66
  1172. },
  1173. {
  1174. "__id__": 67
  1175. },
  1176. {
  1177. "__id__": 68
  1178. },
  1179. {
  1180. "__id__": 69
  1181. },
  1182. {
  1183. "__id__": 71
  1184. }
  1185. ],
  1186. "removedComponents": []
  1187. },
  1188. {
  1189. "__type__": "CCPropertyOverrideInfo",
  1190. "targetInfo": {
  1191. "__id__": 65
  1192. },
  1193. "propertyPath": [
  1194. "_name"
  1195. ],
  1196. "value": "role_xiezi"
  1197. },
  1198. {
  1199. "__type__": "cc.TargetInfo",
  1200. "localID": [
  1201. "23Shh68qVKLJ0cCLTsPddX"
  1202. ]
  1203. },
  1204. {
  1205. "__type__": "CCPropertyOverrideInfo",
  1206. "targetInfo": {
  1207. "__id__": 65
  1208. },
  1209. "propertyPath": [
  1210. "_lpos"
  1211. ],
  1212. "value": {
  1213. "__type__": "cc.Vec3",
  1214. "x": -47.838,
  1215. "y": 0,
  1216. "z": 0
  1217. }
  1218. },
  1219. {
  1220. "__type__": "CCPropertyOverrideInfo",
  1221. "targetInfo": {
  1222. "__id__": 65
  1223. },
  1224. "propertyPath": [
  1225. "_lrot"
  1226. ],
  1227. "value": {
  1228. "__type__": "cc.Quat",
  1229. "x": 0,
  1230. "y": 0,
  1231. "z": 0,
  1232. "w": 1
  1233. }
  1234. },
  1235. {
  1236. "__type__": "CCPropertyOverrideInfo",
  1237. "targetInfo": {
  1238. "__id__": 65
  1239. },
  1240. "propertyPath": [
  1241. "_euler"
  1242. ],
  1243. "value": {
  1244. "__type__": "cc.Vec3",
  1245. "x": 0,
  1246. "y": 0,
  1247. "z": 0
  1248. }
  1249. },
  1250. {
  1251. "__type__": "CCPropertyOverrideInfo",
  1252. "targetInfo": {
  1253. "__id__": 70
  1254. },
  1255. "propertyPath": [
  1256. "_string"
  1257. ],
  1258. "value": "12"
  1259. },
  1260. {
  1261. "__type__": "cc.TargetInfo",
  1262. "localID": [
  1263. "3cxFYWW1RLiLNjw6kMjSKk"
  1264. ]
  1265. },
  1266. {
  1267. "__type__": "CCPropertyOverrideInfo",
  1268. "targetInfo": {
  1269. "__id__": 72
  1270. },
  1271. "propertyPath": [
  1272. "_contentSize"
  1273. ],
  1274. "value": {
  1275. "__type__": "cc.Size",
  1276. "width": 48.89,
  1277. "height": 40
  1278. }
  1279. },
  1280. {
  1281. "__type__": "cc.TargetInfo",
  1282. "localID": [
  1283. "d9R+nrXWtEf6ZgmiV+Scpc"
  1284. ]
  1285. },
  1286. {
  1287. "__type__": "cc.Node",
  1288. "_objFlags": 0,
  1289. "_parent": {
  1290. "__id__": 60
  1291. },
  1292. "_prefab": {
  1293. "__id__": 74
  1294. },
  1295. "__editorExtras__": {}
  1296. },
  1297. {
  1298. "__type__": "cc.PrefabInfo",
  1299. "root": {
  1300. "__id__": 73
  1301. },
  1302. "asset": {
  1303. "__uuid__": "8d504f54-4b30-462e-8114-b1ecf449ae8c",
  1304. "__expectedType__": "cc.Prefab"
  1305. },
  1306. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  1307. "instance": {
  1308. "__id__": 75
  1309. }
  1310. },
  1311. {
  1312. "__type__": "cc.PrefabInstance",
  1313. "fileId": "1a/ANJBsdLAoXxuuRtejig",
  1314. "prefabRootNode": {
  1315. "__id__": 1
  1316. },
  1317. "mountedChildren": [],
  1318. "mountedComponents": [],
  1319. "propertyOverrides": [
  1320. {
  1321. "__id__": 76
  1322. },
  1323. {
  1324. "__id__": 78
  1325. },
  1326. {
  1327. "__id__": 79
  1328. },
  1329. {
  1330. "__id__": 80
  1331. },
  1332. {
  1333. "__id__": 81
  1334. },
  1335. {
  1336. "__id__": 83
  1337. },
  1338. {
  1339. "__id__": 85
  1340. },
  1341. {
  1342. "__id__": 87
  1343. },
  1344. {
  1345. "__id__": 89
  1346. },
  1347. {
  1348. "__id__": 91
  1349. },
  1350. {
  1351. "__id__": 93
  1352. }
  1353. ],
  1354. "removedComponents": []
  1355. },
  1356. {
  1357. "__type__": "CCPropertyOverrideInfo",
  1358. "targetInfo": {
  1359. "__id__": 77
  1360. },
  1361. "propertyPath": [
  1362. "_name"
  1363. ],
  1364. "value": "role_xiezi"
  1365. },
  1366. {
  1367. "__type__": "cc.TargetInfo",
  1368. "localID": [
  1369. "23Shh68qVKLJ0cCLTsPddX"
  1370. ]
  1371. },
  1372. {
  1373. "__type__": "CCPropertyOverrideInfo",
  1374. "targetInfo": {
  1375. "__id__": 77
  1376. },
  1377. "propertyPath": [
  1378. "_lpos"
  1379. ],
  1380. "value": {
  1381. "__type__": "cc.Vec3",
  1382. "x": 224.567,
  1383. "y": 0,
  1384. "z": 0
  1385. }
  1386. },
  1387. {
  1388. "__type__": "CCPropertyOverrideInfo",
  1389. "targetInfo": {
  1390. "__id__": 77
  1391. },
  1392. "propertyPath": [
  1393. "_lrot"
  1394. ],
  1395. "value": {
  1396. "__type__": "cc.Quat",
  1397. "x": 0,
  1398. "y": 0,
  1399. "z": 0,
  1400. "w": 1
  1401. }
  1402. },
  1403. {
  1404. "__type__": "CCPropertyOverrideInfo",
  1405. "targetInfo": {
  1406. "__id__": 77
  1407. },
  1408. "propertyPath": [
  1409. "_euler"
  1410. ],
  1411. "value": {
  1412. "__type__": "cc.Vec3",
  1413. "x": 0,
  1414. "y": 0,
  1415. "z": 0
  1416. }
  1417. },
  1418. {
  1419. "__type__": "CCPropertyOverrideInfo",
  1420. "targetInfo": {
  1421. "__id__": 82
  1422. },
  1423. "propertyPath": [
  1424. "_string"
  1425. ],
  1426. "value": "31"
  1427. },
  1428. {
  1429. "__type__": "cc.TargetInfo",
  1430. "localID": [
  1431. "3cxFYWW1RLiLNjw6kMjSKk"
  1432. ]
  1433. },
  1434. {
  1435. "__type__": "CCPropertyOverrideInfo",
  1436. "targetInfo": {
  1437. "__id__": 84
  1438. },
  1439. "propertyPath": [
  1440. "_contentSize"
  1441. ],
  1442. "value": {
  1443. "__type__": "cc.Size",
  1444. "width": 48.89,
  1445. "height": 40
  1446. }
  1447. },
  1448. {
  1449. "__type__": "cc.TargetInfo",
  1450. "localID": [
  1451. "d9R+nrXWtEf6ZgmiV+Scpc"
  1452. ]
  1453. },
  1454. {
  1455. "__type__": "CCPropertyOverrideInfo",
  1456. "targetInfo": {
  1457. "__id__": 86
  1458. },
  1459. "propertyPath": [
  1460. "_lscale"
  1461. ],
  1462. "value": {
  1463. "__type__": "cc.Vec3",
  1464. "x": 0.7,
  1465. "y": 0.7,
  1466. "z": 1
  1467. }
  1468. },
  1469. {
  1470. "__type__": "cc.TargetInfo",
  1471. "localID": [
  1472. "9aWY3NvjVGN6BIf1YtifUZ"
  1473. ]
  1474. },
  1475. {
  1476. "__type__": "CCPropertyOverrideInfo",
  1477. "targetInfo": {
  1478. "__id__": 88
  1479. },
  1480. "propertyPath": [
  1481. "_lpos"
  1482. ],
  1483. "value": {
  1484. "__type__": "cc.Vec3",
  1485. "x": 20.143,
  1486. "y": 223.583,
  1487. "z": 0
  1488. }
  1489. },
  1490. {
  1491. "__type__": "cc.TargetInfo",
  1492. "localID": [
  1493. "c5BXU6uCFL+prImcapeAyO"
  1494. ]
  1495. },
  1496. {
  1497. "__type__": "CCPropertyOverrideInfo",
  1498. "targetInfo": {
  1499. "__id__": 90
  1500. },
  1501. "propertyPath": [
  1502. "_contentSize"
  1503. ],
  1504. "value": {
  1505. "__type__": "cc.Size",
  1506. "width": 200,
  1507. "height": 160
  1508. }
  1509. },
  1510. {
  1511. "__type__": "cc.TargetInfo",
  1512. "localID": [
  1513. "e4WrRTi05BTLGa4GWa7RLh"
  1514. ]
  1515. },
  1516. {
  1517. "__type__": "CCPropertyOverrideInfo",
  1518. "targetInfo": {
  1519. "__id__": 92
  1520. },
  1521. "propertyPath": [
  1522. "_size"
  1523. ],
  1524. "value": {
  1525. "__type__": "cc.Size",
  1526. "width": 200,
  1527. "height": 160
  1528. }
  1529. },
  1530. {
  1531. "__type__": "cc.TargetInfo",
  1532. "localID": [
  1533. "951q6YLjZN4Id/RXFzaIcT"
  1534. ]
  1535. },
  1536. {
  1537. "__type__": "CCPropertyOverrideInfo",
  1538. "targetInfo": {
  1539. "__id__": 92
  1540. },
  1541. "propertyPath": [
  1542. "_offset"
  1543. ],
  1544. "value": {
  1545. "__type__": "cc.Vec2",
  1546. "x": 0,
  1547. "y": 80
  1548. }
  1549. },
  1550. {
  1551. "__type__": "cc.UITransform",
  1552. "_name": "",
  1553. "_objFlags": 0,
  1554. "__editorExtras__": {},
  1555. "node": {
  1556. "__id__": 60
  1557. },
  1558. "_enabled": true,
  1559. "__prefab": {
  1560. "__id__": 95
  1561. },
  1562. "_contentSize": {
  1563. "__type__": "cc.Size",
  1564. "width": 719,
  1565. "height": 394
  1566. },
  1567. "_anchorPoint": {
  1568. "__type__": "cc.Vec2",
  1569. "x": 0.5,
  1570. "y": 0.8
  1571. },
  1572. "_id": ""
  1573. },
  1574. {
  1575. "__type__": "cc.CompPrefabInfo",
  1576. "fileId": "e8v6VqccJPxqWY34cFUw5X"
  1577. },
  1578. {
  1579. "__type__": "cc.Sprite",
  1580. "_name": "",
  1581. "_objFlags": 0,
  1582. "__editorExtras__": {},
  1583. "node": {
  1584. "__id__": 60
  1585. },
  1586. "_enabled": true,
  1587. "__prefab": {
  1588. "__id__": 97
  1589. },
  1590. "_visFlags": 0,
  1591. "_customMaterial": null,
  1592. "_srcBlendFactor": 2,
  1593. "_dstBlendFactor": 4,
  1594. "_color": {
  1595. "__type__": "cc.Color",
  1596. "r": 255,
  1597. "g": 255,
  1598. "b": 255,
  1599. "a": 255
  1600. },
  1601. "_spriteFrame": {
  1602. "__uuid__": "3c8c1889-e867-466c-aab5-5a5edcf1e607@f9941",
  1603. "__expectedType__": "cc.SpriteFrame"
  1604. },
  1605. "_type": 0,
  1606. "_fillType": 0,
  1607. "_sizeMode": 2,
  1608. "_fillCenter": {
  1609. "__type__": "cc.Vec2",
  1610. "x": 0,
  1611. "y": 0
  1612. },
  1613. "_fillStart": 0,
  1614. "_fillRange": 0,
  1615. "_isTrimmedMode": false,
  1616. "_useGrayscale": false,
  1617. "_atlas": null,
  1618. "_id": ""
  1619. },
  1620. {
  1621. "__type__": "cc.CompPrefabInfo",
  1622. "fileId": "d8TdzOJXZKDIWr10sFvNR9"
  1623. },
  1624. {
  1625. "__type__": "cc.PrefabInfo",
  1626. "root": {
  1627. "__id__": 1
  1628. },
  1629. "asset": {
  1630. "__id__": 0
  1631. },
  1632. "fileId": "37AMlf1pxLFY2C0tEqGi3B"
  1633. },
  1634. {
  1635. "__type__": "cc.UITransform",
  1636. "_name": "",
  1637. "_objFlags": 0,
  1638. "__editorExtras__": {},
  1639. "node": {
  1640. "__id__": 59
  1641. },
  1642. "_enabled": true,
  1643. "__prefab": {
  1644. "__id__": 100
  1645. },
  1646. "_contentSize": {
  1647. "__type__": "cc.Size",
  1648. "width": 720,
  1649. "height": 300
  1650. },
  1651. "_anchorPoint": {
  1652. "__type__": "cc.Vec2",
  1653. "x": 0.5,
  1654. "y": 0.5
  1655. },
  1656. "_id": ""
  1657. },
  1658. {
  1659. "__type__": "cc.CompPrefabInfo",
  1660. "fileId": "99u03ip5NP7ZF/zSRDiEyN"
  1661. },
  1662. {
  1663. "__type__": "cc.PrefabInfo",
  1664. "root": {
  1665. "__id__": 1
  1666. },
  1667. "asset": {
  1668. "__id__": 0
  1669. },
  1670. "fileId": "bb8ltBDNxLO5joh0K8078J"
  1671. },
  1672. {
  1673. "__type__": "cc.Node",
  1674. "_name": "f",
  1675. "_objFlags": 0,
  1676. "_parent": {
  1677. "__id__": 1
  1678. },
  1679. "_children": [
  1680. {
  1681. "__id__": 103
  1682. }
  1683. ],
  1684. "_active": true,
  1685. "_components": [
  1686. {
  1687. "__id__": 122
  1688. }
  1689. ],
  1690. "_prefab": {
  1691. "__id__": 124
  1692. },
  1693. "_lpos": {
  1694. "__type__": "cc.Vec3",
  1695. "x": 0,
  1696. "y": -1550,
  1697. "z": 0
  1698. },
  1699. "_lrot": {
  1700. "__type__": "cc.Quat",
  1701. "x": 0,
  1702. "y": 0,
  1703. "z": 0,
  1704. "w": 1
  1705. },
  1706. "_lscale": {
  1707. "__type__": "cc.Vec3",
  1708. "x": 1,
  1709. "y": 1,
  1710. "z": 1
  1711. },
  1712. "_layer": 33554432,
  1713. "_euler": {
  1714. "__type__": "cc.Vec3",
  1715. "x": 0,
  1716. "y": 0,
  1717. "z": 0
  1718. },
  1719. "_id": ""
  1720. },
  1721. {
  1722. "__type__": "cc.Node",
  1723. "_name": "g",
  1724. "_objFlags": 0,
  1725. "_parent": {
  1726. "__id__": 102
  1727. },
  1728. "_children": [
  1729. {
  1730. "__id__": 104
  1731. }
  1732. ],
  1733. "_active": true,
  1734. "_components": [
  1735. {
  1736. "__id__": 117
  1737. },
  1738. {
  1739. "__id__": 119
  1740. }
  1741. ],
  1742. "_prefab": {
  1743. "__id__": 121
  1744. },
  1745. "_lpos": {
  1746. "__type__": "cc.Vec3",
  1747. "x": 150,
  1748. "y": 0,
  1749. "z": 0
  1750. },
  1751. "_lrot": {
  1752. "__type__": "cc.Quat",
  1753. "x": 0,
  1754. "y": 0,
  1755. "z": 0,
  1756. "w": 1
  1757. },
  1758. "_lscale": {
  1759. "__type__": "cc.Vec3",
  1760. "x": 1,
  1761. "y": 1,
  1762. "z": 1
  1763. },
  1764. "_layer": 33554432,
  1765. "_euler": {
  1766. "__type__": "cc.Vec3",
  1767. "x": 0,
  1768. "y": 0,
  1769. "z": 0
  1770. },
  1771. "_id": ""
  1772. },
  1773. {
  1774. "__type__": "cc.Node",
  1775. "_objFlags": 0,
  1776. "_parent": {
  1777. "__id__": 103
  1778. },
  1779. "_prefab": {
  1780. "__id__": 105
  1781. },
  1782. "__editorExtras__": {}
  1783. },
  1784. {
  1785. "__type__": "cc.PrefabInfo",
  1786. "root": {
  1787. "__id__": 104
  1788. },
  1789. "asset": {
  1790. "__uuid__": "d2a841f1-65e6-4e2d-a75e-9dc6b57e4763",
  1791. "__expectedType__": "cc.Prefab"
  1792. },
  1793. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  1794. "instance": {
  1795. "__id__": 106
  1796. }
  1797. },
  1798. {
  1799. "__type__": "cc.PrefabInstance",
  1800. "fileId": "beE7VNRGpAepvJVsnhKtOr",
  1801. "prefabRootNode": {
  1802. "__id__": 1
  1803. },
  1804. "mountedChildren": [],
  1805. "mountedComponents": [],
  1806. "propertyOverrides": [
  1807. {
  1808. "__id__": 107
  1809. },
  1810. {
  1811. "__id__": 109
  1812. },
  1813. {
  1814. "__id__": 110
  1815. },
  1816. {
  1817. "__id__": 111
  1818. },
  1819. {
  1820. "__id__": 112
  1821. },
  1822. {
  1823. "__id__": 114
  1824. },
  1825. {
  1826. "__id__": 116
  1827. }
  1828. ],
  1829. "removedComponents": []
  1830. },
  1831. {
  1832. "__type__": "CCPropertyOverrideInfo",
  1833. "targetInfo": {
  1834. "__id__": 108
  1835. },
  1836. "propertyPath": [
  1837. "_name"
  1838. ],
  1839. "value": "role_shop"
  1840. },
  1841. {
  1842. "__type__": "cc.TargetInfo",
  1843. "localID": [
  1844. "23Shh68qVKLJ0cCLTsPddX"
  1845. ]
  1846. },
  1847. {
  1848. "__type__": "CCPropertyOverrideInfo",
  1849. "targetInfo": {
  1850. "__id__": 108
  1851. },
  1852. "propertyPath": [
  1853. "_lpos"
  1854. ],
  1855. "value": {
  1856. "__type__": "cc.Vec3",
  1857. "x": 0,
  1858. "y": 0,
  1859. "z": 0
  1860. }
  1861. },
  1862. {
  1863. "__type__": "CCPropertyOverrideInfo",
  1864. "targetInfo": {
  1865. "__id__": 108
  1866. },
  1867. "propertyPath": [
  1868. "_lrot"
  1869. ],
  1870. "value": {
  1871. "__type__": "cc.Quat",
  1872. "x": 0,
  1873. "y": 0,
  1874. "z": 0,
  1875. "w": 1
  1876. }
  1877. },
  1878. {
  1879. "__type__": "CCPropertyOverrideInfo",
  1880. "targetInfo": {
  1881. "__id__": 108
  1882. },
  1883. "propertyPath": [
  1884. "_euler"
  1885. ],
  1886. "value": {
  1887. "__type__": "cc.Vec3",
  1888. "x": 0,
  1889. "y": 0,
  1890. "z": 0
  1891. }
  1892. },
  1893. {
  1894. "__type__": "CCPropertyOverrideInfo",
  1895. "targetInfo": {
  1896. "__id__": 113
  1897. },
  1898. "propertyPath": [
  1899. "roleTypeP1"
  1900. ],
  1901. "value": 0
  1902. },
  1903. {
  1904. "__type__": "cc.TargetInfo",
  1905. "localID": [
  1906. "55VnFEbkREiaRWBMGwR83j"
  1907. ]
  1908. },
  1909. {
  1910. "__type__": "CCPropertyOverrideInfo",
  1911. "targetInfo": {
  1912. "__id__": 115
  1913. },
  1914. "propertyPath": [
  1915. "_lpos"
  1916. ],
  1917. "value": {
  1918. "__type__": "cc.Vec3",
  1919. "x": 10,
  1920. "y": 0,
  1921. "z": 0
  1922. }
  1923. },
  1924. {
  1925. "__type__": "cc.TargetInfo",
  1926. "localID": [
  1927. "9aWY3NvjVGN6BIf1YtifUZ"
  1928. ]
  1929. },
  1930. {
  1931. "__type__": "CCPropertyOverrideInfo",
  1932. "targetInfo": {
  1933. "__id__": 113
  1934. },
  1935. "propertyPath": [
  1936. "roleTypeP2"
  1937. ],
  1938. "value": 1
  1939. },
  1940. {
  1941. "__type__": "cc.UITransform",
  1942. "_name": "",
  1943. "_objFlags": 0,
  1944. "__editorExtras__": {},
  1945. "node": {
  1946. "__id__": 103
  1947. },
  1948. "_enabled": true,
  1949. "__prefab": {
  1950. "__id__": 118
  1951. },
  1952. "_contentSize": {
  1953. "__type__": "cc.Size",
  1954. "width": 253,
  1955. "height": 142
  1956. },
  1957. "_anchorPoint": {
  1958. "__type__": "cc.Vec2",
  1959. "x": 0.5,
  1960. "y": 0.8
  1961. },
  1962. "_id": ""
  1963. },
  1964. {
  1965. "__type__": "cc.CompPrefabInfo",
  1966. "fileId": "1dKGwWa9lK9Z3SSK/t1R2s"
  1967. },
  1968. {
  1969. "__type__": "cc.Sprite",
  1970. "_name": "",
  1971. "_objFlags": 0,
  1972. "__editorExtras__": {},
  1973. "node": {
  1974. "__id__": 103
  1975. },
  1976. "_enabled": true,
  1977. "__prefab": {
  1978. "__id__": 120
  1979. },
  1980. "_visFlags": 0,
  1981. "_customMaterial": null,
  1982. "_srcBlendFactor": 2,
  1983. "_dstBlendFactor": 4,
  1984. "_color": {
  1985. "__type__": "cc.Color",
  1986. "r": 255,
  1987. "g": 255,
  1988. "b": 255,
  1989. "a": 255
  1990. },
  1991. "_spriteFrame": {
  1992. "__uuid__": "623a4b69-1f60-45c9-bee8-0f309e8632b9@f9941",
  1993. "__expectedType__": "cc.SpriteFrame"
  1994. },
  1995. "_type": 0,
  1996. "_fillType": 0,
  1997. "_sizeMode": 2,
  1998. "_fillCenter": {
  1999. "__type__": "cc.Vec2",
  2000. "x": 0,
  2001. "y": 0
  2002. },
  2003. "_fillStart": 0,
  2004. "_fillRange": 0,
  2005. "_isTrimmedMode": false,
  2006. "_useGrayscale": false,
  2007. "_atlas": null,
  2008. "_id": ""
  2009. },
  2010. {
  2011. "__type__": "cc.CompPrefabInfo",
  2012. "fileId": "aboRsCfrJJZ7IhM/LujnRf"
  2013. },
  2014. {
  2015. "__type__": "cc.PrefabInfo",
  2016. "root": {
  2017. "__id__": 1
  2018. },
  2019. "asset": {
  2020. "__id__": 0
  2021. },
  2022. "fileId": "31yr2i/mBPloLoXAmchnEO"
  2023. },
  2024. {
  2025. "__type__": "cc.UITransform",
  2026. "_name": "",
  2027. "_objFlags": 0,
  2028. "__editorExtras__": {},
  2029. "node": {
  2030. "__id__": 102
  2031. },
  2032. "_enabled": true,
  2033. "__prefab": {
  2034. "__id__": 123
  2035. },
  2036. "_contentSize": {
  2037. "__type__": "cc.Size",
  2038. "width": 747,
  2039. "height": 300
  2040. },
  2041. "_anchorPoint": {
  2042. "__type__": "cc.Vec2",
  2043. "x": 0.5,
  2044. "y": 0.5
  2045. },
  2046. "_id": ""
  2047. },
  2048. {
  2049. "__type__": "cc.CompPrefabInfo",
  2050. "fileId": "0dJ/hxxItNSr8f/Klnalb3"
  2051. },
  2052. {
  2053. "__type__": "cc.PrefabInfo",
  2054. "root": {
  2055. "__id__": 1
  2056. },
  2057. "asset": {
  2058. "__id__": 0
  2059. },
  2060. "fileId": "905KfZRhdALYMYTJ3+lR6Q"
  2061. },
  2062. {
  2063. "__type__": "cc.Node",
  2064. "_name": "f",
  2065. "_objFlags": 0,
  2066. "_parent": {
  2067. "__id__": 1
  2068. },
  2069. "_children": [
  2070. {
  2071. "__id__": 126
  2072. }
  2073. ],
  2074. "_active": true,
  2075. "_components": [
  2076. {
  2077. "__id__": 159
  2078. }
  2079. ],
  2080. "_prefab": {
  2081. "__id__": 161
  2082. },
  2083. "_lpos": {
  2084. "__type__": "cc.Vec3",
  2085. "x": 0,
  2086. "y": -1850,
  2087. "z": 0
  2088. },
  2089. "_lrot": {
  2090. "__type__": "cc.Quat",
  2091. "x": 0,
  2092. "y": 0,
  2093. "z": 0,
  2094. "w": 1
  2095. },
  2096. "_lscale": {
  2097. "__type__": "cc.Vec3",
  2098. "x": 1,
  2099. "y": 1,
  2100. "z": 1
  2101. },
  2102. "_layer": 33554432,
  2103. "_euler": {
  2104. "__type__": "cc.Vec3",
  2105. "x": 0,
  2106. "y": 0,
  2107. "z": 0
  2108. },
  2109. "_id": ""
  2110. },
  2111. {
  2112. "__type__": "cc.Node",
  2113. "_name": "g",
  2114. "_objFlags": 0,
  2115. "_parent": {
  2116. "__id__": 125
  2117. },
  2118. "_children": [
  2119. {
  2120. "__id__": 127
  2121. },
  2122. {
  2123. "__id__": 142
  2124. }
  2125. ],
  2126. "_active": true,
  2127. "_components": [
  2128. {
  2129. "__id__": 154
  2130. },
  2131. {
  2132. "__id__": 156
  2133. }
  2134. ],
  2135. "_prefab": {
  2136. "__id__": 158
  2137. },
  2138. "_lpos": {
  2139. "__type__": "cc.Vec3",
  2140. "x": 0,
  2141. "y": 0,
  2142. "z": 0
  2143. },
  2144. "_lrot": {
  2145. "__type__": "cc.Quat",
  2146. "x": 0,
  2147. "y": 0,
  2148. "z": 0,
  2149. "w": 1
  2150. },
  2151. "_lscale": {
  2152. "__type__": "cc.Vec3",
  2153. "x": 1,
  2154. "y": 1,
  2155. "z": 1
  2156. },
  2157. "_layer": 33554432,
  2158. "_euler": {
  2159. "__type__": "cc.Vec3",
  2160. "x": 0,
  2161. "y": 0,
  2162. "z": 0
  2163. },
  2164. "_id": ""
  2165. },
  2166. {
  2167. "__type__": "cc.Node",
  2168. "_objFlags": 0,
  2169. "_parent": {
  2170. "__id__": 126
  2171. },
  2172. "_prefab": {
  2173. "__id__": 128
  2174. },
  2175. "__editorExtras__": {}
  2176. },
  2177. {
  2178. "__type__": "cc.PrefabInfo",
  2179. "root": {
  2180. "__id__": 127
  2181. },
  2182. "asset": {
  2183. "__uuid__": "765453ef-514e-459a-9d7d-c58b9104dd34",
  2184. "__expectedType__": "cc.Prefab"
  2185. },
  2186. "fileId": "20cVgNMc9LLYnnK6S4McTL",
  2187. "instance": {
  2188. "__id__": 129
  2189. }
  2190. },
  2191. {
  2192. "__type__": "cc.PrefabInstance",
  2193. "fileId": "a9L5oiMhZBbrZpMo1XEQdK",
  2194. "prefabRootNode": {
  2195. "__id__": 1
  2196. },
  2197. "mountedChildren": [],
  2198. "mountedComponents": [],
  2199. "propertyOverrides": [
  2200. {
  2201. "__id__": 130
  2202. },
  2203. {
  2204. "__id__": 132
  2205. },
  2206. {
  2207. "__id__": 133
  2208. },
  2209. {
  2210. "__id__": 134
  2211. },
  2212. {
  2213. "__id__": 135
  2214. },
  2215. {
  2216. "__id__": 137
  2217. },
  2218. {
  2219. "__id__": 139
  2220. },
  2221. {
  2222. "__id__": 141
  2223. }
  2224. ],
  2225. "removedComponents": []
  2226. },
  2227. {
  2228. "__type__": "CCPropertyOverrideInfo",
  2229. "targetInfo": {
  2230. "__id__": 131
  2231. },
  2232. "propertyPath": [
  2233. "_name"
  2234. ],
  2235. "value": "role_player"
  2236. },
  2237. {
  2238. "__type__": "cc.TargetInfo",
  2239. "localID": [
  2240. "20cVgNMc9LLYnnK6S4McTL"
  2241. ]
  2242. },
  2243. {
  2244. "__type__": "CCPropertyOverrideInfo",
  2245. "targetInfo": {
  2246. "__id__": 131
  2247. },
  2248. "propertyPath": [
  2249. "_lpos"
  2250. ],
  2251. "value": {
  2252. "__type__": "cc.Vec3",
  2253. "x": -163.039,
  2254. "y": 0,
  2255. "z": 0
  2256. }
  2257. },
  2258. {
  2259. "__type__": "CCPropertyOverrideInfo",
  2260. "targetInfo": {
  2261. "__id__": 131
  2262. },
  2263. "propertyPath": [
  2264. "_lrot"
  2265. ],
  2266. "value": {
  2267. "__type__": "cc.Quat",
  2268. "x": 0,
  2269. "y": 0,
  2270. "z": 0,
  2271. "w": 1
  2272. }
  2273. },
  2274. {
  2275. "__type__": "CCPropertyOverrideInfo",
  2276. "targetInfo": {
  2277. "__id__": 131
  2278. },
  2279. "propertyPath": [
  2280. "_euler"
  2281. ],
  2282. "value": {
  2283. "__type__": "cc.Vec3",
  2284. "x": 0,
  2285. "y": 0,
  2286. "z": 0
  2287. }
  2288. },
  2289. {
  2290. "__type__": "CCPropertyOverrideInfo",
  2291. "targetInfo": {
  2292. "__id__": 136
  2293. },
  2294. "propertyPath": [
  2295. "_string"
  2296. ],
  2297. "value": "8"
  2298. },
  2299. {
  2300. "__type__": "cc.TargetInfo",
  2301. "localID": [
  2302. "ebDK9ERglCvIaTlwSdEF+S"
  2303. ]
  2304. },
  2305. {
  2306. "__type__": "CCPropertyOverrideInfo",
  2307. "targetInfo": {
  2308. "__id__": 138
  2309. },
  2310. "propertyPath": [
  2311. "_contentSize"
  2312. ],
  2313. "value": {
  2314. "__type__": "cc.Size",
  2315. "width": 24.44,
  2316. "height": 40
  2317. }
  2318. },
  2319. {
  2320. "__type__": "cc.TargetInfo",
  2321. "localID": [
  2322. "0855lmLBBESolir6c7gFnt"
  2323. ]
  2324. },
  2325. {
  2326. "__type__": "CCPropertyOverrideInfo",
  2327. "targetInfo": {
  2328. "__id__": 140
  2329. },
  2330. "propertyPath": [
  2331. "_name"
  2332. ],
  2333. "value": "body"
  2334. },
  2335. {
  2336. "__type__": "cc.TargetInfo",
  2337. "localID": [
  2338. "ab11MmQKpKW58TBu7sIYxC"
  2339. ]
  2340. },
  2341. {
  2342. "__type__": "CCPropertyOverrideInfo",
  2343. "targetInfo": {
  2344. "__id__": 140
  2345. },
  2346. "propertyPath": [
  2347. "_lpos"
  2348. ],
  2349. "value": {
  2350. "__type__": "cc.Vec3",
  2351. "x": 0,
  2352. "y": 47.751999999999995,
  2353. "z": 0
  2354. }
  2355. },
  2356. {
  2357. "__type__": "cc.Node",
  2358. "_objFlags": 0,
  2359. "_parent": {
  2360. "__id__": 126
  2361. },
  2362. "_prefab": {
  2363. "__id__": 143
  2364. },
  2365. "__editorExtras__": {}
  2366. },
  2367. {
  2368. "__type__": "cc.PrefabInfo",
  2369. "root": {
  2370. "__id__": 142
  2371. },
  2372. "asset": {
  2373. "__uuid__": "8d504f54-4b30-462e-8114-b1ecf449ae8c",
  2374. "__expectedType__": "cc.Prefab"
  2375. },
  2376. "fileId": "23Shh68qVKLJ0cCLTsPddX",
  2377. "instance": {
  2378. "__id__": 144
  2379. }
  2380. },
  2381. {
  2382. "__type__": "cc.PrefabInstance",
  2383. "fileId": "01FSxadqhB67FCY+HrvCJ/",
  2384. "prefabRootNode": {
  2385. "__id__": 1
  2386. },
  2387. "mountedChildren": [],
  2388. "mountedComponents": [],
  2389. "propertyOverrides": [
  2390. {
  2391. "__id__": 145
  2392. },
  2393. {
  2394. "__id__": 147
  2395. },
  2396. {
  2397. "__id__": 148
  2398. },
  2399. {
  2400. "__id__": 149
  2401. },
  2402. {
  2403. "__id__": 150
  2404. },
  2405. {
  2406. "__id__": 152
  2407. }
  2408. ],
  2409. "removedComponents": []
  2410. },
  2411. {
  2412. "__type__": "CCPropertyOverrideInfo",
  2413. "targetInfo": {
  2414. "__id__": 146
  2415. },
  2416. "propertyPath": [
  2417. "_name"
  2418. ],
  2419. "value": "role_xiezi"
  2420. },
  2421. {
  2422. "__type__": "cc.TargetInfo",
  2423. "localID": [
  2424. "23Shh68qVKLJ0cCLTsPddX"
  2425. ]
  2426. },
  2427. {
  2428. "__type__": "CCPropertyOverrideInfo",
  2429. "targetInfo": {
  2430. "__id__": 146
  2431. },
  2432. "propertyPath": [
  2433. "_lpos"
  2434. ],
  2435. "value": {
  2436. "__type__": "cc.Vec3",
  2437. "x": 177.049,
  2438. "y": 0,
  2439. "z": 0
  2440. }
  2441. },
  2442. {
  2443. "__type__": "CCPropertyOverrideInfo",
  2444. "targetInfo": {
  2445. "__id__": 146
  2446. },
  2447. "propertyPath": [
  2448. "_lrot"
  2449. ],
  2450. "value": {
  2451. "__type__": "cc.Quat",
  2452. "x": 0,
  2453. "y": 0,
  2454. "z": 0,
  2455. "w": 1
  2456. }
  2457. },
  2458. {
  2459. "__type__": "CCPropertyOverrideInfo",
  2460. "targetInfo": {
  2461. "__id__": 146
  2462. },
  2463. "propertyPath": [
  2464. "_euler"
  2465. ],
  2466. "value": {
  2467. "__type__": "cc.Vec3",
  2468. "x": 0,
  2469. "y": 0,
  2470. "z": 0
  2471. }
  2472. },
  2473. {
  2474. "__type__": "CCPropertyOverrideInfo",
  2475. "targetInfo": {
  2476. "__id__": 151
  2477. },
  2478. "propertyPath": [
  2479. "_string"
  2480. ],
  2481. "value": "6"
  2482. },
  2483. {
  2484. "__type__": "cc.TargetInfo",
  2485. "localID": [
  2486. "3cxFYWW1RLiLNjw6kMjSKk"
  2487. ]
  2488. },
  2489. {
  2490. "__type__": "CCPropertyOverrideInfo",
  2491. "targetInfo": {
  2492. "__id__": 153
  2493. },
  2494. "propertyPath": [
  2495. "_contentSize"
  2496. ],
  2497. "value": {
  2498. "__type__": "cc.Size",
  2499. "width": 24.44,
  2500. "height": 40
  2501. }
  2502. },
  2503. {
  2504. "__type__": "cc.TargetInfo",
  2505. "localID": [
  2506. "d9R+nrXWtEf6ZgmiV+Scpc"
  2507. ]
  2508. },
  2509. {
  2510. "__type__": "cc.UITransform",
  2511. "_name": "",
  2512. "_objFlags": 0,
  2513. "__editorExtras__": {},
  2514. "node": {
  2515. "__id__": 126
  2516. },
  2517. "_enabled": true,
  2518. "__prefab": {
  2519. "__id__": 155
  2520. },
  2521. "_contentSize": {
  2522. "__type__": "cc.Size",
  2523. "width": 719,
  2524. "height": 394
  2525. },
  2526. "_anchorPoint": {
  2527. "__type__": "cc.Vec2",
  2528. "x": 0.5,
  2529. "y": 0.8
  2530. },
  2531. "_id": ""
  2532. },
  2533. {
  2534. "__type__": "cc.CompPrefabInfo",
  2535. "fileId": "37a/x+NUlACpxEYPr03WHL"
  2536. },
  2537. {
  2538. "__type__": "cc.Sprite",
  2539. "_name": "",
  2540. "_objFlags": 0,
  2541. "__editorExtras__": {},
  2542. "node": {
  2543. "__id__": 126
  2544. },
  2545. "_enabled": true,
  2546. "__prefab": {
  2547. "__id__": 157
  2548. },
  2549. "_visFlags": 0,
  2550. "_customMaterial": null,
  2551. "_srcBlendFactor": 2,
  2552. "_dstBlendFactor": 4,
  2553. "_color": {
  2554. "__type__": "cc.Color",
  2555. "r": 255,
  2556. "g": 255,
  2557. "b": 255,
  2558. "a": 255
  2559. },
  2560. "_spriteFrame": {
  2561. "__uuid__": "3c8c1889-e867-466c-aab5-5a5edcf1e607@f9941",
  2562. "__expectedType__": "cc.SpriteFrame"
  2563. },
  2564. "_type": 0,
  2565. "_fillType": 0,
  2566. "_sizeMode": 2,
  2567. "_fillCenter": {
  2568. "__type__": "cc.Vec2",
  2569. "x": 0,
  2570. "y": 0
  2571. },
  2572. "_fillStart": 0,
  2573. "_fillRange": 0,
  2574. "_isTrimmedMode": false,
  2575. "_useGrayscale": false,
  2576. "_atlas": null,
  2577. "_id": ""
  2578. },
  2579. {
  2580. "__type__": "cc.CompPrefabInfo",
  2581. "fileId": "2bUDBR79dJ4LkHDnfKUlbf"
  2582. },
  2583. {
  2584. "__type__": "cc.PrefabInfo",
  2585. "root": {
  2586. "__id__": 1
  2587. },
  2588. "asset": {
  2589. "__id__": 0
  2590. },
  2591. "fileId": "3bcCDP4G9FBoyT6EOrAUKC"
  2592. },
  2593. {
  2594. "__type__": "cc.UITransform",
  2595. "_name": "",
  2596. "_objFlags": 0,
  2597. "__editorExtras__": {},
  2598. "node": {
  2599. "__id__": 125
  2600. },
  2601. "_enabled": true,
  2602. "__prefab": {
  2603. "__id__": 160
  2604. },
  2605. "_contentSize": {
  2606. "__type__": "cc.Size",
  2607. "width": 720,
  2608. "height": 300
  2609. },
  2610. "_anchorPoint": {
  2611. "__type__": "cc.Vec2",
  2612. "x": 0.5,
  2613. "y": 0.5
  2614. },
  2615. "_id": ""
  2616. },
  2617. {
  2618. "__type__": "cc.CompPrefabInfo",
  2619. "fileId": "e6FiixuTlJToDImeUFJjPU"
  2620. },
  2621. {
  2622. "__type__": "cc.PrefabInfo",
  2623. "root": {
  2624. "__id__": 1
  2625. },
  2626. "asset": {
  2627. "__id__": 0
  2628. },
  2629. "fileId": "5a18gAgz1K6KB8lYXWvVYP"
  2630. },
  2631. {
  2632. "__type__": "cc.UITransform",
  2633. "_name": "",
  2634. "_objFlags": 0,
  2635. "__editorExtras__": {},
  2636. "node": {
  2637. "__id__": 1
  2638. },
  2639. "_enabled": true,
  2640. "__prefab": {
  2641. "__id__": 163
  2642. },
  2643. "_contentSize": {
  2644. "__type__": "cc.Size",
  2645. "width": 720,
  2646. "height": 2000
  2647. },
  2648. "_anchorPoint": {
  2649. "__type__": "cc.Vec2",
  2650. "x": 0.5,
  2651. "y": 1
  2652. },
  2653. "_id": ""
  2654. },
  2655. {
  2656. "__type__": "cc.CompPrefabInfo",
  2657. "fileId": "f5C73TBO1BUaTJzq9UqK7o"
  2658. },
  2659. {
  2660. "__type__": "cc.Widget",
  2661. "_name": "",
  2662. "_objFlags": 0,
  2663. "__editorExtras__": {},
  2664. "node": {
  2665. "__id__": 1
  2666. },
  2667. "_enabled": true,
  2668. "__prefab": {
  2669. "__id__": 165
  2670. },
  2671. "_alignFlags": 40,
  2672. "_target": null,
  2673. "_left": 0,
  2674. "_right": 0,
  2675. "_top": 0,
  2676. "_bottom": 0,
  2677. "_horizontalCenter": 0,
  2678. "_verticalCenter": 0,
  2679. "_isAbsLeft": true,
  2680. "_isAbsRight": true,
  2681. "_isAbsTop": true,
  2682. "_isAbsBottom": true,
  2683. "_isAbsHorizontalCenter": true,
  2684. "_isAbsVerticalCenter": true,
  2685. "_originalWidth": 100,
  2686. "_originalHeight": 0,
  2687. "_alignMode": 2,
  2688. "_lockFlags": 0,
  2689. "_id": ""
  2690. },
  2691. {
  2692. "__type__": "cc.CompPrefabInfo",
  2693. "fileId": "514IyosJ9FLJyJjdTuWe/D"
  2694. },
  2695. {
  2696. "__type__": "cc.Layout",
  2697. "_name": "",
  2698. "_objFlags": 0,
  2699. "__editorExtras__": {},
  2700. "node": {
  2701. "__id__": 1
  2702. },
  2703. "_enabled": true,
  2704. "__prefab": {
  2705. "__id__": 167
  2706. },
  2707. "_resizeMode": 1,
  2708. "_layoutType": 2,
  2709. "_cellSize": {
  2710. "__type__": "cc.Size",
  2711. "width": 40,
  2712. "height": 40
  2713. },
  2714. "_startAxis": 0,
  2715. "_paddingLeft": 0,
  2716. "_paddingRight": 0,
  2717. "_paddingTop": 0,
  2718. "_paddingBottom": 0,
  2719. "_spacingX": 0,
  2720. "_spacingY": 0,
  2721. "_verticalDirection": 1,
  2722. "_horizontalDirection": 0,
  2723. "_constraint": 0,
  2724. "_constraintNum": 2,
  2725. "_affectedByScale": false,
  2726. "_isAlign": false,
  2727. "_id": ""
  2728. },
  2729. {
  2730. "__type__": "cc.CompPrefabInfo",
  2731. "fileId": "3e40aiiXNPZK59rLGry/jm"
  2732. },
  2733. {
  2734. "__type__": "cc.PrefabInfo",
  2735. "root": {
  2736. "__id__": 1
  2737. },
  2738. "asset": {
  2739. "__id__": 0
  2740. },
  2741. "fileId": "96sI46BKJGa6hjFwLecxx8",
  2742. "nestedPrefabInstanceRoots": [
  2743. {
  2744. "__id__": 8
  2745. },
  2746. {
  2747. "__id__": 39
  2748. },
  2749. {
  2750. "__id__": 61
  2751. },
  2752. {
  2753. "__id__": 73
  2754. },
  2755. {
  2756. "__id__": 104
  2757. },
  2758. {
  2759. "__id__": 127
  2760. },
  2761. {
  2762. "__id__": 142
  2763. }
  2764. ]
  2765. }
  2766. ]