SudokuOutput.prefab 67 KB

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