rooster_takegoblet.scene 67 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711
  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__": 91
  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__": 92
  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__": 85
  84. }
  85. ],
  86. "_active": true,
  87. "_components": [
  88. {
  89. "__id__": 87
  90. },
  91. {
  92. "__id__": 88
  93. },
  94. {
  95. "__id__": 89
  96. },
  97. {
  98. "__id__": 90
  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": 0,
  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": 718.75,
  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. "__id__": 60
  921. }
  922. ],
  923. "_active": true,
  924. "_components": [
  925. {
  926. "__id__": 83
  927. },
  928. {
  929. "__id__": 84
  930. }
  931. ],
  932. "_prefab": null,
  933. "_lpos": {
  934. "__type__": "cc.Vec3",
  935. "x": 0,
  936. "y": 0,
  937. "z": 0
  938. },
  939. "_lrot": {
  940. "__type__": "cc.Quat",
  941. "x": 0,
  942. "y": 0,
  943. "z": 0,
  944. "w": 1
  945. },
  946. "_lscale": {
  947. "__type__": "cc.Vec3",
  948. "x": 1,
  949. "y": 1,
  950. "z": 1
  951. },
  952. "_mobility": 0,
  953. "_layer": 33554432,
  954. "_euler": {
  955. "__type__": "cc.Vec3",
  956. "x": 0,
  957. "y": 0,
  958. "z": 0
  959. },
  960. "_id": "58MeD8Ml5Fz48qBGKRvffz"
  961. },
  962. {
  963. "__type__": "cc.Node",
  964. "_name": "BottomBtns",
  965. "_objFlags": 0,
  966. "__editorExtras__": {},
  967. "_parent": {
  968. "__id__": 22
  969. },
  970. "_children": [
  971. {
  972. "__id__": 24
  973. },
  974. {
  975. "__id__": 28
  976. },
  977. {
  978. "__id__": 32
  979. }
  980. ],
  981. "_active": true,
  982. "_components": [
  983. {
  984. "__id__": 36
  985. },
  986. {
  987. "__id__": 37
  988. },
  989. {
  990. "__id__": 38
  991. },
  992. {
  993. "__id__": 39
  994. }
  995. ],
  996. "_prefab": null,
  997. "_lpos": {
  998. "__type__": "cc.Vec3",
  999. "x": 0,
  1000. "y": -530,
  1001. "z": 0
  1002. },
  1003. "_lrot": {
  1004. "__type__": "cc.Quat",
  1005. "x": 0,
  1006. "y": 0,
  1007. "z": 0,
  1008. "w": 1
  1009. },
  1010. "_lscale": {
  1011. "__type__": "cc.Vec3",
  1012. "x": 1,
  1013. "y": 1,
  1014. "z": 1
  1015. },
  1016. "_mobility": 0,
  1017. "_layer": 33554432,
  1018. "_euler": {
  1019. "__type__": "cc.Vec3",
  1020. "x": 0,
  1021. "y": 0,
  1022. "z": 0
  1023. },
  1024. "_id": "7aJPiCjCdIT51G0EeVP/Js"
  1025. },
  1026. {
  1027. "__type__": "cc.Node",
  1028. "_name": "BtnFillUp",
  1029. "_objFlags": 0,
  1030. "__editorExtras__": {},
  1031. "_parent": {
  1032. "__id__": 23
  1033. },
  1034. "_children": [],
  1035. "_active": true,
  1036. "_components": [
  1037. {
  1038. "__id__": 25
  1039. },
  1040. {
  1041. "__id__": 26
  1042. },
  1043. {
  1044. "__id__": 27
  1045. }
  1046. ],
  1047. "_prefab": null,
  1048. "_lpos": {
  1049. "__type__": "cc.Vec3",
  1050. "x": -245,
  1051. "y": 17.116,
  1052. "z": 0
  1053. },
  1054. "_lrot": {
  1055. "__type__": "cc.Quat",
  1056. "x": 0,
  1057. "y": 0,
  1058. "z": 0,
  1059. "w": 1
  1060. },
  1061. "_lscale": {
  1062. "__type__": "cc.Vec3",
  1063. "x": 0.6,
  1064. "y": 0.6,
  1065. "z": 1
  1066. },
  1067. "_mobility": 0,
  1068. "_layer": 33554432,
  1069. "_euler": {
  1070. "__type__": "cc.Vec3",
  1071. "x": 0,
  1072. "y": 0,
  1073. "z": 0
  1074. },
  1075. "_id": "6cYE3Zt7NHT5w1Z5KL21Ik"
  1076. },
  1077. {
  1078. "__type__": "cc.UITransform",
  1079. "_name": "",
  1080. "_objFlags": 0,
  1081. "__editorExtras__": {},
  1082. "node": {
  1083. "__id__": 24
  1084. },
  1085. "_enabled": true,
  1086. "__prefab": null,
  1087. "_contentSize": {
  1088. "__type__": "cc.Size",
  1089. "width": 275,
  1090. "height": 293
  1091. },
  1092. "_anchorPoint": {
  1093. "__type__": "cc.Vec2",
  1094. "x": 0.5,
  1095. "y": 0.5
  1096. },
  1097. "_id": "7fisGv4iROTL5CNe2MHw9h"
  1098. },
  1099. {
  1100. "__type__": "cc.Sprite",
  1101. "_name": "",
  1102. "_objFlags": 0,
  1103. "__editorExtras__": {},
  1104. "node": {
  1105. "__id__": 24
  1106. },
  1107. "_enabled": true,
  1108. "__prefab": null,
  1109. "_customMaterial": null,
  1110. "_srcBlendFactor": 2,
  1111. "_dstBlendFactor": 4,
  1112. "_color": {
  1113. "__type__": "cc.Color",
  1114. "r": 255,
  1115. "g": 255,
  1116. "b": 255,
  1117. "a": 255
  1118. },
  1119. "_spriteFrame": {
  1120. "__uuid__": "5a7d4425-b50a-43be-9038-cd80bab024f7@f9941",
  1121. "__expectedType__": "cc.SpriteFrame"
  1122. },
  1123. "_type": 1,
  1124. "_fillType": 0,
  1125. "_sizeMode": 2,
  1126. "_fillCenter": {
  1127. "__type__": "cc.Vec2",
  1128. "x": 0,
  1129. "y": 0
  1130. },
  1131. "_fillStart": 0,
  1132. "_fillRange": 0,
  1133. "_isTrimmedMode": true,
  1134. "_useGrayscale": false,
  1135. "_atlas": null,
  1136. "_id": "8cqibgpa5DIa7z7f6rFKMk"
  1137. },
  1138. {
  1139. "__type__": "cc.Button",
  1140. "_name": "",
  1141. "_objFlags": 0,
  1142. "__editorExtras__": {},
  1143. "node": {
  1144. "__id__": 24
  1145. },
  1146. "_enabled": true,
  1147. "__prefab": null,
  1148. "clickEvents": [],
  1149. "_interactable": true,
  1150. "_transition": 3,
  1151. "_normalColor": {
  1152. "__type__": "cc.Color",
  1153. "r": 214,
  1154. "g": 214,
  1155. "b": 214,
  1156. "a": 255
  1157. },
  1158. "_hoverColor": {
  1159. "__type__": "cc.Color",
  1160. "r": 211,
  1161. "g": 211,
  1162. "b": 211,
  1163. "a": 255
  1164. },
  1165. "_pressedColor": {
  1166. "__type__": "cc.Color",
  1167. "r": 255,
  1168. "g": 255,
  1169. "b": 255,
  1170. "a": 255
  1171. },
  1172. "_disabledColor": {
  1173. "__type__": "cc.Color",
  1174. "r": 124,
  1175. "g": 124,
  1176. "b": 124,
  1177. "a": 255
  1178. },
  1179. "_normalSprite": null,
  1180. "_hoverSprite": null,
  1181. "_pressedSprite": null,
  1182. "_disabledSprite": null,
  1183. "_duration": 0.1,
  1184. "_zoomScale": 0.8,
  1185. "_target": {
  1186. "__id__": 24
  1187. },
  1188. "_id": "80Ec02hNJIDK2ttLPPpqKX"
  1189. },
  1190. {
  1191. "__type__": "cc.Node",
  1192. "_name": "BtnMoveOut",
  1193. "_objFlags": 0,
  1194. "__editorExtras__": {},
  1195. "_parent": {
  1196. "__id__": 23
  1197. },
  1198. "_children": [],
  1199. "_active": true,
  1200. "_components": [
  1201. {
  1202. "__id__": 29
  1203. },
  1204. {
  1205. "__id__": 30
  1206. },
  1207. {
  1208. "__id__": 31
  1209. }
  1210. ],
  1211. "_prefab": null,
  1212. "_lpos": {
  1213. "__type__": "cc.Vec3",
  1214. "x": 0,
  1215. "y": 17.116,
  1216. "z": 0
  1217. },
  1218. "_lrot": {
  1219. "__type__": "cc.Quat",
  1220. "x": 0,
  1221. "y": 0,
  1222. "z": 0,
  1223. "w": 1
  1224. },
  1225. "_lscale": {
  1226. "__type__": "cc.Vec3",
  1227. "x": 0.6,
  1228. "y": 0.6,
  1229. "z": 1
  1230. },
  1231. "_mobility": 0,
  1232. "_layer": 33554432,
  1233. "_euler": {
  1234. "__type__": "cc.Vec3",
  1235. "x": 0,
  1236. "y": 0,
  1237. "z": 0
  1238. },
  1239. "_id": "e0jNGYbKJO2r3PBwBA9fU3"
  1240. },
  1241. {
  1242. "__type__": "cc.UITransform",
  1243. "_name": "",
  1244. "_objFlags": 0,
  1245. "__editorExtras__": {},
  1246. "node": {
  1247. "__id__": 28
  1248. },
  1249. "_enabled": true,
  1250. "__prefab": null,
  1251. "_contentSize": {
  1252. "__type__": "cc.Size",
  1253. "width": 275,
  1254. "height": 284
  1255. },
  1256. "_anchorPoint": {
  1257. "__type__": "cc.Vec2",
  1258. "x": 0.5,
  1259. "y": 0.5
  1260. },
  1261. "_id": "58ELTX0BRFvIZBUnwP/fGo"
  1262. },
  1263. {
  1264. "__type__": "cc.Sprite",
  1265. "_name": "",
  1266. "_objFlags": 0,
  1267. "__editorExtras__": {},
  1268. "node": {
  1269. "__id__": 28
  1270. },
  1271. "_enabled": true,
  1272. "__prefab": null,
  1273. "_customMaterial": null,
  1274. "_srcBlendFactor": 2,
  1275. "_dstBlendFactor": 4,
  1276. "_color": {
  1277. "__type__": "cc.Color",
  1278. "r": 255,
  1279. "g": 255,
  1280. "b": 255,
  1281. "a": 255
  1282. },
  1283. "_spriteFrame": {
  1284. "__uuid__": "75f21900-ea24-436d-889f-7d1c7dfa6afd@f9941",
  1285. "__expectedType__": "cc.SpriteFrame"
  1286. },
  1287. "_type": 1,
  1288. "_fillType": 0,
  1289. "_sizeMode": 2,
  1290. "_fillCenter": {
  1291. "__type__": "cc.Vec2",
  1292. "x": 0,
  1293. "y": 0
  1294. },
  1295. "_fillStart": 0,
  1296. "_fillRange": 0,
  1297. "_isTrimmedMode": true,
  1298. "_useGrayscale": false,
  1299. "_atlas": null,
  1300. "_id": "94ZYW4YrZJboWEShnsqC2T"
  1301. },
  1302. {
  1303. "__type__": "cc.Button",
  1304. "_name": "",
  1305. "_objFlags": 0,
  1306. "__editorExtras__": {},
  1307. "node": {
  1308. "__id__": 28
  1309. },
  1310. "_enabled": true,
  1311. "__prefab": null,
  1312. "clickEvents": [],
  1313. "_interactable": true,
  1314. "_transition": 3,
  1315. "_normalColor": {
  1316. "__type__": "cc.Color",
  1317. "r": 214,
  1318. "g": 214,
  1319. "b": 214,
  1320. "a": 255
  1321. },
  1322. "_hoverColor": {
  1323. "__type__": "cc.Color",
  1324. "r": 211,
  1325. "g": 211,
  1326. "b": 211,
  1327. "a": 255
  1328. },
  1329. "_pressedColor": {
  1330. "__type__": "cc.Color",
  1331. "r": 255,
  1332. "g": 255,
  1333. "b": 255,
  1334. "a": 255
  1335. },
  1336. "_disabledColor": {
  1337. "__type__": "cc.Color",
  1338. "r": 124,
  1339. "g": 124,
  1340. "b": 124,
  1341. "a": 255
  1342. },
  1343. "_normalSprite": null,
  1344. "_hoverSprite": null,
  1345. "_pressedSprite": null,
  1346. "_disabledSprite": null,
  1347. "_duration": 0.1,
  1348. "_zoomScale": 0.8,
  1349. "_target": {
  1350. "__id__": 28
  1351. },
  1352. "_id": "72dGD18ihEeIbP39P9J70f"
  1353. },
  1354. {
  1355. "__type__": "cc.Node",
  1356. "_name": "BtnRefresh",
  1357. "_objFlags": 0,
  1358. "__editorExtras__": {},
  1359. "_parent": {
  1360. "__id__": 23
  1361. },
  1362. "_children": [],
  1363. "_active": true,
  1364. "_components": [
  1365. {
  1366. "__id__": 33
  1367. },
  1368. {
  1369. "__id__": 34
  1370. },
  1371. {
  1372. "__id__": 35
  1373. }
  1374. ],
  1375. "_prefab": null,
  1376. "_lpos": {
  1377. "__type__": "cc.Vec3",
  1378. "x": 245,
  1379. "y": 17.116,
  1380. "z": 0
  1381. },
  1382. "_lrot": {
  1383. "__type__": "cc.Quat",
  1384. "x": 0,
  1385. "y": 0,
  1386. "z": 0,
  1387. "w": 1
  1388. },
  1389. "_lscale": {
  1390. "__type__": "cc.Vec3",
  1391. "x": 0.6,
  1392. "y": 0.6,
  1393. "z": 1
  1394. },
  1395. "_mobility": 0,
  1396. "_layer": 33554432,
  1397. "_euler": {
  1398. "__type__": "cc.Vec3",
  1399. "x": 0,
  1400. "y": 0,
  1401. "z": 0
  1402. },
  1403. "_id": "8exiv/U4xDrL+ZzRCFRKHv"
  1404. },
  1405. {
  1406. "__type__": "cc.UITransform",
  1407. "_name": "",
  1408. "_objFlags": 0,
  1409. "__editorExtras__": {},
  1410. "node": {
  1411. "__id__": 32
  1412. },
  1413. "_enabled": true,
  1414. "__prefab": null,
  1415. "_contentSize": {
  1416. "__type__": "cc.Size",
  1417. "width": 275,
  1418. "height": 284
  1419. },
  1420. "_anchorPoint": {
  1421. "__type__": "cc.Vec2",
  1422. "x": 0.5,
  1423. "y": 0.5
  1424. },
  1425. "_id": "76+0AICONEAo4azz7dKnsA"
  1426. },
  1427. {
  1428. "__type__": "cc.Sprite",
  1429. "_name": "",
  1430. "_objFlags": 0,
  1431. "__editorExtras__": {},
  1432. "node": {
  1433. "__id__": 32
  1434. },
  1435. "_enabled": true,
  1436. "__prefab": null,
  1437. "_customMaterial": null,
  1438. "_srcBlendFactor": 2,
  1439. "_dstBlendFactor": 4,
  1440. "_color": {
  1441. "__type__": "cc.Color",
  1442. "r": 255,
  1443. "g": 255,
  1444. "b": 255,
  1445. "a": 255
  1446. },
  1447. "_spriteFrame": {
  1448. "__uuid__": "a4a30c58-bbe4-4e4d-a5c5-c1dfe80103f9@f9941",
  1449. "__expectedType__": "cc.SpriteFrame"
  1450. },
  1451. "_type": 1,
  1452. "_fillType": 0,
  1453. "_sizeMode": 2,
  1454. "_fillCenter": {
  1455. "__type__": "cc.Vec2",
  1456. "x": 0,
  1457. "y": 0
  1458. },
  1459. "_fillStart": 0,
  1460. "_fillRange": 0,
  1461. "_isTrimmedMode": true,
  1462. "_useGrayscale": false,
  1463. "_atlas": null,
  1464. "_id": "0aAoUgHHZMaJm7j0wYPO/+"
  1465. },
  1466. {
  1467. "__type__": "cc.Button",
  1468. "_name": "",
  1469. "_objFlags": 0,
  1470. "__editorExtras__": {},
  1471. "node": {
  1472. "__id__": 32
  1473. },
  1474. "_enabled": true,
  1475. "__prefab": null,
  1476. "clickEvents": [],
  1477. "_interactable": true,
  1478. "_transition": 3,
  1479. "_normalColor": {
  1480. "__type__": "cc.Color",
  1481. "r": 214,
  1482. "g": 214,
  1483. "b": 214,
  1484. "a": 255
  1485. },
  1486. "_hoverColor": {
  1487. "__type__": "cc.Color",
  1488. "r": 211,
  1489. "g": 211,
  1490. "b": 211,
  1491. "a": 255
  1492. },
  1493. "_pressedColor": {
  1494. "__type__": "cc.Color",
  1495. "r": 255,
  1496. "g": 255,
  1497. "b": 255,
  1498. "a": 255
  1499. },
  1500. "_disabledColor": {
  1501. "__type__": "cc.Color",
  1502. "r": 124,
  1503. "g": 124,
  1504. "b": 124,
  1505. "a": 255
  1506. },
  1507. "_normalSprite": null,
  1508. "_hoverSprite": null,
  1509. "_pressedSprite": null,
  1510. "_disabledSprite": null,
  1511. "_duration": 0.1,
  1512. "_zoomScale": 0.8,
  1513. "_target": {
  1514. "__id__": 32
  1515. },
  1516. "_id": "08cHFDjw9B2LtDSZPexGLb"
  1517. },
  1518. {
  1519. "__type__": "cc.UITransform",
  1520. "_name": "",
  1521. "_objFlags": 0,
  1522. "__editorExtras__": {},
  1523. "node": {
  1524. "__id__": 23
  1525. },
  1526. "_enabled": true,
  1527. "__prefab": null,
  1528. "_contentSize": {
  1529. "__type__": "cc.Size",
  1530. "width": 765,
  1531. "height": 200
  1532. },
  1533. "_anchorPoint": {
  1534. "__type__": "cc.Vec2",
  1535. "x": 0.5,
  1536. "y": 0.5
  1537. },
  1538. "_id": "c3JjbhZlNHXpi3Pcdcz1/4"
  1539. },
  1540. {
  1541. "__type__": "cc.Widget",
  1542. "_name": "",
  1543. "_objFlags": 0,
  1544. "__editorExtras__": {},
  1545. "node": {
  1546. "__id__": 23
  1547. },
  1548. "_enabled": true,
  1549. "__prefab": null,
  1550. "_alignFlags": 44,
  1551. "_target": null,
  1552. "_left": -22.5,
  1553. "_right": -22.5,
  1554. "_top": 0,
  1555. "_bottom": 10,
  1556. "_horizontalCenter": 0,
  1557. "_verticalCenter": 0,
  1558. "_isAbsLeft": true,
  1559. "_isAbsRight": true,
  1560. "_isAbsTop": true,
  1561. "_isAbsBottom": true,
  1562. "_isAbsHorizontalCenter": true,
  1563. "_isAbsVerticalCenter": true,
  1564. "_originalWidth": 100,
  1565. "_originalHeight": 0,
  1566. "_alignMode": 2,
  1567. "_lockFlags": 0,
  1568. "_id": "14FKMQazBIqIgCLc8Thg2A"
  1569. },
  1570. {
  1571. "__type__": "cc.Layout",
  1572. "_name": "",
  1573. "_objFlags": 0,
  1574. "__editorExtras__": {},
  1575. "node": {
  1576. "__id__": 23
  1577. },
  1578. "_enabled": true,
  1579. "__prefab": null,
  1580. "_resizeMode": 1,
  1581. "_layoutType": 1,
  1582. "_cellSize": {
  1583. "__type__": "cc.Size",
  1584. "width": 40,
  1585. "height": 40
  1586. },
  1587. "_startAxis": 0,
  1588. "_paddingLeft": 0,
  1589. "_paddingRight": 0,
  1590. "_paddingTop": 0,
  1591. "_paddingBottom": 0,
  1592. "_spacingX": -30,
  1593. "_spacingY": 0,
  1594. "_verticalDirection": 1,
  1595. "_horizontalDirection": 0,
  1596. "_constraint": 0,
  1597. "_constraintNum": 2,
  1598. "_affectedByScale": false,
  1599. "_isAlign": false,
  1600. "_id": "e5lNKW+8REapy973XbOiDJ"
  1601. },
  1602. {
  1603. "__type__": "e06e2SlI+ZJtpHlZ9sR5XFm",
  1604. "_name": "",
  1605. "_objFlags": 0,
  1606. "__editorExtras__": {},
  1607. "node": {
  1608. "__id__": 23
  1609. },
  1610. "_enabled": true,
  1611. "__prefab": null,
  1612. "btnFillUp": {
  1613. "__id__": 27
  1614. },
  1615. "btMoveOut": {
  1616. "__id__": 31
  1617. },
  1618. "btRefresh": {
  1619. "__id__": 35
  1620. },
  1621. "_id": "c0Qmmo34pE/II8L7R2hCgt"
  1622. },
  1623. {
  1624. "__type__": "cc.Node",
  1625. "_name": "TopLeft",
  1626. "_objFlags": 0,
  1627. "__editorExtras__": {},
  1628. "_parent": {
  1629. "__id__": 22
  1630. },
  1631. "_children": [
  1632. {
  1633. "__id__": 41
  1634. },
  1635. {
  1636. "__id__": 45
  1637. }
  1638. ],
  1639. "_active": true,
  1640. "_components": [
  1641. {
  1642. "__id__": 49
  1643. },
  1644. {
  1645. "__id__": 50
  1646. }
  1647. ],
  1648. "_prefab": null,
  1649. "_lpos": {
  1650. "__type__": "cc.Vec3",
  1651. "x": -300,
  1652. "y": 580,
  1653. "z": 0
  1654. },
  1655. "_lrot": {
  1656. "__type__": "cc.Quat",
  1657. "x": 0,
  1658. "y": 0,
  1659. "z": 0,
  1660. "w": 1
  1661. },
  1662. "_lscale": {
  1663. "__type__": "cc.Vec3",
  1664. "x": 1,
  1665. "y": 1,
  1666. "z": 1
  1667. },
  1668. "_mobility": 0,
  1669. "_layer": 33554432,
  1670. "_euler": {
  1671. "__type__": "cc.Vec3",
  1672. "x": 0,
  1673. "y": 0,
  1674. "z": 0
  1675. },
  1676. "_id": "20CM524ddDALRdyBpymcE5"
  1677. },
  1678. {
  1679. "__type__": "cc.Node",
  1680. "_name": "BtnSet",
  1681. "_objFlags": 0,
  1682. "__editorExtras__": {},
  1683. "_parent": {
  1684. "__id__": 40
  1685. },
  1686. "_children": [],
  1687. "_active": true,
  1688. "_components": [
  1689. {
  1690. "__id__": 42
  1691. },
  1692. {
  1693. "__id__": 43
  1694. },
  1695. {
  1696. "__id__": 44
  1697. }
  1698. ],
  1699. "_prefab": null,
  1700. "_lpos": {
  1701. "__type__": "cc.Vec3",
  1702. "x": 0,
  1703. "y": 0,
  1704. "z": 0
  1705. },
  1706. "_lrot": {
  1707. "__type__": "cc.Quat",
  1708. "x": 0,
  1709. "y": 0,
  1710. "z": 0,
  1711. "w": 1
  1712. },
  1713. "_lscale": {
  1714. "__type__": "cc.Vec3",
  1715. "x": 1,
  1716. "y": 1,
  1717. "z": 1
  1718. },
  1719. "_mobility": 0,
  1720. "_layer": 33554432,
  1721. "_euler": {
  1722. "__type__": "cc.Vec3",
  1723. "x": 0,
  1724. "y": 0,
  1725. "z": 0
  1726. },
  1727. "_id": "b1mWWBgIZNWL+Dlq+d849C"
  1728. },
  1729. {
  1730. "__type__": "cc.UITransform",
  1731. "_name": "",
  1732. "_objFlags": 0,
  1733. "__editorExtras__": {},
  1734. "node": {
  1735. "__id__": 41
  1736. },
  1737. "_enabled": true,
  1738. "__prefab": null,
  1739. "_contentSize": {
  1740. "__type__": "cc.Size",
  1741. "width": 97,
  1742. "height": 94
  1743. },
  1744. "_anchorPoint": {
  1745. "__type__": "cc.Vec2",
  1746. "x": 0.5,
  1747. "y": 0.5
  1748. },
  1749. "_id": "6fXjO1oIxIqLBobYUHXhii"
  1750. },
  1751. {
  1752. "__type__": "cc.Sprite",
  1753. "_name": "",
  1754. "_objFlags": 0,
  1755. "__editorExtras__": {},
  1756. "node": {
  1757. "__id__": 41
  1758. },
  1759. "_enabled": true,
  1760. "__prefab": null,
  1761. "_customMaterial": null,
  1762. "_srcBlendFactor": 2,
  1763. "_dstBlendFactor": 4,
  1764. "_color": {
  1765. "__type__": "cc.Color",
  1766. "r": 255,
  1767. "g": 255,
  1768. "b": 255,
  1769. "a": 255
  1770. },
  1771. "_spriteFrame": {
  1772. "__uuid__": "f06fbab2-a58c-43e3-bb4d-d71441a30e40@f9941",
  1773. "__expectedType__": "cc.SpriteFrame"
  1774. },
  1775. "_type": 1,
  1776. "_fillType": 0,
  1777. "_sizeMode": 2,
  1778. "_fillCenter": {
  1779. "__type__": "cc.Vec2",
  1780. "x": 0,
  1781. "y": 0
  1782. },
  1783. "_fillStart": 0,
  1784. "_fillRange": 0,
  1785. "_isTrimmedMode": true,
  1786. "_useGrayscale": false,
  1787. "_atlas": null,
  1788. "_id": "02V5GGbpxD5rbioMe//nx8"
  1789. },
  1790. {
  1791. "__type__": "cc.Button",
  1792. "_name": "",
  1793. "_objFlags": 0,
  1794. "__editorExtras__": {},
  1795. "node": {
  1796. "__id__": 41
  1797. },
  1798. "_enabled": true,
  1799. "__prefab": null,
  1800. "clickEvents": [],
  1801. "_interactable": true,
  1802. "_transition": 3,
  1803. "_normalColor": {
  1804. "__type__": "cc.Color",
  1805. "r": 214,
  1806. "g": 214,
  1807. "b": 214,
  1808. "a": 255
  1809. },
  1810. "_hoverColor": {
  1811. "__type__": "cc.Color",
  1812. "r": 211,
  1813. "g": 211,
  1814. "b": 211,
  1815. "a": 255
  1816. },
  1817. "_pressedColor": {
  1818. "__type__": "cc.Color",
  1819. "r": 255,
  1820. "g": 255,
  1821. "b": 255,
  1822. "a": 255
  1823. },
  1824. "_disabledColor": {
  1825. "__type__": "cc.Color",
  1826. "r": 124,
  1827. "g": 124,
  1828. "b": 124,
  1829. "a": 255
  1830. },
  1831. "_normalSprite": null,
  1832. "_hoverSprite": null,
  1833. "_pressedSprite": null,
  1834. "_disabledSprite": null,
  1835. "_duration": 0.1,
  1836. "_zoomScale": 1.2,
  1837. "_target": {
  1838. "__id__": 41
  1839. },
  1840. "_id": "51Zwo4GTBBT7vNI+1Aij5E"
  1841. },
  1842. {
  1843. "__type__": "cc.Node",
  1844. "_name": "BtnRefresh",
  1845. "_objFlags": 0,
  1846. "__editorExtras__": {},
  1847. "_parent": {
  1848. "__id__": 40
  1849. },
  1850. "_children": [],
  1851. "_active": false,
  1852. "_components": [
  1853. {
  1854. "__id__": 46
  1855. },
  1856. {
  1857. "__id__": 47
  1858. },
  1859. {
  1860. "__id__": 48
  1861. }
  1862. ],
  1863. "_prefab": null,
  1864. "_lpos": {
  1865. "__type__": "cc.Vec3",
  1866. "x": 120,
  1867. "y": 0,
  1868. "z": 0
  1869. },
  1870. "_lrot": {
  1871. "__type__": "cc.Quat",
  1872. "x": 0,
  1873. "y": 0,
  1874. "z": 0,
  1875. "w": 1
  1876. },
  1877. "_lscale": {
  1878. "__type__": "cc.Vec3",
  1879. "x": 1,
  1880. "y": 1,
  1881. "z": 1
  1882. },
  1883. "_mobility": 0,
  1884. "_layer": 33554432,
  1885. "_euler": {
  1886. "__type__": "cc.Vec3",
  1887. "x": 0,
  1888. "y": 0,
  1889. "z": 0
  1890. },
  1891. "_id": "05+W1X7h9PfJ8HjUCxQnsN"
  1892. },
  1893. {
  1894. "__type__": "cc.UITransform",
  1895. "_name": "",
  1896. "_objFlags": 0,
  1897. "__editorExtras__": {},
  1898. "node": {
  1899. "__id__": 45
  1900. },
  1901. "_enabled": true,
  1902. "__prefab": null,
  1903. "_contentSize": {
  1904. "__type__": "cc.Size",
  1905. "width": 96,
  1906. "height": 94
  1907. },
  1908. "_anchorPoint": {
  1909. "__type__": "cc.Vec2",
  1910. "x": 0.5,
  1911. "y": 0.5
  1912. },
  1913. "_id": "4esomS6+FA2poBiVAQbVlK"
  1914. },
  1915. {
  1916. "__type__": "cc.Sprite",
  1917. "_name": "",
  1918. "_objFlags": 0,
  1919. "__editorExtras__": {},
  1920. "node": {
  1921. "__id__": 45
  1922. },
  1923. "_enabled": true,
  1924. "__prefab": null,
  1925. "_customMaterial": null,
  1926. "_srcBlendFactor": 2,
  1927. "_dstBlendFactor": 4,
  1928. "_color": {
  1929. "__type__": "cc.Color",
  1930. "r": 255,
  1931. "g": 255,
  1932. "b": 255,
  1933. "a": 255
  1934. },
  1935. "_spriteFrame": {
  1936. "__uuid__": "df590b07-c322-4c8c-af24-adfe2844b334@f9941",
  1937. "__expectedType__": "cc.SpriteFrame"
  1938. },
  1939. "_type": 1,
  1940. "_fillType": 0,
  1941. "_sizeMode": 2,
  1942. "_fillCenter": {
  1943. "__type__": "cc.Vec2",
  1944. "x": 0,
  1945. "y": 0
  1946. },
  1947. "_fillStart": 0,
  1948. "_fillRange": 0,
  1949. "_isTrimmedMode": true,
  1950. "_useGrayscale": false,
  1951. "_atlas": null,
  1952. "_id": "46A+1rH41LMoSr2AyWlR3M"
  1953. },
  1954. {
  1955. "__type__": "cc.Button",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "__editorExtras__": {},
  1959. "node": {
  1960. "__id__": 45
  1961. },
  1962. "_enabled": true,
  1963. "__prefab": null,
  1964. "clickEvents": [],
  1965. "_interactable": true,
  1966. "_transition": 3,
  1967. "_normalColor": {
  1968. "__type__": "cc.Color",
  1969. "r": 214,
  1970. "g": 214,
  1971. "b": 214,
  1972. "a": 255
  1973. },
  1974. "_hoverColor": {
  1975. "__type__": "cc.Color",
  1976. "r": 211,
  1977. "g": 211,
  1978. "b": 211,
  1979. "a": 255
  1980. },
  1981. "_pressedColor": {
  1982. "__type__": "cc.Color",
  1983. "r": 255,
  1984. "g": 255,
  1985. "b": 255,
  1986. "a": 255
  1987. },
  1988. "_disabledColor": {
  1989. "__type__": "cc.Color",
  1990. "r": 124,
  1991. "g": 124,
  1992. "b": 124,
  1993. "a": 255
  1994. },
  1995. "_normalSprite": null,
  1996. "_hoverSprite": null,
  1997. "_pressedSprite": null,
  1998. "_disabledSprite": null,
  1999. "_duration": 0.1,
  2000. "_zoomScale": 1.2,
  2001. "_target": {
  2002. "__id__": 45
  2003. },
  2004. "_id": "ec3qEoJHVABoxGd3CvrvsV"
  2005. },
  2006. {
  2007. "__type__": "cc.UITransform",
  2008. "_name": "",
  2009. "_objFlags": 0,
  2010. "__editorExtras__": {},
  2011. "node": {
  2012. "__id__": 40
  2013. },
  2014. "_enabled": true,
  2015. "__prefab": null,
  2016. "_contentSize": {
  2017. "__type__": "cc.Size",
  2018. "width": 100,
  2019. "height": 100
  2020. },
  2021. "_anchorPoint": {
  2022. "__type__": "cc.Vec2",
  2023. "x": 0.5,
  2024. "y": 0.5
  2025. },
  2026. "_id": "d0TcHh5mFPMZsmfTTtOr2h"
  2027. },
  2028. {
  2029. "__type__": "cc.Widget",
  2030. "_name": "",
  2031. "_objFlags": 0,
  2032. "__editorExtras__": {},
  2033. "node": {
  2034. "__id__": 40
  2035. },
  2036. "_enabled": true,
  2037. "__prefab": null,
  2038. "_alignFlags": 9,
  2039. "_target": null,
  2040. "_left": 10,
  2041. "_right": 0,
  2042. "_top": 10,
  2043. "_bottom": 0,
  2044. "_horizontalCenter": 0,
  2045. "_verticalCenter": 0,
  2046. "_isAbsLeft": true,
  2047. "_isAbsRight": true,
  2048. "_isAbsTop": true,
  2049. "_isAbsBottom": true,
  2050. "_isAbsHorizontalCenter": true,
  2051. "_isAbsVerticalCenter": true,
  2052. "_originalWidth": 0,
  2053. "_originalHeight": 0,
  2054. "_alignMode": 2,
  2055. "_lockFlags": 0,
  2056. "_id": "f382WzED1EIKcBD4MRB3XH"
  2057. },
  2058. {
  2059. "__type__": "cc.Node",
  2060. "_name": "TitleLvl",
  2061. "_objFlags": 0,
  2062. "__editorExtras__": {},
  2063. "_parent": {
  2064. "__id__": 22
  2065. },
  2066. "_children": [
  2067. {
  2068. "__id__": 52
  2069. }
  2070. ],
  2071. "_active": true,
  2072. "_components": [
  2073. {
  2074. "__id__": 55
  2075. },
  2076. {
  2077. "__id__": 56
  2078. }
  2079. ],
  2080. "_prefab": null,
  2081. "_lpos": {
  2082. "__type__": "cc.Vec3",
  2083. "x": 0,
  2084. "y": 590,
  2085. "z": 0
  2086. },
  2087. "_lrot": {
  2088. "__type__": "cc.Quat",
  2089. "x": 0,
  2090. "y": 0,
  2091. "z": 0,
  2092. "w": 1
  2093. },
  2094. "_lscale": {
  2095. "__type__": "cc.Vec3",
  2096. "x": 1,
  2097. "y": 1,
  2098. "z": 1
  2099. },
  2100. "_mobility": 0,
  2101. "_layer": 33554432,
  2102. "_euler": {
  2103. "__type__": "cc.Vec3",
  2104. "x": 0,
  2105. "y": 0,
  2106. "z": 0
  2107. },
  2108. "_id": "7eaBr2LpBGd6jgKjhLAy3Z"
  2109. },
  2110. {
  2111. "__type__": "cc.Node",
  2112. "_name": "LbLvl",
  2113. "_objFlags": 0,
  2114. "__editorExtras__": {},
  2115. "_parent": {
  2116. "__id__": 51
  2117. },
  2118. "_children": [],
  2119. "_active": true,
  2120. "_components": [
  2121. {
  2122. "__id__": 53
  2123. },
  2124. {
  2125. "__id__": 54
  2126. }
  2127. ],
  2128. "_prefab": null,
  2129. "_lpos": {
  2130. "__type__": "cc.Vec3",
  2131. "x": 0,
  2132. "y": 0,
  2133. "z": 0
  2134. },
  2135. "_lrot": {
  2136. "__type__": "cc.Quat",
  2137. "x": 0,
  2138. "y": 0,
  2139. "z": 0,
  2140. "w": 1
  2141. },
  2142. "_lscale": {
  2143. "__type__": "cc.Vec3",
  2144. "x": 1,
  2145. "y": 1,
  2146. "z": 1
  2147. },
  2148. "_mobility": 0,
  2149. "_layer": 33554432,
  2150. "_euler": {
  2151. "__type__": "cc.Vec3",
  2152. "x": 0,
  2153. "y": 0,
  2154. "z": 0
  2155. },
  2156. "_id": "45VLSoY6BMpa+A3x3t8NMd"
  2157. },
  2158. {
  2159. "__type__": "cc.UITransform",
  2160. "_name": "",
  2161. "_objFlags": 0,
  2162. "__editorExtras__": {},
  2163. "node": {
  2164. "__id__": 52
  2165. },
  2166. "_enabled": true,
  2167. "__prefab": null,
  2168. "_contentSize": {
  2169. "__type__": "cc.Size",
  2170. "width": 133.609375,
  2171. "height": 54.4
  2172. },
  2173. "_anchorPoint": {
  2174. "__type__": "cc.Vec2",
  2175. "x": 0.5,
  2176. "y": 0.5
  2177. },
  2178. "_id": "e426NqH85IV4zAIXxpvhVT"
  2179. },
  2180. {
  2181. "__type__": "cc.Label",
  2182. "_name": "",
  2183. "_objFlags": 0,
  2184. "__editorExtras__": {},
  2185. "node": {
  2186. "__id__": 52
  2187. },
  2188. "_enabled": true,
  2189. "__prefab": null,
  2190. "_customMaterial": null,
  2191. "_srcBlendFactor": 2,
  2192. "_dstBlendFactor": 4,
  2193. "_color": {
  2194. "__type__": "cc.Color",
  2195. "r": 255,
  2196. "g": 255,
  2197. "b": 255,
  2198. "a": 255
  2199. },
  2200. "_string": "Level:1",
  2201. "_horizontalAlign": 1,
  2202. "_verticalAlign": 1,
  2203. "_actualFontSize": 40,
  2204. "_fontSize": 40,
  2205. "_fontFamily": "Arial",
  2206. "_lineHeight": 40,
  2207. "_overflow": 0,
  2208. "_enableWrapText": false,
  2209. "_font": {
  2210. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  2211. "__expectedType__": "cc.TTFFont"
  2212. },
  2213. "_isSystemFontUsed": false,
  2214. "_spacingX": 0,
  2215. "_isItalic": false,
  2216. "_isBold": false,
  2217. "_isUnderline": false,
  2218. "_underlineHeight": 2,
  2219. "_cacheMode": 0,
  2220. "_enableOutline": true,
  2221. "_outlineColor": {
  2222. "__type__": "cc.Color",
  2223. "r": 0,
  2224. "g": 0,
  2225. "b": 0,
  2226. "a": 255
  2227. },
  2228. "_outlineWidth": 2,
  2229. "_enableShadow": false,
  2230. "_shadowColor": {
  2231. "__type__": "cc.Color",
  2232. "r": 0,
  2233. "g": 0,
  2234. "b": 0,
  2235. "a": 255
  2236. },
  2237. "_shadowOffset": {
  2238. "__type__": "cc.Vec2",
  2239. "x": 2,
  2240. "y": 2
  2241. },
  2242. "_shadowBlur": 2,
  2243. "_id": "c9kfQPvrNLFKpeVxnFtxD/"
  2244. },
  2245. {
  2246. "__type__": "cc.UITransform",
  2247. "_name": "",
  2248. "_objFlags": 0,
  2249. "__editorExtras__": {},
  2250. "node": {
  2251. "__id__": 51
  2252. },
  2253. "_enabled": true,
  2254. "__prefab": null,
  2255. "_contentSize": {
  2256. "__type__": "cc.Size",
  2257. "width": 100,
  2258. "height": 100
  2259. },
  2260. "_anchorPoint": {
  2261. "__type__": "cc.Vec2",
  2262. "x": 0.5,
  2263. "y": 0.5
  2264. },
  2265. "_id": "541WUs+9BP2ZhnTeHcGfgm"
  2266. },
  2267. {
  2268. "__type__": "cc.Widget",
  2269. "_name": "",
  2270. "_objFlags": 0,
  2271. "__editorExtras__": {},
  2272. "node": {
  2273. "__id__": 51
  2274. },
  2275. "_enabled": true,
  2276. "__prefab": null,
  2277. "_alignFlags": 17,
  2278. "_target": null,
  2279. "_left": 0,
  2280. "_right": 0,
  2281. "_top": 0,
  2282. "_bottom": 0,
  2283. "_horizontalCenter": 0,
  2284. "_verticalCenter": 0,
  2285. "_isAbsLeft": true,
  2286. "_isAbsRight": true,
  2287. "_isAbsTop": true,
  2288. "_isAbsBottom": true,
  2289. "_isAbsHorizontalCenter": true,
  2290. "_isAbsVerticalCenter": true,
  2291. "_originalWidth": 0,
  2292. "_originalHeight": 0,
  2293. "_alignMode": 2,
  2294. "_lockFlags": 0,
  2295. "_id": "64I7Jzug9FaY2hVVMXuKJH"
  2296. },
  2297. {
  2298. "__type__": "cc.Node",
  2299. "_name": "TopWarning",
  2300. "_objFlags": 0,
  2301. "__editorExtras__": {},
  2302. "_parent": {
  2303. "__id__": 22
  2304. },
  2305. "_children": [],
  2306. "_active": false,
  2307. "_components": [
  2308. {
  2309. "__id__": 58
  2310. },
  2311. {
  2312. "__id__": 59
  2313. }
  2314. ],
  2315. "_prefab": null,
  2316. "_lpos": {
  2317. "__type__": "cc.Vec3",
  2318. "x": 320,
  2319. "y": 240,
  2320. "z": 0
  2321. },
  2322. "_lrot": {
  2323. "__type__": "cc.Quat",
  2324. "x": 0,
  2325. "y": 0,
  2326. "z": 0,
  2327. "w": 1
  2328. },
  2329. "_lscale": {
  2330. "__type__": "cc.Vec3",
  2331. "x": 1,
  2332. "y": 1,
  2333. "z": 1
  2334. },
  2335. "_mobility": 0,
  2336. "_layer": 33554432,
  2337. "_euler": {
  2338. "__type__": "cc.Vec3",
  2339. "x": 0,
  2340. "y": 0,
  2341. "z": 0
  2342. },
  2343. "_id": "1aMCz1v9BEtIYV2iI61EUe"
  2344. },
  2345. {
  2346. "__type__": "cc.UITransform",
  2347. "_name": "",
  2348. "_objFlags": 0,
  2349. "__editorExtras__": {},
  2350. "node": {
  2351. "__id__": 57
  2352. },
  2353. "_enabled": true,
  2354. "__prefab": null,
  2355. "_contentSize": {
  2356. "__type__": "cc.Size",
  2357. "width": 82,
  2358. "height": 85
  2359. },
  2360. "_anchorPoint": {
  2361. "__type__": "cc.Vec2",
  2362. "x": 0.5,
  2363. "y": 0.5
  2364. },
  2365. "_id": "bbxLJPi65J0bn2gia8y0Lt"
  2366. },
  2367. {
  2368. "__type__": "cc.Sprite",
  2369. "_name": "",
  2370. "_objFlags": 0,
  2371. "__editorExtras__": {},
  2372. "node": {
  2373. "__id__": 57
  2374. },
  2375. "_enabled": true,
  2376. "__prefab": null,
  2377. "_customMaterial": null,
  2378. "_srcBlendFactor": 2,
  2379. "_dstBlendFactor": 4,
  2380. "_color": {
  2381. "__type__": "cc.Color",
  2382. "r": 255,
  2383. "g": 255,
  2384. "b": 255,
  2385. "a": 255
  2386. },
  2387. "_spriteFrame": {
  2388. "__uuid__": "7cb78425-d736-49f4-99b9-0ddc22782360@f9941",
  2389. "__expectedType__": "cc.SpriteFrame"
  2390. },
  2391. "_type": 0,
  2392. "_fillType": 0,
  2393. "_sizeMode": 0,
  2394. "_fillCenter": {
  2395. "__type__": "cc.Vec2",
  2396. "x": 0,
  2397. "y": 0
  2398. },
  2399. "_fillStart": 0,
  2400. "_fillRange": 0,
  2401. "_isTrimmedMode": true,
  2402. "_useGrayscale": false,
  2403. "_atlas": null,
  2404. "_id": "c4iUgD/ZNKz5eFikFWdy8p"
  2405. },
  2406. {
  2407. "__type__": "cc.Node",
  2408. "_name": "WarnAlert",
  2409. "_objFlags": 0,
  2410. "__editorExtras__": {},
  2411. "_parent": {
  2412. "__id__": 22
  2413. },
  2414. "_children": [
  2415. {
  2416. "__id__": 61
  2417. },
  2418. {
  2419. "__id__": 67
  2420. },
  2421. {
  2422. "__id__": 71
  2423. },
  2424. {
  2425. "__id__": 74
  2426. }
  2427. ],
  2428. "_active": false,
  2429. "_components": [
  2430. {
  2431. "__id__": 81
  2432. },
  2433. {
  2434. "__id__": 82
  2435. }
  2436. ],
  2437. "_prefab": null,
  2438. "_lpos": {
  2439. "__type__": "cc.Vec3",
  2440. "x": 0,
  2441. "y": 0,
  2442. "z": 0
  2443. },
  2444. "_lrot": {
  2445. "__type__": "cc.Quat",
  2446. "x": 0,
  2447. "y": 0,
  2448. "z": 0,
  2449. "w": 1
  2450. },
  2451. "_lscale": {
  2452. "__type__": "cc.Vec3",
  2453. "x": 1,
  2454. "y": 1,
  2455. "z": 1
  2456. },
  2457. "_mobility": 0,
  2458. "_layer": 33554432,
  2459. "_euler": {
  2460. "__type__": "cc.Vec3",
  2461. "x": 0,
  2462. "y": 0,
  2463. "z": 0
  2464. },
  2465. "_id": "f1cq710XRE0rU1C/RAvmQ4"
  2466. },
  2467. {
  2468. "__type__": "cc.Node",
  2469. "_name": "Black",
  2470. "_objFlags": 0,
  2471. "__editorExtras__": {},
  2472. "_parent": {
  2473. "__id__": 60
  2474. },
  2475. "_children": [],
  2476. "_active": true,
  2477. "_components": [
  2478. {
  2479. "__id__": 62
  2480. },
  2481. {
  2482. "__id__": 63
  2483. },
  2484. {
  2485. "__id__": 64
  2486. },
  2487. {
  2488. "__id__": 65
  2489. },
  2490. {
  2491. "__id__": 66
  2492. }
  2493. ],
  2494. "_prefab": null,
  2495. "_lpos": {
  2496. "__type__": "cc.Vec3",
  2497. "x": 0,
  2498. "y": 0,
  2499. "z": 0
  2500. },
  2501. "_lrot": {
  2502. "__type__": "cc.Quat",
  2503. "x": 0,
  2504. "y": 0,
  2505. "z": 0,
  2506. "w": 1
  2507. },
  2508. "_lscale": {
  2509. "__type__": "cc.Vec3",
  2510. "x": 1,
  2511. "y": 1,
  2512. "z": 1
  2513. },
  2514. "_mobility": 0,
  2515. "_layer": 33554432,
  2516. "_euler": {
  2517. "__type__": "cc.Vec3",
  2518. "x": 0,
  2519. "y": 0,
  2520. "z": 0
  2521. },
  2522. "_id": "adazuxZtZFJb4xS/KAya1A"
  2523. },
  2524. {
  2525. "__type__": "cc.UITransform",
  2526. "_name": "",
  2527. "_objFlags": 0,
  2528. "__editorExtras__": {},
  2529. "node": {
  2530. "__id__": 61
  2531. },
  2532. "_enabled": true,
  2533. "__prefab": null,
  2534. "_contentSize": {
  2535. "__type__": "cc.Size",
  2536. "width": 720,
  2537. "height": 1280
  2538. },
  2539. "_anchorPoint": {
  2540. "__type__": "cc.Vec2",
  2541. "x": 0.5,
  2542. "y": 0.5
  2543. },
  2544. "_id": "a467o7fRBJoIQswxPXn9ma"
  2545. },
  2546. {
  2547. "__type__": "cc.Sprite",
  2548. "_name": "",
  2549. "_objFlags": 0,
  2550. "__editorExtras__": {},
  2551. "node": {
  2552. "__id__": 61
  2553. },
  2554. "_enabled": true,
  2555. "__prefab": null,
  2556. "_customMaterial": null,
  2557. "_srcBlendFactor": 2,
  2558. "_dstBlendFactor": 4,
  2559. "_color": {
  2560. "__type__": "cc.Color",
  2561. "r": 0,
  2562. "g": 0,
  2563. "b": 0,
  2564. "a": 155
  2565. },
  2566. "_spriteFrame": {
  2567. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  2568. "__expectedType__": "cc.SpriteFrame"
  2569. },
  2570. "_type": 0,
  2571. "_fillType": 0,
  2572. "_sizeMode": 0,
  2573. "_fillCenter": {
  2574. "__type__": "cc.Vec2",
  2575. "x": 0,
  2576. "y": 0
  2577. },
  2578. "_fillStart": 0,
  2579. "_fillRange": 0,
  2580. "_isTrimmedMode": true,
  2581. "_useGrayscale": false,
  2582. "_atlas": null,
  2583. "_id": "be1LBNX0VDtqMUtN3bRCaA"
  2584. },
  2585. {
  2586. "__type__": "cc.Button",
  2587. "_name": "",
  2588. "_objFlags": 0,
  2589. "__editorExtras__": {},
  2590. "node": {
  2591. "__id__": 61
  2592. },
  2593. "_enabled": true,
  2594. "__prefab": null,
  2595. "clickEvents": [],
  2596. "_interactable": true,
  2597. "_transition": 0,
  2598. "_normalColor": {
  2599. "__type__": "cc.Color",
  2600. "r": 255,
  2601. "g": 255,
  2602. "b": 255,
  2603. "a": 255
  2604. },
  2605. "_hoverColor": {
  2606. "__type__": "cc.Color",
  2607. "r": 211,
  2608. "g": 211,
  2609. "b": 211,
  2610. "a": 255
  2611. },
  2612. "_pressedColor": {
  2613. "__type__": "cc.Color",
  2614. "r": 255,
  2615. "g": 255,
  2616. "b": 255,
  2617. "a": 255
  2618. },
  2619. "_disabledColor": {
  2620. "__type__": "cc.Color",
  2621. "r": 124,
  2622. "g": 124,
  2623. "b": 124,
  2624. "a": 255
  2625. },
  2626. "_normalSprite": {
  2627. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  2628. "__expectedType__": "cc.SpriteFrame"
  2629. },
  2630. "_hoverSprite": null,
  2631. "_pressedSprite": null,
  2632. "_disabledSprite": null,
  2633. "_duration": 0.1,
  2634. "_zoomScale": 1.2,
  2635. "_target": null,
  2636. "_id": "7eOz1of0JLmJP2FLm8S3GK"
  2637. },
  2638. {
  2639. "__type__": "cc.Widget",
  2640. "_name": "",
  2641. "_objFlags": 0,
  2642. "__editorExtras__": {},
  2643. "node": {
  2644. "__id__": 61
  2645. },
  2646. "_enabled": true,
  2647. "__prefab": null,
  2648. "_alignFlags": 45,
  2649. "_target": null,
  2650. "_left": 0,
  2651. "_right": 0,
  2652. "_top": 0,
  2653. "_bottom": 0,
  2654. "_horizontalCenter": 0,
  2655. "_verticalCenter": 0,
  2656. "_isAbsLeft": true,
  2657. "_isAbsRight": true,
  2658. "_isAbsTop": true,
  2659. "_isAbsBottom": true,
  2660. "_isAbsHorizontalCenter": true,
  2661. "_isAbsVerticalCenter": true,
  2662. "_originalWidth": 750,
  2663. "_originalHeight": 1600,
  2664. "_alignMode": 2,
  2665. "_lockFlags": 0,
  2666. "_id": "d1kqocPDtML5MaAC3qj00V"
  2667. },
  2668. {
  2669. "__type__": "cc.BlockInputEvents",
  2670. "_name": "",
  2671. "_objFlags": 0,
  2672. "__editorExtras__": {},
  2673. "node": {
  2674. "__id__": 61
  2675. },
  2676. "_enabled": true,
  2677. "__prefab": null,
  2678. "_id": "1eDBue451NlbUY/JjOTNzM"
  2679. },
  2680. {
  2681. "__type__": "cc.Node",
  2682. "_name": "Frame",
  2683. "_objFlags": 0,
  2684. "__editorExtras__": {},
  2685. "_parent": {
  2686. "__id__": 60
  2687. },
  2688. "_children": [],
  2689. "_active": true,
  2690. "_components": [
  2691. {
  2692. "__id__": 68
  2693. },
  2694. {
  2695. "__id__": 69
  2696. },
  2697. {
  2698. "__id__": 70
  2699. }
  2700. ],
  2701. "_prefab": null,
  2702. "_lpos": {
  2703. "__type__": "cc.Vec3",
  2704. "x": 0,
  2705. "y": 199.63,
  2706. "z": 0
  2707. },
  2708. "_lrot": {
  2709. "__type__": "cc.Quat",
  2710. "x": 0,
  2711. "y": 0,
  2712. "z": 0,
  2713. "w": 1
  2714. },
  2715. "_lscale": {
  2716. "__type__": "cc.Vec3",
  2717. "x": 1,
  2718. "y": 1,
  2719. "z": 1
  2720. },
  2721. "_mobility": 0,
  2722. "_layer": 33554432,
  2723. "_euler": {
  2724. "__type__": "cc.Vec3",
  2725. "x": 0,
  2726. "y": 0,
  2727. "z": 0
  2728. },
  2729. "_id": "a7y1AupBpEGbkmp6gpS5ZR"
  2730. },
  2731. {
  2732. "__type__": "cc.UITransform",
  2733. "_name": "",
  2734. "_objFlags": 0,
  2735. "__editorExtras__": {},
  2736. "node": {
  2737. "__id__": 67
  2738. },
  2739. "_enabled": true,
  2740. "__prefab": null,
  2741. "_contentSize": {
  2742. "__type__": "cc.Size",
  2743. "width": 600,
  2744. "height": 300
  2745. },
  2746. "_anchorPoint": {
  2747. "__type__": "cc.Vec2",
  2748. "x": 0.5,
  2749. "y": 0.5
  2750. },
  2751. "_id": "50Pdefd+pMQq0JlxCsPAy1"
  2752. },
  2753. {
  2754. "__type__": "cc.Sprite",
  2755. "_name": "",
  2756. "_objFlags": 0,
  2757. "__editorExtras__": {},
  2758. "node": {
  2759. "__id__": 67
  2760. },
  2761. "_enabled": true,
  2762. "__prefab": null,
  2763. "_customMaterial": null,
  2764. "_srcBlendFactor": 2,
  2765. "_dstBlendFactor": 4,
  2766. "_color": {
  2767. "__type__": "cc.Color",
  2768. "r": 255,
  2769. "g": 255,
  2770. "b": 255,
  2771. "a": 255
  2772. },
  2773. "_spriteFrame": {
  2774. "__uuid__": "715c8947-2f3c-461c-a764-fad2f7a67d60@f9941",
  2775. "__expectedType__": "cc.SpriteFrame"
  2776. },
  2777. "_type": 0,
  2778. "_fillType": 0,
  2779. "_sizeMode": 0,
  2780. "_fillCenter": {
  2781. "__type__": "cc.Vec2",
  2782. "x": 0,
  2783. "y": 0
  2784. },
  2785. "_fillStart": 0,
  2786. "_fillRange": 0,
  2787. "_isTrimmedMode": true,
  2788. "_useGrayscale": false,
  2789. "_atlas": null,
  2790. "_id": "63w6FdRHpL0YkP3iBvpknF"
  2791. },
  2792. {
  2793. "__type__": "cc.Widget",
  2794. "_name": "",
  2795. "_objFlags": 0,
  2796. "__editorExtras__": {},
  2797. "node": {
  2798. "__id__": 67
  2799. },
  2800. "_enabled": true,
  2801. "__prefab": null,
  2802. "_alignFlags": 0,
  2803. "_target": null,
  2804. "_left": 0,
  2805. "_right": 0,
  2806. "_top": 0,
  2807. "_bottom": 0,
  2808. "_horizontalCenter": 0,
  2809. "_verticalCenter": 0,
  2810. "_isAbsLeft": true,
  2811. "_isAbsRight": true,
  2812. "_isAbsTop": true,
  2813. "_isAbsBottom": true,
  2814. "_isAbsHorizontalCenter": true,
  2815. "_isAbsVerticalCenter": true,
  2816. "_originalWidth": 0,
  2817. "_originalHeight": 0,
  2818. "_alignMode": 2,
  2819. "_lockFlags": 0,
  2820. "_id": "edO9jvAZ5IaY0GdM2lqBn2"
  2821. },
  2822. {
  2823. "__type__": "cc.Node",
  2824. "_name": "Tips",
  2825. "_objFlags": 512,
  2826. "__editorExtras__": {},
  2827. "_parent": {
  2828. "__id__": 60
  2829. },
  2830. "_children": [],
  2831. "_active": true,
  2832. "_components": [
  2833. {
  2834. "__id__": 72
  2835. },
  2836. {
  2837. "__id__": 73
  2838. }
  2839. ],
  2840. "_prefab": null,
  2841. "_lpos": {
  2842. "__type__": "cc.Vec3",
  2843. "x": 0,
  2844. "y": 193.224,
  2845. "z": 0
  2846. },
  2847. "_lrot": {
  2848. "__type__": "cc.Quat",
  2849. "x": 0,
  2850. "y": 0,
  2851. "z": 0,
  2852. "w": 1
  2853. },
  2854. "_lscale": {
  2855. "__type__": "cc.Vec3",
  2856. "x": 1,
  2857. "y": 1,
  2858. "z": 1
  2859. },
  2860. "_mobility": 0,
  2861. "_layer": 33554432,
  2862. "_euler": {
  2863. "__type__": "cc.Vec3",
  2864. "x": 0,
  2865. "y": 0,
  2866. "z": 0
  2867. },
  2868. "_id": "90IXuZpVlBj6u0MoYZE87x"
  2869. },
  2870. {
  2871. "__type__": "cc.UITransform",
  2872. "_name": "",
  2873. "_objFlags": 0,
  2874. "__editorExtras__": {},
  2875. "node": {
  2876. "__id__": 71
  2877. },
  2878. "_enabled": true,
  2879. "__prefab": null,
  2880. "_contentSize": {
  2881. "__type__": "cc.Size",
  2882. "width": 480,
  2883. "height": 250
  2884. },
  2885. "_anchorPoint": {
  2886. "__type__": "cc.Vec2",
  2887. "x": 0.5,
  2888. "y": 0.5
  2889. },
  2890. "_id": "00L6rtqAlMhptT4fnjCo1f"
  2891. },
  2892. {
  2893. "__type__": "cc.Label",
  2894. "_name": "",
  2895. "_objFlags": 0,
  2896. "__editorExtras__": {},
  2897. "node": {
  2898. "__id__": 71
  2899. },
  2900. "_enabled": true,
  2901. "__prefab": null,
  2902. "_customMaterial": null,
  2903. "_srcBlendFactor": 2,
  2904. "_dstBlendFactor": 4,
  2905. "_color": {
  2906. "__type__": "cc.Color",
  2907. "r": 255,
  2908. "g": 175,
  2909. "b": 61,
  2910. "a": 255
  2911. },
  2912. "_string": "If the wine glass exceeds the red line or the small cup is full, the game over!",
  2913. "_horizontalAlign": 1,
  2914. "_verticalAlign": 1,
  2915. "_actualFontSize": 40,
  2916. "_fontSize": 40,
  2917. "_fontFamily": "Arial",
  2918. "_lineHeight": 40,
  2919. "_overflow": 1,
  2920. "_enableWrapText": true,
  2921. "_font": {
  2922. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  2923. "__expectedType__": "cc.TTFFont"
  2924. },
  2925. "_isSystemFontUsed": false,
  2926. "_spacingX": 0,
  2927. "_isItalic": false,
  2928. "_isBold": false,
  2929. "_isUnderline": false,
  2930. "_underlineHeight": 2,
  2931. "_cacheMode": 1,
  2932. "_enableOutline": true,
  2933. "_outlineColor": {
  2934. "__type__": "cc.Color",
  2935. "r": 255,
  2936. "g": 255,
  2937. "b": 255,
  2938. "a": 255
  2939. },
  2940. "_outlineWidth": 5,
  2941. "_enableShadow": false,
  2942. "_shadowColor": {
  2943. "__type__": "cc.Color",
  2944. "r": 0,
  2945. "g": 0,
  2946. "b": 0,
  2947. "a": 255
  2948. },
  2949. "_shadowOffset": {
  2950. "__type__": "cc.Vec2",
  2951. "x": 2,
  2952. "y": 2
  2953. },
  2954. "_shadowBlur": 2,
  2955. "_id": "414265iI1LNrrGjyIbEWkH"
  2956. },
  2957. {
  2958. "__type__": "cc.Node",
  2959. "_name": "BtnOK",
  2960. "_objFlags": 0,
  2961. "__editorExtras__": {},
  2962. "_parent": {
  2963. "__id__": 60
  2964. },
  2965. "_children": [
  2966. {
  2967. "__id__": 75
  2968. }
  2969. ],
  2970. "_active": true,
  2971. "_components": [
  2972. {
  2973. "__id__": 78
  2974. },
  2975. {
  2976. "__id__": 79
  2977. },
  2978. {
  2979. "__id__": 80
  2980. }
  2981. ],
  2982. "_prefab": null,
  2983. "_lpos": {
  2984. "__type__": "cc.Vec3",
  2985. "x": 0,
  2986. "y": -100,
  2987. "z": 0
  2988. },
  2989. "_lrot": {
  2990. "__type__": "cc.Quat",
  2991. "x": 0,
  2992. "y": 0,
  2993. "z": 0,
  2994. "w": 1
  2995. },
  2996. "_lscale": {
  2997. "__type__": "cc.Vec3",
  2998. "x": 1,
  2999. "y": 1,
  3000. "z": 1
  3001. },
  3002. "_mobility": 0,
  3003. "_layer": 33554432,
  3004. "_euler": {
  3005. "__type__": "cc.Vec3",
  3006. "x": 0,
  3007. "y": 0,
  3008. "z": 0
  3009. },
  3010. "_id": "2emMpjxXhBU4IKpwWMcO+w"
  3011. },
  3012. {
  3013. "__type__": "cc.Node",
  3014. "_name": "Label",
  3015. "_objFlags": 512,
  3016. "__editorExtras__": {},
  3017. "_parent": {
  3018. "__id__": 74
  3019. },
  3020. "_children": [],
  3021. "_active": true,
  3022. "_components": [
  3023. {
  3024. "__id__": 76
  3025. },
  3026. {
  3027. "__id__": 77
  3028. }
  3029. ],
  3030. "_prefab": null,
  3031. "_lpos": {
  3032. "__type__": "cc.Vec3",
  3033. "x": 0,
  3034. "y": 0,
  3035. "z": 0
  3036. },
  3037. "_lrot": {
  3038. "__type__": "cc.Quat",
  3039. "x": 0,
  3040. "y": 0,
  3041. "z": 0,
  3042. "w": 1
  3043. },
  3044. "_lscale": {
  3045. "__type__": "cc.Vec3",
  3046. "x": 1,
  3047. "y": 1,
  3048. "z": 1
  3049. },
  3050. "_mobility": 0,
  3051. "_layer": 33554432,
  3052. "_euler": {
  3053. "__type__": "cc.Vec3",
  3054. "x": 0,
  3055. "y": 0,
  3056. "z": 0
  3057. },
  3058. "_id": "37xURmm4JGH6h/xB0AIHhB"
  3059. },
  3060. {
  3061. "__type__": "cc.UITransform",
  3062. "_name": "",
  3063. "_objFlags": 0,
  3064. "__editorExtras__": {},
  3065. "node": {
  3066. "__id__": 75
  3067. },
  3068. "_enabled": true,
  3069. "__prefab": null,
  3070. "_contentSize": {
  3071. "__type__": "cc.Size",
  3072. "width": 120,
  3073. "height": 60
  3074. },
  3075. "_anchorPoint": {
  3076. "__type__": "cc.Vec2",
  3077. "x": 0.5,
  3078. "y": 0.5
  3079. },
  3080. "_id": "dbCeRHIpRC9YEH2qHBI83H"
  3081. },
  3082. {
  3083. "__type__": "cc.Label",
  3084. "_name": "",
  3085. "_objFlags": 0,
  3086. "__editorExtras__": {},
  3087. "node": {
  3088. "__id__": 75
  3089. },
  3090. "_enabled": true,
  3091. "__prefab": null,
  3092. "_customMaterial": null,
  3093. "_srcBlendFactor": 2,
  3094. "_dstBlendFactor": 4,
  3095. "_color": {
  3096. "__type__": "cc.Color",
  3097. "r": 255,
  3098. "g": 255,
  3099. "b": 255,
  3100. "a": 255
  3101. },
  3102. "_string": "OK",
  3103. "_horizontalAlign": 1,
  3104. "_verticalAlign": 1,
  3105. "_actualFontSize": 40,
  3106. "_fontSize": 40,
  3107. "_fontFamily": "Arial",
  3108. "_lineHeight": 40,
  3109. "_overflow": 1,
  3110. "_enableWrapText": false,
  3111. "_font": {
  3112. "__uuid__": "23a47957-4ba6-41f7-999f-a5fbf8a48aed",
  3113. "__expectedType__": "cc.TTFFont"
  3114. },
  3115. "_isSystemFontUsed": false,
  3116. "_spacingX": 0,
  3117. "_isItalic": false,
  3118. "_isBold": false,
  3119. "_isUnderline": false,
  3120. "_underlineHeight": 2,
  3121. "_cacheMode": 1,
  3122. "_enableOutline": false,
  3123. "_outlineColor": {
  3124. "__type__": "cc.Color",
  3125. "r": 0,
  3126. "g": 0,
  3127. "b": 0,
  3128. "a": 255
  3129. },
  3130. "_outlineWidth": 2,
  3131. "_enableShadow": false,
  3132. "_shadowColor": {
  3133. "__type__": "cc.Color",
  3134. "r": 0,
  3135. "g": 0,
  3136. "b": 0,
  3137. "a": 255
  3138. },
  3139. "_shadowOffset": {
  3140. "__type__": "cc.Vec2",
  3141. "x": 2,
  3142. "y": 2
  3143. },
  3144. "_shadowBlur": 2,
  3145. "_id": "2bhhOa3jRONZ0+/ZZ7KyBr"
  3146. },
  3147. {
  3148. "__type__": "cc.UITransform",
  3149. "_name": "",
  3150. "_objFlags": 0,
  3151. "__editorExtras__": {},
  3152. "node": {
  3153. "__id__": 74
  3154. },
  3155. "_enabled": true,
  3156. "__prefab": null,
  3157. "_contentSize": {
  3158. "__type__": "cc.Size",
  3159. "width": 280,
  3160. "height": 100
  3161. },
  3162. "_anchorPoint": {
  3163. "__type__": "cc.Vec2",
  3164. "x": 0.5,
  3165. "y": 0.5
  3166. },
  3167. "_id": "08F65vB39M5JV84e5PtYDQ"
  3168. },
  3169. {
  3170. "__type__": "cc.Sprite",
  3171. "_name": "",
  3172. "_objFlags": 0,
  3173. "__editorExtras__": {},
  3174. "node": {
  3175. "__id__": 74
  3176. },
  3177. "_enabled": true,
  3178. "__prefab": null,
  3179. "_customMaterial": null,
  3180. "_srcBlendFactor": 2,
  3181. "_dstBlendFactor": 4,
  3182. "_color": {
  3183. "__type__": "cc.Color",
  3184. "r": 255,
  3185. "g": 255,
  3186. "b": 255,
  3187. "a": 255
  3188. },
  3189. "_spriteFrame": {
  3190. "__uuid__": "dc132abb-4c67-4de5-a9df-b3e05959a8ac@f9941",
  3191. "__expectedType__": "cc.SpriteFrame"
  3192. },
  3193. "_type": 1,
  3194. "_fillType": 0,
  3195. "_sizeMode": 0,
  3196. "_fillCenter": {
  3197. "__type__": "cc.Vec2",
  3198. "x": 0,
  3199. "y": 0
  3200. },
  3201. "_fillStart": 0,
  3202. "_fillRange": 0,
  3203. "_isTrimmedMode": true,
  3204. "_useGrayscale": false,
  3205. "_atlas": null,
  3206. "_id": "cdGbGlH95LIIadvGt8mXjh"
  3207. },
  3208. {
  3209. "__type__": "cc.Button",
  3210. "_name": "",
  3211. "_objFlags": 0,
  3212. "__editorExtras__": {},
  3213. "node": {
  3214. "__id__": 74
  3215. },
  3216. "_enabled": true,
  3217. "__prefab": null,
  3218. "clickEvents": [],
  3219. "_interactable": true,
  3220. "_transition": 3,
  3221. "_normalColor": {
  3222. "__type__": "cc.Color",
  3223. "r": 214,
  3224. "g": 214,
  3225. "b": 214,
  3226. "a": 255
  3227. },
  3228. "_hoverColor": {
  3229. "__type__": "cc.Color",
  3230. "r": 211,
  3231. "g": 211,
  3232. "b": 211,
  3233. "a": 255
  3234. },
  3235. "_pressedColor": {
  3236. "__type__": "cc.Color",
  3237. "r": 255,
  3238. "g": 255,
  3239. "b": 255,
  3240. "a": 255
  3241. },
  3242. "_disabledColor": {
  3243. "__type__": "cc.Color",
  3244. "r": 124,
  3245. "g": 124,
  3246. "b": 124,
  3247. "a": 255
  3248. },
  3249. "_normalSprite": {
  3250. "__uuid__": "dc132abb-4c67-4de5-a9df-b3e05959a8ac@f9941",
  3251. "__expectedType__": "cc.SpriteFrame"
  3252. },
  3253. "_hoverSprite": {
  3254. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  3255. "__expectedType__": "cc.SpriteFrame"
  3256. },
  3257. "_pressedSprite": {
  3258. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  3259. "__expectedType__": "cc.SpriteFrame"
  3260. },
  3261. "_disabledSprite": {
  3262. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  3263. "__expectedType__": "cc.SpriteFrame"
  3264. },
  3265. "_duration": 0.1,
  3266. "_zoomScale": 1.2,
  3267. "_target": {
  3268. "__id__": 74
  3269. },
  3270. "_id": "54aa5T8AJKepgFCgepT5zt"
  3271. },
  3272. {
  3273. "__type__": "cc.UITransform",
  3274. "_name": "",
  3275. "_objFlags": 0,
  3276. "__editorExtras__": {},
  3277. "node": {
  3278. "__id__": 60
  3279. },
  3280. "_enabled": true,
  3281. "__prefab": null,
  3282. "_contentSize": {
  3283. "__type__": "cc.Size",
  3284. "width": 720,
  3285. "height": 1280
  3286. },
  3287. "_anchorPoint": {
  3288. "__type__": "cc.Vec2",
  3289. "x": 0.5,
  3290. "y": 0.5
  3291. },
  3292. "_id": "9bLapqxqhIEbOlQ5A+CcOV"
  3293. },
  3294. {
  3295. "__type__": "cc.Widget",
  3296. "_name": "",
  3297. "_objFlags": 0,
  3298. "__editorExtras__": {},
  3299. "node": {
  3300. "__id__": 60
  3301. },
  3302. "_enabled": true,
  3303. "__prefab": null,
  3304. "_alignFlags": 45,
  3305. "_target": null,
  3306. "_left": 0,
  3307. "_right": 0,
  3308. "_top": 0,
  3309. "_bottom": 0,
  3310. "_horizontalCenter": 0,
  3311. "_verticalCenter": 0,
  3312. "_isAbsLeft": true,
  3313. "_isAbsRight": true,
  3314. "_isAbsTop": true,
  3315. "_isAbsBottom": true,
  3316. "_isAbsHorizontalCenter": true,
  3317. "_isAbsVerticalCenter": true,
  3318. "_originalWidth": 100,
  3319. "_originalHeight": 100,
  3320. "_alignMode": 2,
  3321. "_lockFlags": 0,
  3322. "_id": "87Oi4QkBJLdo8apglEmqdo"
  3323. },
  3324. {
  3325. "__type__": "cc.UITransform",
  3326. "_name": "",
  3327. "_objFlags": 0,
  3328. "__editorExtras__": {},
  3329. "node": {
  3330. "__id__": 22
  3331. },
  3332. "_enabled": true,
  3333. "__prefab": null,
  3334. "_contentSize": {
  3335. "__type__": "cc.Size",
  3336. "width": 720,
  3337. "height": 1280
  3338. },
  3339. "_anchorPoint": {
  3340. "__type__": "cc.Vec2",
  3341. "x": 0.5,
  3342. "y": 0.5
  3343. },
  3344. "_id": "e4dhS7mGRMO5OzZUzBI3ky"
  3345. },
  3346. {
  3347. "__type__": "cc.Widget",
  3348. "_name": "",
  3349. "_objFlags": 0,
  3350. "__editorExtras__": {},
  3351. "node": {
  3352. "__id__": 22
  3353. },
  3354. "_enabled": true,
  3355. "__prefab": null,
  3356. "_alignFlags": 45,
  3357. "_target": null,
  3358. "_left": 0,
  3359. "_right": 0,
  3360. "_top": 0,
  3361. "_bottom": 0,
  3362. "_horizontalCenter": 0,
  3363. "_verticalCenter": 0,
  3364. "_isAbsLeft": true,
  3365. "_isAbsRight": true,
  3366. "_isAbsTop": true,
  3367. "_isAbsBottom": true,
  3368. "_isAbsHorizontalCenter": true,
  3369. "_isAbsVerticalCenter": true,
  3370. "_originalWidth": 100,
  3371. "_originalHeight": 100,
  3372. "_alignMode": 2,
  3373. "_lockFlags": 0,
  3374. "_id": "57BgqIz2ZNuYVEyJq1nSWl"
  3375. },
  3376. {
  3377. "__type__": "cc.Node",
  3378. "_name": "Entry",
  3379. "_objFlags": 0,
  3380. "__editorExtras__": {},
  3381. "_parent": {
  3382. "__id__": 2
  3383. },
  3384. "_children": [],
  3385. "_active": true,
  3386. "_components": [
  3387. {
  3388. "__id__": 86
  3389. }
  3390. ],
  3391. "_prefab": null,
  3392. "_lpos": {
  3393. "__type__": "cc.Vec3",
  3394. "x": -360,
  3395. "y": -667,
  3396. "z": 0
  3397. },
  3398. "_lrot": {
  3399. "__type__": "cc.Quat",
  3400. "x": 0,
  3401. "y": 0,
  3402. "z": 0,
  3403. "w": 1
  3404. },
  3405. "_lscale": {
  3406. "__type__": "cc.Vec3",
  3407. "x": 1,
  3408. "y": 1,
  3409. "z": 1
  3410. },
  3411. "_mobility": 0,
  3412. "_layer": 1073741824,
  3413. "_euler": {
  3414. "__type__": "cc.Vec3",
  3415. "x": 0,
  3416. "y": 0,
  3417. "z": 0
  3418. },
  3419. "_id": "21OxpNL+dAV7IJEFgGJCft"
  3420. },
  3421. {
  3422. "__type__": "aa87cyBikxNRJE8D80V5T4B",
  3423. "_name": "",
  3424. "_objFlags": 0,
  3425. "__editorExtras__": {},
  3426. "node": {
  3427. "__id__": 85
  3428. },
  3429. "_enabled": true,
  3430. "__prefab": null,
  3431. "_id": "32JP2rbBZAEKeL0vLDweo+"
  3432. },
  3433. {
  3434. "__type__": "cc.UITransform",
  3435. "_name": "",
  3436. "_objFlags": 0,
  3437. "__editorExtras__": {},
  3438. "node": {
  3439. "__id__": 2
  3440. },
  3441. "_enabled": true,
  3442. "__prefab": null,
  3443. "_contentSize": {
  3444. "__type__": "cc.Size",
  3445. "width": 720,
  3446. "height": 1280
  3447. },
  3448. "_anchorPoint": {
  3449. "__type__": "cc.Vec2",
  3450. "x": 0.5,
  3451. "y": 0.5
  3452. },
  3453. "_id": "b1HUYLJ3VC5a0fFpVByWp2"
  3454. },
  3455. {
  3456. "__type__": "cc.Canvas",
  3457. "_name": "",
  3458. "_objFlags": 0,
  3459. "__editorExtras__": {},
  3460. "node": {
  3461. "__id__": 2
  3462. },
  3463. "_enabled": true,
  3464. "__prefab": null,
  3465. "_cameraComponent": {
  3466. "__id__": 4
  3467. },
  3468. "_alignCanvasWithScreen": true,
  3469. "_id": "8fdCZBLJNAnL3sNZ4vacOF"
  3470. },
  3471. {
  3472. "__type__": "cc.Widget",
  3473. "_name": "",
  3474. "_objFlags": 0,
  3475. "__editorExtras__": {},
  3476. "node": {
  3477. "__id__": 2
  3478. },
  3479. "_enabled": true,
  3480. "__prefab": null,
  3481. "_alignFlags": 45,
  3482. "_target": null,
  3483. "_left": 0,
  3484. "_right": 0,
  3485. "_top": 0,
  3486. "_bottom": 0,
  3487. "_horizontalCenter": 0,
  3488. "_verticalCenter": 0,
  3489. "_isAbsLeft": true,
  3490. "_isAbsRight": true,
  3491. "_isAbsTop": true,
  3492. "_isAbsBottom": true,
  3493. "_isAbsHorizontalCenter": true,
  3494. "_isAbsVerticalCenter": true,
  3495. "_originalWidth": 720,
  3496. "_originalHeight": 1334,
  3497. "_alignMode": 2,
  3498. "_lockFlags": 0,
  3499. "_id": "892DGZiFBAiJVjMq+NCDX6"
  3500. },
  3501. {
  3502. "__type__": "dca72U6jlRMRLAiO1t+r7Zj",
  3503. "_name": "",
  3504. "_objFlags": 0,
  3505. "__editorExtras__": {},
  3506. "node": {
  3507. "__id__": 2
  3508. },
  3509. "_enabled": true,
  3510. "__prefab": null,
  3511. "_flags": 3,
  3512. "_top": 0,
  3513. "_bottom": 0,
  3514. "_left": 0,
  3515. "_right": 0,
  3516. "_id": "b7uUjAUN5J/4btJYAR/qhv"
  3517. },
  3518. {
  3519. "__type__": "cc.PrefabInfo",
  3520. "root": null,
  3521. "asset": null,
  3522. "fileId": "be14c61f-22d8-4bb9-b444-ad9f29740469",
  3523. "instance": null,
  3524. "targetOverrides": []
  3525. },
  3526. {
  3527. "__type__": "cc.SceneGlobals",
  3528. "ambient": {
  3529. "__id__": 93
  3530. },
  3531. "shadows": {
  3532. "__id__": 94
  3533. },
  3534. "_skybox": {
  3535. "__id__": 95
  3536. },
  3537. "fog": {
  3538. "__id__": 96
  3539. },
  3540. "octree": {
  3541. "__id__": 97
  3542. },
  3543. "skin": {
  3544. "__id__": 98
  3545. },
  3546. "lightProbeInfo": {
  3547. "__id__": 99
  3548. },
  3549. "postSettings": {
  3550. "__id__": 100
  3551. },
  3552. "bakedWithStationaryMainLight": false,
  3553. "bakedWithHighpLightmap": false
  3554. },
  3555. {
  3556. "__type__": "cc.AmbientInfo",
  3557. "_skyColorHDR": {
  3558. "__type__": "cc.Vec4",
  3559. "x": 0.2,
  3560. "y": 0.5,
  3561. "z": 0.8,
  3562. "w": 0.520833125
  3563. },
  3564. "_skyColor": {
  3565. "__type__": "cc.Vec4",
  3566. "x": 0.2,
  3567. "y": 0.5,
  3568. "z": 0.8,
  3569. "w": 0.520833125
  3570. },
  3571. "_skyIllumHDR": 20000,
  3572. "_skyIllum": 20000,
  3573. "_groundAlbedoHDR": {
  3574. "__type__": "cc.Vec4",
  3575. "x": 0.2,
  3576. "y": 0.2,
  3577. "z": 0.2,
  3578. "w": 1
  3579. },
  3580. "_groundAlbedo": {
  3581. "__type__": "cc.Vec4",
  3582. "x": 0.2,
  3583. "y": 0.2,
  3584. "z": 0.2,
  3585. "w": 1
  3586. },
  3587. "_skyColorLDR": {
  3588. "__type__": "cc.Vec4",
  3589. "x": 0.452588,
  3590. "y": 0.607642,
  3591. "z": 0.755699,
  3592. "w": 0
  3593. },
  3594. "_skyIllumLDR": 0.8,
  3595. "_groundAlbedoLDR": {
  3596. "__type__": "cc.Vec4",
  3597. "x": 0.618555,
  3598. "y": 0.577848,
  3599. "z": 0.544564,
  3600. "w": 0
  3601. }
  3602. },
  3603. {
  3604. "__type__": "cc.ShadowsInfo",
  3605. "_enabled": false,
  3606. "_type": 1,
  3607. "_normal": {
  3608. "__type__": "cc.Vec3",
  3609. "x": 0,
  3610. "y": 1,
  3611. "z": 0
  3612. },
  3613. "_distance": 0,
  3614. "_planeBias": 1,
  3615. "_shadowColor": {
  3616. "__type__": "cc.Color",
  3617. "r": 76,
  3618. "g": 76,
  3619. "b": 76,
  3620. "a": 255
  3621. },
  3622. "_maxReceived": 4,
  3623. "_size": {
  3624. "__type__": "cc.Vec2",
  3625. "x": 2048,
  3626. "y": 2048
  3627. }
  3628. },
  3629. {
  3630. "__type__": "cc.SkyboxInfo",
  3631. "_envLightingType": 1,
  3632. "_envmapHDR": {
  3633. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3634. "__expectedType__": "cc.TextureCube"
  3635. },
  3636. "_envmap": {
  3637. "__uuid__": "d032ac98-05e1-4090-88bb-eb640dcb5fc1@b47c0",
  3638. "__expectedType__": "cc.TextureCube"
  3639. },
  3640. "_envmapLDR": {
  3641. "__uuid__": "6f01cf7f-81bf-4a7e-bd5d-0afc19696480@b47c0",
  3642. "__expectedType__": "cc.TextureCube"
  3643. },
  3644. "_diffuseMapHDR": null,
  3645. "_diffuseMapLDR": null,
  3646. "_enabled": false,
  3647. "_useHDR": true,
  3648. "_editableMaterial": null,
  3649. "_reflectionHDR": null,
  3650. "_reflectionLDR": null,
  3651. "_rotationAngle": 0
  3652. },
  3653. {
  3654. "__type__": "cc.FogInfo",
  3655. "_type": 0,
  3656. "_fogColor": {
  3657. "__type__": "cc.Color",
  3658. "r": 200,
  3659. "g": 200,
  3660. "b": 200,
  3661. "a": 255
  3662. },
  3663. "_enabled": false,
  3664. "_fogDensity": 0.3,
  3665. "_fogStart": 0.5,
  3666. "_fogEnd": 300,
  3667. "_fogAtten": 5,
  3668. "_fogTop": 1.5,
  3669. "_fogRange": 1.2,
  3670. "_accurate": false
  3671. },
  3672. {
  3673. "__type__": "cc.OctreeInfo",
  3674. "_enabled": false,
  3675. "_minPos": {
  3676. "__type__": "cc.Vec3",
  3677. "x": -1024,
  3678. "y": -1024,
  3679. "z": -1024
  3680. },
  3681. "_maxPos": {
  3682. "__type__": "cc.Vec3",
  3683. "x": 1024,
  3684. "y": 1024,
  3685. "z": 1024
  3686. },
  3687. "_depth": 8
  3688. },
  3689. {
  3690. "__type__": "cc.SkinInfo",
  3691. "_enabled": false,
  3692. "_blurRadius": 0.01,
  3693. "_sssIntensity": 3
  3694. },
  3695. {
  3696. "__type__": "cc.LightProbeInfo",
  3697. "_giScale": 1,
  3698. "_giSamples": 1024,
  3699. "_bounces": 2,
  3700. "_reduceRinging": 0,
  3701. "_showProbe": true,
  3702. "_showWireframe": true,
  3703. "_showConvex": false,
  3704. "_data": null,
  3705. "_lightProbeSphereVolume": 1
  3706. },
  3707. {
  3708. "__type__": "cc.PostSettingsInfo",
  3709. "_toneMappingType": 0
  3710. }
  3711. ]