FriendBattleWindow.prefab 58 KB

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