rooster_takegoblet.scene 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790
  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__": 68
  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__": 69
  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__": 62
  84. }
  85. ],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 64
  90. },
  91. {
  92. "__id__": 65
  93. },
  94. {
  95. "__id__": 66
  96. },
  97. {
  98. "__id__": 67
  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": 0
  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__": 30
  490. },
  491. {
  492. "__id__": 51
  493. },
  494. {
  495. "__id__": 57
  496. }
  497. ],
  498. "_active": true,
  499. "_components": [
  500. {
  501. "__id__": 60
  502. },
  503. {
  504. "__id__": 61
  505. }
  506. ],
  507. "_prefab": null,
  508. "_lpos": {
  509. "__type__": "cc.Vec3",
  510. "x": 0,
  511. "y": 0,
  512. "z": 0
  513. },
  514. "_lrot": {
  515. "__type__": "cc.Quat",
  516. "x": 0,
  517. "y": 0,
  518. "z": 0,
  519. "w": 1
  520. },
  521. "_lscale": {
  522. "__type__": "cc.Vec3",
  523. "x": 1,
  524. "y": 1,
  525. "z": 1
  526. },
  527. "_mobility": 0,
  528. "_layer": 33554432,
  529. "_euler": {
  530. "__type__": "cc.Vec3",
  531. "x": 0,
  532. "y": 0,
  533. "z": 0
  534. },
  535. "_id": "58MeD8Ml5Fz48qBGKRvffz"
  536. },
  537. {
  538. "__type__": "cc.Node",
  539. "_name": "BottomBtns",
  540. "_objFlags": 0,
  541. "__editorExtras__": {},
  542. "_parent": {
  543. "__id__": 12
  544. },
  545. "_children": [
  546. {
  547. "__id__": 14
  548. },
  549. {
  550. "__id__": 18
  551. },
  552. {
  553. "__id__": 22
  554. }
  555. ],
  556. "_active": true,
  557. "_components": [
  558. {
  559. "__id__": 26
  560. },
  561. {
  562. "__id__": 27
  563. },
  564. {
  565. "__id__": 28
  566. },
  567. {
  568. "__id__": 29
  569. }
  570. ],
  571. "_prefab": null,
  572. "_lpos": {
  573. "__type__": "cc.Vec3",
  574. "x": 0,
  575. "y": -540,
  576. "z": 0
  577. },
  578. "_lrot": {
  579. "__type__": "cc.Quat",
  580. "x": 0,
  581. "y": 0,
  582. "z": 0,
  583. "w": 1
  584. },
  585. "_lscale": {
  586. "__type__": "cc.Vec3",
  587. "x": 1,
  588. "y": 1,
  589. "z": 1
  590. },
  591. "_mobility": 0,
  592. "_layer": 33554432,
  593. "_euler": {
  594. "__type__": "cc.Vec3",
  595. "x": 0,
  596. "y": 0,
  597. "z": 0
  598. },
  599. "_id": "7aJPiCjCdIT51G0EeVP/Js"
  600. },
  601. {
  602. "__type__": "cc.Node",
  603. "_name": "BtnFillUp",
  604. "_objFlags": 0,
  605. "__editorExtras__": {},
  606. "_parent": {
  607. "__id__": 13
  608. },
  609. "_children": [],
  610. "_active": true,
  611. "_components": [
  612. {
  613. "__id__": 15
  614. },
  615. {
  616. "__id__": 16
  617. },
  618. {
  619. "__id__": 17
  620. }
  621. ],
  622. "_prefab": null,
  623. "_lpos": {
  624. "__type__": "cc.Vec3",
  625. "x": -245,
  626. "y": 17.116,
  627. "z": 0
  628. },
  629. "_lrot": {
  630. "__type__": "cc.Quat",
  631. "x": 0,
  632. "y": 0,
  633. "z": 0,
  634. "w": 1
  635. },
  636. "_lscale": {
  637. "__type__": "cc.Vec3",
  638. "x": 0.7,
  639. "y": 0.7,
  640. "z": 1
  641. },
  642. "_mobility": 0,
  643. "_layer": 33554432,
  644. "_euler": {
  645. "__type__": "cc.Vec3",
  646. "x": 0,
  647. "y": 0,
  648. "z": 0
  649. },
  650. "_id": "6cYE3Zt7NHT5w1Z5KL21Ik"
  651. },
  652. {
  653. "__type__": "cc.UITransform",
  654. "_name": "",
  655. "_objFlags": 0,
  656. "__editorExtras__": {},
  657. "node": {
  658. "__id__": 14
  659. },
  660. "_enabled": true,
  661. "__prefab": null,
  662. "_contentSize": {
  663. "__type__": "cc.Size",
  664. "width": 275,
  665. "height": 293
  666. },
  667. "_anchorPoint": {
  668. "__type__": "cc.Vec2",
  669. "x": 0.5,
  670. "y": 0.5
  671. },
  672. "_id": "7fisGv4iROTL5CNe2MHw9h"
  673. },
  674. {
  675. "__type__": "cc.Sprite",
  676. "_name": "",
  677. "_objFlags": 0,
  678. "__editorExtras__": {},
  679. "node": {
  680. "__id__": 14
  681. },
  682. "_enabled": true,
  683. "__prefab": null,
  684. "_customMaterial": null,
  685. "_srcBlendFactor": 2,
  686. "_dstBlendFactor": 4,
  687. "_color": {
  688. "__type__": "cc.Color",
  689. "r": 255,
  690. "g": 255,
  691. "b": 255,
  692. "a": 255
  693. },
  694. "_spriteFrame": {
  695. "__uuid__": "5a7d4425-b50a-43be-9038-cd80bab024f7@f9941",
  696. "__expectedType__": "cc.SpriteFrame"
  697. },
  698. "_type": 1,
  699. "_fillType": 0,
  700. "_sizeMode": 2,
  701. "_fillCenter": {
  702. "__type__": "cc.Vec2",
  703. "x": 0,
  704. "y": 0
  705. },
  706. "_fillStart": 0,
  707. "_fillRange": 0,
  708. "_isTrimmedMode": true,
  709. "_useGrayscale": false,
  710. "_atlas": null,
  711. "_id": "8cqibgpa5DIa7z7f6rFKMk"
  712. },
  713. {
  714. "__type__": "cc.Button",
  715. "_name": "",
  716. "_objFlags": 0,
  717. "__editorExtras__": {},
  718. "node": {
  719. "__id__": 14
  720. },
  721. "_enabled": true,
  722. "__prefab": null,
  723. "clickEvents": [],
  724. "_interactable": true,
  725. "_transition": 3,
  726. "_normalColor": {
  727. "__type__": "cc.Color",
  728. "r": 214,
  729. "g": 214,
  730. "b": 214,
  731. "a": 255
  732. },
  733. "_hoverColor": {
  734. "__type__": "cc.Color",
  735. "r": 211,
  736. "g": 211,
  737. "b": 211,
  738. "a": 255
  739. },
  740. "_pressedColor": {
  741. "__type__": "cc.Color",
  742. "r": 255,
  743. "g": 255,
  744. "b": 255,
  745. "a": 255
  746. },
  747. "_disabledColor": {
  748. "__type__": "cc.Color",
  749. "r": 124,
  750. "g": 124,
  751. "b": 124,
  752. "a": 255
  753. },
  754. "_normalSprite": null,
  755. "_hoverSprite": null,
  756. "_pressedSprite": null,
  757. "_disabledSprite": null,
  758. "_duration": 0.1,
  759. "_zoomScale": 0.8,
  760. "_target": {
  761. "__id__": 14
  762. },
  763. "_id": "80Ec02hNJIDK2ttLPPpqKX"
  764. },
  765. {
  766. "__type__": "cc.Node",
  767. "_name": "BtnMoveOut",
  768. "_objFlags": 0,
  769. "__editorExtras__": {},
  770. "_parent": {
  771. "__id__": 13
  772. },
  773. "_children": [],
  774. "_active": true,
  775. "_components": [
  776. {
  777. "__id__": 19
  778. },
  779. {
  780. "__id__": 20
  781. },
  782. {
  783. "__id__": 21
  784. }
  785. ],
  786. "_prefab": null,
  787. "_lpos": {
  788. "__type__": "cc.Vec3",
  789. "x": 0,
  790. "y": 17.116,
  791. "z": 0
  792. },
  793. "_lrot": {
  794. "__type__": "cc.Quat",
  795. "x": 0,
  796. "y": 0,
  797. "z": 0,
  798. "w": 1
  799. },
  800. "_lscale": {
  801. "__type__": "cc.Vec3",
  802. "x": 0.7,
  803. "y": 0.7,
  804. "z": 1
  805. },
  806. "_mobility": 0,
  807. "_layer": 33554432,
  808. "_euler": {
  809. "__type__": "cc.Vec3",
  810. "x": 0,
  811. "y": 0,
  812. "z": 0
  813. },
  814. "_id": "e0jNGYbKJO2r3PBwBA9fU3"
  815. },
  816. {
  817. "__type__": "cc.UITransform",
  818. "_name": "",
  819. "_objFlags": 0,
  820. "__editorExtras__": {},
  821. "node": {
  822. "__id__": 18
  823. },
  824. "_enabled": true,
  825. "__prefab": null,
  826. "_contentSize": {
  827. "__type__": "cc.Size",
  828. "width": 275,
  829. "height": 284
  830. },
  831. "_anchorPoint": {
  832. "__type__": "cc.Vec2",
  833. "x": 0.5,
  834. "y": 0.5
  835. },
  836. "_id": "58ELTX0BRFvIZBUnwP/fGo"
  837. },
  838. {
  839. "__type__": "cc.Sprite",
  840. "_name": "",
  841. "_objFlags": 0,
  842. "__editorExtras__": {},
  843. "node": {
  844. "__id__": 18
  845. },
  846. "_enabled": true,
  847. "__prefab": null,
  848. "_customMaterial": null,
  849. "_srcBlendFactor": 2,
  850. "_dstBlendFactor": 4,
  851. "_color": {
  852. "__type__": "cc.Color",
  853. "r": 255,
  854. "g": 255,
  855. "b": 255,
  856. "a": 255
  857. },
  858. "_spriteFrame": {
  859. "__uuid__": "75f21900-ea24-436d-889f-7d1c7dfa6afd@f9941",
  860. "__expectedType__": "cc.SpriteFrame"
  861. },
  862. "_type": 1,
  863. "_fillType": 0,
  864. "_sizeMode": 2,
  865. "_fillCenter": {
  866. "__type__": "cc.Vec2",
  867. "x": 0,
  868. "y": 0
  869. },
  870. "_fillStart": 0,
  871. "_fillRange": 0,
  872. "_isTrimmedMode": true,
  873. "_useGrayscale": false,
  874. "_atlas": null,
  875. "_id": "94ZYW4YrZJboWEShnsqC2T"
  876. },
  877. {
  878. "__type__": "cc.Button",
  879. "_name": "",
  880. "_objFlags": 0,
  881. "__editorExtras__": {},
  882. "node": {
  883. "__id__": 18
  884. },
  885. "_enabled": true,
  886. "__prefab": null,
  887. "clickEvents": [],
  888. "_interactable": true,
  889. "_transition": 3,
  890. "_normalColor": {
  891. "__type__": "cc.Color",
  892. "r": 214,
  893. "g": 214,
  894. "b": 214,
  895. "a": 255
  896. },
  897. "_hoverColor": {
  898. "__type__": "cc.Color",
  899. "r": 211,
  900. "g": 211,
  901. "b": 211,
  902. "a": 255
  903. },
  904. "_pressedColor": {
  905. "__type__": "cc.Color",
  906. "r": 255,
  907. "g": 255,
  908. "b": 255,
  909. "a": 255
  910. },
  911. "_disabledColor": {
  912. "__type__": "cc.Color",
  913. "r": 124,
  914. "g": 124,
  915. "b": 124,
  916. "a": 255
  917. },
  918. "_normalSprite": null,
  919. "_hoverSprite": null,
  920. "_pressedSprite": null,
  921. "_disabledSprite": null,
  922. "_duration": 0.1,
  923. "_zoomScale": 0.8,
  924. "_target": {
  925. "__id__": 18
  926. },
  927. "_id": "72dGD18ihEeIbP39P9J70f"
  928. },
  929. {
  930. "__type__": "cc.Node",
  931. "_name": "BtnRefresh",
  932. "_objFlags": 0,
  933. "__editorExtras__": {},
  934. "_parent": {
  935. "__id__": 13
  936. },
  937. "_children": [],
  938. "_active": true,
  939. "_components": [
  940. {
  941. "__id__": 23
  942. },
  943. {
  944. "__id__": 24
  945. },
  946. {
  947. "__id__": 25
  948. }
  949. ],
  950. "_prefab": null,
  951. "_lpos": {
  952. "__type__": "cc.Vec3",
  953. "x": 245,
  954. "y": 17.116,
  955. "z": 0
  956. },
  957. "_lrot": {
  958. "__type__": "cc.Quat",
  959. "x": 0,
  960. "y": 0,
  961. "z": 0,
  962. "w": 1
  963. },
  964. "_lscale": {
  965. "__type__": "cc.Vec3",
  966. "x": 0.7,
  967. "y": 0.7,
  968. "z": 1
  969. },
  970. "_mobility": 0,
  971. "_layer": 33554432,
  972. "_euler": {
  973. "__type__": "cc.Vec3",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0
  977. },
  978. "_id": "8exiv/U4xDrL+ZzRCFRKHv"
  979. },
  980. {
  981. "__type__": "cc.UITransform",
  982. "_name": "",
  983. "_objFlags": 0,
  984. "__editorExtras__": {},
  985. "node": {
  986. "__id__": 22
  987. },
  988. "_enabled": true,
  989. "__prefab": null,
  990. "_contentSize": {
  991. "__type__": "cc.Size",
  992. "width": 275,
  993. "height": 284
  994. },
  995. "_anchorPoint": {
  996. "__type__": "cc.Vec2",
  997. "x": 0.5,
  998. "y": 0.5
  999. },
  1000. "_id": "76+0AICONEAo4azz7dKnsA"
  1001. },
  1002. {
  1003. "__type__": "cc.Sprite",
  1004. "_name": "",
  1005. "_objFlags": 0,
  1006. "__editorExtras__": {},
  1007. "node": {
  1008. "__id__": 22
  1009. },
  1010. "_enabled": true,
  1011. "__prefab": null,
  1012. "_customMaterial": null,
  1013. "_srcBlendFactor": 2,
  1014. "_dstBlendFactor": 4,
  1015. "_color": {
  1016. "__type__": "cc.Color",
  1017. "r": 255,
  1018. "g": 255,
  1019. "b": 255,
  1020. "a": 255
  1021. },
  1022. "_spriteFrame": {
  1023. "__uuid__": "a4a30c58-bbe4-4e4d-a5c5-c1dfe80103f9@f9941",
  1024. "__expectedType__": "cc.SpriteFrame"
  1025. },
  1026. "_type": 1,
  1027. "_fillType": 0,
  1028. "_sizeMode": 2,
  1029. "_fillCenter": {
  1030. "__type__": "cc.Vec2",
  1031. "x": 0,
  1032. "y": 0
  1033. },
  1034. "_fillStart": 0,
  1035. "_fillRange": 0,
  1036. "_isTrimmedMode": true,
  1037. "_useGrayscale": false,
  1038. "_atlas": null,
  1039. "_id": "0aAoUgHHZMaJm7j0wYPO/+"
  1040. },
  1041. {
  1042. "__type__": "cc.Button",
  1043. "_name": "",
  1044. "_objFlags": 0,
  1045. "__editorExtras__": {},
  1046. "node": {
  1047. "__id__": 22
  1048. },
  1049. "_enabled": true,
  1050. "__prefab": null,
  1051. "clickEvents": [],
  1052. "_interactable": true,
  1053. "_transition": 3,
  1054. "_normalColor": {
  1055. "__type__": "cc.Color",
  1056. "r": 214,
  1057. "g": 214,
  1058. "b": 214,
  1059. "a": 255
  1060. },
  1061. "_hoverColor": {
  1062. "__type__": "cc.Color",
  1063. "r": 211,
  1064. "g": 211,
  1065. "b": 211,
  1066. "a": 255
  1067. },
  1068. "_pressedColor": {
  1069. "__type__": "cc.Color",
  1070. "r": 255,
  1071. "g": 255,
  1072. "b": 255,
  1073. "a": 255
  1074. },
  1075. "_disabledColor": {
  1076. "__type__": "cc.Color",
  1077. "r": 124,
  1078. "g": 124,
  1079. "b": 124,
  1080. "a": 255
  1081. },
  1082. "_normalSprite": null,
  1083. "_hoverSprite": null,
  1084. "_pressedSprite": null,
  1085. "_disabledSprite": null,
  1086. "_duration": 0.1,
  1087. "_zoomScale": 0.8,
  1088. "_target": {
  1089. "__id__": 22
  1090. },
  1091. "_id": "08cHFDjw9B2LtDSZPexGLb"
  1092. },
  1093. {
  1094. "__type__": "cc.UITransform",
  1095. "_name": "",
  1096. "_objFlags": 0,
  1097. "__editorExtras__": {},
  1098. "node": {
  1099. "__id__": 13
  1100. },
  1101. "_enabled": true,
  1102. "__prefab": null,
  1103. "_contentSize": {
  1104. "__type__": "cc.Size",
  1105. "width": 765,
  1106. "height": 200
  1107. },
  1108. "_anchorPoint": {
  1109. "__type__": "cc.Vec2",
  1110. "x": 0.5,
  1111. "y": 0.5
  1112. },
  1113. "_id": "c3JjbhZlNHXpi3Pcdcz1/4"
  1114. },
  1115. {
  1116. "__type__": "cc.Widget",
  1117. "_name": "",
  1118. "_objFlags": 0,
  1119. "__editorExtras__": {},
  1120. "node": {
  1121. "__id__": 13
  1122. },
  1123. "_enabled": true,
  1124. "__prefab": null,
  1125. "_alignFlags": 44,
  1126. "_target": null,
  1127. "_left": -22.5,
  1128. "_right": -22.5,
  1129. "_top": 0,
  1130. "_bottom": 0,
  1131. "_horizontalCenter": 0,
  1132. "_verticalCenter": 0,
  1133. "_isAbsLeft": true,
  1134. "_isAbsRight": true,
  1135. "_isAbsTop": true,
  1136. "_isAbsBottom": true,
  1137. "_isAbsHorizontalCenter": true,
  1138. "_isAbsVerticalCenter": true,
  1139. "_originalWidth": 100,
  1140. "_originalHeight": 0,
  1141. "_alignMode": 2,
  1142. "_lockFlags": 0,
  1143. "_id": "14FKMQazBIqIgCLc8Thg2A"
  1144. },
  1145. {
  1146. "__type__": "cc.Layout",
  1147. "_name": "",
  1148. "_objFlags": 0,
  1149. "__editorExtras__": {},
  1150. "node": {
  1151. "__id__": 13
  1152. },
  1153. "_enabled": true,
  1154. "__prefab": null,
  1155. "_resizeMode": 1,
  1156. "_layoutType": 1,
  1157. "_cellSize": {
  1158. "__type__": "cc.Size",
  1159. "width": 40,
  1160. "height": 40
  1161. },
  1162. "_startAxis": 0,
  1163. "_paddingLeft": 0,
  1164. "_paddingRight": 0,
  1165. "_paddingTop": 0,
  1166. "_paddingBottom": 0,
  1167. "_spacingX": -30,
  1168. "_spacingY": 0,
  1169. "_verticalDirection": 1,
  1170. "_horizontalDirection": 0,
  1171. "_constraint": 0,
  1172. "_constraintNum": 2,
  1173. "_affectedByScale": false,
  1174. "_isAlign": false,
  1175. "_id": "e5lNKW+8REapy973XbOiDJ"
  1176. },
  1177. {
  1178. "__type__": "e06e2SlI+ZJtpHlZ9sR5XFm",
  1179. "_name": "",
  1180. "_objFlags": 0,
  1181. "__editorExtras__": {},
  1182. "node": {
  1183. "__id__": 13
  1184. },
  1185. "_enabled": true,
  1186. "__prefab": null,
  1187. "btnFillUp": {
  1188. "__id__": 17
  1189. },
  1190. "btMoveOut": {
  1191. "__id__": 21
  1192. },
  1193. "btRefresh": {
  1194. "__id__": 25
  1195. },
  1196. "_id": "c0Qmmo34pE/II8L7R2hCgt"
  1197. },
  1198. {
  1199. "__type__": "cc.Node",
  1200. "_name": "TopLeft",
  1201. "_objFlags": 0,
  1202. "__editorExtras__": {},
  1203. "_parent": {
  1204. "__id__": 12
  1205. },
  1206. "_children": [
  1207. {
  1208. "__id__": 31
  1209. },
  1210. {
  1211. "__id__": 35
  1212. },
  1213. {
  1214. "__id__": 39
  1215. }
  1216. ],
  1217. "_active": true,
  1218. "_components": [
  1219. {
  1220. "__id__": 49
  1221. },
  1222. {
  1223. "__id__": 50
  1224. }
  1225. ],
  1226. "_prefab": null,
  1227. "_lpos": {
  1228. "__type__": "cc.Vec3",
  1229. "x": -300,
  1230. "y": 580,
  1231. "z": 0
  1232. },
  1233. "_lrot": {
  1234. "__type__": "cc.Quat",
  1235. "x": 0,
  1236. "y": 0,
  1237. "z": 0,
  1238. "w": 1
  1239. },
  1240. "_lscale": {
  1241. "__type__": "cc.Vec3",
  1242. "x": 1,
  1243. "y": 1,
  1244. "z": 1
  1245. },
  1246. "_mobility": 0,
  1247. "_layer": 33554432,
  1248. "_euler": {
  1249. "__type__": "cc.Vec3",
  1250. "x": 0,
  1251. "y": 0,
  1252. "z": 0
  1253. },
  1254. "_id": "20CM524ddDALRdyBpymcE5"
  1255. },
  1256. {
  1257. "__type__": "cc.Node",
  1258. "_name": "BtnSet",
  1259. "_objFlags": 0,
  1260. "__editorExtras__": {},
  1261. "_parent": {
  1262. "__id__": 30
  1263. },
  1264. "_children": [],
  1265. "_active": true,
  1266. "_components": [
  1267. {
  1268. "__id__": 32
  1269. },
  1270. {
  1271. "__id__": 33
  1272. },
  1273. {
  1274. "__id__": 34
  1275. }
  1276. ],
  1277. "_prefab": null,
  1278. "_lpos": {
  1279. "__type__": "cc.Vec3",
  1280. "x": 0,
  1281. "y": 0,
  1282. "z": 0
  1283. },
  1284. "_lrot": {
  1285. "__type__": "cc.Quat",
  1286. "x": 0,
  1287. "y": 0,
  1288. "z": 0,
  1289. "w": 1
  1290. },
  1291. "_lscale": {
  1292. "__type__": "cc.Vec3",
  1293. "x": 1,
  1294. "y": 1,
  1295. "z": 1
  1296. },
  1297. "_mobility": 0,
  1298. "_layer": 33554432,
  1299. "_euler": {
  1300. "__type__": "cc.Vec3",
  1301. "x": 0,
  1302. "y": 0,
  1303. "z": 0
  1304. },
  1305. "_id": "b1mWWBgIZNWL+Dlq+d849C"
  1306. },
  1307. {
  1308. "__type__": "cc.UITransform",
  1309. "_name": "",
  1310. "_objFlags": 0,
  1311. "__editorExtras__": {},
  1312. "node": {
  1313. "__id__": 31
  1314. },
  1315. "_enabled": true,
  1316. "__prefab": null,
  1317. "_contentSize": {
  1318. "__type__": "cc.Size",
  1319. "width": 97,
  1320. "height": 94
  1321. },
  1322. "_anchorPoint": {
  1323. "__type__": "cc.Vec2",
  1324. "x": 0.5,
  1325. "y": 0.5
  1326. },
  1327. "_id": "6fXjO1oIxIqLBobYUHXhii"
  1328. },
  1329. {
  1330. "__type__": "cc.Sprite",
  1331. "_name": "",
  1332. "_objFlags": 0,
  1333. "__editorExtras__": {},
  1334. "node": {
  1335. "__id__": 31
  1336. },
  1337. "_enabled": true,
  1338. "__prefab": null,
  1339. "_customMaterial": null,
  1340. "_srcBlendFactor": 2,
  1341. "_dstBlendFactor": 4,
  1342. "_color": {
  1343. "__type__": "cc.Color",
  1344. "r": 255,
  1345. "g": 255,
  1346. "b": 255,
  1347. "a": 255
  1348. },
  1349. "_spriteFrame": {
  1350. "__uuid__": "f06fbab2-a58c-43e3-bb4d-d71441a30e40@f9941",
  1351. "__expectedType__": "cc.SpriteFrame"
  1352. },
  1353. "_type": 1,
  1354. "_fillType": 0,
  1355. "_sizeMode": 2,
  1356. "_fillCenter": {
  1357. "__type__": "cc.Vec2",
  1358. "x": 0,
  1359. "y": 0
  1360. },
  1361. "_fillStart": 0,
  1362. "_fillRange": 0,
  1363. "_isTrimmedMode": true,
  1364. "_useGrayscale": false,
  1365. "_atlas": null,
  1366. "_id": "02V5GGbpxD5rbioMe//nx8"
  1367. },
  1368. {
  1369. "__type__": "cc.Button",
  1370. "_name": "",
  1371. "_objFlags": 0,
  1372. "__editorExtras__": {},
  1373. "node": {
  1374. "__id__": 31
  1375. },
  1376. "_enabled": true,
  1377. "__prefab": null,
  1378. "clickEvents": [],
  1379. "_interactable": true,
  1380. "_transition": 3,
  1381. "_normalColor": {
  1382. "__type__": "cc.Color",
  1383. "r": 214,
  1384. "g": 214,
  1385. "b": 214,
  1386. "a": 255
  1387. },
  1388. "_hoverColor": {
  1389. "__type__": "cc.Color",
  1390. "r": 211,
  1391. "g": 211,
  1392. "b": 211,
  1393. "a": 255
  1394. },
  1395. "_pressedColor": {
  1396. "__type__": "cc.Color",
  1397. "r": 255,
  1398. "g": 255,
  1399. "b": 255,
  1400. "a": 255
  1401. },
  1402. "_disabledColor": {
  1403. "__type__": "cc.Color",
  1404. "r": 124,
  1405. "g": 124,
  1406. "b": 124,
  1407. "a": 255
  1408. },
  1409. "_normalSprite": null,
  1410. "_hoverSprite": null,
  1411. "_pressedSprite": null,
  1412. "_disabledSprite": null,
  1413. "_duration": 0.1,
  1414. "_zoomScale": 1.2,
  1415. "_target": {
  1416. "__id__": 31
  1417. },
  1418. "_id": "51Zwo4GTBBT7vNI+1Aij5E"
  1419. },
  1420. {
  1421. "__type__": "cc.Node",
  1422. "_name": "BtnRefresh",
  1423. "_objFlags": 0,
  1424. "__editorExtras__": {},
  1425. "_parent": {
  1426. "__id__": 30
  1427. },
  1428. "_children": [],
  1429. "_active": false,
  1430. "_components": [
  1431. {
  1432. "__id__": 36
  1433. },
  1434. {
  1435. "__id__": 37
  1436. },
  1437. {
  1438. "__id__": 38
  1439. }
  1440. ],
  1441. "_prefab": null,
  1442. "_lpos": {
  1443. "__type__": "cc.Vec3",
  1444. "x": 120,
  1445. "y": 0,
  1446. "z": 0
  1447. },
  1448. "_lrot": {
  1449. "__type__": "cc.Quat",
  1450. "x": 0,
  1451. "y": 0,
  1452. "z": 0,
  1453. "w": 1
  1454. },
  1455. "_lscale": {
  1456. "__type__": "cc.Vec3",
  1457. "x": 1,
  1458. "y": 1,
  1459. "z": 1
  1460. },
  1461. "_mobility": 0,
  1462. "_layer": 33554432,
  1463. "_euler": {
  1464. "__type__": "cc.Vec3",
  1465. "x": 0,
  1466. "y": 0,
  1467. "z": 0
  1468. },
  1469. "_id": "05+W1X7h9PfJ8HjUCxQnsN"
  1470. },
  1471. {
  1472. "__type__": "cc.UITransform",
  1473. "_name": "",
  1474. "_objFlags": 0,
  1475. "__editorExtras__": {},
  1476. "node": {
  1477. "__id__": 35
  1478. },
  1479. "_enabled": true,
  1480. "__prefab": null,
  1481. "_contentSize": {
  1482. "__type__": "cc.Size",
  1483. "width": 96,
  1484. "height": 94
  1485. },
  1486. "_anchorPoint": {
  1487. "__type__": "cc.Vec2",
  1488. "x": 0.5,
  1489. "y": 0.5
  1490. },
  1491. "_id": "4esomS6+FA2poBiVAQbVlK"
  1492. },
  1493. {
  1494. "__type__": "cc.Sprite",
  1495. "_name": "",
  1496. "_objFlags": 0,
  1497. "__editorExtras__": {},
  1498. "node": {
  1499. "__id__": 35
  1500. },
  1501. "_enabled": true,
  1502. "__prefab": null,
  1503. "_customMaterial": null,
  1504. "_srcBlendFactor": 2,
  1505. "_dstBlendFactor": 4,
  1506. "_color": {
  1507. "__type__": "cc.Color",
  1508. "r": 255,
  1509. "g": 255,
  1510. "b": 255,
  1511. "a": 255
  1512. },
  1513. "_spriteFrame": {
  1514. "__uuid__": "df590b07-c322-4c8c-af24-adfe2844b334@f9941",
  1515. "__expectedType__": "cc.SpriteFrame"
  1516. },
  1517. "_type": 1,
  1518. "_fillType": 0,
  1519. "_sizeMode": 2,
  1520. "_fillCenter": {
  1521. "__type__": "cc.Vec2",
  1522. "x": 0,
  1523. "y": 0
  1524. },
  1525. "_fillStart": 0,
  1526. "_fillRange": 0,
  1527. "_isTrimmedMode": true,
  1528. "_useGrayscale": false,
  1529. "_atlas": null,
  1530. "_id": "46A+1rH41LMoSr2AyWlR3M"
  1531. },
  1532. {
  1533. "__type__": "cc.Button",
  1534. "_name": "",
  1535. "_objFlags": 0,
  1536. "__editorExtras__": {},
  1537. "node": {
  1538. "__id__": 35
  1539. },
  1540. "_enabled": true,
  1541. "__prefab": null,
  1542. "clickEvents": [],
  1543. "_interactable": true,
  1544. "_transition": 3,
  1545. "_normalColor": {
  1546. "__type__": "cc.Color",
  1547. "r": 214,
  1548. "g": 214,
  1549. "b": 214,
  1550. "a": 255
  1551. },
  1552. "_hoverColor": {
  1553. "__type__": "cc.Color",
  1554. "r": 211,
  1555. "g": 211,
  1556. "b": 211,
  1557. "a": 255
  1558. },
  1559. "_pressedColor": {
  1560. "__type__": "cc.Color",
  1561. "r": 255,
  1562. "g": 255,
  1563. "b": 255,
  1564. "a": 255
  1565. },
  1566. "_disabledColor": {
  1567. "__type__": "cc.Color",
  1568. "r": 124,
  1569. "g": 124,
  1570. "b": 124,
  1571. "a": 255
  1572. },
  1573. "_normalSprite": null,
  1574. "_hoverSprite": null,
  1575. "_pressedSprite": null,
  1576. "_disabledSprite": null,
  1577. "_duration": 0.1,
  1578. "_zoomScale": 1.2,
  1579. "_target": {
  1580. "__id__": 35
  1581. },
  1582. "_id": "ec3qEoJHVABoxGd3CvrvsV"
  1583. },
  1584. {
  1585. "__type__": "cc.Node",
  1586. "_name": "Pai",
  1587. "_objFlags": 0,
  1588. "__editorExtras__": {},
  1589. "_parent": {
  1590. "__id__": 30
  1591. },
  1592. "_children": [
  1593. {
  1594. "__id__": 40
  1595. },
  1596. {
  1597. "__id__": 43
  1598. }
  1599. ],
  1600. "_active": true,
  1601. "_components": [
  1602. {
  1603. "__id__": 46
  1604. },
  1605. {
  1606. "__id__": 47
  1607. },
  1608. {
  1609. "__id__": 48
  1610. }
  1611. ],
  1612. "_prefab": null,
  1613. "_lpos": {
  1614. "__type__": "cc.Vec3",
  1615. "x": 520,
  1616. "y": -50,
  1617. "z": 0
  1618. },
  1619. "_lrot": {
  1620. "__type__": "cc.Quat",
  1621. "x": 0,
  1622. "y": 0,
  1623. "z": 0,
  1624. "w": 1
  1625. },
  1626. "_lscale": {
  1627. "__type__": "cc.Vec3",
  1628. "x": 0.7,
  1629. "y": 0.7,
  1630. "z": 1
  1631. },
  1632. "_mobility": 0,
  1633. "_layer": 33554432,
  1634. "_euler": {
  1635. "__type__": "cc.Vec3",
  1636. "x": 0,
  1637. "y": 0,
  1638. "z": 0
  1639. },
  1640. "_id": "a4JogsRNBEXJ7gt/Mv1bSt"
  1641. },
  1642. {
  1643. "__type__": "cc.Node",
  1644. "_name": "LbRemaining",
  1645. "_objFlags": 0,
  1646. "__editorExtras__": {},
  1647. "_parent": {
  1648. "__id__": 39
  1649. },
  1650. "_children": [],
  1651. "_active": true,
  1652. "_components": [
  1653. {
  1654. "__id__": 41
  1655. },
  1656. {
  1657. "__id__": 42
  1658. }
  1659. ],
  1660. "_prefab": null,
  1661. "_lpos": {
  1662. "__type__": "cc.Vec3",
  1663. "x": 0,
  1664. "y": -19.327,
  1665. "z": 0
  1666. },
  1667. "_lrot": {
  1668. "__type__": "cc.Quat",
  1669. "x": 0,
  1670. "y": 0,
  1671. "z": 0,
  1672. "w": 1
  1673. },
  1674. "_lscale": {
  1675. "__type__": "cc.Vec3",
  1676. "x": 1,
  1677. "y": 1,
  1678. "z": 1
  1679. },
  1680. "_mobility": 0,
  1681. "_layer": 33554432,
  1682. "_euler": {
  1683. "__type__": "cc.Vec3",
  1684. "x": 0,
  1685. "y": 0,
  1686. "z": 0
  1687. },
  1688. "_id": "45tP8ZQvdNJqb2x9iUAYs/"
  1689. },
  1690. {
  1691. "__type__": "cc.UITransform",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "__editorExtras__": {},
  1695. "node": {
  1696. "__id__": 40
  1697. },
  1698. "_enabled": true,
  1699. "__prefab": null,
  1700. "_contentSize": {
  1701. "__type__": "cc.Size",
  1702. "width": 103.89,
  1703. "height": 40
  1704. },
  1705. "_anchorPoint": {
  1706. "__type__": "cc.Vec2",
  1707. "x": 0.5,
  1708. "y": 0.5
  1709. },
  1710. "_id": "e6YBmF/xVNK5YdwrXAUjYK"
  1711. },
  1712. {
  1713. "__type__": "cc.Label",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "__editorExtras__": {},
  1717. "node": {
  1718. "__id__": 40
  1719. },
  1720. "_enabled": true,
  1721. "__prefab": null,
  1722. "_customMaterial": null,
  1723. "_srcBlendFactor": 2,
  1724. "_dstBlendFactor": 4,
  1725. "_color": {
  1726. "__type__": "cc.Color",
  1727. "r": 255,
  1728. "g": 255,
  1729. "b": 255,
  1730. "a": 255
  1731. },
  1732. "_string": "0 cup",
  1733. "_horizontalAlign": 1,
  1734. "_verticalAlign": 1,
  1735. "_actualFontSize": 40,
  1736. "_fontSize": 40,
  1737. "_fontFamily": "Arial",
  1738. "_lineHeight": 40,
  1739. "_overflow": 0,
  1740. "_enableWrapText": false,
  1741. "_font": {
  1742. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  1743. "__expectedType__": "cc.TTFFont"
  1744. },
  1745. "_isSystemFontUsed": false,
  1746. "_spacingX": 0,
  1747. "_isItalic": false,
  1748. "_isBold": false,
  1749. "_isUnderline": false,
  1750. "_underlineHeight": 2,
  1751. "_cacheMode": 2,
  1752. "_enableOutline": false,
  1753. "_outlineColor": {
  1754. "__type__": "cc.Color",
  1755. "r": 0,
  1756. "g": 0,
  1757. "b": 0,
  1758. "a": 255
  1759. },
  1760. "_outlineWidth": 2,
  1761. "_enableShadow": false,
  1762. "_shadowColor": {
  1763. "__type__": "cc.Color",
  1764. "r": 0,
  1765. "g": 0,
  1766. "b": 0,
  1767. "a": 255
  1768. },
  1769. "_shadowOffset": {
  1770. "__type__": "cc.Vec2",
  1771. "x": 2,
  1772. "y": 2
  1773. },
  1774. "_shadowBlur": 2,
  1775. "_id": "70oTlQYnlLhaq87tcLs4Xg"
  1776. },
  1777. {
  1778. "__type__": "cc.Node",
  1779. "_name": "Label",
  1780. "_objFlags": 0,
  1781. "__editorExtras__": {},
  1782. "_parent": {
  1783. "__id__": 39
  1784. },
  1785. "_children": [],
  1786. "_active": true,
  1787. "_components": [
  1788. {
  1789. "__id__": 44
  1790. },
  1791. {
  1792. "__id__": 45
  1793. }
  1794. ],
  1795. "_prefab": null,
  1796. "_lpos": {
  1797. "__type__": "cc.Vec3",
  1798. "x": -60,
  1799. "y": 30,
  1800. "z": 0
  1801. },
  1802. "_lrot": {
  1803. "__type__": "cc.Quat",
  1804. "x": 0,
  1805. "y": 0,
  1806. "z": 0,
  1807. "w": 1
  1808. },
  1809. "_lscale": {
  1810. "__type__": "cc.Vec3",
  1811. "x": 1,
  1812. "y": 1,
  1813. "z": 1
  1814. },
  1815. "_mobility": 0,
  1816. "_layer": 33554432,
  1817. "_euler": {
  1818. "__type__": "cc.Vec3",
  1819. "x": 0,
  1820. "y": 0,
  1821. "z": 0
  1822. },
  1823. "_id": "b7j+5Jh2xKwa5H1tBm3BKQ"
  1824. },
  1825. {
  1826. "__type__": "cc.UITransform",
  1827. "_name": "",
  1828. "_objFlags": 0,
  1829. "__editorExtras__": {},
  1830. "node": {
  1831. "__id__": 43
  1832. },
  1833. "_enabled": true,
  1834. "__prefab": null,
  1835. "_contentSize": {
  1836. "__type__": "cc.Size",
  1837. "width": 159.00390625,
  1838. "height": 50.4
  1839. },
  1840. "_anchorPoint": {
  1841. "__type__": "cc.Vec2",
  1842. "x": 0.5,
  1843. "y": 0.5
  1844. },
  1845. "_id": "94JMvOcMdGJbb1fOg9nsJc"
  1846. },
  1847. {
  1848. "__type__": "cc.Label",
  1849. "_name": "",
  1850. "_objFlags": 0,
  1851. "__editorExtras__": {},
  1852. "node": {
  1853. "__id__": 43
  1854. },
  1855. "_enabled": true,
  1856. "__prefab": null,
  1857. "_customMaterial": null,
  1858. "_srcBlendFactor": 2,
  1859. "_dstBlendFactor": 4,
  1860. "_color": {
  1861. "__type__": "cc.Color",
  1862. "r": 255,
  1863. "g": 255,
  1864. "b": 255,
  1865. "a": 255
  1866. },
  1867. "_string": "REMAIN",
  1868. "_horizontalAlign": 1,
  1869. "_verticalAlign": 1,
  1870. "_actualFontSize": 40,
  1871. "_fontSize": 40,
  1872. "_fontFamily": "Arial",
  1873. "_lineHeight": 40,
  1874. "_overflow": 0,
  1875. "_enableWrapText": false,
  1876. "_font": {
  1877. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  1878. "__expectedType__": "cc.TTFFont"
  1879. },
  1880. "_isSystemFontUsed": false,
  1881. "_spacingX": 0,
  1882. "_isItalic": false,
  1883. "_isBold": false,
  1884. "_isUnderline": false,
  1885. "_underlineHeight": 2,
  1886. "_cacheMode": 1,
  1887. "_enableOutline": false,
  1888. "_outlineColor": {
  1889. "__type__": "cc.Color",
  1890. "r": 0,
  1891. "g": 0,
  1892. "b": 0,
  1893. "a": 255
  1894. },
  1895. "_outlineWidth": 2,
  1896. "_enableShadow": false,
  1897. "_shadowColor": {
  1898. "__type__": "cc.Color",
  1899. "r": 0,
  1900. "g": 0,
  1901. "b": 0,
  1902. "a": 255
  1903. },
  1904. "_shadowOffset": {
  1905. "__type__": "cc.Vec2",
  1906. "x": 2,
  1907. "y": 2
  1908. },
  1909. "_shadowBlur": 2,
  1910. "_id": "fdv7maj2dIZJHGfBXAMFHM"
  1911. },
  1912. {
  1913. "__type__": "cc.UITransform",
  1914. "_name": "",
  1915. "_objFlags": 0,
  1916. "__editorExtras__": {},
  1917. "node": {
  1918. "__id__": 39
  1919. },
  1920. "_enabled": true,
  1921. "__prefab": null,
  1922. "_contentSize": {
  1923. "__type__": "cc.Size",
  1924. "width": 359,
  1925. "height": 175
  1926. },
  1927. "_anchorPoint": {
  1928. "__type__": "cc.Vec2",
  1929. "x": 0.5,
  1930. "y": 0.5
  1931. },
  1932. "_id": "4dP7V+P1dDo5JSv58OjrMx"
  1933. },
  1934. {
  1935. "__type__": "cc.Sprite",
  1936. "_name": "",
  1937. "_objFlags": 0,
  1938. "__editorExtras__": {},
  1939. "node": {
  1940. "__id__": 39
  1941. },
  1942. "_enabled": true,
  1943. "__prefab": null,
  1944. "_customMaterial": null,
  1945. "_srcBlendFactor": 2,
  1946. "_dstBlendFactor": 4,
  1947. "_color": {
  1948. "__type__": "cc.Color",
  1949. "r": 255,
  1950. "g": 255,
  1951. "b": 255,
  1952. "a": 255
  1953. },
  1954. "_spriteFrame": {
  1955. "__uuid__": "0847eb8f-24cd-484a-85e4-bf5beedb14e4@f9941",
  1956. "__expectedType__": "cc.SpriteFrame"
  1957. },
  1958. "_type": 0,
  1959. "_fillType": 0,
  1960. "_sizeMode": 1,
  1961. "_fillCenter": {
  1962. "__type__": "cc.Vec2",
  1963. "x": 0,
  1964. "y": 0
  1965. },
  1966. "_fillStart": 0,
  1967. "_fillRange": 0,
  1968. "_isTrimmedMode": true,
  1969. "_useGrayscale": false,
  1970. "_atlas": null,
  1971. "_id": "a34gSiaHVMpLYU6xLAMy2Y"
  1972. },
  1973. {
  1974. "__type__": "cc.Widget",
  1975. "_name": "",
  1976. "_objFlags": 0,
  1977. "__editorExtras__": {},
  1978. "node": {
  1979. "__id__": 39
  1980. },
  1981. "_enabled": true,
  1982. "__prefab": null,
  1983. "_alignFlags": 32,
  1984. "_target": null,
  1985. "_left": 0,
  1986. "_right": -595.65,
  1987. "_top": 0,
  1988. "_bottom": 0,
  1989. "_horizontalCenter": 0,
  1990. "_verticalCenter": 0,
  1991. "_isAbsLeft": true,
  1992. "_isAbsRight": true,
  1993. "_isAbsTop": true,
  1994. "_isAbsBottom": true,
  1995. "_isAbsHorizontalCenter": true,
  1996. "_isAbsVerticalCenter": true,
  1997. "_originalWidth": 0,
  1998. "_originalHeight": 0,
  1999. "_alignMode": 2,
  2000. "_lockFlags": 0,
  2001. "_id": "13/43jTFRGIqW6Rki8hTZO"
  2002. },
  2003. {
  2004. "__type__": "cc.UITransform",
  2005. "_name": "",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "node": {
  2009. "__id__": 30
  2010. },
  2011. "_enabled": true,
  2012. "__prefab": null,
  2013. "_contentSize": {
  2014. "__type__": "cc.Size",
  2015. "width": 100,
  2016. "height": 100
  2017. },
  2018. "_anchorPoint": {
  2019. "__type__": "cc.Vec2",
  2020. "x": 0.5,
  2021. "y": 0.5
  2022. },
  2023. "_id": "d0TcHh5mFPMZsmfTTtOr2h"
  2024. },
  2025. {
  2026. "__type__": "cc.Widget",
  2027. "_name": "",
  2028. "_objFlags": 0,
  2029. "__editorExtras__": {},
  2030. "node": {
  2031. "__id__": 30
  2032. },
  2033. "_enabled": true,
  2034. "__prefab": null,
  2035. "_alignFlags": 9,
  2036. "_target": null,
  2037. "_left": 10,
  2038. "_right": 0,
  2039. "_top": 10,
  2040. "_bottom": 0,
  2041. "_horizontalCenter": 0,
  2042. "_verticalCenter": 0,
  2043. "_isAbsLeft": true,
  2044. "_isAbsRight": true,
  2045. "_isAbsTop": true,
  2046. "_isAbsBottom": true,
  2047. "_isAbsHorizontalCenter": true,
  2048. "_isAbsVerticalCenter": true,
  2049. "_originalWidth": 0,
  2050. "_originalHeight": 0,
  2051. "_alignMode": 2,
  2052. "_lockFlags": 0,
  2053. "_id": "f382WzED1EIKcBD4MRB3XH"
  2054. },
  2055. {
  2056. "__type__": "cc.Node",
  2057. "_name": "TitleLvl",
  2058. "_objFlags": 0,
  2059. "__editorExtras__": {},
  2060. "_parent": {
  2061. "__id__": 12
  2062. },
  2063. "_children": [
  2064. {
  2065. "__id__": 52
  2066. }
  2067. ],
  2068. "_active": true,
  2069. "_components": [
  2070. {
  2071. "__id__": 55
  2072. },
  2073. {
  2074. "__id__": 56
  2075. }
  2076. ],
  2077. "_prefab": null,
  2078. "_lpos": {
  2079. "__type__": "cc.Vec3",
  2080. "x": 0,
  2081. "y": 590,
  2082. "z": 0
  2083. },
  2084. "_lrot": {
  2085. "__type__": "cc.Quat",
  2086. "x": 0,
  2087. "y": 0,
  2088. "z": 0,
  2089. "w": 1
  2090. },
  2091. "_lscale": {
  2092. "__type__": "cc.Vec3",
  2093. "x": 1,
  2094. "y": 1,
  2095. "z": 1
  2096. },
  2097. "_mobility": 0,
  2098. "_layer": 33554432,
  2099. "_euler": {
  2100. "__type__": "cc.Vec3",
  2101. "x": 0,
  2102. "y": 0,
  2103. "z": 0
  2104. },
  2105. "_id": "7eaBr2LpBGd6jgKjhLAy3Z"
  2106. },
  2107. {
  2108. "__type__": "cc.Node",
  2109. "_name": "LbLvl",
  2110. "_objFlags": 0,
  2111. "__editorExtras__": {},
  2112. "_parent": {
  2113. "__id__": 51
  2114. },
  2115. "_children": [],
  2116. "_active": true,
  2117. "_components": [
  2118. {
  2119. "__id__": 53
  2120. },
  2121. {
  2122. "__id__": 54
  2123. }
  2124. ],
  2125. "_prefab": null,
  2126. "_lpos": {
  2127. "__type__": "cc.Vec3",
  2128. "x": 0,
  2129. "y": 0,
  2130. "z": 0
  2131. },
  2132. "_lrot": {
  2133. "__type__": "cc.Quat",
  2134. "x": 0,
  2135. "y": 0,
  2136. "z": 0,
  2137. "w": 1
  2138. },
  2139. "_lscale": {
  2140. "__type__": "cc.Vec3",
  2141. "x": 1,
  2142. "y": 1,
  2143. "z": 1
  2144. },
  2145. "_mobility": 0,
  2146. "_layer": 33554432,
  2147. "_euler": {
  2148. "__type__": "cc.Vec3",
  2149. "x": 0,
  2150. "y": 0,
  2151. "z": 0
  2152. },
  2153. "_id": "45VLSoY6BMpa+A3x3t8NMd"
  2154. },
  2155. {
  2156. "__type__": "cc.UITransform",
  2157. "_name": "",
  2158. "_objFlags": 0,
  2159. "__editorExtras__": {},
  2160. "node": {
  2161. "__id__": 52
  2162. },
  2163. "_enabled": true,
  2164. "__prefab": null,
  2165. "_contentSize": {
  2166. "__type__": "cc.Size",
  2167. "width": 129.609375,
  2168. "height": 50.4
  2169. },
  2170. "_anchorPoint": {
  2171. "__type__": "cc.Vec2",
  2172. "x": 0.5,
  2173. "y": 0.5
  2174. },
  2175. "_id": "e426NqH85IV4zAIXxpvhVT"
  2176. },
  2177. {
  2178. "__type__": "cc.Label",
  2179. "_name": "",
  2180. "_objFlags": 0,
  2181. "__editorExtras__": {},
  2182. "node": {
  2183. "__id__": 52
  2184. },
  2185. "_enabled": true,
  2186. "__prefab": null,
  2187. "_customMaterial": null,
  2188. "_srcBlendFactor": 2,
  2189. "_dstBlendFactor": 4,
  2190. "_color": {
  2191. "__type__": "cc.Color",
  2192. "r": 255,
  2193. "g": 255,
  2194. "b": 255,
  2195. "a": 255
  2196. },
  2197. "_string": "Level:1",
  2198. "_horizontalAlign": 1,
  2199. "_verticalAlign": 1,
  2200. "_actualFontSize": 40,
  2201. "_fontSize": 40,
  2202. "_fontFamily": "Arial",
  2203. "_lineHeight": 40,
  2204. "_overflow": 0,
  2205. "_enableWrapText": false,
  2206. "_font": {
  2207. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  2208. "__expectedType__": "cc.TTFFont"
  2209. },
  2210. "_isSystemFontUsed": false,
  2211. "_spacingX": 0,
  2212. "_isItalic": false,
  2213. "_isBold": false,
  2214. "_isUnderline": false,
  2215. "_underlineHeight": 2,
  2216. "_cacheMode": 0,
  2217. "_enableOutline": false,
  2218. "_outlineColor": {
  2219. "__type__": "cc.Color",
  2220. "r": 0,
  2221. "g": 0,
  2222. "b": 0,
  2223. "a": 255
  2224. },
  2225. "_outlineWidth": 2,
  2226. "_enableShadow": false,
  2227. "_shadowColor": {
  2228. "__type__": "cc.Color",
  2229. "r": 0,
  2230. "g": 0,
  2231. "b": 0,
  2232. "a": 255
  2233. },
  2234. "_shadowOffset": {
  2235. "__type__": "cc.Vec2",
  2236. "x": 2,
  2237. "y": 2
  2238. },
  2239. "_shadowBlur": 2,
  2240. "_id": "c9kfQPvrNLFKpeVxnFtxD/"
  2241. },
  2242. {
  2243. "__type__": "cc.UITransform",
  2244. "_name": "",
  2245. "_objFlags": 0,
  2246. "__editorExtras__": {},
  2247. "node": {
  2248. "__id__": 51
  2249. },
  2250. "_enabled": true,
  2251. "__prefab": null,
  2252. "_contentSize": {
  2253. "__type__": "cc.Size",
  2254. "width": 100,
  2255. "height": 100
  2256. },
  2257. "_anchorPoint": {
  2258. "__type__": "cc.Vec2",
  2259. "x": 0.5,
  2260. "y": 0.5
  2261. },
  2262. "_id": "541WUs+9BP2ZhnTeHcGfgm"
  2263. },
  2264. {
  2265. "__type__": "cc.Widget",
  2266. "_name": "",
  2267. "_objFlags": 0,
  2268. "__editorExtras__": {},
  2269. "node": {
  2270. "__id__": 51
  2271. },
  2272. "_enabled": true,
  2273. "__prefab": null,
  2274. "_alignFlags": 17,
  2275. "_target": null,
  2276. "_left": 0,
  2277. "_right": 0,
  2278. "_top": 0,
  2279. "_bottom": 0,
  2280. "_horizontalCenter": 0,
  2281. "_verticalCenter": 0,
  2282. "_isAbsLeft": true,
  2283. "_isAbsRight": true,
  2284. "_isAbsTop": true,
  2285. "_isAbsBottom": true,
  2286. "_isAbsHorizontalCenter": true,
  2287. "_isAbsVerticalCenter": true,
  2288. "_originalWidth": 0,
  2289. "_originalHeight": 0,
  2290. "_alignMode": 2,
  2291. "_lockFlags": 0,
  2292. "_id": "64I7Jzug9FaY2hVVMXuKJH"
  2293. },
  2294. {
  2295. "__type__": "cc.Node",
  2296. "_name": "TopWarning",
  2297. "_objFlags": 0,
  2298. "__editorExtras__": {},
  2299. "_parent": {
  2300. "__id__": 12
  2301. },
  2302. "_children": [],
  2303. "_active": false,
  2304. "_components": [
  2305. {
  2306. "__id__": 58
  2307. },
  2308. {
  2309. "__id__": 59
  2310. }
  2311. ],
  2312. "_prefab": null,
  2313. "_lpos": {
  2314. "__type__": "cc.Vec3",
  2315. "x": 320,
  2316. "y": 240,
  2317. "z": 0
  2318. },
  2319. "_lrot": {
  2320. "__type__": "cc.Quat",
  2321. "x": 0,
  2322. "y": 0,
  2323. "z": 0,
  2324. "w": 1
  2325. },
  2326. "_lscale": {
  2327. "__type__": "cc.Vec3",
  2328. "x": 1,
  2329. "y": 1,
  2330. "z": 1
  2331. },
  2332. "_mobility": 0,
  2333. "_layer": 33554432,
  2334. "_euler": {
  2335. "__type__": "cc.Vec3",
  2336. "x": 0,
  2337. "y": 0,
  2338. "z": 0
  2339. },
  2340. "_id": "1aMCz1v9BEtIYV2iI61EUe"
  2341. },
  2342. {
  2343. "__type__": "cc.UITransform",
  2344. "_name": "",
  2345. "_objFlags": 0,
  2346. "__editorExtras__": {},
  2347. "node": {
  2348. "__id__": 57
  2349. },
  2350. "_enabled": true,
  2351. "__prefab": null,
  2352. "_contentSize": {
  2353. "__type__": "cc.Size",
  2354. "width": 82,
  2355. "height": 85
  2356. },
  2357. "_anchorPoint": {
  2358. "__type__": "cc.Vec2",
  2359. "x": 0.5,
  2360. "y": 0.5
  2361. },
  2362. "_id": "bbxLJPi65J0bn2gia8y0Lt"
  2363. },
  2364. {
  2365. "__type__": "cc.Sprite",
  2366. "_name": "",
  2367. "_objFlags": 0,
  2368. "__editorExtras__": {},
  2369. "node": {
  2370. "__id__": 57
  2371. },
  2372. "_enabled": true,
  2373. "__prefab": null,
  2374. "_customMaterial": null,
  2375. "_srcBlendFactor": 2,
  2376. "_dstBlendFactor": 4,
  2377. "_color": {
  2378. "__type__": "cc.Color",
  2379. "r": 255,
  2380. "g": 255,
  2381. "b": 255,
  2382. "a": 255
  2383. },
  2384. "_spriteFrame": {
  2385. "__uuid__": "7cb78425-d736-49f4-99b9-0ddc22782360@f9941",
  2386. "__expectedType__": "cc.SpriteFrame"
  2387. },
  2388. "_type": 0,
  2389. "_fillType": 0,
  2390. "_sizeMode": 0,
  2391. "_fillCenter": {
  2392. "__type__": "cc.Vec2",
  2393. "x": 0,
  2394. "y": 0
  2395. },
  2396. "_fillStart": 0,
  2397. "_fillRange": 0,
  2398. "_isTrimmedMode": true,
  2399. "_useGrayscale": false,
  2400. "_atlas": null,
  2401. "_id": "c4iUgD/ZNKz5eFikFWdy8p"
  2402. },
  2403. {
  2404. "__type__": "cc.UITransform",
  2405. "_name": "",
  2406. "_objFlags": 0,
  2407. "__editorExtras__": {},
  2408. "node": {
  2409. "__id__": 12
  2410. },
  2411. "_enabled": true,
  2412. "__prefab": null,
  2413. "_contentSize": {
  2414. "__type__": "cc.Size",
  2415. "width": 720,
  2416. "height": 1280
  2417. },
  2418. "_anchorPoint": {
  2419. "__type__": "cc.Vec2",
  2420. "x": 0.5,
  2421. "y": 0.5
  2422. },
  2423. "_id": "e4dhS7mGRMO5OzZUzBI3ky"
  2424. },
  2425. {
  2426. "__type__": "cc.Widget",
  2427. "_name": "",
  2428. "_objFlags": 0,
  2429. "__editorExtras__": {},
  2430. "node": {
  2431. "__id__": 12
  2432. },
  2433. "_enabled": true,
  2434. "__prefab": null,
  2435. "_alignFlags": 45,
  2436. "_target": null,
  2437. "_left": 0,
  2438. "_right": 0,
  2439. "_top": 0,
  2440. "_bottom": 0,
  2441. "_horizontalCenter": 0,
  2442. "_verticalCenter": 0,
  2443. "_isAbsLeft": true,
  2444. "_isAbsRight": true,
  2445. "_isAbsTop": true,
  2446. "_isAbsBottom": true,
  2447. "_isAbsHorizontalCenter": true,
  2448. "_isAbsVerticalCenter": true,
  2449. "_originalWidth": 100,
  2450. "_originalHeight": 100,
  2451. "_alignMode": 2,
  2452. "_lockFlags": 0,
  2453. "_id": "57BgqIz2ZNuYVEyJq1nSWl"
  2454. },
  2455. {
  2456. "__type__": "cc.Node",
  2457. "_name": "Entry",
  2458. "_objFlags": 0,
  2459. "__editorExtras__": {},
  2460. "_parent": {
  2461. "__id__": 2
  2462. },
  2463. "_children": [],
  2464. "_active": true,
  2465. "_components": [
  2466. {
  2467. "__id__": 63
  2468. }
  2469. ],
  2470. "_prefab": null,
  2471. "_lpos": {
  2472. "__type__": "cc.Vec3",
  2473. "x": -360,
  2474. "y": -667,
  2475. "z": 0
  2476. },
  2477. "_lrot": {
  2478. "__type__": "cc.Quat",
  2479. "x": 0,
  2480. "y": 0,
  2481. "z": 0,
  2482. "w": 1
  2483. },
  2484. "_lscale": {
  2485. "__type__": "cc.Vec3",
  2486. "x": 1,
  2487. "y": 1,
  2488. "z": 1
  2489. },
  2490. "_mobility": 0,
  2491. "_layer": 1073741824,
  2492. "_euler": {
  2493. "__type__": "cc.Vec3",
  2494. "x": 0,
  2495. "y": 0,
  2496. "z": 0
  2497. },
  2498. "_id": "21OxpNL+dAV7IJEFgGJCft"
  2499. },
  2500. {
  2501. "__type__": "aa87cyBikxNRJE8D80V5T4B",
  2502. "_name": "",
  2503. "_objFlags": 0,
  2504. "__editorExtras__": {},
  2505. "node": {
  2506. "__id__": 62
  2507. },
  2508. "_enabled": true,
  2509. "__prefab": null,
  2510. "_id": "32JP2rbBZAEKeL0vLDweo+"
  2511. },
  2512. {
  2513. "__type__": "cc.UITransform",
  2514. "_name": "",
  2515. "_objFlags": 0,
  2516. "__editorExtras__": {},
  2517. "node": {
  2518. "__id__": 2
  2519. },
  2520. "_enabled": true,
  2521. "__prefab": null,
  2522. "_contentSize": {
  2523. "__type__": "cc.Size",
  2524. "width": 720,
  2525. "height": 1280
  2526. },
  2527. "_anchorPoint": {
  2528. "__type__": "cc.Vec2",
  2529. "x": 0.5,
  2530. "y": 0.5
  2531. },
  2532. "_id": "b1HUYLJ3VC5a0fFpVByWp2"
  2533. },
  2534. {
  2535. "__type__": "cc.Canvas",
  2536. "_name": "",
  2537. "_objFlags": 0,
  2538. "__editorExtras__": {},
  2539. "node": {
  2540. "__id__": 2
  2541. },
  2542. "_enabled": true,
  2543. "__prefab": null,
  2544. "_cameraComponent": {
  2545. "__id__": 4
  2546. },
  2547. "_alignCanvasWithScreen": true,
  2548. "_id": "8fdCZBLJNAnL3sNZ4vacOF"
  2549. },
  2550. {
  2551. "__type__": "cc.Widget",
  2552. "_name": "",
  2553. "_objFlags": 0,
  2554. "__editorExtras__": {},
  2555. "node": {
  2556. "__id__": 2
  2557. },
  2558. "_enabled": true,
  2559. "__prefab": null,
  2560. "_alignFlags": 45,
  2561. "_target": null,
  2562. "_left": 0,
  2563. "_right": 0,
  2564. "_top": 0,
  2565. "_bottom": 0,
  2566. "_horizontalCenter": 0,
  2567. "_verticalCenter": 0,
  2568. "_isAbsLeft": true,
  2569. "_isAbsRight": true,
  2570. "_isAbsTop": true,
  2571. "_isAbsBottom": true,
  2572. "_isAbsHorizontalCenter": true,
  2573. "_isAbsVerticalCenter": true,
  2574. "_originalWidth": 720,
  2575. "_originalHeight": 1334,
  2576. "_alignMode": 2,
  2577. "_lockFlags": 0,
  2578. "_id": "892DGZiFBAiJVjMq+NCDX6"
  2579. },
  2580. {
  2581. "__type__": "dca72U6jlRMRLAiO1t+r7Zj",
  2582. "_name": "",
  2583. "_objFlags": 0,
  2584. "__editorExtras__": {},
  2585. "node": {
  2586. "__id__": 2
  2587. },
  2588. "_enabled": true,
  2589. "__prefab": null,
  2590. "_flags": 3,
  2591. "_top": 0,
  2592. "_bottom": 0,
  2593. "_left": 0,
  2594. "_right": 0,
  2595. "_id": "b7uUjAUN5J/4btJYAR/qhv"
  2596. },
  2597. {
  2598. "__type__": "cc.PrefabInfo",
  2599. "root": null,
  2600. "asset": null,
  2601. "fileId": "be14c61f-22d8-4bb9-b444-ad9f29740469",
  2602. "instance": null,
  2603. "targetOverrides": []
  2604. },
  2605. {
  2606. "__type__": "cc.SceneGlobals",
  2607. "ambient": {
  2608. "__id__": 70
  2609. },
  2610. "shadows": {
  2611. "__id__": 71
  2612. },
  2613. "_skybox": {
  2614. "__id__": 72
  2615. },
  2616. "fog": {
  2617. "__id__": 73
  2618. },
  2619. "octree": {
  2620. "__id__": 74
  2621. },
  2622. "skin": {
  2623. "__id__": 75
  2624. },
  2625. "lightProbeInfo": {
  2626. "__id__": 76
  2627. },
  2628. "postSettings": {
  2629. "__id__": 77
  2630. },
  2631. "bakedWithStationaryMainLight": false,
  2632. "bakedWithHighpLightmap": false
  2633. },
  2634. {
  2635. "__type__": "cc.AmbientInfo",
  2636. "_skyColorHDR": {
  2637. "__type__": "cc.Vec4",
  2638. "x": 0.2,
  2639. "y": 0.5,
  2640. "z": 0.8,
  2641. "w": 0.520833125
  2642. },
  2643. "_skyColor": {
  2644. "__type__": "cc.Vec4",
  2645. "x": 0.2,
  2646. "y": 0.5,
  2647. "z": 0.8,
  2648. "w": 0.520833125
  2649. },
  2650. "_skyIllumHDR": 20000,
  2651. "_skyIllum": 20000,
  2652. "_groundAlbedoHDR": {
  2653. "__type__": "cc.Vec4",
  2654. "x": 0.2,
  2655. "y": 0.2,
  2656. "z": 0.2,
  2657. "w": 1
  2658. },
  2659. "_groundAlbedo": {
  2660. "__type__": "cc.Vec4",
  2661. "x": 0.2,
  2662. "y": 0.2,
  2663. "z": 0.2,
  2664. "w": 1
  2665. },
  2666. "_skyColorLDR": {
  2667. "__type__": "cc.Vec4",
  2668. "x": 0.452588,
  2669. "y": 0.607642,
  2670. "z": 0.755699,
  2671. "w": 0
  2672. },
  2673. "_skyIllumLDR": 0.8,
  2674. "_groundAlbedoLDR": {
  2675. "__type__": "cc.Vec4",
  2676. "x": 0.618555,
  2677. "y": 0.577848,
  2678. "z": 0.544564,
  2679. "w": 0
  2680. }
  2681. },
  2682. {
  2683. "__type__": "cc.ShadowsInfo",
  2684. "_enabled": false,
  2685. "_type": 1,
  2686. "_normal": {
  2687. "__type__": "cc.Vec3",
  2688. "x": 0,
  2689. "y": 1,
  2690. "z": 0
  2691. },
  2692. "_distance": 0,
  2693. "_planeBias": 1,
  2694. "_shadowColor": {
  2695. "__type__": "cc.Color",
  2696. "r": 76,
  2697. "g": 76,
  2698. "b": 76,
  2699. "a": 255
  2700. },
  2701. "_maxReceived": 4,
  2702. "_size": {
  2703. "__type__": "cc.Vec2",
  2704. "x": 2048,
  2705. "y": 2048
  2706. }
  2707. },
  2708. {
  2709. "__type__": "cc.SkyboxInfo",
  2710. "_envLightingType": 1,
  2711. "_envmapHDR": {
  2712. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  2713. "__expectedType__": "cc.TextureCube"
  2714. },
  2715. "_envmap": {
  2716. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  2717. "__expectedType__": "cc.TextureCube"
  2718. },
  2719. "_envmapLDR": {
  2720. "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0",
  2721. "__expectedType__": "cc.TextureCube"
  2722. },
  2723. "_diffuseMapHDR": null,
  2724. "_diffuseMapLDR": null,
  2725. "_enabled": false,
  2726. "_useHDR": true,
  2727. "_editableMaterial": null,
  2728. "_reflectionHDR": null,
  2729. "_reflectionLDR": null,
  2730. "_rotationAngle": 0
  2731. },
  2732. {
  2733. "__type__": "cc.FogInfo",
  2734. "_type": 0,
  2735. "_fogColor": {
  2736. "__type__": "cc.Color",
  2737. "r": 200,
  2738. "g": 200,
  2739. "b": 200,
  2740. "a": 255
  2741. },
  2742. "_enabled": false,
  2743. "_fogDensity": 0.3,
  2744. "_fogStart": 0.5,
  2745. "_fogEnd": 300,
  2746. "_fogAtten": 5,
  2747. "_fogTop": 1.5,
  2748. "_fogRange": 1.2,
  2749. "_accurate": false
  2750. },
  2751. {
  2752. "__type__": "cc.OctreeInfo",
  2753. "_enabled": false,
  2754. "_minPos": {
  2755. "__type__": "cc.Vec3",
  2756. "x": -1024,
  2757. "y": -1024,
  2758. "z": -1024
  2759. },
  2760. "_maxPos": {
  2761. "__type__": "cc.Vec3",
  2762. "x": 1024,
  2763. "y": 1024,
  2764. "z": 1024
  2765. },
  2766. "_depth": 8
  2767. },
  2768. {
  2769. "__type__": "cc.SkinInfo",
  2770. "_enabled": false,
  2771. "_blurRadius": 0.01,
  2772. "_sssIntensity": 3
  2773. },
  2774. {
  2775. "__type__": "cc.LightProbeInfo",
  2776. "_giScale": 1,
  2777. "_giSamples": 1024,
  2778. "_bounces": 2,
  2779. "_reduceRinging": 0,
  2780. "_showProbe": true,
  2781. "_showWireframe": true,
  2782. "_showConvex": false,
  2783. "_data": null,
  2784. "_lightProbeSphereVolume": 1
  2785. },
  2786. {
  2787. "__type__": "cc.PostSettingsInfo",
  2788. "_toneMappingType": 0
  2789. }
  2790. ]