turnable.prefab 73 KB

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