redCode.prefab 65 KB

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