lottery_sm.prefab 74 KB

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