Lv4.prefab 54 KB

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