ReservePopup.prefab 73 KB

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