FreeUseUI.prefab 64 KB

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