buyBoomerangUI.prefab 60 KB

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