FreeUpgradeUI.prefab 80 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641
  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": "FreeUpgradeUI",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 10
  24. },
  25. {
  26. "__id__": 32
  27. },
  28. {
  29. "__id__": 54
  30. },
  31. {
  32. "__id__": 58
  33. },
  34. {
  35. "__id__": 62
  36. },
  37. {
  38. "__id__": 77
  39. },
  40. {
  41. "__id__": 88
  42. },
  43. {
  44. "__id__": 137
  45. },
  46. {
  47. "__id__": 146
  48. }
  49. ],
  50. "_active": true,
  51. "_components": [
  52. {
  53. "__id__": 151
  54. },
  55. {
  56. "__id__": 152
  57. },
  58. {
  59. "__id__": 153
  60. }
  61. ],
  62. "_prefab": {
  63. "__id__": 154
  64. },
  65. "_lpos": {
  66. "__type__": "cc.Vec3",
  67. "x": 0,
  68. "y": 0,
  69. "z": 0
  70. },
  71. "_lrot": {
  72. "__type__": "cc.Quat",
  73. "x": 0,
  74. "y": 0,
  75. "z": 0,
  76. "w": 1
  77. },
  78. "_lscale": {
  79. "__type__": "cc.Vec3",
  80. "x": 1,
  81. "y": 1,
  82. "z": 1
  83. },
  84. "_layer": 1073741824,
  85. "_euler": {
  86. "__type__": "cc.Vec3",
  87. "x": 0,
  88. "y": 0,
  89. "z": 0
  90. },
  91. "_id": ""
  92. },
  93. {
  94. "__type__": "cc.Node",
  95. "_name": "Background",
  96. "_objFlags": 0,
  97. "_parent": {
  98. "__id__": 1
  99. },
  100. "_children": [
  101. {
  102. "__id__": 3
  103. }
  104. ],
  105. "_active": true,
  106. "_components": [
  107. {
  108. "__id__": 7
  109. },
  110. {
  111. "__id__": 8
  112. }
  113. ],
  114. "_prefab": {
  115. "__id__": 9
  116. },
  117. "_lpos": {
  118. "__type__": "cc.Vec3",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0
  122. },
  123. "_lrot": {
  124. "__type__": "cc.Quat",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0,
  128. "w": 1
  129. },
  130. "_lscale": {
  131. "__type__": "cc.Vec3",
  132. "x": 1,
  133. "y": 1,
  134. "z": 1
  135. },
  136. "_layer": 33554432,
  137. "_euler": {
  138. "__type__": "cc.Vec3",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0
  142. },
  143. "_id": ""
  144. },
  145. {
  146. "__type__": "cc.Node",
  147. "_name": "DownBG",
  148. "_objFlags": 0,
  149. "_parent": {
  150. "__id__": 2
  151. },
  152. "_children": [],
  153. "_active": true,
  154. "_components": [
  155. {
  156. "__id__": 4
  157. },
  158. {
  159. "__id__": 5
  160. }
  161. ],
  162. "_prefab": {
  163. "__id__": 6
  164. },
  165. "_lpos": {
  166. "__type__": "cc.Vec3",
  167. "x": 0,
  168. "y": -667,
  169. "z": 0
  170. },
  171. "_lrot": {
  172. "__type__": "cc.Quat",
  173. "x": 0,
  174. "y": 0,
  175. "z": 0,
  176. "w": 1
  177. },
  178. "_lscale": {
  179. "__type__": "cc.Vec3",
  180. "x": 1,
  181. "y": 1,
  182. "z": 1
  183. },
  184. "_layer": 33554432,
  185. "_euler": {
  186. "__type__": "cc.Vec3",
  187. "x": 0,
  188. "y": 0,
  189. "z": 0
  190. },
  191. "_id": ""
  192. },
  193. {
  194. "__type__": "cc.UITransformComponent",
  195. "_name": "BG1<UITransformComponent>",
  196. "_objFlags": 0,
  197. "node": {
  198. "__id__": 3
  199. },
  200. "_enabled": true,
  201. "_priority": 0,
  202. "_contentSize": {
  203. "__type__": "cc.Size",
  204. "width": 750,
  205. "height": 222
  206. },
  207. "_anchorPoint": {
  208. "__type__": "cc.Vec2",
  209. "x": 0.5,
  210. "y": 0
  211. },
  212. "_id": ""
  213. },
  214. {
  215. "__type__": "cc.SpriteComponent",
  216. "_name": "BG1<SpriteComponent>",
  217. "_objFlags": 0,
  218. "node": {
  219. "__id__": 3
  220. },
  221. "_enabled": true,
  222. "_srcBlendFactor": 2,
  223. "_dstBlendFactor": 4,
  224. "_color": {
  225. "__type__": "cc.Color",
  226. "r": 255,
  227. "g": 255,
  228. "b": 255,
  229. "a": 255
  230. },
  231. "_sharedMaterial": null,
  232. "_spriteFrame": {
  233. "__uuid__": "9940c8a3-5755-4f43-81f1-b57b492b5e57@f9941"
  234. },
  235. "_type": 0,
  236. "_fillType": 0,
  237. "_sizeMode": 0,
  238. "_fillCenter": {
  239. "__type__": "cc.Vec2",
  240. "x": 0,
  241. "y": 0
  242. },
  243. "_fillStart": 0,
  244. "_fillRange": 0,
  245. "_isTrimmedMode": true,
  246. "_useGrayscale": false,
  247. "_atlas": null,
  248. "_id": ""
  249. },
  250. {
  251. "__type__": "cc.PrefabInfo",
  252. "root": {
  253. "__id__": 1
  254. },
  255. "asset": {
  256. "__id__": 0
  257. },
  258. "fileId": "31sjaP4gNOPYdY6NeA+pYH",
  259. "sync": false,
  260. "_synced": {
  261. "default": false,
  262. "serializable": false
  263. }
  264. },
  265. {
  266. "__type__": "cc.UITransformComponent",
  267. "_name": "",
  268. "_objFlags": 0,
  269. "node": {
  270. "__id__": 2
  271. },
  272. "_enabled": true,
  273. "_priority": 0,
  274. "_contentSize": {
  275. "__type__": "cc.Size",
  276. "width": 770,
  277. "height": 1354
  278. },
  279. "_anchorPoint": {
  280. "__type__": "cc.Vec2",
  281. "x": 0.5,
  282. "y": 0.5
  283. },
  284. "_id": ""
  285. },
  286. {
  287. "__type__": "cc.SpriteComponent",
  288. "_name": "",
  289. "_objFlags": 0,
  290. "node": {
  291. "__id__": 2
  292. },
  293. "_enabled": true,
  294. "_srcBlendFactor": 2,
  295. "_dstBlendFactor": 4,
  296. "_color": {
  297. "__type__": "cc.Color",
  298. "r": 255,
  299. "g": 255,
  300. "b": 255,
  301. "a": 255
  302. },
  303. "_sharedMaterial": null,
  304. "_spriteFrame": {
  305. "__uuid__": "3c3ed098-f83c-482e-8945-a488ebc38444@f9941"
  306. },
  307. "_type": 1,
  308. "_fillType": 0,
  309. "_sizeMode": 0,
  310. "_fillCenter": {
  311. "__type__": "cc.Vec2",
  312. "x": 0,
  313. "y": 0
  314. },
  315. "_fillStart": 0,
  316. "_fillRange": 0,
  317. "_isTrimmedMode": true,
  318. "_useGrayscale": false,
  319. "_atlas": null,
  320. "_id": ""
  321. },
  322. {
  323. "__type__": "cc.PrefabInfo",
  324. "root": {
  325. "__id__": 1
  326. },
  327. "asset": {
  328. "__id__": 0
  329. },
  330. "fileId": "d0+trQc5xLoI+tzpIrWMcs",
  331. "sync": false,
  332. "_synced": {
  333. "default": false,
  334. "serializable": false
  335. }
  336. },
  337. {
  338. "__type__": "cc.Node",
  339. "_name": "GunOld",
  340. "_objFlags": 0,
  341. "_parent": {
  342. "__id__": 1
  343. },
  344. "_children": [
  345. {
  346. "__id__": 11
  347. },
  348. {
  349. "__id__": 14
  350. },
  351. {
  352. "__id__": 22
  353. }
  354. ],
  355. "_active": true,
  356. "_components": [
  357. {
  358. "__id__": 30
  359. }
  360. ],
  361. "_prefab": {
  362. "__id__": 31
  363. },
  364. "_lpos": {
  365. "__type__": "cc.Vec3",
  366. "x": 0,
  367. "y": 266.481,
  368. "z": 0
  369. },
  370. "_lrot": {
  371. "__type__": "cc.Quat",
  372. "x": 0,
  373. "y": 0,
  374. "z": 0,
  375. "w": 1
  376. },
  377. "_lscale": {
  378. "__type__": "cc.Vec3",
  379. "x": 1,
  380. "y": 1,
  381. "z": 1
  382. },
  383. "_layer": 1073741824,
  384. "_euler": {
  385. "__type__": "cc.Vec3",
  386. "x": 0,
  387. "y": 0,
  388. "z": 0
  389. },
  390. "_id": ""
  391. },
  392. {
  393. "__type__": "cc.Node",
  394. "_name": "GunLoad3D",
  395. "_objFlags": 0,
  396. "_parent": {
  397. "__id__": 10
  398. },
  399. "_children": [],
  400. "_active": true,
  401. "_components": [
  402. {
  403. "__id__": 12
  404. }
  405. ],
  406. "_prefab": {
  407. "__id__": 13
  408. },
  409. "_lpos": {
  410. "__type__": "cc.Vec3",
  411. "x": 0,
  412. "y": 0,
  413. "z": 0
  414. },
  415. "_lrot": {
  416. "__type__": "cc.Quat",
  417. "x": 0,
  418. "y": 0,
  419. "z": 0,
  420. "w": 1
  421. },
  422. "_lscale": {
  423. "__type__": "cc.Vec3",
  424. "x": 1,
  425. "y": 1,
  426. "z": 1
  427. },
  428. "_layer": 1073741824,
  429. "_euler": {
  430. "__type__": "cc.Vec3",
  431. "x": 0,
  432. "y": 0,
  433. "z": 0
  434. },
  435. "_id": ""
  436. },
  437. {
  438. "__type__": "cc.UITransformComponent",
  439. "_name": "GunLoad3D<UITransformComponent>",
  440. "_objFlags": 0,
  441. "node": {
  442. "__id__": 11
  443. },
  444. "_enabled": true,
  445. "_priority": 0,
  446. "_contentSize": {
  447. "__type__": "cc.Size",
  448. "width": 480,
  449. "height": 250
  450. },
  451. "_anchorPoint": {
  452. "__type__": "cc.Vec2",
  453. "x": 0.5,
  454. "y": 0.5
  455. },
  456. "_id": ""
  457. },
  458. {
  459. "__type__": "cc.PrefabInfo",
  460. "root": {
  461. "__id__": 1
  462. },
  463. "asset": {
  464. "__id__": 0
  465. },
  466. "fileId": "a1JS8ZCtNFG7inXSt1nSl4",
  467. "sync": false,
  468. "_synced": {
  469. "default": false,
  470. "serializable": false
  471. }
  472. },
  473. {
  474. "__type__": "cc.Node",
  475. "_name": "GunName",
  476. "_objFlags": 0,
  477. "_parent": {
  478. "__id__": 10
  479. },
  480. "_children": [
  481. {
  482. "__id__": 15
  483. }
  484. ],
  485. "_active": true,
  486. "_components": [
  487. {
  488. "__id__": 19
  489. },
  490. {
  491. "__id__": 20
  492. }
  493. ],
  494. "_prefab": {
  495. "__id__": 21
  496. },
  497. "_lpos": {
  498. "__type__": "cc.Vec3",
  499. "x": 18,
  500. "y": -162,
  501. "z": 0
  502. },
  503. "_lrot": {
  504. "__type__": "cc.Quat",
  505. "x": 0,
  506. "y": 0,
  507. "z": 0,
  508. "w": 1
  509. },
  510. "_lscale": {
  511. "__type__": "cc.Vec3",
  512. "x": 1,
  513. "y": 1,
  514. "z": 1
  515. },
  516. "_layer": 33554432,
  517. "_euler": {
  518. "__type__": "cc.Vec3",
  519. "x": 0,
  520. "y": 0,
  521. "z": 0
  522. },
  523. "_id": ""
  524. },
  525. {
  526. "__type__": "cc.Node",
  527. "_name": "Label",
  528. "_objFlags": 0,
  529. "_parent": {
  530. "__id__": 14
  531. },
  532. "_children": [],
  533. "_active": true,
  534. "_components": [
  535. {
  536. "__id__": 16
  537. },
  538. {
  539. "__id__": 17
  540. }
  541. ],
  542. "_prefab": {
  543. "__id__": 18
  544. },
  545. "_lpos": {
  546. "__type__": "cc.Vec3",
  547. "x": 9,
  548. "y": -4,
  549. "z": 0
  550. },
  551. "_lrot": {
  552. "__type__": "cc.Quat",
  553. "x": 0,
  554. "y": 0,
  555. "z": 0,
  556. "w": 1
  557. },
  558. "_lscale": {
  559. "__type__": "cc.Vec3",
  560. "x": 1,
  561. "y": 1,
  562. "z": 1
  563. },
  564. "_layer": 33554432,
  565. "_euler": {
  566. "__type__": "cc.Vec3",
  567. "x": 0,
  568. "y": 0,
  569. "z": 0
  570. },
  571. "_id": ""
  572. },
  573. {
  574. "__type__": "cc.UITransformComponent",
  575. "_name": "",
  576. "_objFlags": 0,
  577. "node": {
  578. "__id__": 15
  579. },
  580. "_enabled": true,
  581. "_priority": 0,
  582. "_contentSize": {
  583. "__type__": "cc.Size",
  584. "width": 88.07,
  585. "height": 50.4
  586. },
  587. "_anchorPoint": {
  588. "__type__": "cc.Vec2",
  589. "x": 0.5,
  590. "y": 0.5
  591. },
  592. "_id": ""
  593. },
  594. {
  595. "__type__": "cc.LabelComponent",
  596. "_name": "",
  597. "_objFlags": 0,
  598. "node": {
  599. "__id__": 15
  600. },
  601. "_enabled": true,
  602. "_srcBlendFactor": 2,
  603. "_dstBlendFactor": 4,
  604. "_color": {
  605. "__type__": "cc.Color",
  606. "r": 255,
  607. "g": 255,
  608. "b": 255,
  609. "a": 255
  610. },
  611. "_sharedMaterial": null,
  612. "_useOriginalSize": true,
  613. "_string": "AK47",
  614. "_horizontalAlign": 1,
  615. "_verticalAlign": 1,
  616. "_actualFontSize": 36,
  617. "_fontSize": 36,
  618. "_fontFamily": "Arial",
  619. "_lineHeight": 40,
  620. "_overflow": 0,
  621. "_enableWrapText": true,
  622. "_font": null,
  623. "_isSystemFontUsed": true,
  624. "_isItalic": false,
  625. "_isBold": false,
  626. "_isUnderline": false,
  627. "_cacheMode": 0,
  628. "_id": ""
  629. },
  630. {
  631. "__type__": "cc.PrefabInfo",
  632. "root": {
  633. "__id__": 1
  634. },
  635. "asset": {
  636. "__id__": 0
  637. },
  638. "fileId": "65gZf+9DBH27W89MjxfqiI",
  639. "sync": false,
  640. "_synced": {
  641. "default": false,
  642. "serializable": false
  643. }
  644. },
  645. {
  646. "__type__": "cc.UITransformComponent",
  647. "_name": "",
  648. "_objFlags": 0,
  649. "node": {
  650. "__id__": 14
  651. },
  652. "_enabled": true,
  653. "_priority": 0,
  654. "_contentSize": {
  655. "__type__": "cc.Size",
  656. "width": 250,
  657. "height": 40
  658. },
  659. "_anchorPoint": {
  660. "__type__": "cc.Vec2",
  661. "x": 0.5,
  662. "y": 0.5
  663. },
  664. "_id": ""
  665. },
  666. {
  667. "__type__": "cc.SpriteComponent",
  668. "_name": "",
  669. "_objFlags": 0,
  670. "node": {
  671. "__id__": 14
  672. },
  673. "_enabled": true,
  674. "_srcBlendFactor": 2,
  675. "_dstBlendFactor": 4,
  676. "_color": {
  677. "__type__": "cc.Color",
  678. "r": 255,
  679. "g": 255,
  680. "b": 255,
  681. "a": 255
  682. },
  683. "_sharedMaterial": null,
  684. "_spriteFrame": {
  685. "__uuid__": "9e470bcf-3ebf-4d60-aff8-c51d332ccbe1@f9941"
  686. },
  687. "_type": 1,
  688. "_fillType": 0,
  689. "_sizeMode": 0,
  690. "_fillCenter": {
  691. "__type__": "cc.Vec2",
  692. "x": 0,
  693. "y": 0
  694. },
  695. "_fillStart": 0,
  696. "_fillRange": 0,
  697. "_isTrimmedMode": true,
  698. "_useGrayscale": false,
  699. "_atlas": null,
  700. "_id": ""
  701. },
  702. {
  703. "__type__": "cc.PrefabInfo",
  704. "root": {
  705. "__id__": 1
  706. },
  707. "asset": {
  708. "__id__": 0
  709. },
  710. "fileId": "61krqj7ptJupVVaoMn1BFX",
  711. "sync": false,
  712. "_synced": {
  713. "default": false,
  714. "serializable": false
  715. }
  716. },
  717. {
  718. "__type__": "cc.Node",
  719. "_name": "GunLevel",
  720. "_objFlags": 0,
  721. "_parent": {
  722. "__id__": 10
  723. },
  724. "_children": [
  725. {
  726. "__id__": 23
  727. }
  728. ],
  729. "_active": true,
  730. "_components": [
  731. {
  732. "__id__": 27
  733. },
  734. {
  735. "__id__": 28
  736. }
  737. ],
  738. "_prefab": {
  739. "__id__": 29
  740. },
  741. "_lpos": {
  742. "__type__": "cc.Vec3",
  743. "x": -105,
  744. "y": -162,
  745. "z": 0
  746. },
  747. "_lrot": {
  748. "__type__": "cc.Quat",
  749. "x": 0,
  750. "y": 0,
  751. "z": 0,
  752. "w": 1
  753. },
  754. "_lscale": {
  755. "__type__": "cc.Vec3",
  756. "x": 1,
  757. "y": 1,
  758. "z": 1
  759. },
  760. "_layer": 33554432,
  761. "_euler": {
  762. "__type__": "cc.Vec3",
  763. "x": 0,
  764. "y": 0,
  765. "z": 0
  766. },
  767. "_id": ""
  768. },
  769. {
  770. "__type__": "cc.Node",
  771. "_name": "Label",
  772. "_objFlags": 0,
  773. "_parent": {
  774. "__id__": 22
  775. },
  776. "_children": [],
  777. "_active": true,
  778. "_components": [
  779. {
  780. "__id__": 24
  781. },
  782. {
  783. "__id__": 25
  784. }
  785. ],
  786. "_prefab": {
  787. "__id__": 26
  788. },
  789. "_lpos": {
  790. "__type__": "cc.Vec3",
  791. "x": 0,
  792. "y": 0,
  793. "z": 0
  794. },
  795. "_lrot": {
  796. "__type__": "cc.Quat",
  797. "x": 0,
  798. "y": 0,
  799. "z": 0,
  800. "w": 1
  801. },
  802. "_lscale": {
  803. "__type__": "cc.Vec3",
  804. "x": 1,
  805. "y": 1,
  806. "z": 1
  807. },
  808. "_layer": 33554432,
  809. "_euler": {
  810. "__type__": "cc.Vec3",
  811. "x": 0,
  812. "y": 0,
  813. "z": 0
  814. },
  815. "_id": ""
  816. },
  817. {
  818. "__type__": "cc.UITransformComponent",
  819. "_name": "",
  820. "_objFlags": 0,
  821. "node": {
  822. "__id__": 23
  823. },
  824. "_enabled": true,
  825. "_priority": 0,
  826. "_contentSize": {
  827. "__type__": "cc.Size",
  828. "width": 18.91,
  829. "height": 50.4
  830. },
  831. "_anchorPoint": {
  832. "__type__": "cc.Vec2",
  833. "x": 0.5,
  834. "y": 0.5
  835. },
  836. "_id": ""
  837. },
  838. {
  839. "__type__": "cc.LabelComponent",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "node": {
  843. "__id__": 23
  844. },
  845. "_enabled": true,
  846. "_srcBlendFactor": 2,
  847. "_dstBlendFactor": 4,
  848. "_color": {
  849. "__type__": "cc.Color",
  850. "r": 24,
  851. "g": 39,
  852. "b": 98,
  853. "a": 255
  854. },
  855. "_sharedMaterial": null,
  856. "_useOriginalSize": true,
  857. "_string": "2",
  858. "_horizontalAlign": 1,
  859. "_verticalAlign": 1,
  860. "_actualFontSize": 34,
  861. "_fontSize": 34,
  862. "_fontFamily": "Arial",
  863. "_lineHeight": 40,
  864. "_overflow": 0,
  865. "_enableWrapText": true,
  866. "_font": null,
  867. "_isSystemFontUsed": true,
  868. "_isItalic": false,
  869. "_isBold": false,
  870. "_isUnderline": false,
  871. "_cacheMode": 0,
  872. "_id": ""
  873. },
  874. {
  875. "__type__": "cc.PrefabInfo",
  876. "root": {
  877. "__id__": 1
  878. },
  879. "asset": {
  880. "__id__": 0
  881. },
  882. "fileId": "dfLvgPg3tPx46dLVdLJV3L",
  883. "sync": false,
  884. "_synced": {
  885. "default": false,
  886. "serializable": false
  887. }
  888. },
  889. {
  890. "__type__": "cc.UITransformComponent",
  891. "_name": "GunLevel<UITransformComponent>",
  892. "_objFlags": 0,
  893. "node": {
  894. "__id__": 22
  895. },
  896. "_enabled": true,
  897. "_priority": 0,
  898. "_contentSize": {
  899. "__type__": "cc.Size",
  900. "width": 50,
  901. "height": 50
  902. },
  903. "_anchorPoint": {
  904. "__type__": "cc.Vec2",
  905. "x": 0.5,
  906. "y": 0.5
  907. },
  908. "_id": ""
  909. },
  910. {
  911. "__type__": "cc.SpriteComponent",
  912. "_name": "GunLevel<SpriteComponent>",
  913. "_objFlags": 0,
  914. "node": {
  915. "__id__": 22
  916. },
  917. "_enabled": true,
  918. "_srcBlendFactor": 2,
  919. "_dstBlendFactor": 4,
  920. "_color": {
  921. "__type__": "cc.Color",
  922. "r": 255,
  923. "g": 255,
  924. "b": 255,
  925. "a": 255
  926. },
  927. "_sharedMaterial": null,
  928. "_spriteFrame": {
  929. "__uuid__": "19b502d6-daf1-4a35-a9b0-e32919962a2a@f9941"
  930. },
  931. "_type": 0,
  932. "_fillType": 0,
  933. "_sizeMode": 0,
  934. "_fillCenter": {
  935. "__type__": "cc.Vec2",
  936. "x": 0,
  937. "y": 0
  938. },
  939. "_fillStart": 0,
  940. "_fillRange": 0,
  941. "_isTrimmedMode": true,
  942. "_useGrayscale": false,
  943. "_atlas": null,
  944. "_id": ""
  945. },
  946. {
  947. "__type__": "cc.PrefabInfo",
  948. "root": {
  949. "__id__": 1
  950. },
  951. "asset": {
  952. "__id__": 0
  953. },
  954. "fileId": "15YiI1WHBI4IsVUobykObK",
  955. "sync": false,
  956. "_synced": {
  957. "default": false,
  958. "serializable": false
  959. }
  960. },
  961. {
  962. "__type__": "cc.UITransformComponent",
  963. "_name": "Gun<UITransformComponent>",
  964. "_objFlags": 0,
  965. "node": {
  966. "__id__": 10
  967. },
  968. "_enabled": true,
  969. "_priority": 0,
  970. "_contentSize": {
  971. "__type__": "cc.Size",
  972. "width": 100,
  973. "height": 100
  974. },
  975. "_anchorPoint": {
  976. "__type__": "cc.Vec2",
  977. "x": 0.5,
  978. "y": 0.5
  979. },
  980. "_id": ""
  981. },
  982. {
  983. "__type__": "cc.PrefabInfo",
  984. "root": {
  985. "__id__": 1
  986. },
  987. "asset": {
  988. "__id__": 0
  989. },
  990. "fileId": "51TElSQT5OXo04tPPifXCa",
  991. "sync": false,
  992. "_synced": {
  993. "default": false,
  994. "serializable": false
  995. }
  996. },
  997. {
  998. "__type__": "cc.Node",
  999. "_name": "GunNew",
  1000. "_objFlags": 0,
  1001. "_parent": {
  1002. "__id__": 1
  1003. },
  1004. "_children": [
  1005. {
  1006. "__id__": 33
  1007. },
  1008. {
  1009. "__id__": 36
  1010. },
  1011. {
  1012. "__id__": 44
  1013. }
  1014. ],
  1015. "_active": true,
  1016. "_components": [
  1017. {
  1018. "__id__": 52
  1019. }
  1020. ],
  1021. "_prefab": {
  1022. "__id__": 53
  1023. },
  1024. "_lpos": {
  1025. "__type__": "cc.Vec3",
  1026. "x": 0,
  1027. "y": -186,
  1028. "z": 0
  1029. },
  1030. "_lrot": {
  1031. "__type__": "cc.Quat",
  1032. "x": 0,
  1033. "y": 0,
  1034. "z": 0,
  1035. "w": 1
  1036. },
  1037. "_lscale": {
  1038. "__type__": "cc.Vec3",
  1039. "x": 1,
  1040. "y": 1,
  1041. "z": 1
  1042. },
  1043. "_layer": 1073741824,
  1044. "_euler": {
  1045. "__type__": "cc.Vec3",
  1046. "x": 0,
  1047. "y": 0,
  1048. "z": 0
  1049. },
  1050. "_id": ""
  1051. },
  1052. {
  1053. "__type__": "cc.Node",
  1054. "_name": "GunLoad3D",
  1055. "_objFlags": 0,
  1056. "_parent": {
  1057. "__id__": 32
  1058. },
  1059. "_children": [],
  1060. "_active": true,
  1061. "_components": [
  1062. {
  1063. "__id__": 34
  1064. }
  1065. ],
  1066. "_prefab": {
  1067. "__id__": 35
  1068. },
  1069. "_lpos": {
  1070. "__type__": "cc.Vec3",
  1071. "x": 0,
  1072. "y": 0,
  1073. "z": 0
  1074. },
  1075. "_lrot": {
  1076. "__type__": "cc.Quat",
  1077. "x": 0,
  1078. "y": 0,
  1079. "z": 0,
  1080. "w": 1
  1081. },
  1082. "_lscale": {
  1083. "__type__": "cc.Vec3",
  1084. "x": 1,
  1085. "y": 1,
  1086. "z": 1
  1087. },
  1088. "_layer": 1073741824,
  1089. "_euler": {
  1090. "__type__": "cc.Vec3",
  1091. "x": 0,
  1092. "y": 0,
  1093. "z": 0
  1094. },
  1095. "_id": ""
  1096. },
  1097. {
  1098. "__type__": "cc.UITransformComponent",
  1099. "_name": "GunLoad3D<UITransformComponent>",
  1100. "_objFlags": 0,
  1101. "node": {
  1102. "__id__": 33
  1103. },
  1104. "_enabled": true,
  1105. "_priority": 0,
  1106. "_contentSize": {
  1107. "__type__": "cc.Size",
  1108. "width": 480,
  1109. "height": 250
  1110. },
  1111. "_anchorPoint": {
  1112. "__type__": "cc.Vec2",
  1113. "x": 0.5,
  1114. "y": 0.5
  1115. },
  1116. "_id": ""
  1117. },
  1118. {
  1119. "__type__": "cc.PrefabInfo",
  1120. "root": {
  1121. "__id__": 1
  1122. },
  1123. "asset": {
  1124. "__id__": 0
  1125. },
  1126. "fileId": "a5nj0P+6JKGZT3jTfTrzA3",
  1127. "sync": false,
  1128. "_synced": {
  1129. "default": false,
  1130. "serializable": false
  1131. }
  1132. },
  1133. {
  1134. "__type__": "cc.Node",
  1135. "_name": "GunName",
  1136. "_objFlags": 0,
  1137. "_parent": {
  1138. "__id__": 32
  1139. },
  1140. "_children": [
  1141. {
  1142. "__id__": 37
  1143. }
  1144. ],
  1145. "_active": true,
  1146. "_components": [
  1147. {
  1148. "__id__": 41
  1149. },
  1150. {
  1151. "__id__": 42
  1152. }
  1153. ],
  1154. "_prefab": {
  1155. "__id__": 43
  1156. },
  1157. "_lpos": {
  1158. "__type__": "cc.Vec3",
  1159. "x": 18,
  1160. "y": -162,
  1161. "z": 0
  1162. },
  1163. "_lrot": {
  1164. "__type__": "cc.Quat",
  1165. "x": 0,
  1166. "y": 0,
  1167. "z": 0,
  1168. "w": 1
  1169. },
  1170. "_lscale": {
  1171. "__type__": "cc.Vec3",
  1172. "x": 1,
  1173. "y": 1,
  1174. "z": 1
  1175. },
  1176. "_layer": 33554432,
  1177. "_euler": {
  1178. "__type__": "cc.Vec3",
  1179. "x": 0,
  1180. "y": 0,
  1181. "z": 0
  1182. },
  1183. "_id": ""
  1184. },
  1185. {
  1186. "__type__": "cc.Node",
  1187. "_name": "Label",
  1188. "_objFlags": 0,
  1189. "_parent": {
  1190. "__id__": 36
  1191. },
  1192. "_children": [],
  1193. "_active": true,
  1194. "_components": [
  1195. {
  1196. "__id__": 38
  1197. },
  1198. {
  1199. "__id__": 39
  1200. }
  1201. ],
  1202. "_prefab": {
  1203. "__id__": 40
  1204. },
  1205. "_lpos": {
  1206. "__type__": "cc.Vec3",
  1207. "x": 9,
  1208. "y": -4,
  1209. "z": 0
  1210. },
  1211. "_lrot": {
  1212. "__type__": "cc.Quat",
  1213. "x": 0,
  1214. "y": 0,
  1215. "z": 0,
  1216. "w": 1
  1217. },
  1218. "_lscale": {
  1219. "__type__": "cc.Vec3",
  1220. "x": 1,
  1221. "y": 1,
  1222. "z": 1
  1223. },
  1224. "_layer": 33554432,
  1225. "_euler": {
  1226. "__type__": "cc.Vec3",
  1227. "x": 0,
  1228. "y": 0,
  1229. "z": 0
  1230. },
  1231. "_id": ""
  1232. },
  1233. {
  1234. "__type__": "cc.UITransformComponent",
  1235. "_name": "",
  1236. "_objFlags": 0,
  1237. "node": {
  1238. "__id__": 37
  1239. },
  1240. "_enabled": true,
  1241. "_priority": 0,
  1242. "_contentSize": {
  1243. "__type__": "cc.Size",
  1244. "width": 88.07,
  1245. "height": 50.4
  1246. },
  1247. "_anchorPoint": {
  1248. "__type__": "cc.Vec2",
  1249. "x": 0.5,
  1250. "y": 0.5
  1251. },
  1252. "_id": ""
  1253. },
  1254. {
  1255. "__type__": "cc.LabelComponent",
  1256. "_name": "",
  1257. "_objFlags": 0,
  1258. "node": {
  1259. "__id__": 37
  1260. },
  1261. "_enabled": true,
  1262. "_srcBlendFactor": 2,
  1263. "_dstBlendFactor": 4,
  1264. "_color": {
  1265. "__type__": "cc.Color",
  1266. "r": 255,
  1267. "g": 255,
  1268. "b": 255,
  1269. "a": 255
  1270. },
  1271. "_sharedMaterial": null,
  1272. "_useOriginalSize": true,
  1273. "_string": "AK47",
  1274. "_horizontalAlign": 1,
  1275. "_verticalAlign": 1,
  1276. "_actualFontSize": 36,
  1277. "_fontSize": 36,
  1278. "_fontFamily": "Arial",
  1279. "_lineHeight": 40,
  1280. "_overflow": 0,
  1281. "_enableWrapText": true,
  1282. "_font": null,
  1283. "_isSystemFontUsed": true,
  1284. "_isItalic": false,
  1285. "_isBold": false,
  1286. "_isUnderline": false,
  1287. "_cacheMode": 0,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.PrefabInfo",
  1292. "root": {
  1293. "__id__": 1
  1294. },
  1295. "asset": {
  1296. "__id__": 0
  1297. },
  1298. "fileId": "3baWH276tJ1bAUfKX7cRqH",
  1299. "sync": false,
  1300. "_synced": {
  1301. "default": false,
  1302. "serializable": false
  1303. }
  1304. },
  1305. {
  1306. "__type__": "cc.UITransformComponent",
  1307. "_name": "",
  1308. "_objFlags": 0,
  1309. "node": {
  1310. "__id__": 36
  1311. },
  1312. "_enabled": true,
  1313. "_priority": 0,
  1314. "_contentSize": {
  1315. "__type__": "cc.Size",
  1316. "width": 250,
  1317. "height": 40
  1318. },
  1319. "_anchorPoint": {
  1320. "__type__": "cc.Vec2",
  1321. "x": 0.5,
  1322. "y": 0.5
  1323. },
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.SpriteComponent",
  1328. "_name": "",
  1329. "_objFlags": 0,
  1330. "node": {
  1331. "__id__": 36
  1332. },
  1333. "_enabled": true,
  1334. "_srcBlendFactor": 2,
  1335. "_dstBlendFactor": 4,
  1336. "_color": {
  1337. "__type__": "cc.Color",
  1338. "r": 255,
  1339. "g": 255,
  1340. "b": 255,
  1341. "a": 255
  1342. },
  1343. "_sharedMaterial": null,
  1344. "_spriteFrame": {
  1345. "__uuid__": "9e470bcf-3ebf-4d60-aff8-c51d332ccbe1@f9941"
  1346. },
  1347. "_type": 1,
  1348. "_fillType": 0,
  1349. "_sizeMode": 0,
  1350. "_fillCenter": {
  1351. "__type__": "cc.Vec2",
  1352. "x": 0,
  1353. "y": 0
  1354. },
  1355. "_fillStart": 0,
  1356. "_fillRange": 0,
  1357. "_isTrimmedMode": true,
  1358. "_useGrayscale": false,
  1359. "_atlas": null,
  1360. "_id": ""
  1361. },
  1362. {
  1363. "__type__": "cc.PrefabInfo",
  1364. "root": {
  1365. "__id__": 1
  1366. },
  1367. "asset": {
  1368. "__id__": 0
  1369. },
  1370. "fileId": "ebvSYZ1ytBPL2pT+ADhOmV",
  1371. "sync": false,
  1372. "_synced": {
  1373. "default": false,
  1374. "serializable": false
  1375. }
  1376. },
  1377. {
  1378. "__type__": "cc.Node",
  1379. "_name": "GunLevel",
  1380. "_objFlags": 0,
  1381. "_parent": {
  1382. "__id__": 32
  1383. },
  1384. "_children": [
  1385. {
  1386. "__id__": 45
  1387. }
  1388. ],
  1389. "_active": true,
  1390. "_components": [
  1391. {
  1392. "__id__": 49
  1393. },
  1394. {
  1395. "__id__": 50
  1396. }
  1397. ],
  1398. "_prefab": {
  1399. "__id__": 51
  1400. },
  1401. "_lpos": {
  1402. "__type__": "cc.Vec3",
  1403. "x": -105,
  1404. "y": -162,
  1405. "z": 0
  1406. },
  1407. "_lrot": {
  1408. "__type__": "cc.Quat",
  1409. "x": 0,
  1410. "y": 0,
  1411. "z": 0,
  1412. "w": 1
  1413. },
  1414. "_lscale": {
  1415. "__type__": "cc.Vec3",
  1416. "x": 1,
  1417. "y": 1,
  1418. "z": 1
  1419. },
  1420. "_layer": 33554432,
  1421. "_euler": {
  1422. "__type__": "cc.Vec3",
  1423. "x": 0,
  1424. "y": 0,
  1425. "z": 0
  1426. },
  1427. "_id": ""
  1428. },
  1429. {
  1430. "__type__": "cc.Node",
  1431. "_name": "Label",
  1432. "_objFlags": 0,
  1433. "_parent": {
  1434. "__id__": 44
  1435. },
  1436. "_children": [],
  1437. "_active": true,
  1438. "_components": [
  1439. {
  1440. "__id__": 46
  1441. },
  1442. {
  1443. "__id__": 47
  1444. }
  1445. ],
  1446. "_prefab": {
  1447. "__id__": 48
  1448. },
  1449. "_lpos": {
  1450. "__type__": "cc.Vec3",
  1451. "x": 0,
  1452. "y": 0,
  1453. "z": 0
  1454. },
  1455. "_lrot": {
  1456. "__type__": "cc.Quat",
  1457. "x": 0,
  1458. "y": 0,
  1459. "z": 0,
  1460. "w": 1
  1461. },
  1462. "_lscale": {
  1463. "__type__": "cc.Vec3",
  1464. "x": 1,
  1465. "y": 1,
  1466. "z": 1
  1467. },
  1468. "_layer": 33554432,
  1469. "_euler": {
  1470. "__type__": "cc.Vec3",
  1471. "x": 0,
  1472. "y": 0,
  1473. "z": 0
  1474. },
  1475. "_id": ""
  1476. },
  1477. {
  1478. "__type__": "cc.UITransformComponent",
  1479. "_name": "",
  1480. "_objFlags": 0,
  1481. "node": {
  1482. "__id__": 45
  1483. },
  1484. "_enabled": true,
  1485. "_priority": 0,
  1486. "_contentSize": {
  1487. "__type__": "cc.Size",
  1488. "width": 18.91,
  1489. "height": 50.4
  1490. },
  1491. "_anchorPoint": {
  1492. "__type__": "cc.Vec2",
  1493. "x": 0.5,
  1494. "y": 0.5
  1495. },
  1496. "_id": ""
  1497. },
  1498. {
  1499. "__type__": "cc.LabelComponent",
  1500. "_name": "",
  1501. "_objFlags": 0,
  1502. "node": {
  1503. "__id__": 45
  1504. },
  1505. "_enabled": true,
  1506. "_srcBlendFactor": 2,
  1507. "_dstBlendFactor": 4,
  1508. "_color": {
  1509. "__type__": "cc.Color",
  1510. "r": 24,
  1511. "g": 39,
  1512. "b": 98,
  1513. "a": 255
  1514. },
  1515. "_sharedMaterial": null,
  1516. "_useOriginalSize": true,
  1517. "_string": "2",
  1518. "_horizontalAlign": 1,
  1519. "_verticalAlign": 1,
  1520. "_actualFontSize": 34,
  1521. "_fontSize": 34,
  1522. "_fontFamily": "Arial",
  1523. "_lineHeight": 40,
  1524. "_overflow": 0,
  1525. "_enableWrapText": true,
  1526. "_font": null,
  1527. "_isSystemFontUsed": true,
  1528. "_isItalic": false,
  1529. "_isBold": false,
  1530. "_isUnderline": false,
  1531. "_cacheMode": 0,
  1532. "_id": ""
  1533. },
  1534. {
  1535. "__type__": "cc.PrefabInfo",
  1536. "root": {
  1537. "__id__": 1
  1538. },
  1539. "asset": {
  1540. "__id__": 0
  1541. },
  1542. "fileId": "a1HKoX/RNMVJGeYe83YncI",
  1543. "sync": false,
  1544. "_synced": {
  1545. "default": false,
  1546. "serializable": false
  1547. }
  1548. },
  1549. {
  1550. "__type__": "cc.UITransformComponent",
  1551. "_name": "GunLevel<UITransformComponent>",
  1552. "_objFlags": 0,
  1553. "node": {
  1554. "__id__": 44
  1555. },
  1556. "_enabled": true,
  1557. "_priority": 0,
  1558. "_contentSize": {
  1559. "__type__": "cc.Size",
  1560. "width": 50,
  1561. "height": 50
  1562. },
  1563. "_anchorPoint": {
  1564. "__type__": "cc.Vec2",
  1565. "x": 0.5,
  1566. "y": 0.5
  1567. },
  1568. "_id": ""
  1569. },
  1570. {
  1571. "__type__": "cc.SpriteComponent",
  1572. "_name": "GunLevel<SpriteComponent>",
  1573. "_objFlags": 0,
  1574. "node": {
  1575. "__id__": 44
  1576. },
  1577. "_enabled": true,
  1578. "_srcBlendFactor": 2,
  1579. "_dstBlendFactor": 4,
  1580. "_color": {
  1581. "__type__": "cc.Color",
  1582. "r": 255,
  1583. "g": 255,
  1584. "b": 255,
  1585. "a": 255
  1586. },
  1587. "_sharedMaterial": null,
  1588. "_spriteFrame": {
  1589. "__uuid__": "19b502d6-daf1-4a35-a9b0-e32919962a2a@f9941"
  1590. },
  1591. "_type": 0,
  1592. "_fillType": 0,
  1593. "_sizeMode": 0,
  1594. "_fillCenter": {
  1595. "__type__": "cc.Vec2",
  1596. "x": 0,
  1597. "y": 0
  1598. },
  1599. "_fillStart": 0,
  1600. "_fillRange": 0,
  1601. "_isTrimmedMode": true,
  1602. "_useGrayscale": false,
  1603. "_atlas": null,
  1604. "_id": ""
  1605. },
  1606. {
  1607. "__type__": "cc.PrefabInfo",
  1608. "root": {
  1609. "__id__": 1
  1610. },
  1611. "asset": {
  1612. "__id__": 0
  1613. },
  1614. "fileId": "ffd5i/5oFAwJPOL/a1vvOY",
  1615. "sync": false,
  1616. "_synced": {
  1617. "default": false,
  1618. "serializable": false
  1619. }
  1620. },
  1621. {
  1622. "__type__": "cc.UITransformComponent",
  1623. "_name": "Gun<UITransformComponent>",
  1624. "_objFlags": 0,
  1625. "node": {
  1626. "__id__": 32
  1627. },
  1628. "_enabled": true,
  1629. "_priority": 0,
  1630. "_contentSize": {
  1631. "__type__": "cc.Size",
  1632. "width": 100,
  1633. "height": 100
  1634. },
  1635. "_anchorPoint": {
  1636. "__type__": "cc.Vec2",
  1637. "x": 0.5,
  1638. "y": 0.5
  1639. },
  1640. "_id": ""
  1641. },
  1642. {
  1643. "__type__": "cc.PrefabInfo",
  1644. "root": {
  1645. "__id__": 1
  1646. },
  1647. "asset": {
  1648. "__id__": 0
  1649. },
  1650. "fileId": "3cHzgZaaBMq4sR1jnghq3y",
  1651. "sync": false,
  1652. "_synced": {
  1653. "default": false,
  1654. "serializable": false
  1655. }
  1656. },
  1657. {
  1658. "__type__": "cc.Node",
  1659. "_name": "ImgArrow",
  1660. "_objFlags": 0,
  1661. "_parent": {
  1662. "__id__": 1
  1663. },
  1664. "_children": [],
  1665. "_active": true,
  1666. "_components": [
  1667. {
  1668. "__id__": 55
  1669. },
  1670. {
  1671. "__id__": 56
  1672. }
  1673. ],
  1674. "_prefab": {
  1675. "__id__": 57
  1676. },
  1677. "_lpos": {
  1678. "__type__": "cc.Vec3",
  1679. "x": 0,
  1680. "y": 0,
  1681. "z": 0
  1682. },
  1683. "_lrot": {
  1684. "__type__": "cc.Quat",
  1685. "x": 0,
  1686. "y": 0,
  1687. "z": 0,
  1688. "w": 1
  1689. },
  1690. "_lscale": {
  1691. "__type__": "cc.Vec3",
  1692. "x": 1,
  1693. "y": 1,
  1694. "z": 1
  1695. },
  1696. "_layer": 33554432,
  1697. "_euler": {
  1698. "__type__": "cc.Vec3",
  1699. "x": 0,
  1700. "y": 0,
  1701. "z": 0
  1702. },
  1703. "_id": ""
  1704. },
  1705. {
  1706. "__type__": "cc.UITransformComponent",
  1707. "_name": "",
  1708. "_objFlags": 0,
  1709. "node": {
  1710. "__id__": 54
  1711. },
  1712. "_enabled": true,
  1713. "_priority": 0,
  1714. "_contentSize": {
  1715. "__type__": "cc.Size",
  1716. "width": 110,
  1717. "height": 122
  1718. },
  1719. "_anchorPoint": {
  1720. "__type__": "cc.Vec2",
  1721. "x": 0.5,
  1722. "y": 0.5
  1723. },
  1724. "_id": ""
  1725. },
  1726. {
  1727. "__type__": "cc.SpriteComponent",
  1728. "_name": "",
  1729. "_objFlags": 0,
  1730. "node": {
  1731. "__id__": 54
  1732. },
  1733. "_enabled": true,
  1734. "_srcBlendFactor": 2,
  1735. "_dstBlendFactor": 4,
  1736. "_color": {
  1737. "__type__": "cc.Color",
  1738. "r": 255,
  1739. "g": 255,
  1740. "b": 255,
  1741. "a": 255
  1742. },
  1743. "_sharedMaterial": null,
  1744. "_spriteFrame": {
  1745. "__uuid__": "d4df0bcd-7858-453f-8fa7-a0f89799ef94@f9941"
  1746. },
  1747. "_type": 0,
  1748. "_fillType": 0,
  1749. "_sizeMode": 1,
  1750. "_fillCenter": {
  1751. "__type__": "cc.Vec2",
  1752. "x": 0,
  1753. "y": 0
  1754. },
  1755. "_fillStart": 0,
  1756. "_fillRange": 0,
  1757. "_isTrimmedMode": true,
  1758. "_useGrayscale": false,
  1759. "_atlas": null,
  1760. "_id": ""
  1761. },
  1762. {
  1763. "__type__": "cc.PrefabInfo",
  1764. "root": {
  1765. "__id__": 1
  1766. },
  1767. "asset": {
  1768. "__id__": 0
  1769. },
  1770. "fileId": "b1bRBPQ09An71v+IKftSfp",
  1771. "sync": false,
  1772. "_synced": {
  1773. "default": false,
  1774. "serializable": false
  1775. }
  1776. },
  1777. {
  1778. "__type__": "cc.Node",
  1779. "_name": "TxtBananer",
  1780. "_objFlags": 0,
  1781. "_parent": {
  1782. "__id__": 1
  1783. },
  1784. "_children": [],
  1785. "_active": true,
  1786. "_components": [
  1787. {
  1788. "__id__": 59
  1789. },
  1790. {
  1791. "__id__": 60
  1792. }
  1793. ],
  1794. "_prefab": {
  1795. "__id__": 61
  1796. },
  1797. "_lpos": {
  1798. "__type__": "cc.Vec3",
  1799. "x": 0,
  1800. "y": 448,
  1801. "z": 0
  1802. },
  1803. "_lrot": {
  1804. "__type__": "cc.Quat",
  1805. "x": 0,
  1806. "y": 0,
  1807. "z": 0,
  1808. "w": 1
  1809. },
  1810. "_lscale": {
  1811. "__type__": "cc.Vec3",
  1812. "x": 1,
  1813. "y": 1,
  1814. "z": 1
  1815. },
  1816. "_layer": 33554432,
  1817. "_euler": {
  1818. "__type__": "cc.Vec3",
  1819. "x": 0,
  1820. "y": 0,
  1821. "z": 0
  1822. },
  1823. "_id": ""
  1824. },
  1825. {
  1826. "__type__": "cc.UITransformComponent",
  1827. "_name": "",
  1828. "_objFlags": 0,
  1829. "node": {
  1830. "__id__": 58
  1831. },
  1832. "_enabled": true,
  1833. "_priority": 0,
  1834. "_contentSize": {
  1835. "__type__": "cc.Size",
  1836. "width": 240,
  1837. "height": 126
  1838. },
  1839. "_anchorPoint": {
  1840. "__type__": "cc.Vec2",
  1841. "x": 0.5,
  1842. "y": 0.5
  1843. },
  1844. "_id": ""
  1845. },
  1846. {
  1847. "__type__": "cc.LabelComponent",
  1848. "_name": "",
  1849. "_objFlags": 0,
  1850. "node": {
  1851. "__id__": 58
  1852. },
  1853. "_enabled": true,
  1854. "_srcBlendFactor": 2,
  1855. "_dstBlendFactor": 4,
  1856. "_color": {
  1857. "__type__": "cc.Color",
  1858. "r": 255,
  1859. "g": 237,
  1860. "b": 96,
  1861. "a": 255
  1862. },
  1863. "_sharedMaterial": null,
  1864. "_useOriginalSize": true,
  1865. "_string": "免费升级",
  1866. "_horizontalAlign": 1,
  1867. "_verticalAlign": 1,
  1868. "_actualFontSize": 60,
  1869. "_fontSize": 60,
  1870. "_fontFamily": "Arial",
  1871. "_lineHeight": 100,
  1872. "_overflow": 0,
  1873. "_enableWrapText": true,
  1874. "_font": null,
  1875. "_isSystemFontUsed": true,
  1876. "_isItalic": false,
  1877. "_isBold": false,
  1878. "_isUnderline": false,
  1879. "_cacheMode": 0,
  1880. "_id": ""
  1881. },
  1882. {
  1883. "__type__": "cc.PrefabInfo",
  1884. "root": {
  1885. "__id__": 1
  1886. },
  1887. "asset": {
  1888. "__id__": 0
  1889. },
  1890. "fileId": "8fpr6UR1RP7r38H7jKT/Nd",
  1891. "sync": false,
  1892. "_synced": {
  1893. "default": false,
  1894. "serializable": false
  1895. }
  1896. },
  1897. {
  1898. "__type__": "cc.Node",
  1899. "_name": "ButtonReceive",
  1900. "_objFlags": 0,
  1901. "_parent": {
  1902. "__id__": 1
  1903. },
  1904. "_children": [
  1905. {
  1906. "__id__": 63
  1907. },
  1908. {
  1909. "__id__": 67
  1910. }
  1911. ],
  1912. "_active": true,
  1913. "_components": [
  1914. {
  1915. "__id__": 71
  1916. },
  1917. {
  1918. "__id__": 72
  1919. },
  1920. {
  1921. "__id__": 73
  1922. },
  1923. {
  1924. "__id__": 75
  1925. }
  1926. ],
  1927. "_prefab": {
  1928. "__id__": 76
  1929. },
  1930. "_lpos": {
  1931. "__type__": "cc.Vec3",
  1932. "x": 124,
  1933. "y": -565,
  1934. "z": 0
  1935. },
  1936. "_lrot": {
  1937. "__type__": "cc.Quat",
  1938. "x": 0,
  1939. "y": 0,
  1940. "z": 0,
  1941. "w": 1
  1942. },
  1943. "_lscale": {
  1944. "__type__": "cc.Vec3",
  1945. "x": 1,
  1946. "y": 1,
  1947. "z": 1
  1948. },
  1949. "_layer": 33554432,
  1950. "_euler": {
  1951. "__type__": "cc.Vec3",
  1952. "x": 0,
  1953. "y": 0,
  1954. "z": 0
  1955. },
  1956. "_id": ""
  1957. },
  1958. {
  1959. "__type__": "cc.Node",
  1960. "_name": "Label",
  1961. "_objFlags": 0,
  1962. "_parent": {
  1963. "__id__": 62
  1964. },
  1965. "_children": [],
  1966. "_active": true,
  1967. "_components": [
  1968. {
  1969. "__id__": 64
  1970. },
  1971. {
  1972. "__id__": 65
  1973. }
  1974. ],
  1975. "_prefab": {
  1976. "__id__": 66
  1977. },
  1978. "_lpos": {
  1979. "__type__": "cc.Vec3",
  1980. "x": 63,
  1981. "y": 2,
  1982. "z": 0
  1983. },
  1984. "_lrot": {
  1985. "__type__": "cc.Quat",
  1986. "x": 0,
  1987. "y": 0,
  1988. "z": 0,
  1989. "w": 1
  1990. },
  1991. "_lscale": {
  1992. "__type__": "cc.Vec3",
  1993. "x": 1,
  1994. "y": 1,
  1995. "z": 1
  1996. },
  1997. "_layer": 33554432,
  1998. "_euler": {
  1999. "__type__": "cc.Vec3",
  2000. "x": 0,
  2001. "y": 0,
  2002. "z": 0
  2003. },
  2004. "_id": ""
  2005. },
  2006. {
  2007. "__type__": "cc.UITransformComponent",
  2008. "_name": "Label<UITransformComponent>",
  2009. "_objFlags": 0,
  2010. "node": {
  2011. "__id__": 63
  2012. },
  2013. "_enabled": true,
  2014. "_priority": 0,
  2015. "_contentSize": {
  2016. "__type__": "cc.Size",
  2017. "width": 234,
  2018. "height": 70
  2019. },
  2020. "_anchorPoint": {
  2021. "__type__": "cc.Vec2",
  2022. "x": 0.5,
  2023. "y": 0.5
  2024. },
  2025. "_id": ""
  2026. },
  2027. {
  2028. "__type__": "cc.LabelComponent",
  2029. "_name": "Label<LabelComponent>",
  2030. "_objFlags": 0,
  2031. "node": {
  2032. "__id__": 63
  2033. },
  2034. "_enabled": true,
  2035. "_srcBlendFactor": 2,
  2036. "_dstBlendFactor": 4,
  2037. "_color": {
  2038. "__type__": "cc.Color",
  2039. "r": 255,
  2040. "g": 255,
  2041. "b": 255,
  2042. "a": 255
  2043. },
  2044. "_sharedMaterial": null,
  2045. "_useOriginalSize": true,
  2046. "_string": "免费升级",
  2047. "_horizontalAlign": 1,
  2048. "_verticalAlign": 1,
  2049. "_actualFontSize": 56,
  2050. "_fontSize": 56,
  2051. "_fontFamily": "Arial",
  2052. "_lineHeight": 40,
  2053. "_overflow": 1,
  2054. "_enableWrapText": false,
  2055. "_font": null,
  2056. "_isSystemFontUsed": true,
  2057. "_isItalic": false,
  2058. "_isBold": false,
  2059. "_isUnderline": false,
  2060. "_cacheMode": 0,
  2061. "_id": ""
  2062. },
  2063. {
  2064. "__type__": "cc.PrefabInfo",
  2065. "root": {
  2066. "__id__": 1
  2067. },
  2068. "asset": {
  2069. "__id__": 0
  2070. },
  2071. "fileId": "38YrLOFflBPIb0nsqU+0IU",
  2072. "sync": false,
  2073. "_synced": {
  2074. "default": false,
  2075. "serializable": false
  2076. }
  2077. },
  2078. {
  2079. "__type__": "cc.Node",
  2080. "_name": "Sprite",
  2081. "_objFlags": 0,
  2082. "_parent": {
  2083. "__id__": 62
  2084. },
  2085. "_children": [],
  2086. "_active": true,
  2087. "_components": [
  2088. {
  2089. "__id__": 68
  2090. },
  2091. {
  2092. "__id__": 69
  2093. }
  2094. ],
  2095. "_prefab": {
  2096. "__id__": 70
  2097. },
  2098. "_lpos": {
  2099. "__type__": "cc.Vec3",
  2100. "x": -131,
  2101. "y": 5,
  2102. "z": 0
  2103. },
  2104. "_lrot": {
  2105. "__type__": "cc.Quat",
  2106. "x": 0,
  2107. "y": 0,
  2108. "z": 0,
  2109. "w": 1
  2110. },
  2111. "_lscale": {
  2112. "__type__": "cc.Vec3",
  2113. "x": 1,
  2114. "y": 1,
  2115. "z": 1
  2116. },
  2117. "_layer": 33554432,
  2118. "_euler": {
  2119. "__type__": "cc.Vec3",
  2120. "x": 0,
  2121. "y": 0,
  2122. "z": 0
  2123. },
  2124. "_id": ""
  2125. },
  2126. {
  2127. "__type__": "cc.UITransformComponent",
  2128. "_name": "",
  2129. "_objFlags": 0,
  2130. "node": {
  2131. "__id__": 67
  2132. },
  2133. "_enabled": true,
  2134. "_priority": 0,
  2135. "_contentSize": {
  2136. "__type__": "cc.Size",
  2137. "width": 68,
  2138. "height": 71
  2139. },
  2140. "_anchorPoint": {
  2141. "__type__": "cc.Vec2",
  2142. "x": 0.5,
  2143. "y": 0.5
  2144. },
  2145. "_id": ""
  2146. },
  2147. {
  2148. "__type__": "cc.SpriteComponent",
  2149. "_name": "",
  2150. "_objFlags": 0,
  2151. "node": {
  2152. "__id__": 67
  2153. },
  2154. "_enabled": true,
  2155. "_srcBlendFactor": 2,
  2156. "_dstBlendFactor": 4,
  2157. "_color": {
  2158. "__type__": "cc.Color",
  2159. "r": 255,
  2160. "g": 255,
  2161. "b": 255,
  2162. "a": 255
  2163. },
  2164. "_sharedMaterial": null,
  2165. "_spriteFrame": {
  2166. "__uuid__": "ae0bfbb3-e5a7-46e2-a2b0-aa208f99539b@f9941"
  2167. },
  2168. "_type": 0,
  2169. "_fillType": 0,
  2170. "_sizeMode": 1,
  2171. "_fillCenter": {
  2172. "__type__": "cc.Vec2",
  2173. "x": 0,
  2174. "y": 0
  2175. },
  2176. "_fillStart": 0,
  2177. "_fillRange": 0,
  2178. "_isTrimmedMode": true,
  2179. "_useGrayscale": false,
  2180. "_atlas": null,
  2181. "_id": ""
  2182. },
  2183. {
  2184. "__type__": "cc.PrefabInfo",
  2185. "root": {
  2186. "__id__": 1
  2187. },
  2188. "asset": {
  2189. "__id__": 0
  2190. },
  2191. "fileId": "2a1CdSZABDmK9fObcynOBO",
  2192. "sync": false,
  2193. "_synced": {
  2194. "default": false,
  2195. "serializable": false
  2196. }
  2197. },
  2198. {
  2199. "__type__": "cc.UITransformComponent",
  2200. "_name": "Button<UITransformComponent>",
  2201. "_objFlags": 0,
  2202. "node": {
  2203. "__id__": 62
  2204. },
  2205. "_enabled": true,
  2206. "_priority": 0,
  2207. "_contentSize": {
  2208. "__type__": "cc.Size",
  2209. "width": 450,
  2210. "height": 168
  2211. },
  2212. "_anchorPoint": {
  2213. "__type__": "cc.Vec2",
  2214. "x": 0.5,
  2215. "y": 0.5
  2216. },
  2217. "_id": ""
  2218. },
  2219. {
  2220. "__type__": "cc.SpriteComponent",
  2221. "_name": "Button<SpriteComponent>",
  2222. "_objFlags": 0,
  2223. "node": {
  2224. "__id__": 62
  2225. },
  2226. "_enabled": true,
  2227. "_srcBlendFactor": 2,
  2228. "_dstBlendFactor": 4,
  2229. "_color": {
  2230. "__type__": "cc.Color",
  2231. "r": 255,
  2232. "g": 255,
  2233. "b": 255,
  2234. "a": 255
  2235. },
  2236. "_sharedMaterial": null,
  2237. "_spriteFrame": {
  2238. "__uuid__": "9b2237c5-95fb-4bbd-abc1-65f4adaa4651@f9941"
  2239. },
  2240. "_type": 1,
  2241. "_fillType": 0,
  2242. "_sizeMode": 0,
  2243. "_fillCenter": {
  2244. "__type__": "cc.Vec2",
  2245. "x": 0,
  2246. "y": 0
  2247. },
  2248. "_fillStart": 0,
  2249. "_fillRange": 0,
  2250. "_isTrimmedMode": true,
  2251. "_useGrayscale": false,
  2252. "_atlas": null,
  2253. "_id": ""
  2254. },
  2255. {
  2256. "__type__": "cc.ButtonComponent",
  2257. "_name": "Button<ButtonComponent>",
  2258. "_objFlags": 0,
  2259. "node": {
  2260. "__id__": 62
  2261. },
  2262. "_enabled": true,
  2263. "clickEvents": [
  2264. {
  2265. "__id__": 74
  2266. }
  2267. ],
  2268. "_interactable": true,
  2269. "_transition": 2,
  2270. "_normalColor": {
  2271. "__type__": "cc.Color",
  2272. "r": 214,
  2273. "g": 214,
  2274. "b": 214,
  2275. "a": 255
  2276. },
  2277. "_hoverColor": {
  2278. "__type__": "cc.Color",
  2279. "r": 211,
  2280. "g": 211,
  2281. "b": 211,
  2282. "a": 255
  2283. },
  2284. "_pressColor": {
  2285. "__type__": "cc.Color",
  2286. "r": 255,
  2287. "g": 255,
  2288. "b": 255,
  2289. "a": 255
  2290. },
  2291. "_disabledColor": {
  2292. "__type__": "cc.Color",
  2293. "r": 124,
  2294. "g": 124,
  2295. "b": 124,
  2296. "a": 255
  2297. },
  2298. "_normalSprite": {
  2299. "__uuid__": "9b2237c5-95fb-4bbd-abc1-65f4adaa4651@f9941"
  2300. },
  2301. "_hoverSprite": {
  2302. "__uuid__": "9b2237c5-95fb-4bbd-abc1-65f4adaa4651@f9941"
  2303. },
  2304. "_pressedSprite": {
  2305. "__uuid__": "9b2237c5-95fb-4bbd-abc1-65f4adaa4651@f9941"
  2306. },
  2307. "_disabledSprite": {
  2308. "__uuid__": "9b2237c5-95fb-4bbd-abc1-65f4adaa4651@f9941"
  2309. },
  2310. "_duration": 0.1,
  2311. "_zoomScale": 1.2,
  2312. "_target": {
  2313. "__id__": 62
  2314. },
  2315. "_id": ""
  2316. },
  2317. {
  2318. "__type__": "cc.ClickEvent",
  2319. "target": {
  2320. "__id__": 1
  2321. },
  2322. "component": "",
  2323. "_componentId": "15ec3t8BJRJTpilb3tkiwVQ",
  2324. "handler": "PlayNextLevel",
  2325. "customEventData": ""
  2326. },
  2327. {
  2328. "__type__": "cc.WidgetComponent",
  2329. "_name": "Button<WidgetComponent>",
  2330. "_objFlags": 0,
  2331. "node": {
  2332. "__id__": 62
  2333. },
  2334. "_enabled": true,
  2335. "_alignFlags": 20,
  2336. "_target": null,
  2337. "_left": 0,
  2338. "_right": 0,
  2339. "_top": 0,
  2340. "_bottom": 18,
  2341. "_horizontalCenter": 124,
  2342. "_verticalCenter": 0,
  2343. "_isAbsLeft": true,
  2344. "_isAbsRight": true,
  2345. "_isAbsTop": true,
  2346. "_isAbsBottom": true,
  2347. "_isAbsHorizontalCenter": true,
  2348. "_isAbsVerticalCenter": true,
  2349. "_originalWidth": 0,
  2350. "_originalHeight": 0,
  2351. "_alignMode": 2,
  2352. "_lockFlags": 0,
  2353. "_id": ""
  2354. },
  2355. {
  2356. "__type__": "cc.PrefabInfo",
  2357. "root": {
  2358. "__id__": 1
  2359. },
  2360. "asset": {
  2361. "__id__": 0
  2362. },
  2363. "fileId": "8cOyjQXndICpgusJuVJbpt",
  2364. "sync": false,
  2365. "_synced": {
  2366. "default": false,
  2367. "serializable": false
  2368. }
  2369. },
  2370. {
  2371. "__type__": "cc.Node",
  2372. "_name": "ButtonGiveUp",
  2373. "_objFlags": 0,
  2374. "_parent": {
  2375. "__id__": 1
  2376. },
  2377. "_children": [
  2378. {
  2379. "__id__": 78
  2380. }
  2381. ],
  2382. "_active": true,
  2383. "_components": [
  2384. {
  2385. "__id__": 82
  2386. },
  2387. {
  2388. "__id__": 83
  2389. },
  2390. {
  2391. "__id__": 84
  2392. },
  2393. {
  2394. "__id__": 86
  2395. }
  2396. ],
  2397. "_prefab": {
  2398. "__id__": 87
  2399. },
  2400. "_lpos": {
  2401. "__type__": "cc.Vec3",
  2402. "x": -234,
  2403. "y": -565,
  2404. "z": 0
  2405. },
  2406. "_lrot": {
  2407. "__type__": "cc.Quat",
  2408. "x": 0,
  2409. "y": 0,
  2410. "z": 0,
  2411. "w": 1
  2412. },
  2413. "_lscale": {
  2414. "__type__": "cc.Vec3",
  2415. "x": 1,
  2416. "y": 1,
  2417. "z": 1
  2418. },
  2419. "_layer": 33554432,
  2420. "_euler": {
  2421. "__type__": "cc.Vec3",
  2422. "x": 0,
  2423. "y": 0,
  2424. "z": 0
  2425. },
  2426. "_id": ""
  2427. },
  2428. {
  2429. "__type__": "cc.Node",
  2430. "_name": "Label",
  2431. "_objFlags": 0,
  2432. "_parent": {
  2433. "__id__": 77
  2434. },
  2435. "_children": [],
  2436. "_active": true,
  2437. "_components": [
  2438. {
  2439. "__id__": 79
  2440. },
  2441. {
  2442. "__id__": 80
  2443. }
  2444. ],
  2445. "_prefab": {
  2446. "__id__": 81
  2447. },
  2448. "_lpos": {
  2449. "__type__": "cc.Vec3",
  2450. "x": 0,
  2451. "y": 2,
  2452. "z": 0
  2453. },
  2454. "_lrot": {
  2455. "__type__": "cc.Quat",
  2456. "x": 0,
  2457. "y": 0,
  2458. "z": 0,
  2459. "w": 1
  2460. },
  2461. "_lscale": {
  2462. "__type__": "cc.Vec3",
  2463. "x": 1,
  2464. "y": 1,
  2465. "z": 1
  2466. },
  2467. "_layer": 33554432,
  2468. "_euler": {
  2469. "__type__": "cc.Vec3",
  2470. "x": 0,
  2471. "y": 0,
  2472. "z": 0
  2473. },
  2474. "_id": ""
  2475. },
  2476. {
  2477. "__type__": "cc.UITransformComponent",
  2478. "_name": "Label<UITransformComponent>",
  2479. "_objFlags": 0,
  2480. "node": {
  2481. "__id__": 78
  2482. },
  2483. "_enabled": true,
  2484. "_priority": 0,
  2485. "_contentSize": {
  2486. "__type__": "cc.Size",
  2487. "width": 236,
  2488. "height": 70
  2489. },
  2490. "_anchorPoint": {
  2491. "__type__": "cc.Vec2",
  2492. "x": 0.5,
  2493. "y": 0.5
  2494. },
  2495. "_id": ""
  2496. },
  2497. {
  2498. "__type__": "cc.LabelComponent",
  2499. "_name": "Label<LabelComponent>",
  2500. "_objFlags": 0,
  2501. "node": {
  2502. "__id__": 78
  2503. },
  2504. "_enabled": true,
  2505. "_srcBlendFactor": 2,
  2506. "_dstBlendFactor": 4,
  2507. "_color": {
  2508. "__type__": "cc.Color",
  2509. "r": 255,
  2510. "g": 255,
  2511. "b": 255,
  2512. "a": 255
  2513. },
  2514. "_sharedMaterial": null,
  2515. "_useOriginalSize": true,
  2516. "_string": "放弃",
  2517. "_horizontalAlign": 1,
  2518. "_verticalAlign": 1,
  2519. "_actualFontSize": 56,
  2520. "_fontSize": 56,
  2521. "_fontFamily": "Arial",
  2522. "_lineHeight": 40,
  2523. "_overflow": 1,
  2524. "_enableWrapText": false,
  2525. "_font": null,
  2526. "_isSystemFontUsed": true,
  2527. "_isItalic": false,
  2528. "_isBold": false,
  2529. "_isUnderline": false,
  2530. "_cacheMode": 0,
  2531. "_id": ""
  2532. },
  2533. {
  2534. "__type__": "cc.PrefabInfo",
  2535. "root": {
  2536. "__id__": 1
  2537. },
  2538. "asset": {
  2539. "__id__": 0
  2540. },
  2541. "fileId": "04G+7sz0FP76hZkBuRyzpn",
  2542. "sync": false,
  2543. "_synced": {
  2544. "default": false,
  2545. "serializable": false
  2546. }
  2547. },
  2548. {
  2549. "__type__": "cc.UITransformComponent",
  2550. "_name": "Button<UITransformComponent>",
  2551. "_objFlags": 0,
  2552. "node": {
  2553. "__id__": 77
  2554. },
  2555. "_enabled": true,
  2556. "_priority": 0,
  2557. "_contentSize": {
  2558. "__type__": "cc.Size",
  2559. "width": 230,
  2560. "height": 168
  2561. },
  2562. "_anchorPoint": {
  2563. "__type__": "cc.Vec2",
  2564. "x": 0.5,
  2565. "y": 0.5
  2566. },
  2567. "_id": ""
  2568. },
  2569. {
  2570. "__type__": "cc.SpriteComponent",
  2571. "_name": "Button<SpriteComponent>",
  2572. "_objFlags": 0,
  2573. "node": {
  2574. "__id__": 77
  2575. },
  2576. "_enabled": true,
  2577. "_srcBlendFactor": 2,
  2578. "_dstBlendFactor": 4,
  2579. "_color": {
  2580. "__type__": "cc.Color",
  2581. "r": 255,
  2582. "g": 255,
  2583. "b": 255,
  2584. "a": 255
  2585. },
  2586. "_sharedMaterial": null,
  2587. "_spriteFrame": {
  2588. "__uuid__": "ac2e0810-10cd-49af-9346-adb58b72c73e@f9941"
  2589. },
  2590. "_type": 1,
  2591. "_fillType": 0,
  2592. "_sizeMode": 0,
  2593. "_fillCenter": {
  2594. "__type__": "cc.Vec2",
  2595. "x": 0,
  2596. "y": 0
  2597. },
  2598. "_fillStart": 0,
  2599. "_fillRange": 0,
  2600. "_isTrimmedMode": true,
  2601. "_useGrayscale": false,
  2602. "_atlas": null,
  2603. "_id": ""
  2604. },
  2605. {
  2606. "__type__": "cc.ButtonComponent",
  2607. "_name": "Button<ButtonComponent>",
  2608. "_objFlags": 0,
  2609. "node": {
  2610. "__id__": 77
  2611. },
  2612. "_enabled": true,
  2613. "clickEvents": [
  2614. {
  2615. "__id__": 85
  2616. }
  2617. ],
  2618. "_interactable": true,
  2619. "_transition": 2,
  2620. "_normalColor": {
  2621. "__type__": "cc.Color",
  2622. "r": 214,
  2623. "g": 214,
  2624. "b": 214,
  2625. "a": 255
  2626. },
  2627. "_hoverColor": {
  2628. "__type__": "cc.Color",
  2629. "r": 211,
  2630. "g": 211,
  2631. "b": 211,
  2632. "a": 255
  2633. },
  2634. "_pressColor": {
  2635. "__type__": "cc.Color",
  2636. "r": 255,
  2637. "g": 255,
  2638. "b": 255,
  2639. "a": 255
  2640. },
  2641. "_disabledColor": {
  2642. "__type__": "cc.Color",
  2643. "r": 124,
  2644. "g": 124,
  2645. "b": 124,
  2646. "a": 255
  2647. },
  2648. "_normalSprite": {
  2649. "__uuid__": "ac2e0810-10cd-49af-9346-adb58b72c73e@f9941"
  2650. },
  2651. "_hoverSprite": {
  2652. "__uuid__": "ac2e0810-10cd-49af-9346-adb58b72c73e@f9941"
  2653. },
  2654. "_pressedSprite": {
  2655. "__uuid__": "ac2e0810-10cd-49af-9346-adb58b72c73e@f9941"
  2656. },
  2657. "_disabledSprite": {
  2658. "__uuid__": "ac2e0810-10cd-49af-9346-adb58b72c73e@f9941"
  2659. },
  2660. "_duration": 0.1,
  2661. "_zoomScale": 1.2,
  2662. "_target": {
  2663. "__id__": 77
  2664. },
  2665. "_id": ""
  2666. },
  2667. {
  2668. "__type__": "cc.ClickEvent",
  2669. "target": {
  2670. "__id__": 1
  2671. },
  2672. "component": "",
  2673. "_componentId": "15ec3t8BJRJTpilb3tkiwVQ",
  2674. "handler": "PlayNextLevel",
  2675. "customEventData": ""
  2676. },
  2677. {
  2678. "__type__": "cc.WidgetComponent",
  2679. "_name": "Button<WidgetComponent>",
  2680. "_objFlags": 0,
  2681. "node": {
  2682. "__id__": 77
  2683. },
  2684. "_enabled": true,
  2685. "_alignFlags": 20,
  2686. "_target": null,
  2687. "_left": 0,
  2688. "_right": 0,
  2689. "_top": 0,
  2690. "_bottom": 18,
  2691. "_horizontalCenter": -234,
  2692. "_verticalCenter": 0,
  2693. "_isAbsLeft": true,
  2694. "_isAbsRight": true,
  2695. "_isAbsTop": true,
  2696. "_isAbsBottom": true,
  2697. "_isAbsHorizontalCenter": true,
  2698. "_isAbsVerticalCenter": true,
  2699. "_originalWidth": 0,
  2700. "_originalHeight": 0,
  2701. "_alignMode": 2,
  2702. "_lockFlags": 0,
  2703. "_id": ""
  2704. },
  2705. {
  2706. "__type__": "cc.PrefabInfo",
  2707. "root": {
  2708. "__id__": 1
  2709. },
  2710. "asset": {
  2711. "__id__": 0
  2712. },
  2713. "fileId": "f20KvrXjRJY7vQOLt79s/E",
  2714. "sync": false,
  2715. "_synced": {
  2716. "default": false,
  2717. "serializable": false
  2718. }
  2719. },
  2720. {
  2721. "__type__": "cc.Node",
  2722. "_name": "TopGroup",
  2723. "_objFlags": 0,
  2724. "_parent": {
  2725. "__id__": 1
  2726. },
  2727. "_children": [
  2728. {
  2729. "__id__": 89
  2730. },
  2731. {
  2732. "__id__": 94
  2733. },
  2734. {
  2735. "__id__": 116
  2736. }
  2737. ],
  2738. "_active": true,
  2739. "_components": [
  2740. {
  2741. "__id__": 134
  2742. },
  2743. {
  2744. "__id__": 135
  2745. }
  2746. ],
  2747. "_prefab": {
  2748. "__id__": 136
  2749. },
  2750. "_lpos": {
  2751. "__type__": "cc.Vec3",
  2752. "x": -325,
  2753. "y": 600,
  2754. "z": 0
  2755. },
  2756. "_lrot": {
  2757. "__type__": "cc.Quat",
  2758. "x": 0,
  2759. "y": 0,
  2760. "z": 0,
  2761. "w": 1
  2762. },
  2763. "_lscale": {
  2764. "__type__": "cc.Vec3",
  2765. "x": 1,
  2766. "y": 1,
  2767. "z": 1
  2768. },
  2769. "_layer": 1073741824,
  2770. "_euler": {
  2771. "__type__": "cc.Vec3",
  2772. "x": 0,
  2773. "y": 0,
  2774. "z": 0
  2775. },
  2776. "_id": ""
  2777. },
  2778. {
  2779. "__type__": "cc.Node",
  2780. "_name": "BGIcondi",
  2781. "_objFlags": 0,
  2782. "_parent": {
  2783. "__id__": 88
  2784. },
  2785. "_children": [],
  2786. "_active": true,
  2787. "_components": [
  2788. {
  2789. "__id__": 90
  2790. },
  2791. {
  2792. "__id__": 91
  2793. },
  2794. {
  2795. "__id__": 92
  2796. }
  2797. ],
  2798. "_prefab": {
  2799. "__id__": 93
  2800. },
  2801. "_lpos": {
  2802. "__type__": "cc.Vec3",
  2803. "x": -50,
  2804. "y": -39,
  2805. "z": 0
  2806. },
  2807. "_lrot": {
  2808. "__type__": "cc.Quat",
  2809. "x": 0,
  2810. "y": 0,
  2811. "z": 0,
  2812. "w": 1
  2813. },
  2814. "_lscale": {
  2815. "__type__": "cc.Vec3",
  2816. "x": 1,
  2817. "y": 1,
  2818. "z": 1
  2819. },
  2820. "_layer": 33554432,
  2821. "_euler": {
  2822. "__type__": "cc.Vec3",
  2823. "x": 0,
  2824. "y": 0,
  2825. "z": 0
  2826. },
  2827. "_id": ""
  2828. },
  2829. {
  2830. "__type__": "cc.UITransformComponent",
  2831. "_name": "BGIcondi<UITransformComponent>",
  2832. "_objFlags": 0,
  2833. "node": {
  2834. "__id__": 89
  2835. },
  2836. "_enabled": true,
  2837. "_priority": 0,
  2838. "_contentSize": {
  2839. "__type__": "cc.Size",
  2840. "width": 703,
  2841. "height": 76
  2842. },
  2843. "_anchorPoint": {
  2844. "__type__": "cc.Vec2",
  2845. "x": 0,
  2846. "y": 0.5
  2847. },
  2848. "_id": ""
  2849. },
  2850. {
  2851. "__type__": "cc.SpriteComponent",
  2852. "_name": "BGIcondi<SpriteComponent>",
  2853. "_objFlags": 0,
  2854. "node": {
  2855. "__id__": 89
  2856. },
  2857. "_enabled": true,
  2858. "_srcBlendFactor": 2,
  2859. "_dstBlendFactor": 4,
  2860. "_color": {
  2861. "__type__": "cc.Color",
  2862. "r": 255,
  2863. "g": 255,
  2864. "b": 255,
  2865. "a": 255
  2866. },
  2867. "_sharedMaterial": null,
  2868. "_spriteFrame": {
  2869. "__uuid__": "86138ab3-01a0-4ce6-97d3-15225731f529@f9941"
  2870. },
  2871. "_type": 0,
  2872. "_fillType": 0,
  2873. "_sizeMode": 1,
  2874. "_fillCenter": {
  2875. "__type__": "cc.Vec2",
  2876. "x": 0,
  2877. "y": 0
  2878. },
  2879. "_fillStart": 0,
  2880. "_fillRange": 0,
  2881. "_isTrimmedMode": true,
  2882. "_useGrayscale": false,
  2883. "_atlas": null,
  2884. "_id": ""
  2885. },
  2886. {
  2887. "__type__": "cc.WidgetComponent",
  2888. "_name": "BGIcondi<WidgetComponent>",
  2889. "_objFlags": 0,
  2890. "node": {
  2891. "__id__": 89
  2892. },
  2893. "_enabled": true,
  2894. "_alignFlags": 9,
  2895. "_target": null,
  2896. "_left": 0,
  2897. "_right": 0,
  2898. "_top": 51,
  2899. "_bottom": 0,
  2900. "_horizontalCenter": 0,
  2901. "_verticalCenter": 0,
  2902. "_isAbsLeft": true,
  2903. "_isAbsRight": true,
  2904. "_isAbsTop": true,
  2905. "_isAbsBottom": true,
  2906. "_isAbsHorizontalCenter": true,
  2907. "_isAbsVerticalCenter": true,
  2908. "_originalWidth": 0,
  2909. "_originalHeight": 0,
  2910. "_alignMode": 2,
  2911. "_lockFlags": 0,
  2912. "_id": ""
  2913. },
  2914. {
  2915. "__type__": "cc.PrefabInfo",
  2916. "root": {
  2917. "__id__": 1
  2918. },
  2919. "asset": {
  2920. "__id__": 0
  2921. },
  2922. "fileId": "aeYGO30ylDLpOK/ninKxgS",
  2923. "sync": false,
  2924. "_synced": {
  2925. "default": false,
  2926. "serializable": false
  2927. }
  2928. },
  2929. {
  2930. "__type__": "cc.Node",
  2931. "_name": "GlodView",
  2932. "_objFlags": 0,
  2933. "_parent": {
  2934. "__id__": 88
  2935. },
  2936. "_children": [
  2937. {
  2938. "__id__": 95
  2939. },
  2940. {
  2941. "__id__": 100
  2942. },
  2943. {
  2944. "__id__": 104
  2945. },
  2946. {
  2947. "__id__": 108
  2948. }
  2949. ],
  2950. "_active": true,
  2951. "_components": [
  2952. {
  2953. "__id__": 112
  2954. },
  2955. {
  2956. "__id__": 113
  2957. },
  2958. {
  2959. "__id__": 114
  2960. }
  2961. ],
  2962. "_prefab": {
  2963. "__id__": 115
  2964. },
  2965. "_lpos": {
  2966. "__type__": "cc.Vec3",
  2967. "x": 56,
  2968. "y": -38.090000000000146,
  2969. "z": 0
  2970. },
  2971. "_lrot": {
  2972. "__type__": "cc.Quat",
  2973. "x": 0,
  2974. "y": 0,
  2975. "z": 0,
  2976. "w": 1
  2977. },
  2978. "_lscale": {
  2979. "__type__": "cc.Vec3",
  2980. "x": 1,
  2981. "y": 1,
  2982. "z": 1
  2983. },
  2984. "_layer": 1073741824,
  2985. "_euler": {
  2986. "__type__": "cc.Vec3",
  2987. "x": 0,
  2988. "y": 0,
  2989. "z": 0
  2990. },
  2991. "_id": ""
  2992. },
  2993. {
  2994. "__type__": "cc.Node",
  2995. "_name": "Background",
  2996. "_objFlags": 0,
  2997. "_parent": {
  2998. "__id__": 94
  2999. },
  3000. "_children": [],
  3001. "_active": true,
  3002. "_components": [
  3003. {
  3004. "__id__": 96
  3005. },
  3006. {
  3007. "__id__": 97
  3008. },
  3009. {
  3010. "__id__": 98
  3011. }
  3012. ],
  3013. "_prefab": {
  3014. "__id__": 99
  3015. },
  3016. "_lpos": {
  3017. "__type__": "cc.Vec3",
  3018. "x": 63,
  3019. "y": 0,
  3020. "z": 0
  3021. },
  3022. "_lrot": {
  3023. "__type__": "cc.Quat",
  3024. "x": 0,
  3025. "y": 0,
  3026. "z": 0,
  3027. "w": 1
  3028. },
  3029. "_lscale": {
  3030. "__type__": "cc.Vec3",
  3031. "x": 1,
  3032. "y": 1,
  3033. "z": 1
  3034. },
  3035. "_layer": 33554432,
  3036. "_euler": {
  3037. "__type__": "cc.Vec3",
  3038. "x": 0,
  3039. "y": 0,
  3040. "z": 0
  3041. },
  3042. "_id": ""
  3043. },
  3044. {
  3045. "__type__": "cc.UITransformComponent",
  3046. "_name": "Background<UITransformComponent>",
  3047. "_objFlags": 0,
  3048. "node": {
  3049. "__id__": 95
  3050. },
  3051. "_enabled": true,
  3052. "_priority": 0,
  3053. "_contentSize": {
  3054. "__type__": "cc.Size",
  3055. "width": 250,
  3056. "height": 40
  3057. },
  3058. "_anchorPoint": {
  3059. "__type__": "cc.Vec2",
  3060. "x": 0.5,
  3061. "y": 0.5
  3062. },
  3063. "_id": ""
  3064. },
  3065. {
  3066. "__type__": "cc.SpriteComponent",
  3067. "_name": "Background<SpriteComponent>",
  3068. "_objFlags": 0,
  3069. "node": {
  3070. "__id__": 95
  3071. },
  3072. "_enabled": true,
  3073. "_srcBlendFactor": 2,
  3074. "_dstBlendFactor": 4,
  3075. "_color": {
  3076. "__type__": "cc.Color",
  3077. "r": 255,
  3078. "g": 255,
  3079. "b": 255,
  3080. "a": 255
  3081. },
  3082. "_sharedMaterial": null,
  3083. "_spriteFrame": {
  3084. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  3085. },
  3086. "_type": 1,
  3087. "_fillType": 0,
  3088. "_sizeMode": 0,
  3089. "_fillCenter": {
  3090. "__type__": "cc.Vec2",
  3091. "x": 0,
  3092. "y": 0
  3093. },
  3094. "_fillStart": 0,
  3095. "_fillRange": 0,
  3096. "_isTrimmedMode": true,
  3097. "_useGrayscale": false,
  3098. "_atlas": null,
  3099. "_id": ""
  3100. },
  3101. {
  3102. "__type__": "cc.UIOpacityComponent",
  3103. "_name": "Background<UIOpacityComponent>",
  3104. "_objFlags": 0,
  3105. "node": {
  3106. "__id__": 95
  3107. },
  3108. "_enabled": true,
  3109. "_opacity": 125,
  3110. "_id": ""
  3111. },
  3112. {
  3113. "__type__": "cc.PrefabInfo",
  3114. "root": {
  3115. "__id__": 1
  3116. },
  3117. "asset": {
  3118. "__id__": 0
  3119. },
  3120. "fileId": "661SuERYBGr67dZI04ycye",
  3121. "sync": false,
  3122. "_synced": {
  3123. "default": false,
  3124. "serializable": false
  3125. }
  3126. },
  3127. {
  3128. "__type__": "cc.Node",
  3129. "_name": "GlodIcon",
  3130. "_objFlags": 0,
  3131. "_parent": {
  3132. "__id__": 94
  3133. },
  3134. "_children": [],
  3135. "_active": true,
  3136. "_components": [
  3137. {
  3138. "__id__": 101
  3139. },
  3140. {
  3141. "__id__": 102
  3142. }
  3143. ],
  3144. "_prefab": {
  3145. "__id__": 103
  3146. },
  3147. "_lpos": {
  3148. "__type__": "cc.Vec3",
  3149. "x": -60,
  3150. "y": -3,
  3151. "z": 0
  3152. },
  3153. "_lrot": {
  3154. "__type__": "cc.Quat",
  3155. "x": 0,
  3156. "y": 0,
  3157. "z": 0,
  3158. "w": 1
  3159. },
  3160. "_lscale": {
  3161. "__type__": "cc.Vec3",
  3162. "x": 1,
  3163. "y": 1,
  3164. "z": 1
  3165. },
  3166. "_layer": 33554432,
  3167. "_euler": {
  3168. "__type__": "cc.Vec3",
  3169. "x": 0,
  3170. "y": 0,
  3171. "z": 0
  3172. },
  3173. "_id": ""
  3174. },
  3175. {
  3176. "__type__": "cc.UITransformComponent",
  3177. "_name": "GlodIcon<UITransformComponent>",
  3178. "_objFlags": 0,
  3179. "node": {
  3180. "__id__": 100
  3181. },
  3182. "_enabled": true,
  3183. "_priority": 0,
  3184. "_contentSize": {
  3185. "__type__": "cc.Size",
  3186. "width": 50,
  3187. "height": 49
  3188. },
  3189. "_anchorPoint": {
  3190. "__type__": "cc.Vec2",
  3191. "x": 0.5,
  3192. "y": 0.5
  3193. },
  3194. "_id": ""
  3195. },
  3196. {
  3197. "__type__": "cc.SpriteComponent",
  3198. "_name": "GlodIcon<SpriteComponent>",
  3199. "_objFlags": 0,
  3200. "node": {
  3201. "__id__": 100
  3202. },
  3203. "_enabled": true,
  3204. "_srcBlendFactor": 2,
  3205. "_dstBlendFactor": 4,
  3206. "_color": {
  3207. "__type__": "cc.Color",
  3208. "r": 255,
  3209. "g": 255,
  3210. "b": 255,
  3211. "a": 255
  3212. },
  3213. "_sharedMaterial": null,
  3214. "_spriteFrame": {
  3215. "__uuid__": "0b44fc8c-d664-46d8-bddf-1514caec8e51@f9941"
  3216. },
  3217. "_type": 0,
  3218. "_fillType": 0,
  3219. "_sizeMode": 1,
  3220. "_fillCenter": {
  3221. "__type__": "cc.Vec2",
  3222. "x": 0,
  3223. "y": 0
  3224. },
  3225. "_fillStart": 0,
  3226. "_fillRange": 0,
  3227. "_isTrimmedMode": true,
  3228. "_useGrayscale": false,
  3229. "_atlas": null,
  3230. "_id": ""
  3231. },
  3232. {
  3233. "__type__": "cc.PrefabInfo",
  3234. "root": {
  3235. "__id__": 1
  3236. },
  3237. "asset": {
  3238. "__id__": 0
  3239. },
  3240. "fileId": "cdTmU1bqlHa7H2NFVKaWix",
  3241. "sync": false,
  3242. "_synced": {
  3243. "default": false,
  3244. "serializable": false
  3245. }
  3246. },
  3247. {
  3248. "__type__": "cc.Node",
  3249. "_name": "GlodNum1",
  3250. "_objFlags": 0,
  3251. "_parent": {
  3252. "__id__": 94
  3253. },
  3254. "_children": [],
  3255. "_active": true,
  3256. "_components": [
  3257. {
  3258. "__id__": 105
  3259. },
  3260. {
  3261. "__id__": 106
  3262. }
  3263. ],
  3264. "_prefab": {
  3265. "__id__": 107
  3266. },
  3267. "_lpos": {
  3268. "__type__": "cc.Vec3",
  3269. "x": -12,
  3270. "y": -1,
  3271. "z": 0
  3272. },
  3273. "_lrot": {
  3274. "__type__": "cc.Quat",
  3275. "x": 0,
  3276. "y": 0,
  3277. "z": 0,
  3278. "w": 1
  3279. },
  3280. "_lscale": {
  3281. "__type__": "cc.Vec3",
  3282. "x": 1,
  3283. "y": 1,
  3284. "z": 1
  3285. },
  3286. "_layer": 33554432,
  3287. "_euler": {
  3288. "__type__": "cc.Vec3",
  3289. "x": 0,
  3290. "y": 0,
  3291. "z": 0
  3292. },
  3293. "_id": ""
  3294. },
  3295. {
  3296. "__type__": "cc.UITransformComponent",
  3297. "_name": "Label<UITransformComponent>",
  3298. "_objFlags": 0,
  3299. "node": {
  3300. "__id__": 104
  3301. },
  3302. "_enabled": true,
  3303. "_priority": 0,
  3304. "_contentSize": {
  3305. "__type__": "cc.Size",
  3306. "width": 80.05,
  3307. "height": 50.4
  3308. },
  3309. "_anchorPoint": {
  3310. "__type__": "cc.Vec2",
  3311. "x": 0,
  3312. "y": 0.5
  3313. },
  3314. "_id": ""
  3315. },
  3316. {
  3317. "__type__": "cc.LabelComponent",
  3318. "_name": "Label<LabelComponent>",
  3319. "_objFlags": 0,
  3320. "node": {
  3321. "__id__": 104
  3322. },
  3323. "_enabled": true,
  3324. "_srcBlendFactor": 2,
  3325. "_dstBlendFactor": 4,
  3326. "_color": {
  3327. "__type__": "cc.Color",
  3328. "r": 255,
  3329. "g": 237,
  3330. "b": 105,
  3331. "a": 255
  3332. },
  3333. "_sharedMaterial": null,
  3334. "_useOriginalSize": true,
  3335. "_string": "10.2K",
  3336. "_horizontalAlign": 0,
  3337. "_verticalAlign": 1,
  3338. "_actualFontSize": 30,
  3339. "_fontSize": 30,
  3340. "_fontFamily": "Arial",
  3341. "_lineHeight": 40,
  3342. "_overflow": 0,
  3343. "_enableWrapText": true,
  3344. "_font": null,
  3345. "_isSystemFontUsed": true,
  3346. "_isItalic": false,
  3347. "_isBold": true,
  3348. "_isUnderline": false,
  3349. "_cacheMode": 0,
  3350. "_id": ""
  3351. },
  3352. {
  3353. "__type__": "cc.PrefabInfo",
  3354. "root": {
  3355. "__id__": 1
  3356. },
  3357. "asset": {
  3358. "__id__": 0
  3359. },
  3360. "fileId": "9faFhASf9CSaGLlrqXLDNE",
  3361. "sync": false,
  3362. "_synced": {
  3363. "default": false,
  3364. "serializable": false
  3365. }
  3366. },
  3367. {
  3368. "__type__": "cc.Node",
  3369. "_name": "GlodNum2",
  3370. "_objFlags": 0,
  3371. "_parent": {
  3372. "__id__": 94
  3373. },
  3374. "_children": [],
  3375. "_active": true,
  3376. "_components": [
  3377. {
  3378. "__id__": 109
  3379. },
  3380. {
  3381. "__id__": 110
  3382. }
  3383. ],
  3384. "_prefab": {
  3385. "__id__": 111
  3386. },
  3387. "_lpos": {
  3388. "__type__": "cc.Vec3",
  3389. "x": 182.789,
  3390. "y": -1,
  3391. "z": 0
  3392. },
  3393. "_lrot": {
  3394. "__type__": "cc.Quat",
  3395. "x": 0,
  3396. "y": 0,
  3397. "z": 0,
  3398. "w": 1
  3399. },
  3400. "_lscale": {
  3401. "__type__": "cc.Vec3",
  3402. "x": 1,
  3403. "y": 1,
  3404. "z": 1
  3405. },
  3406. "_layer": 33554432,
  3407. "_euler": {
  3408. "__type__": "cc.Vec3",
  3409. "x": 0,
  3410. "y": 0,
  3411. "z": 0
  3412. },
  3413. "_id": ""
  3414. },
  3415. {
  3416. "__type__": "cc.UITransformComponent",
  3417. "_name": "Label<UITransformComponent>",
  3418. "_objFlags": 0,
  3419. "node": {
  3420. "__id__": 108
  3421. },
  3422. "_enabled": true,
  3423. "_priority": 0,
  3424. "_contentSize": {
  3425. "__type__": "cc.Size",
  3426. "width": 43.02,
  3427. "height": 50.4
  3428. },
  3429. "_anchorPoint": {
  3430. "__type__": "cc.Vec2",
  3431. "x": 1,
  3432. "y": 0.5
  3433. },
  3434. "_id": ""
  3435. },
  3436. {
  3437. "__type__": "cc.LabelComponent",
  3438. "_name": "Label<LabelComponent>",
  3439. "_objFlags": 0,
  3440. "node": {
  3441. "__id__": 108
  3442. },
  3443. "_enabled": true,
  3444. "_srcBlendFactor": 2,
  3445. "_dstBlendFactor": 4,
  3446. "_color": {
  3447. "__type__": "cc.Color",
  3448. "r": 255,
  3449. "g": 237,
  3450. "b": 105,
  3451. "a": 255
  3452. },
  3453. "_sharedMaterial": null,
  3454. "_useOriginalSize": true,
  3455. "_string": "10/秒",
  3456. "_horizontalAlign": 2,
  3457. "_verticalAlign": 1,
  3458. "_actualFontSize": 18,
  3459. "_fontSize": 18,
  3460. "_fontFamily": "Arial",
  3461. "_lineHeight": 40,
  3462. "_overflow": 0,
  3463. "_enableWrapText": true,
  3464. "_font": null,
  3465. "_isSystemFontUsed": true,
  3466. "_isItalic": false,
  3467. "_isBold": true,
  3468. "_isUnderline": false,
  3469. "_cacheMode": 0,
  3470. "_id": ""
  3471. },
  3472. {
  3473. "__type__": "cc.PrefabInfo",
  3474. "root": {
  3475. "__id__": 1
  3476. },
  3477. "asset": {
  3478. "__id__": 0
  3479. },
  3480. "fileId": "3aJJZWE2dFfqMGFhboMUeI",
  3481. "sync": false,
  3482. "_synced": {
  3483. "default": false,
  3484. "serializable": false
  3485. }
  3486. },
  3487. {
  3488. "__type__": "cc.UITransformComponent",
  3489. "_name": "GlodView<UITransformComponent>",
  3490. "_objFlags": 0,
  3491. "node": {
  3492. "__id__": 94
  3493. },
  3494. "_enabled": true,
  3495. "_priority": 0,
  3496. "_contentSize": {
  3497. "__type__": "cc.Size",
  3498. "width": 100,
  3499. "height": 100
  3500. },
  3501. "_anchorPoint": {
  3502. "__type__": "cc.Vec2",
  3503. "x": 0.5,
  3504. "y": 0.5
  3505. },
  3506. "_id": ""
  3507. },
  3508. {
  3509. "__type__": "cc.WidgetComponent",
  3510. "_name": "GlodView<WidgetComponent>",
  3511. "_objFlags": 0,
  3512. "node": {
  3513. "__id__": 94
  3514. },
  3515. "_enabled": true,
  3516. "_alignFlags": 9,
  3517. "_target": null,
  3518. "_left": 56,
  3519. "_right": 0,
  3520. "_top": 38.090000000000146,
  3521. "_bottom": 0,
  3522. "_horizontalCenter": 0,
  3523. "_verticalCenter": 0,
  3524. "_isAbsLeft": true,
  3525. "_isAbsRight": true,
  3526. "_isAbsTop": true,
  3527. "_isAbsBottom": true,
  3528. "_isAbsHorizontalCenter": true,
  3529. "_isAbsVerticalCenter": true,
  3530. "_originalWidth": 0,
  3531. "_originalHeight": 0,
  3532. "_alignMode": 2,
  3533. "_lockFlags": 0,
  3534. "_id": ""
  3535. },
  3536. {
  3537. "__type__": "cc.WidgetComponent",
  3538. "_name": "GlodView<WidgetComponent>",
  3539. "_objFlags": 0,
  3540. "node": {
  3541. "__id__": 94
  3542. },
  3543. "_enabled": true,
  3544. "_alignFlags": 9,
  3545. "_target": null,
  3546. "_left": -1599.6799999999998,
  3547. "_right": 0,
  3548. "_top": 38.090000000000146,
  3549. "_bottom": 0,
  3550. "_horizontalCenter": 0,
  3551. "_verticalCenter": 0,
  3552. "_isAbsLeft": true,
  3553. "_isAbsRight": true,
  3554. "_isAbsTop": true,
  3555. "_isAbsBottom": true,
  3556. "_isAbsHorizontalCenter": true,
  3557. "_isAbsVerticalCenter": true,
  3558. "_originalWidth": 0,
  3559. "_originalHeight": 0,
  3560. "_alignMode": 2,
  3561. "_lockFlags": 0,
  3562. "_id": ""
  3563. },
  3564. {
  3565. "__type__": "cc.PrefabInfo",
  3566. "root": {
  3567. "__id__": 1
  3568. },
  3569. "asset": {
  3570. "__id__": 0
  3571. },
  3572. "fileId": "52oY2DlKNBKaybNu4O+gvB",
  3573. "sync": false,
  3574. "_synced": {
  3575. "default": false,
  3576. "serializable": false
  3577. }
  3578. },
  3579. {
  3580. "__type__": "cc.Node",
  3581. "_name": "DiamondView",
  3582. "_objFlags": 0,
  3583. "_parent": {
  3584. "__id__": 88
  3585. },
  3586. "_children": [
  3587. {
  3588. "__id__": 117
  3589. },
  3590. {
  3591. "__id__": 122
  3592. },
  3593. {
  3594. "__id__": 126
  3595. }
  3596. ],
  3597. "_active": true,
  3598. "_components": [
  3599. {
  3600. "__id__": 130
  3601. },
  3602. {
  3603. "__id__": 131
  3604. },
  3605. {
  3606. "__id__": 132
  3607. }
  3608. ],
  3609. "_prefab": {
  3610. "__id__": 133
  3611. },
  3612. "_lpos": {
  3613. "__type__": "cc.Vec3",
  3614. "x": 368,
  3615. "y": -38.090000000000146,
  3616. "z": 0
  3617. },
  3618. "_lrot": {
  3619. "__type__": "cc.Quat",
  3620. "x": 0,
  3621. "y": 0,
  3622. "z": 0,
  3623. "w": 1
  3624. },
  3625. "_lscale": {
  3626. "__type__": "cc.Vec3",
  3627. "x": 1,
  3628. "y": 1,
  3629. "z": 1
  3630. },
  3631. "_layer": 1073741824,
  3632. "_euler": {
  3633. "__type__": "cc.Vec3",
  3634. "x": 0,
  3635. "y": 0,
  3636. "z": 0
  3637. },
  3638. "_id": ""
  3639. },
  3640. {
  3641. "__type__": "cc.Node",
  3642. "_name": "Background",
  3643. "_objFlags": 0,
  3644. "_parent": {
  3645. "__id__": 116
  3646. },
  3647. "_children": [],
  3648. "_active": true,
  3649. "_components": [
  3650. {
  3651. "__id__": 118
  3652. },
  3653. {
  3654. "__id__": 119
  3655. },
  3656. {
  3657. "__id__": 120
  3658. }
  3659. ],
  3660. "_prefab": {
  3661. "__id__": 121
  3662. },
  3663. "_lpos": {
  3664. "__type__": "cc.Vec3",
  3665. "x": -60,
  3666. "y": 0,
  3667. "z": 0
  3668. },
  3669. "_lrot": {
  3670. "__type__": "cc.Quat",
  3671. "x": 0,
  3672. "y": 0,
  3673. "z": 0,
  3674. "w": 1
  3675. },
  3676. "_lscale": {
  3677. "__type__": "cc.Vec3",
  3678. "x": 1,
  3679. "y": 1,
  3680. "z": 1
  3681. },
  3682. "_layer": 33554432,
  3683. "_euler": {
  3684. "__type__": "cc.Vec3",
  3685. "x": 0,
  3686. "y": 0,
  3687. "z": 0
  3688. },
  3689. "_id": ""
  3690. },
  3691. {
  3692. "__type__": "cc.UITransformComponent",
  3693. "_name": "Background<UITransformComponent>",
  3694. "_objFlags": 0,
  3695. "node": {
  3696. "__id__": 117
  3697. },
  3698. "_enabled": true,
  3699. "_priority": 0,
  3700. "_contentSize": {
  3701. "__type__": "cc.Size",
  3702. "width": 120,
  3703. "height": 40
  3704. },
  3705. "_anchorPoint": {
  3706. "__type__": "cc.Vec2",
  3707. "x": 0,
  3708. "y": 0.5
  3709. },
  3710. "_id": ""
  3711. },
  3712. {
  3713. "__type__": "cc.SpriteComponent",
  3714. "_name": "Background<SpriteComponent>",
  3715. "_objFlags": 0,
  3716. "node": {
  3717. "__id__": 117
  3718. },
  3719. "_enabled": true,
  3720. "_srcBlendFactor": 2,
  3721. "_dstBlendFactor": 4,
  3722. "_color": {
  3723. "__type__": "cc.Color",
  3724. "r": 255,
  3725. "g": 255,
  3726. "b": 255,
  3727. "a": 255
  3728. },
  3729. "_sharedMaterial": null,
  3730. "_spriteFrame": {
  3731. "__uuid__": "72e319bc-562c-4474-b068-4d153e08dc18@f9941"
  3732. },
  3733. "_type": 1,
  3734. "_fillType": 0,
  3735. "_sizeMode": 0,
  3736. "_fillCenter": {
  3737. "__type__": "cc.Vec2",
  3738. "x": 0,
  3739. "y": 0
  3740. },
  3741. "_fillStart": 0,
  3742. "_fillRange": 0,
  3743. "_isTrimmedMode": true,
  3744. "_useGrayscale": false,
  3745. "_atlas": null,
  3746. "_id": ""
  3747. },
  3748. {
  3749. "__type__": "cc.UIOpacityComponent",
  3750. "_name": "Background<UIOpacityComponent>",
  3751. "_objFlags": 0,
  3752. "node": {
  3753. "__id__": 117
  3754. },
  3755. "_enabled": true,
  3756. "_opacity": 125,
  3757. "_id": ""
  3758. },
  3759. {
  3760. "__type__": "cc.PrefabInfo",
  3761. "root": {
  3762. "__id__": 1
  3763. },
  3764. "asset": {
  3765. "__id__": 0
  3766. },
  3767. "fileId": "13hgqYiWNBEYySyVmhp3IC",
  3768. "sync": false,
  3769. "_synced": {
  3770. "default": false,
  3771. "serializable": false
  3772. }
  3773. },
  3774. {
  3775. "__type__": "cc.Node",
  3776. "_name": "DiamondIcon",
  3777. "_objFlags": 0,
  3778. "_parent": {
  3779. "__id__": 116
  3780. },
  3781. "_children": [],
  3782. "_active": true,
  3783. "_components": [
  3784. {
  3785. "__id__": 123
  3786. },
  3787. {
  3788. "__id__": 124
  3789. }
  3790. ],
  3791. "_prefab": {
  3792. "__id__": 125
  3793. },
  3794. "_lpos": {
  3795. "__type__": "cc.Vec3",
  3796. "x": -60,
  3797. "y": -3,
  3798. "z": 0
  3799. },
  3800. "_lrot": {
  3801. "__type__": "cc.Quat",
  3802. "x": 0,
  3803. "y": 0,
  3804. "z": 0,
  3805. "w": 1
  3806. },
  3807. "_lscale": {
  3808. "__type__": "cc.Vec3",
  3809. "x": 1,
  3810. "y": 1,
  3811. "z": 1
  3812. },
  3813. "_layer": 33554432,
  3814. "_euler": {
  3815. "__type__": "cc.Vec3",
  3816. "x": 0,
  3817. "y": 0,
  3818. "z": 0
  3819. },
  3820. "_id": ""
  3821. },
  3822. {
  3823. "__type__": "cc.UITransformComponent",
  3824. "_name": "GlodIcon<UITransformComponent>",
  3825. "_objFlags": 0,
  3826. "node": {
  3827. "__id__": 122
  3828. },
  3829. "_enabled": true,
  3830. "_priority": 0,
  3831. "_contentSize": {
  3832. "__type__": "cc.Size",
  3833. "width": 55,
  3834. "height": 45
  3835. },
  3836. "_anchorPoint": {
  3837. "__type__": "cc.Vec2",
  3838. "x": 0.5,
  3839. "y": 0.5
  3840. },
  3841. "_id": ""
  3842. },
  3843. {
  3844. "__type__": "cc.SpriteComponent",
  3845. "_name": "GlodIcon<SpriteComponent>",
  3846. "_objFlags": 0,
  3847. "node": {
  3848. "__id__": 122
  3849. },
  3850. "_enabled": true,
  3851. "_srcBlendFactor": 2,
  3852. "_dstBlendFactor": 4,
  3853. "_color": {
  3854. "__type__": "cc.Color",
  3855. "r": 255,
  3856. "g": 255,
  3857. "b": 255,
  3858. "a": 255
  3859. },
  3860. "_sharedMaterial": null,
  3861. "_spriteFrame": {
  3862. "__uuid__": "7865e301-00a2-4137-8aa1-d46f75335e03@f9941"
  3863. },
  3864. "_type": 0,
  3865. "_fillType": 0,
  3866. "_sizeMode": 1,
  3867. "_fillCenter": {
  3868. "__type__": "cc.Vec2",
  3869. "x": 0,
  3870. "y": 0
  3871. },
  3872. "_fillStart": 0,
  3873. "_fillRange": 0,
  3874. "_isTrimmedMode": true,
  3875. "_useGrayscale": false,
  3876. "_atlas": null,
  3877. "_id": ""
  3878. },
  3879. {
  3880. "__type__": "cc.PrefabInfo",
  3881. "root": {
  3882. "__id__": 1
  3883. },
  3884. "asset": {
  3885. "__id__": 0
  3886. },
  3887. "fileId": "e4w9jjB+ZDPqx538BP44FT",
  3888. "sync": false,
  3889. "_synced": {
  3890. "default": false,
  3891. "serializable": false
  3892. }
  3893. },
  3894. {
  3895. "__type__": "cc.Node",
  3896. "_name": "DiamondNum",
  3897. "_objFlags": 0,
  3898. "_parent": {
  3899. "__id__": 116
  3900. },
  3901. "_children": [],
  3902. "_active": true,
  3903. "_components": [
  3904. {
  3905. "__id__": 127
  3906. },
  3907. {
  3908. "__id__": 128
  3909. }
  3910. ],
  3911. "_prefab": {
  3912. "__id__": 129
  3913. },
  3914. "_lpos": {
  3915. "__type__": "cc.Vec3",
  3916. "x": 3.073,
  3917. "y": -1,
  3918. "z": 0
  3919. },
  3920. "_lrot": {
  3921. "__type__": "cc.Quat",
  3922. "x": 0,
  3923. "y": 0,
  3924. "z": 0,
  3925. "w": 1
  3926. },
  3927. "_lscale": {
  3928. "__type__": "cc.Vec3",
  3929. "x": 1,
  3930. "y": 1,
  3931. "z": 1
  3932. },
  3933. "_layer": 33554432,
  3934. "_euler": {
  3935. "__type__": "cc.Vec3",
  3936. "x": 0,
  3937. "y": 0,
  3938. "z": 0
  3939. },
  3940. "_id": ""
  3941. },
  3942. {
  3943. "__type__": "cc.UITransformComponent",
  3944. "_name": "Label<UITransformComponent>",
  3945. "_objFlags": 0,
  3946. "node": {
  3947. "__id__": 126
  3948. },
  3949. "_enabled": true,
  3950. "_priority": 0,
  3951. "_contentSize": {
  3952. "__type__": "cc.Size",
  3953. "width": 16.68,
  3954. "height": 50.4
  3955. },
  3956. "_anchorPoint": {
  3957. "__type__": "cc.Vec2",
  3958. "x": 0,
  3959. "y": 0.5
  3960. },
  3961. "_id": ""
  3962. },
  3963. {
  3964. "__type__": "cc.LabelComponent",
  3965. "_name": "Label<LabelComponent>",
  3966. "_objFlags": 0,
  3967. "node": {
  3968. "__id__": 126
  3969. },
  3970. "_enabled": true,
  3971. "_srcBlendFactor": 2,
  3972. "_dstBlendFactor": 4,
  3973. "_color": {
  3974. "__type__": "cc.Color",
  3975. "r": 255,
  3976. "g": 237,
  3977. "b": 105,
  3978. "a": 255
  3979. },
  3980. "_sharedMaterial": null,
  3981. "_useOriginalSize": true,
  3982. "_string": "2",
  3983. "_horizontalAlign": 1,
  3984. "_verticalAlign": 1,
  3985. "_actualFontSize": 30,
  3986. "_fontSize": 30,
  3987. "_fontFamily": "Arial",
  3988. "_lineHeight": 40,
  3989. "_overflow": 0,
  3990. "_enableWrapText": true,
  3991. "_font": null,
  3992. "_isSystemFontUsed": true,
  3993. "_isItalic": false,
  3994. "_isBold": true,
  3995. "_isUnderline": false,
  3996. "_cacheMode": 0,
  3997. "_id": ""
  3998. },
  3999. {
  4000. "__type__": "cc.PrefabInfo",
  4001. "root": {
  4002. "__id__": 1
  4003. },
  4004. "asset": {
  4005. "__id__": 0
  4006. },
  4007. "fileId": "00JTqsruZO+KXi2ZCzeiNb",
  4008. "sync": false,
  4009. "_synced": {
  4010. "default": false,
  4011. "serializable": false
  4012. }
  4013. },
  4014. {
  4015. "__type__": "cc.UITransformComponent",
  4016. "_name": "DiamondView<UITransformComponent>",
  4017. "_objFlags": 0,
  4018. "node": {
  4019. "__id__": 116
  4020. },
  4021. "_enabled": true,
  4022. "_priority": 0,
  4023. "_contentSize": {
  4024. "__type__": "cc.Size",
  4025. "width": 100,
  4026. "height": 100
  4027. },
  4028. "_anchorPoint": {
  4029. "__type__": "cc.Vec2",
  4030. "x": 0.5,
  4031. "y": 0.5
  4032. },
  4033. "_id": ""
  4034. },
  4035. {
  4036. "__type__": "cc.WidgetComponent",
  4037. "_name": "DiamondView<WidgetComponent>",
  4038. "_objFlags": 0,
  4039. "node": {
  4040. "__id__": 116
  4041. },
  4042. "_enabled": true,
  4043. "_alignFlags": 9,
  4044. "_target": null,
  4045. "_left": 368,
  4046. "_right": 0,
  4047. "_top": 38.090000000000146,
  4048. "_bottom": 0,
  4049. "_horizontalCenter": 0,
  4050. "_verticalCenter": 0,
  4051. "_isAbsLeft": true,
  4052. "_isAbsRight": true,
  4053. "_isAbsTop": true,
  4054. "_isAbsBottom": true,
  4055. "_isAbsHorizontalCenter": true,
  4056. "_isAbsVerticalCenter": true,
  4057. "_originalWidth": 0,
  4058. "_originalHeight": 0,
  4059. "_alignMode": 2,
  4060. "_lockFlags": 0,
  4061. "_id": ""
  4062. },
  4063. {
  4064. "__type__": "cc.WidgetComponent",
  4065. "_name": "DiamondView<WidgetComponent>",
  4066. "_objFlags": 0,
  4067. "node": {
  4068. "__id__": 116
  4069. },
  4070. "_enabled": true,
  4071. "_alignFlags": 9,
  4072. "_target": null,
  4073. "_left": -2928.6429999999987,
  4074. "_right": 0,
  4075. "_top": 38.09000000000617,
  4076. "_bottom": 0,
  4077. "_horizontalCenter": 0,
  4078. "_verticalCenter": 0,
  4079. "_isAbsLeft": true,
  4080. "_isAbsRight": true,
  4081. "_isAbsTop": true,
  4082. "_isAbsBottom": true,
  4083. "_isAbsHorizontalCenter": true,
  4084. "_isAbsVerticalCenter": true,
  4085. "_originalWidth": 0,
  4086. "_originalHeight": 0,
  4087. "_alignMode": 2,
  4088. "_lockFlags": 0,
  4089. "_id": ""
  4090. },
  4091. {
  4092. "__type__": "cc.PrefabInfo",
  4093. "root": {
  4094. "__id__": 1
  4095. },
  4096. "asset": {
  4097. "__id__": 0
  4098. },
  4099. "fileId": "adyO6oQXdCvahl2gp8mp8l",
  4100. "sync": false,
  4101. "_synced": {
  4102. "default": false,
  4103. "serializable": false
  4104. }
  4105. },
  4106. {
  4107. "__type__": "cc.UITransformComponent",
  4108. "_name": "TopGroup<UITransformComponent>",
  4109. "_objFlags": 0,
  4110. "node": {
  4111. "__id__": 88
  4112. },
  4113. "_enabled": true,
  4114. "_priority": 0,
  4115. "_contentSize": {
  4116. "__type__": "cc.Size",
  4117. "width": 100,
  4118. "height": 100
  4119. },
  4120. "_anchorPoint": {
  4121. "__type__": "cc.Vec2",
  4122. "x": 0.5,
  4123. "y": 0.5
  4124. },
  4125. "_id": ""
  4126. },
  4127. {
  4128. "__type__": "cc.WidgetComponent",
  4129. "_name": "TopGroup<WidgetComponent>",
  4130. "_objFlags": 0,
  4131. "node": {
  4132. "__id__": 88
  4133. },
  4134. "_enabled": true,
  4135. "_alignFlags": 9,
  4136. "_target": null,
  4137. "_left": 0,
  4138. "_right": 0,
  4139. "_top": 17,
  4140. "_bottom": 0,
  4141. "_horizontalCenter": 0,
  4142. "_verticalCenter": 0,
  4143. "_isAbsLeft": true,
  4144. "_isAbsRight": true,
  4145. "_isAbsTop": true,
  4146. "_isAbsBottom": true,
  4147. "_isAbsHorizontalCenter": true,
  4148. "_isAbsVerticalCenter": true,
  4149. "_originalWidth": 0,
  4150. "_originalHeight": 0,
  4151. "_alignMode": 2,
  4152. "_lockFlags": 0,
  4153. "_id": ""
  4154. },
  4155. {
  4156. "__type__": "cc.PrefabInfo",
  4157. "root": {
  4158. "__id__": 1
  4159. },
  4160. "asset": {
  4161. "__id__": 0
  4162. },
  4163. "fileId": "8cBck8u/ZHK6VGqkueQOnr",
  4164. "sync": false,
  4165. "_synced": {
  4166. "default": false,
  4167. "serializable": false
  4168. }
  4169. },
  4170. {
  4171. "__type__": "cc.Node",
  4172. "_name": "NoNetwork",
  4173. "_objFlags": 0,
  4174. "_parent": {
  4175. "__id__": 1
  4176. },
  4177. "_children": [
  4178. {
  4179. "__id__": 138
  4180. }
  4181. ],
  4182. "_active": true,
  4183. "_components": [
  4184. {
  4185. "__id__": 142
  4186. },
  4187. {
  4188. "__id__": 143
  4189. },
  4190. {
  4191. "__id__": 144
  4192. }
  4193. ],
  4194. "_prefab": {
  4195. "__id__": 145
  4196. },
  4197. "_lpos": {
  4198. "__type__": "cc.Vec3",
  4199. "x": 0,
  4200. "y": 0,
  4201. "z": 0
  4202. },
  4203. "_lrot": {
  4204. "__type__": "cc.Quat",
  4205. "x": 0,
  4206. "y": 0,
  4207. "z": 0,
  4208. "w": 1
  4209. },
  4210. "_lscale": {
  4211. "__type__": "cc.Vec3",
  4212. "x": 1,
  4213. "y": 1,
  4214. "z": 1
  4215. },
  4216. "_layer": 33554432,
  4217. "_euler": {
  4218. "__type__": "cc.Vec3",
  4219. "x": 0,
  4220. "y": 0,
  4221. "z": 0
  4222. },
  4223. "_id": ""
  4224. },
  4225. {
  4226. "__type__": "cc.Node",
  4227. "_name": "Label",
  4228. "_objFlags": 0,
  4229. "_parent": {
  4230. "__id__": 137
  4231. },
  4232. "_children": [],
  4233. "_active": true,
  4234. "_components": [
  4235. {
  4236. "__id__": 139
  4237. },
  4238. {
  4239. "__id__": 140
  4240. }
  4241. ],
  4242. "_prefab": {
  4243. "__id__": 141
  4244. },
  4245. "_lpos": {
  4246. "__type__": "cc.Vec3",
  4247. "x": 0,
  4248. "y": 0,
  4249. "z": 0
  4250. },
  4251. "_lrot": {
  4252. "__type__": "cc.Quat",
  4253. "x": 0,
  4254. "y": 0,
  4255. "z": 0,
  4256. "w": 1
  4257. },
  4258. "_lscale": {
  4259. "__type__": "cc.Vec3",
  4260. "x": 1,
  4261. "y": 1,
  4262. "z": 1
  4263. },
  4264. "_layer": 33554432,
  4265. "_euler": {
  4266. "__type__": "cc.Vec3",
  4267. "x": 0,
  4268. "y": 0,
  4269. "z": 0
  4270. },
  4271. "_id": ""
  4272. },
  4273. {
  4274. "__type__": "cc.UITransformComponent",
  4275. "_name": "",
  4276. "_objFlags": 0,
  4277. "node": {
  4278. "__id__": 138
  4279. },
  4280. "_enabled": true,
  4281. "_priority": 0,
  4282. "_contentSize": {
  4283. "__type__": "cc.Size",
  4284. "width": 480,
  4285. "height": 50.4
  4286. },
  4287. "_anchorPoint": {
  4288. "__type__": "cc.Vec2",
  4289. "x": 0.5,
  4290. "y": 0.5
  4291. },
  4292. "_id": ""
  4293. },
  4294. {
  4295. "__type__": "cc.LabelComponent",
  4296. "_name": "",
  4297. "_objFlags": 0,
  4298. "node": {
  4299. "__id__": 138
  4300. },
  4301. "_enabled": true,
  4302. "_srcBlendFactor": 2,
  4303. "_dstBlendFactor": 4,
  4304. "_color": {
  4305. "__type__": "cc.Color",
  4306. "r": 255,
  4307. "g": 255,
  4308. "b": 255,
  4309. "a": 255
  4310. },
  4311. "_sharedMaterial": null,
  4312. "_useOriginalSize": true,
  4313. "_string": "广告加载失败,请检查网络后再试",
  4314. "_horizontalAlign": 1,
  4315. "_verticalAlign": 1,
  4316. "_actualFontSize": 32,
  4317. "_fontSize": 32,
  4318. "_fontFamily": "Arial",
  4319. "_lineHeight": 40,
  4320. "_overflow": 0,
  4321. "_enableWrapText": true,
  4322. "_font": null,
  4323. "_isSystemFontUsed": true,
  4324. "_isItalic": false,
  4325. "_isBold": false,
  4326. "_isUnderline": false,
  4327. "_cacheMode": 0,
  4328. "_id": ""
  4329. },
  4330. {
  4331. "__type__": "cc.PrefabInfo",
  4332. "root": {
  4333. "__id__": 1
  4334. },
  4335. "asset": {
  4336. "__id__": 0
  4337. },
  4338. "fileId": "9erDGDTM5O5qxRyxs9/VLZ",
  4339. "sync": false,
  4340. "_synced": {
  4341. "default": false,
  4342. "serializable": false
  4343. }
  4344. },
  4345. {
  4346. "__type__": "cc.UITransformComponent",
  4347. "_name": "",
  4348. "_objFlags": 0,
  4349. "node": {
  4350. "__id__": 137
  4351. },
  4352. "_enabled": true,
  4353. "_priority": 0,
  4354. "_contentSize": {
  4355. "__type__": "cc.Size",
  4356. "width": 750,
  4357. "height": 250
  4358. },
  4359. "_anchorPoint": {
  4360. "__type__": "cc.Vec2",
  4361. "x": 0.5,
  4362. "y": 0.5
  4363. },
  4364. "_id": ""
  4365. },
  4366. {
  4367. "__type__": "cc.SpriteComponent",
  4368. "_name": "",
  4369. "_objFlags": 0,
  4370. "node": {
  4371. "__id__": 137
  4372. },
  4373. "_enabled": true,
  4374. "_srcBlendFactor": 2,
  4375. "_dstBlendFactor": 4,
  4376. "_color": {
  4377. "__type__": "cc.Color",
  4378. "r": 255,
  4379. "g": 255,
  4380. "b": 255,
  4381. "a": 255
  4382. },
  4383. "_sharedMaterial": null,
  4384. "_spriteFrame": {
  4385. "__uuid__": "91741946-403d-4e33-9e07-d6f85b0a0086@f9941"
  4386. },
  4387. "_type": 1,
  4388. "_fillType": 0,
  4389. "_sizeMode": 0,
  4390. "_fillCenter": {
  4391. "__type__": "cc.Vec2",
  4392. "x": 0,
  4393. "y": 0
  4394. },
  4395. "_fillStart": 0,
  4396. "_fillRange": 0,
  4397. "_isTrimmedMode": true,
  4398. "_useGrayscale": false,
  4399. "_atlas": null,
  4400. "_id": ""
  4401. },
  4402. {
  4403. "__type__": "cc.UIOpacityComponent",
  4404. "_name": "",
  4405. "_objFlags": 0,
  4406. "node": {
  4407. "__id__": 137
  4408. },
  4409. "_enabled": true,
  4410. "_opacity": 200,
  4411. "_id": ""
  4412. },
  4413. {
  4414. "__type__": "cc.PrefabInfo",
  4415. "root": {
  4416. "__id__": 1
  4417. },
  4418. "asset": {
  4419. "__id__": 0
  4420. },
  4421. "fileId": "caaJfaGs9AHYKUEQSfKMuc",
  4422. "sync": false,
  4423. "_synced": {
  4424. "default": false,
  4425. "serializable": false
  4426. }
  4427. },
  4428. {
  4429. "__type__": "cc.Node",
  4430. "_name": "design",
  4431. "_objFlags": 0,
  4432. "_parent": {
  4433. "__id__": 1
  4434. },
  4435. "_children": [],
  4436. "_active": false,
  4437. "_components": [
  4438. {
  4439. "__id__": 147
  4440. },
  4441. {
  4442. "__id__": 148
  4443. },
  4444. {
  4445. "__id__": 149
  4446. }
  4447. ],
  4448. "_prefab": {
  4449. "__id__": 150
  4450. },
  4451. "_lpos": {
  4452. "__type__": "cc.Vec3",
  4453. "x": 0,
  4454. "y": 0,
  4455. "z": 0
  4456. },
  4457. "_lrot": {
  4458. "__type__": "cc.Quat",
  4459. "x": 0,
  4460. "y": 0,
  4461. "z": 0,
  4462. "w": 1
  4463. },
  4464. "_lscale": {
  4465. "__type__": "cc.Vec3",
  4466. "x": 1,
  4467. "y": 1,
  4468. "z": 1
  4469. },
  4470. "_layer": 33554432,
  4471. "_euler": {
  4472. "__type__": "cc.Vec3",
  4473. "x": 0,
  4474. "y": 0,
  4475. "z": 0
  4476. },
  4477. "_id": ""
  4478. },
  4479. {
  4480. "__type__": "cc.UITransformComponent",
  4481. "_name": "",
  4482. "_objFlags": 0,
  4483. "node": {
  4484. "__id__": 146
  4485. },
  4486. "_enabled": true,
  4487. "_priority": 0,
  4488. "_contentSize": {
  4489. "__type__": "cc.Size",
  4490. "width": 750,
  4491. "height": 1334
  4492. },
  4493. "_anchorPoint": {
  4494. "__type__": "cc.Vec2",
  4495. "x": 0.5,
  4496. "y": 0.5
  4497. },
  4498. "_id": ""
  4499. },
  4500. {
  4501. "__type__": "cc.SpriteComponent",
  4502. "_name": "",
  4503. "_objFlags": 0,
  4504. "node": {
  4505. "__id__": 146
  4506. },
  4507. "_enabled": true,
  4508. "_srcBlendFactor": 2,
  4509. "_dstBlendFactor": 4,
  4510. "_color": {
  4511. "__type__": "cc.Color",
  4512. "r": 255,
  4513. "g": 255,
  4514. "b": 255,
  4515. "a": 255
  4516. },
  4517. "_sharedMaterial": null,
  4518. "_spriteFrame": {
  4519. "__uuid__": "1418eb87-22f2-4edb-aaaf-b3a6c3297bc5@f9941"
  4520. },
  4521. "_type": 0,
  4522. "_fillType": 0,
  4523. "_sizeMode": 1,
  4524. "_fillCenter": {
  4525. "__type__": "cc.Vec2",
  4526. "x": 0,
  4527. "y": 0
  4528. },
  4529. "_fillStart": 0,
  4530. "_fillRange": 0,
  4531. "_isTrimmedMode": true,
  4532. "_useGrayscale": false,
  4533. "_atlas": null,
  4534. "_id": ""
  4535. },
  4536. {
  4537. "__type__": "cc.UIOpacityComponent",
  4538. "_name": "",
  4539. "_objFlags": 0,
  4540. "node": {
  4541. "__id__": 146
  4542. },
  4543. "_enabled": true,
  4544. "_opacity": 50,
  4545. "_id": ""
  4546. },
  4547. {
  4548. "__type__": "cc.PrefabInfo",
  4549. "root": {
  4550. "__id__": 1
  4551. },
  4552. "asset": {
  4553. "__id__": 0
  4554. },
  4555. "fileId": "d4bst+X8xLPZtijNzxistm",
  4556. "sync": false,
  4557. "_synced": {
  4558. "default": false,
  4559. "serializable": false
  4560. }
  4561. },
  4562. {
  4563. "__type__": "cc.UITransformComponent",
  4564. "_name": "GameOverUI<UITransformComponent>",
  4565. "_objFlags": 0,
  4566. "node": {
  4567. "__id__": 1
  4568. },
  4569. "_enabled": true,
  4570. "_priority": 0,
  4571. "_contentSize": {
  4572. "__type__": "cc.Size",
  4573. "width": 750,
  4574. "height": 1334
  4575. },
  4576. "_anchorPoint": {
  4577. "__type__": "cc.Vec2",
  4578. "x": 0.5,
  4579. "y": 0.5
  4580. },
  4581. "_id": ""
  4582. },
  4583. {
  4584. "__type__": "cc.WidgetComponent",
  4585. "_name": "GameOverUI<WidgetComponent>",
  4586. "_objFlags": 0,
  4587. "node": {
  4588. "__id__": 1
  4589. },
  4590. "_enabled": true,
  4591. "_alignFlags": 45,
  4592. "_target": null,
  4593. "_left": 0,
  4594. "_right": 0,
  4595. "_top": 0,
  4596. "_bottom": 0,
  4597. "_horizontalCenter": 0,
  4598. "_verticalCenter": 0,
  4599. "_isAbsLeft": true,
  4600. "_isAbsRight": true,
  4601. "_isAbsTop": true,
  4602. "_isAbsBottom": true,
  4603. "_isAbsHorizontalCenter": true,
  4604. "_isAbsVerticalCenter": true,
  4605. "_originalWidth": 100,
  4606. "_originalHeight": 100,
  4607. "_alignMode": 2,
  4608. "_lockFlags": 0,
  4609. "_id": ""
  4610. },
  4611. {
  4612. "__type__": "15ec3t8BJRJTpilb3tkiwVQ",
  4613. "_name": "GameOverUI<GameOverMediator>",
  4614. "_objFlags": 0,
  4615. "node": {
  4616. "__id__": 1
  4617. },
  4618. "_enabled": true,
  4619. "WinGroup": null,
  4620. "WinAwardLabel": null,
  4621. "DefeatedGroup": null,
  4622. "WinBackButton": null,
  4623. "DefeatedBackButton": null,
  4624. "_id": ""
  4625. },
  4626. {
  4627. "__type__": "cc.PrefabInfo",
  4628. "root": {
  4629. "__id__": 1
  4630. },
  4631. "asset": {
  4632. "__id__": 0
  4633. },
  4634. "fileId": "1dC1OKH5tEvpVgClSi7520",
  4635. "sync": false,
  4636. "_synced": {
  4637. "default": false,
  4638. "serializable": false
  4639. }
  4640. }
  4641. ]