ui_team.prefab 76 KB

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