select_area.prefab 59 KB

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