InviteRoleWindow.prefab 70 KB

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