UI_rank.prefab 68 KB

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