ReservePopup.prefab 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227
  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__": 222
  29. },
  30. {
  31. "__id__": 224
  32. },
  33. {
  34. "__id__": 226
  35. }
  36. ],
  37. "_prefab": {
  38. "__id__": 228
  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__": 217
  89. },
  90. {
  91. "__id__": 219
  92. }
  93. ],
  94. "_prefab": {
  95. "__id__": 221
  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__": 140
  984. },
  985. {
  986. "__id__": 164
  987. },
  988. {
  989. "__id__": 182
  990. },
  991. {
  992. "__id__": 200
  993. }
  994. ],
  995. "_active": true,
  996. "_components": [
  997. {
  998. "__id__": 214
  999. }
  1000. ],
  1001. "_prefab": {
  1002. "__id__": 216
  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. "removedComponents": []
  2478. },
  2479. {
  2480. "__type__": "cc.MountedComponentsInfo",
  2481. "targetInfo": {
  2482. "__id__": 118
  2483. },
  2484. "components": [
  2485. {
  2486. "__id__": 119
  2487. }
  2488. ]
  2489. },
  2490. {
  2491. "__type__": "cc.TargetInfo",
  2492. "localID": [
  2493. "8a2fQz3LhLDbefME3Uyh8s"
  2494. ]
  2495. },
  2496. {
  2497. "__type__": "545c05XsG9GDJispEGWKvYv",
  2498. "_name": "",
  2499. "_objFlags": 0,
  2500. "__editorExtras__": {
  2501. "mountedRoot": {
  2502. "__id__": 114
  2503. }
  2504. },
  2505. "node": {
  2506. "__id__": 120
  2507. },
  2508. "_enabled": true,
  2509. "__prefab": {
  2510. "__id__": 126
  2511. },
  2512. "templateMode": false,
  2513. "watchPath": "*.money",
  2514. "labelType": "cc.Label",
  2515. "watchPathArr": [],
  2516. "_id": ""
  2517. },
  2518. {
  2519. "__type__": "cc.Node",
  2520. "_name": "lab_content",
  2521. "_objFlags": 0,
  2522. "__editorExtras__": {},
  2523. "_parent": {
  2524. "__id__": 114
  2525. },
  2526. "_children": [],
  2527. "_active": true,
  2528. "_components": [
  2529. {
  2530. "__id__": 121
  2531. },
  2532. {
  2533. "__id__": 123
  2534. },
  2535. {
  2536. "__id__": 119
  2537. }
  2538. ],
  2539. "_prefab": {
  2540. "__id__": 125
  2541. },
  2542. "_lpos": {
  2543. "__type__": "cc.Vec3",
  2544. "x": -113.335,
  2545. "y": -16.702,
  2546. "z": 0
  2547. },
  2548. "_lrot": {
  2549. "__type__": "cc.Quat",
  2550. "x": 0,
  2551. "y": 0,
  2552. "z": 0,
  2553. "w": 1
  2554. },
  2555. "_lscale": {
  2556. "__type__": "cc.Vec3",
  2557. "x": 1,
  2558. "y": 1,
  2559. "z": 1
  2560. },
  2561. "_mobility": 0,
  2562. "_layer": 33554432,
  2563. "_euler": {
  2564. "__type__": "cc.Vec3",
  2565. "x": 0,
  2566. "y": 0,
  2567. "z": 0
  2568. },
  2569. "_id": ""
  2570. },
  2571. {
  2572. "__type__": "cc.UITransform",
  2573. "_name": "",
  2574. "_objFlags": 0,
  2575. "__editorExtras__": {},
  2576. "node": {
  2577. "__id__": 120
  2578. },
  2579. "_enabled": true,
  2580. "__prefab": {
  2581. "__id__": 122
  2582. },
  2583. "_contentSize": {
  2584. "__type__": "cc.Size",
  2585. "width": 56,
  2586. "height": 50.4
  2587. },
  2588. "_anchorPoint": {
  2589. "__type__": "cc.Vec2",
  2590. "x": 0,
  2591. "y": 0.5
  2592. },
  2593. "_id": ""
  2594. },
  2595. {
  2596. "__type__": "cc.CompPrefabInfo",
  2597. "fileId": "51BPKK9URIwZxTVm73y+0k"
  2598. },
  2599. {
  2600. "__type__": "cc.Label",
  2601. "_name": "",
  2602. "_objFlags": 0,
  2603. "__editorExtras__": {},
  2604. "node": {
  2605. "__id__": 120
  2606. },
  2607. "_enabled": true,
  2608. "__prefab": {
  2609. "__id__": 124
  2610. },
  2611. "_customMaterial": null,
  2612. "_srcBlendFactor": 2,
  2613. "_dstBlendFactor": 4,
  2614. "_color": {
  2615. "__type__": "cc.Color",
  2616. "r": 193,
  2617. "g": 57,
  2618. "b": 53,
  2619. "a": 255
  2620. },
  2621. "_string": "白给",
  2622. "_horizontalAlign": 1,
  2623. "_verticalAlign": 1,
  2624. "_actualFontSize": 28,
  2625. "_fontSize": 28,
  2626. "_fontFamily": "Arial",
  2627. "_lineHeight": 40,
  2628. "_overflow": 0,
  2629. "_enableWrapText": true,
  2630. "_font": null,
  2631. "_isSystemFontUsed": true,
  2632. "_spacingX": 0,
  2633. "_isItalic": false,
  2634. "_isBold": false,
  2635. "_isUnderline": false,
  2636. "_underlineHeight": 2,
  2637. "_cacheMode": 0,
  2638. "_enableOutline": false,
  2639. "_outlineColor": {
  2640. "__type__": "cc.Color",
  2641. "r": 0,
  2642. "g": 0,
  2643. "b": 0,
  2644. "a": 255
  2645. },
  2646. "_outlineWidth": 2,
  2647. "_enableShadow": false,
  2648. "_shadowColor": {
  2649. "__type__": "cc.Color",
  2650. "r": 0,
  2651. "g": 0,
  2652. "b": 0,
  2653. "a": 255
  2654. },
  2655. "_shadowOffset": {
  2656. "__type__": "cc.Vec2",
  2657. "x": 2,
  2658. "y": 2
  2659. },
  2660. "_shadowBlur": 2,
  2661. "_id": ""
  2662. },
  2663. {
  2664. "__type__": "cc.CompPrefabInfo",
  2665. "fileId": "42tntR1DFAy5Nxod6p2nth"
  2666. },
  2667. {
  2668. "__type__": "cc.PrefabInfo",
  2669. "root": {
  2670. "__id__": 1
  2671. },
  2672. "asset": {
  2673. "__id__": 0
  2674. },
  2675. "fileId": "8a2fQz3LhLDbefME3Uyh8s",
  2676. "instance": null,
  2677. "targetOverrides": null,
  2678. "nestedPrefabInstanceRoots": null
  2679. },
  2680. {
  2681. "__type__": "cc.CompPrefabInfo",
  2682. "fileId": "dcwV1DUQNBDr7VS0HnI28c"
  2683. },
  2684. {
  2685. "__type__": "CCPropertyOverrideInfo",
  2686. "targetInfo": {
  2687. "__id__": 128
  2688. },
  2689. "propertyPath": [
  2690. "_name"
  2691. ],
  2692. "value": "input_item-002"
  2693. },
  2694. {
  2695. "__type__": "cc.TargetInfo",
  2696. "localID": [
  2697. "53AM6G8hhJ6788mDYZ8O44"
  2698. ]
  2699. },
  2700. {
  2701. "__type__": "CCPropertyOverrideInfo",
  2702. "targetInfo": {
  2703. "__id__": 128
  2704. },
  2705. "propertyPath": [
  2706. "_lpos"
  2707. ],
  2708. "value": {
  2709. "__type__": "cc.Vec3",
  2710. "x": -150.363,
  2711. "y": -125.099,
  2712. "z": 0
  2713. }
  2714. },
  2715. {
  2716. "__type__": "CCPropertyOverrideInfo",
  2717. "targetInfo": {
  2718. "__id__": 128
  2719. },
  2720. "propertyPath": [
  2721. "_lrot"
  2722. ],
  2723. "value": {
  2724. "__type__": "cc.Quat",
  2725. "x": 0,
  2726. "y": 0,
  2727. "z": 0,
  2728. "w": 1
  2729. }
  2730. },
  2731. {
  2732. "__type__": "CCPropertyOverrideInfo",
  2733. "targetInfo": {
  2734. "__id__": 128
  2735. },
  2736. "propertyPath": [
  2737. "_euler"
  2738. ],
  2739. "value": {
  2740. "__type__": "cc.Vec3",
  2741. "x": 0,
  2742. "y": 0,
  2743. "z": 0
  2744. }
  2745. },
  2746. {
  2747. "__type__": "CCPropertyOverrideInfo",
  2748. "targetInfo": {
  2749. "__id__": 133
  2750. },
  2751. "propertyPath": [
  2752. "_active"
  2753. ],
  2754. "value": true
  2755. },
  2756. {
  2757. "__type__": "cc.TargetInfo",
  2758. "localID": [
  2759. "fazTQ/bglPvaTs7CDQUBSH"
  2760. ]
  2761. },
  2762. {
  2763. "__type__": "CCPropertyOverrideInfo",
  2764. "targetInfo": {
  2765. "__id__": 135
  2766. },
  2767. "propertyPath": [
  2768. "_string"
  2769. ],
  2770. "value": "提现金额*"
  2771. },
  2772. {
  2773. "__type__": "cc.TargetInfo",
  2774. "localID": [
  2775. "08cjysGvxJMLp7qtRy4dVi"
  2776. ]
  2777. },
  2778. {
  2779. "__type__": "CCPropertyOverrideInfo",
  2780. "targetInfo": {
  2781. "__id__": 137
  2782. },
  2783. "propertyPath": [
  2784. "_contentSize"
  2785. ],
  2786. "value": {
  2787. "__type__": "cc.Size",
  2788. "width": 105.33984375,
  2789. "height": 50.4
  2790. }
  2791. },
  2792. {
  2793. "__type__": "cc.TargetInfo",
  2794. "localID": [
  2795. "7f5xMiQcVIraJinSJGKm92"
  2796. ]
  2797. },
  2798. {
  2799. "__type__": "CCPropertyOverrideInfo",
  2800. "targetInfo": {
  2801. "__id__": 139
  2802. },
  2803. "propertyPath": [
  2804. "_color"
  2805. ],
  2806. "value": {
  2807. "__type__": "cc.Color",
  2808. "r": 193,
  2809. "g": 57,
  2810. "b": 53,
  2811. "a": 255
  2812. }
  2813. },
  2814. {
  2815. "__type__": "cc.TargetInfo",
  2816. "localID": [
  2817. "42tntR1DFAy5Nxod6p2nth"
  2818. ]
  2819. },
  2820. {
  2821. "__type__": "cc.Node",
  2822. "_objFlags": 0,
  2823. "_parent": {
  2824. "__id__": 39
  2825. },
  2826. "_prefab": {
  2827. "__id__": 141
  2828. },
  2829. "__editorExtras__": {}
  2830. },
  2831. {
  2832. "__type__": "cc.PrefabInfo",
  2833. "root": {
  2834. "__id__": 140
  2835. },
  2836. "asset": {
  2837. "__uuid__": "2c86a366-3c74-488c-ba54-32ec8e92a390",
  2838. "__expectedType__": "cc.Prefab"
  2839. },
  2840. "fileId": "53AM6G8hhJ6788mDYZ8O44",
  2841. "instance": {
  2842. "__id__": 142
  2843. },
  2844. "targetOverrides": null
  2845. },
  2846. {
  2847. "__type__": "cc.PrefabInstance",
  2848. "fileId": "eeBUCdxrBCx7bPfwCccSz6",
  2849. "prefabRootNode": {
  2850. "__id__": 1
  2851. },
  2852. "mountedChildren": [],
  2853. "mountedComponents": [
  2854. {
  2855. "__id__": 143
  2856. }
  2857. ],
  2858. "propertyOverrides": [
  2859. {
  2860. "__id__": 153
  2861. },
  2862. {
  2863. "__id__": 155
  2864. },
  2865. {
  2866. "__id__": 156
  2867. },
  2868. {
  2869. "__id__": 157
  2870. },
  2871. {
  2872. "__id__": 158
  2873. },
  2874. {
  2875. "__id__": 160
  2876. },
  2877. {
  2878. "__id__": 162
  2879. }
  2880. ],
  2881. "removedComponents": []
  2882. },
  2883. {
  2884. "__type__": "cc.MountedComponentsInfo",
  2885. "targetInfo": {
  2886. "__id__": 144
  2887. },
  2888. "components": [
  2889. {
  2890. "__id__": 145
  2891. }
  2892. ]
  2893. },
  2894. {
  2895. "__type__": "cc.TargetInfo",
  2896. "localID": [
  2897. "8a2fQz3LhLDbefME3Uyh8s"
  2898. ]
  2899. },
  2900. {
  2901. "__type__": "545c05XsG9GDJispEGWKvYv",
  2902. "_name": "",
  2903. "_objFlags": 0,
  2904. "__editorExtras__": {
  2905. "mountedRoot": {
  2906. "__id__": 140
  2907. }
  2908. },
  2909. "node": {
  2910. "__id__": 146
  2911. },
  2912. "_enabled": true,
  2913. "__prefab": {
  2914. "__id__": 152
  2915. },
  2916. "templateMode": false,
  2917. "watchPath": "*.time",
  2918. "labelType": "cc.Label",
  2919. "watchPathArr": [],
  2920. "_id": ""
  2921. },
  2922. {
  2923. "__type__": "cc.Node",
  2924. "_name": "lab_content",
  2925. "_objFlags": 0,
  2926. "__editorExtras__": {},
  2927. "_parent": {
  2928. "__id__": 140
  2929. },
  2930. "_children": [],
  2931. "_active": true,
  2932. "_components": [
  2933. {
  2934. "__id__": 147
  2935. },
  2936. {
  2937. "__id__": 149
  2938. },
  2939. {
  2940. "__id__": 145
  2941. }
  2942. ],
  2943. "_prefab": {
  2944. "__id__": 151
  2945. },
  2946. "_lpos": {
  2947. "__type__": "cc.Vec3",
  2948. "x": -113.335,
  2949. "y": -16.702,
  2950. "z": 0
  2951. },
  2952. "_lrot": {
  2953. "__type__": "cc.Quat",
  2954. "x": 0,
  2955. "y": 0,
  2956. "z": 0,
  2957. "w": 1
  2958. },
  2959. "_lscale": {
  2960. "__type__": "cc.Vec3",
  2961. "x": 1,
  2962. "y": 1,
  2963. "z": 1
  2964. },
  2965. "_mobility": 0,
  2966. "_layer": 33554432,
  2967. "_euler": {
  2968. "__type__": "cc.Vec3",
  2969. "x": 0,
  2970. "y": 0,
  2971. "z": 0
  2972. },
  2973. "_id": ""
  2974. },
  2975. {
  2976. "__type__": "cc.UITransform",
  2977. "_name": "",
  2978. "_objFlags": 0,
  2979. "__editorExtras__": {},
  2980. "node": {
  2981. "__id__": 146
  2982. },
  2983. "_enabled": true,
  2984. "__prefab": {
  2985. "__id__": 148
  2986. },
  2987. "_contentSize": {
  2988. "__type__": "cc.Size",
  2989. "width": 56,
  2990. "height": 50.4
  2991. },
  2992. "_anchorPoint": {
  2993. "__type__": "cc.Vec2",
  2994. "x": 0,
  2995. "y": 0.5
  2996. },
  2997. "_id": ""
  2998. },
  2999. {
  3000. "__type__": "cc.CompPrefabInfo",
  3001. "fileId": "51BPKK9URIwZxTVm73y+0k"
  3002. },
  3003. {
  3004. "__type__": "cc.Label",
  3005. "_name": "",
  3006. "_objFlags": 0,
  3007. "__editorExtras__": {},
  3008. "node": {
  3009. "__id__": 146
  3010. },
  3011. "_enabled": true,
  3012. "__prefab": {
  3013. "__id__": 150
  3014. },
  3015. "_customMaterial": null,
  3016. "_srcBlendFactor": 2,
  3017. "_dstBlendFactor": 4,
  3018. "_color": {
  3019. "__type__": "cc.Color",
  3020. "r": 32,
  3021. "g": 32,
  3022. "b": 32,
  3023. "a": 255
  3024. },
  3025. "_string": "白给",
  3026. "_horizontalAlign": 1,
  3027. "_verticalAlign": 1,
  3028. "_actualFontSize": 28,
  3029. "_fontSize": 28,
  3030. "_fontFamily": "Arial",
  3031. "_lineHeight": 40,
  3032. "_overflow": 0,
  3033. "_enableWrapText": true,
  3034. "_font": null,
  3035. "_isSystemFontUsed": true,
  3036. "_spacingX": 0,
  3037. "_isItalic": false,
  3038. "_isBold": false,
  3039. "_isUnderline": false,
  3040. "_underlineHeight": 2,
  3041. "_cacheMode": 0,
  3042. "_enableOutline": false,
  3043. "_outlineColor": {
  3044. "__type__": "cc.Color",
  3045. "r": 0,
  3046. "g": 0,
  3047. "b": 0,
  3048. "a": 255
  3049. },
  3050. "_outlineWidth": 2,
  3051. "_enableShadow": false,
  3052. "_shadowColor": {
  3053. "__type__": "cc.Color",
  3054. "r": 0,
  3055. "g": 0,
  3056. "b": 0,
  3057. "a": 255
  3058. },
  3059. "_shadowOffset": {
  3060. "__type__": "cc.Vec2",
  3061. "x": 2,
  3062. "y": 2
  3063. },
  3064. "_shadowBlur": 2,
  3065. "_id": ""
  3066. },
  3067. {
  3068. "__type__": "cc.CompPrefabInfo",
  3069. "fileId": "42tntR1DFAy5Nxod6p2nth"
  3070. },
  3071. {
  3072. "__type__": "cc.PrefabInfo",
  3073. "root": {
  3074. "__id__": 1
  3075. },
  3076. "asset": {
  3077. "__id__": 0
  3078. },
  3079. "fileId": "8a2fQz3LhLDbefME3Uyh8s",
  3080. "instance": null,
  3081. "targetOverrides": null,
  3082. "nestedPrefabInstanceRoots": null
  3083. },
  3084. {
  3085. "__type__": "cc.CompPrefabInfo",
  3086. "fileId": "68Mw5SielLW4wYClp6QPri"
  3087. },
  3088. {
  3089. "__type__": "CCPropertyOverrideInfo",
  3090. "targetInfo": {
  3091. "__id__": 154
  3092. },
  3093. "propertyPath": [
  3094. "_name"
  3095. ],
  3096. "value": "input_item-003"
  3097. },
  3098. {
  3099. "__type__": "cc.TargetInfo",
  3100. "localID": [
  3101. "53AM6G8hhJ6788mDYZ8O44"
  3102. ]
  3103. },
  3104. {
  3105. "__type__": "CCPropertyOverrideInfo",
  3106. "targetInfo": {
  3107. "__id__": 154
  3108. },
  3109. "propertyPath": [
  3110. "_lpos"
  3111. ],
  3112. "value": {
  3113. "__type__": "cc.Vec3",
  3114. "x": 145.971,
  3115. "y": -125.099,
  3116. "z": 0
  3117. }
  3118. },
  3119. {
  3120. "__type__": "CCPropertyOverrideInfo",
  3121. "targetInfo": {
  3122. "__id__": 154
  3123. },
  3124. "propertyPath": [
  3125. "_lrot"
  3126. ],
  3127. "value": {
  3128. "__type__": "cc.Quat",
  3129. "x": 0,
  3130. "y": 0,
  3131. "z": 0,
  3132. "w": 1
  3133. }
  3134. },
  3135. {
  3136. "__type__": "CCPropertyOverrideInfo",
  3137. "targetInfo": {
  3138. "__id__": 154
  3139. },
  3140. "propertyPath": [
  3141. "_euler"
  3142. ],
  3143. "value": {
  3144. "__type__": "cc.Vec3",
  3145. "x": 0,
  3146. "y": 0,
  3147. "z": 0
  3148. }
  3149. },
  3150. {
  3151. "__type__": "CCPropertyOverrideInfo",
  3152. "targetInfo": {
  3153. "__id__": 159
  3154. },
  3155. "propertyPath": [
  3156. "_active"
  3157. ],
  3158. "value": true
  3159. },
  3160. {
  3161. "__type__": "cc.TargetInfo",
  3162. "localID": [
  3163. "fazTQ/bglPvaTs7CDQUBSH"
  3164. ]
  3165. },
  3166. {
  3167. "__type__": "CCPropertyOverrideInfo",
  3168. "targetInfo": {
  3169. "__id__": 161
  3170. },
  3171. "propertyPath": [
  3172. "_string"
  3173. ],
  3174. "value": "预计打款时间*"
  3175. },
  3176. {
  3177. "__type__": "cc.TargetInfo",
  3178. "localID": [
  3179. "08cjysGvxJMLp7qtRy4dVi"
  3180. ]
  3181. },
  3182. {
  3183. "__type__": "CCPropertyOverrideInfo",
  3184. "targetInfo": {
  3185. "__id__": 163
  3186. },
  3187. "propertyPath": [
  3188. "_contentSize"
  3189. ],
  3190. "value": {
  3191. "__type__": "cc.Size",
  3192. "width": 153.33984375,
  3193. "height": 50.4
  3194. }
  3195. },
  3196. {
  3197. "__type__": "cc.TargetInfo",
  3198. "localID": [
  3199. "7f5xMiQcVIraJinSJGKm92"
  3200. ]
  3201. },
  3202. {
  3203. "__type__": "cc.Node",
  3204. "_objFlags": 0,
  3205. "_parent": {
  3206. "__id__": 39
  3207. },
  3208. "_prefab": {
  3209. "__id__": 165
  3210. },
  3211. "__editorExtras__": {}
  3212. },
  3213. {
  3214. "__type__": "cc.PrefabInfo",
  3215. "root": {
  3216. "__id__": 164
  3217. },
  3218. "asset": {
  3219. "__uuid__": "2c86a366-3c74-488c-ba54-32ec8e92a390",
  3220. "__expectedType__": "cc.Prefab"
  3221. },
  3222. "fileId": "53AM6G8hhJ6788mDYZ8O44",
  3223. "instance": {
  3224. "__id__": 166
  3225. },
  3226. "targetOverrides": null
  3227. },
  3228. {
  3229. "__type__": "cc.PrefabInstance",
  3230. "fileId": "234ykzF2tNl7nd2SE7tA5S",
  3231. "prefabRootNode": {
  3232. "__id__": 1
  3233. },
  3234. "mountedChildren": [],
  3235. "mountedComponents": [],
  3236. "propertyOverrides": [
  3237. {
  3238. "__id__": 167
  3239. },
  3240. {
  3241. "__id__": 169
  3242. },
  3243. {
  3244. "__id__": 170
  3245. },
  3246. {
  3247. "__id__": 171
  3248. },
  3249. {
  3250. "__id__": 172
  3251. },
  3252. {
  3253. "__id__": 174
  3254. },
  3255. {
  3256. "__id__": 176
  3257. },
  3258. {
  3259. "__id__": 178
  3260. },
  3261. {
  3262. "__id__": 180
  3263. }
  3264. ],
  3265. "removedComponents": []
  3266. },
  3267. {
  3268. "__type__": "CCPropertyOverrideInfo",
  3269. "targetInfo": {
  3270. "__id__": 168
  3271. },
  3272. "propertyPath": [
  3273. "_name"
  3274. ],
  3275. "value": "input_item-004"
  3276. },
  3277. {
  3278. "__type__": "cc.TargetInfo",
  3279. "localID": [
  3280. "53AM6G8hhJ6788mDYZ8O44"
  3281. ]
  3282. },
  3283. {
  3284. "__type__": "CCPropertyOverrideInfo",
  3285. "targetInfo": {
  3286. "__id__": 168
  3287. },
  3288. "propertyPath": [
  3289. "_lpos"
  3290. ],
  3291. "value": {
  3292. "__type__": "cc.Vec3",
  3293. "x": -150.363,
  3294. "y": -268.316,
  3295. "z": 0
  3296. }
  3297. },
  3298. {
  3299. "__type__": "CCPropertyOverrideInfo",
  3300. "targetInfo": {
  3301. "__id__": 168
  3302. },
  3303. "propertyPath": [
  3304. "_lrot"
  3305. ],
  3306. "value": {
  3307. "__type__": "cc.Quat",
  3308. "x": 0,
  3309. "y": 0,
  3310. "z": 0,
  3311. "w": 1
  3312. }
  3313. },
  3314. {
  3315. "__type__": "CCPropertyOverrideInfo",
  3316. "targetInfo": {
  3317. "__id__": 168
  3318. },
  3319. "propertyPath": [
  3320. "_euler"
  3321. ],
  3322. "value": {
  3323. "__type__": "cc.Vec3",
  3324. "x": 0,
  3325. "y": 0,
  3326. "z": 0
  3327. }
  3328. },
  3329. {
  3330. "__type__": "CCPropertyOverrideInfo",
  3331. "targetInfo": {
  3332. "__id__": 173
  3333. },
  3334. "propertyPath": [
  3335. "_active"
  3336. ],
  3337. "value": true
  3338. },
  3339. {
  3340. "__type__": "cc.TargetInfo",
  3341. "localID": [
  3342. "fazTQ/bglPvaTs7CDQUBSH"
  3343. ]
  3344. },
  3345. {
  3346. "__type__": "CCPropertyOverrideInfo",
  3347. "targetInfo": {
  3348. "__id__": 175
  3349. },
  3350. "propertyPath": [
  3351. "_string"
  3352. ],
  3353. "value": "打款方式*"
  3354. },
  3355. {
  3356. "__type__": "cc.TargetInfo",
  3357. "localID": [
  3358. "08cjysGvxJMLp7qtRy4dVi"
  3359. ]
  3360. },
  3361. {
  3362. "__type__": "CCPropertyOverrideInfo",
  3363. "targetInfo": {
  3364. "__id__": 177
  3365. },
  3366. "propertyPath": [
  3367. "_contentSize"
  3368. ],
  3369. "value": {
  3370. "__type__": "cc.Size",
  3371. "width": 105.33984375,
  3372. "height": 50.4
  3373. }
  3374. },
  3375. {
  3376. "__type__": "cc.TargetInfo",
  3377. "localID": [
  3378. "7f5xMiQcVIraJinSJGKm92"
  3379. ]
  3380. },
  3381. {
  3382. "__type__": "CCPropertyOverrideInfo",
  3383. "targetInfo": {
  3384. "__id__": 179
  3385. },
  3386. "propertyPath": [
  3387. "_string"
  3388. ],
  3389. "value": "微信零钱"
  3390. },
  3391. {
  3392. "__type__": "cc.TargetInfo",
  3393. "localID": [
  3394. "42tntR1DFAy5Nxod6p2nth"
  3395. ]
  3396. },
  3397. {
  3398. "__type__": "CCPropertyOverrideInfo",
  3399. "targetInfo": {
  3400. "__id__": 181
  3401. },
  3402. "propertyPath": [
  3403. "_contentSize"
  3404. ],
  3405. "value": {
  3406. "__type__": "cc.Size",
  3407. "width": 112,
  3408. "height": 50.4
  3409. }
  3410. },
  3411. {
  3412. "__type__": "cc.TargetInfo",
  3413. "localID": [
  3414. "51BPKK9URIwZxTVm73y+0k"
  3415. ]
  3416. },
  3417. {
  3418. "__type__": "cc.Node",
  3419. "_objFlags": 0,
  3420. "_parent": {
  3421. "__id__": 39
  3422. },
  3423. "_prefab": {
  3424. "__id__": 183
  3425. },
  3426. "__editorExtras__": {}
  3427. },
  3428. {
  3429. "__type__": "cc.PrefabInfo",
  3430. "root": {
  3431. "__id__": 182
  3432. },
  3433. "asset": {
  3434. "__uuid__": "2c86a366-3c74-488c-ba54-32ec8e92a390",
  3435. "__expectedType__": "cc.Prefab"
  3436. },
  3437. "fileId": "53AM6G8hhJ6788mDYZ8O44",
  3438. "instance": {
  3439. "__id__": 184
  3440. },
  3441. "targetOverrides": null
  3442. },
  3443. {
  3444. "__type__": "cc.PrefabInstance",
  3445. "fileId": "c1OI6cN6tDt7IUR0nrfQGO",
  3446. "prefabRootNode": {
  3447. "__id__": 1
  3448. },
  3449. "mountedChildren": [],
  3450. "mountedComponents": [],
  3451. "propertyOverrides": [
  3452. {
  3453. "__id__": 185
  3454. },
  3455. {
  3456. "__id__": 187
  3457. },
  3458. {
  3459. "__id__": 188
  3460. },
  3461. {
  3462. "__id__": 189
  3463. },
  3464. {
  3465. "__id__": 190
  3466. },
  3467. {
  3468. "__id__": 192
  3469. },
  3470. {
  3471. "__id__": 194
  3472. },
  3473. {
  3474. "__id__": 196
  3475. },
  3476. {
  3477. "__id__": 198
  3478. }
  3479. ],
  3480. "removedComponents": []
  3481. },
  3482. {
  3483. "__type__": "CCPropertyOverrideInfo",
  3484. "targetInfo": {
  3485. "__id__": 186
  3486. },
  3487. "propertyPath": [
  3488. "_name"
  3489. ],
  3490. "value": "input_item-005"
  3491. },
  3492. {
  3493. "__type__": "cc.TargetInfo",
  3494. "localID": [
  3495. "53AM6G8hhJ6788mDYZ8O44"
  3496. ]
  3497. },
  3498. {
  3499. "__type__": "CCPropertyOverrideInfo",
  3500. "targetInfo": {
  3501. "__id__": 186
  3502. },
  3503. "propertyPath": [
  3504. "_lpos"
  3505. ],
  3506. "value": {
  3507. "__type__": "cc.Vec3",
  3508. "x": 145.971,
  3509. "y": -268.316,
  3510. "z": 0
  3511. }
  3512. },
  3513. {
  3514. "__type__": "CCPropertyOverrideInfo",
  3515. "targetInfo": {
  3516. "__id__": 186
  3517. },
  3518. "propertyPath": [
  3519. "_lrot"
  3520. ],
  3521. "value": {
  3522. "__type__": "cc.Quat",
  3523. "x": 0,
  3524. "y": 0,
  3525. "z": 0,
  3526. "w": 1
  3527. }
  3528. },
  3529. {
  3530. "__type__": "CCPropertyOverrideInfo",
  3531. "targetInfo": {
  3532. "__id__": 186
  3533. },
  3534. "propertyPath": [
  3535. "_euler"
  3536. ],
  3537. "value": {
  3538. "__type__": "cc.Vec3",
  3539. "x": 0,
  3540. "y": 0,
  3541. "z": 0
  3542. }
  3543. },
  3544. {
  3545. "__type__": "CCPropertyOverrideInfo",
  3546. "targetInfo": {
  3547. "__id__": 191
  3548. },
  3549. "propertyPath": [
  3550. "_active"
  3551. ],
  3552. "value": true
  3553. },
  3554. {
  3555. "__type__": "cc.TargetInfo",
  3556. "localID": [
  3557. "fazTQ/bglPvaTs7CDQUBSH"
  3558. ]
  3559. },
  3560. {
  3561. "__type__": "CCPropertyOverrideInfo",
  3562. "targetInfo": {
  3563. "__id__": 193
  3564. },
  3565. "propertyPath": [
  3566. "_string"
  3567. ],
  3568. "value": "用户类型*"
  3569. },
  3570. {
  3571. "__type__": "cc.TargetInfo",
  3572. "localID": [
  3573. "08cjysGvxJMLp7qtRy4dVi"
  3574. ]
  3575. },
  3576. {
  3577. "__type__": "CCPropertyOverrideInfo",
  3578. "targetInfo": {
  3579. "__id__": 195
  3580. },
  3581. "propertyPath": [
  3582. "_contentSize"
  3583. ],
  3584. "value": {
  3585. "__type__": "cc.Size",
  3586. "width": 105.33984375,
  3587. "height": 50.4
  3588. }
  3589. },
  3590. {
  3591. "__type__": "cc.TargetInfo",
  3592. "localID": [
  3593. "7f5xMiQcVIraJinSJGKm92"
  3594. ]
  3595. },
  3596. {
  3597. "__type__": "CCPropertyOverrideInfo",
  3598. "targetInfo": {
  3599. "__id__": 197
  3600. },
  3601. "propertyPath": [
  3602. "_string"
  3603. ],
  3604. "value": "高价值优质用户"
  3605. },
  3606. {
  3607. "__type__": "cc.TargetInfo",
  3608. "localID": [
  3609. "42tntR1DFAy5Nxod6p2nth"
  3610. ]
  3611. },
  3612. {
  3613. "__type__": "CCPropertyOverrideInfo",
  3614. "targetInfo": {
  3615. "__id__": 199
  3616. },
  3617. "propertyPath": [
  3618. "_contentSize"
  3619. ],
  3620. "value": {
  3621. "__type__": "cc.Size",
  3622. "width": 196,
  3623. "height": 50.4
  3624. }
  3625. },
  3626. {
  3627. "__type__": "cc.TargetInfo",
  3628. "localID": [
  3629. "51BPKK9URIwZxTVm73y+0k"
  3630. ]
  3631. },
  3632. {
  3633. "__type__": "cc.Node",
  3634. "_name": "btn_confirm",
  3635. "_objFlags": 0,
  3636. "__editorExtras__": {},
  3637. "_parent": {
  3638. "__id__": 39
  3639. },
  3640. "_children": [
  3641. {
  3642. "__id__": 201
  3643. }
  3644. ],
  3645. "_active": true,
  3646. "_components": [
  3647. {
  3648. "__id__": 207
  3649. },
  3650. {
  3651. "__id__": 209
  3652. },
  3653. {
  3654. "__id__": 211
  3655. }
  3656. ],
  3657. "_prefab": {
  3658. "__id__": 213
  3659. },
  3660. "_lpos": {
  3661. "__type__": "cc.Vec3",
  3662. "x": 0,
  3663. "y": -444.178,
  3664. "z": 0
  3665. },
  3666. "_lrot": {
  3667. "__type__": "cc.Quat",
  3668. "x": 0,
  3669. "y": 0,
  3670. "z": 0,
  3671. "w": 1
  3672. },
  3673. "_lscale": {
  3674. "__type__": "cc.Vec3",
  3675. "x": 1,
  3676. "y": 1,
  3677. "z": 1
  3678. },
  3679. "_mobility": 0,
  3680. "_layer": 33554432,
  3681. "_euler": {
  3682. "__type__": "cc.Vec3",
  3683. "x": 0,
  3684. "y": 0,
  3685. "z": 0
  3686. },
  3687. "_id": ""
  3688. },
  3689. {
  3690. "__type__": "cc.Node",
  3691. "_name": "Label",
  3692. "_objFlags": 512,
  3693. "__editorExtras__": {},
  3694. "_parent": {
  3695. "__id__": 200
  3696. },
  3697. "_children": [],
  3698. "_active": true,
  3699. "_components": [
  3700. {
  3701. "__id__": 202
  3702. },
  3703. {
  3704. "__id__": 204
  3705. }
  3706. ],
  3707. "_prefab": {
  3708. "__id__": 206
  3709. },
  3710. "_lpos": {
  3711. "__type__": "cc.Vec3",
  3712. "x": 0,
  3713. "y": 0,
  3714. "z": 0
  3715. },
  3716. "_lrot": {
  3717. "__type__": "cc.Quat",
  3718. "x": 0,
  3719. "y": 0,
  3720. "z": 0,
  3721. "w": 1
  3722. },
  3723. "_lscale": {
  3724. "__type__": "cc.Vec3",
  3725. "x": 1,
  3726. "y": 1,
  3727. "z": 1
  3728. },
  3729. "_mobility": 0,
  3730. "_layer": 33554432,
  3731. "_euler": {
  3732. "__type__": "cc.Vec3",
  3733. "x": 0,
  3734. "y": 0,
  3735. "z": 0
  3736. },
  3737. "_id": ""
  3738. },
  3739. {
  3740. "__type__": "cc.UITransform",
  3741. "_name": "",
  3742. "_objFlags": 0,
  3743. "__editorExtras__": {},
  3744. "node": {
  3745. "__id__": 201
  3746. },
  3747. "_enabled": true,
  3748. "__prefab": {
  3749. "__id__": 203
  3750. },
  3751. "_contentSize": {
  3752. "__type__": "cc.Size",
  3753. "width": 260,
  3754. "height": 60
  3755. },
  3756. "_anchorPoint": {
  3757. "__type__": "cc.Vec2",
  3758. "x": 0.5,
  3759. "y": 0.5
  3760. },
  3761. "_id": ""
  3762. },
  3763. {
  3764. "__type__": "cc.CompPrefabInfo",
  3765. "fileId": "c2IqMBEdBNJrWZOBTyHHRR"
  3766. },
  3767. {
  3768. "__type__": "cc.Label",
  3769. "_name": "",
  3770. "_objFlags": 0,
  3771. "__editorExtras__": {},
  3772. "node": {
  3773. "__id__": 201
  3774. },
  3775. "_enabled": true,
  3776. "__prefab": {
  3777. "__id__": 205
  3778. },
  3779. "_customMaterial": null,
  3780. "_srcBlendFactor": 2,
  3781. "_dstBlendFactor": 4,
  3782. "_color": {
  3783. "__type__": "cc.Color",
  3784. "r": 255,
  3785. "g": 255,
  3786. "b": 255,
  3787. "a": 255
  3788. },
  3789. "_string": "我已确认",
  3790. "_horizontalAlign": 1,
  3791. "_verticalAlign": 1,
  3792. "_actualFontSize": 48,
  3793. "_fontSize": 48,
  3794. "_fontFamily": "Arial",
  3795. "_lineHeight": 48,
  3796. "_overflow": 1,
  3797. "_enableWrapText": false,
  3798. "_font": null,
  3799. "_isSystemFontUsed": true,
  3800. "_spacingX": 0,
  3801. "_isItalic": false,
  3802. "_isBold": true,
  3803. "_isUnderline": false,
  3804. "_underlineHeight": 2,
  3805. "_cacheMode": 0,
  3806. "_enableOutline": true,
  3807. "_outlineColor": {
  3808. "__type__": "cc.Color",
  3809. "r": 88,
  3810. "g": 42,
  3811. "b": 9,
  3812. "a": 255
  3813. },
  3814. "_outlineWidth": 4,
  3815. "_enableShadow": false,
  3816. "_shadowColor": {
  3817. "__type__": "cc.Color",
  3818. "r": 0,
  3819. "g": 0,
  3820. "b": 0,
  3821. "a": 255
  3822. },
  3823. "_shadowOffset": {
  3824. "__type__": "cc.Vec2",
  3825. "x": 2,
  3826. "y": 2
  3827. },
  3828. "_shadowBlur": 2,
  3829. "_id": ""
  3830. },
  3831. {
  3832. "__type__": "cc.CompPrefabInfo",
  3833. "fileId": "40SNrvTVREqq/wfH+klaDR"
  3834. },
  3835. {
  3836. "__type__": "cc.PrefabInfo",
  3837. "root": {
  3838. "__id__": 1
  3839. },
  3840. "asset": {
  3841. "__id__": 0
  3842. },
  3843. "fileId": "2ffq7QcTJL/6qH+qtG3TJ4",
  3844. "instance": null,
  3845. "targetOverrides": null,
  3846. "nestedPrefabInstanceRoots": null
  3847. },
  3848. {
  3849. "__type__": "cc.UITransform",
  3850. "_name": "",
  3851. "_objFlags": 0,
  3852. "__editorExtras__": {},
  3853. "node": {
  3854. "__id__": 200
  3855. },
  3856. "_enabled": true,
  3857. "__prefab": {
  3858. "__id__": 208
  3859. },
  3860. "_contentSize": {
  3861. "__type__": "cc.Size",
  3862. "width": 498,
  3863. "height": 140
  3864. },
  3865. "_anchorPoint": {
  3866. "__type__": "cc.Vec2",
  3867. "x": 0.5,
  3868. "y": 0.5
  3869. },
  3870. "_id": ""
  3871. },
  3872. {
  3873. "__type__": "cc.CompPrefabInfo",
  3874. "fileId": "3aEH/SPTRFqa7rk9VdfSls"
  3875. },
  3876. {
  3877. "__type__": "cc.Sprite",
  3878. "_name": "",
  3879. "_objFlags": 0,
  3880. "__editorExtras__": {},
  3881. "node": {
  3882. "__id__": 200
  3883. },
  3884. "_enabled": true,
  3885. "__prefab": {
  3886. "__id__": 210
  3887. },
  3888. "_customMaterial": null,
  3889. "_srcBlendFactor": 2,
  3890. "_dstBlendFactor": 4,
  3891. "_color": {
  3892. "__type__": "cc.Color",
  3893. "r": 255,
  3894. "g": 255,
  3895. "b": 255,
  3896. "a": 255
  3897. },
  3898. "_spriteFrame": {
  3899. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  3900. "__expectedType__": "cc.SpriteFrame"
  3901. },
  3902. "_type": 1,
  3903. "_fillType": 0,
  3904. "_sizeMode": 2,
  3905. "_fillCenter": {
  3906. "__type__": "cc.Vec2",
  3907. "x": 0,
  3908. "y": 0
  3909. },
  3910. "_fillStart": 0,
  3911. "_fillRange": 0,
  3912. "_isTrimmedMode": true,
  3913. "_useGrayscale": false,
  3914. "_atlas": null,
  3915. "_id": ""
  3916. },
  3917. {
  3918. "__type__": "cc.CompPrefabInfo",
  3919. "fileId": "0aAufYgO1MGbNWjgSMP/uG"
  3920. },
  3921. {
  3922. "__type__": "cc.Button",
  3923. "_name": "",
  3924. "_objFlags": 0,
  3925. "__editorExtras__": {},
  3926. "node": {
  3927. "__id__": 200
  3928. },
  3929. "_enabled": true,
  3930. "__prefab": {
  3931. "__id__": 212
  3932. },
  3933. "clickEvents": [],
  3934. "_interactable": true,
  3935. "_transition": 3,
  3936. "_normalColor": {
  3937. "__type__": "cc.Color",
  3938. "r": 214,
  3939. "g": 214,
  3940. "b": 214,
  3941. "a": 255
  3942. },
  3943. "_hoverColor": {
  3944. "__type__": "cc.Color",
  3945. "r": 211,
  3946. "g": 211,
  3947. "b": 211,
  3948. "a": 255
  3949. },
  3950. "_pressedColor": {
  3951. "__type__": "cc.Color",
  3952. "r": 255,
  3953. "g": 255,
  3954. "b": 255,
  3955. "a": 255
  3956. },
  3957. "_disabledColor": {
  3958. "__type__": "cc.Color",
  3959. "r": 124,
  3960. "g": 124,
  3961. "b": 124,
  3962. "a": 255
  3963. },
  3964. "_normalSprite": {
  3965. "__uuid__": "e8764bc7-2f97-4e71-a73b-a525a89d1855@f9941",
  3966. "__expectedType__": "cc.SpriteFrame"
  3967. },
  3968. "_hoverSprite": null,
  3969. "_pressedSprite": null,
  3970. "_disabledSprite": null,
  3971. "_duration": 0.1,
  3972. "_zoomScale": 1.2,
  3973. "_target": {
  3974. "__id__": 200
  3975. },
  3976. "_id": ""
  3977. },
  3978. {
  3979. "__type__": "cc.CompPrefabInfo",
  3980. "fileId": "24PuuhKL1GE7hRNPUIwgbG"
  3981. },
  3982. {
  3983. "__type__": "cc.PrefabInfo",
  3984. "root": {
  3985. "__id__": 1
  3986. },
  3987. "asset": {
  3988. "__id__": 0
  3989. },
  3990. "fileId": "f8ziyy3XlAw4mlk6ON+GxE",
  3991. "instance": null,
  3992. "targetOverrides": null,
  3993. "nestedPrefabInstanceRoots": null
  3994. },
  3995. {
  3996. "__type__": "cc.UITransform",
  3997. "_name": "",
  3998. "_objFlags": 0,
  3999. "__editorExtras__": {},
  4000. "node": {
  4001. "__id__": 39
  4002. },
  4003. "_enabled": true,
  4004. "__prefab": {
  4005. "__id__": 215
  4006. },
  4007. "_contentSize": {
  4008. "__type__": "cc.Size",
  4009. "width": 720,
  4010. "height": 600
  4011. },
  4012. "_anchorPoint": {
  4013. "__type__": "cc.Vec2",
  4014. "x": 0.5,
  4015. "y": 0.5
  4016. },
  4017. "_id": ""
  4018. },
  4019. {
  4020. "__type__": "cc.CompPrefabInfo",
  4021. "fileId": "c1bF8DDmFD56O/332beRk1"
  4022. },
  4023. {
  4024. "__type__": "cc.PrefabInfo",
  4025. "root": {
  4026. "__id__": 1
  4027. },
  4028. "asset": {
  4029. "__id__": 0
  4030. },
  4031. "fileId": "754OIL0A9IGpD66SVF0dAV",
  4032. "instance": null,
  4033. "targetOverrides": null,
  4034. "nestedPrefabInstanceRoots": null
  4035. },
  4036. {
  4037. "__type__": "cc.UITransform",
  4038. "_name": "",
  4039. "_objFlags": 0,
  4040. "__editorExtras__": {},
  4041. "node": {
  4042. "__id__": 2
  4043. },
  4044. "_enabled": true,
  4045. "__prefab": {
  4046. "__id__": 218
  4047. },
  4048. "_contentSize": {
  4049. "__type__": "cc.Size",
  4050. "width": 720,
  4051. "height": 1600.0000000000002
  4052. },
  4053. "_anchorPoint": {
  4054. "__type__": "cc.Vec2",
  4055. "x": 0.5,
  4056. "y": 0.5
  4057. },
  4058. "_id": ""
  4059. },
  4060. {
  4061. "__type__": "cc.CompPrefabInfo",
  4062. "fileId": "0dFjXHNf1Lnqd6YN7w+C43"
  4063. },
  4064. {
  4065. "__type__": "cc.Widget",
  4066. "_name": "",
  4067. "_objFlags": 0,
  4068. "__editorExtras__": {},
  4069. "node": {
  4070. "__id__": 2
  4071. },
  4072. "_enabled": true,
  4073. "__prefab": {
  4074. "__id__": 220
  4075. },
  4076. "_alignFlags": 45,
  4077. "_target": null,
  4078. "_left": 0,
  4079. "_right": 0,
  4080. "_top": 0,
  4081. "_bottom": 0,
  4082. "_horizontalCenter": 0,
  4083. "_verticalCenter": 0,
  4084. "_isAbsLeft": true,
  4085. "_isAbsRight": true,
  4086. "_isAbsTop": true,
  4087. "_isAbsBottom": true,
  4088. "_isAbsHorizontalCenter": true,
  4089. "_isAbsVerticalCenter": true,
  4090. "_originalWidth": 720,
  4091. "_originalHeight": 1280,
  4092. "_alignMode": 2,
  4093. "_lockFlags": 0,
  4094. "_id": ""
  4095. },
  4096. {
  4097. "__type__": "cc.CompPrefabInfo",
  4098. "fileId": "0coEzhOEFGQ4LpL4xYRZ+c"
  4099. },
  4100. {
  4101. "__type__": "cc.PrefabInfo",
  4102. "root": {
  4103. "__id__": 1
  4104. },
  4105. "asset": {
  4106. "__id__": 0
  4107. },
  4108. "fileId": "21I7zHPApMnZX7LGb73K+y",
  4109. "instance": null,
  4110. "targetOverrides": null,
  4111. "nestedPrefabInstanceRoots": null
  4112. },
  4113. {
  4114. "__type__": "cc.UITransform",
  4115. "_name": "",
  4116. "_objFlags": 0,
  4117. "__editorExtras__": {},
  4118. "node": {
  4119. "__id__": 1
  4120. },
  4121. "_enabled": true,
  4122. "__prefab": {
  4123. "__id__": 223
  4124. },
  4125. "_contentSize": {
  4126. "__type__": "cc.Size",
  4127. "width": 720,
  4128. "height": 1600.0000000000002
  4129. },
  4130. "_anchorPoint": {
  4131. "__type__": "cc.Vec2",
  4132. "x": 0.5,
  4133. "y": 0.5
  4134. },
  4135. "_id": ""
  4136. },
  4137. {
  4138. "__type__": "cc.CompPrefabInfo",
  4139. "fileId": "db0a8+bcxNmYnnSV2+Tzt0"
  4140. },
  4141. {
  4142. "__type__": "cc.Widget",
  4143. "_name": "",
  4144. "_objFlags": 0,
  4145. "__editorExtras__": {},
  4146. "node": {
  4147. "__id__": 1
  4148. },
  4149. "_enabled": true,
  4150. "__prefab": {
  4151. "__id__": 225
  4152. },
  4153. "_alignFlags": 45,
  4154. "_target": null,
  4155. "_left": 0,
  4156. "_right": 0,
  4157. "_top": 0,
  4158. "_bottom": 0,
  4159. "_horizontalCenter": 0,
  4160. "_verticalCenter": 0,
  4161. "_isAbsLeft": true,
  4162. "_isAbsRight": true,
  4163. "_isAbsTop": true,
  4164. "_isAbsBottom": true,
  4165. "_isAbsHorizontalCenter": true,
  4166. "_isAbsVerticalCenter": true,
  4167. "_originalWidth": 720,
  4168. "_originalHeight": 1280,
  4169. "_alignMode": 2,
  4170. "_lockFlags": 0,
  4171. "_id": ""
  4172. },
  4173. {
  4174. "__type__": "cc.CompPrefabInfo",
  4175. "fileId": "beeMZCsvxPwbIkqTbVM49Y"
  4176. },
  4177. {
  4178. "__type__": "44ac5w4APJH05VH9K+HLAWJ",
  4179. "_name": "",
  4180. "_objFlags": 0,
  4181. "__editorExtras__": {},
  4182. "node": {
  4183. "__id__": 1
  4184. },
  4185. "_enabled": true,
  4186. "__prefab": {
  4187. "__id__": 227
  4188. },
  4189. "_id": ""
  4190. },
  4191. {
  4192. "__type__": "cc.CompPrefabInfo",
  4193. "fileId": "d0Lrli7VBHWrn6JA5E9gD0"
  4194. },
  4195. {
  4196. "__type__": "cc.PrefabInfo",
  4197. "root": {
  4198. "__id__": 1
  4199. },
  4200. "asset": {
  4201. "__id__": 0
  4202. },
  4203. "fileId": "b0Z3sUGwxEvbhmBU7xTeKS",
  4204. "instance": null,
  4205. "targetOverrides": null,
  4206. "nestedPrefabInstanceRoots": [
  4207. {
  4208. "__id__": 182
  4209. },
  4210. {
  4211. "__id__": 164
  4212. },
  4213. {
  4214. "__id__": 140
  4215. },
  4216. {
  4217. "__id__": 114
  4218. },
  4219. {
  4220. "__id__": 86
  4221. },
  4222. {
  4223. "__id__": 64
  4224. }
  4225. ]
  4226. }
  4227. ]