reserve.prefab 82 KB

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