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__": 22
  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. "__id__": 20
  378. }
  379. ],
  380. "_active": true,
  381. "_components": [],
  382. "_prefab": null,
  383. "_lpos": {
  384. "__type__": "cc.Vec3",
  385. "x": 0,
  386. "y": 0,
  387. "z": 0
  388. },
  389. "_lrot": {
  390. "__type__": "cc.Quat",
  391. "x": 0,
  392. "y": 0,
  393. "z": 0,
  394. "w": 1
  395. },
  396. "_lscale": {
  397. "__type__": "cc.Vec3",
  398. "x": 1,
  399. "y": 1,
  400. "z": 1
  401. },
  402. "_mobility": 0,
  403. "_layer": 33554432,
  404. "_euler": {
  405. "__type__": "cc.Vec3",
  406. "x": 0,
  407. "y": 0,
  408. "z": 0
  409. },
  410. "_id": "3fuKm0nuBBHJHhaLI3ucoH"
  411. },
  412. {
  413. "__type__": "cc.Node",
  414. "_name": "Pai",
  415. "_objFlags": 0,
  416. "__editorExtras__": {},
  417. "_parent": {
  418. "__id__": 9
  419. },
  420. "_children": [
  421. {
  422. "__id__": 11
  423. },
  424. {
  425. "__id__": 14
  426. }
  427. ],
  428. "_active": true,
  429. "_components": [
  430. {
  431. "__id__": 17
  432. },
  433. {
  434. "__id__": 18
  435. },
  436. {
  437. "__id__": 19
  438. }
  439. ],
  440. "_prefab": null,
  441. "_lpos": {
  442. "__type__": "cc.Vec3",
  443. "x": 200,
  444. "y": 500,
  445. "z": 0
  446. },
  447. "_lrot": {
  448. "__type__": "cc.Quat",
  449. "x": 0,
  450. "y": 0,
  451. "z": 0,
  452. "w": 1
  453. },
  454. "_lscale": {
  455. "__type__": "cc.Vec3",
  456. "x": 0.7,
  457. "y": 0.7,
  458. "z": 1
  459. },
  460. "_mobility": 0,
  461. "_layer": 33554432,
  462. "_euler": {
  463. "__type__": "cc.Vec3",
  464. "x": 0,
  465. "y": 0,
  466. "z": 0
  467. },
  468. "_id": "a4JogsRNBEXJ7gt/Mv1bSt"
  469. },
  470. {
  471. "__type__": "cc.Node",
  472. "_name": "LbRemaining",
  473. "_objFlags": 0,
  474. "__editorExtras__": {},
  475. "_parent": {
  476. "__id__": 10
  477. },
  478. "_children": [],
  479. "_active": true,
  480. "_components": [
  481. {
  482. "__id__": 12
  483. },
  484. {
  485. "__id__": 13
  486. }
  487. ],
  488. "_prefab": null,
  489. "_lpos": {
  490. "__type__": "cc.Vec3",
  491. "x": 0,
  492. "y": -19.327,
  493. "z": 0
  494. },
  495. "_lrot": {
  496. "__type__": "cc.Quat",
  497. "x": 0,
  498. "y": 0,
  499. "z": 0,
  500. "w": 1
  501. },
  502. "_lscale": {
  503. "__type__": "cc.Vec3",
  504. "x": 1,
  505. "y": 1,
  506. "z": 1
  507. },
  508. "_mobility": 0,
  509. "_layer": 33554432,
  510. "_euler": {
  511. "__type__": "cc.Vec3",
  512. "x": 0,
  513. "y": 0,
  514. "z": 0
  515. },
  516. "_id": "45tP8ZQvdNJqb2x9iUAYs/"
  517. },
  518. {
  519. "__type__": "cc.UITransform",
  520. "_name": "",
  521. "_objFlags": 0,
  522. "__editorExtras__": {},
  523. "node": {
  524. "__id__": 11
  525. },
  526. "_enabled": true,
  527. "__prefab": null,
  528. "_contentSize": {
  529. "__type__": "cc.Size",
  530. "width": 103.89,
  531. "height": 40
  532. },
  533. "_anchorPoint": {
  534. "__type__": "cc.Vec2",
  535. "x": 0.5,
  536. "y": 0.5
  537. },
  538. "_id": "e6YBmF/xVNK5YdwrXAUjYK"
  539. },
  540. {
  541. "__type__": "cc.Label",
  542. "_name": "",
  543. "_objFlags": 0,
  544. "__editorExtras__": {},
  545. "node": {
  546. "__id__": 11
  547. },
  548. "_enabled": true,
  549. "__prefab": null,
  550. "_customMaterial": null,
  551. "_srcBlendFactor": 2,
  552. "_dstBlendFactor": 4,
  553. "_color": {
  554. "__type__": "cc.Color",
  555. "r": 255,
  556. "g": 255,
  557. "b": 255,
  558. "a": 255
  559. },
  560. "_string": "0 cup",
  561. "_horizontalAlign": 1,
  562. "_verticalAlign": 1,
  563. "_actualFontSize": 40,
  564. "_fontSize": 40,
  565. "_fontFamily": "Arial",
  566. "_lineHeight": 40,
  567. "_overflow": 0,
  568. "_enableWrapText": false,
  569. "_font": {
  570. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  571. "__expectedType__": "cc.TTFFont"
  572. },
  573. "_isSystemFontUsed": false,
  574. "_spacingX": 0,
  575. "_isItalic": false,
  576. "_isBold": false,
  577. "_isUnderline": false,
  578. "_underlineHeight": 2,
  579. "_cacheMode": 2,
  580. "_enableOutline": false,
  581. "_outlineColor": {
  582. "__type__": "cc.Color",
  583. "r": 0,
  584. "g": 0,
  585. "b": 0,
  586. "a": 255
  587. },
  588. "_outlineWidth": 2,
  589. "_enableShadow": false,
  590. "_shadowColor": {
  591. "__type__": "cc.Color",
  592. "r": 0,
  593. "g": 0,
  594. "b": 0,
  595. "a": 255
  596. },
  597. "_shadowOffset": {
  598. "__type__": "cc.Vec2",
  599. "x": 2,
  600. "y": 2
  601. },
  602. "_shadowBlur": 2,
  603. "_id": "70oTlQYnlLhaq87tcLs4Xg"
  604. },
  605. {
  606. "__type__": "cc.Node",
  607. "_name": "Label",
  608. "_objFlags": 0,
  609. "__editorExtras__": {},
  610. "_parent": {
  611. "__id__": 10
  612. },
  613. "_children": [],
  614. "_active": true,
  615. "_components": [
  616. {
  617. "__id__": 15
  618. },
  619. {
  620. "__id__": 16
  621. }
  622. ],
  623. "_prefab": null,
  624. "_lpos": {
  625. "__type__": "cc.Vec3",
  626. "x": -60,
  627. "y": 30,
  628. "z": 0
  629. },
  630. "_lrot": {
  631. "__type__": "cc.Quat",
  632. "x": 0,
  633. "y": 0,
  634. "z": 0,
  635. "w": 1
  636. },
  637. "_lscale": {
  638. "__type__": "cc.Vec3",
  639. "x": 1,
  640. "y": 1,
  641. "z": 1
  642. },
  643. "_mobility": 0,
  644. "_layer": 33554432,
  645. "_euler": {
  646. "__type__": "cc.Vec3",
  647. "x": 0,
  648. "y": 0,
  649. "z": 0
  650. },
  651. "_id": "b7j+5Jh2xKwa5H1tBm3BKQ"
  652. },
  653. {
  654. "__type__": "cc.UITransform",
  655. "_name": "",
  656. "_objFlags": 0,
  657. "__editorExtras__": {},
  658. "node": {
  659. "__id__": 14
  660. },
  661. "_enabled": true,
  662. "__prefab": null,
  663. "_contentSize": {
  664. "__type__": "cc.Size",
  665. "width": 159.00390625,
  666. "height": 50.4
  667. },
  668. "_anchorPoint": {
  669. "__type__": "cc.Vec2",
  670. "x": 0.5,
  671. "y": 0.5
  672. },
  673. "_id": "94JMvOcMdGJbb1fOg9nsJc"
  674. },
  675. {
  676. "__type__": "cc.Label",
  677. "_name": "",
  678. "_objFlags": 0,
  679. "__editorExtras__": {},
  680. "node": {
  681. "__id__": 14
  682. },
  683. "_enabled": true,
  684. "__prefab": null,
  685. "_customMaterial": null,
  686. "_srcBlendFactor": 2,
  687. "_dstBlendFactor": 4,
  688. "_color": {
  689. "__type__": "cc.Color",
  690. "r": 255,
  691. "g": 255,
  692. "b": 255,
  693. "a": 255
  694. },
  695. "_string": "REMAIN",
  696. "_horizontalAlign": 1,
  697. "_verticalAlign": 1,
  698. "_actualFontSize": 40,
  699. "_fontSize": 40,
  700. "_fontFamily": "Arial",
  701. "_lineHeight": 40,
  702. "_overflow": 0,
  703. "_enableWrapText": false,
  704. "_font": {
  705. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  706. "__expectedType__": "cc.TTFFont"
  707. },
  708. "_isSystemFontUsed": false,
  709. "_spacingX": 0,
  710. "_isItalic": false,
  711. "_isBold": false,
  712. "_isUnderline": false,
  713. "_underlineHeight": 2,
  714. "_cacheMode": 1,
  715. "_enableOutline": false,
  716. "_outlineColor": {
  717. "__type__": "cc.Color",
  718. "r": 0,
  719. "g": 0,
  720. "b": 0,
  721. "a": 255
  722. },
  723. "_outlineWidth": 2,
  724. "_enableShadow": false,
  725. "_shadowColor": {
  726. "__type__": "cc.Color",
  727. "r": 0,
  728. "g": 0,
  729. "b": 0,
  730. "a": 255
  731. },
  732. "_shadowOffset": {
  733. "__type__": "cc.Vec2",
  734. "x": 2,
  735. "y": 2
  736. },
  737. "_shadowBlur": 2,
  738. "_id": "fdv7maj2dIZJHGfBXAMFHM"
  739. },
  740. {
  741. "__type__": "cc.UITransform",
  742. "_name": "",
  743. "_objFlags": 0,
  744. "__editorExtras__": {},
  745. "node": {
  746. "__id__": 10
  747. },
  748. "_enabled": true,
  749. "__prefab": null,
  750. "_contentSize": {
  751. "__type__": "cc.Size",
  752. "width": 359,
  753. "height": 175
  754. },
  755. "_anchorPoint": {
  756. "__type__": "cc.Vec2",
  757. "x": 0.5,
  758. "y": 0.5
  759. },
  760. "_id": "4dP7V+P1dDo5JSv58OjrMx"
  761. },
  762. {
  763. "__type__": "cc.Sprite",
  764. "_name": "",
  765. "_objFlags": 0,
  766. "__editorExtras__": {},
  767. "node": {
  768. "__id__": 10
  769. },
  770. "_enabled": true,
  771. "__prefab": null,
  772. "_customMaterial": null,
  773. "_srcBlendFactor": 2,
  774. "_dstBlendFactor": 4,
  775. "_color": {
  776. "__type__": "cc.Color",
  777. "r": 255,
  778. "g": 255,
  779. "b": 255,
  780. "a": 255
  781. },
  782. "_spriteFrame": {
  783. "__uuid__": "0847eb8f-24cd-484a-85e4-bf5beedb14e4@f9941",
  784. "__expectedType__": "cc.SpriteFrame"
  785. },
  786. "_type": 0,
  787. "_fillType": 0,
  788. "_sizeMode": 1,
  789. "_fillCenter": {
  790. "__type__": "cc.Vec2",
  791. "x": 0,
  792. "y": 0
  793. },
  794. "_fillStart": 0,
  795. "_fillRange": 0,
  796. "_isTrimmedMode": true,
  797. "_useGrayscale": false,
  798. "_atlas": null,
  799. "_id": "a34gSiaHVMpLYU6xLAMy2Y"
  800. },
  801. {
  802. "__type__": "cc.Widget",
  803. "_name": "",
  804. "_objFlags": 0,
  805. "__editorExtras__": {},
  806. "node": {
  807. "__id__": 10
  808. },
  809. "_enabled": true,
  810. "__prefab": null,
  811. "_alignFlags": 32,
  812. "_target": null,
  813. "_left": 0,
  814. "_right": 394.35,
  815. "_top": 0,
  816. "_bottom": 0,
  817. "_horizontalCenter": 0,
  818. "_verticalCenter": 0,
  819. "_isAbsLeft": true,
  820. "_isAbsRight": true,
  821. "_isAbsTop": true,
  822. "_isAbsBottom": true,
  823. "_isAbsHorizontalCenter": true,
  824. "_isAbsVerticalCenter": true,
  825. "_originalWidth": 0,
  826. "_originalHeight": 0,
  827. "_alignMode": 2,
  828. "_lockFlags": 0,
  829. "_id": "13/43jTFRGIqW6Rki8hTZO"
  830. },
  831. {
  832. "__type__": "cc.Node",
  833. "_name": "Levels",
  834. "_objFlags": 0,
  835. "__editorExtras__": {},
  836. "_parent": {
  837. "__id__": 9
  838. },
  839. "_children": [],
  840. "_active": true,
  841. "_components": [
  842. {
  843. "__id__": 21
  844. }
  845. ],
  846. "_prefab": null,
  847. "_lpos": {
  848. "__type__": "cc.Vec3",
  849. "x": 0,
  850. "y": 0,
  851. "z": 0
  852. },
  853. "_lrot": {
  854. "__type__": "cc.Quat",
  855. "x": 0,
  856. "y": 0,
  857. "z": 0,
  858. "w": 1
  859. },
  860. "_lscale": {
  861. "__type__": "cc.Vec3",
  862. "x": 1,
  863. "y": 1,
  864. "z": 1
  865. },
  866. "_mobility": 0,
  867. "_layer": 33554432,
  868. "_euler": {
  869. "__type__": "cc.Vec3",
  870. "x": 0,
  871. "y": 0,
  872. "z": 0
  873. },
  874. "_id": "fdUM3xPpZOhocmreO15dfu"
  875. },
  876. {
  877. "__type__": "cc.UITransform",
  878. "_name": "",
  879. "_objFlags": 0,
  880. "__editorExtras__": {},
  881. "node": {
  882. "__id__": 20
  883. },
  884. "_enabled": true,
  885. "__prefab": null,
  886. "_contentSize": {
  887. "__type__": "cc.Size",
  888. "width": 100,
  889. "height": 100
  890. },
  891. "_anchorPoint": {
  892. "__type__": "cc.Vec2",
  893. "x": 0.5,
  894. "y": 0.5
  895. },
  896. "_id": "42I7jX/Y9CeZ6fxNWgPzN5"
  897. },
  898. {
  899. "__type__": "cc.Node",
  900. "_name": "GameUI",
  901. "_objFlags": 0,
  902. "__editorExtras__": {},
  903. "_parent": {
  904. "__id__": 2
  905. },
  906. "_children": [
  907. {
  908. "__id__": 23
  909. },
  910. {
  911. "__id__": 40
  912. },
  913. {
  914. "__id__": 51
  915. },
  916. {
  917. "__id__": 57
  918. }
  919. ],
  920. "_active": true,
  921. "_components": [
  922. {
  923. "__id__": 60
  924. },
  925. {
  926. "__id__": 61
  927. }
  928. ],
  929. "_prefab": null,
  930. "_lpos": {
  931. "__type__": "cc.Vec3",
  932. "x": 0,
  933. "y": 0,
  934. "z": 0
  935. },
  936. "_lrot": {
  937. "__type__": "cc.Quat",
  938. "x": 0,
  939. "y": 0,
  940. "z": 0,
  941. "w": 1
  942. },
  943. "_lscale": {
  944. "__type__": "cc.Vec3",
  945. "x": 1,
  946. "y": 1,
  947. "z": 1
  948. },
  949. "_mobility": 0,
  950. "_layer": 33554432,
  951. "_euler": {
  952. "__type__": "cc.Vec3",
  953. "x": 0,
  954. "y": 0,
  955. "z": 0
  956. },
  957. "_id": "58MeD8Ml5Fz48qBGKRvffz"
  958. },
  959. {
  960. "__type__": "cc.Node",
  961. "_name": "BottomBtns",
  962. "_objFlags": 0,
  963. "__editorExtras__": {},
  964. "_parent": {
  965. "__id__": 22
  966. },
  967. "_children": [
  968. {
  969. "__id__": 24
  970. },
  971. {
  972. "__id__": 28
  973. },
  974. {
  975. "__id__": 32
  976. }
  977. ],
  978. "_active": true,
  979. "_components": [
  980. {
  981. "__id__": 36
  982. },
  983. {
  984. "__id__": 37
  985. },
  986. {
  987. "__id__": 38
  988. },
  989. {
  990. "__id__": 39
  991. }
  992. ],
  993. "_prefab": null,
  994. "_lpos": {
  995. "__type__": "cc.Vec3",
  996. "x": 0,
  997. "y": -530,
  998. "z": 0
  999. },
  1000. "_lrot": {
  1001. "__type__": "cc.Quat",
  1002. "x": 0,
  1003. "y": 0,
  1004. "z": 0,
  1005. "w": 1
  1006. },
  1007. "_lscale": {
  1008. "__type__": "cc.Vec3",
  1009. "x": 1,
  1010. "y": 1,
  1011. "z": 1
  1012. },
  1013. "_mobility": 0,
  1014. "_layer": 33554432,
  1015. "_euler": {
  1016. "__type__": "cc.Vec3",
  1017. "x": 0,
  1018. "y": 0,
  1019. "z": 0
  1020. },
  1021. "_id": "7aJPiCjCdIT51G0EeVP/Js"
  1022. },
  1023. {
  1024. "__type__": "cc.Node",
  1025. "_name": "BtnFillUp",
  1026. "_objFlags": 0,
  1027. "__editorExtras__": {},
  1028. "_parent": {
  1029. "__id__": 23
  1030. },
  1031. "_children": [],
  1032. "_active": true,
  1033. "_components": [
  1034. {
  1035. "__id__": 25
  1036. },
  1037. {
  1038. "__id__": 26
  1039. },
  1040. {
  1041. "__id__": 27
  1042. }
  1043. ],
  1044. "_prefab": null,
  1045. "_lpos": {
  1046. "__type__": "cc.Vec3",
  1047. "x": -245,
  1048. "y": 17.116,
  1049. "z": 0
  1050. },
  1051. "_lrot": {
  1052. "__type__": "cc.Quat",
  1053. "x": 0,
  1054. "y": 0,
  1055. "z": 0,
  1056. "w": 1
  1057. },
  1058. "_lscale": {
  1059. "__type__": "cc.Vec3",
  1060. "x": 0.6,
  1061. "y": 0.6,
  1062. "z": 1
  1063. },
  1064. "_mobility": 0,
  1065. "_layer": 33554432,
  1066. "_euler": {
  1067. "__type__": "cc.Vec3",
  1068. "x": 0,
  1069. "y": 0,
  1070. "z": 0
  1071. },
  1072. "_id": "6cYE3Zt7NHT5w1Z5KL21Ik"
  1073. },
  1074. {
  1075. "__type__": "cc.UITransform",
  1076. "_name": "",
  1077. "_objFlags": 0,
  1078. "__editorExtras__": {},
  1079. "node": {
  1080. "__id__": 24
  1081. },
  1082. "_enabled": true,
  1083. "__prefab": null,
  1084. "_contentSize": {
  1085. "__type__": "cc.Size",
  1086. "width": 275,
  1087. "height": 293
  1088. },
  1089. "_anchorPoint": {
  1090. "__type__": "cc.Vec2",
  1091. "x": 0.5,
  1092. "y": 0.5
  1093. },
  1094. "_id": "7fisGv4iROTL5CNe2MHw9h"
  1095. },
  1096. {
  1097. "__type__": "cc.Sprite",
  1098. "_name": "",
  1099. "_objFlags": 0,
  1100. "__editorExtras__": {},
  1101. "node": {
  1102. "__id__": 24
  1103. },
  1104. "_enabled": true,
  1105. "__prefab": null,
  1106. "_customMaterial": null,
  1107. "_srcBlendFactor": 2,
  1108. "_dstBlendFactor": 4,
  1109. "_color": {
  1110. "__type__": "cc.Color",
  1111. "r": 255,
  1112. "g": 255,
  1113. "b": 255,
  1114. "a": 255
  1115. },
  1116. "_spriteFrame": {
  1117. "__uuid__": "5a7d4425-b50a-43be-9038-cd80bab024f7@f9941",
  1118. "__expectedType__": "cc.SpriteFrame"
  1119. },
  1120. "_type": 1,
  1121. "_fillType": 0,
  1122. "_sizeMode": 2,
  1123. "_fillCenter": {
  1124. "__type__": "cc.Vec2",
  1125. "x": 0,
  1126. "y": 0
  1127. },
  1128. "_fillStart": 0,
  1129. "_fillRange": 0,
  1130. "_isTrimmedMode": true,
  1131. "_useGrayscale": false,
  1132. "_atlas": null,
  1133. "_id": "8cqibgpa5DIa7z7f6rFKMk"
  1134. },
  1135. {
  1136. "__type__": "cc.Button",
  1137. "_name": "",
  1138. "_objFlags": 0,
  1139. "__editorExtras__": {},
  1140. "node": {
  1141. "__id__": 24
  1142. },
  1143. "_enabled": true,
  1144. "__prefab": null,
  1145. "clickEvents": [],
  1146. "_interactable": true,
  1147. "_transition": 3,
  1148. "_normalColor": {
  1149. "__type__": "cc.Color",
  1150. "r": 214,
  1151. "g": 214,
  1152. "b": 214,
  1153. "a": 255
  1154. },
  1155. "_hoverColor": {
  1156. "__type__": "cc.Color",
  1157. "r": 211,
  1158. "g": 211,
  1159. "b": 211,
  1160. "a": 255
  1161. },
  1162. "_pressedColor": {
  1163. "__type__": "cc.Color",
  1164. "r": 255,
  1165. "g": 255,
  1166. "b": 255,
  1167. "a": 255
  1168. },
  1169. "_disabledColor": {
  1170. "__type__": "cc.Color",
  1171. "r": 124,
  1172. "g": 124,
  1173. "b": 124,
  1174. "a": 255
  1175. },
  1176. "_normalSprite": null,
  1177. "_hoverSprite": null,
  1178. "_pressedSprite": null,
  1179. "_disabledSprite": null,
  1180. "_duration": 0.1,
  1181. "_zoomScale": 0.8,
  1182. "_target": {
  1183. "__id__": 24
  1184. },
  1185. "_id": "80Ec02hNJIDK2ttLPPpqKX"
  1186. },
  1187. {
  1188. "__type__": "cc.Node",
  1189. "_name": "BtnMoveOut",
  1190. "_objFlags": 0,
  1191. "__editorExtras__": {},
  1192. "_parent": {
  1193. "__id__": 23
  1194. },
  1195. "_children": [],
  1196. "_active": true,
  1197. "_components": [
  1198. {
  1199. "__id__": 29
  1200. },
  1201. {
  1202. "__id__": 30
  1203. },
  1204. {
  1205. "__id__": 31
  1206. }
  1207. ],
  1208. "_prefab": null,
  1209. "_lpos": {
  1210. "__type__": "cc.Vec3",
  1211. "x": 0,
  1212. "y": 17.116,
  1213. "z": 0
  1214. },
  1215. "_lrot": {
  1216. "__type__": "cc.Quat",
  1217. "x": 0,
  1218. "y": 0,
  1219. "z": 0,
  1220. "w": 1
  1221. },
  1222. "_lscale": {
  1223. "__type__": "cc.Vec3",
  1224. "x": 0.6,
  1225. "y": 0.6,
  1226. "z": 1
  1227. },
  1228. "_mobility": 0,
  1229. "_layer": 33554432,
  1230. "_euler": {
  1231. "__type__": "cc.Vec3",
  1232. "x": 0,
  1233. "y": 0,
  1234. "z": 0
  1235. },
  1236. "_id": "e0jNGYbKJO2r3PBwBA9fU3"
  1237. },
  1238. {
  1239. "__type__": "cc.UITransform",
  1240. "_name": "",
  1241. "_objFlags": 0,
  1242. "__editorExtras__": {},
  1243. "node": {
  1244. "__id__": 28
  1245. },
  1246. "_enabled": true,
  1247. "__prefab": null,
  1248. "_contentSize": {
  1249. "__type__": "cc.Size",
  1250. "width": 275,
  1251. "height": 284
  1252. },
  1253. "_anchorPoint": {
  1254. "__type__": "cc.Vec2",
  1255. "x": 0.5,
  1256. "y": 0.5
  1257. },
  1258. "_id": "58ELTX0BRFvIZBUnwP/fGo"
  1259. },
  1260. {
  1261. "__type__": "cc.Sprite",
  1262. "_name": "",
  1263. "_objFlags": 0,
  1264. "__editorExtras__": {},
  1265. "node": {
  1266. "__id__": 28
  1267. },
  1268. "_enabled": true,
  1269. "__prefab": null,
  1270. "_customMaterial": null,
  1271. "_srcBlendFactor": 2,
  1272. "_dstBlendFactor": 4,
  1273. "_color": {
  1274. "__type__": "cc.Color",
  1275. "r": 255,
  1276. "g": 255,
  1277. "b": 255,
  1278. "a": 255
  1279. },
  1280. "_spriteFrame": {
  1281. "__uuid__": "75f21900-ea24-436d-889f-7d1c7dfa6afd@f9941",
  1282. "__expectedType__": "cc.SpriteFrame"
  1283. },
  1284. "_type": 1,
  1285. "_fillType": 0,
  1286. "_sizeMode": 2,
  1287. "_fillCenter": {
  1288. "__type__": "cc.Vec2",
  1289. "x": 0,
  1290. "y": 0
  1291. },
  1292. "_fillStart": 0,
  1293. "_fillRange": 0,
  1294. "_isTrimmedMode": true,
  1295. "_useGrayscale": false,
  1296. "_atlas": null,
  1297. "_id": "94ZYW4YrZJboWEShnsqC2T"
  1298. },
  1299. {
  1300. "__type__": "cc.Button",
  1301. "_name": "",
  1302. "_objFlags": 0,
  1303. "__editorExtras__": {},
  1304. "node": {
  1305. "__id__": 28
  1306. },
  1307. "_enabled": true,
  1308. "__prefab": null,
  1309. "clickEvents": [],
  1310. "_interactable": true,
  1311. "_transition": 3,
  1312. "_normalColor": {
  1313. "__type__": "cc.Color",
  1314. "r": 214,
  1315. "g": 214,
  1316. "b": 214,
  1317. "a": 255
  1318. },
  1319. "_hoverColor": {
  1320. "__type__": "cc.Color",
  1321. "r": 211,
  1322. "g": 211,
  1323. "b": 211,
  1324. "a": 255
  1325. },
  1326. "_pressedColor": {
  1327. "__type__": "cc.Color",
  1328. "r": 255,
  1329. "g": 255,
  1330. "b": 255,
  1331. "a": 255
  1332. },
  1333. "_disabledColor": {
  1334. "__type__": "cc.Color",
  1335. "r": 124,
  1336. "g": 124,
  1337. "b": 124,
  1338. "a": 255
  1339. },
  1340. "_normalSprite": null,
  1341. "_hoverSprite": null,
  1342. "_pressedSprite": null,
  1343. "_disabledSprite": null,
  1344. "_duration": 0.1,
  1345. "_zoomScale": 0.8,
  1346. "_target": {
  1347. "__id__": 28
  1348. },
  1349. "_id": "72dGD18ihEeIbP39P9J70f"
  1350. },
  1351. {
  1352. "__type__": "cc.Node",
  1353. "_name": "BtnRefresh",
  1354. "_objFlags": 0,
  1355. "__editorExtras__": {},
  1356. "_parent": {
  1357. "__id__": 23
  1358. },
  1359. "_children": [],
  1360. "_active": true,
  1361. "_components": [
  1362. {
  1363. "__id__": 33
  1364. },
  1365. {
  1366. "__id__": 34
  1367. },
  1368. {
  1369. "__id__": 35
  1370. }
  1371. ],
  1372. "_prefab": null,
  1373. "_lpos": {
  1374. "__type__": "cc.Vec3",
  1375. "x": 245,
  1376. "y": 17.116,
  1377. "z": 0
  1378. },
  1379. "_lrot": {
  1380. "__type__": "cc.Quat",
  1381. "x": 0,
  1382. "y": 0,
  1383. "z": 0,
  1384. "w": 1
  1385. },
  1386. "_lscale": {
  1387. "__type__": "cc.Vec3",
  1388. "x": 0.6,
  1389. "y": 0.6,
  1390. "z": 1
  1391. },
  1392. "_mobility": 0,
  1393. "_layer": 33554432,
  1394. "_euler": {
  1395. "__type__": "cc.Vec3",
  1396. "x": 0,
  1397. "y": 0,
  1398. "z": 0
  1399. },
  1400. "_id": "8exiv/U4xDrL+ZzRCFRKHv"
  1401. },
  1402. {
  1403. "__type__": "cc.UITransform",
  1404. "_name": "",
  1405. "_objFlags": 0,
  1406. "__editorExtras__": {},
  1407. "node": {
  1408. "__id__": 32
  1409. },
  1410. "_enabled": true,
  1411. "__prefab": null,
  1412. "_contentSize": {
  1413. "__type__": "cc.Size",
  1414. "width": 275,
  1415. "height": 284
  1416. },
  1417. "_anchorPoint": {
  1418. "__type__": "cc.Vec2",
  1419. "x": 0.5,
  1420. "y": 0.5
  1421. },
  1422. "_id": "76+0AICONEAo4azz7dKnsA"
  1423. },
  1424. {
  1425. "__type__": "cc.Sprite",
  1426. "_name": "",
  1427. "_objFlags": 0,
  1428. "__editorExtras__": {},
  1429. "node": {
  1430. "__id__": 32
  1431. },
  1432. "_enabled": true,
  1433. "__prefab": null,
  1434. "_customMaterial": null,
  1435. "_srcBlendFactor": 2,
  1436. "_dstBlendFactor": 4,
  1437. "_color": {
  1438. "__type__": "cc.Color",
  1439. "r": 255,
  1440. "g": 255,
  1441. "b": 255,
  1442. "a": 255
  1443. },
  1444. "_spriteFrame": {
  1445. "__uuid__": "a4a30c58-bbe4-4e4d-a5c5-c1dfe80103f9@f9941",
  1446. "__expectedType__": "cc.SpriteFrame"
  1447. },
  1448. "_type": 1,
  1449. "_fillType": 0,
  1450. "_sizeMode": 2,
  1451. "_fillCenter": {
  1452. "__type__": "cc.Vec2",
  1453. "x": 0,
  1454. "y": 0
  1455. },
  1456. "_fillStart": 0,
  1457. "_fillRange": 0,
  1458. "_isTrimmedMode": true,
  1459. "_useGrayscale": false,
  1460. "_atlas": null,
  1461. "_id": "0aAoUgHHZMaJm7j0wYPO/+"
  1462. },
  1463. {
  1464. "__type__": "cc.Button",
  1465. "_name": "",
  1466. "_objFlags": 0,
  1467. "__editorExtras__": {},
  1468. "node": {
  1469. "__id__": 32
  1470. },
  1471. "_enabled": true,
  1472. "__prefab": null,
  1473. "clickEvents": [],
  1474. "_interactable": true,
  1475. "_transition": 3,
  1476. "_normalColor": {
  1477. "__type__": "cc.Color",
  1478. "r": 214,
  1479. "g": 214,
  1480. "b": 214,
  1481. "a": 255
  1482. },
  1483. "_hoverColor": {
  1484. "__type__": "cc.Color",
  1485. "r": 211,
  1486. "g": 211,
  1487. "b": 211,
  1488. "a": 255
  1489. },
  1490. "_pressedColor": {
  1491. "__type__": "cc.Color",
  1492. "r": 255,
  1493. "g": 255,
  1494. "b": 255,
  1495. "a": 255
  1496. },
  1497. "_disabledColor": {
  1498. "__type__": "cc.Color",
  1499. "r": 124,
  1500. "g": 124,
  1501. "b": 124,
  1502. "a": 255
  1503. },
  1504. "_normalSprite": null,
  1505. "_hoverSprite": null,
  1506. "_pressedSprite": null,
  1507. "_disabledSprite": null,
  1508. "_duration": 0.1,
  1509. "_zoomScale": 0.8,
  1510. "_target": {
  1511. "__id__": 32
  1512. },
  1513. "_id": "08cHFDjw9B2LtDSZPexGLb"
  1514. },
  1515. {
  1516. "__type__": "cc.UITransform",
  1517. "_name": "",
  1518. "_objFlags": 0,
  1519. "__editorExtras__": {},
  1520. "node": {
  1521. "__id__": 23
  1522. },
  1523. "_enabled": true,
  1524. "__prefab": null,
  1525. "_contentSize": {
  1526. "__type__": "cc.Size",
  1527. "width": 765,
  1528. "height": 200
  1529. },
  1530. "_anchorPoint": {
  1531. "__type__": "cc.Vec2",
  1532. "x": 0.5,
  1533. "y": 0.5
  1534. },
  1535. "_id": "c3JjbhZlNHXpi3Pcdcz1/4"
  1536. },
  1537. {
  1538. "__type__": "cc.Widget",
  1539. "_name": "",
  1540. "_objFlags": 0,
  1541. "__editorExtras__": {},
  1542. "node": {
  1543. "__id__": 23
  1544. },
  1545. "_enabled": true,
  1546. "__prefab": null,
  1547. "_alignFlags": 44,
  1548. "_target": null,
  1549. "_left": -22.5,
  1550. "_right": -22.5,
  1551. "_top": 0,
  1552. "_bottom": 10,
  1553. "_horizontalCenter": 0,
  1554. "_verticalCenter": 0,
  1555. "_isAbsLeft": true,
  1556. "_isAbsRight": true,
  1557. "_isAbsTop": true,
  1558. "_isAbsBottom": true,
  1559. "_isAbsHorizontalCenter": true,
  1560. "_isAbsVerticalCenter": true,
  1561. "_originalWidth": 100,
  1562. "_originalHeight": 0,
  1563. "_alignMode": 2,
  1564. "_lockFlags": 0,
  1565. "_id": "14FKMQazBIqIgCLc8Thg2A"
  1566. },
  1567. {
  1568. "__type__": "cc.Layout",
  1569. "_name": "",
  1570. "_objFlags": 0,
  1571. "__editorExtras__": {},
  1572. "node": {
  1573. "__id__": 23
  1574. },
  1575. "_enabled": true,
  1576. "__prefab": null,
  1577. "_resizeMode": 1,
  1578. "_layoutType": 1,
  1579. "_cellSize": {
  1580. "__type__": "cc.Size",
  1581. "width": 40,
  1582. "height": 40
  1583. },
  1584. "_startAxis": 0,
  1585. "_paddingLeft": 0,
  1586. "_paddingRight": 0,
  1587. "_paddingTop": 0,
  1588. "_paddingBottom": 0,
  1589. "_spacingX": -30,
  1590. "_spacingY": 0,
  1591. "_verticalDirection": 1,
  1592. "_horizontalDirection": 0,
  1593. "_constraint": 0,
  1594. "_constraintNum": 2,
  1595. "_affectedByScale": false,
  1596. "_isAlign": false,
  1597. "_id": "e5lNKW+8REapy973XbOiDJ"
  1598. },
  1599. {
  1600. "__type__": "e06e2SlI+ZJtpHlZ9sR5XFm",
  1601. "_name": "",
  1602. "_objFlags": 0,
  1603. "__editorExtras__": {},
  1604. "node": {
  1605. "__id__": 23
  1606. },
  1607. "_enabled": true,
  1608. "__prefab": null,
  1609. "btnFillUp": {
  1610. "__id__": 27
  1611. },
  1612. "btMoveOut": {
  1613. "__id__": 31
  1614. },
  1615. "btRefresh": {
  1616. "__id__": 35
  1617. },
  1618. "_id": "c0Qmmo34pE/II8L7R2hCgt"
  1619. },
  1620. {
  1621. "__type__": "cc.Node",
  1622. "_name": "TopLeft",
  1623. "_objFlags": 0,
  1624. "__editorExtras__": {},
  1625. "_parent": {
  1626. "__id__": 22
  1627. },
  1628. "_children": [
  1629. {
  1630. "__id__": 41
  1631. },
  1632. {
  1633. "__id__": 45
  1634. }
  1635. ],
  1636. "_active": true,
  1637. "_components": [
  1638. {
  1639. "__id__": 49
  1640. },
  1641. {
  1642. "__id__": 50
  1643. }
  1644. ],
  1645. "_prefab": null,
  1646. "_lpos": {
  1647. "__type__": "cc.Vec3",
  1648. "x": -300,
  1649. "y": 648.935,
  1650. "z": 0
  1651. },
  1652. "_lrot": {
  1653. "__type__": "cc.Quat",
  1654. "x": 0,
  1655. "y": 0,
  1656. "z": 0,
  1657. "w": 1
  1658. },
  1659. "_lscale": {
  1660. "__type__": "cc.Vec3",
  1661. "x": 1,
  1662. "y": 1,
  1663. "z": 1
  1664. },
  1665. "_mobility": 0,
  1666. "_layer": 33554432,
  1667. "_euler": {
  1668. "__type__": "cc.Vec3",
  1669. "x": 0,
  1670. "y": 0,
  1671. "z": 0
  1672. },
  1673. "_id": "20CM524ddDALRdyBpymcE5"
  1674. },
  1675. {
  1676. "__type__": "cc.Node",
  1677. "_name": "BtnSet",
  1678. "_objFlags": 0,
  1679. "__editorExtras__": {},
  1680. "_parent": {
  1681. "__id__": 40
  1682. },
  1683. "_children": [],
  1684. "_active": true,
  1685. "_components": [
  1686. {
  1687. "__id__": 42
  1688. },
  1689. {
  1690. "__id__": 43
  1691. },
  1692. {
  1693. "__id__": 44
  1694. }
  1695. ],
  1696. "_prefab": null,
  1697. "_lpos": {
  1698. "__type__": "cc.Vec3",
  1699. "x": 0,
  1700. "y": 0,
  1701. "z": 0
  1702. },
  1703. "_lrot": {
  1704. "__type__": "cc.Quat",
  1705. "x": 0,
  1706. "y": 0,
  1707. "z": 0,
  1708. "w": 1
  1709. },
  1710. "_lscale": {
  1711. "__type__": "cc.Vec3",
  1712. "x": 1,
  1713. "y": 1,
  1714. "z": 1
  1715. },
  1716. "_mobility": 0,
  1717. "_layer": 33554432,
  1718. "_euler": {
  1719. "__type__": "cc.Vec3",
  1720. "x": 0,
  1721. "y": 0,
  1722. "z": 0
  1723. },
  1724. "_id": "b1mWWBgIZNWL+Dlq+d849C"
  1725. },
  1726. {
  1727. "__type__": "cc.UITransform",
  1728. "_name": "",
  1729. "_objFlags": 0,
  1730. "__editorExtras__": {},
  1731. "node": {
  1732. "__id__": 41
  1733. },
  1734. "_enabled": true,
  1735. "__prefab": null,
  1736. "_contentSize": {
  1737. "__type__": "cc.Size",
  1738. "width": 97,
  1739. "height": 94
  1740. },
  1741. "_anchorPoint": {
  1742. "__type__": "cc.Vec2",
  1743. "x": 0.5,
  1744. "y": 0.5
  1745. },
  1746. "_id": "6fXjO1oIxIqLBobYUHXhii"
  1747. },
  1748. {
  1749. "__type__": "cc.Sprite",
  1750. "_name": "",
  1751. "_objFlags": 0,
  1752. "__editorExtras__": {},
  1753. "node": {
  1754. "__id__": 41
  1755. },
  1756. "_enabled": true,
  1757. "__prefab": null,
  1758. "_customMaterial": null,
  1759. "_srcBlendFactor": 2,
  1760. "_dstBlendFactor": 4,
  1761. "_color": {
  1762. "__type__": "cc.Color",
  1763. "r": 255,
  1764. "g": 255,
  1765. "b": 255,
  1766. "a": 255
  1767. },
  1768. "_spriteFrame": {
  1769. "__uuid__": "f06fbab2-a58c-43e3-bb4d-d71441a30e40@f9941",
  1770. "__expectedType__": "cc.SpriteFrame"
  1771. },
  1772. "_type": 1,
  1773. "_fillType": 0,
  1774. "_sizeMode": 2,
  1775. "_fillCenter": {
  1776. "__type__": "cc.Vec2",
  1777. "x": 0,
  1778. "y": 0
  1779. },
  1780. "_fillStart": 0,
  1781. "_fillRange": 0,
  1782. "_isTrimmedMode": true,
  1783. "_useGrayscale": false,
  1784. "_atlas": null,
  1785. "_id": "02V5GGbpxD5rbioMe//nx8"
  1786. },
  1787. {
  1788. "__type__": "cc.Button",
  1789. "_name": "",
  1790. "_objFlags": 0,
  1791. "__editorExtras__": {},
  1792. "node": {
  1793. "__id__": 41
  1794. },
  1795. "_enabled": true,
  1796. "__prefab": null,
  1797. "clickEvents": [],
  1798. "_interactable": true,
  1799. "_transition": 3,
  1800. "_normalColor": {
  1801. "__type__": "cc.Color",
  1802. "r": 214,
  1803. "g": 214,
  1804. "b": 214,
  1805. "a": 255
  1806. },
  1807. "_hoverColor": {
  1808. "__type__": "cc.Color",
  1809. "r": 211,
  1810. "g": 211,
  1811. "b": 211,
  1812. "a": 255
  1813. },
  1814. "_pressedColor": {
  1815. "__type__": "cc.Color",
  1816. "r": 255,
  1817. "g": 255,
  1818. "b": 255,
  1819. "a": 255
  1820. },
  1821. "_disabledColor": {
  1822. "__type__": "cc.Color",
  1823. "r": 124,
  1824. "g": 124,
  1825. "b": 124,
  1826. "a": 255
  1827. },
  1828. "_normalSprite": null,
  1829. "_hoverSprite": null,
  1830. "_pressedSprite": null,
  1831. "_disabledSprite": null,
  1832. "_duration": 0.1,
  1833. "_zoomScale": 1.2,
  1834. "_target": {
  1835. "__id__": 41
  1836. },
  1837. "_id": "51Zwo4GTBBT7vNI+1Aij5E"
  1838. },
  1839. {
  1840. "__type__": "cc.Node",
  1841. "_name": "BtnRefresh",
  1842. "_objFlags": 0,
  1843. "__editorExtras__": {},
  1844. "_parent": {
  1845. "__id__": 40
  1846. },
  1847. "_children": [],
  1848. "_active": true,
  1849. "_components": [
  1850. {
  1851. "__id__": 46
  1852. },
  1853. {
  1854. "__id__": 47
  1855. },
  1856. {
  1857. "__id__": 48
  1858. }
  1859. ],
  1860. "_prefab": null,
  1861. "_lpos": {
  1862. "__type__": "cc.Vec3",
  1863. "x": 120,
  1864. "y": 0,
  1865. "z": 0
  1866. },
  1867. "_lrot": {
  1868. "__type__": "cc.Quat",
  1869. "x": 0,
  1870. "y": 0,
  1871. "z": 0,
  1872. "w": 1
  1873. },
  1874. "_lscale": {
  1875. "__type__": "cc.Vec3",
  1876. "x": 1,
  1877. "y": 1,
  1878. "z": 1
  1879. },
  1880. "_mobility": 0,
  1881. "_layer": 33554432,
  1882. "_euler": {
  1883. "__type__": "cc.Vec3",
  1884. "x": 0,
  1885. "y": 0,
  1886. "z": 0
  1887. },
  1888. "_id": "05+W1X7h9PfJ8HjUCxQnsN"
  1889. },
  1890. {
  1891. "__type__": "cc.UITransform",
  1892. "_name": "",
  1893. "_objFlags": 0,
  1894. "__editorExtras__": {},
  1895. "node": {
  1896. "__id__": 45
  1897. },
  1898. "_enabled": true,
  1899. "__prefab": null,
  1900. "_contentSize": {
  1901. "__type__": "cc.Size",
  1902. "width": 96,
  1903. "height": 94
  1904. },
  1905. "_anchorPoint": {
  1906. "__type__": "cc.Vec2",
  1907. "x": 0.5,
  1908. "y": 0.5
  1909. },
  1910. "_id": "4esomS6+FA2poBiVAQbVlK"
  1911. },
  1912. {
  1913. "__type__": "cc.Sprite",
  1914. "_name": "",
  1915. "_objFlags": 0,
  1916. "__editorExtras__": {},
  1917. "node": {
  1918. "__id__": 45
  1919. },
  1920. "_enabled": true,
  1921. "__prefab": null,
  1922. "_customMaterial": null,
  1923. "_srcBlendFactor": 2,
  1924. "_dstBlendFactor": 4,
  1925. "_color": {
  1926. "__type__": "cc.Color",
  1927. "r": 255,
  1928. "g": 255,
  1929. "b": 255,
  1930. "a": 255
  1931. },
  1932. "_spriteFrame": {
  1933. "__uuid__": "df590b07-c322-4c8c-af24-adfe2844b334@f9941",
  1934. "__expectedType__": "cc.SpriteFrame"
  1935. },
  1936. "_type": 1,
  1937. "_fillType": 0,
  1938. "_sizeMode": 2,
  1939. "_fillCenter": {
  1940. "__type__": "cc.Vec2",
  1941. "x": 0,
  1942. "y": 0
  1943. },
  1944. "_fillStart": 0,
  1945. "_fillRange": 0,
  1946. "_isTrimmedMode": true,
  1947. "_useGrayscale": false,
  1948. "_atlas": null,
  1949. "_id": "46A+1rH41LMoSr2AyWlR3M"
  1950. },
  1951. {
  1952. "__type__": "cc.Button",
  1953. "_name": "",
  1954. "_objFlags": 0,
  1955. "__editorExtras__": {},
  1956. "node": {
  1957. "__id__": 45
  1958. },
  1959. "_enabled": true,
  1960. "__prefab": null,
  1961. "clickEvents": [],
  1962. "_interactable": true,
  1963. "_transition": 3,
  1964. "_normalColor": {
  1965. "__type__": "cc.Color",
  1966. "r": 214,
  1967. "g": 214,
  1968. "b": 214,
  1969. "a": 255
  1970. },
  1971. "_hoverColor": {
  1972. "__type__": "cc.Color",
  1973. "r": 211,
  1974. "g": 211,
  1975. "b": 211,
  1976. "a": 255
  1977. },
  1978. "_pressedColor": {
  1979. "__type__": "cc.Color",
  1980. "r": 255,
  1981. "g": 255,
  1982. "b": 255,
  1983. "a": 255
  1984. },
  1985. "_disabledColor": {
  1986. "__type__": "cc.Color",
  1987. "r": 124,
  1988. "g": 124,
  1989. "b": 124,
  1990. "a": 255
  1991. },
  1992. "_normalSprite": null,
  1993. "_hoverSprite": null,
  1994. "_pressedSprite": null,
  1995. "_disabledSprite": null,
  1996. "_duration": 0.1,
  1997. "_zoomScale": 1.2,
  1998. "_target": {
  1999. "__id__": 45
  2000. },
  2001. "_id": "ec3qEoJHVABoxGd3CvrvsV"
  2002. },
  2003. {
  2004. "__type__": "cc.UITransform",
  2005. "_name": "",
  2006. "_objFlags": 0,
  2007. "__editorExtras__": {},
  2008. "node": {
  2009. "__id__": 40
  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__": 40
  2032. },
  2033. "_enabled": true,
  2034. "__prefab": null,
  2035. "_alignFlags": 9,
  2036. "_target": null,
  2037. "_left": 10,
  2038. "_right": 0,
  2039. "_top": -58.934999999999945,
  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__": 22
  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__": 22
  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__": 22
  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__": 22
  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. ]