SudokuOutput.prefab 66 KB

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