rooster_takegoblet.scene 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "rooster_takegoblet",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "rooster_takegoblet",
  15. "_objFlags": 0,
  16. "__editorExtras__": {},
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. }
  22. ],
  23. "_active": true,
  24. "_components": [],
  25. "_prefab": {
  26. "__id__": 73
  27. },
  28. "_lpos": {
  29. "__type__": "cc.Vec3",
  30. "x": 0,
  31. "y": 0,
  32. "z": 0
  33. },
  34. "_lrot": {
  35. "__type__": "cc.Quat",
  36. "x": 0,
  37. "y": 0,
  38. "z": 0,
  39. "w": 1
  40. },
  41. "_lscale": {
  42. "__type__": "cc.Vec3",
  43. "x": 1,
  44. "y": 1,
  45. "z": 1
  46. },
  47. "_mobility": 0,
  48. "_layer": 1073741824,
  49. "_euler": {
  50. "__type__": "cc.Vec3",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0
  54. },
  55. "autoReleaseAssets": false,
  56. "_globals": {
  57. "__id__": 74
  58. },
  59. "_id": "be14c61f-22d8-4bb9-b444-ad9f29740469"
  60. },
  61. {
  62. "__type__": "cc.Node",
  63. "_name": "Canvas",
  64. "_objFlags": 0,
  65. "__editorExtras__": {},
  66. "_parent": {
  67. "__id__": 1
  68. },
  69. "_children": [
  70. {
  71. "__id__": 3
  72. },
  73. {
  74. "__id__": 5
  75. },
  76. {
  77. "__id__": 9
  78. },
  79. {
  80. "__id__": 12
  81. },
  82. {
  83. "__id__": 67
  84. }
  85. ],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 69
  90. },
  91. {
  92. "__id__": 70
  93. },
  94. {
  95. "__id__": 71
  96. },
  97. {
  98. "__id__": 72
  99. }
  100. ],
  101. "_prefab": null,
  102. "_lpos": {
  103. "__type__": "cc.Vec3",
  104. "x": 360,
  105. "y": 640,
  106. "z": 0
  107. },
  108. "_lrot": {
  109. "__type__": "cc.Quat",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0,
  113. "w": 1
  114. },
  115. "_lscale": {
  116. "__type__": "cc.Vec3",
  117. "x": 1,
  118. "y": 1,
  119. "z": 1
  120. },
  121. "_mobility": 0,
  122. "_layer": 33554432,
  123. "_euler": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_id": "0aHBjT00JGfrvIF4yG1+z9"
  130. },
  131. {
  132. "__type__": "cc.Node",
  133. "_name": "Camera",
  134. "_objFlags": 0,
  135. "__editorExtras__": {},
  136. "_parent": {
  137. "__id__": 2
  138. },
  139. "_children": [],
  140. "_active": true,
  141. "_components": [
  142. {
  143. "__id__": 4
  144. }
  145. ],
  146. "_prefab": null,
  147. "_lpos": {
  148. "__type__": "cc.Vec3",
  149. "x": 0,
  150. "y": 0,
  151. "z": 1000
  152. },
  153. "_lrot": {
  154. "__type__": "cc.Quat",
  155. "x": 0,
  156. "y": 0,
  157. "z": 0,
  158. "w": 1
  159. },
  160. "_lscale": {
  161. "__type__": "cc.Vec3",
  162. "x": 1,
  163. "y": 1,
  164. "z": 1
  165. },
  166. "_mobility": 0,
  167. "_layer": 1073741824,
  168. "_euler": {
  169. "__type__": "cc.Vec3",
  170. "x": 0,
  171. "y": 0,
  172. "z": 0
  173. },
  174. "_id": "80BPRZ6oBPN6qctF9/yke0"
  175. },
  176. {
  177. "__type__": "cc.Camera",
  178. "_name": "",
  179. "_objFlags": 0,
  180. "__editorExtras__": {},
  181. "node": {
  182. "__id__": 3
  183. },
  184. "_enabled": true,
  185. "__prefab": null,
  186. "_projection": 0,
  187. "_priority": 1073741824,
  188. "_fov": 45,
  189. "_fovAxis": 0,
  190. "_orthoHeight": 640,
  191. "_near": 1,
  192. "_far": 2000,
  193. "_color": {
  194. "__type__": "cc.Color",
  195. "r": 0,
  196. "g": 0,
  197. "b": 0,
  198. "a": 255
  199. },
  200. "_depth": 1,
  201. "_stencil": 0,
  202. "_clearFlags": 6,
  203. "_rect": {
  204. "__type__": "cc.Rect",
  205. "x": 0,
  206. "y": 0,
  207. "width": 1,
  208. "height": 1
  209. },
  210. "_aperture": 19,
  211. "_shutter": 7,
  212. "_iso": 0,
  213. "_screenScale": 1,
  214. "_visibility": 41943040,
  215. "_targetTexture": null,
  216. "_postProcess": null,
  217. "_usePostProcess": false,
  218. "_cameraType": -1,
  219. "_trackingType": 0,
  220. "_id": "ccsYTcBGdE3Jx/LwwcJJJX"
  221. },
  222. {
  223. "__type__": "cc.Node",
  224. "_name": "Bg",
  225. "_objFlags": 0,
  226. "__editorExtras__": {},
  227. "_parent": {
  228. "__id__": 2
  229. },
  230. "_children": [],
  231. "_active": true,
  232. "_components": [
  233. {
  234. "__id__": 6
  235. },
  236. {
  237. "__id__": 7
  238. },
  239. {
  240. "__id__": 8
  241. }
  242. ],
  243. "_prefab": null,
  244. "_lpos": {
  245. "__type__": "cc.Vec3",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0
  249. },
  250. "_lrot": {
  251. "__type__": "cc.Quat",
  252. "x": 0,
  253. "y": 0,
  254. "z": 0,
  255. "w": 1
  256. },
  257. "_lscale": {
  258. "__type__": "cc.Vec3",
  259. "x": 1,
  260. "y": 1,
  261. "z": 1
  262. },
  263. "_mobility": 0,
  264. "_layer": 33554432,
  265. "_euler": {
  266. "__type__": "cc.Vec3",
  267. "x": 0,
  268. "y": 0,
  269. "z": 0
  270. },
  271. "_id": "4eSDWOisBCTaVSklfFnHru"
  272. },
  273. {
  274. "__type__": "cc.UITransform",
  275. "_name": "",
  276. "_objFlags": 0,
  277. "__editorExtras__": {},
  278. "node": {
  279. "__id__": 5
  280. },
  281. "_enabled": true,
  282. "__prefab": null,
  283. "_contentSize": {
  284. "__type__": "cc.Size",
  285. "width": 720,
  286. "height": 1280
  287. },
  288. "_anchorPoint": {
  289. "__type__": "cc.Vec2",
  290. "x": 0.5,
  291. "y": 0.5
  292. },
  293. "_id": "2d0jQOFuhFvbv72B2CeMXj"
  294. },
  295. {
  296. "__type__": "cc.Sprite",
  297. "_name": "",
  298. "_objFlags": 0,
  299. "__editorExtras__": {},
  300. "node": {
  301. "__id__": 5
  302. },
  303. "_enabled": true,
  304. "__prefab": null,
  305. "_customMaterial": null,
  306. "_srcBlendFactor": 2,
  307. "_dstBlendFactor": 4,
  308. "_color": {
  309. "__type__": "cc.Color",
  310. "r": 255,
  311. "g": 255,
  312. "b": 255,
  313. "a": 255
  314. },
  315. "_spriteFrame": {
  316. "__uuid__": "b33e47fb-b176-4e25-b8f1-85f1996a19bd@f9941",
  317. "__expectedType__": "cc.SpriteFrame"
  318. },
  319. "_type": 1,
  320. "_fillType": 0,
  321. "_sizeMode": 0,
  322. "_fillCenter": {
  323. "__type__": "cc.Vec2",
  324. "x": 0,
  325. "y": 0
  326. },
  327. "_fillStart": 0,
  328. "_fillRange": 0,
  329. "_isTrimmedMode": true,
  330. "_useGrayscale": false,
  331. "_atlas": null,
  332. "_id": "7eseRK/edNt6oNmQj8DnTb"
  333. },
  334. {
  335. "__type__": "cc.Widget",
  336. "_name": "",
  337. "_objFlags": 0,
  338. "__editorExtras__": {},
  339. "node": {
  340. "__id__": 5
  341. },
  342. "_enabled": true,
  343. "__prefab": null,
  344. "_alignFlags": 45,
  345. "_target": null,
  346. "_left": 0,
  347. "_right": 0,
  348. "_top": 0,
  349. "_bottom": 0,
  350. "_horizontalCenter": 0,
  351. "_verticalCenter": 0,
  352. "_isAbsLeft": true,
  353. "_isAbsRight": true,
  354. "_isAbsTop": true,
  355. "_isAbsBottom": true,
  356. "_isAbsHorizontalCenter": true,
  357. "_isAbsVerticalCenter": true,
  358. "_originalWidth": 760,
  359. "_originalHeight": 1599.9999999999998,
  360. "_alignMode": 2,
  361. "_lockFlags": 0,
  362. "_id": "a3clfvZCJIR70/TBZnVTpF"
  363. },
  364. {
  365. "__type__": "cc.Node",
  366. "_name": "Scene",
  367. "_objFlags": 0,
  368. "__editorExtras__": {},
  369. "_parent": {
  370. "__id__": 2
  371. },
  372. "_children": [
  373. {
  374. "__id__": 10
  375. }
  376. ],
  377. "_active": true,
  378. "_components": [],
  379. "_prefab": null,
  380. "_lpos": {
  381. "__type__": "cc.Vec3",
  382. "x": 0,
  383. "y": 0,
  384. "z": 0
  385. },
  386. "_lrot": {
  387. "__type__": "cc.Quat",
  388. "x": 0,
  389. "y": 0,
  390. "z": 0,
  391. "w": 1
  392. },
  393. "_lscale": {
  394. "__type__": "cc.Vec3",
  395. "x": 1,
  396. "y": 1,
  397. "z": 1
  398. },
  399. "_mobility": 0,
  400. "_layer": 33554432,
  401. "_euler": {
  402. "__type__": "cc.Vec3",
  403. "x": 0,
  404. "y": 0,
  405. "z": 0
  406. },
  407. "_id": "3fuKm0nuBBHJHhaLI3ucoH"
  408. },
  409. {
  410. "__type__": "cc.Node",
  411. "_name": "Levels",
  412. "_objFlags": 0,
  413. "__editorExtras__": {},
  414. "_parent": {
  415. "__id__": 9
  416. },
  417. "_children": [],
  418. "_active": true,
  419. "_components": [
  420. {
  421. "__id__": 11
  422. }
  423. ],
  424. "_prefab": null,
  425. "_lpos": {
  426. "__type__": "cc.Vec3",
  427. "x": 0,
  428. "y": 0,
  429. "z": 0
  430. },
  431. "_lrot": {
  432. "__type__": "cc.Quat",
  433. "x": 0,
  434. "y": 0,
  435. "z": 0,
  436. "w": 1
  437. },
  438. "_lscale": {
  439. "__type__": "cc.Vec3",
  440. "x": 1,
  441. "y": 1,
  442. "z": 1
  443. },
  444. "_mobility": 0,
  445. "_layer": 33554432,
  446. "_euler": {
  447. "__type__": "cc.Vec3",
  448. "x": 0,
  449. "y": 0,
  450. "z": 0
  451. },
  452. "_id": "fdUM3xPpZOhocmreO15dfu"
  453. },
  454. {
  455. "__type__": "cc.UITransform",
  456. "_name": "",
  457. "_objFlags": 0,
  458. "__editorExtras__": {},
  459. "node": {
  460. "__id__": 10
  461. },
  462. "_enabled": true,
  463. "__prefab": null,
  464. "_contentSize": {
  465. "__type__": "cc.Size",
  466. "width": 100,
  467. "height": 100
  468. },
  469. "_anchorPoint": {
  470. "__type__": "cc.Vec2",
  471. "x": 0.5,
  472. "y": 0.5
  473. },
  474. "_id": "42I7jX/Y9CeZ6fxNWgPzN5"
  475. },
  476. {
  477. "__type__": "cc.Node",
  478. "_name": "GameUI",
  479. "_objFlags": 0,
  480. "__editorExtras__": {},
  481. "_parent": {
  482. "__id__": 2
  483. },
  484. "_children": [
  485. {
  486. "__id__": 13
  487. },
  488. {
  489. "__id__": 48
  490. },
  491. {
  492. "__id__": 59
  493. }
  494. ],
  495. "_active": true,
  496. "_components": [
  497. {
  498. "__id__": 65
  499. },
  500. {
  501. "__id__": 66
  502. }
  503. ],
  504. "_prefab": null,
  505. "_lpos": {
  506. "__type__": "cc.Vec3",
  507. "x": 0,
  508. "y": 0,
  509. "z": 0
  510. },
  511. "_lrot": {
  512. "__type__": "cc.Quat",
  513. "x": 0,
  514. "y": 0,
  515. "z": 0,
  516. "w": 1
  517. },
  518. "_lscale": {
  519. "__type__": "cc.Vec3",
  520. "x": 1,
  521. "y": 1,
  522. "z": 1
  523. },
  524. "_mobility": 0,
  525. "_layer": 33554432,
  526. "_euler": {
  527. "__type__": "cc.Vec3",
  528. "x": 0,
  529. "y": 0,
  530. "z": 0
  531. },
  532. "_id": "58MeD8Ml5Fz48qBGKRvffz"
  533. },
  534. {
  535. "__type__": "cc.Node",
  536. "_name": "BottomBtns",
  537. "_objFlags": 0,
  538. "__editorExtras__": {},
  539. "_parent": {
  540. "__id__": 12
  541. },
  542. "_children": [
  543. {
  544. "__id__": 14
  545. },
  546. {
  547. "__id__": 24
  548. },
  549. {
  550. "__id__": 34
  551. }
  552. ],
  553. "_active": true,
  554. "_components": [
  555. {
  556. "__id__": 44
  557. },
  558. {
  559. "__id__": 45
  560. },
  561. {
  562. "__id__": 46
  563. },
  564. {
  565. "__id__": 47
  566. }
  567. ],
  568. "_prefab": null,
  569. "_lpos": {
  570. "__type__": "cc.Vec3",
  571. "x": 0,
  572. "y": -555,
  573. "z": 0
  574. },
  575. "_lrot": {
  576. "__type__": "cc.Quat",
  577. "x": 0,
  578. "y": 0,
  579. "z": 0,
  580. "w": 1
  581. },
  582. "_lscale": {
  583. "__type__": "cc.Vec3",
  584. "x": 1,
  585. "y": 1,
  586. "z": 1
  587. },
  588. "_mobility": 0,
  589. "_layer": 33554432,
  590. "_euler": {
  591. "__type__": "cc.Vec3",
  592. "x": 0,
  593. "y": 0,
  594. "z": 0
  595. },
  596. "_id": "7aJPiCjCdIT51G0EeVP/Js"
  597. },
  598. {
  599. "__type__": "cc.Node",
  600. "_name": "BtnFillUp",
  601. "_objFlags": 0,
  602. "__editorExtras__": {},
  603. "_parent": {
  604. "__id__": 13
  605. },
  606. "_children": [
  607. {
  608. "__id__": 15
  609. },
  610. {
  611. "__id__": 18
  612. }
  613. ],
  614. "_active": true,
  615. "_components": [
  616. {
  617. "__id__": 21
  618. },
  619. {
  620. "__id__": 22
  621. },
  622. {
  623. "__id__": 23
  624. }
  625. ],
  626. "_prefab": null,
  627. "_lpos": {
  628. "__type__": "cc.Vec3",
  629. "x": -210,
  630. "y": 17.116,
  631. "z": 0
  632. },
  633. "_lrot": {
  634. "__type__": "cc.Quat",
  635. "x": 0,
  636. "y": 0,
  637. "z": 0,
  638. "w": 1
  639. },
  640. "_lscale": {
  641. "__type__": "cc.Vec3",
  642. "x": 1,
  643. "y": 1,
  644. "z": 1
  645. },
  646. "_mobility": 0,
  647. "_layer": 33554432,
  648. "_euler": {
  649. "__type__": "cc.Vec3",
  650. "x": 0,
  651. "y": 0,
  652. "z": 0
  653. },
  654. "_id": "6cYE3Zt7NHT5w1Z5KL21Ik"
  655. },
  656. {
  657. "__type__": "cc.Node",
  658. "_name": "IconTime",
  659. "_objFlags": 0,
  660. "__editorExtras__": {},
  661. "_parent": {
  662. "__id__": 14
  663. },
  664. "_children": [],
  665. "_active": true,
  666. "_components": [
  667. {
  668. "__id__": 16
  669. },
  670. {
  671. "__id__": 17
  672. }
  673. ],
  674. "_prefab": null,
  675. "_lpos": {
  676. "__type__": "cc.Vec3",
  677. "x": -48.806,
  678. "y": 0,
  679. "z": 0
  680. },
  681. "_lrot": {
  682. "__type__": "cc.Quat",
  683. "x": 0,
  684. "y": 0,
  685. "z": 0,
  686. "w": 1
  687. },
  688. "_lscale": {
  689. "__type__": "cc.Vec3",
  690. "x": 0.5,
  691. "y": 0.5,
  692. "z": 0.5
  693. },
  694. "_mobility": 0,
  695. "_layer": 33554432,
  696. "_euler": {
  697. "__type__": "cc.Vec3",
  698. "x": 0,
  699. "y": 0,
  700. "z": 0
  701. },
  702. "_id": "dcIVw+wGFAoYIU/TgB9/Tl"
  703. },
  704. {
  705. "__type__": "cc.UITransform",
  706. "_name": "",
  707. "_objFlags": 0,
  708. "__editorExtras__": {},
  709. "node": {
  710. "__id__": 15
  711. },
  712. "_enabled": true,
  713. "__prefab": null,
  714. "_contentSize": {
  715. "__type__": "cc.Size",
  716. "width": 103,
  717. "height": 64
  718. },
  719. "_anchorPoint": {
  720. "__type__": "cc.Vec2",
  721. "x": 0.5,
  722. "y": 0.5
  723. },
  724. "_id": "5fIlNHp+NDoKcGdZXmR+T7"
  725. },
  726. {
  727. "__type__": "cc.Sprite",
  728. "_name": "",
  729. "_objFlags": 0,
  730. "__editorExtras__": {},
  731. "node": {
  732. "__id__": 15
  733. },
  734. "_enabled": true,
  735. "__prefab": null,
  736. "_customMaterial": null,
  737. "_srcBlendFactor": 2,
  738. "_dstBlendFactor": 4,
  739. "_color": {
  740. "__type__": "cc.Color",
  741. "r": 255,
  742. "g": 255,
  743. "b": 255,
  744. "a": 255
  745. },
  746. "_spriteFrame": {
  747. "__uuid__": "6dea7fec-abc3-4141-8406-d9253583ef54@f9941",
  748. "__expectedType__": "cc.SpriteFrame"
  749. },
  750. "_type": 0,
  751. "_fillType": 0,
  752. "_sizeMode": 1,
  753. "_fillCenter": {
  754. "__type__": "cc.Vec2",
  755. "x": 0,
  756. "y": 0
  757. },
  758. "_fillStart": 0,
  759. "_fillRange": 0,
  760. "_isTrimmedMode": true,
  761. "_useGrayscale": false,
  762. "_atlas": null,
  763. "_id": "cbRDSpjORBALJVOSjwJQre"
  764. },
  765. {
  766. "__type__": "cc.Node",
  767. "_name": "Lb",
  768. "_objFlags": 0,
  769. "__editorExtras__": {},
  770. "_parent": {
  771. "__id__": 14
  772. },
  773. "_children": [],
  774. "_active": true,
  775. "_components": [
  776. {
  777. "__id__": 19
  778. },
  779. {
  780. "__id__": 20
  781. }
  782. ],
  783. "_prefab": null,
  784. "_lpos": {
  785. "__type__": "cc.Vec3",
  786. "x": 22.636,
  787. "y": -1.712,
  788. "z": 0
  789. },
  790. "_lrot": {
  791. "__type__": "cc.Quat",
  792. "x": 0,
  793. "y": 0,
  794. "z": 0,
  795. "w": 1
  796. },
  797. "_lscale": {
  798. "__type__": "cc.Vec3",
  799. "x": 1,
  800. "y": 1,
  801. "z": 1
  802. },
  803. "_mobility": 0,
  804. "_layer": 33554432,
  805. "_euler": {
  806. "__type__": "cc.Vec3",
  807. "x": 0,
  808. "y": 0,
  809. "z": 0
  810. },
  811. "_id": "5eSk9JlT5HWIAIQBT+eYQq"
  812. },
  813. {
  814. "__type__": "cc.UITransform",
  815. "_name": "",
  816. "_objFlags": 0,
  817. "__editorExtras__": {},
  818. "node": {
  819. "__id__": 18
  820. },
  821. "_enabled": true,
  822. "__prefab": null,
  823. "_contentSize": {
  824. "__type__": "cc.Size",
  825. "width": 80,
  826. "height": 50.4
  827. },
  828. "_anchorPoint": {
  829. "__type__": "cc.Vec2",
  830. "x": 0.5,
  831. "y": 0.5
  832. },
  833. "_id": "2dAAcoNYdLKaT+aYVuoh8h"
  834. },
  835. {
  836. "__type__": "cc.Label",
  837. "_name": "",
  838. "_objFlags": 0,
  839. "__editorExtras__": {},
  840. "node": {
  841. "__id__": 18
  842. },
  843. "_enabled": true,
  844. "__prefab": null,
  845. "_customMaterial": null,
  846. "_srcBlendFactor": 2,
  847. "_dstBlendFactor": 4,
  848. "_color": {
  849. "__type__": "cc.Color",
  850. "r": 255,
  851. "g": 255,
  852. "b": 255,
  853. "a": 255
  854. },
  855. "_string": "补满",
  856. "_horizontalAlign": 1,
  857. "_verticalAlign": 1,
  858. "_actualFontSize": 40,
  859. "_fontSize": 40,
  860. "_fontFamily": "Arial",
  861. "_lineHeight": 40,
  862. "_overflow": 0,
  863. "_enableWrapText": false,
  864. "_font": {
  865. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  866. "__expectedType__": "cc.TTFFont"
  867. },
  868. "_isSystemFontUsed": false,
  869. "_spacingX": 0,
  870. "_isItalic": false,
  871. "_isBold": false,
  872. "_isUnderline": false,
  873. "_underlineHeight": 2,
  874. "_cacheMode": 0,
  875. "_enableOutline": false,
  876. "_outlineColor": {
  877. "__type__": "cc.Color",
  878. "r": 0,
  879. "g": 0,
  880. "b": 0,
  881. "a": 255
  882. },
  883. "_outlineWidth": 2,
  884. "_enableShadow": false,
  885. "_shadowColor": {
  886. "__type__": "cc.Color",
  887. "r": 0,
  888. "g": 0,
  889. "b": 0,
  890. "a": 255
  891. },
  892. "_shadowOffset": {
  893. "__type__": "cc.Vec2",
  894. "x": 2,
  895. "y": 2
  896. },
  897. "_shadowBlur": 2,
  898. "_id": "c93ndNtoZIwYipRZA/K42X"
  899. },
  900. {
  901. "__type__": "cc.UITransform",
  902. "_name": "",
  903. "_objFlags": 0,
  904. "__editorExtras__": {},
  905. "node": {
  906. "__id__": 14
  907. },
  908. "_enabled": true,
  909. "__prefab": null,
  910. "_contentSize": {
  911. "__type__": "cc.Size",
  912. "width": 180,
  913. "height": 150
  914. },
  915. "_anchorPoint": {
  916. "__type__": "cc.Vec2",
  917. "x": 0.5,
  918. "y": 0.5
  919. },
  920. "_id": "7fisGv4iROTL5CNe2MHw9h"
  921. },
  922. {
  923. "__type__": "cc.Sprite",
  924. "_name": "",
  925. "_objFlags": 0,
  926. "__editorExtras__": {},
  927. "node": {
  928. "__id__": 14
  929. },
  930. "_enabled": true,
  931. "__prefab": null,
  932. "_customMaterial": null,
  933. "_srcBlendFactor": 2,
  934. "_dstBlendFactor": 4,
  935. "_color": {
  936. "__type__": "cc.Color",
  937. "r": 255,
  938. "g": 255,
  939. "b": 255,
  940. "a": 255
  941. },
  942. "_spriteFrame": {
  943. "__uuid__": "d0d04c46-9b63-4422-8a97-8acd7af87413@f9941",
  944. "__expectedType__": "cc.SpriteFrame"
  945. },
  946. "_type": 1,
  947. "_fillType": 0,
  948. "_sizeMode": 0,
  949. "_fillCenter": {
  950. "__type__": "cc.Vec2",
  951. "x": 0,
  952. "y": 0
  953. },
  954. "_fillStart": 0,
  955. "_fillRange": 0,
  956. "_isTrimmedMode": true,
  957. "_useGrayscale": false,
  958. "_atlas": null,
  959. "_id": "8cqibgpa5DIa7z7f6rFKMk"
  960. },
  961. {
  962. "__type__": "cc.Button",
  963. "_name": "",
  964. "_objFlags": 0,
  965. "__editorExtras__": {},
  966. "node": {
  967. "__id__": 14
  968. },
  969. "_enabled": true,
  970. "__prefab": null,
  971. "clickEvents": [],
  972. "_interactable": true,
  973. "_transition": 3,
  974. "_normalColor": {
  975. "__type__": "cc.Color",
  976. "r": 214,
  977. "g": 214,
  978. "b": 214,
  979. "a": 255
  980. },
  981. "_hoverColor": {
  982. "__type__": "cc.Color",
  983. "r": 211,
  984. "g": 211,
  985. "b": 211,
  986. "a": 255
  987. },
  988. "_pressedColor": {
  989. "__type__": "cc.Color",
  990. "r": 255,
  991. "g": 255,
  992. "b": 255,
  993. "a": 255
  994. },
  995. "_disabledColor": {
  996. "__type__": "cc.Color",
  997. "r": 124,
  998. "g": 124,
  999. "b": 124,
  1000. "a": 255
  1001. },
  1002. "_normalSprite": null,
  1003. "_hoverSprite": null,
  1004. "_pressedSprite": null,
  1005. "_disabledSprite": null,
  1006. "_duration": 0.1,
  1007. "_zoomScale": 0.8,
  1008. "_target": {
  1009. "__id__": 14
  1010. },
  1011. "_id": "80Ec02hNJIDK2ttLPPpqKX"
  1012. },
  1013. {
  1014. "__type__": "cc.Node",
  1015. "_name": "BtnMoveOut",
  1016. "_objFlags": 0,
  1017. "__editorExtras__": {},
  1018. "_parent": {
  1019. "__id__": 13
  1020. },
  1021. "_children": [
  1022. {
  1023. "__id__": 25
  1024. },
  1025. {
  1026. "__id__": 28
  1027. }
  1028. ],
  1029. "_active": true,
  1030. "_components": [
  1031. {
  1032. "__id__": 31
  1033. },
  1034. {
  1035. "__id__": 32
  1036. },
  1037. {
  1038. "__id__": 33
  1039. }
  1040. ],
  1041. "_prefab": null,
  1042. "_lpos": {
  1043. "__type__": "cc.Vec3",
  1044. "x": 0,
  1045. "y": 17.116,
  1046. "z": 0
  1047. },
  1048. "_lrot": {
  1049. "__type__": "cc.Quat",
  1050. "x": 0,
  1051. "y": 0,
  1052. "z": 0,
  1053. "w": 1
  1054. },
  1055. "_lscale": {
  1056. "__type__": "cc.Vec3",
  1057. "x": 1,
  1058. "y": 1,
  1059. "z": 1
  1060. },
  1061. "_mobility": 0,
  1062. "_layer": 33554432,
  1063. "_euler": {
  1064. "__type__": "cc.Vec3",
  1065. "x": 0,
  1066. "y": 0,
  1067. "z": 0
  1068. },
  1069. "_id": "e0jNGYbKJO2r3PBwBA9fU3"
  1070. },
  1071. {
  1072. "__type__": "cc.Node",
  1073. "_name": "IconTime",
  1074. "_objFlags": 0,
  1075. "__editorExtras__": {},
  1076. "_parent": {
  1077. "__id__": 24
  1078. },
  1079. "_children": [],
  1080. "_active": true,
  1081. "_components": [
  1082. {
  1083. "__id__": 26
  1084. },
  1085. {
  1086. "__id__": 27
  1087. }
  1088. ],
  1089. "_prefab": null,
  1090. "_lpos": {
  1091. "__type__": "cc.Vec3",
  1092. "x": -48.806,
  1093. "y": 0,
  1094. "z": 0
  1095. },
  1096. "_lrot": {
  1097. "__type__": "cc.Quat",
  1098. "x": 0,
  1099. "y": 0,
  1100. "z": 0,
  1101. "w": 1
  1102. },
  1103. "_lscale": {
  1104. "__type__": "cc.Vec3",
  1105. "x": 0.5,
  1106. "y": 0.5,
  1107. "z": 0.5
  1108. },
  1109. "_mobility": 0,
  1110. "_layer": 33554432,
  1111. "_euler": {
  1112. "__type__": "cc.Vec3",
  1113. "x": 0,
  1114. "y": 0,
  1115. "z": 0
  1116. },
  1117. "_id": "eencS9JQxPV4cWols6c29O"
  1118. },
  1119. {
  1120. "__type__": "cc.UITransform",
  1121. "_name": "",
  1122. "_objFlags": 0,
  1123. "__editorExtras__": {},
  1124. "node": {
  1125. "__id__": 25
  1126. },
  1127. "_enabled": true,
  1128. "__prefab": null,
  1129. "_contentSize": {
  1130. "__type__": "cc.Size",
  1131. "width": 103,
  1132. "height": 64
  1133. },
  1134. "_anchorPoint": {
  1135. "__type__": "cc.Vec2",
  1136. "x": 0.5,
  1137. "y": 0.5
  1138. },
  1139. "_id": "8djeK8C0ZOiqbDqCzq7I0k"
  1140. },
  1141. {
  1142. "__type__": "cc.Sprite",
  1143. "_name": "",
  1144. "_objFlags": 0,
  1145. "__editorExtras__": {},
  1146. "node": {
  1147. "__id__": 25
  1148. },
  1149. "_enabled": true,
  1150. "__prefab": null,
  1151. "_customMaterial": null,
  1152. "_srcBlendFactor": 2,
  1153. "_dstBlendFactor": 4,
  1154. "_color": {
  1155. "__type__": "cc.Color",
  1156. "r": 255,
  1157. "g": 255,
  1158. "b": 255,
  1159. "a": 255
  1160. },
  1161. "_spriteFrame": {
  1162. "__uuid__": "6dea7fec-abc3-4141-8406-d9253583ef54@f9941",
  1163. "__expectedType__": "cc.SpriteFrame"
  1164. },
  1165. "_type": 0,
  1166. "_fillType": 0,
  1167. "_sizeMode": 1,
  1168. "_fillCenter": {
  1169. "__type__": "cc.Vec2",
  1170. "x": 0,
  1171. "y": 0
  1172. },
  1173. "_fillStart": 0,
  1174. "_fillRange": 0,
  1175. "_isTrimmedMode": true,
  1176. "_useGrayscale": false,
  1177. "_atlas": null,
  1178. "_id": "11NPgm/spL4aIvY8VwgBVF"
  1179. },
  1180. {
  1181. "__type__": "cc.Node",
  1182. "_name": "Lb",
  1183. "_objFlags": 0,
  1184. "__editorExtras__": {},
  1185. "_parent": {
  1186. "__id__": 24
  1187. },
  1188. "_children": [],
  1189. "_active": true,
  1190. "_components": [
  1191. {
  1192. "__id__": 29
  1193. },
  1194. {
  1195. "__id__": 30
  1196. }
  1197. ],
  1198. "_prefab": null,
  1199. "_lpos": {
  1200. "__type__": "cc.Vec3",
  1201. "x": 22.636,
  1202. "y": -1.712,
  1203. "z": 0
  1204. },
  1205. "_lrot": {
  1206. "__type__": "cc.Quat",
  1207. "x": 0,
  1208. "y": 0,
  1209. "z": 0,
  1210. "w": 1
  1211. },
  1212. "_lscale": {
  1213. "__type__": "cc.Vec3",
  1214. "x": 1,
  1215. "y": 1,
  1216. "z": 1
  1217. },
  1218. "_mobility": 0,
  1219. "_layer": 33554432,
  1220. "_euler": {
  1221. "__type__": "cc.Vec3",
  1222. "x": 0,
  1223. "y": 0,
  1224. "z": 0
  1225. },
  1226. "_id": "50XPlnZnFI07xLvYYpcsgH"
  1227. },
  1228. {
  1229. "__type__": "cc.UITransform",
  1230. "_name": "",
  1231. "_objFlags": 0,
  1232. "__editorExtras__": {},
  1233. "node": {
  1234. "__id__": 28
  1235. },
  1236. "_enabled": true,
  1237. "__prefab": null,
  1238. "_contentSize": {
  1239. "__type__": "cc.Size",
  1240. "width": 80,
  1241. "height": 50.4
  1242. },
  1243. "_anchorPoint": {
  1244. "__type__": "cc.Vec2",
  1245. "x": 0.5,
  1246. "y": 0.5
  1247. },
  1248. "_id": "f28/7KnOZGrr67pRkzpV5Z"
  1249. },
  1250. {
  1251. "__type__": "cc.Label",
  1252. "_name": "",
  1253. "_objFlags": 0,
  1254. "__editorExtras__": {},
  1255. "node": {
  1256. "__id__": 28
  1257. },
  1258. "_enabled": true,
  1259. "__prefab": null,
  1260. "_customMaterial": null,
  1261. "_srcBlendFactor": 2,
  1262. "_dstBlendFactor": 4,
  1263. "_color": {
  1264. "__type__": "cc.Color",
  1265. "r": 255,
  1266. "g": 255,
  1267. "b": 255,
  1268. "a": 255
  1269. },
  1270. "_string": "移出",
  1271. "_horizontalAlign": 1,
  1272. "_verticalAlign": 1,
  1273. "_actualFontSize": 40,
  1274. "_fontSize": 40,
  1275. "_fontFamily": "Arial",
  1276. "_lineHeight": 40,
  1277. "_overflow": 0,
  1278. "_enableWrapText": false,
  1279. "_font": {
  1280. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  1281. "__expectedType__": "cc.TTFFont"
  1282. },
  1283. "_isSystemFontUsed": false,
  1284. "_spacingX": 0,
  1285. "_isItalic": false,
  1286. "_isBold": false,
  1287. "_isUnderline": false,
  1288. "_underlineHeight": 2,
  1289. "_cacheMode": 0,
  1290. "_enableOutline": false,
  1291. "_outlineColor": {
  1292. "__type__": "cc.Color",
  1293. "r": 0,
  1294. "g": 0,
  1295. "b": 0,
  1296. "a": 255
  1297. },
  1298. "_outlineWidth": 2,
  1299. "_enableShadow": false,
  1300. "_shadowColor": {
  1301. "__type__": "cc.Color",
  1302. "r": 0,
  1303. "g": 0,
  1304. "b": 0,
  1305. "a": 255
  1306. },
  1307. "_shadowOffset": {
  1308. "__type__": "cc.Vec2",
  1309. "x": 2,
  1310. "y": 2
  1311. },
  1312. "_shadowBlur": 2,
  1313. "_id": "c1Oh09nMxDnoR6emHOcVhZ"
  1314. },
  1315. {
  1316. "__type__": "cc.UITransform",
  1317. "_name": "",
  1318. "_objFlags": 0,
  1319. "__editorExtras__": {},
  1320. "node": {
  1321. "__id__": 24
  1322. },
  1323. "_enabled": true,
  1324. "__prefab": null,
  1325. "_contentSize": {
  1326. "__type__": "cc.Size",
  1327. "width": 180,
  1328. "height": 150
  1329. },
  1330. "_anchorPoint": {
  1331. "__type__": "cc.Vec2",
  1332. "x": 0.5,
  1333. "y": 0.5
  1334. },
  1335. "_id": "58ELTX0BRFvIZBUnwP/fGo"
  1336. },
  1337. {
  1338. "__type__": "cc.Sprite",
  1339. "_name": "",
  1340. "_objFlags": 0,
  1341. "__editorExtras__": {},
  1342. "node": {
  1343. "__id__": 24
  1344. },
  1345. "_enabled": true,
  1346. "__prefab": null,
  1347. "_customMaterial": null,
  1348. "_srcBlendFactor": 2,
  1349. "_dstBlendFactor": 4,
  1350. "_color": {
  1351. "__type__": "cc.Color",
  1352. "r": 255,
  1353. "g": 255,
  1354. "b": 255,
  1355. "a": 255
  1356. },
  1357. "_spriteFrame": {
  1358. "__uuid__": "d0d04c46-9b63-4422-8a97-8acd7af87413@f9941",
  1359. "__expectedType__": "cc.SpriteFrame"
  1360. },
  1361. "_type": 1,
  1362. "_fillType": 0,
  1363. "_sizeMode": 0,
  1364. "_fillCenter": {
  1365. "__type__": "cc.Vec2",
  1366. "x": 0,
  1367. "y": 0
  1368. },
  1369. "_fillStart": 0,
  1370. "_fillRange": 0,
  1371. "_isTrimmedMode": true,
  1372. "_useGrayscale": false,
  1373. "_atlas": null,
  1374. "_id": "94ZYW4YrZJboWEShnsqC2T"
  1375. },
  1376. {
  1377. "__type__": "cc.Button",
  1378. "_name": "",
  1379. "_objFlags": 0,
  1380. "__editorExtras__": {},
  1381. "node": {
  1382. "__id__": 24
  1383. },
  1384. "_enabled": true,
  1385. "__prefab": null,
  1386. "clickEvents": [],
  1387. "_interactable": true,
  1388. "_transition": 3,
  1389. "_normalColor": {
  1390. "__type__": "cc.Color",
  1391. "r": 214,
  1392. "g": 214,
  1393. "b": 214,
  1394. "a": 255
  1395. },
  1396. "_hoverColor": {
  1397. "__type__": "cc.Color",
  1398. "r": 211,
  1399. "g": 211,
  1400. "b": 211,
  1401. "a": 255
  1402. },
  1403. "_pressedColor": {
  1404. "__type__": "cc.Color",
  1405. "r": 255,
  1406. "g": 255,
  1407. "b": 255,
  1408. "a": 255
  1409. },
  1410. "_disabledColor": {
  1411. "__type__": "cc.Color",
  1412. "r": 124,
  1413. "g": 124,
  1414. "b": 124,
  1415. "a": 255
  1416. },
  1417. "_normalSprite": null,
  1418. "_hoverSprite": null,
  1419. "_pressedSprite": null,
  1420. "_disabledSprite": null,
  1421. "_duration": 0.1,
  1422. "_zoomScale": 0.8,
  1423. "_target": {
  1424. "__id__": 24
  1425. },
  1426. "_id": "72dGD18ihEeIbP39P9J70f"
  1427. },
  1428. {
  1429. "__type__": "cc.Node",
  1430. "_name": "BtnRefresh",
  1431. "_objFlags": 0,
  1432. "__editorExtras__": {},
  1433. "_parent": {
  1434. "__id__": 13
  1435. },
  1436. "_children": [
  1437. {
  1438. "__id__": 35
  1439. },
  1440. {
  1441. "__id__": 38
  1442. }
  1443. ],
  1444. "_active": true,
  1445. "_components": [
  1446. {
  1447. "__id__": 41
  1448. },
  1449. {
  1450. "__id__": 42
  1451. },
  1452. {
  1453. "__id__": 43
  1454. }
  1455. ],
  1456. "_prefab": null,
  1457. "_lpos": {
  1458. "__type__": "cc.Vec3",
  1459. "x": 210,
  1460. "y": 17.116,
  1461. "z": 0
  1462. },
  1463. "_lrot": {
  1464. "__type__": "cc.Quat",
  1465. "x": 0,
  1466. "y": 0,
  1467. "z": 0,
  1468. "w": 1
  1469. },
  1470. "_lscale": {
  1471. "__type__": "cc.Vec3",
  1472. "x": 1,
  1473. "y": 1,
  1474. "z": 1
  1475. },
  1476. "_mobility": 0,
  1477. "_layer": 33554432,
  1478. "_euler": {
  1479. "__type__": "cc.Vec3",
  1480. "x": 0,
  1481. "y": 0,
  1482. "z": 0
  1483. },
  1484. "_id": "8exiv/U4xDrL+ZzRCFRKHv"
  1485. },
  1486. {
  1487. "__type__": "cc.Node",
  1488. "_name": "IconTime",
  1489. "_objFlags": 0,
  1490. "__editorExtras__": {},
  1491. "_parent": {
  1492. "__id__": 34
  1493. },
  1494. "_children": [],
  1495. "_active": true,
  1496. "_components": [
  1497. {
  1498. "__id__": 36
  1499. },
  1500. {
  1501. "__id__": 37
  1502. }
  1503. ],
  1504. "_prefab": null,
  1505. "_lpos": {
  1506. "__type__": "cc.Vec3",
  1507. "x": -48.806,
  1508. "y": 0,
  1509. "z": 0
  1510. },
  1511. "_lrot": {
  1512. "__type__": "cc.Quat",
  1513. "x": 0,
  1514. "y": 0,
  1515. "z": 0,
  1516. "w": 1
  1517. },
  1518. "_lscale": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 0.5,
  1521. "y": 0.5,
  1522. "z": 0.5
  1523. },
  1524. "_mobility": 0,
  1525. "_layer": 33554432,
  1526. "_euler": {
  1527. "__type__": "cc.Vec3",
  1528. "x": 0,
  1529. "y": 0,
  1530. "z": 0
  1531. },
  1532. "_id": "20KK9aBc5EAZTV41D4RiO5"
  1533. },
  1534. {
  1535. "__type__": "cc.UITransform",
  1536. "_name": "",
  1537. "_objFlags": 0,
  1538. "__editorExtras__": {},
  1539. "node": {
  1540. "__id__": 35
  1541. },
  1542. "_enabled": true,
  1543. "__prefab": null,
  1544. "_contentSize": {
  1545. "__type__": "cc.Size",
  1546. "width": 103,
  1547. "height": 64
  1548. },
  1549. "_anchorPoint": {
  1550. "__type__": "cc.Vec2",
  1551. "x": 0.5,
  1552. "y": 0.5
  1553. },
  1554. "_id": "08T+lTJvdP9bOMo2qJ4hjH"
  1555. },
  1556. {
  1557. "__type__": "cc.Sprite",
  1558. "_name": "",
  1559. "_objFlags": 0,
  1560. "__editorExtras__": {},
  1561. "node": {
  1562. "__id__": 35
  1563. },
  1564. "_enabled": true,
  1565. "__prefab": null,
  1566. "_customMaterial": null,
  1567. "_srcBlendFactor": 2,
  1568. "_dstBlendFactor": 4,
  1569. "_color": {
  1570. "__type__": "cc.Color",
  1571. "r": 255,
  1572. "g": 255,
  1573. "b": 255,
  1574. "a": 255
  1575. },
  1576. "_spriteFrame": {
  1577. "__uuid__": "6dea7fec-abc3-4141-8406-d9253583ef54@f9941",
  1578. "__expectedType__": "cc.SpriteFrame"
  1579. },
  1580. "_type": 0,
  1581. "_fillType": 0,
  1582. "_sizeMode": 1,
  1583. "_fillCenter": {
  1584. "__type__": "cc.Vec2",
  1585. "x": 0,
  1586. "y": 0
  1587. },
  1588. "_fillStart": 0,
  1589. "_fillRange": 0,
  1590. "_isTrimmedMode": true,
  1591. "_useGrayscale": false,
  1592. "_atlas": null,
  1593. "_id": "3a5O7rd+NJfqhLzUDvYTBQ"
  1594. },
  1595. {
  1596. "__type__": "cc.Node",
  1597. "_name": "Lb",
  1598. "_objFlags": 0,
  1599. "__editorExtras__": {},
  1600. "_parent": {
  1601. "__id__": 34
  1602. },
  1603. "_children": [],
  1604. "_active": true,
  1605. "_components": [
  1606. {
  1607. "__id__": 39
  1608. },
  1609. {
  1610. "__id__": 40
  1611. }
  1612. ],
  1613. "_prefab": null,
  1614. "_lpos": {
  1615. "__type__": "cc.Vec3",
  1616. "x": 22.636,
  1617. "y": -1.712,
  1618. "z": 0
  1619. },
  1620. "_lrot": {
  1621. "__type__": "cc.Quat",
  1622. "x": 0,
  1623. "y": 0,
  1624. "z": 0,
  1625. "w": 1
  1626. },
  1627. "_lscale": {
  1628. "__type__": "cc.Vec3",
  1629. "x": 1,
  1630. "y": 1,
  1631. "z": 1
  1632. },
  1633. "_mobility": 0,
  1634. "_layer": 33554432,
  1635. "_euler": {
  1636. "__type__": "cc.Vec3",
  1637. "x": 0,
  1638. "y": 0,
  1639. "z": 0
  1640. },
  1641. "_id": "7c467+Wi5EOK0/1tzYo+H3"
  1642. },
  1643. {
  1644. "__type__": "cc.UITransform",
  1645. "_name": "",
  1646. "_objFlags": 0,
  1647. "__editorExtras__": {},
  1648. "node": {
  1649. "__id__": 38
  1650. },
  1651. "_enabled": true,
  1652. "__prefab": null,
  1653. "_contentSize": {
  1654. "__type__": "cc.Size",
  1655. "width": 80,
  1656. "height": 50.4
  1657. },
  1658. "_anchorPoint": {
  1659. "__type__": "cc.Vec2",
  1660. "x": 0.5,
  1661. "y": 0.5
  1662. },
  1663. "_id": "d6pEelzGlKrZMy5lWmoc81"
  1664. },
  1665. {
  1666. "__type__": "cc.Label",
  1667. "_name": "",
  1668. "_objFlags": 0,
  1669. "__editorExtras__": {},
  1670. "node": {
  1671. "__id__": 38
  1672. },
  1673. "_enabled": true,
  1674. "__prefab": null,
  1675. "_customMaterial": null,
  1676. "_srcBlendFactor": 2,
  1677. "_dstBlendFactor": 4,
  1678. "_color": {
  1679. "__type__": "cc.Color",
  1680. "r": 255,
  1681. "g": 255,
  1682. "b": 255,
  1683. "a": 255
  1684. },
  1685. "_string": "打乱",
  1686. "_horizontalAlign": 1,
  1687. "_verticalAlign": 1,
  1688. "_actualFontSize": 40,
  1689. "_fontSize": 40,
  1690. "_fontFamily": "Arial",
  1691. "_lineHeight": 40,
  1692. "_overflow": 0,
  1693. "_enableWrapText": false,
  1694. "_font": {
  1695. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  1696. "__expectedType__": "cc.TTFFont"
  1697. },
  1698. "_isSystemFontUsed": false,
  1699. "_spacingX": 0,
  1700. "_isItalic": false,
  1701. "_isBold": false,
  1702. "_isUnderline": false,
  1703. "_underlineHeight": 2,
  1704. "_cacheMode": 0,
  1705. "_enableOutline": false,
  1706. "_outlineColor": {
  1707. "__type__": "cc.Color",
  1708. "r": 0,
  1709. "g": 0,
  1710. "b": 0,
  1711. "a": 255
  1712. },
  1713. "_outlineWidth": 2,
  1714. "_enableShadow": false,
  1715. "_shadowColor": {
  1716. "__type__": "cc.Color",
  1717. "r": 0,
  1718. "g": 0,
  1719. "b": 0,
  1720. "a": 255
  1721. },
  1722. "_shadowOffset": {
  1723. "__type__": "cc.Vec2",
  1724. "x": 2,
  1725. "y": 2
  1726. },
  1727. "_shadowBlur": 2,
  1728. "_id": "7cCIuPpSpMPK4EP8MT0CnH"
  1729. },
  1730. {
  1731. "__type__": "cc.UITransform",
  1732. "_name": "",
  1733. "_objFlags": 0,
  1734. "__editorExtras__": {},
  1735. "node": {
  1736. "__id__": 34
  1737. },
  1738. "_enabled": true,
  1739. "__prefab": null,
  1740. "_contentSize": {
  1741. "__type__": "cc.Size",
  1742. "width": 180,
  1743. "height": 150
  1744. },
  1745. "_anchorPoint": {
  1746. "__type__": "cc.Vec2",
  1747. "x": 0.5,
  1748. "y": 0.5
  1749. },
  1750. "_id": "76+0AICONEAo4azz7dKnsA"
  1751. },
  1752. {
  1753. "__type__": "cc.Sprite",
  1754. "_name": "",
  1755. "_objFlags": 0,
  1756. "__editorExtras__": {},
  1757. "node": {
  1758. "__id__": 34
  1759. },
  1760. "_enabled": true,
  1761. "__prefab": null,
  1762. "_customMaterial": null,
  1763. "_srcBlendFactor": 2,
  1764. "_dstBlendFactor": 4,
  1765. "_color": {
  1766. "__type__": "cc.Color",
  1767. "r": 255,
  1768. "g": 255,
  1769. "b": 255,
  1770. "a": 255
  1771. },
  1772. "_spriteFrame": {
  1773. "__uuid__": "d0d04c46-9b63-4422-8a97-8acd7af87413@f9941",
  1774. "__expectedType__": "cc.SpriteFrame"
  1775. },
  1776. "_type": 1,
  1777. "_fillType": 0,
  1778. "_sizeMode": 0,
  1779. "_fillCenter": {
  1780. "__type__": "cc.Vec2",
  1781. "x": 0,
  1782. "y": 0
  1783. },
  1784. "_fillStart": 0,
  1785. "_fillRange": 0,
  1786. "_isTrimmedMode": true,
  1787. "_useGrayscale": false,
  1788. "_atlas": null,
  1789. "_id": "0aAoUgHHZMaJm7j0wYPO/+"
  1790. },
  1791. {
  1792. "__type__": "cc.Button",
  1793. "_name": "",
  1794. "_objFlags": 0,
  1795. "__editorExtras__": {},
  1796. "node": {
  1797. "__id__": 34
  1798. },
  1799. "_enabled": true,
  1800. "__prefab": null,
  1801. "clickEvents": [],
  1802. "_interactable": true,
  1803. "_transition": 3,
  1804. "_normalColor": {
  1805. "__type__": "cc.Color",
  1806. "r": 214,
  1807. "g": 214,
  1808. "b": 214,
  1809. "a": 255
  1810. },
  1811. "_hoverColor": {
  1812. "__type__": "cc.Color",
  1813. "r": 211,
  1814. "g": 211,
  1815. "b": 211,
  1816. "a": 255
  1817. },
  1818. "_pressedColor": {
  1819. "__type__": "cc.Color",
  1820. "r": 255,
  1821. "g": 255,
  1822. "b": 255,
  1823. "a": 255
  1824. },
  1825. "_disabledColor": {
  1826. "__type__": "cc.Color",
  1827. "r": 124,
  1828. "g": 124,
  1829. "b": 124,
  1830. "a": 255
  1831. },
  1832. "_normalSprite": null,
  1833. "_hoverSprite": null,
  1834. "_pressedSprite": null,
  1835. "_disabledSprite": null,
  1836. "_duration": 0.1,
  1837. "_zoomScale": 0.8,
  1838. "_target": {
  1839. "__id__": 34
  1840. },
  1841. "_id": "08cHFDjw9B2LtDSZPexGLb"
  1842. },
  1843. {
  1844. "__type__": "cc.UITransform",
  1845. "_name": "",
  1846. "_objFlags": 0,
  1847. "__editorExtras__": {},
  1848. "node": {
  1849. "__id__": 13
  1850. },
  1851. "_enabled": true,
  1852. "__prefab": null,
  1853. "_contentSize": {
  1854. "__type__": "cc.Size",
  1855. "width": 600,
  1856. "height": 150
  1857. },
  1858. "_anchorPoint": {
  1859. "__type__": "cc.Vec2",
  1860. "x": 0.5,
  1861. "y": 0.5
  1862. },
  1863. "_id": "c3JjbhZlNHXpi3Pcdcz1/4"
  1864. },
  1865. {
  1866. "__type__": "cc.Widget",
  1867. "_name": "",
  1868. "_objFlags": 0,
  1869. "__editorExtras__": {},
  1870. "node": {
  1871. "__id__": 13
  1872. },
  1873. "_enabled": true,
  1874. "__prefab": null,
  1875. "_alignFlags": 44,
  1876. "_target": null,
  1877. "_left": 60,
  1878. "_right": 60,
  1879. "_top": 0,
  1880. "_bottom": 10,
  1881. "_horizontalCenter": 0,
  1882. "_verticalCenter": 0,
  1883. "_isAbsLeft": true,
  1884. "_isAbsRight": true,
  1885. "_isAbsTop": true,
  1886. "_isAbsBottom": true,
  1887. "_isAbsHorizontalCenter": true,
  1888. "_isAbsVerticalCenter": true,
  1889. "_originalWidth": 100,
  1890. "_originalHeight": 0,
  1891. "_alignMode": 2,
  1892. "_lockFlags": 0,
  1893. "_id": "14FKMQazBIqIgCLc8Thg2A"
  1894. },
  1895. {
  1896. "__type__": "cc.Layout",
  1897. "_name": "",
  1898. "_objFlags": 0,
  1899. "__editorExtras__": {},
  1900. "node": {
  1901. "__id__": 13
  1902. },
  1903. "_enabled": true,
  1904. "__prefab": null,
  1905. "_resizeMode": 1,
  1906. "_layoutType": 1,
  1907. "_cellSize": {
  1908. "__type__": "cc.Size",
  1909. "width": 40,
  1910. "height": 40
  1911. },
  1912. "_startAxis": 0,
  1913. "_paddingLeft": 0,
  1914. "_paddingRight": 0,
  1915. "_paddingTop": 0,
  1916. "_paddingBottom": 0,
  1917. "_spacingX": 30,
  1918. "_spacingY": 0,
  1919. "_verticalDirection": 1,
  1920. "_horizontalDirection": 0,
  1921. "_constraint": 0,
  1922. "_constraintNum": 2,
  1923. "_affectedByScale": false,
  1924. "_isAlign": false,
  1925. "_id": "e5lNKW+8REapy973XbOiDJ"
  1926. },
  1927. {
  1928. "__type__": "e06e2SlI+ZJtpHlZ9sR5XFm",
  1929. "_name": "",
  1930. "_objFlags": 0,
  1931. "__editorExtras__": {},
  1932. "node": {
  1933. "__id__": 13
  1934. },
  1935. "_enabled": true,
  1936. "__prefab": null,
  1937. "btnFillUp": {
  1938. "__id__": 23
  1939. },
  1940. "btMoveOut": {
  1941. "__id__": 33
  1942. },
  1943. "btRefresh": {
  1944. "__id__": 43
  1945. },
  1946. "_id": "c0Qmmo34pE/II8L7R2hCgt"
  1947. },
  1948. {
  1949. "__type__": "cc.Node",
  1950. "_name": "TopLeft",
  1951. "_objFlags": 0,
  1952. "__editorExtras__": {},
  1953. "_parent": {
  1954. "__id__": 12
  1955. },
  1956. "_children": [
  1957. {
  1958. "__id__": 49
  1959. },
  1960. {
  1961. "__id__": 53
  1962. }
  1963. ],
  1964. "_active": true,
  1965. "_components": [
  1966. {
  1967. "__id__": 57
  1968. },
  1969. {
  1970. "__id__": 58
  1971. }
  1972. ],
  1973. "_prefab": null,
  1974. "_lpos": {
  1975. "__type__": "cc.Vec3",
  1976. "x": -296.947,
  1977. "y": 571.83,
  1978. "z": 0
  1979. },
  1980. "_lrot": {
  1981. "__type__": "cc.Quat",
  1982. "x": 0,
  1983. "y": 0,
  1984. "z": 0,
  1985. "w": 1
  1986. },
  1987. "_lscale": {
  1988. "__type__": "cc.Vec3",
  1989. "x": 1,
  1990. "y": 1,
  1991. "z": 1
  1992. },
  1993. "_mobility": 0,
  1994. "_layer": 33554432,
  1995. "_euler": {
  1996. "__type__": "cc.Vec3",
  1997. "x": 0,
  1998. "y": 0,
  1999. "z": 0
  2000. },
  2001. "_id": "20CM524ddDALRdyBpymcE5"
  2002. },
  2003. {
  2004. "__type__": "cc.Node",
  2005. "_name": "BtnSet",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "_parent": {
  2009. "__id__": 48
  2010. },
  2011. "_children": [],
  2012. "_active": true,
  2013. "_components": [
  2014. {
  2015. "__id__": 50
  2016. },
  2017. {
  2018. "__id__": 51
  2019. },
  2020. {
  2021. "__id__": 52
  2022. }
  2023. ],
  2024. "_prefab": null,
  2025. "_lpos": {
  2026. "__type__": "cc.Vec3",
  2027. "x": 0,
  2028. "y": 0,
  2029. "z": 0
  2030. },
  2031. "_lrot": {
  2032. "__type__": "cc.Quat",
  2033. "x": 0,
  2034. "y": 0,
  2035. "z": 0,
  2036. "w": 1
  2037. },
  2038. "_lscale": {
  2039. "__type__": "cc.Vec3",
  2040. "x": 1,
  2041. "y": 1,
  2042. "z": 1
  2043. },
  2044. "_mobility": 0,
  2045. "_layer": 33554432,
  2046. "_euler": {
  2047. "__type__": "cc.Vec3",
  2048. "x": 0,
  2049. "y": 0,
  2050. "z": 0
  2051. },
  2052. "_id": "b1mWWBgIZNWL+Dlq+d849C"
  2053. },
  2054. {
  2055. "__type__": "cc.UITransform",
  2056. "_name": "",
  2057. "_objFlags": 0,
  2058. "__editorExtras__": {},
  2059. "node": {
  2060. "__id__": 49
  2061. },
  2062. "_enabled": true,
  2063. "__prefab": null,
  2064. "_contentSize": {
  2065. "__type__": "cc.Size",
  2066. "width": 97,
  2067. "height": 94
  2068. },
  2069. "_anchorPoint": {
  2070. "__type__": "cc.Vec2",
  2071. "x": 0.5,
  2072. "y": 0.5
  2073. },
  2074. "_id": "6fXjO1oIxIqLBobYUHXhii"
  2075. },
  2076. {
  2077. "__type__": "cc.Sprite",
  2078. "_name": "",
  2079. "_objFlags": 0,
  2080. "__editorExtras__": {},
  2081. "node": {
  2082. "__id__": 49
  2083. },
  2084. "_enabled": true,
  2085. "__prefab": null,
  2086. "_customMaterial": null,
  2087. "_srcBlendFactor": 2,
  2088. "_dstBlendFactor": 4,
  2089. "_color": {
  2090. "__type__": "cc.Color",
  2091. "r": 255,
  2092. "g": 255,
  2093. "b": 255,
  2094. "a": 255
  2095. },
  2096. "_spriteFrame": {
  2097. "__uuid__": "f06fbab2-a58c-43e3-bb4d-d71441a30e40@f9941",
  2098. "__expectedType__": "cc.SpriteFrame"
  2099. },
  2100. "_type": 1,
  2101. "_fillType": 0,
  2102. "_sizeMode": 2,
  2103. "_fillCenter": {
  2104. "__type__": "cc.Vec2",
  2105. "x": 0,
  2106. "y": 0
  2107. },
  2108. "_fillStart": 0,
  2109. "_fillRange": 0,
  2110. "_isTrimmedMode": true,
  2111. "_useGrayscale": false,
  2112. "_atlas": null,
  2113. "_id": "02V5GGbpxD5rbioMe//nx8"
  2114. },
  2115. {
  2116. "__type__": "cc.Button",
  2117. "_name": "",
  2118. "_objFlags": 0,
  2119. "__editorExtras__": {},
  2120. "node": {
  2121. "__id__": 49
  2122. },
  2123. "_enabled": true,
  2124. "__prefab": null,
  2125. "clickEvents": [],
  2126. "_interactable": true,
  2127. "_transition": 3,
  2128. "_normalColor": {
  2129. "__type__": "cc.Color",
  2130. "r": 214,
  2131. "g": 214,
  2132. "b": 214,
  2133. "a": 255
  2134. },
  2135. "_hoverColor": {
  2136. "__type__": "cc.Color",
  2137. "r": 211,
  2138. "g": 211,
  2139. "b": 211,
  2140. "a": 255
  2141. },
  2142. "_pressedColor": {
  2143. "__type__": "cc.Color",
  2144. "r": 255,
  2145. "g": 255,
  2146. "b": 255,
  2147. "a": 255
  2148. },
  2149. "_disabledColor": {
  2150. "__type__": "cc.Color",
  2151. "r": 124,
  2152. "g": 124,
  2153. "b": 124,
  2154. "a": 255
  2155. },
  2156. "_normalSprite": null,
  2157. "_hoverSprite": null,
  2158. "_pressedSprite": null,
  2159. "_disabledSprite": null,
  2160. "_duration": 0.1,
  2161. "_zoomScale": 1.2,
  2162. "_target": {
  2163. "__id__": 49
  2164. },
  2165. "_id": "51Zwo4GTBBT7vNI+1Aij5E"
  2166. },
  2167. {
  2168. "__type__": "cc.Node",
  2169. "_name": "BtnRefresh",
  2170. "_objFlags": 0,
  2171. "__editorExtras__": {},
  2172. "_parent": {
  2173. "__id__": 48
  2174. },
  2175. "_children": [],
  2176. "_active": true,
  2177. "_components": [
  2178. {
  2179. "__id__": 54
  2180. },
  2181. {
  2182. "__id__": 55
  2183. },
  2184. {
  2185. "__id__": 56
  2186. }
  2187. ],
  2188. "_prefab": null,
  2189. "_lpos": {
  2190. "__type__": "cc.Vec3",
  2191. "x": 120,
  2192. "y": 0,
  2193. "z": 0
  2194. },
  2195. "_lrot": {
  2196. "__type__": "cc.Quat",
  2197. "x": 0,
  2198. "y": 0,
  2199. "z": 0,
  2200. "w": 1
  2201. },
  2202. "_lscale": {
  2203. "__type__": "cc.Vec3",
  2204. "x": 1,
  2205. "y": 1,
  2206. "z": 1
  2207. },
  2208. "_mobility": 0,
  2209. "_layer": 33554432,
  2210. "_euler": {
  2211. "__type__": "cc.Vec3",
  2212. "x": 0,
  2213. "y": 0,
  2214. "z": 0
  2215. },
  2216. "_id": "05+W1X7h9PfJ8HjUCxQnsN"
  2217. },
  2218. {
  2219. "__type__": "cc.UITransform",
  2220. "_name": "",
  2221. "_objFlags": 0,
  2222. "__editorExtras__": {},
  2223. "node": {
  2224. "__id__": 53
  2225. },
  2226. "_enabled": true,
  2227. "__prefab": null,
  2228. "_contentSize": {
  2229. "__type__": "cc.Size",
  2230. "width": 96,
  2231. "height": 94
  2232. },
  2233. "_anchorPoint": {
  2234. "__type__": "cc.Vec2",
  2235. "x": 0.5,
  2236. "y": 0.5
  2237. },
  2238. "_id": "4esomS6+FA2poBiVAQbVlK"
  2239. },
  2240. {
  2241. "__type__": "cc.Sprite",
  2242. "_name": "",
  2243. "_objFlags": 0,
  2244. "__editorExtras__": {},
  2245. "node": {
  2246. "__id__": 53
  2247. },
  2248. "_enabled": true,
  2249. "__prefab": null,
  2250. "_customMaterial": null,
  2251. "_srcBlendFactor": 2,
  2252. "_dstBlendFactor": 4,
  2253. "_color": {
  2254. "__type__": "cc.Color",
  2255. "r": 255,
  2256. "g": 255,
  2257. "b": 255,
  2258. "a": 255
  2259. },
  2260. "_spriteFrame": {
  2261. "__uuid__": "df590b07-c322-4c8c-af24-adfe2844b334@f9941",
  2262. "__expectedType__": "cc.SpriteFrame"
  2263. },
  2264. "_type": 1,
  2265. "_fillType": 0,
  2266. "_sizeMode": 2,
  2267. "_fillCenter": {
  2268. "__type__": "cc.Vec2",
  2269. "x": 0,
  2270. "y": 0
  2271. },
  2272. "_fillStart": 0,
  2273. "_fillRange": 0,
  2274. "_isTrimmedMode": true,
  2275. "_useGrayscale": false,
  2276. "_atlas": null,
  2277. "_id": "46A+1rH41LMoSr2AyWlR3M"
  2278. },
  2279. {
  2280. "__type__": "cc.Button",
  2281. "_name": "",
  2282. "_objFlags": 0,
  2283. "__editorExtras__": {},
  2284. "node": {
  2285. "__id__": 53
  2286. },
  2287. "_enabled": true,
  2288. "__prefab": null,
  2289. "clickEvents": [],
  2290. "_interactable": true,
  2291. "_transition": 3,
  2292. "_normalColor": {
  2293. "__type__": "cc.Color",
  2294. "r": 214,
  2295. "g": 214,
  2296. "b": 214,
  2297. "a": 255
  2298. },
  2299. "_hoverColor": {
  2300. "__type__": "cc.Color",
  2301. "r": 211,
  2302. "g": 211,
  2303. "b": 211,
  2304. "a": 255
  2305. },
  2306. "_pressedColor": {
  2307. "__type__": "cc.Color",
  2308. "r": 255,
  2309. "g": 255,
  2310. "b": 255,
  2311. "a": 255
  2312. },
  2313. "_disabledColor": {
  2314. "__type__": "cc.Color",
  2315. "r": 124,
  2316. "g": 124,
  2317. "b": 124,
  2318. "a": 255
  2319. },
  2320. "_normalSprite": null,
  2321. "_hoverSprite": null,
  2322. "_pressedSprite": null,
  2323. "_disabledSprite": null,
  2324. "_duration": 0.1,
  2325. "_zoomScale": 1.2,
  2326. "_target": {
  2327. "__id__": 53
  2328. },
  2329. "_id": "ec3qEoJHVABoxGd3CvrvsV"
  2330. },
  2331. {
  2332. "__type__": "cc.UITransform",
  2333. "_name": "",
  2334. "_objFlags": 0,
  2335. "__editorExtras__": {},
  2336. "node": {
  2337. "__id__": 48
  2338. },
  2339. "_enabled": true,
  2340. "__prefab": null,
  2341. "_contentSize": {
  2342. "__type__": "cc.Size",
  2343. "width": 100,
  2344. "height": 100
  2345. },
  2346. "_anchorPoint": {
  2347. "__type__": "cc.Vec2",
  2348. "x": 0.5,
  2349. "y": 0.5
  2350. },
  2351. "_id": "d0TcHh5mFPMZsmfTTtOr2h"
  2352. },
  2353. {
  2354. "__type__": "cc.Widget",
  2355. "_name": "",
  2356. "_objFlags": 0,
  2357. "__editorExtras__": {},
  2358. "node": {
  2359. "__id__": 48
  2360. },
  2361. "_enabled": true,
  2362. "__prefab": null,
  2363. "_alignFlags": 9,
  2364. "_target": null,
  2365. "_left": 13.052999999999997,
  2366. "_right": 0,
  2367. "_top": 18.16999999999996,
  2368. "_bottom": 0,
  2369. "_horizontalCenter": 0,
  2370. "_verticalCenter": 0,
  2371. "_isAbsLeft": true,
  2372. "_isAbsRight": true,
  2373. "_isAbsTop": true,
  2374. "_isAbsBottom": true,
  2375. "_isAbsHorizontalCenter": true,
  2376. "_isAbsVerticalCenter": true,
  2377. "_originalWidth": 0,
  2378. "_originalHeight": 0,
  2379. "_alignMode": 2,
  2380. "_lockFlags": 0,
  2381. "_id": "f382WzED1EIKcBD4MRB3XH"
  2382. },
  2383. {
  2384. "__type__": "cc.Node",
  2385. "_name": "TitleLvl",
  2386. "_objFlags": 0,
  2387. "__editorExtras__": {},
  2388. "_parent": {
  2389. "__id__": 12
  2390. },
  2391. "_children": [
  2392. {
  2393. "__id__": 60
  2394. }
  2395. ],
  2396. "_active": true,
  2397. "_components": [
  2398. {
  2399. "__id__": 63
  2400. },
  2401. {
  2402. "__id__": 64
  2403. }
  2404. ],
  2405. "_prefab": null,
  2406. "_lpos": {
  2407. "__type__": "cc.Vec3",
  2408. "x": 0,
  2409. "y": 590,
  2410. "z": 0
  2411. },
  2412. "_lrot": {
  2413. "__type__": "cc.Quat",
  2414. "x": 0,
  2415. "y": 0,
  2416. "z": 0,
  2417. "w": 1
  2418. },
  2419. "_lscale": {
  2420. "__type__": "cc.Vec3",
  2421. "x": 1,
  2422. "y": 1,
  2423. "z": 1
  2424. },
  2425. "_mobility": 0,
  2426. "_layer": 33554432,
  2427. "_euler": {
  2428. "__type__": "cc.Vec3",
  2429. "x": 0,
  2430. "y": 0,
  2431. "z": 0
  2432. },
  2433. "_id": "7eaBr2LpBGd6jgKjhLAy3Z"
  2434. },
  2435. {
  2436. "__type__": "cc.Node",
  2437. "_name": "LbLvl",
  2438. "_objFlags": 0,
  2439. "__editorExtras__": {},
  2440. "_parent": {
  2441. "__id__": 59
  2442. },
  2443. "_children": [],
  2444. "_active": true,
  2445. "_components": [
  2446. {
  2447. "__id__": 61
  2448. },
  2449. {
  2450. "__id__": 62
  2451. }
  2452. ],
  2453. "_prefab": null,
  2454. "_lpos": {
  2455. "__type__": "cc.Vec3",
  2456. "x": 0,
  2457. "y": 0,
  2458. "z": 0
  2459. },
  2460. "_lrot": {
  2461. "__type__": "cc.Quat",
  2462. "x": 0,
  2463. "y": 0,
  2464. "z": 0,
  2465. "w": 1
  2466. },
  2467. "_lscale": {
  2468. "__type__": "cc.Vec3",
  2469. "x": 1,
  2470. "y": 1,
  2471. "z": 1
  2472. },
  2473. "_mobility": 0,
  2474. "_layer": 33554432,
  2475. "_euler": {
  2476. "__type__": "cc.Vec3",
  2477. "x": 0,
  2478. "y": 0,
  2479. "z": 0
  2480. },
  2481. "_id": "45VLSoY6BMpa+A3x3t8NMd"
  2482. },
  2483. {
  2484. "__type__": "cc.UITransform",
  2485. "_name": "",
  2486. "_objFlags": 0,
  2487. "__editorExtras__": {},
  2488. "node": {
  2489. "__id__": 60
  2490. },
  2491. "_enabled": true,
  2492. "__prefab": null,
  2493. "_contentSize": {
  2494. "__type__": "cc.Size",
  2495. "width": 129.609375,
  2496. "height": 50.4
  2497. },
  2498. "_anchorPoint": {
  2499. "__type__": "cc.Vec2",
  2500. "x": 0.5,
  2501. "y": 0.5
  2502. },
  2503. "_id": "e426NqH85IV4zAIXxpvhVT"
  2504. },
  2505. {
  2506. "__type__": "cc.Label",
  2507. "_name": "",
  2508. "_objFlags": 0,
  2509. "__editorExtras__": {},
  2510. "node": {
  2511. "__id__": 60
  2512. },
  2513. "_enabled": true,
  2514. "__prefab": null,
  2515. "_customMaterial": null,
  2516. "_srcBlendFactor": 2,
  2517. "_dstBlendFactor": 4,
  2518. "_color": {
  2519. "__type__": "cc.Color",
  2520. "r": 255,
  2521. "g": 255,
  2522. "b": 255,
  2523. "a": 255
  2524. },
  2525. "_string": "Level:1",
  2526. "_horizontalAlign": 1,
  2527. "_verticalAlign": 1,
  2528. "_actualFontSize": 40,
  2529. "_fontSize": 40,
  2530. "_fontFamily": "Arial",
  2531. "_lineHeight": 40,
  2532. "_overflow": 0,
  2533. "_enableWrapText": false,
  2534. "_font": {
  2535. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  2536. "__expectedType__": "cc.TTFFont"
  2537. },
  2538. "_isSystemFontUsed": false,
  2539. "_spacingX": 0,
  2540. "_isItalic": false,
  2541. "_isBold": false,
  2542. "_isUnderline": false,
  2543. "_underlineHeight": 2,
  2544. "_cacheMode": 0,
  2545. "_enableOutline": false,
  2546. "_outlineColor": {
  2547. "__type__": "cc.Color",
  2548. "r": 0,
  2549. "g": 0,
  2550. "b": 0,
  2551. "a": 255
  2552. },
  2553. "_outlineWidth": 2,
  2554. "_enableShadow": false,
  2555. "_shadowColor": {
  2556. "__type__": "cc.Color",
  2557. "r": 0,
  2558. "g": 0,
  2559. "b": 0,
  2560. "a": 255
  2561. },
  2562. "_shadowOffset": {
  2563. "__type__": "cc.Vec2",
  2564. "x": 2,
  2565. "y": 2
  2566. },
  2567. "_shadowBlur": 2,
  2568. "_id": "c9kfQPvrNLFKpeVxnFtxD/"
  2569. },
  2570. {
  2571. "__type__": "cc.UITransform",
  2572. "_name": "",
  2573. "_objFlags": 0,
  2574. "__editorExtras__": {},
  2575. "node": {
  2576. "__id__": 59
  2577. },
  2578. "_enabled": true,
  2579. "__prefab": null,
  2580. "_contentSize": {
  2581. "__type__": "cc.Size",
  2582. "width": 100,
  2583. "height": 100
  2584. },
  2585. "_anchorPoint": {
  2586. "__type__": "cc.Vec2",
  2587. "x": 0.5,
  2588. "y": 0.5
  2589. },
  2590. "_id": "541WUs+9BP2ZhnTeHcGfgm"
  2591. },
  2592. {
  2593. "__type__": "cc.Widget",
  2594. "_name": "",
  2595. "_objFlags": 0,
  2596. "__editorExtras__": {},
  2597. "node": {
  2598. "__id__": 59
  2599. },
  2600. "_enabled": true,
  2601. "__prefab": null,
  2602. "_alignFlags": 17,
  2603. "_target": null,
  2604. "_left": 0,
  2605. "_right": 0,
  2606. "_top": 0,
  2607. "_bottom": 0,
  2608. "_horizontalCenter": 0,
  2609. "_verticalCenter": 0,
  2610. "_isAbsLeft": true,
  2611. "_isAbsRight": true,
  2612. "_isAbsTop": true,
  2613. "_isAbsBottom": true,
  2614. "_isAbsHorizontalCenter": true,
  2615. "_isAbsVerticalCenter": true,
  2616. "_originalWidth": 0,
  2617. "_originalHeight": 0,
  2618. "_alignMode": 2,
  2619. "_lockFlags": 0,
  2620. "_id": "64I7Jzug9FaY2hVVMXuKJH"
  2621. },
  2622. {
  2623. "__type__": "cc.UITransform",
  2624. "_name": "",
  2625. "_objFlags": 0,
  2626. "__editorExtras__": {},
  2627. "node": {
  2628. "__id__": 12
  2629. },
  2630. "_enabled": true,
  2631. "__prefab": null,
  2632. "_contentSize": {
  2633. "__type__": "cc.Size",
  2634. "width": 720,
  2635. "height": 1280
  2636. },
  2637. "_anchorPoint": {
  2638. "__type__": "cc.Vec2",
  2639. "x": 0.5,
  2640. "y": 0.5
  2641. },
  2642. "_id": "e4dhS7mGRMO5OzZUzBI3ky"
  2643. },
  2644. {
  2645. "__type__": "cc.Widget",
  2646. "_name": "",
  2647. "_objFlags": 0,
  2648. "__editorExtras__": {},
  2649. "node": {
  2650. "__id__": 12
  2651. },
  2652. "_enabled": true,
  2653. "__prefab": null,
  2654. "_alignFlags": 45,
  2655. "_target": null,
  2656. "_left": 0,
  2657. "_right": 0,
  2658. "_top": 0,
  2659. "_bottom": 0,
  2660. "_horizontalCenter": 0,
  2661. "_verticalCenter": 0,
  2662. "_isAbsLeft": true,
  2663. "_isAbsRight": true,
  2664. "_isAbsTop": true,
  2665. "_isAbsBottom": true,
  2666. "_isAbsHorizontalCenter": true,
  2667. "_isAbsVerticalCenter": true,
  2668. "_originalWidth": 100,
  2669. "_originalHeight": 100,
  2670. "_alignMode": 2,
  2671. "_lockFlags": 0,
  2672. "_id": "57BgqIz2ZNuYVEyJq1nSWl"
  2673. },
  2674. {
  2675. "__type__": "cc.Node",
  2676. "_name": "Entry",
  2677. "_objFlags": 0,
  2678. "__editorExtras__": {},
  2679. "_parent": {
  2680. "__id__": 2
  2681. },
  2682. "_children": [],
  2683. "_active": true,
  2684. "_components": [
  2685. {
  2686. "__id__": 68
  2687. }
  2688. ],
  2689. "_prefab": null,
  2690. "_lpos": {
  2691. "__type__": "cc.Vec3",
  2692. "x": -360,
  2693. "y": -667,
  2694. "z": 0
  2695. },
  2696. "_lrot": {
  2697. "__type__": "cc.Quat",
  2698. "x": 0,
  2699. "y": 0,
  2700. "z": 0,
  2701. "w": 1
  2702. },
  2703. "_lscale": {
  2704. "__type__": "cc.Vec3",
  2705. "x": 1,
  2706. "y": 1,
  2707. "z": 1
  2708. },
  2709. "_mobility": 0,
  2710. "_layer": 1073741824,
  2711. "_euler": {
  2712. "__type__": "cc.Vec3",
  2713. "x": 0,
  2714. "y": 0,
  2715. "z": 0
  2716. },
  2717. "_id": "21OxpNL+dAV7IJEFgGJCft"
  2718. },
  2719. {
  2720. "__type__": "aa87cyBikxNRJE8D80V5T4B",
  2721. "_name": "",
  2722. "_objFlags": 0,
  2723. "__editorExtras__": {},
  2724. "node": {
  2725. "__id__": 67
  2726. },
  2727. "_enabled": true,
  2728. "__prefab": null,
  2729. "_id": "32JP2rbBZAEKeL0vLDweo+"
  2730. },
  2731. {
  2732. "__type__": "cc.UITransform",
  2733. "_name": "",
  2734. "_objFlags": 0,
  2735. "__editorExtras__": {},
  2736. "node": {
  2737. "__id__": 2
  2738. },
  2739. "_enabled": true,
  2740. "__prefab": null,
  2741. "_contentSize": {
  2742. "__type__": "cc.Size",
  2743. "width": 720,
  2744. "height": 1280
  2745. },
  2746. "_anchorPoint": {
  2747. "__type__": "cc.Vec2",
  2748. "x": 0.5,
  2749. "y": 0.5
  2750. },
  2751. "_id": "b1HUYLJ3VC5a0fFpVByWp2"
  2752. },
  2753. {
  2754. "__type__": "cc.Canvas",
  2755. "_name": "",
  2756. "_objFlags": 0,
  2757. "__editorExtras__": {},
  2758. "node": {
  2759. "__id__": 2
  2760. },
  2761. "_enabled": true,
  2762. "__prefab": null,
  2763. "_cameraComponent": {
  2764. "__id__": 4
  2765. },
  2766. "_alignCanvasWithScreen": true,
  2767. "_id": "8fdCZBLJNAnL3sNZ4vacOF"
  2768. },
  2769. {
  2770. "__type__": "cc.Widget",
  2771. "_name": "",
  2772. "_objFlags": 0,
  2773. "__editorExtras__": {},
  2774. "node": {
  2775. "__id__": 2
  2776. },
  2777. "_enabled": true,
  2778. "__prefab": null,
  2779. "_alignFlags": 45,
  2780. "_target": null,
  2781. "_left": 0,
  2782. "_right": 0,
  2783. "_top": 0,
  2784. "_bottom": 0,
  2785. "_horizontalCenter": 0,
  2786. "_verticalCenter": 0,
  2787. "_isAbsLeft": true,
  2788. "_isAbsRight": true,
  2789. "_isAbsTop": true,
  2790. "_isAbsBottom": true,
  2791. "_isAbsHorizontalCenter": true,
  2792. "_isAbsVerticalCenter": true,
  2793. "_originalWidth": 720,
  2794. "_originalHeight": 1334,
  2795. "_alignMode": 2,
  2796. "_lockFlags": 0,
  2797. "_id": "892DGZiFBAiJVjMq+NCDX6"
  2798. },
  2799. {
  2800. "__type__": "dca72U6jlRMRLAiO1t+r7Zj",
  2801. "_name": "",
  2802. "_objFlags": 0,
  2803. "__editorExtras__": {},
  2804. "node": {
  2805. "__id__": 2
  2806. },
  2807. "_enabled": true,
  2808. "__prefab": null,
  2809. "_flags": 1,
  2810. "_top": 0,
  2811. "_bottom": 0,
  2812. "_left": 0,
  2813. "_right": 0,
  2814. "_id": "b7uUjAUN5J/4btJYAR/qhv"
  2815. },
  2816. {
  2817. "__type__": "cc.PrefabInfo",
  2818. "root": null,
  2819. "asset": null,
  2820. "fileId": "be14c61f-22d8-4bb9-b444-ad9f29740469",
  2821. "instance": null,
  2822. "targetOverrides": []
  2823. },
  2824. {
  2825. "__type__": "cc.SceneGlobals",
  2826. "ambient": {
  2827. "__id__": 75
  2828. },
  2829. "shadows": {
  2830. "__id__": 76
  2831. },
  2832. "_skybox": {
  2833. "__id__": 77
  2834. },
  2835. "fog": {
  2836. "__id__": 78
  2837. },
  2838. "octree": {
  2839. "__id__": 79
  2840. },
  2841. "skin": {
  2842. "__id__": 80
  2843. },
  2844. "lightProbeInfo": {
  2845. "__id__": 81
  2846. },
  2847. "postSettings": {
  2848. "__id__": 82
  2849. },
  2850. "bakedWithStationaryMainLight": false,
  2851. "bakedWithHighpLightmap": false
  2852. },
  2853. {
  2854. "__type__": "cc.AmbientInfo",
  2855. "_skyColorHDR": {
  2856. "__type__": "cc.Vec4",
  2857. "x": 0.2,
  2858. "y": 0.5,
  2859. "z": 0.8,
  2860. "w": 0.520833125
  2861. },
  2862. "_skyColor": {
  2863. "__type__": "cc.Vec4",
  2864. "x": 0.2,
  2865. "y": 0.5,
  2866. "z": 0.8,
  2867. "w": 0.520833125
  2868. },
  2869. "_skyIllumHDR": 20000,
  2870. "_skyIllum": 20000,
  2871. "_groundAlbedoHDR": {
  2872. "__type__": "cc.Vec4",
  2873. "x": 0.2,
  2874. "y": 0.2,
  2875. "z": 0.2,
  2876. "w": 1
  2877. },
  2878. "_groundAlbedo": {
  2879. "__type__": "cc.Vec4",
  2880. "x": 0.2,
  2881. "y": 0.2,
  2882. "z": 0.2,
  2883. "w": 1
  2884. },
  2885. "_skyColorLDR": {
  2886. "__type__": "cc.Vec4",
  2887. "x": 0.452588,
  2888. "y": 0.607642,
  2889. "z": 0.755699,
  2890. "w": 0
  2891. },
  2892. "_skyIllumLDR": 0.8,
  2893. "_groundAlbedoLDR": {
  2894. "__type__": "cc.Vec4",
  2895. "x": 0.618555,
  2896. "y": 0.577848,
  2897. "z": 0.544564,
  2898. "w": 0
  2899. }
  2900. },
  2901. {
  2902. "__type__": "cc.ShadowsInfo",
  2903. "_enabled": false,
  2904. "_type": 1,
  2905. "_normal": {
  2906. "__type__": "cc.Vec3",
  2907. "x": 0,
  2908. "y": 1,
  2909. "z": 0
  2910. },
  2911. "_distance": 0,
  2912. "_planeBias": 1,
  2913. "_shadowColor": {
  2914. "__type__": "cc.Color",
  2915. "r": 76,
  2916. "g": 76,
  2917. "b": 76,
  2918. "a": 255
  2919. },
  2920. "_maxReceived": 4,
  2921. "_size": {
  2922. "__type__": "cc.Vec2",
  2923. "x": 2048,
  2924. "y": 2048
  2925. }
  2926. },
  2927. {
  2928. "__type__": "cc.SkyboxInfo",
  2929. "_envLightingType": 1,
  2930. "_envmapHDR": {
  2931. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  2932. "__expectedType__": "cc.TextureCube"
  2933. },
  2934. "_envmap": {
  2935. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  2936. "__expectedType__": "cc.TextureCube"
  2937. },
  2938. "_envmapLDR": {
  2939. "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0",
  2940. "__expectedType__": "cc.TextureCube"
  2941. },
  2942. "_diffuseMapHDR": null,
  2943. "_diffuseMapLDR": null,
  2944. "_enabled": false,
  2945. "_useHDR": true,
  2946. "_editableMaterial": null,
  2947. "_reflectionHDR": null,
  2948. "_reflectionLDR": null,
  2949. "_rotationAngle": 0
  2950. },
  2951. {
  2952. "__type__": "cc.FogInfo",
  2953. "_type": 0,
  2954. "_fogColor": {
  2955. "__type__": "cc.Color",
  2956. "r": 200,
  2957. "g": 200,
  2958. "b": 200,
  2959. "a": 255
  2960. },
  2961. "_enabled": false,
  2962. "_fogDensity": 0.3,
  2963. "_fogStart": 0.5,
  2964. "_fogEnd": 300,
  2965. "_fogAtten": 5,
  2966. "_fogTop": 1.5,
  2967. "_fogRange": 1.2,
  2968. "_accurate": false
  2969. },
  2970. {
  2971. "__type__": "cc.OctreeInfo",
  2972. "_enabled": false,
  2973. "_minPos": {
  2974. "__type__": "cc.Vec3",
  2975. "x": -1024,
  2976. "y": -1024,
  2977. "z": -1024
  2978. },
  2979. "_maxPos": {
  2980. "__type__": "cc.Vec3",
  2981. "x": 1024,
  2982. "y": 1024,
  2983. "z": 1024
  2984. },
  2985. "_depth": 8
  2986. },
  2987. {
  2988. "__type__": "cc.SkinInfo",
  2989. "_enabled": false,
  2990. "_blurRadius": 0.01,
  2991. "_sssIntensity": 3
  2992. },
  2993. {
  2994. "__type__": "cc.LightProbeInfo",
  2995. "_giScale": 1,
  2996. "_giSamples": 1024,
  2997. "_bounces": 2,
  2998. "_reduceRinging": 0,
  2999. "_showProbe": true,
  3000. "_showWireframe": true,
  3001. "_showConvex": false,
  3002. "_data": null,
  3003. "_lightProbeSphereVolume": 1
  3004. },
  3005. {
  3006. "__type__": "cc.PostSettingsInfo",
  3007. "_toneMappingType": 0
  3008. }
  3009. ]