loading.scene 65 KB

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