sign_view.prefab 84 KB

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