FriendWindow.prefab 58 KB

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