BattleFriendItem.prefab 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "BattleFriendItem",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 10
  24. },
  25. {
  26. "__id__": 50
  27. },
  28. {
  29. "__id__": 70
  30. },
  31. {
  32. "__id__": 93
  33. },
  34. {
  35. "__id__": 112
  36. },
  37. {
  38. "__id__": 131
  39. },
  40. {
  41. "__id__": 150
  42. }
  43. ],
  44. "_active": true,
  45. "_components": [
  46. {
  47. "__id__": 156
  48. },
  49. {
  50. "__id__": 158
  51. },
  52. {
  53. "__id__": 160
  54. }
  55. ],
  56. "_prefab": {
  57. "__id__": 162
  58. },
  59. "_lpos": {
  60. "__type__": "cc.Vec3",
  61. "x": 0,
  62. "y": 0,
  63. "z": 0
  64. },
  65. "_lrot": {
  66. "__type__": "cc.Quat",
  67. "x": 0,
  68. "y": 0,
  69. "z": 0,
  70. "w": 1
  71. },
  72. "_lscale": {
  73. "__type__": "cc.Vec3",
  74. "x": 1,
  75. "y": 1,
  76. "z": 1
  77. },
  78. "_layer": 1073741824,
  79. "_euler": {
  80. "__type__": "cc.Vec3",
  81. "x": 0,
  82. "y": 0,
  83. "z": 0
  84. },
  85. "_id": ""
  86. },
  87. {
  88. "__type__": "cc.Node",
  89. "_name": "背景",
  90. "_objFlags": 0,
  91. "_parent": {
  92. "__id__": 1
  93. },
  94. "_children": [],
  95. "_active": true,
  96. "_components": [
  97. {
  98. "__id__": 3
  99. },
  100. {
  101. "__id__": 5
  102. },
  103. {
  104. "__id__": 7
  105. }
  106. ],
  107. "_prefab": {
  108. "__id__": 9
  109. },
  110. "_lpos": {
  111. "__type__": "cc.Vec3",
  112. "x": 0,
  113. "y": 0,
  114. "z": 0
  115. },
  116. "_lrot": {
  117. "__type__": "cc.Quat",
  118. "x": 0,
  119. "y": 0,
  120. "z": 0,
  121. "w": 1
  122. },
  123. "_lscale": {
  124. "__type__": "cc.Vec3",
  125. "x": 1,
  126. "y": 1,
  127. "z": 1
  128. },
  129. "_layer": 33554432,
  130. "_euler": {
  131. "__type__": "cc.Vec3",
  132. "x": 0,
  133. "y": 0,
  134. "z": 0
  135. },
  136. "_id": ""
  137. },
  138. {
  139. "__type__": "cc.UITransform",
  140. "_name": "",
  141. "_objFlags": 0,
  142. "node": {
  143. "__id__": 2
  144. },
  145. "_enabled": true,
  146. "__prefab": {
  147. "__id__": 4
  148. },
  149. "_priority": 0,
  150. "_contentSize": {
  151. "__type__": "cc.Size",
  152. "width": 700,
  153. "height": 160
  154. },
  155. "_anchorPoint": {
  156. "__type__": "cc.Vec2",
  157. "x": 0.5,
  158. "y": 0.5
  159. },
  160. "_id": ""
  161. },
  162. {
  163. "__type__": "cc.CompPrefabInfo",
  164. "fileId": "f7NISe7HdAD68SLfhnddy8"
  165. },
  166. {
  167. "__type__": "cc.Widget",
  168. "_name": "",
  169. "_objFlags": 0,
  170. "node": {
  171. "__id__": 2
  172. },
  173. "_enabled": true,
  174. "__prefab": {
  175. "__id__": 6
  176. },
  177. "_alignFlags": 45,
  178. "_target": null,
  179. "_left": 0,
  180. "_right": 0,
  181. "_top": 0,
  182. "_bottom": 0,
  183. "_horizontalCenter": 0,
  184. "_verticalCenter": 0,
  185. "_isAbsLeft": true,
  186. "_isAbsRight": true,
  187. "_isAbsTop": true,
  188. "_isAbsBottom": true,
  189. "_isAbsHorizontalCenter": true,
  190. "_isAbsVerticalCenter": true,
  191. "_originalWidth": 56,
  192. "_originalHeight": 59,
  193. "_alignMode": 2,
  194. "_lockFlags": 0,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.CompPrefabInfo",
  199. "fileId": "beNvR8/WhLUZmVJWpa2i+D"
  200. },
  201. {
  202. "__type__": "cc.Sprite",
  203. "_name": "",
  204. "_objFlags": 0,
  205. "node": {
  206. "__id__": 2
  207. },
  208. "_enabled": true,
  209. "__prefab": {
  210. "__id__": 8
  211. },
  212. "_visFlags": 0,
  213. "_customMaterial": null,
  214. "_srcBlendFactor": 2,
  215. "_dstBlendFactor": 4,
  216. "_color": {
  217. "__type__": "cc.Color",
  218. "r": 255,
  219. "g": 255,
  220. "b": 255,
  221. "a": 255
  222. },
  223. "_spriteFrame": {
  224. "__uuid__": "06ca670f-709c-4192-8f05-fe2b606ba747@f9941"
  225. },
  226. "_type": 1,
  227. "_fillType": 0,
  228. "_sizeMode": 0,
  229. "_fillCenter": {
  230. "__type__": "cc.Vec2",
  231. "x": 0,
  232. "y": 0
  233. },
  234. "_fillStart": 0,
  235. "_fillRange": 0,
  236. "_isTrimmedMode": true,
  237. "_useGrayscale": false,
  238. "_atlas": null,
  239. "_id": ""
  240. },
  241. {
  242. "__type__": "cc.CompPrefabInfo",
  243. "fileId": "aegbTLyyVFe7TIwbFzXcFT"
  244. },
  245. {
  246. "__type__": "cc.PrefabInfo",
  247. "root": {
  248. "__id__": 1
  249. },
  250. "asset": {
  251. "__id__": 0
  252. },
  253. "fileId": "20fEPpIQhLiJluWsHFL5uS"
  254. },
  255. {
  256. "__type__": "cc.Node",
  257. "_name": "头像组",
  258. "_objFlags": 0,
  259. "_parent": {
  260. "__id__": 1
  261. },
  262. "_children": [
  263. {
  264. "__id__": 11
  265. },
  266. {
  267. "__id__": 23
  268. },
  269. {
  270. "__id__": 29
  271. }
  272. ],
  273. "_active": true,
  274. "_components": [
  275. {
  276. "__id__": 45
  277. },
  278. {
  279. "__id__": 47
  280. }
  281. ],
  282. "_prefab": {
  283. "__id__": 49
  284. },
  285. "_lpos": {
  286. "__type__": "cc.Vec3",
  287. "x": -270,
  288. "y": 0,
  289. "z": 0
  290. },
  291. "_lrot": {
  292. "__type__": "cc.Quat",
  293. "x": 0,
  294. "y": 0,
  295. "z": 0,
  296. "w": 1
  297. },
  298. "_lscale": {
  299. "__type__": "cc.Vec3",
  300. "x": 1,
  301. "y": 1,
  302. "z": 1
  303. },
  304. "_layer": 1073741824,
  305. "_euler": {
  306. "__type__": "cc.Vec3",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0
  310. },
  311. "_id": ""
  312. },
  313. {
  314. "__type__": "cc.Node",
  315. "_name": "Mask",
  316. "_objFlags": 0,
  317. "_parent": {
  318. "__id__": 10
  319. },
  320. "_children": [
  321. {
  322. "__id__": 12
  323. }
  324. ],
  325. "_active": true,
  326. "_components": [
  327. {
  328. "__id__": 18
  329. },
  330. {
  331. "__id__": 20
  332. }
  333. ],
  334. "_prefab": {
  335. "__id__": 22
  336. },
  337. "_lpos": {
  338. "__type__": "cc.Vec3",
  339. "x": 0,
  340. "y": 0,
  341. "z": 0
  342. },
  343. "_lrot": {
  344. "__type__": "cc.Quat",
  345. "x": 0,
  346. "y": 0,
  347. "z": 0,
  348. "w": 1
  349. },
  350. "_lscale": {
  351. "__type__": "cc.Vec3",
  352. "x": 1,
  353. "y": 1,
  354. "z": 1
  355. },
  356. "_layer": 33554432,
  357. "_euler": {
  358. "__type__": "cc.Vec3",
  359. "x": 0,
  360. "y": 0,
  361. "z": 0
  362. },
  363. "_id": ""
  364. },
  365. {
  366. "__type__": "cc.Node",
  367. "_name": "头像",
  368. "_objFlags": 0,
  369. "_parent": {
  370. "__id__": 11
  371. },
  372. "_children": [],
  373. "_active": true,
  374. "_components": [
  375. {
  376. "__id__": 13
  377. },
  378. {
  379. "__id__": 15
  380. }
  381. ],
  382. "_prefab": {
  383. "__id__": 17
  384. },
  385. "_lpos": {
  386. "__type__": "cc.Vec3",
  387. "x": 0,
  388. "y": 0,
  389. "z": 0
  390. },
  391. "_lrot": {
  392. "__type__": "cc.Quat",
  393. "x": 0,
  394. "y": 0,
  395. "z": 0,
  396. "w": 1
  397. },
  398. "_lscale": {
  399. "__type__": "cc.Vec3",
  400. "x": 1,
  401. "y": 1,
  402. "z": 1
  403. },
  404. "_layer": 33554432,
  405. "_euler": {
  406. "__type__": "cc.Vec3",
  407. "x": 0,
  408. "y": 0,
  409. "z": 0
  410. },
  411. "_id": ""
  412. },
  413. {
  414. "__type__": "cc.UITransform",
  415. "_name": "",
  416. "_objFlags": 0,
  417. "node": {
  418. "__id__": 12
  419. },
  420. "_enabled": true,
  421. "__prefab": {
  422. "__id__": 14
  423. },
  424. "_priority": 0,
  425. "_contentSize": {
  426. "__type__": "cc.Size",
  427. "width": 81,
  428. "height": 101
  429. },
  430. "_anchorPoint": {
  431. "__type__": "cc.Vec2",
  432. "x": 0.5,
  433. "y": 0.5
  434. },
  435. "_id": ""
  436. },
  437. {
  438. "__type__": "cc.CompPrefabInfo",
  439. "fileId": "f7NISe7HdAD68SLfhnddy8"
  440. },
  441. {
  442. "__type__": "cc.Sprite",
  443. "_name": "",
  444. "_objFlags": 0,
  445. "node": {
  446. "__id__": 12
  447. },
  448. "_enabled": true,
  449. "__prefab": {
  450. "__id__": 16
  451. },
  452. "_visFlags": 0,
  453. "_customMaterial": null,
  454. "_srcBlendFactor": 2,
  455. "_dstBlendFactor": 4,
  456. "_color": {
  457. "__type__": "cc.Color",
  458. "r": 255,
  459. "g": 255,
  460. "b": 255,
  461. "a": 255
  462. },
  463. "_spriteFrame": {
  464. "__uuid__": "76c7d3e8-3913-43fa-99a1-ff944c7046f1@f9941"
  465. },
  466. "_type": 0,
  467. "_fillType": 0,
  468. "_sizeMode": 1,
  469. "_fillCenter": {
  470. "__type__": "cc.Vec2",
  471. "x": 0,
  472. "y": 0
  473. },
  474. "_fillStart": 0,
  475. "_fillRange": 0,
  476. "_isTrimmedMode": true,
  477. "_useGrayscale": false,
  478. "_atlas": null,
  479. "_id": ""
  480. },
  481. {
  482. "__type__": "cc.CompPrefabInfo",
  483. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  484. },
  485. {
  486. "__type__": "cc.PrefabInfo",
  487. "root": {
  488. "__id__": 1
  489. },
  490. "asset": {
  491. "__id__": 0
  492. },
  493. "fileId": "6cgBa1gyNP7oBXb5eYvKvs"
  494. },
  495. {
  496. "__type__": "cc.UITransform",
  497. "_name": "",
  498. "_objFlags": 0,
  499. "node": {
  500. "__id__": 11
  501. },
  502. "_enabled": true,
  503. "__prefab": {
  504. "__id__": 19
  505. },
  506. "_priority": 0,
  507. "_contentSize": {
  508. "__type__": "cc.Size",
  509. "width": 85,
  510. "height": 85
  511. },
  512. "_anchorPoint": {
  513. "__type__": "cc.Vec2",
  514. "x": 0.5,
  515. "y": 0.5
  516. },
  517. "_id": ""
  518. },
  519. {
  520. "__type__": "cc.CompPrefabInfo",
  521. "fileId": "85Rkr8igNOB6QSD/HtnhgH"
  522. },
  523. {
  524. "__type__": "cc.Mask",
  525. "_name": "",
  526. "_objFlags": 0,
  527. "node": {
  528. "__id__": 11
  529. },
  530. "_enabled": true,
  531. "__prefab": {
  532. "__id__": 21
  533. },
  534. "_visFlags": 0,
  535. "_customMaterial": null,
  536. "_srcBlendFactor": 2,
  537. "_dstBlendFactor": 4,
  538. "_color": {
  539. "__type__": "cc.Color",
  540. "r": 255,
  541. "g": 255,
  542. "b": 255,
  543. "a": 255
  544. },
  545. "_type": 1,
  546. "_inverted": false,
  547. "_segments": 64,
  548. "_spriteFrame": null,
  549. "_alphaThreshold": 0.1,
  550. "_id": ""
  551. },
  552. {
  553. "__type__": "cc.CompPrefabInfo",
  554. "fileId": "90TR3hptxAq7K974GgvafO"
  555. },
  556. {
  557. "__type__": "cc.PrefabInfo",
  558. "root": {
  559. "__id__": 1
  560. },
  561. "asset": {
  562. "__id__": 0
  563. },
  564. "fileId": "23vgCaICpPGJ6EfSe3unrx"
  565. },
  566. {
  567. "__type__": "cc.Node",
  568. "_name": "头像框",
  569. "_objFlags": 0,
  570. "_parent": {
  571. "__id__": 10
  572. },
  573. "_children": [],
  574. "_active": true,
  575. "_components": [
  576. {
  577. "__id__": 24
  578. },
  579. {
  580. "__id__": 26
  581. }
  582. ],
  583. "_prefab": {
  584. "__id__": 28
  585. },
  586. "_lpos": {
  587. "__type__": "cc.Vec3",
  588. "x": 0,
  589. "y": 0,
  590. "z": 0
  591. },
  592. "_lrot": {
  593. "__type__": "cc.Quat",
  594. "x": 0,
  595. "y": 0,
  596. "z": 0,
  597. "w": 1
  598. },
  599. "_lscale": {
  600. "__type__": "cc.Vec3",
  601. "x": 1,
  602. "y": 1,
  603. "z": 1
  604. },
  605. "_layer": 33554432,
  606. "_euler": {
  607. "__type__": "cc.Vec3",
  608. "x": 0,
  609. "y": 0,
  610. "z": 0
  611. },
  612. "_id": ""
  613. },
  614. {
  615. "__type__": "cc.UITransform",
  616. "_name": "",
  617. "_objFlags": 0,
  618. "node": {
  619. "__id__": 23
  620. },
  621. "_enabled": true,
  622. "__prefab": {
  623. "__id__": 25
  624. },
  625. "_priority": 0,
  626. "_contentSize": {
  627. "__type__": "cc.Size",
  628. "width": 95,
  629. "height": 95
  630. },
  631. "_anchorPoint": {
  632. "__type__": "cc.Vec2",
  633. "x": 0.5,
  634. "y": 0.5
  635. },
  636. "_id": ""
  637. },
  638. {
  639. "__type__": "cc.CompPrefabInfo",
  640. "fileId": "f7NISe7HdAD68SLfhnddy8"
  641. },
  642. {
  643. "__type__": "cc.Sprite",
  644. "_name": "",
  645. "_objFlags": 0,
  646. "node": {
  647. "__id__": 23
  648. },
  649. "_enabled": true,
  650. "__prefab": {
  651. "__id__": 27
  652. },
  653. "_visFlags": 0,
  654. "_customMaterial": null,
  655. "_srcBlendFactor": 2,
  656. "_dstBlendFactor": 4,
  657. "_color": {
  658. "__type__": "cc.Color",
  659. "r": 255,
  660. "g": 255,
  661. "b": 255,
  662. "a": 255
  663. },
  664. "_spriteFrame": {
  665. "__uuid__": "05a89957-8077-40ff-a290-01b282d093dd@f9941"
  666. },
  667. "_type": 0,
  668. "_fillType": 0,
  669. "_sizeMode": 1,
  670. "_fillCenter": {
  671. "__type__": "cc.Vec2",
  672. "x": 0,
  673. "y": 0
  674. },
  675. "_fillStart": 0,
  676. "_fillRange": 0,
  677. "_isTrimmedMode": true,
  678. "_useGrayscale": false,
  679. "_atlas": null,
  680. "_id": ""
  681. },
  682. {
  683. "__type__": "cc.CompPrefabInfo",
  684. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  685. },
  686. {
  687. "__type__": "cc.PrefabInfo",
  688. "root": {
  689. "__id__": 1
  690. },
  691. "asset": {
  692. "__id__": 0
  693. },
  694. "fileId": "96WPKcAY9CKopSbmdl7KIY"
  695. },
  696. {
  697. "__type__": "cc.Node",
  698. "_name": "好友标识",
  699. "_objFlags": 0,
  700. "_parent": {
  701. "__id__": 10
  702. },
  703. "_children": [
  704. {
  705. "__id__": 30
  706. },
  707. {
  708. "__id__": 36
  709. }
  710. ],
  711. "_active": true,
  712. "_components": [
  713. {
  714. "__id__": 42
  715. }
  716. ],
  717. "_prefab": {
  718. "__id__": 44
  719. },
  720. "_lpos": {
  721. "__type__": "cc.Vec3",
  722. "x": -40,
  723. "y": -25,
  724. "z": 0
  725. },
  726. "_lrot": {
  727. "__type__": "cc.Quat",
  728. "x": 0,
  729. "y": 0,
  730. "z": 0,
  731. "w": 1
  732. },
  733. "_lscale": {
  734. "__type__": "cc.Vec3",
  735. "x": 1,
  736. "y": 1,
  737. "z": 1
  738. },
  739. "_layer": 33554432,
  740. "_euler": {
  741. "__type__": "cc.Vec3",
  742. "x": 0,
  743. "y": 0,
  744. "z": 0
  745. },
  746. "_id": ""
  747. },
  748. {
  749. "__type__": "cc.Node",
  750. "_name": "陌生人",
  751. "_objFlags": 0,
  752. "_parent": {
  753. "__id__": 29
  754. },
  755. "_children": [],
  756. "_active": true,
  757. "_components": [
  758. {
  759. "__id__": 31
  760. },
  761. {
  762. "__id__": 33
  763. }
  764. ],
  765. "_prefab": {
  766. "__id__": 35
  767. },
  768. "_lpos": {
  769. "__type__": "cc.Vec3",
  770. "x": 0,
  771. "y": 0,
  772. "z": 0
  773. },
  774. "_lrot": {
  775. "__type__": "cc.Quat",
  776. "x": 0,
  777. "y": 0,
  778. "z": 0,
  779. "w": 1
  780. },
  781. "_lscale": {
  782. "__type__": "cc.Vec3",
  783. "x": 1,
  784. "y": 1,
  785. "z": 1
  786. },
  787. "_layer": 33554432,
  788. "_euler": {
  789. "__type__": "cc.Vec3",
  790. "x": 0,
  791. "y": 0,
  792. "z": 0
  793. },
  794. "_id": ""
  795. },
  796. {
  797. "__type__": "cc.UITransform",
  798. "_name": "",
  799. "_objFlags": 0,
  800. "node": {
  801. "__id__": 30
  802. },
  803. "_enabled": true,
  804. "__prefab": {
  805. "__id__": 32
  806. },
  807. "_priority": 0,
  808. "_contentSize": {
  809. "__type__": "cc.Size",
  810. "width": 32,
  811. "height": 32
  812. },
  813. "_anchorPoint": {
  814. "__type__": "cc.Vec2",
  815. "x": 0.5,
  816. "y": 0.5
  817. },
  818. "_id": ""
  819. },
  820. {
  821. "__type__": "cc.CompPrefabInfo",
  822. "fileId": "90mp/xE09MFqJ++M652z3Y"
  823. },
  824. {
  825. "__type__": "cc.Sprite",
  826. "_name": "",
  827. "_objFlags": 0,
  828. "node": {
  829. "__id__": 30
  830. },
  831. "_enabled": true,
  832. "__prefab": {
  833. "__id__": 34
  834. },
  835. "_visFlags": 0,
  836. "_customMaterial": null,
  837. "_srcBlendFactor": 2,
  838. "_dstBlendFactor": 4,
  839. "_color": {
  840. "__type__": "cc.Color",
  841. "r": 255,
  842. "g": 255,
  843. "b": 255,
  844. "a": 255
  845. },
  846. "_spriteFrame": {
  847. "__uuid__": "676c4825-40e6-478a-8ef2-939c6eeba2b6@f9941"
  848. },
  849. "_type": 0,
  850. "_fillType": 0,
  851. "_sizeMode": 1,
  852. "_fillCenter": {
  853. "__type__": "cc.Vec2",
  854. "x": 0,
  855. "y": 0
  856. },
  857. "_fillStart": 0,
  858. "_fillRange": 0,
  859. "_isTrimmedMode": true,
  860. "_useGrayscale": false,
  861. "_atlas": null,
  862. "_id": ""
  863. },
  864. {
  865. "__type__": "cc.CompPrefabInfo",
  866. "fileId": "a5irXUe5NIOKOFtnc4f1dN"
  867. },
  868. {
  869. "__type__": "cc.PrefabInfo",
  870. "root": {
  871. "__id__": 1
  872. },
  873. "asset": {
  874. "__id__": 0
  875. },
  876. "fileId": "6bbPm4LSdM155InJ0VRr+M"
  877. },
  878. {
  879. "__type__": "cc.Node",
  880. "_name": "好友",
  881. "_objFlags": 0,
  882. "_parent": {
  883. "__id__": 29
  884. },
  885. "_children": [],
  886. "_active": false,
  887. "_components": [
  888. {
  889. "__id__": 37
  890. },
  891. {
  892. "__id__": 39
  893. }
  894. ],
  895. "_prefab": {
  896. "__id__": 41
  897. },
  898. "_lpos": {
  899. "__type__": "cc.Vec3",
  900. "x": 0,
  901. "y": 0,
  902. "z": 0
  903. },
  904. "_lrot": {
  905. "__type__": "cc.Quat",
  906. "x": 0,
  907. "y": 0,
  908. "z": 0,
  909. "w": 1
  910. },
  911. "_lscale": {
  912. "__type__": "cc.Vec3",
  913. "x": 1,
  914. "y": 1,
  915. "z": 1
  916. },
  917. "_layer": 33554432,
  918. "_euler": {
  919. "__type__": "cc.Vec3",
  920. "x": 0,
  921. "y": 0,
  922. "z": 0
  923. },
  924. "_id": ""
  925. },
  926. {
  927. "__type__": "cc.UITransform",
  928. "_name": "",
  929. "_objFlags": 0,
  930. "node": {
  931. "__id__": 36
  932. },
  933. "_enabled": true,
  934. "__prefab": {
  935. "__id__": 38
  936. },
  937. "_priority": 0,
  938. "_contentSize": {
  939. "__type__": "cc.Size",
  940. "width": 32,
  941. "height": 32
  942. },
  943. "_anchorPoint": {
  944. "__type__": "cc.Vec2",
  945. "x": 0.5,
  946. "y": 0.5
  947. },
  948. "_id": ""
  949. },
  950. {
  951. "__type__": "cc.CompPrefabInfo",
  952. "fileId": "f7NISe7HdAD68SLfhnddy8"
  953. },
  954. {
  955. "__type__": "cc.Sprite",
  956. "_name": "",
  957. "_objFlags": 0,
  958. "node": {
  959. "__id__": 36
  960. },
  961. "_enabled": true,
  962. "__prefab": {
  963. "__id__": 40
  964. },
  965. "_visFlags": 0,
  966. "_customMaterial": null,
  967. "_srcBlendFactor": 2,
  968. "_dstBlendFactor": 4,
  969. "_color": {
  970. "__type__": "cc.Color",
  971. "r": 255,
  972. "g": 255,
  973. "b": 255,
  974. "a": 255
  975. },
  976. "_spriteFrame": {
  977. "__uuid__": "11f90053-588c-4b13-a267-ed04a1a2fd15@f9941"
  978. },
  979. "_type": 0,
  980. "_fillType": 0,
  981. "_sizeMode": 1,
  982. "_fillCenter": {
  983. "__type__": "cc.Vec2",
  984. "x": 0,
  985. "y": 0
  986. },
  987. "_fillStart": 0,
  988. "_fillRange": 0,
  989. "_isTrimmedMode": true,
  990. "_useGrayscale": false,
  991. "_atlas": null,
  992. "_id": ""
  993. },
  994. {
  995. "__type__": "cc.CompPrefabInfo",
  996. "fileId": "e71ctEmpxFC4KlSYRZNz/a"
  997. },
  998. {
  999. "__type__": "cc.PrefabInfo",
  1000. "root": {
  1001. "__id__": 1
  1002. },
  1003. "asset": {
  1004. "__id__": 0
  1005. },
  1006. "fileId": "54EEwt4glFvpeEZySKF7Qy"
  1007. },
  1008. {
  1009. "__type__": "cc.UITransform",
  1010. "_name": "",
  1011. "_objFlags": 0,
  1012. "node": {
  1013. "__id__": 29
  1014. },
  1015. "_enabled": true,
  1016. "__prefab": {
  1017. "__id__": 43
  1018. },
  1019. "_priority": 0,
  1020. "_contentSize": {
  1021. "__type__": "cc.Size",
  1022. "width": 33,
  1023. "height": 35
  1024. },
  1025. "_anchorPoint": {
  1026. "__type__": "cc.Vec2",
  1027. "x": 0.5,
  1028. "y": 0.5
  1029. },
  1030. "_id": ""
  1031. },
  1032. {
  1033. "__type__": "cc.CompPrefabInfo",
  1034. "fileId": "f7NISe7HdAD68SLfhnddy8"
  1035. },
  1036. {
  1037. "__type__": "cc.PrefabInfo",
  1038. "root": {
  1039. "__id__": 1
  1040. },
  1041. "asset": {
  1042. "__id__": 0
  1043. },
  1044. "fileId": "ddFL3tWlRJk62dHiVWW3ir"
  1045. },
  1046. {
  1047. "__type__": "cc.UITransform",
  1048. "_name": "",
  1049. "_objFlags": 0,
  1050. "node": {
  1051. "__id__": 10
  1052. },
  1053. "_enabled": true,
  1054. "__prefab": {
  1055. "__id__": 46
  1056. },
  1057. "_priority": 0,
  1058. "_contentSize": {
  1059. "__type__": "cc.Size",
  1060. "width": 100,
  1061. "height": 100
  1062. },
  1063. "_anchorPoint": {
  1064. "__type__": "cc.Vec2",
  1065. "x": 0.5,
  1066. "y": 0.5
  1067. },
  1068. "_id": ""
  1069. },
  1070. {
  1071. "__type__": "cc.CompPrefabInfo",
  1072. "fileId": "9db9BdCxBJyZO0MKsFU/E+"
  1073. },
  1074. {
  1075. "__type__": "cc.Widget",
  1076. "_name": "",
  1077. "_objFlags": 0,
  1078. "node": {
  1079. "__id__": 10
  1080. },
  1081. "_enabled": true,
  1082. "__prefab": {
  1083. "__id__": 48
  1084. },
  1085. "_alignFlags": 10,
  1086. "_target": null,
  1087. "_left": 30,
  1088. "_right": 0,
  1089. "_top": 0,
  1090. "_bottom": 0,
  1091. "_horizontalCenter": 0,
  1092. "_verticalCenter": 0,
  1093. "_isAbsLeft": true,
  1094. "_isAbsRight": true,
  1095. "_isAbsTop": true,
  1096. "_isAbsBottom": true,
  1097. "_isAbsHorizontalCenter": true,
  1098. "_isAbsVerticalCenter": true,
  1099. "_originalWidth": 0,
  1100. "_originalHeight": 0,
  1101. "_alignMode": 2,
  1102. "_lockFlags": 0,
  1103. "_id": ""
  1104. },
  1105. {
  1106. "__type__": "cc.CompPrefabInfo",
  1107. "fileId": "711w3rtbdAN4rdymcrD/H/"
  1108. },
  1109. {
  1110. "__type__": "cc.PrefabInfo",
  1111. "root": {
  1112. "__id__": 1
  1113. },
  1114. "asset": {
  1115. "__id__": 0
  1116. },
  1117. "fileId": "808/SmkfRJHoRQY6uqpAUc"
  1118. },
  1119. {
  1120. "__type__": "cc.Node",
  1121. "_name": "用户信息",
  1122. "_objFlags": 0,
  1123. "_parent": {
  1124. "__id__": 1
  1125. },
  1126. "_children": [
  1127. {
  1128. "__id__": 51
  1129. },
  1130. {
  1131. "__id__": 57
  1132. }
  1133. ],
  1134. "_active": true,
  1135. "_components": [
  1136. {
  1137. "__id__": 63
  1138. },
  1139. {
  1140. "__id__": 65
  1141. },
  1142. {
  1143. "__id__": 67
  1144. }
  1145. ],
  1146. "_prefab": {
  1147. "__id__": 69
  1148. },
  1149. "_lpos": {
  1150. "__type__": "cc.Vec3",
  1151. "x": -110,
  1152. "y": 0,
  1153. "z": 0
  1154. },
  1155. "_lrot": {
  1156. "__type__": "cc.Quat",
  1157. "x": 0,
  1158. "y": 0,
  1159. "z": 0,
  1160. "w": 1
  1161. },
  1162. "_lscale": {
  1163. "__type__": "cc.Vec3",
  1164. "x": 1,
  1165. "y": 1,
  1166. "z": 1
  1167. },
  1168. "_layer": 1073741824,
  1169. "_euler": {
  1170. "__type__": "cc.Vec3",
  1171. "x": 0,
  1172. "y": 0,
  1173. "z": 0
  1174. },
  1175. "_id": ""
  1176. },
  1177. {
  1178. "__type__": "cc.Node",
  1179. "_name": "名字",
  1180. "_objFlags": 0,
  1181. "_parent": {
  1182. "__id__": 50
  1183. },
  1184. "_children": [],
  1185. "_active": true,
  1186. "_components": [
  1187. {
  1188. "__id__": 52
  1189. },
  1190. {
  1191. "__id__": 54
  1192. }
  1193. ],
  1194. "_prefab": {
  1195. "__id__": 56
  1196. },
  1197. "_lpos": {
  1198. "__type__": "cc.Vec3",
  1199. "x": 0,
  1200. "y": 15.120000000000001,
  1201. "z": 0
  1202. },
  1203. "_lrot": {
  1204. "__type__": "cc.Quat",
  1205. "x": 0,
  1206. "y": 0,
  1207. "z": 0,
  1208. "w": 1
  1209. },
  1210. "_lscale": {
  1211. "__type__": "cc.Vec3",
  1212. "x": 1,
  1213. "y": 1,
  1214. "z": 1
  1215. },
  1216. "_layer": 33554432,
  1217. "_euler": {
  1218. "__type__": "cc.Vec3",
  1219. "x": 0,
  1220. "y": 0,
  1221. "z": 0
  1222. },
  1223. "_id": ""
  1224. },
  1225. {
  1226. "__type__": "cc.UITransform",
  1227. "_name": "",
  1228. "_objFlags": 0,
  1229. "node": {
  1230. "__id__": 51
  1231. },
  1232. "_enabled": true,
  1233. "__prefab": {
  1234. "__id__": 53
  1235. },
  1236. "_priority": 0,
  1237. "_contentSize": {
  1238. "__type__": "cc.Size",
  1239. "width": 200,
  1240. "height": 30.240000000000002
  1241. },
  1242. "_anchorPoint": {
  1243. "__type__": "cc.Vec2",
  1244. "x": 0.5,
  1245. "y": 0.5
  1246. },
  1247. "_id": ""
  1248. },
  1249. {
  1250. "__type__": "cc.CompPrefabInfo",
  1251. "fileId": "c68UOAlNhN171Umca6yVvF"
  1252. },
  1253. {
  1254. "__type__": "cc.Label",
  1255. "_name": "",
  1256. "_objFlags": 0,
  1257. "node": {
  1258. "__id__": 51
  1259. },
  1260. "_enabled": true,
  1261. "__prefab": {
  1262. "__id__": 55
  1263. },
  1264. "_visFlags": 0,
  1265. "_customMaterial": null,
  1266. "_srcBlendFactor": 2,
  1267. "_dstBlendFactor": 4,
  1268. "_color": {
  1269. "__type__": "cc.Color",
  1270. "r": 183,
  1271. "g": 51,
  1272. "b": 31,
  1273. "a": 255
  1274. },
  1275. "_string": "随机玩家",
  1276. "_horizontalAlign": 0,
  1277. "_verticalAlign": 1,
  1278. "_actualFontSize": 24,
  1279. "_fontSize": 24,
  1280. "_fontFamily": "Arial",
  1281. "_lineHeight": 24,
  1282. "_overflow": 3,
  1283. "_enableWrapText": true,
  1284. "_font": null,
  1285. "_isSystemFontUsed": true,
  1286. "_isItalic": false,
  1287. "_isBold": true,
  1288. "_isUnderline": false,
  1289. "_underlineHeight": 2,
  1290. "_cacheMode": 0,
  1291. "_id": ""
  1292. },
  1293. {
  1294. "__type__": "cc.CompPrefabInfo",
  1295. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1296. },
  1297. {
  1298. "__type__": "cc.PrefabInfo",
  1299. "root": {
  1300. "__id__": 1
  1301. },
  1302. "asset": {
  1303. "__id__": 0
  1304. },
  1305. "fileId": "54MkteNjpKcL3Z+n03+qLm"
  1306. },
  1307. {
  1308. "__type__": "cc.Node",
  1309. "_name": "用户等级",
  1310. "_objFlags": 0,
  1311. "_parent": {
  1312. "__id__": 50
  1313. },
  1314. "_children": [],
  1315. "_active": true,
  1316. "_components": [
  1317. {
  1318. "__id__": 58
  1319. },
  1320. {
  1321. "__id__": 60
  1322. }
  1323. ],
  1324. "_prefab": {
  1325. "__id__": 62
  1326. },
  1327. "_lpos": {
  1328. "__type__": "cc.Vec3",
  1329. "x": 0,
  1330. "y": -25.12,
  1331. "z": 0
  1332. },
  1333. "_lrot": {
  1334. "__type__": "cc.Quat",
  1335. "x": 0,
  1336. "y": 0,
  1337. "z": 0,
  1338. "w": 1
  1339. },
  1340. "_lscale": {
  1341. "__type__": "cc.Vec3",
  1342. "x": 1,
  1343. "y": 1,
  1344. "z": 1
  1345. },
  1346. "_layer": 33554432,
  1347. "_euler": {
  1348. "__type__": "cc.Vec3",
  1349. "x": 0,
  1350. "y": 0,
  1351. "z": 0
  1352. },
  1353. "_id": ""
  1354. },
  1355. {
  1356. "__type__": "cc.UITransform",
  1357. "_name": "",
  1358. "_objFlags": 0,
  1359. "node": {
  1360. "__id__": 57
  1361. },
  1362. "_enabled": true,
  1363. "__prefab": {
  1364. "__id__": 59
  1365. },
  1366. "_priority": 0,
  1367. "_contentSize": {
  1368. "__type__": "cc.Size",
  1369. "width": 200,
  1370. "height": 30.240000000000002
  1371. },
  1372. "_anchorPoint": {
  1373. "__type__": "cc.Vec2",
  1374. "x": 0.5,
  1375. "y": 0.5
  1376. },
  1377. "_id": ""
  1378. },
  1379. {
  1380. "__type__": "cc.CompPrefabInfo",
  1381. "fileId": "c68UOAlNhN171Umca6yVvF"
  1382. },
  1383. {
  1384. "__type__": "cc.Label",
  1385. "_name": "",
  1386. "_objFlags": 0,
  1387. "node": {
  1388. "__id__": 57
  1389. },
  1390. "_enabled": true,
  1391. "__prefab": {
  1392. "__id__": 61
  1393. },
  1394. "_visFlags": 0,
  1395. "_customMaterial": null,
  1396. "_srcBlendFactor": 2,
  1397. "_dstBlendFactor": 4,
  1398. "_color": {
  1399. "__type__": "cc.Color",
  1400. "r": 183,
  1401. "g": 51,
  1402. "b": 31,
  1403. "a": 255
  1404. },
  1405. "_string": "Lv.???",
  1406. "_horizontalAlign": 0,
  1407. "_verticalAlign": 1,
  1408. "_actualFontSize": 24,
  1409. "_fontSize": 24,
  1410. "_fontFamily": "Arial",
  1411. "_lineHeight": 24,
  1412. "_overflow": 3,
  1413. "_enableWrapText": true,
  1414. "_font": null,
  1415. "_isSystemFontUsed": true,
  1416. "_isItalic": false,
  1417. "_isBold": false,
  1418. "_isUnderline": false,
  1419. "_underlineHeight": 2,
  1420. "_cacheMode": 0,
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "cc.CompPrefabInfo",
  1425. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1426. },
  1427. {
  1428. "__type__": "cc.PrefabInfo",
  1429. "root": {
  1430. "__id__": 1
  1431. },
  1432. "asset": {
  1433. "__id__": 0
  1434. },
  1435. "fileId": "910MX1kRxD1LH8Lv+bf0QY"
  1436. },
  1437. {
  1438. "__type__": "cc.UITransform",
  1439. "_name": "",
  1440. "_objFlags": 0,
  1441. "node": {
  1442. "__id__": 50
  1443. },
  1444. "_enabled": true,
  1445. "__prefab": {
  1446. "__id__": 64
  1447. },
  1448. "_priority": 0,
  1449. "_contentSize": {
  1450. "__type__": "cc.Size",
  1451. "width": 200,
  1452. "height": 80.48
  1453. },
  1454. "_anchorPoint": {
  1455. "__type__": "cc.Vec2",
  1456. "x": 0.5,
  1457. "y": 0.5
  1458. },
  1459. "_id": ""
  1460. },
  1461. {
  1462. "__type__": "cc.CompPrefabInfo",
  1463. "fileId": "62tOQUv2hKt7iLMTEkTpnc"
  1464. },
  1465. {
  1466. "__type__": "cc.Layout",
  1467. "_name": "",
  1468. "_objFlags": 0,
  1469. "node": {
  1470. "__id__": 50
  1471. },
  1472. "_enabled": true,
  1473. "__prefab": {
  1474. "__id__": 66
  1475. },
  1476. "_resizeMode": 1,
  1477. "_layoutType": 2,
  1478. "_cellSize": {
  1479. "__type__": "cc.Size",
  1480. "width": 40,
  1481. "height": 40
  1482. },
  1483. "_startAxis": 0,
  1484. "_paddingLeft": 0,
  1485. "_paddingRight": 0,
  1486. "_paddingTop": 10,
  1487. "_paddingBottom": 0,
  1488. "_spacingX": 0,
  1489. "_spacingY": 10,
  1490. "_verticalDirection": 1,
  1491. "_horizontalDirection": 0,
  1492. "_constraint": 0,
  1493. "_constraintNum": 2,
  1494. "_affectedByScale": false,
  1495. "_isAlign": true,
  1496. "_id": ""
  1497. },
  1498. {
  1499. "__type__": "cc.CompPrefabInfo",
  1500. "fileId": "7e/JI32NxGpKFq1vGRfP4b"
  1501. },
  1502. {
  1503. "__type__": "cc.Widget",
  1504. "_name": "",
  1505. "_objFlags": 0,
  1506. "node": {
  1507. "__id__": 50
  1508. },
  1509. "_enabled": true,
  1510. "__prefab": {
  1511. "__id__": 68
  1512. },
  1513. "_alignFlags": 10,
  1514. "_target": null,
  1515. "_left": 140,
  1516. "_right": 0,
  1517. "_top": 0,
  1518. "_bottom": 0,
  1519. "_horizontalCenter": 0,
  1520. "_verticalCenter": 0,
  1521. "_isAbsLeft": true,
  1522. "_isAbsRight": true,
  1523. "_isAbsTop": true,
  1524. "_isAbsBottom": true,
  1525. "_isAbsHorizontalCenter": true,
  1526. "_isAbsVerticalCenter": true,
  1527. "_originalWidth": 0,
  1528. "_originalHeight": 0,
  1529. "_alignMode": 2,
  1530. "_lockFlags": 0,
  1531. "_id": ""
  1532. },
  1533. {
  1534. "__type__": "cc.CompPrefabInfo",
  1535. "fileId": "a4r/hGz9pKcZoqsuBdkmd+"
  1536. },
  1537. {
  1538. "__type__": "cc.PrefabInfo",
  1539. "root": {
  1540. "__id__": 1
  1541. },
  1542. "asset": {
  1543. "__id__": 0
  1544. },
  1545. "fileId": "c5aUc1oB1BD54DjPFTPJ9j"
  1546. },
  1547. {
  1548. "__type__": "cc.Node",
  1549. "_objFlags": 0,
  1550. "_parent": {
  1551. "__id__": 1
  1552. },
  1553. "_prefab": {
  1554. "__id__": 71
  1555. },
  1556. "_id": ""
  1557. },
  1558. {
  1559. "__type__": "cc.PrefabInfo",
  1560. "root": {
  1561. "__id__": 70
  1562. },
  1563. "asset": {
  1564. "__uuid__": "4b484e4e-9f97-44b3-8aaa-6ad7fd3396c1"
  1565. },
  1566. "fileId": "deX7d8FMlICLW4YAklE75J",
  1567. "instance": {
  1568. "__id__": 72
  1569. }
  1570. },
  1571. {
  1572. "__type__": "cc.PrefabInstance",
  1573. "fileId": "c5axPW2VNMEJj8md6252SO",
  1574. "prefabRootNode": {
  1575. "__id__": 1
  1576. },
  1577. "mountedChildren": [],
  1578. "propertyOverrides": [
  1579. {
  1580. "__id__": 73
  1581. },
  1582. {
  1583. "__id__": 75
  1584. },
  1585. {
  1586. "__id__": 77
  1587. },
  1588. {
  1589. "__id__": 79
  1590. },
  1591. {
  1592. "__id__": 82
  1593. },
  1594. {
  1595. "__id__": 84
  1596. },
  1597. {
  1598. "__id__": 86
  1599. },
  1600. {
  1601. "__id__": 89
  1602. },
  1603. {
  1604. "__id__": 91
  1605. }
  1606. ],
  1607. "removedComponents": []
  1608. },
  1609. {
  1610. "__type__": "CCPropertyOverrideInfo",
  1611. "targetInfo": {
  1612. "__id__": 74
  1613. },
  1614. "propertyPath": [
  1615. "name"
  1616. ],
  1617. "value": "切磋列表小红包"
  1618. },
  1619. {
  1620. "__type__": "cc.TargetInfo",
  1621. "localID": [
  1622. "deX7d8FMlICLW4YAklE75J"
  1623. ]
  1624. },
  1625. {
  1626. "__type__": "CCPropertyOverrideInfo",
  1627. "targetInfo": {
  1628. "__id__": 76
  1629. },
  1630. "propertyPath": [
  1631. "position"
  1632. ],
  1633. "value": {
  1634. "__type__": "cc.Vec3",
  1635. "x": 115.94,
  1636. "y": 0,
  1637. "z": 0
  1638. }
  1639. },
  1640. {
  1641. "__type__": "cc.TargetInfo",
  1642. "localID": [
  1643. "deX7d8FMlICLW4YAklE75J"
  1644. ]
  1645. },
  1646. {
  1647. "__type__": "CCPropertyOverrideInfo",
  1648. "targetInfo": {
  1649. "__id__": 78
  1650. },
  1651. "propertyPath": [
  1652. "rotation"
  1653. ],
  1654. "value": {
  1655. "__type__": "cc.Quat",
  1656. "x": 0,
  1657. "y": 0,
  1658. "z": 0,
  1659. "w": 1
  1660. }
  1661. },
  1662. {
  1663. "__type__": "cc.TargetInfo",
  1664. "localID": [
  1665. "deX7d8FMlICLW4YAklE75J"
  1666. ]
  1667. },
  1668. {
  1669. "__type__": "CCPropertyOverrideInfo",
  1670. "targetInfo": {
  1671. "__id__": 80
  1672. },
  1673. "propertyPath": [
  1674. "redPacketFinish"
  1675. ],
  1676. "value": {
  1677. "__id__": 81
  1678. }
  1679. },
  1680. {
  1681. "__type__": "cc.TargetInfo",
  1682. "localID": [
  1683. "9am4iqXA1AkpwJ+qfM8UCs"
  1684. ]
  1685. },
  1686. {
  1687. "__type__": "cc.ClickEvent",
  1688. "target": {
  1689. "__id__": 1
  1690. },
  1691. "component": "",
  1692. "_componentId": "79b07TZqZtKarwTFEAGzJ19",
  1693. "handler": "onRedpacketFinish",
  1694. "customEventData": ""
  1695. },
  1696. {
  1697. "__type__": "CCPropertyOverrideInfo",
  1698. "targetInfo": {
  1699. "__id__": 83
  1700. },
  1701. "propertyPath": [
  1702. "active"
  1703. ],
  1704. "value": false
  1705. },
  1706. {
  1707. "__type__": "cc.TargetInfo",
  1708. "localID": [
  1709. "551f992XdARK2vzppLSIU0"
  1710. ]
  1711. },
  1712. {
  1713. "__type__": "CCPropertyOverrideInfo",
  1714. "targetInfo": {
  1715. "__id__": 85
  1716. },
  1717. "propertyPath": [
  1718. "string"
  1719. ],
  1720. "value": ""
  1721. },
  1722. {
  1723. "__type__": "cc.TargetInfo",
  1724. "localID": [
  1725. "a6xxGOYl5DKa7n1mHmKnai"
  1726. ]
  1727. },
  1728. {
  1729. "__type__": "CCPropertyOverrideInfo",
  1730. "targetInfo": {
  1731. "__id__": 87
  1732. },
  1733. "propertyPath": [
  1734. "finishHandler"
  1735. ],
  1736. "value": {
  1737. "__id__": 88
  1738. }
  1739. },
  1740. {
  1741. "__type__": "cc.TargetInfo",
  1742. "localID": [
  1743. "9am4iqXA1AkpwJ+qfM8UCs"
  1744. ]
  1745. },
  1746. {
  1747. "__type__": "cc.ClickEvent",
  1748. "target": {
  1749. "__id__": 1
  1750. },
  1751. "component": "",
  1752. "_componentId": "79b07TZqZtKarwTFEAGzJ19",
  1753. "handler": "onRedpacketFinish",
  1754. "customEventData": ""
  1755. },
  1756. {
  1757. "__type__": "CCPropertyOverrideInfo",
  1758. "targetInfo": {
  1759. "__id__": 90
  1760. },
  1761. "propertyPath": [
  1762. "position"
  1763. ],
  1764. "value": {
  1765. "__type__": "cc.Vec3",
  1766. "x": 0,
  1767. "y": 15,
  1768. "z": 0
  1769. }
  1770. },
  1771. {
  1772. "__type__": "cc.TargetInfo",
  1773. "localID": [
  1774. "199hGEGHVEKorFXkUMZA5J"
  1775. ]
  1776. },
  1777. {
  1778. "__type__": "CCPropertyOverrideInfo",
  1779. "targetInfo": {
  1780. "__id__": 92
  1781. },
  1782. "propertyPath": [
  1783. "position"
  1784. ],
  1785. "value": {
  1786. "__type__": "cc.Vec3",
  1787. "x": 0,
  1788. "y": -40,
  1789. "z": 0
  1790. }
  1791. },
  1792. {
  1793. "__type__": "cc.TargetInfo",
  1794. "localID": [
  1795. "d9ms8GRnlBqox4tveNNbwX"
  1796. ]
  1797. },
  1798. {
  1799. "__type__": "cc.Node",
  1800. "_name": "攻打",
  1801. "_objFlags": 0,
  1802. "_parent": {
  1803. "__id__": 1
  1804. },
  1805. "_children": [
  1806. {
  1807. "__id__": 94
  1808. }
  1809. ],
  1810. "_active": false,
  1811. "_components": [
  1812. {
  1813. "__id__": 100
  1814. },
  1815. {
  1816. "__id__": 102
  1817. },
  1818. {
  1819. "__id__": 104
  1820. },
  1821. {
  1822. "__id__": 107
  1823. },
  1824. {
  1825. "__id__": 109
  1826. }
  1827. ],
  1828. "_prefab": {
  1829. "__id__": 111
  1830. },
  1831. "_lpos": {
  1832. "__type__": "cc.Vec3",
  1833. "x": 261,
  1834. "y": 0,
  1835. "z": 0
  1836. },
  1837. "_lrot": {
  1838. "__type__": "cc.Quat",
  1839. "x": 0,
  1840. "y": 0,
  1841. "z": 0,
  1842. "w": 1
  1843. },
  1844. "_lscale": {
  1845. "__type__": "cc.Vec3",
  1846. "x": 1,
  1847. "y": 1,
  1848. "z": 1
  1849. },
  1850. "_layer": 33554432,
  1851. "_euler": {
  1852. "__type__": "cc.Vec3",
  1853. "x": 0,
  1854. "y": 0,
  1855. "z": 0
  1856. },
  1857. "_id": ""
  1858. },
  1859. {
  1860. "__type__": "cc.Node",
  1861. "_name": "名称",
  1862. "_objFlags": 0,
  1863. "_parent": {
  1864. "__id__": 93
  1865. },
  1866. "_children": [],
  1867. "_active": true,
  1868. "_components": [
  1869. {
  1870. "__id__": 95
  1871. },
  1872. {
  1873. "__id__": 97
  1874. }
  1875. ],
  1876. "_prefab": {
  1877. "__id__": 99
  1878. },
  1879. "_lpos": {
  1880. "__type__": "cc.Vec3",
  1881. "x": 0,
  1882. "y": 0,
  1883. "z": 0
  1884. },
  1885. "_lrot": {
  1886. "__type__": "cc.Quat",
  1887. "x": 0,
  1888. "y": 0,
  1889. "z": 0,
  1890. "w": 1
  1891. },
  1892. "_lscale": {
  1893. "__type__": "cc.Vec3",
  1894. "x": 1,
  1895. "y": 1,
  1896. "z": 1
  1897. },
  1898. "_layer": 33554432,
  1899. "_euler": {
  1900. "__type__": "cc.Vec3",
  1901. "x": 0,
  1902. "y": 0,
  1903. "z": 0
  1904. },
  1905. "_id": ""
  1906. },
  1907. {
  1908. "__type__": "cc.UITransform",
  1909. "_name": "",
  1910. "_objFlags": 0,
  1911. "node": {
  1912. "__id__": 94
  1913. },
  1914. "_enabled": true,
  1915. "__prefab": {
  1916. "__id__": 96
  1917. },
  1918. "_priority": 0,
  1919. "_contentSize": {
  1920. "__type__": "cc.Size",
  1921. "width": 93,
  1922. "height": 38
  1923. },
  1924. "_anchorPoint": {
  1925. "__type__": "cc.Vec2",
  1926. "x": 0.5,
  1927. "y": 0.5
  1928. },
  1929. "_id": ""
  1930. },
  1931. {
  1932. "__type__": "cc.CompPrefabInfo",
  1933. "fileId": "07QMd0h1dLcYd/vjigaip6"
  1934. },
  1935. {
  1936. "__type__": "cc.Sprite",
  1937. "_name": "",
  1938. "_objFlags": 0,
  1939. "node": {
  1940. "__id__": 94
  1941. },
  1942. "_enabled": true,
  1943. "__prefab": {
  1944. "__id__": 98
  1945. },
  1946. "_visFlags": 0,
  1947. "_customMaterial": null,
  1948. "_srcBlendFactor": 2,
  1949. "_dstBlendFactor": 4,
  1950. "_color": {
  1951. "__type__": "cc.Color",
  1952. "r": 255,
  1953. "g": 255,
  1954. "b": 255,
  1955. "a": 255
  1956. },
  1957. "_spriteFrame": {
  1958. "__uuid__": "2a68f852-568d-4db8-a591-01fc9b44f526@f9941"
  1959. },
  1960. "_type": 0,
  1961. "_fillType": 0,
  1962. "_sizeMode": 1,
  1963. "_fillCenter": {
  1964. "__type__": "cc.Vec2",
  1965. "x": 0,
  1966. "y": 0
  1967. },
  1968. "_fillStart": 0,
  1969. "_fillRange": 0,
  1970. "_isTrimmedMode": true,
  1971. "_useGrayscale": false,
  1972. "_atlas": null,
  1973. "_id": ""
  1974. },
  1975. {
  1976. "__type__": "cc.CompPrefabInfo",
  1977. "fileId": "32Sgmi4ChJfaLQc326OQ97"
  1978. },
  1979. {
  1980. "__type__": "cc.PrefabInfo",
  1981. "root": {
  1982. "__id__": 1
  1983. },
  1984. "asset": {
  1985. "__id__": 0
  1986. },
  1987. "fileId": "3bgQkFO/dFZ77avbzXIQfU"
  1988. },
  1989. {
  1990. "__type__": "cc.UITransform",
  1991. "_name": "",
  1992. "_objFlags": 0,
  1993. "node": {
  1994. "__id__": 93
  1995. },
  1996. "_enabled": true,
  1997. "__prefab": {
  1998. "__id__": 101
  1999. },
  2000. "_priority": 0,
  2001. "_contentSize": {
  2002. "__type__": "cc.Size",
  2003. "width": 162,
  2004. "height": 78
  2005. },
  2006. "_anchorPoint": {
  2007. "__type__": "cc.Vec2",
  2008. "x": 0.5,
  2009. "y": 0.5
  2010. },
  2011. "_id": ""
  2012. },
  2013. {
  2014. "__type__": "cc.CompPrefabInfo",
  2015. "fileId": "98TYGMtwRBTYZZn4EZmhzJ"
  2016. },
  2017. {
  2018. "__type__": "cc.Sprite",
  2019. "_name": "",
  2020. "_objFlags": 0,
  2021. "node": {
  2022. "__id__": 93
  2023. },
  2024. "_enabled": true,
  2025. "__prefab": {
  2026. "__id__": 103
  2027. },
  2028. "_visFlags": 0,
  2029. "_customMaterial": null,
  2030. "_srcBlendFactor": 2,
  2031. "_dstBlendFactor": 4,
  2032. "_color": {
  2033. "__type__": "cc.Color",
  2034. "r": 255,
  2035. "g": 255,
  2036. "b": 255,
  2037. "a": 255
  2038. },
  2039. "_spriteFrame": {
  2040. "__uuid__": "edd96153-0eeb-4459-b295-6876725febc7@f9941"
  2041. },
  2042. "_type": 0,
  2043. "_fillType": 0,
  2044. "_sizeMode": 1,
  2045. "_fillCenter": {
  2046. "__type__": "cc.Vec2",
  2047. "x": 0,
  2048. "y": 0
  2049. },
  2050. "_fillStart": 0,
  2051. "_fillRange": 0,
  2052. "_isTrimmedMode": true,
  2053. "_useGrayscale": false,
  2054. "_atlas": null,
  2055. "_id": ""
  2056. },
  2057. {
  2058. "__type__": "cc.CompPrefabInfo",
  2059. "fileId": "77BcV1zfNHo4LI4KRqZupe"
  2060. },
  2061. {
  2062. "__type__": "cc.Button",
  2063. "_name": "",
  2064. "_objFlags": 0,
  2065. "node": {
  2066. "__id__": 93
  2067. },
  2068. "_enabled": true,
  2069. "__prefab": {
  2070. "__id__": 105
  2071. },
  2072. "clickEvents": [
  2073. {
  2074. "__id__": 106
  2075. }
  2076. ],
  2077. "_interactable": true,
  2078. "_transition": 3,
  2079. "_normalColor": {
  2080. "__type__": "cc.Color",
  2081. "r": 214,
  2082. "g": 214,
  2083. "b": 214,
  2084. "a": 255
  2085. },
  2086. "_hoverColor": {
  2087. "__type__": "cc.Color",
  2088. "r": 211,
  2089. "g": 211,
  2090. "b": 211,
  2091. "a": 255
  2092. },
  2093. "_pressedColor": {
  2094. "__type__": "cc.Color",
  2095. "r": 255,
  2096. "g": 255,
  2097. "b": 255,
  2098. "a": 255
  2099. },
  2100. "_disabledColor": {
  2101. "__type__": "cc.Color",
  2102. "r": 124,
  2103. "g": 124,
  2104. "b": 124,
  2105. "a": 255
  2106. },
  2107. "_normalSprite": {
  2108. "__uuid__": "edd96153-0eeb-4459-b295-6876725febc7@f9941"
  2109. },
  2110. "_hoverSprite": {
  2111. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941"
  2112. },
  2113. "_pressedSprite": {
  2114. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941"
  2115. },
  2116. "_disabledSprite": {
  2117. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941"
  2118. },
  2119. "_duration": 0.1,
  2120. "_zoomScale": 1.1,
  2121. "_target": {
  2122. "__id__": 93
  2123. },
  2124. "_id": ""
  2125. },
  2126. {
  2127. "__type__": "cc.CompPrefabInfo",
  2128. "fileId": "2fOwBXUwBNvaJ4NyyrOq4C"
  2129. },
  2130. {
  2131. "__type__": "cc.ClickEvent",
  2132. "target": {
  2133. "__id__": 1
  2134. },
  2135. "component": "",
  2136. "_componentId": "79b07TZqZtKarwTFEAGzJ19",
  2137. "handler": "onButtonTouch",
  2138. "customEventData": ""
  2139. },
  2140. {
  2141. "__type__": "cc.Widget",
  2142. "_name": "",
  2143. "_objFlags": 0,
  2144. "node": {
  2145. "__id__": 93
  2146. },
  2147. "_enabled": true,
  2148. "__prefab": {
  2149. "__id__": 108
  2150. },
  2151. "_alignFlags": 34,
  2152. "_target": null,
  2153. "_left": 0,
  2154. "_right": 20,
  2155. "_top": 0,
  2156. "_bottom": 0,
  2157. "_horizontalCenter": 0,
  2158. "_verticalCenter": 0,
  2159. "_isAbsLeft": true,
  2160. "_isAbsRight": true,
  2161. "_isAbsTop": true,
  2162. "_isAbsBottom": true,
  2163. "_isAbsHorizontalCenter": true,
  2164. "_isAbsVerticalCenter": true,
  2165. "_originalWidth": 0,
  2166. "_originalHeight": 0,
  2167. "_alignMode": 2,
  2168. "_lockFlags": 0,
  2169. "_id": ""
  2170. },
  2171. {
  2172. "__type__": "cc.CompPrefabInfo",
  2173. "fileId": "c1nCG5LwZJu6UnmNxTj262"
  2174. },
  2175. {
  2176. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2177. "_name": "",
  2178. "_objFlags": 0,
  2179. "node": {
  2180. "__id__": 93
  2181. },
  2182. "_enabled": true,
  2183. "__prefab": {
  2184. "__id__": 110
  2185. },
  2186. "clips": [
  2187. {
  2188. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  2189. }
  2190. ],
  2191. "_volume": 1,
  2192. "useGlobalVolume": true,
  2193. "playOnLoad": false,
  2194. "playOnTouch": true,
  2195. "oneShot": true,
  2196. "loop": false,
  2197. "_id": ""
  2198. },
  2199. {
  2200. "__type__": "cc.CompPrefabInfo",
  2201. "fileId": "aaytSjMUVD8pA2CpeOMBhR"
  2202. },
  2203. {
  2204. "__type__": "cc.PrefabInfo",
  2205. "root": {
  2206. "__id__": 1
  2207. },
  2208. "asset": {
  2209. "__id__": 0
  2210. },
  2211. "fileId": "af7/kXUAFBwagvcrCfmqm/"
  2212. },
  2213. {
  2214. "__type__": "cc.Node",
  2215. "_name": "查看",
  2216. "_objFlags": 0,
  2217. "_parent": {
  2218. "__id__": 1
  2219. },
  2220. "_children": [
  2221. {
  2222. "__id__": 113
  2223. }
  2224. ],
  2225. "_active": false,
  2226. "_components": [
  2227. {
  2228. "__id__": 119
  2229. },
  2230. {
  2231. "__id__": 121
  2232. },
  2233. {
  2234. "__id__": 123
  2235. },
  2236. {
  2237. "__id__": 126
  2238. },
  2239. {
  2240. "__id__": 128
  2241. }
  2242. ],
  2243. "_prefab": {
  2244. "__id__": 130
  2245. },
  2246. "_lpos": {
  2247. "__type__": "cc.Vec3",
  2248. "x": 261,
  2249. "y": 0,
  2250. "z": 0
  2251. },
  2252. "_lrot": {
  2253. "__type__": "cc.Quat",
  2254. "x": 0,
  2255. "y": 0,
  2256. "z": 0,
  2257. "w": 1
  2258. },
  2259. "_lscale": {
  2260. "__type__": "cc.Vec3",
  2261. "x": 1,
  2262. "y": 1,
  2263. "z": 1
  2264. },
  2265. "_layer": 33554432,
  2266. "_euler": {
  2267. "__type__": "cc.Vec3",
  2268. "x": 0,
  2269. "y": 0,
  2270. "z": 0
  2271. },
  2272. "_id": ""
  2273. },
  2274. {
  2275. "__type__": "cc.Node",
  2276. "_name": "名称",
  2277. "_objFlags": 0,
  2278. "_parent": {
  2279. "__id__": 112
  2280. },
  2281. "_children": [],
  2282. "_active": true,
  2283. "_components": [
  2284. {
  2285. "__id__": 114
  2286. },
  2287. {
  2288. "__id__": 116
  2289. }
  2290. ],
  2291. "_prefab": {
  2292. "__id__": 118
  2293. },
  2294. "_lpos": {
  2295. "__type__": "cc.Vec3",
  2296. "x": 0,
  2297. "y": 0,
  2298. "z": 0
  2299. },
  2300. "_lrot": {
  2301. "__type__": "cc.Quat",
  2302. "x": 0,
  2303. "y": 0,
  2304. "z": 0,
  2305. "w": 1
  2306. },
  2307. "_lscale": {
  2308. "__type__": "cc.Vec3",
  2309. "x": 1,
  2310. "y": 1,
  2311. "z": 1
  2312. },
  2313. "_layer": 33554432,
  2314. "_euler": {
  2315. "__type__": "cc.Vec3",
  2316. "x": 0,
  2317. "y": 0,
  2318. "z": 0
  2319. },
  2320. "_id": ""
  2321. },
  2322. {
  2323. "__type__": "cc.UITransform",
  2324. "_name": "",
  2325. "_objFlags": 0,
  2326. "node": {
  2327. "__id__": 113
  2328. },
  2329. "_enabled": true,
  2330. "__prefab": {
  2331. "__id__": 115
  2332. },
  2333. "_priority": 0,
  2334. "_contentSize": {
  2335. "__type__": "cc.Size",
  2336. "width": 93,
  2337. "height": 37
  2338. },
  2339. "_anchorPoint": {
  2340. "__type__": "cc.Vec2",
  2341. "x": 0.5,
  2342. "y": 0.5
  2343. },
  2344. "_id": ""
  2345. },
  2346. {
  2347. "__type__": "cc.CompPrefabInfo",
  2348. "fileId": "8bu/Fi1uFIFKczuM0UR0Xj"
  2349. },
  2350. {
  2351. "__type__": "cc.Sprite",
  2352. "_name": "",
  2353. "_objFlags": 0,
  2354. "node": {
  2355. "__id__": 113
  2356. },
  2357. "_enabled": true,
  2358. "__prefab": {
  2359. "__id__": 117
  2360. },
  2361. "_visFlags": 0,
  2362. "_customMaterial": null,
  2363. "_srcBlendFactor": 2,
  2364. "_dstBlendFactor": 4,
  2365. "_color": {
  2366. "__type__": "cc.Color",
  2367. "r": 255,
  2368. "g": 255,
  2369. "b": 255,
  2370. "a": 255
  2371. },
  2372. "_spriteFrame": {
  2373. "__uuid__": "b53413ba-b56f-404c-a522-d613c8bb4992@f9941"
  2374. },
  2375. "_type": 0,
  2376. "_fillType": 0,
  2377. "_sizeMode": 1,
  2378. "_fillCenter": {
  2379. "__type__": "cc.Vec2",
  2380. "x": 0,
  2381. "y": 0
  2382. },
  2383. "_fillStart": 0,
  2384. "_fillRange": 0,
  2385. "_isTrimmedMode": true,
  2386. "_useGrayscale": false,
  2387. "_atlas": null,
  2388. "_id": ""
  2389. },
  2390. {
  2391. "__type__": "cc.CompPrefabInfo",
  2392. "fileId": "b7Oa4fGSxPZad2D6+14SRA"
  2393. },
  2394. {
  2395. "__type__": "cc.PrefabInfo",
  2396. "root": {
  2397. "__id__": 1
  2398. },
  2399. "asset": {
  2400. "__id__": 0
  2401. },
  2402. "fileId": "98CqQvJQlENawjW3fpKJYI"
  2403. },
  2404. {
  2405. "__type__": "cc.UITransform",
  2406. "_name": "",
  2407. "_objFlags": 0,
  2408. "node": {
  2409. "__id__": 112
  2410. },
  2411. "_enabled": true,
  2412. "__prefab": {
  2413. "__id__": 120
  2414. },
  2415. "_priority": 0,
  2416. "_contentSize": {
  2417. "__type__": "cc.Size",
  2418. "width": 162,
  2419. "height": 78
  2420. },
  2421. "_anchorPoint": {
  2422. "__type__": "cc.Vec2",
  2423. "x": 0.5,
  2424. "y": 0.5
  2425. },
  2426. "_id": ""
  2427. },
  2428. {
  2429. "__type__": "cc.CompPrefabInfo",
  2430. "fileId": "c6hC6t1LpNWrZNRv9SOB2v"
  2431. },
  2432. {
  2433. "__type__": "cc.Sprite",
  2434. "_name": "",
  2435. "_objFlags": 0,
  2436. "node": {
  2437. "__id__": 112
  2438. },
  2439. "_enabled": true,
  2440. "__prefab": {
  2441. "__id__": 122
  2442. },
  2443. "_visFlags": 0,
  2444. "_customMaterial": null,
  2445. "_srcBlendFactor": 2,
  2446. "_dstBlendFactor": 4,
  2447. "_color": {
  2448. "__type__": "cc.Color",
  2449. "r": 255,
  2450. "g": 255,
  2451. "b": 255,
  2452. "a": 255
  2453. },
  2454. "_spriteFrame": {
  2455. "__uuid__": "270a44ff-5ca8-41e1-af10-b7aaddb08fc1@f9941"
  2456. },
  2457. "_type": 0,
  2458. "_fillType": 0,
  2459. "_sizeMode": 1,
  2460. "_fillCenter": {
  2461. "__type__": "cc.Vec2",
  2462. "x": 0,
  2463. "y": 0
  2464. },
  2465. "_fillStart": 0,
  2466. "_fillRange": 0,
  2467. "_isTrimmedMode": true,
  2468. "_useGrayscale": false,
  2469. "_atlas": null,
  2470. "_id": ""
  2471. },
  2472. {
  2473. "__type__": "cc.CompPrefabInfo",
  2474. "fileId": "e73WLlywpMloLUtZSUr7sf"
  2475. },
  2476. {
  2477. "__type__": "cc.Button",
  2478. "_name": "",
  2479. "_objFlags": 0,
  2480. "node": {
  2481. "__id__": 112
  2482. },
  2483. "_enabled": true,
  2484. "__prefab": {
  2485. "__id__": 124
  2486. },
  2487. "clickEvents": [
  2488. {
  2489. "__id__": 125
  2490. }
  2491. ],
  2492. "_interactable": true,
  2493. "_transition": 3,
  2494. "_normalColor": {
  2495. "__type__": "cc.Color",
  2496. "r": 214,
  2497. "g": 214,
  2498. "b": 214,
  2499. "a": 255
  2500. },
  2501. "_hoverColor": {
  2502. "__type__": "cc.Color",
  2503. "r": 211,
  2504. "g": 211,
  2505. "b": 211,
  2506. "a": 255
  2507. },
  2508. "_pressedColor": {
  2509. "__type__": "cc.Color",
  2510. "r": 255,
  2511. "g": 255,
  2512. "b": 255,
  2513. "a": 255
  2514. },
  2515. "_disabledColor": {
  2516. "__type__": "cc.Color",
  2517. "r": 124,
  2518. "g": 124,
  2519. "b": 124,
  2520. "a": 255
  2521. },
  2522. "_normalSprite": {
  2523. "__uuid__": "270a44ff-5ca8-41e1-af10-b7aaddb08fc1@f9941"
  2524. },
  2525. "_hoverSprite": null,
  2526. "_pressedSprite": null,
  2527. "_disabledSprite": null,
  2528. "_duration": 0.1,
  2529. "_zoomScale": 1.1,
  2530. "_target": {
  2531. "__id__": 112
  2532. },
  2533. "_id": ""
  2534. },
  2535. {
  2536. "__type__": "cc.CompPrefabInfo",
  2537. "fileId": "2ba72aB9ZN0pUZ+OmlgflN"
  2538. },
  2539. {
  2540. "__type__": "cc.ClickEvent",
  2541. "target": {
  2542. "__id__": 1
  2543. },
  2544. "component": "",
  2545. "_componentId": "79b07TZqZtKarwTFEAGzJ19",
  2546. "handler": "onButtonTouch",
  2547. "customEventData": ""
  2548. },
  2549. {
  2550. "__type__": "cc.Widget",
  2551. "_name": "",
  2552. "_objFlags": 0,
  2553. "node": {
  2554. "__id__": 112
  2555. },
  2556. "_enabled": true,
  2557. "__prefab": {
  2558. "__id__": 127
  2559. },
  2560. "_alignFlags": 34,
  2561. "_target": null,
  2562. "_left": 0,
  2563. "_right": 20,
  2564. "_top": 0,
  2565. "_bottom": 0,
  2566. "_horizontalCenter": 0,
  2567. "_verticalCenter": 0,
  2568. "_isAbsLeft": true,
  2569. "_isAbsRight": true,
  2570. "_isAbsTop": true,
  2571. "_isAbsBottom": true,
  2572. "_isAbsHorizontalCenter": true,
  2573. "_isAbsVerticalCenter": true,
  2574. "_originalWidth": 0,
  2575. "_originalHeight": 0,
  2576. "_alignMode": 2,
  2577. "_lockFlags": 0,
  2578. "_id": ""
  2579. },
  2580. {
  2581. "__type__": "cc.CompPrefabInfo",
  2582. "fileId": "11JENYwppErYgVfxM2evWS"
  2583. },
  2584. {
  2585. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2586. "_name": "",
  2587. "_objFlags": 0,
  2588. "node": {
  2589. "__id__": 112
  2590. },
  2591. "_enabled": true,
  2592. "__prefab": {
  2593. "__id__": 129
  2594. },
  2595. "clips": [
  2596. {
  2597. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  2598. }
  2599. ],
  2600. "_volume": 1,
  2601. "useGlobalVolume": true,
  2602. "playOnLoad": false,
  2603. "playOnTouch": true,
  2604. "oneShot": true,
  2605. "loop": false,
  2606. "_id": ""
  2607. },
  2608. {
  2609. "__type__": "cc.CompPrefabInfo",
  2610. "fileId": "39INH1ldpETY55oxEIB6mq"
  2611. },
  2612. {
  2613. "__type__": "cc.PrefabInfo",
  2614. "root": {
  2615. "__id__": 1
  2616. },
  2617. "asset": {
  2618. "__id__": 0
  2619. },
  2620. "fileId": "7aBEY8gddNxYThHyEEGQOT"
  2621. },
  2622. {
  2623. "__type__": "cc.Node",
  2624. "_name": "抢红包",
  2625. "_objFlags": 0,
  2626. "_parent": {
  2627. "__id__": 1
  2628. },
  2629. "_children": [
  2630. {
  2631. "__id__": 132
  2632. }
  2633. ],
  2634. "_active": true,
  2635. "_components": [
  2636. {
  2637. "__id__": 138
  2638. },
  2639. {
  2640. "__id__": 140
  2641. },
  2642. {
  2643. "__id__": 142
  2644. },
  2645. {
  2646. "__id__": 145
  2647. },
  2648. {
  2649. "__id__": 147
  2650. }
  2651. ],
  2652. "_prefab": {
  2653. "__id__": 149
  2654. },
  2655. "_lpos": {
  2656. "__type__": "cc.Vec3",
  2657. "x": 249,
  2658. "y": 0,
  2659. "z": 0
  2660. },
  2661. "_lrot": {
  2662. "__type__": "cc.Quat",
  2663. "x": 0,
  2664. "y": 0,
  2665. "z": 0,
  2666. "w": 1
  2667. },
  2668. "_lscale": {
  2669. "__type__": "cc.Vec3",
  2670. "x": 1,
  2671. "y": 1,
  2672. "z": 1
  2673. },
  2674. "_layer": 33554432,
  2675. "_euler": {
  2676. "__type__": "cc.Vec3",
  2677. "x": 0,
  2678. "y": 0,
  2679. "z": 0
  2680. },
  2681. "_id": ""
  2682. },
  2683. {
  2684. "__type__": "cc.Node",
  2685. "_name": "名称",
  2686. "_objFlags": 0,
  2687. "_parent": {
  2688. "__id__": 131
  2689. },
  2690. "_children": [],
  2691. "_active": true,
  2692. "_components": [
  2693. {
  2694. "__id__": 133
  2695. },
  2696. {
  2697. "__id__": 135
  2698. }
  2699. ],
  2700. "_prefab": {
  2701. "__id__": 137
  2702. },
  2703. "_lpos": {
  2704. "__type__": "cc.Vec3",
  2705. "x": 0,
  2706. "y": 0,
  2707. "z": 0
  2708. },
  2709. "_lrot": {
  2710. "__type__": "cc.Quat",
  2711. "x": 0,
  2712. "y": 0,
  2713. "z": 0,
  2714. "w": 1
  2715. },
  2716. "_lscale": {
  2717. "__type__": "cc.Vec3",
  2718. "x": 1,
  2719. "y": 1,
  2720. "z": 1
  2721. },
  2722. "_layer": 33554432,
  2723. "_euler": {
  2724. "__type__": "cc.Vec3",
  2725. "x": 0,
  2726. "y": 0,
  2727. "z": 0
  2728. },
  2729. "_id": ""
  2730. },
  2731. {
  2732. "__type__": "cc.UITransform",
  2733. "_name": "",
  2734. "_objFlags": 0,
  2735. "node": {
  2736. "__id__": 132
  2737. },
  2738. "_enabled": true,
  2739. "__prefab": {
  2740. "__id__": 134
  2741. },
  2742. "_priority": 0,
  2743. "_contentSize": {
  2744. "__type__": "cc.Size",
  2745. "width": 138,
  2746. "height": 38
  2747. },
  2748. "_anchorPoint": {
  2749. "__type__": "cc.Vec2",
  2750. "x": 0.5,
  2751. "y": 0.5
  2752. },
  2753. "_id": ""
  2754. },
  2755. {
  2756. "__type__": "cc.CompPrefabInfo",
  2757. "fileId": "6dZAfQOOpJga6Z5VEPYbuV"
  2758. },
  2759. {
  2760. "__type__": "cc.Sprite",
  2761. "_name": "",
  2762. "_objFlags": 0,
  2763. "node": {
  2764. "__id__": 132
  2765. },
  2766. "_enabled": true,
  2767. "__prefab": {
  2768. "__id__": 136
  2769. },
  2770. "_visFlags": 0,
  2771. "_customMaterial": null,
  2772. "_srcBlendFactor": 2,
  2773. "_dstBlendFactor": 4,
  2774. "_color": {
  2775. "__type__": "cc.Color",
  2776. "r": 255,
  2777. "g": 255,
  2778. "b": 255,
  2779. "a": 255
  2780. },
  2781. "_spriteFrame": {
  2782. "__uuid__": "f3144916-7ac5-462f-9517-b1662a40429f@f9941"
  2783. },
  2784. "_type": 0,
  2785. "_fillType": 0,
  2786. "_sizeMode": 1,
  2787. "_fillCenter": {
  2788. "__type__": "cc.Vec2",
  2789. "x": 0,
  2790. "y": 0
  2791. },
  2792. "_fillStart": 0,
  2793. "_fillRange": 0,
  2794. "_isTrimmedMode": true,
  2795. "_useGrayscale": false,
  2796. "_atlas": null,
  2797. "_id": ""
  2798. },
  2799. {
  2800. "__type__": "cc.CompPrefabInfo",
  2801. "fileId": "97CLzbWU1OsrtOuyeoTwXf"
  2802. },
  2803. {
  2804. "__type__": "cc.PrefabInfo",
  2805. "root": {
  2806. "__id__": 1
  2807. },
  2808. "asset": {
  2809. "__id__": 0
  2810. },
  2811. "fileId": "a7kbsh4tBAqYQKJ9qEU+dF"
  2812. },
  2813. {
  2814. "__type__": "cc.UITransform",
  2815. "_name": "",
  2816. "_objFlags": 0,
  2817. "node": {
  2818. "__id__": 131
  2819. },
  2820. "_enabled": true,
  2821. "__prefab": {
  2822. "__id__": 139
  2823. },
  2824. "_priority": 0,
  2825. "_contentSize": {
  2826. "__type__": "cc.Size",
  2827. "width": 162,
  2828. "height": 78
  2829. },
  2830. "_anchorPoint": {
  2831. "__type__": "cc.Vec2",
  2832. "x": 0.5,
  2833. "y": 0.5
  2834. },
  2835. "_id": ""
  2836. },
  2837. {
  2838. "__type__": "cc.CompPrefabInfo",
  2839. "fileId": "b3YwydFPxLfbVppOFA2HvN"
  2840. },
  2841. {
  2842. "__type__": "cc.Sprite",
  2843. "_name": "",
  2844. "_objFlags": 0,
  2845. "node": {
  2846. "__id__": 131
  2847. },
  2848. "_enabled": true,
  2849. "__prefab": {
  2850. "__id__": 141
  2851. },
  2852. "_visFlags": 0,
  2853. "_customMaterial": null,
  2854. "_srcBlendFactor": 2,
  2855. "_dstBlendFactor": 4,
  2856. "_color": {
  2857. "__type__": "cc.Color",
  2858. "r": 255,
  2859. "g": 255,
  2860. "b": 255,
  2861. "a": 255
  2862. },
  2863. "_spriteFrame": {
  2864. "__uuid__": "7924744c-c9ae-4d81-b8c0-28d37ed8ec08@f9941"
  2865. },
  2866. "_type": 1,
  2867. "_fillType": 0,
  2868. "_sizeMode": 1,
  2869. "_fillCenter": {
  2870. "__type__": "cc.Vec2",
  2871. "x": 0,
  2872. "y": 0
  2873. },
  2874. "_fillStart": 0,
  2875. "_fillRange": 0,
  2876. "_isTrimmedMode": true,
  2877. "_useGrayscale": false,
  2878. "_atlas": null,
  2879. "_id": ""
  2880. },
  2881. {
  2882. "__type__": "cc.CompPrefabInfo",
  2883. "fileId": "6998JWIORHE5f6z+ISxsm3"
  2884. },
  2885. {
  2886. "__type__": "cc.Button",
  2887. "_name": "",
  2888. "_objFlags": 0,
  2889. "node": {
  2890. "__id__": 131
  2891. },
  2892. "_enabled": true,
  2893. "__prefab": {
  2894. "__id__": 143
  2895. },
  2896. "clickEvents": [
  2897. {
  2898. "__id__": 144
  2899. }
  2900. ],
  2901. "_interactable": true,
  2902. "_transition": 3,
  2903. "_normalColor": {
  2904. "__type__": "cc.Color",
  2905. "r": 214,
  2906. "g": 214,
  2907. "b": 214,
  2908. "a": 255
  2909. },
  2910. "_hoverColor": {
  2911. "__type__": "cc.Color",
  2912. "r": 211,
  2913. "g": 211,
  2914. "b": 211,
  2915. "a": 255
  2916. },
  2917. "_pressedColor": {
  2918. "__type__": "cc.Color",
  2919. "r": 255,
  2920. "g": 255,
  2921. "b": 255,
  2922. "a": 255
  2923. },
  2924. "_disabledColor": {
  2925. "__type__": "cc.Color",
  2926. "r": 124,
  2927. "g": 124,
  2928. "b": 124,
  2929. "a": 255
  2930. },
  2931. "_normalSprite": {
  2932. "__uuid__": "7924744c-c9ae-4d81-b8c0-28d37ed8ec08@f9941"
  2933. },
  2934. "_hoverSprite": null,
  2935. "_pressedSprite": null,
  2936. "_disabledSprite": null,
  2937. "_duration": 0.1,
  2938. "_zoomScale": 1.1,
  2939. "_target": {
  2940. "__id__": 131
  2941. },
  2942. "_id": ""
  2943. },
  2944. {
  2945. "__type__": "cc.CompPrefabInfo",
  2946. "fileId": "3bi850zNhA3KIEaOXOmU+s"
  2947. },
  2948. {
  2949. "__type__": "cc.ClickEvent",
  2950. "target": {
  2951. "__id__": 1
  2952. },
  2953. "component": "",
  2954. "_componentId": "79b07TZqZtKarwTFEAGzJ19",
  2955. "handler": "onButtonTouch",
  2956. "customEventData": ""
  2957. },
  2958. {
  2959. "__type__": "cc.Widget",
  2960. "_name": "",
  2961. "_objFlags": 0,
  2962. "node": {
  2963. "__id__": 131
  2964. },
  2965. "_enabled": true,
  2966. "__prefab": {
  2967. "__id__": 146
  2968. },
  2969. "_alignFlags": 34,
  2970. "_target": null,
  2971. "_left": 0,
  2972. "_right": 20,
  2973. "_top": 0,
  2974. "_bottom": 0,
  2975. "_horizontalCenter": 0,
  2976. "_verticalCenter": 0,
  2977. "_isAbsLeft": true,
  2978. "_isAbsRight": true,
  2979. "_isAbsTop": true,
  2980. "_isAbsBottom": true,
  2981. "_isAbsHorizontalCenter": true,
  2982. "_isAbsVerticalCenter": true,
  2983. "_originalWidth": 0,
  2984. "_originalHeight": 0,
  2985. "_alignMode": 2,
  2986. "_lockFlags": 0,
  2987. "_id": ""
  2988. },
  2989. {
  2990. "__type__": "cc.CompPrefabInfo",
  2991. "fileId": "a0Cb7gAUlJ3qZ/8NprSTLl"
  2992. },
  2993. {
  2994. "__type__": "cdd04yfaqRHFq70LPrHS+MH",
  2995. "_name": "",
  2996. "_objFlags": 0,
  2997. "node": {
  2998. "__id__": 131
  2999. },
  3000. "_enabled": true,
  3001. "__prefab": {
  3002. "__id__": 148
  3003. },
  3004. "clips": [
  3005. {
  3006. "__uuid__": "946aa2bf-b5ec-40a8-b0ba-666c9d8263ca"
  3007. }
  3008. ],
  3009. "_volume": 1,
  3010. "useGlobalVolume": true,
  3011. "playOnLoad": false,
  3012. "playOnTouch": true,
  3013. "oneShot": true,
  3014. "loop": false,
  3015. "_id": ""
  3016. },
  3017. {
  3018. "__type__": "cc.CompPrefabInfo",
  3019. "fileId": "f42AptABRGj4BW72zqvUKT"
  3020. },
  3021. {
  3022. "__type__": "cc.PrefabInfo",
  3023. "root": {
  3024. "__id__": 1
  3025. },
  3026. "asset": {
  3027. "__id__": 0
  3028. },
  3029. "fileId": "c339NmGVJJhYBf452B3a4L"
  3030. },
  3031. {
  3032. "__type__": "cc.Node",
  3033. "_name": "Http",
  3034. "_objFlags": 0,
  3035. "_parent": {
  3036. "__id__": 1
  3037. },
  3038. "_children": [],
  3039. "_active": true,
  3040. "_components": [
  3041. {
  3042. "__id__": 151
  3043. },
  3044. {
  3045. "__id__": 153
  3046. }
  3047. ],
  3048. "_prefab": {
  3049. "__id__": 155
  3050. },
  3051. "_lpos": {
  3052. "__type__": "cc.Vec3",
  3053. "x": 0,
  3054. "y": 0,
  3055. "z": 0
  3056. },
  3057. "_lrot": {
  3058. "__type__": "cc.Quat",
  3059. "x": 0,
  3060. "y": 0,
  3061. "z": 0,
  3062. "w": 1
  3063. },
  3064. "_lscale": {
  3065. "__type__": "cc.Vec3",
  3066. "x": 1,
  3067. "y": 1,
  3068. "z": 1
  3069. },
  3070. "_layer": 1073741824,
  3071. "_euler": {
  3072. "__type__": "cc.Vec3",
  3073. "x": 0,
  3074. "y": 0,
  3075. "z": 0
  3076. },
  3077. "_id": ""
  3078. },
  3079. {
  3080. "__type__": "cc.UITransform",
  3081. "_name": "",
  3082. "_objFlags": 0,
  3083. "node": {
  3084. "__id__": 150
  3085. },
  3086. "_enabled": true,
  3087. "__prefab": {
  3088. "__id__": 152
  3089. },
  3090. "_priority": 0,
  3091. "_contentSize": {
  3092. "__type__": "cc.Size",
  3093. "width": 100,
  3094. "height": 100
  3095. },
  3096. "_anchorPoint": {
  3097. "__type__": "cc.Vec2",
  3098. "x": 0.5,
  3099. "y": 0.5
  3100. },
  3101. "_id": ""
  3102. },
  3103. {
  3104. "__type__": "cc.CompPrefabInfo",
  3105. "fileId": "f2xU35KChHBIp0ldCynGID"
  3106. },
  3107. {
  3108. "__type__": "dac21xJD+VAUaoh8lKjfmQr",
  3109. "_name": "",
  3110. "_objFlags": 0,
  3111. "node": {
  3112. "__id__": 150
  3113. },
  3114. "_enabled": true,
  3115. "__prefab": {
  3116. "__id__": 154
  3117. },
  3118. "hostAlias": "",
  3119. "withCredentials": false,
  3120. "timeout": 0,
  3121. "responseType": 3,
  3122. "useEncrypt": true,
  3123. "_id": ""
  3124. },
  3125. {
  3126. "__type__": "cc.CompPrefabInfo",
  3127. "fileId": "463E8n9fdI2L65wHHA2nn6"
  3128. },
  3129. {
  3130. "__type__": "cc.PrefabInfo",
  3131. "root": {
  3132. "__id__": 1
  3133. },
  3134. "asset": {
  3135. "__id__": 0
  3136. },
  3137. "fileId": "4d+MWHRIRNp5Vmj+weHtSL"
  3138. },
  3139. {
  3140. "__type__": "cc.UITransform",
  3141. "_name": "",
  3142. "_objFlags": 0,
  3143. "node": {
  3144. "__id__": 1
  3145. },
  3146. "_enabled": true,
  3147. "__prefab": {
  3148. "__id__": 157
  3149. },
  3150. "_priority": 0,
  3151. "_contentSize": {
  3152. "__type__": "cc.Size",
  3153. "width": 700,
  3154. "height": 160
  3155. },
  3156. "_anchorPoint": {
  3157. "__type__": "cc.Vec2",
  3158. "x": 0.5,
  3159. "y": 0.5
  3160. },
  3161. "_id": ""
  3162. },
  3163. {
  3164. "__type__": "cc.CompPrefabInfo",
  3165. "fileId": "c9KfFUomVEs5Q7gfThXTn6"
  3166. },
  3167. {
  3168. "__type__": "79b07TZqZtKarwTFEAGzJ19",
  3169. "_name": "",
  3170. "_objFlags": 0,
  3171. "node": {
  3172. "__id__": 1
  3173. },
  3174. "_enabled": true,
  3175. "__prefab": {
  3176. "__id__": 159
  3177. },
  3178. "headSprite": {
  3179. "__id__": 15
  3180. },
  3181. "relationSprite": {
  3182. "__id__": 39
  3183. },
  3184. "nameLabel": {
  3185. "__id__": 54
  3186. },
  3187. "lvLabel": {
  3188. "__id__": 60
  3189. },
  3190. "redPacket": null,
  3191. "attackButton": {
  3192. "__id__": 104
  3193. },
  3194. "watchButton": {
  3195. "__id__": 123
  3196. },
  3197. "robRedPacketButton": {
  3198. "__id__": 142
  3199. },
  3200. "http": {
  3201. "__id__": 153
  3202. },
  3203. "_id": ""
  3204. },
  3205. {
  3206. "__type__": "cc.CompPrefabInfo",
  3207. "fileId": "ec/2qt8VRAHIrMDQ04rTbE"
  3208. },
  3209. {
  3210. "__type__": "5dbc7RZgppH0phbd/ybYswr",
  3211. "_name": "",
  3212. "_objFlags": 0,
  3213. "node": {
  3214. "__id__": 1
  3215. },
  3216. "_enabled": true,
  3217. "__prefab": {
  3218. "__id__": 161
  3219. },
  3220. "prefabPath": "",
  3221. "openMode": 0,
  3222. "params": [],
  3223. "openFroms": [],
  3224. "_id": ""
  3225. },
  3226. {
  3227. "__type__": "cc.CompPrefabInfo",
  3228. "fileId": "82aKGuru9D+Y7ajdymhtkY"
  3229. },
  3230. {
  3231. "__type__": "cc.PrefabInfo",
  3232. "root": {
  3233. "__id__": 1
  3234. },
  3235. "asset": {
  3236. "__id__": 0
  3237. },
  3238. "fileId": "c0AwH0gDFGvakutMxD/D/9",
  3239. "targetOverrides": [
  3240. {
  3241. "__id__": 163
  3242. }
  3243. ]
  3244. },
  3245. {
  3246. "__type__": "cc.TargetOverrideInfo",
  3247. "source": {
  3248. "__id__": 158
  3249. },
  3250. "sourceInfo": null,
  3251. "propertyPath": [
  3252. "redPacket"
  3253. ],
  3254. "target": {
  3255. "__id__": 70
  3256. },
  3257. "targetInfo": {
  3258. "__id__": 164
  3259. }
  3260. },
  3261. {
  3262. "__type__": "cc.TargetInfo",
  3263. "localID": [
  3264. "9am4iqXA1AkpwJ+qfM8UCs"
  3265. ]
  3266. }
  3267. ]