game.scene 72 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "game",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "scene": {
  9. "__id__": 1
  10. }
  11. },
  12. {
  13. "__type__": "cc.Scene",
  14. "_name": "game",
  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__": 106
  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__": 107
  58. },
  59. "_id": "2cda1207-8d01-49d0-a583-3839ec2fef5b"
  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__": 6
  75. },
  76. {
  77. "__id__": 8
  78. },
  79. {
  80. "__id__": 57
  81. },
  82. {
  83. "__id__": 60
  84. },
  85. {
  86. "__id__": 86
  87. },
  88. {
  89. "__id__": 54
  90. },
  91. {
  92. "__id__": 89
  93. }
  94. ],
  95. "_active": true,
  96. "_components": [
  97. {
  98. "__id__": 102
  99. },
  100. {
  101. "__id__": 103
  102. },
  103. {
  104. "__id__": 104
  105. },
  106. {
  107. "__id__": 105
  108. }
  109. ],
  110. "_prefab": null,
  111. "_lpos": {
  112. "__type__": "cc.Vec3",
  113. "x": 187.50000000000003,
  114. "y": 405.99999999999994,
  115. "z": 0
  116. },
  117. "_lrot": {
  118. "__type__": "cc.Quat",
  119. "x": 0,
  120. "y": 0,
  121. "z": 0,
  122. "w": 1
  123. },
  124. "_lscale": {
  125. "__type__": "cc.Vec3",
  126. "x": 1,
  127. "y": 1,
  128. "z": 1
  129. },
  130. "_mobility": 0,
  131. "_layer": 33554432,
  132. "_euler": {
  133. "__type__": "cc.Vec3",
  134. "x": 0,
  135. "y": 0,
  136. "z": 0
  137. },
  138. "_id": "beI88Z2HpFELqR4T5EMHpg"
  139. },
  140. {
  141. "__type__": "cc.Node",
  142. "_name": "gameManager",
  143. "_objFlags": 0,
  144. "__editorExtras__": {},
  145. "_parent": {
  146. "__id__": 2
  147. },
  148. "_children": [],
  149. "_active": true,
  150. "_components": [
  151. {
  152. "__id__": 4
  153. },
  154. {
  155. "__id__": 5
  156. }
  157. ],
  158. "_prefab": null,
  159. "_lpos": {
  160. "__type__": "cc.Vec3",
  161. "x": 0,
  162. "y": 0,
  163. "z": 0
  164. },
  165. "_lrot": {
  166. "__type__": "cc.Quat",
  167. "x": 0,
  168. "y": 0,
  169. "z": 0,
  170. "w": 1
  171. },
  172. "_lscale": {
  173. "__type__": "cc.Vec3",
  174. "x": 1,
  175. "y": 1,
  176. "z": 1
  177. },
  178. "_mobility": 0,
  179. "_layer": 33554432,
  180. "_euler": {
  181. "__type__": "cc.Vec3",
  182. "x": 0,
  183. "y": 0,
  184. "z": 0
  185. },
  186. "_id": "0bX7wnd89NCpABB8gpOxLl"
  187. },
  188. {
  189. "__type__": "cc.UITransform",
  190. "_name": "",
  191. "_objFlags": 0,
  192. "__editorExtras__": {},
  193. "node": {
  194. "__id__": 3
  195. },
  196. "_enabled": true,
  197. "__prefab": null,
  198. "_contentSize": {
  199. "__type__": "cc.Size",
  200. "width": 100,
  201. "height": 100
  202. },
  203. "_anchorPoint": {
  204. "__type__": "cc.Vec2",
  205. "x": 0.5,
  206. "y": 0.5
  207. },
  208. "_id": "edWTBV7EpBMID2+T82UtJh"
  209. },
  210. {
  211. "__type__": "b972boiCbtNNqQEGijPBV7l",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "__editorExtras__": {},
  215. "node": {
  216. "__id__": 3
  217. },
  218. "_enabled": true,
  219. "__prefab": null,
  220. "_id": "e6BKofzD1Avqx1B0VylZJp"
  221. },
  222. {
  223. "__type__": "cc.Node",
  224. "_name": "Camera",
  225. "_objFlags": 0,
  226. "__editorExtras__": {},
  227. "_parent": {
  228. "__id__": 2
  229. },
  230. "_children": [],
  231. "_active": true,
  232. "_components": [
  233. {
  234. "__id__": 7
  235. }
  236. ],
  237. "_prefab": null,
  238. "_lpos": {
  239. "__type__": "cc.Vec3",
  240. "x": 0,
  241. "y": 0,
  242. "z": 1000
  243. },
  244. "_lrot": {
  245. "__type__": "cc.Quat",
  246. "x": 0,
  247. "y": 0,
  248. "z": 0,
  249. "w": 1
  250. },
  251. "_lscale": {
  252. "__type__": "cc.Vec3",
  253. "x": 1,
  254. "y": 1,
  255. "z": 1
  256. },
  257. "_mobility": 0,
  258. "_layer": 33554432,
  259. "_euler": {
  260. "__type__": "cc.Vec3",
  261. "x": 0,
  262. "y": 0,
  263. "z": 0
  264. },
  265. "_id": "ebFwiq8gBFaYpqYbdoDODe"
  266. },
  267. {
  268. "__type__": "cc.Camera",
  269. "_name": "",
  270. "_objFlags": 0,
  271. "__editorExtras__": {},
  272. "node": {
  273. "__id__": 6
  274. },
  275. "_enabled": true,
  276. "__prefab": null,
  277. "_projection": 0,
  278. "_priority": 0,
  279. "_fov": 45,
  280. "_fovAxis": 0,
  281. "_orthoHeight": 406,
  282. "_near": 0,
  283. "_far": 1000,
  284. "_color": {
  285. "__type__": "cc.Color",
  286. "r": 0,
  287. "g": 0,
  288. "b": 0,
  289. "a": 255
  290. },
  291. "_depth": 1,
  292. "_stencil": 0,
  293. "_clearFlags": 7,
  294. "_rect": {
  295. "__type__": "cc.Rect",
  296. "x": 0,
  297. "y": 0,
  298. "width": 1,
  299. "height": 1
  300. },
  301. "_aperture": 19,
  302. "_shutter": 7,
  303. "_iso": 0,
  304. "_screenScale": 1,
  305. "_visibility": 1108344832,
  306. "_targetTexture": null,
  307. "_postProcess": null,
  308. "_usePostProcess": false,
  309. "_cameraType": -1,
  310. "_trackingType": 0,
  311. "_id": "63WIch3o5BEYRlXzTT0oWc"
  312. },
  313. {
  314. "__type__": "cc.Node",
  315. "_name": "homepage",
  316. "_objFlags": 0,
  317. "__editorExtras__": {},
  318. "_parent": {
  319. "__id__": 2
  320. },
  321. "_children": [
  322. {
  323. "__id__": 9
  324. },
  325. {
  326. "__id__": 27
  327. },
  328. {
  329. "__id__": 31
  330. },
  331. {
  332. "__id__": 45
  333. }
  334. ],
  335. "_active": true,
  336. "_components": [
  337. {
  338. "__id__": 50
  339. },
  340. {
  341. "__id__": 51
  342. },
  343. {
  344. "__id__": 52
  345. },
  346. {
  347. "__id__": 53
  348. }
  349. ],
  350. "_prefab": null,
  351. "_lpos": {
  352. "__type__": "cc.Vec3",
  353. "x": 0,
  354. "y": 0,
  355. "z": 0
  356. },
  357. "_lrot": {
  358. "__type__": "cc.Quat",
  359. "x": 0,
  360. "y": 0,
  361. "z": 0,
  362. "w": 1
  363. },
  364. "_lscale": {
  365. "__type__": "cc.Vec3",
  366. "x": 1,
  367. "y": 1,
  368. "z": 1
  369. },
  370. "_mobility": 0,
  371. "_layer": 33554432,
  372. "_euler": {
  373. "__type__": "cc.Vec3",
  374. "x": 0,
  375. "y": 0,
  376. "z": 0
  377. },
  378. "_id": "caOPaZowBKcb3jr5xAV4Qg"
  379. },
  380. {
  381. "__type__": "cc.Node",
  382. "_name": "top",
  383. "_objFlags": 0,
  384. "__editorExtras__": {},
  385. "_parent": {
  386. "__id__": 8
  387. },
  388. "_children": [
  389. {
  390. "__id__": 10
  391. },
  392. {
  393. "__id__": 14
  394. },
  395. {
  396. "__id__": 21
  397. }
  398. ],
  399. "_active": true,
  400. "_components": [
  401. {
  402. "__id__": 25
  403. },
  404. {
  405. "__id__": 26
  406. }
  407. ],
  408. "_prefab": null,
  409. "_lpos": {
  410. "__type__": "cc.Vec3",
  411. "x": -187.5,
  412. "y": 341,
  413. "z": 0
  414. },
  415. "_lrot": {
  416. "__type__": "cc.Quat",
  417. "x": 0,
  418. "y": 0,
  419. "z": 0,
  420. "w": 1
  421. },
  422. "_lscale": {
  423. "__type__": "cc.Vec3",
  424. "x": 1,
  425. "y": 1,
  426. "z": 1
  427. },
  428. "_mobility": 0,
  429. "_layer": 33554432,
  430. "_euler": {
  431. "__type__": "cc.Vec3",
  432. "x": 0,
  433. "y": 0,
  434. "z": 0
  435. },
  436. "_id": "1a0exEy/RE+K9sTolksU2k"
  437. },
  438. {
  439. "__type__": "cc.Node",
  440. "_name": "btn_setting",
  441. "_objFlags": 0,
  442. "__editorExtras__": {},
  443. "_parent": {
  444. "__id__": 9
  445. },
  446. "_children": [],
  447. "_active": true,
  448. "_components": [
  449. {
  450. "__id__": 11
  451. },
  452. {
  453. "__id__": 12
  454. },
  455. {
  456. "__id__": 13
  457. }
  458. ],
  459. "_prefab": null,
  460. "_lpos": {
  461. "__type__": "cc.Vec3",
  462. "x": 10,
  463. "y": 0,
  464. "z": 0
  465. },
  466. "_lrot": {
  467. "__type__": "cc.Quat",
  468. "x": 0,
  469. "y": 0,
  470. "z": 0,
  471. "w": 1
  472. },
  473. "_lscale": {
  474. "__type__": "cc.Vec3",
  475. "x": 0.3,
  476. "y": 0.3,
  477. "z": 1
  478. },
  479. "_mobility": 0,
  480. "_layer": 33554432,
  481. "_euler": {
  482. "__type__": "cc.Vec3",
  483. "x": 0,
  484. "y": 0,
  485. "z": 0
  486. },
  487. "_id": "17/37r4RdKFZk91c5F7Y+0"
  488. },
  489. {
  490. "__type__": "cc.UITransform",
  491. "_name": "",
  492. "_objFlags": 0,
  493. "__editorExtras__": {},
  494. "node": {
  495. "__id__": 10
  496. },
  497. "_enabled": true,
  498. "__prefab": null,
  499. "_contentSize": {
  500. "__type__": "cc.Size",
  501. "width": 108,
  502. "height": 111
  503. },
  504. "_anchorPoint": {
  505. "__type__": "cc.Vec2",
  506. "x": 0,
  507. "y": 0.5
  508. },
  509. "_id": "6cPhUDhRdPUYYpzSyM4IGS"
  510. },
  511. {
  512. "__type__": "cc.Sprite",
  513. "_name": "",
  514. "_objFlags": 0,
  515. "__editorExtras__": {},
  516. "node": {
  517. "__id__": 10
  518. },
  519. "_enabled": true,
  520. "__prefab": null,
  521. "_customMaterial": null,
  522. "_srcBlendFactor": 2,
  523. "_dstBlendFactor": 4,
  524. "_color": {
  525. "__type__": "cc.Color",
  526. "r": 255,
  527. "g": 255,
  528. "b": 255,
  529. "a": 255
  530. },
  531. "_spriteFrame": {
  532. "__uuid__": "1a5092ab-5634-457d-b033-e39eaa8d5d11@f9941",
  533. "__expectedType__": "cc.SpriteFrame"
  534. },
  535. "_type": 0,
  536. "_fillType": 0,
  537. "_sizeMode": 2,
  538. "_fillCenter": {
  539. "__type__": "cc.Vec2",
  540. "x": 0,
  541. "y": 0
  542. },
  543. "_fillStart": 0,
  544. "_fillRange": 0,
  545. "_isTrimmedMode": true,
  546. "_useGrayscale": false,
  547. "_atlas": null,
  548. "_id": "23s4XfLi9Oeat6znN7ZQld"
  549. },
  550. {
  551. "__type__": "cc.Button",
  552. "_name": "",
  553. "_objFlags": 0,
  554. "__editorExtras__": {},
  555. "node": {
  556. "__id__": 10
  557. },
  558. "_enabled": true,
  559. "__prefab": null,
  560. "clickEvents": [],
  561. "_interactable": true,
  562. "_transition": 3,
  563. "_normalColor": {
  564. "__type__": "cc.Color",
  565. "r": 214,
  566. "g": 214,
  567. "b": 214,
  568. "a": 255
  569. },
  570. "_hoverColor": {
  571. "__type__": "cc.Color",
  572. "r": 211,
  573. "g": 211,
  574. "b": 211,
  575. "a": 255
  576. },
  577. "_pressedColor": {
  578. "__type__": "cc.Color",
  579. "r": 255,
  580. "g": 255,
  581. "b": 255,
  582. "a": 255
  583. },
  584. "_disabledColor": {
  585. "__type__": "cc.Color",
  586. "r": 124,
  587. "g": 124,
  588. "b": 124,
  589. "a": 255
  590. },
  591. "_normalSprite": {
  592. "__uuid__": "1a5092ab-5634-457d-b033-e39eaa8d5d11@f9941",
  593. "__expectedType__": "cc.SpriteFrame"
  594. },
  595. "_hoverSprite": null,
  596. "_pressedSprite": null,
  597. "_disabledSprite": null,
  598. "_duration": 0.1,
  599. "_zoomScale": 1.1,
  600. "_target": {
  601. "__id__": 10
  602. },
  603. "_id": "80Q6qXsxtJfJYtLpIYFx3a"
  604. },
  605. {
  606. "__type__": "cc.Node",
  607. "_name": "btn_coin",
  608. "_objFlags": 0,
  609. "__editorExtras__": {},
  610. "_parent": {
  611. "__id__": 9
  612. },
  613. "_children": [
  614. {
  615. "__id__": 15
  616. }
  617. ],
  618. "_active": true,
  619. "_components": [
  620. {
  621. "__id__": 18
  622. },
  623. {
  624. "__id__": 19
  625. },
  626. {
  627. "__id__": 20
  628. }
  629. ],
  630. "_prefab": null,
  631. "_lpos": {
  632. "__type__": "cc.Vec3",
  633. "x": 90,
  634. "y": 2,
  635. "z": 0
  636. },
  637. "_lrot": {
  638. "__type__": "cc.Quat",
  639. "x": 0,
  640. "y": 0,
  641. "z": 0,
  642. "w": 1
  643. },
  644. "_lscale": {
  645. "__type__": "cc.Vec3",
  646. "x": 0.3,
  647. "y": 0.3,
  648. "z": 1
  649. },
  650. "_mobility": 0,
  651. "_layer": 33554432,
  652. "_euler": {
  653. "__type__": "cc.Vec3",
  654. "x": 0,
  655. "y": 0,
  656. "z": 0
  657. },
  658. "_id": "382b8+v/FE9qlne1ZxYHeq"
  659. },
  660. {
  661. "__type__": "cc.Node",
  662. "_name": "lab_coin",
  663. "_objFlags": 0,
  664. "__editorExtras__": {},
  665. "_parent": {
  666. "__id__": 14
  667. },
  668. "_children": [],
  669. "_active": true,
  670. "_components": [
  671. {
  672. "__id__": 16
  673. },
  674. {
  675. "__id__": 17
  676. }
  677. ],
  678. "_prefab": null,
  679. "_lpos": {
  680. "__type__": "cc.Vec3",
  681. "x": 17,
  682. "y": 6,
  683. "z": 0
  684. },
  685. "_lrot": {
  686. "__type__": "cc.Quat",
  687. "x": 0,
  688. "y": 0,
  689. "z": 0,
  690. "w": 1
  691. },
  692. "_lscale": {
  693. "__type__": "cc.Vec3",
  694. "x": 3,
  695. "y": 3,
  696. "z": 1
  697. },
  698. "_mobility": 0,
  699. "_layer": 33554432,
  700. "_euler": {
  701. "__type__": "cc.Vec3",
  702. "x": 0,
  703. "y": 0,
  704. "z": 0
  705. },
  706. "_id": "a12Egd+p5DnrkzvfsfuIeB"
  707. },
  708. {
  709. "__type__": "cc.UITransform",
  710. "_name": "",
  711. "_objFlags": 0,
  712. "__editorExtras__": {},
  713. "node": {
  714. "__id__": 15
  715. },
  716. "_enabled": true,
  717. "__prefab": null,
  718. "_contentSize": {
  719. "__type__": "cc.Size",
  720. "width": 8.89651150173611,
  721. "height": 20.16
  722. },
  723. "_anchorPoint": {
  724. "__type__": "cc.Vec2",
  725. "x": 0.5,
  726. "y": 0.5
  727. },
  728. "_id": "aeR99GwutMD5n6IcUpwFVV"
  729. },
  730. {
  731. "__type__": "cc.Label",
  732. "_name": "",
  733. "_objFlags": 0,
  734. "__editorExtras__": {},
  735. "node": {
  736. "__id__": 15
  737. },
  738. "_enabled": true,
  739. "__prefab": null,
  740. "_customMaterial": null,
  741. "_srcBlendFactor": 2,
  742. "_dstBlendFactor": 4,
  743. "_color": {
  744. "__type__": "cc.Color",
  745. "r": 255,
  746. "g": 255,
  747. "b": 255,
  748. "a": 255
  749. },
  750. "_string": "0",
  751. "_horizontalAlign": 0,
  752. "_verticalAlign": 1,
  753. "_actualFontSize": 22.344827586206897,
  754. "_fontSize": 16,
  755. "_fontFamily": "Arial",
  756. "_lineHeight": 16,
  757. "_overflow": 0,
  758. "_enableWrapText": true,
  759. "_font": null,
  760. "_isSystemFontUsed": true,
  761. "_spacingX": 0,
  762. "_isItalic": false,
  763. "_isBold": false,
  764. "_isUnderline": false,
  765. "_underlineHeight": 2,
  766. "_cacheMode": 0,
  767. "_id": "21YVAk8iBAO5y3ztQCl4/J"
  768. },
  769. {
  770. "__type__": "cc.UITransform",
  771. "_name": "",
  772. "_objFlags": 0,
  773. "__editorExtras__": {},
  774. "node": {
  775. "__id__": 14
  776. },
  777. "_enabled": true,
  778. "__prefab": null,
  779. "_contentSize": {
  780. "__type__": "cc.Size",
  781. "width": 297,
  782. "height": 119
  783. },
  784. "_anchorPoint": {
  785. "__type__": "cc.Vec2",
  786. "x": 0.5,
  787. "y": 0.5
  788. },
  789. "_id": "21S/PR3vhCcbyStFNfL8nb"
  790. },
  791. {
  792. "__type__": "cc.Sprite",
  793. "_name": "",
  794. "_objFlags": 0,
  795. "__editorExtras__": {},
  796. "node": {
  797. "__id__": 14
  798. },
  799. "_enabled": true,
  800. "__prefab": null,
  801. "_customMaterial": null,
  802. "_srcBlendFactor": 2,
  803. "_dstBlendFactor": 4,
  804. "_color": {
  805. "__type__": "cc.Color",
  806. "r": 255,
  807. "g": 255,
  808. "b": 255,
  809. "a": 255
  810. },
  811. "_spriteFrame": {
  812. "__uuid__": "99c489d7-707e-48ec-ad84-ca2ab37f49c6@f9941",
  813. "__expectedType__": "cc.SpriteFrame"
  814. },
  815. "_type": 0,
  816. "_fillType": 0,
  817. "_sizeMode": 2,
  818. "_fillCenter": {
  819. "__type__": "cc.Vec2",
  820. "x": 0,
  821. "y": 0
  822. },
  823. "_fillStart": 0,
  824. "_fillRange": 0,
  825. "_isTrimmedMode": true,
  826. "_useGrayscale": false,
  827. "_atlas": null,
  828. "_id": "70UCSbUYdJyrrxuoQ7hn4g"
  829. },
  830. {
  831. "__type__": "cc.Button",
  832. "_name": "",
  833. "_objFlags": 0,
  834. "__editorExtras__": {},
  835. "node": {
  836. "__id__": 14
  837. },
  838. "_enabled": true,
  839. "__prefab": null,
  840. "clickEvents": [],
  841. "_interactable": true,
  842. "_transition": 0,
  843. "_normalColor": {
  844. "__type__": "cc.Color",
  845. "r": 214,
  846. "g": 214,
  847. "b": 214,
  848. "a": 255
  849. },
  850. "_hoverColor": {
  851. "__type__": "cc.Color",
  852. "r": 211,
  853. "g": 211,
  854. "b": 211,
  855. "a": 255
  856. },
  857. "_pressedColor": {
  858. "__type__": "cc.Color",
  859. "r": 255,
  860. "g": 255,
  861. "b": 255,
  862. "a": 255
  863. },
  864. "_disabledColor": {
  865. "__type__": "cc.Color",
  866. "r": 124,
  867. "g": 124,
  868. "b": 124,
  869. "a": 255
  870. },
  871. "_normalSprite": {
  872. "__uuid__": "99c489d7-707e-48ec-ad84-ca2ab37f49c6@f9941",
  873. "__expectedType__": "cc.SpriteFrame"
  874. },
  875. "_hoverSprite": null,
  876. "_pressedSprite": null,
  877. "_disabledSprite": null,
  878. "_duration": 0.1,
  879. "_zoomScale": 1.1,
  880. "_target": {
  881. "__id__": 14
  882. },
  883. "_id": "a1Mn67uIhAyp0yM88uKk/H"
  884. },
  885. {
  886. "__type__": "cc.Node",
  887. "_name": "btn_look_video",
  888. "_objFlags": 0,
  889. "__editorExtras__": {},
  890. "_parent": {
  891. "__id__": 9
  892. },
  893. "_children": [],
  894. "_active": true,
  895. "_components": [
  896. {
  897. "__id__": 22
  898. },
  899. {
  900. "__id__": 23
  901. },
  902. {
  903. "__id__": 24
  904. }
  905. ],
  906. "_prefab": null,
  907. "_lpos": {
  908. "__type__": "cc.Vec3",
  909. "x": 180,
  910. "y": 2,
  911. "z": 0
  912. },
  913. "_lrot": {
  914. "__type__": "cc.Quat",
  915. "x": 0,
  916. "y": 0,
  917. "z": 0,
  918. "w": 1
  919. },
  920. "_lscale": {
  921. "__type__": "cc.Vec3",
  922. "x": 0.3,
  923. "y": 0.3,
  924. "z": 1
  925. },
  926. "_mobility": 0,
  927. "_layer": 33554432,
  928. "_euler": {
  929. "__type__": "cc.Vec3",
  930. "x": 0,
  931. "y": 0,
  932. "z": 0
  933. },
  934. "_id": "68BK8ZJnVDvLly3tXKW/a2"
  935. },
  936. {
  937. "__type__": "cc.UITransform",
  938. "_name": "",
  939. "_objFlags": 0,
  940. "__editorExtras__": {},
  941. "node": {
  942. "__id__": 21
  943. },
  944. "_enabled": true,
  945. "__prefab": null,
  946. "_contentSize": {
  947. "__type__": "cc.Size",
  948. "width": 306,
  949. "height": 117
  950. },
  951. "_anchorPoint": {
  952. "__type__": "cc.Vec2",
  953. "x": 0.5,
  954. "y": 0.5
  955. },
  956. "_id": "23pygwUBlHJrD1GJaZ0ut7"
  957. },
  958. {
  959. "__type__": "cc.Sprite",
  960. "_name": "",
  961. "_objFlags": 0,
  962. "__editorExtras__": {},
  963. "node": {
  964. "__id__": 21
  965. },
  966. "_enabled": true,
  967. "__prefab": null,
  968. "_customMaterial": null,
  969. "_srcBlendFactor": 2,
  970. "_dstBlendFactor": 4,
  971. "_color": {
  972. "__type__": "cc.Color",
  973. "r": 255,
  974. "g": 255,
  975. "b": 255,
  976. "a": 255
  977. },
  978. "_spriteFrame": {
  979. "__uuid__": "e77d0e6b-7326-4347-8ece-c44b0ae4ce4b@f9941",
  980. "__expectedType__": "cc.SpriteFrame"
  981. },
  982. "_type": 0,
  983. "_fillType": 0,
  984. "_sizeMode": 2,
  985. "_fillCenter": {
  986. "__type__": "cc.Vec2",
  987. "x": 0,
  988. "y": 0
  989. },
  990. "_fillStart": 0,
  991. "_fillRange": 0,
  992. "_isTrimmedMode": true,
  993. "_useGrayscale": false,
  994. "_atlas": null,
  995. "_id": "d0mKOMTP9Iz59+WRw/Besj"
  996. },
  997. {
  998. "__type__": "cc.Button",
  999. "_name": "",
  1000. "_objFlags": 0,
  1001. "__editorExtras__": {},
  1002. "node": {
  1003. "__id__": 21
  1004. },
  1005. "_enabled": true,
  1006. "__prefab": null,
  1007. "clickEvents": [],
  1008. "_interactable": true,
  1009. "_transition": 3,
  1010. "_normalColor": {
  1011. "__type__": "cc.Color",
  1012. "r": 214,
  1013. "g": 214,
  1014. "b": 214,
  1015. "a": 255
  1016. },
  1017. "_hoverColor": {
  1018. "__type__": "cc.Color",
  1019. "r": 211,
  1020. "g": 211,
  1021. "b": 211,
  1022. "a": 255
  1023. },
  1024. "_pressedColor": {
  1025. "__type__": "cc.Color",
  1026. "r": 255,
  1027. "g": 255,
  1028. "b": 255,
  1029. "a": 255
  1030. },
  1031. "_disabledColor": {
  1032. "__type__": "cc.Color",
  1033. "r": 124,
  1034. "g": 124,
  1035. "b": 124,
  1036. "a": 255
  1037. },
  1038. "_normalSprite": {
  1039. "__uuid__": "e77d0e6b-7326-4347-8ece-c44b0ae4ce4b@f9941",
  1040. "__expectedType__": "cc.SpriteFrame"
  1041. },
  1042. "_hoverSprite": null,
  1043. "_pressedSprite": null,
  1044. "_disabledSprite": null,
  1045. "_duration": 0.1,
  1046. "_zoomScale": 1.1,
  1047. "_target": {
  1048. "__id__": 21
  1049. },
  1050. "_id": "edvSoEzmhJErwaC6uAzsQG"
  1051. },
  1052. {
  1053. "__type__": "cc.UITransform",
  1054. "_name": "",
  1055. "_objFlags": 0,
  1056. "__editorExtras__": {},
  1057. "node": {
  1058. "__id__": 9
  1059. },
  1060. "_enabled": true,
  1061. "__prefab": null,
  1062. "_contentSize": {
  1063. "__type__": "cc.Size",
  1064. "width": 375,
  1065. "height": 50
  1066. },
  1067. "_anchorPoint": {
  1068. "__type__": "cc.Vec2",
  1069. "x": 0,
  1070. "y": 0.5
  1071. },
  1072. "_id": "29O5fiLUhNMZ9CvOZt7PRf"
  1073. },
  1074. {
  1075. "__type__": "cc.Widget",
  1076. "_name": "",
  1077. "_objFlags": 0,
  1078. "__editorExtras__": {},
  1079. "node": {
  1080. "__id__": 9
  1081. },
  1082. "_enabled": true,
  1083. "__prefab": null,
  1084. "_alignFlags": 41,
  1085. "_target": null,
  1086. "_left": 0,
  1087. "_right": 0,
  1088. "_top": 40,
  1089. "_bottom": 0,
  1090. "_horizontalCenter": 0,
  1091. "_verticalCenter": 0,
  1092. "_isAbsLeft": true,
  1093. "_isAbsRight": true,
  1094. "_isAbsTop": true,
  1095. "_isAbsBottom": true,
  1096. "_isAbsHorizontalCenter": true,
  1097. "_isAbsVerticalCenter": true,
  1098. "_originalWidth": 100,
  1099. "_originalHeight": 0,
  1100. "_alignMode": 2,
  1101. "_lockFlags": 0,
  1102. "_id": "d0LhyO/VBIZZCVzCZFeKxw"
  1103. },
  1104. {
  1105. "__type__": "cc.Node",
  1106. "_name": "img_grass",
  1107. "_objFlags": 0,
  1108. "__editorExtras__": {},
  1109. "_parent": {
  1110. "__id__": 8
  1111. },
  1112. "_children": [],
  1113. "_active": true,
  1114. "_components": [
  1115. {
  1116. "__id__": 28
  1117. },
  1118. {
  1119. "__id__": 29
  1120. },
  1121. {
  1122. "__id__": 30
  1123. }
  1124. ],
  1125. "_prefab": null,
  1126. "_lpos": {
  1127. "__type__": "cc.Vec3",
  1128. "x": 0,
  1129. "y": -379,
  1130. "z": 0
  1131. },
  1132. "_lrot": {
  1133. "__type__": "cc.Quat",
  1134. "x": 0,
  1135. "y": 0,
  1136. "z": 0,
  1137. "w": 1
  1138. },
  1139. "_lscale": {
  1140. "__type__": "cc.Vec3",
  1141. "x": 0.3,
  1142. "y": 0.3,
  1143. "z": 1
  1144. },
  1145. "_mobility": 0,
  1146. "_layer": 33554432,
  1147. "_euler": {
  1148. "__type__": "cc.Vec3",
  1149. "x": 0,
  1150. "y": 0,
  1151. "z": 0
  1152. },
  1153. "_id": "8dBLfSTEZERL2+xFbugiYQ"
  1154. },
  1155. {
  1156. "__type__": "cc.UITransform",
  1157. "_name": "",
  1158. "_objFlags": 0,
  1159. "__editorExtras__": {},
  1160. "node": {
  1161. "__id__": 27
  1162. },
  1163. "_enabled": true,
  1164. "__prefab": null,
  1165. "_contentSize": {
  1166. "__type__": "cc.Size",
  1167. "width": 1119,
  1168. "height": 180
  1169. },
  1170. "_anchorPoint": {
  1171. "__type__": "cc.Vec2",
  1172. "x": 0.5,
  1173. "y": 0.5
  1174. },
  1175. "_id": "4f3itigcRFiIU54JrgzH6N"
  1176. },
  1177. {
  1178. "__type__": "cc.Sprite",
  1179. "_name": "",
  1180. "_objFlags": 0,
  1181. "__editorExtras__": {},
  1182. "node": {
  1183. "__id__": 27
  1184. },
  1185. "_enabled": true,
  1186. "__prefab": null,
  1187. "_customMaterial": null,
  1188. "_srcBlendFactor": 2,
  1189. "_dstBlendFactor": 4,
  1190. "_color": {
  1191. "__type__": "cc.Color",
  1192. "r": 255,
  1193. "g": 255,
  1194. "b": 255,
  1195. "a": 255
  1196. },
  1197. "_spriteFrame": {
  1198. "__uuid__": "156e6e8c-aaf3-4618-8f38-9065c554ba50@f9941",
  1199. "__expectedType__": "cc.SpriteFrame"
  1200. },
  1201. "_type": 0,
  1202. "_fillType": 0,
  1203. "_sizeMode": 1,
  1204. "_fillCenter": {
  1205. "__type__": "cc.Vec2",
  1206. "x": 0,
  1207. "y": 0
  1208. },
  1209. "_fillStart": 0,
  1210. "_fillRange": 0,
  1211. "_isTrimmedMode": true,
  1212. "_useGrayscale": false,
  1213. "_atlas": null,
  1214. "_id": "36jk1cTSJFepXvpSsBEXcy"
  1215. },
  1216. {
  1217. "__type__": "cc.Widget",
  1218. "_name": "",
  1219. "_objFlags": 0,
  1220. "__editorExtras__": {},
  1221. "node": {
  1222. "__id__": 27
  1223. },
  1224. "_enabled": true,
  1225. "__prefab": null,
  1226. "_alignFlags": 20,
  1227. "_target": null,
  1228. "_left": 0,
  1229. "_right": 0,
  1230. "_top": 0,
  1231. "_bottom": 0,
  1232. "_horizontalCenter": 0,
  1233. "_verticalCenter": 0,
  1234. "_isAbsLeft": true,
  1235. "_isAbsRight": true,
  1236. "_isAbsTop": true,
  1237. "_isAbsBottom": true,
  1238. "_isAbsHorizontalCenter": true,
  1239. "_isAbsVerticalCenter": true,
  1240. "_originalWidth": 0,
  1241. "_originalHeight": 0,
  1242. "_alignMode": 2,
  1243. "_lockFlags": 0,
  1244. "_id": "4caDgo4mRL55ZwFS3m4OIW"
  1245. },
  1246. {
  1247. "__type__": "cc.Node",
  1248. "_name": "ScrollView",
  1249. "_objFlags": 0,
  1250. "__editorExtras__": {},
  1251. "_parent": {
  1252. "__id__": 8
  1253. },
  1254. "_children": [
  1255. {
  1256. "__id__": 32
  1257. }
  1258. ],
  1259. "_active": true,
  1260. "_components": [
  1261. {
  1262. "__id__": 41
  1263. },
  1264. {
  1265. "__id__": 42
  1266. },
  1267. {
  1268. "__id__": 43
  1269. },
  1270. {
  1271. "__id__": 44
  1272. }
  1273. ],
  1274. "_prefab": null,
  1275. "_lpos": {
  1276. "__type__": "cc.Vec3",
  1277. "x": 0,
  1278. "y": -55,
  1279. "z": 0
  1280. },
  1281. "_lrot": {
  1282. "__type__": "cc.Quat",
  1283. "x": 0,
  1284. "y": 0,
  1285. "z": 0,
  1286. "w": 1
  1287. },
  1288. "_lscale": {
  1289. "__type__": "cc.Vec3",
  1290. "x": 1,
  1291. "y": 1,
  1292. "z": 1
  1293. },
  1294. "_mobility": 0,
  1295. "_layer": 33554432,
  1296. "_euler": {
  1297. "__type__": "cc.Vec3",
  1298. "x": 0,
  1299. "y": 0,
  1300. "z": 0
  1301. },
  1302. "_id": "92xEC0gZ9Lmpk1RL2acFKs"
  1303. },
  1304. {
  1305. "__type__": "cc.Node",
  1306. "_name": "view",
  1307. "_objFlags": 0,
  1308. "__editorExtras__": {},
  1309. "_parent": {
  1310. "__id__": 31
  1311. },
  1312. "_children": [
  1313. {
  1314. "__id__": 33
  1315. }
  1316. ],
  1317. "_active": true,
  1318. "_components": [
  1319. {
  1320. "__id__": 37
  1321. },
  1322. {
  1323. "__id__": 38
  1324. },
  1325. {
  1326. "__id__": 39
  1327. },
  1328. {
  1329. "__id__": 40
  1330. }
  1331. ],
  1332. "_prefab": null,
  1333. "_lpos": {
  1334. "__type__": "cc.Vec3",
  1335. "x": 0,
  1336. "y": 0,
  1337. "z": 0
  1338. },
  1339. "_lrot": {
  1340. "__type__": "cc.Quat",
  1341. "x": 0,
  1342. "y": 0,
  1343. "z": 0,
  1344. "w": 1
  1345. },
  1346. "_lscale": {
  1347. "__type__": "cc.Vec3",
  1348. "x": 1,
  1349. "y": 1,
  1350. "z": 1
  1351. },
  1352. "_mobility": 0,
  1353. "_layer": 33554432,
  1354. "_euler": {
  1355. "__type__": "cc.Vec3",
  1356. "x": 0,
  1357. "y": 0,
  1358. "z": 0
  1359. },
  1360. "_id": "bdu5zI/dtB+J4CpA3IroHm"
  1361. },
  1362. {
  1363. "__type__": "cc.Node",
  1364. "_name": "middle",
  1365. "_objFlags": 0,
  1366. "__editorExtras__": {},
  1367. "_parent": {
  1368. "__id__": 32
  1369. },
  1370. "_children": [],
  1371. "_active": true,
  1372. "_components": [
  1373. {
  1374. "__id__": 34
  1375. },
  1376. {
  1377. "__id__": 35
  1378. },
  1379. {
  1380. "__id__": 36
  1381. }
  1382. ],
  1383. "_prefab": null,
  1384. "_lpos": {
  1385. "__type__": "cc.Vec3",
  1386. "x": 0,
  1387. "y": 351,
  1388. "z": 0
  1389. },
  1390. "_lrot": {
  1391. "__type__": "cc.Quat",
  1392. "x": 0,
  1393. "y": 0,
  1394. "z": 0,
  1395. "w": 1
  1396. },
  1397. "_lscale": {
  1398. "__type__": "cc.Vec3",
  1399. "x": 1,
  1400. "y": 1,
  1401. "z": 1
  1402. },
  1403. "_mobility": 0,
  1404. "_layer": 33554432,
  1405. "_euler": {
  1406. "__type__": "cc.Vec3",
  1407. "x": 0,
  1408. "y": 0,
  1409. "z": 0
  1410. },
  1411. "_id": "5ai87fii5EI41bxaALMECs"
  1412. },
  1413. {
  1414. "__type__": "cc.UITransform",
  1415. "_name": "",
  1416. "_objFlags": 0,
  1417. "__editorExtras__": {},
  1418. "node": {
  1419. "__id__": 33
  1420. },
  1421. "_enabled": true,
  1422. "__prefab": null,
  1423. "_contentSize": {
  1424. "__type__": "cc.Size",
  1425. "width": 375,
  1426. "height": -20
  1427. },
  1428. "_anchorPoint": {
  1429. "__type__": "cc.Vec2",
  1430. "x": 0.5,
  1431. "y": 1
  1432. },
  1433. "_id": "34gaOU01lC5blRzosrml1w"
  1434. },
  1435. {
  1436. "__type__": "cc.Widget",
  1437. "_name": "",
  1438. "_objFlags": 0,
  1439. "__editorExtras__": {},
  1440. "node": {
  1441. "__id__": 33
  1442. },
  1443. "_enabled": true,
  1444. "__prefab": null,
  1445. "_alignFlags": 41,
  1446. "_target": null,
  1447. "_left": 0,
  1448. "_right": 0,
  1449. "_top": 0,
  1450. "_bottom": 0,
  1451. "_horizontalCenter": 0,
  1452. "_verticalCenter": 0,
  1453. "_isAbsLeft": true,
  1454. "_isAbsRight": true,
  1455. "_isAbsTop": true,
  1456. "_isAbsBottom": true,
  1457. "_isAbsHorizontalCenter": true,
  1458. "_isAbsVerticalCenter": true,
  1459. "_originalWidth": 100,
  1460. "_originalHeight": 0,
  1461. "_alignMode": 2,
  1462. "_lockFlags": 0,
  1463. "_id": "e1Eas7tdtEXrLTbBRQx0Zp"
  1464. },
  1465. {
  1466. "__type__": "cc.Layout",
  1467. "_name": "",
  1468. "_objFlags": 0,
  1469. "__editorExtras__": {},
  1470. "node": {
  1471. "__id__": 33
  1472. },
  1473. "_enabled": true,
  1474. "__prefab": null,
  1475. "_resizeMode": 1,
  1476. "_layoutType": 2,
  1477. "_cellSize": {
  1478. "__type__": "cc.Size",
  1479. "width": 40,
  1480. "height": 40
  1481. },
  1482. "_startAxis": 0,
  1483. "_paddingLeft": 0,
  1484. "_paddingRight": 0,
  1485. "_paddingTop": 0,
  1486. "_paddingBottom": 0,
  1487. "_spacingX": 0,
  1488. "_spacingY": 20,
  1489. "_verticalDirection": 1,
  1490. "_horizontalDirection": 0,
  1491. "_constraint": 0,
  1492. "_constraintNum": 2,
  1493. "_affectedByScale": false,
  1494. "_isAlign": false,
  1495. "_id": "0cVQy9wrhDKowQJ+69opgB"
  1496. },
  1497. {
  1498. "__type__": "cc.UITransform",
  1499. "_name": "",
  1500. "_objFlags": 0,
  1501. "__editorExtras__": {},
  1502. "node": {
  1503. "__id__": 32
  1504. },
  1505. "_enabled": true,
  1506. "__prefab": null,
  1507. "_contentSize": {
  1508. "__type__": "cc.Size",
  1509. "width": 375,
  1510. "height": 702
  1511. },
  1512. "_anchorPoint": {
  1513. "__type__": "cc.Vec2",
  1514. "x": 0.5,
  1515. "y": 0.5
  1516. },
  1517. "_id": "63jWEa/5hB4oIMt4vCqC8m"
  1518. },
  1519. {
  1520. "__type__": "cc.Mask",
  1521. "_name": "",
  1522. "_objFlags": 0,
  1523. "__editorExtras__": {},
  1524. "node": {
  1525. "__id__": 32
  1526. },
  1527. "_enabled": true,
  1528. "__prefab": null,
  1529. "_type": 0,
  1530. "_inverted": false,
  1531. "_segments": 64,
  1532. "_alphaThreshold": 0.1,
  1533. "_id": "2agMww/i5JkpyM/tIkcXE4"
  1534. },
  1535. {
  1536. "__type__": "cc.Graphics",
  1537. "_name": "",
  1538. "_objFlags": 0,
  1539. "__editorExtras__": {},
  1540. "node": {
  1541. "__id__": 32
  1542. },
  1543. "_enabled": true,
  1544. "__prefab": null,
  1545. "_customMaterial": null,
  1546. "_srcBlendFactor": 2,
  1547. "_dstBlendFactor": 4,
  1548. "_color": {
  1549. "__type__": "cc.Color",
  1550. "r": 255,
  1551. "g": 255,
  1552. "b": 255,
  1553. "a": 255
  1554. },
  1555. "_lineWidth": 1,
  1556. "_strokeColor": {
  1557. "__type__": "cc.Color",
  1558. "r": 0,
  1559. "g": 0,
  1560. "b": 0,
  1561. "a": 255
  1562. },
  1563. "_lineJoin": 2,
  1564. "_lineCap": 0,
  1565. "_fillColor": {
  1566. "__type__": "cc.Color",
  1567. "r": 255,
  1568. "g": 255,
  1569. "b": 255,
  1570. "a": 0
  1571. },
  1572. "_miterLimit": 10,
  1573. "_id": "cavrISFrlGX6p2suS+QDfy"
  1574. },
  1575. {
  1576. "__type__": "cc.Widget",
  1577. "_name": "",
  1578. "_objFlags": 0,
  1579. "__editorExtras__": {},
  1580. "node": {
  1581. "__id__": 32
  1582. },
  1583. "_enabled": true,
  1584. "__prefab": null,
  1585. "_alignFlags": 45,
  1586. "_target": null,
  1587. "_left": 0,
  1588. "_right": 0,
  1589. "_top": 0,
  1590. "_bottom": 0,
  1591. "_horizontalCenter": 0,
  1592. "_verticalCenter": 0,
  1593. "_isAbsLeft": true,
  1594. "_isAbsRight": true,
  1595. "_isAbsTop": true,
  1596. "_isAbsBottom": true,
  1597. "_isAbsHorizontalCenter": true,
  1598. "_isAbsVerticalCenter": true,
  1599. "_originalWidth": 240,
  1600. "_originalHeight": 250,
  1601. "_alignMode": 2,
  1602. "_lockFlags": 0,
  1603. "_id": "05x7gaOzRKXocMBnbKqrFA"
  1604. },
  1605. {
  1606. "__type__": "cc.UITransform",
  1607. "_name": "",
  1608. "_objFlags": 0,
  1609. "__editorExtras__": {},
  1610. "node": {
  1611. "__id__": 31
  1612. },
  1613. "_enabled": true,
  1614. "__prefab": null,
  1615. "_contentSize": {
  1616. "__type__": "cc.Size",
  1617. "width": 375,
  1618. "height": 702
  1619. },
  1620. "_anchorPoint": {
  1621. "__type__": "cc.Vec2",
  1622. "x": 0.5,
  1623. "y": 0.5
  1624. },
  1625. "_id": "64nK83QMhACIskhDSBP0Gb"
  1626. },
  1627. {
  1628. "__type__": "cc.Sprite",
  1629. "_name": "",
  1630. "_objFlags": 0,
  1631. "__editorExtras__": {},
  1632. "node": {
  1633. "__id__": 31
  1634. },
  1635. "_enabled": false,
  1636. "__prefab": null,
  1637. "_customMaterial": null,
  1638. "_srcBlendFactor": 2,
  1639. "_dstBlendFactor": 4,
  1640. "_color": {
  1641. "__type__": "cc.Color",
  1642. "r": 255,
  1643. "g": 255,
  1644. "b": 255,
  1645. "a": 255
  1646. },
  1647. "_spriteFrame": {
  1648. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1649. "__expectedType__": "cc.SpriteFrame"
  1650. },
  1651. "_type": 1,
  1652. "_fillType": 0,
  1653. "_sizeMode": 0,
  1654. "_fillCenter": {
  1655. "__type__": "cc.Vec2",
  1656. "x": 0,
  1657. "y": 0
  1658. },
  1659. "_fillStart": 0,
  1660. "_fillRange": 0,
  1661. "_isTrimmedMode": true,
  1662. "_useGrayscale": false,
  1663. "_atlas": null,
  1664. "_id": "98qfh5ewpMz6Y9v+NA2pSm"
  1665. },
  1666. {
  1667. "__type__": "cc.ScrollView",
  1668. "_name": "",
  1669. "_objFlags": 0,
  1670. "__editorExtras__": {},
  1671. "node": {
  1672. "__id__": 31
  1673. },
  1674. "_enabled": true,
  1675. "__prefab": null,
  1676. "bounceDuration": 0.23,
  1677. "brake": 0.75,
  1678. "elastic": true,
  1679. "inertia": true,
  1680. "horizontal": false,
  1681. "vertical": true,
  1682. "cancelInnerEvents": true,
  1683. "scrollEvents": [],
  1684. "_content": {
  1685. "__id__": 33
  1686. },
  1687. "_horizontalScrollBar": null,
  1688. "_verticalScrollBar": null,
  1689. "_id": "8bgsRjb85LKJ4bCduu9nkq"
  1690. },
  1691. {
  1692. "__type__": "cc.Widget",
  1693. "_name": "",
  1694. "_objFlags": 0,
  1695. "__editorExtras__": {},
  1696. "node": {
  1697. "__id__": 31
  1698. },
  1699. "_enabled": true,
  1700. "__prefab": null,
  1701. "_alignFlags": 45,
  1702. "_target": null,
  1703. "_left": 0,
  1704. "_right": 0,
  1705. "_top": 110,
  1706. "_bottom": 0,
  1707. "_horizontalCenter": 0,
  1708. "_verticalCenter": 0,
  1709. "_isAbsLeft": true,
  1710. "_isAbsRight": true,
  1711. "_isAbsTop": true,
  1712. "_isAbsBottom": true,
  1713. "_isAbsHorizontalCenter": true,
  1714. "_isAbsVerticalCenter": true,
  1715. "_originalWidth": 240,
  1716. "_originalHeight": 250,
  1717. "_alignMode": 2,
  1718. "_lockFlags": 0,
  1719. "_id": "13s6SIfO1Ix7R6cwPgk/OP"
  1720. },
  1721. {
  1722. "__type__": "cc.Node",
  1723. "_name": "reward_box",
  1724. "_objFlags": 0,
  1725. "__editorExtras__": {},
  1726. "_parent": {
  1727. "__id__": 8
  1728. },
  1729. "_children": [],
  1730. "_active": false,
  1731. "_components": [
  1732. {
  1733. "__id__": 46
  1734. },
  1735. {
  1736. "__id__": 47
  1737. },
  1738. {
  1739. "__id__": 48
  1740. },
  1741. {
  1742. "__id__": 49
  1743. }
  1744. ],
  1745. "_prefab": null,
  1746. "_lpos": {
  1747. "__type__": "cc.Vec3",
  1748. "x": -145,
  1749. "y": 110,
  1750. "z": 0
  1751. },
  1752. "_lrot": {
  1753. "__type__": "cc.Quat",
  1754. "x": 0,
  1755. "y": 0,
  1756. "z": 0,
  1757. "w": 1
  1758. },
  1759. "_lscale": {
  1760. "__type__": "cc.Vec3",
  1761. "x": 1,
  1762. "y": 1,
  1763. "z": 1
  1764. },
  1765. "_mobility": 0,
  1766. "_layer": 33554432,
  1767. "_euler": {
  1768. "__type__": "cc.Vec3",
  1769. "x": 0,
  1770. "y": 0,
  1771. "z": 0
  1772. },
  1773. "_id": "b26TbySLpIZq/uf+RKaJ36"
  1774. },
  1775. {
  1776. "__type__": "cc.UITransform",
  1777. "_name": "",
  1778. "_objFlags": 0,
  1779. "__editorExtras__": {},
  1780. "node": {
  1781. "__id__": 45
  1782. },
  1783. "_enabled": true,
  1784. "__prefab": null,
  1785. "_contentSize": {
  1786. "__type__": "cc.Size",
  1787. "width": 70,
  1788. "height": 70
  1789. },
  1790. "_anchorPoint": {
  1791. "__type__": "cc.Vec2",
  1792. "x": 0.5,
  1793. "y": 0.5
  1794. },
  1795. "_id": "b0sNwAFZxGQYcMnwXJYIfs"
  1796. },
  1797. {
  1798. "__type__": "cc.Sprite",
  1799. "_name": "",
  1800. "_objFlags": 0,
  1801. "__editorExtras__": {},
  1802. "node": {
  1803. "__id__": 45
  1804. },
  1805. "_enabled": true,
  1806. "__prefab": null,
  1807. "_customMaterial": null,
  1808. "_srcBlendFactor": 2,
  1809. "_dstBlendFactor": 4,
  1810. "_color": {
  1811. "__type__": "cc.Color",
  1812. "r": 255,
  1813. "g": 255,
  1814. "b": 255,
  1815. "a": 255
  1816. },
  1817. "_spriteFrame": {
  1818. "__uuid__": "df7b89a6-c7b4-4fcc-b143-aa040e22f445@f9941",
  1819. "__expectedType__": "cc.SpriteFrame"
  1820. },
  1821. "_type": 1,
  1822. "_fillType": 0,
  1823. "_sizeMode": 0,
  1824. "_fillCenter": {
  1825. "__type__": "cc.Vec2",
  1826. "x": 0,
  1827. "y": 0
  1828. },
  1829. "_fillStart": 0,
  1830. "_fillRange": 0,
  1831. "_isTrimmedMode": true,
  1832. "_useGrayscale": false,
  1833. "_atlas": null,
  1834. "_id": "36/UcEsAVJFayrOF2p9vGU"
  1835. },
  1836. {
  1837. "__type__": "cc.Button",
  1838. "_name": "",
  1839. "_objFlags": 0,
  1840. "__editorExtras__": {},
  1841. "node": {
  1842. "__id__": 45
  1843. },
  1844. "_enabled": true,
  1845. "__prefab": null,
  1846. "clickEvents": [],
  1847. "_interactable": true,
  1848. "_transition": 3,
  1849. "_normalColor": {
  1850. "__type__": "cc.Color",
  1851. "r": 255,
  1852. "g": 255,
  1853. "b": 255,
  1854. "a": 255
  1855. },
  1856. "_hoverColor": {
  1857. "__type__": "cc.Color",
  1858. "r": 211,
  1859. "g": 211,
  1860. "b": 211,
  1861. "a": 255
  1862. },
  1863. "_pressedColor": {
  1864. "__type__": "cc.Color",
  1865. "r": 255,
  1866. "g": 255,
  1867. "b": 255,
  1868. "a": 255
  1869. },
  1870. "_disabledColor": {
  1871. "__type__": "cc.Color",
  1872. "r": 124,
  1873. "g": 124,
  1874. "b": 124,
  1875. "a": 255
  1876. },
  1877. "_normalSprite": {
  1878. "__uuid__": "df7b89a6-c7b4-4fcc-b143-aa040e22f445@f9941",
  1879. "__expectedType__": "cc.SpriteFrame"
  1880. },
  1881. "_hoverSprite": null,
  1882. "_pressedSprite": null,
  1883. "_disabledSprite": null,
  1884. "_duration": 0.1,
  1885. "_zoomScale": 1.2,
  1886. "_target": null,
  1887. "_id": "16nr7lXjZF3b7GR+B20mOK"
  1888. },
  1889. {
  1890. "__type__": "17d73e2Ap9E1J8r58rA45Cw",
  1891. "_name": "",
  1892. "_objFlags": 0,
  1893. "__editorExtras__": {},
  1894. "node": {
  1895. "__id__": 45
  1896. },
  1897. "_enabled": true,
  1898. "__prefab": null,
  1899. "_id": "69zphLmERA2ItjZj/JNDRd"
  1900. },
  1901. {
  1902. "__type__": "cc.UITransform",
  1903. "_name": "",
  1904. "_objFlags": 0,
  1905. "__editorExtras__": {},
  1906. "node": {
  1907. "__id__": 8
  1908. },
  1909. "_enabled": true,
  1910. "__prefab": null,
  1911. "_contentSize": {
  1912. "__type__": "cc.Size",
  1913. "width": 375,
  1914. "height": 812
  1915. },
  1916. "_anchorPoint": {
  1917. "__type__": "cc.Vec2",
  1918. "x": 0.5,
  1919. "y": 0.5
  1920. },
  1921. "_id": "48k8wgeE9BKraKBtujaB4C"
  1922. },
  1923. {
  1924. "__type__": "cc.Widget",
  1925. "_name": "",
  1926. "_objFlags": 0,
  1927. "__editorExtras__": {},
  1928. "node": {
  1929. "__id__": 8
  1930. },
  1931. "_enabled": true,
  1932. "__prefab": null,
  1933. "_alignFlags": 45,
  1934. "_target": null,
  1935. "_left": 0,
  1936. "_right": 0,
  1937. "_top": 0,
  1938. "_bottom": 0,
  1939. "_horizontalCenter": 0,
  1940. "_verticalCenter": 0,
  1941. "_isAbsLeft": true,
  1942. "_isAbsRight": true,
  1943. "_isAbsTop": true,
  1944. "_isAbsBottom": true,
  1945. "_isAbsHorizontalCenter": true,
  1946. "_isAbsVerticalCenter": true,
  1947. "_originalWidth": 100,
  1948. "_originalHeight": 100,
  1949. "_alignMode": 2,
  1950. "_lockFlags": 0,
  1951. "_id": "68GLKV70dFCJsoDB2xpCv+"
  1952. },
  1953. {
  1954. "__type__": "cc.Sprite",
  1955. "_name": "",
  1956. "_objFlags": 0,
  1957. "__editorExtras__": {},
  1958. "node": {
  1959. "__id__": 8
  1960. },
  1961. "_enabled": true,
  1962. "__prefab": null,
  1963. "_customMaterial": null,
  1964. "_srcBlendFactor": 2,
  1965. "_dstBlendFactor": 4,
  1966. "_color": {
  1967. "__type__": "cc.Color",
  1968. "r": 255,
  1969. "g": 255,
  1970. "b": 255,
  1971. "a": 255
  1972. },
  1973. "_spriteFrame": {
  1974. "__uuid__": "b6b9a00a-d576-4bd3-a170-2306f2592137@f9941",
  1975. "__expectedType__": "cc.SpriteFrame"
  1976. },
  1977. "_type": 1,
  1978. "_fillType": 0,
  1979. "_sizeMode": 0,
  1980. "_fillCenter": {
  1981. "__type__": "cc.Vec2",
  1982. "x": 0,
  1983. "y": 0
  1984. },
  1985. "_fillStart": 0,
  1986. "_fillRange": 0,
  1987. "_isTrimmedMode": true,
  1988. "_useGrayscale": false,
  1989. "_atlas": null,
  1990. "_id": "f0PrhhsZVEJahvYDYQtwTl"
  1991. },
  1992. {
  1993. "__type__": "e3ab0CTvNdNoZZzZP2GIom6",
  1994. "_name": "",
  1995. "_objFlags": 0,
  1996. "__editorExtras__": {},
  1997. "node": {
  1998. "__id__": 8
  1999. },
  2000. "_enabled": true,
  2001. "__prefab": null,
  2002. "content": {
  2003. "__id__": 33
  2004. },
  2005. "sfList": [
  2006. {
  2007. "__uuid__": "0ab1ea1f-b887-4c5b-aed2-36b8dff31dfc@f9941",
  2008. "__expectedType__": "cc.SpriteFrame"
  2009. },
  2010. {
  2011. "__uuid__": "6fa02c2a-3642-4e62-8637-03158422f7ed@f9941",
  2012. "__expectedType__": "cc.SpriteFrame"
  2013. },
  2014. {
  2015. "__uuid__": "0a3e5c67-695b-4689-a4bb-7e82a00b6d6c@f9941",
  2016. "__expectedType__": "cc.SpriteFrame"
  2017. },
  2018. {
  2019. "__uuid__": "8b7d4bcf-c2f7-4358-b4c4-370bc5a19a16@f9941",
  2020. "__expectedType__": "cc.SpriteFrame"
  2021. },
  2022. {
  2023. "__uuid__": "82615fb6-8f74-414b-8b23-1f960ff38e3e@f9941",
  2024. "__expectedType__": "cc.SpriteFrame"
  2025. },
  2026. {
  2027. "__uuid__": "cf742531-4d07-43d1-9e53-25bba1815b79@f9941",
  2028. "__expectedType__": "cc.SpriteFrame"
  2029. },
  2030. {
  2031. "__uuid__": "3a842a12-272c-4639-8a14-86c8644ff048@f9941",
  2032. "__expectedType__": "cc.SpriteFrame"
  2033. }
  2034. ],
  2035. "btn_setting": {
  2036. "__id__": 10
  2037. },
  2038. "btn_coin": {
  2039. "__id__": 14
  2040. },
  2041. "btn_look_video": {
  2042. "__id__": 21
  2043. },
  2044. "lab_coin": {
  2045. "__id__": 15
  2046. },
  2047. "addCoinAni": {
  2048. "__uuid__": "fae22d01-0671-4d04-b61e-4a5da731ad46",
  2049. "__expectedType__": "cc.Prefab"
  2050. },
  2051. "top_node": {
  2052. "__id__": 9
  2053. },
  2054. "action_node": {
  2055. "__id__": 54
  2056. },
  2057. "item_prefab": {
  2058. "__uuid__": "b426aee1-f11c-4484-a0a7-bc11b6e1b0a5",
  2059. "__expectedType__": "cc.Prefab"
  2060. },
  2061. "reward_box": {
  2062. "__id__": 45
  2063. },
  2064. "_id": "6cRFfbHNlClrQgA8IBA7gj"
  2065. },
  2066. {
  2067. "__type__": "cc.Node",
  2068. "_name": "action_node",
  2069. "_objFlags": 0,
  2070. "__editorExtras__": {},
  2071. "_parent": {
  2072. "__id__": 2
  2073. },
  2074. "_children": [],
  2075. "_active": true,
  2076. "_components": [
  2077. {
  2078. "__id__": 55
  2079. },
  2080. {
  2081. "__id__": 56
  2082. }
  2083. ],
  2084. "_prefab": null,
  2085. "_lpos": {
  2086. "__type__": "cc.Vec3",
  2087. "x": -187.5,
  2088. "y": -406,
  2089. "z": 0
  2090. },
  2091. "_lrot": {
  2092. "__type__": "cc.Quat",
  2093. "x": 0,
  2094. "y": 0,
  2095. "z": 0,
  2096. "w": 1
  2097. },
  2098. "_lscale": {
  2099. "__type__": "cc.Vec3",
  2100. "x": 1,
  2101. "y": 1,
  2102. "z": 1
  2103. },
  2104. "_mobility": 0,
  2105. "_layer": 33554432,
  2106. "_euler": {
  2107. "__type__": "cc.Vec3",
  2108. "x": 0,
  2109. "y": 0,
  2110. "z": 0
  2111. },
  2112. "_id": "39P0jeGNBMLKZ4+t/5miHq"
  2113. },
  2114. {
  2115. "__type__": "cc.UITransform",
  2116. "_name": "",
  2117. "_objFlags": 0,
  2118. "__editorExtras__": {},
  2119. "node": {
  2120. "__id__": 54
  2121. },
  2122. "_enabled": true,
  2123. "__prefab": null,
  2124. "_contentSize": {
  2125. "__type__": "cc.Size",
  2126. "width": 375,
  2127. "height": 812
  2128. },
  2129. "_anchorPoint": {
  2130. "__type__": "cc.Vec2",
  2131. "x": 0,
  2132. "y": 0
  2133. },
  2134. "_id": "4bpEArUQxB9aNe+UEARN8d"
  2135. },
  2136. {
  2137. "__type__": "cc.Widget",
  2138. "_name": "",
  2139. "_objFlags": 0,
  2140. "__editorExtras__": {},
  2141. "node": {
  2142. "__id__": 54
  2143. },
  2144. "_enabled": true,
  2145. "__prefab": null,
  2146. "_alignFlags": 45,
  2147. "_target": null,
  2148. "_left": 0,
  2149. "_right": 0,
  2150. "_top": 0,
  2151. "_bottom": 0,
  2152. "_horizontalCenter": 0,
  2153. "_verticalCenter": 0,
  2154. "_isAbsLeft": true,
  2155. "_isAbsRight": true,
  2156. "_isAbsTop": true,
  2157. "_isAbsBottom": true,
  2158. "_isAbsHorizontalCenter": true,
  2159. "_isAbsVerticalCenter": true,
  2160. "_originalWidth": 100,
  2161. "_originalHeight": 100,
  2162. "_alignMode": 2,
  2163. "_lockFlags": 0,
  2164. "_id": "a0PpnJpDtAqo4o8NoDO8dN"
  2165. },
  2166. {
  2167. "__type__": "cc.Node",
  2168. "_name": "ui_layer",
  2169. "_objFlags": 0,
  2170. "__editorExtras__": {},
  2171. "_parent": {
  2172. "__id__": 2
  2173. },
  2174. "_children": [],
  2175. "_active": true,
  2176. "_components": [
  2177. {
  2178. "__id__": 58
  2179. },
  2180. {
  2181. "__id__": 59
  2182. }
  2183. ],
  2184. "_prefab": null,
  2185. "_lpos": {
  2186. "__type__": "cc.Vec3",
  2187. "x": 0,
  2188. "y": 0,
  2189. "z": 0
  2190. },
  2191. "_lrot": {
  2192. "__type__": "cc.Quat",
  2193. "x": 0,
  2194. "y": 0,
  2195. "z": 0,
  2196. "w": 1
  2197. },
  2198. "_lscale": {
  2199. "__type__": "cc.Vec3",
  2200. "x": 1,
  2201. "y": 1,
  2202. "z": 1
  2203. },
  2204. "_mobility": 0,
  2205. "_layer": 33554432,
  2206. "_euler": {
  2207. "__type__": "cc.Vec3",
  2208. "x": 0,
  2209. "y": 0,
  2210. "z": 0
  2211. },
  2212. "_id": "92tjfzV2NNSYi9ewhAiwd3"
  2213. },
  2214. {
  2215. "__type__": "cc.UITransform",
  2216. "_name": "",
  2217. "_objFlags": 0,
  2218. "__editorExtras__": {},
  2219. "node": {
  2220. "__id__": 57
  2221. },
  2222. "_enabled": true,
  2223. "__prefab": null,
  2224. "_contentSize": {
  2225. "__type__": "cc.Size",
  2226. "width": 375,
  2227. "height": 812
  2228. },
  2229. "_anchorPoint": {
  2230. "__type__": "cc.Vec2",
  2231. "x": 0.5,
  2232. "y": 0.5
  2233. },
  2234. "_id": "93tigdyf5FlKcS6Hci0MGx"
  2235. },
  2236. {
  2237. "__type__": "cc.Widget",
  2238. "_name": "",
  2239. "_objFlags": 0,
  2240. "__editorExtras__": {},
  2241. "node": {
  2242. "__id__": 57
  2243. },
  2244. "_enabled": true,
  2245. "__prefab": null,
  2246. "_alignFlags": 45,
  2247. "_target": null,
  2248. "_left": 0,
  2249. "_right": 0,
  2250. "_top": 0,
  2251. "_bottom": 0,
  2252. "_horizontalCenter": 0,
  2253. "_verticalCenter": 0,
  2254. "_isAbsLeft": true,
  2255. "_isAbsRight": true,
  2256. "_isAbsTop": true,
  2257. "_isAbsBottom": true,
  2258. "_isAbsHorizontalCenter": true,
  2259. "_isAbsVerticalCenter": true,
  2260. "_originalWidth": 100,
  2261. "_originalHeight": 100,
  2262. "_alignMode": 2,
  2263. "_lockFlags": 0,
  2264. "_id": "23i7H7wRRCxpXtHvm+OX9Y"
  2265. },
  2266. {
  2267. "__type__": "cc.Node",
  2268. "_name": "launch_view",
  2269. "_objFlags": 0,
  2270. "__editorExtras__": {},
  2271. "_parent": {
  2272. "__id__": 2
  2273. },
  2274. "_children": [
  2275. {
  2276. "__id__": 61
  2277. },
  2278. {
  2279. "__id__": 65
  2280. },
  2281. {
  2282. "__id__": 73
  2283. },
  2284. {
  2285. "__id__": 76
  2286. },
  2287. {
  2288. "__id__": 79
  2289. }
  2290. ],
  2291. "_active": true,
  2292. "_components": [
  2293. {
  2294. "__id__": 83
  2295. },
  2296. {
  2297. "__id__": 84
  2298. },
  2299. {
  2300. "__id__": 85
  2301. }
  2302. ],
  2303. "_prefab": null,
  2304. "_lpos": {
  2305. "__type__": "cc.Vec3",
  2306. "x": 0,
  2307. "y": 0,
  2308. "z": 0
  2309. },
  2310. "_lrot": {
  2311. "__type__": "cc.Quat",
  2312. "x": 0,
  2313. "y": 0,
  2314. "z": 0,
  2315. "w": 1
  2316. },
  2317. "_lscale": {
  2318. "__type__": "cc.Vec3",
  2319. "x": 1,
  2320. "y": 1,
  2321. "z": 1
  2322. },
  2323. "_mobility": 0,
  2324. "_layer": 33554432,
  2325. "_euler": {
  2326. "__type__": "cc.Vec3",
  2327. "x": 0,
  2328. "y": 0,
  2329. "z": 0
  2330. },
  2331. "_id": "49XqmSf8hBYIjPd31Ct2vA"
  2332. },
  2333. {
  2334. "__type__": "cc.Node",
  2335. "_name": "img_launch",
  2336. "_objFlags": 0,
  2337. "__editorExtras__": {},
  2338. "_parent": {
  2339. "__id__": 60
  2340. },
  2341. "_children": [],
  2342. "_active": true,
  2343. "_components": [
  2344. {
  2345. "__id__": 62
  2346. },
  2347. {
  2348. "__id__": 63
  2349. },
  2350. {
  2351. "__id__": 64
  2352. }
  2353. ],
  2354. "_prefab": null,
  2355. "_lpos": {
  2356. "__type__": "cc.Vec3",
  2357. "x": 0,
  2358. "y": 0,
  2359. "z": 0
  2360. },
  2361. "_lrot": {
  2362. "__type__": "cc.Quat",
  2363. "x": 0,
  2364. "y": 0,
  2365. "z": 0,
  2366. "w": 1
  2367. },
  2368. "_lscale": {
  2369. "__type__": "cc.Vec3",
  2370. "x": 1,
  2371. "y": 1,
  2372. "z": 1
  2373. },
  2374. "_mobility": 0,
  2375. "_layer": 33554432,
  2376. "_euler": {
  2377. "__type__": "cc.Vec3",
  2378. "x": 0,
  2379. "y": 0,
  2380. "z": 0
  2381. },
  2382. "_id": "2aZWjfxMZHGI9j3W6fv+BN"
  2383. },
  2384. {
  2385. "__type__": "cc.UITransform",
  2386. "_name": "",
  2387. "_objFlags": 0,
  2388. "__editorExtras__": {},
  2389. "node": {
  2390. "__id__": 61
  2391. },
  2392. "_enabled": true,
  2393. "__prefab": null,
  2394. "_contentSize": {
  2395. "__type__": "cc.Size",
  2396. "width": 375,
  2397. "height": 812
  2398. },
  2399. "_anchorPoint": {
  2400. "__type__": "cc.Vec2",
  2401. "x": 0.5,
  2402. "y": 0.5
  2403. },
  2404. "_id": "9akZz8Uc5GorDnqHuK90Px"
  2405. },
  2406. {
  2407. "__type__": "cc.Sprite",
  2408. "_name": "",
  2409. "_objFlags": 0,
  2410. "__editorExtras__": {},
  2411. "node": {
  2412. "__id__": 61
  2413. },
  2414. "_enabled": true,
  2415. "__prefab": null,
  2416. "_customMaterial": null,
  2417. "_srcBlendFactor": 2,
  2418. "_dstBlendFactor": 4,
  2419. "_color": {
  2420. "__type__": "cc.Color",
  2421. "r": 255,
  2422. "g": 255,
  2423. "b": 255,
  2424. "a": 255
  2425. },
  2426. "_spriteFrame": {
  2427. "__uuid__": "3c6293f8-0e5e-4850-98d2-fe81577871cf@f9941",
  2428. "__expectedType__": "cc.SpriteFrame"
  2429. },
  2430. "_type": 0,
  2431. "_fillType": 0,
  2432. "_sizeMode": 0,
  2433. "_fillCenter": {
  2434. "__type__": "cc.Vec2",
  2435. "x": 0,
  2436. "y": 0
  2437. },
  2438. "_fillStart": 0,
  2439. "_fillRange": 0,
  2440. "_isTrimmedMode": true,
  2441. "_useGrayscale": false,
  2442. "_atlas": null,
  2443. "_id": "2eM5djV2VFn6UoydjGwibt"
  2444. },
  2445. {
  2446. "__type__": "cc.Widget",
  2447. "_name": "",
  2448. "_objFlags": 0,
  2449. "__editorExtras__": {},
  2450. "node": {
  2451. "__id__": 61
  2452. },
  2453. "_enabled": true,
  2454. "__prefab": null,
  2455. "_alignFlags": 45,
  2456. "_target": null,
  2457. "_left": 0,
  2458. "_right": 0,
  2459. "_top": 0,
  2460. "_bottom": 0,
  2461. "_horizontalCenter": 0,
  2462. "_verticalCenter": 0,
  2463. "_isAbsLeft": true,
  2464. "_isAbsRight": true,
  2465. "_isAbsTop": true,
  2466. "_isAbsBottom": true,
  2467. "_isAbsHorizontalCenter": true,
  2468. "_isAbsVerticalCenter": true,
  2469. "_originalWidth": 375,
  2470. "_originalHeight": 812,
  2471. "_alignMode": 2,
  2472. "_lockFlags": 0,
  2473. "_id": "e9O/Ka/eBHLbFCWlultISU"
  2474. },
  2475. {
  2476. "__type__": "cc.Node",
  2477. "_name": "ProgressBar",
  2478. "_objFlags": 0,
  2479. "__editorExtras__": {},
  2480. "_parent": {
  2481. "__id__": 60
  2482. },
  2483. "_children": [
  2484. {
  2485. "__id__": 66
  2486. }
  2487. ],
  2488. "_active": true,
  2489. "_components": [
  2490. {
  2491. "__id__": 70
  2492. },
  2493. {
  2494. "__id__": 71
  2495. },
  2496. {
  2497. "__id__": 72
  2498. }
  2499. ],
  2500. "_prefab": null,
  2501. "_lpos": {
  2502. "__type__": "cc.Vec3",
  2503. "x": 0,
  2504. "y": -110.237,
  2505. "z": 0
  2506. },
  2507. "_lrot": {
  2508. "__type__": "cc.Quat",
  2509. "x": 0,
  2510. "y": 0,
  2511. "z": 0,
  2512. "w": 1
  2513. },
  2514. "_lscale": {
  2515. "__type__": "cc.Vec3",
  2516. "x": 0.3,
  2517. "y": 0.3,
  2518. "z": 1
  2519. },
  2520. "_mobility": 0,
  2521. "_layer": 33554432,
  2522. "_euler": {
  2523. "__type__": "cc.Vec3",
  2524. "x": 0,
  2525. "y": 0,
  2526. "z": 0
  2527. },
  2528. "_id": "38S3Q8XgFOpo7SixncAJ9j"
  2529. },
  2530. {
  2531. "__type__": "cc.Node",
  2532. "_name": "Bar",
  2533. "_objFlags": 0,
  2534. "__editorExtras__": {},
  2535. "_parent": {
  2536. "__id__": 65
  2537. },
  2538. "_children": [],
  2539. "_active": true,
  2540. "_components": [
  2541. {
  2542. "__id__": 67
  2543. },
  2544. {
  2545. "__id__": 68
  2546. },
  2547. {
  2548. "__id__": 69
  2549. }
  2550. ],
  2551. "_prefab": null,
  2552. "_lpos": {
  2553. "__type__": "cc.Vec3",
  2554. "x": -326.856,
  2555. "y": 4.808,
  2556. "z": 0
  2557. },
  2558. "_lrot": {
  2559. "__type__": "cc.Quat",
  2560. "x": 0,
  2561. "y": 0,
  2562. "z": 0,
  2563. "w": 1
  2564. },
  2565. "_lscale": {
  2566. "__type__": "cc.Vec3",
  2567. "x": 2.18,
  2568. "y": 1,
  2569. "z": 1
  2570. },
  2571. "_mobility": 0,
  2572. "_layer": 33554432,
  2573. "_euler": {
  2574. "__type__": "cc.Vec3",
  2575. "x": 0,
  2576. "y": 0,
  2577. "z": 0
  2578. },
  2579. "_id": "f5htDoqWRBgYez/bEKiZX1"
  2580. },
  2581. {
  2582. "__type__": "cc.UITransform",
  2583. "_name": "",
  2584. "_objFlags": 0,
  2585. "__editorExtras__": {},
  2586. "node": {
  2587. "__id__": 66
  2588. },
  2589. "_enabled": true,
  2590. "__prefab": null,
  2591. "_contentSize": {
  2592. "__type__": "cc.Size",
  2593. "width": 300,
  2594. "height": 25
  2595. },
  2596. "_anchorPoint": {
  2597. "__type__": "cc.Vec2",
  2598. "x": 0,
  2599. "y": 0.5
  2600. },
  2601. "_id": "8b0L/Dr1JJqps3VOS00XYn"
  2602. },
  2603. {
  2604. "__type__": "cc.Sprite",
  2605. "_name": "",
  2606. "_objFlags": 0,
  2607. "__editorExtras__": {},
  2608. "node": {
  2609. "__id__": 66
  2610. },
  2611. "_enabled": true,
  2612. "__prefab": null,
  2613. "_customMaterial": null,
  2614. "_srcBlendFactor": 2,
  2615. "_dstBlendFactor": 4,
  2616. "_color": {
  2617. "__type__": "cc.Color",
  2618. "r": 255,
  2619. "g": 255,
  2620. "b": 255,
  2621. "a": 255
  2622. },
  2623. "_spriteFrame": {
  2624. "__uuid__": "d98f4d29-e32d-4343-b593-b40af9e380f2@f9941",
  2625. "__expectedType__": "cc.SpriteFrame"
  2626. },
  2627. "_type": 1,
  2628. "_fillType": 0,
  2629. "_sizeMode": 0,
  2630. "_fillCenter": {
  2631. "__type__": "cc.Vec2",
  2632. "x": 0,
  2633. "y": 0
  2634. },
  2635. "_fillStart": 0,
  2636. "_fillRange": 0,
  2637. "_isTrimmedMode": true,
  2638. "_useGrayscale": false,
  2639. "_atlas": null,
  2640. "_id": "3ekREZDtRGKJIghmzZNCX9"
  2641. },
  2642. {
  2643. "__type__": "cc.Widget",
  2644. "_name": "",
  2645. "_objFlags": 0,
  2646. "__editorExtras__": {},
  2647. "node": {
  2648. "__id__": 66
  2649. },
  2650. "_enabled": false,
  2651. "__prefab": null,
  2652. "_alignFlags": 45,
  2653. "_target": null,
  2654. "_left": 0,
  2655. "_right": 0,
  2656. "_top": 0,
  2657. "_bottom": 0,
  2658. "_horizontalCenter": 0,
  2659. "_verticalCenter": 0,
  2660. "_isAbsLeft": true,
  2661. "_isAbsRight": true,
  2662. "_isAbsTop": true,
  2663. "_isAbsBottom": true,
  2664. "_isAbsHorizontalCenter": true,
  2665. "_isAbsVerticalCenter": true,
  2666. "_originalWidth": 3.5999999999999996,
  2667. "_originalHeight": 1,
  2668. "_alignMode": 2,
  2669. "_lockFlags": 0,
  2670. "_id": "b12v++2hdDNJ5CD40i7Vri"
  2671. },
  2672. {
  2673. "__type__": "cc.UITransform",
  2674. "_name": "",
  2675. "_objFlags": 0,
  2676. "__editorExtras__": {},
  2677. "node": {
  2678. "__id__": 65
  2679. },
  2680. "_enabled": true,
  2681. "__prefab": null,
  2682. "_contentSize": {
  2683. "__type__": "cc.Size",
  2684. "width": 670,
  2685. "height": 45
  2686. },
  2687. "_anchorPoint": {
  2688. "__type__": "cc.Vec2",
  2689. "x": 0.5,
  2690. "y": 0.5
  2691. },
  2692. "_id": "58VkhODXpB3pkf5HafH+5Z"
  2693. },
  2694. {
  2695. "__type__": "cc.Sprite",
  2696. "_name": "",
  2697. "_objFlags": 0,
  2698. "__editorExtras__": {},
  2699. "node": {
  2700. "__id__": 65
  2701. },
  2702. "_enabled": true,
  2703. "__prefab": null,
  2704. "_customMaterial": null,
  2705. "_srcBlendFactor": 2,
  2706. "_dstBlendFactor": 4,
  2707. "_color": {
  2708. "__type__": "cc.Color",
  2709. "r": 255,
  2710. "g": 255,
  2711. "b": 255,
  2712. "a": 255
  2713. },
  2714. "_spriteFrame": {
  2715. "__uuid__": "f878978f-4d22-4796-8044-6e1452bfde93@f9941",
  2716. "__expectedType__": "cc.SpriteFrame"
  2717. },
  2718. "_type": 1,
  2719. "_fillType": 0,
  2720. "_sizeMode": 0,
  2721. "_fillCenter": {
  2722. "__type__": "cc.Vec2",
  2723. "x": 0,
  2724. "y": 0
  2725. },
  2726. "_fillStart": 0,
  2727. "_fillRange": 0,
  2728. "_isTrimmedMode": true,
  2729. "_useGrayscale": false,
  2730. "_atlas": null,
  2731. "_id": "615U81cAdCvowEqNBlIP8K"
  2732. },
  2733. {
  2734. "__type__": "cc.ProgressBar",
  2735. "_name": "",
  2736. "_objFlags": 0,
  2737. "__editorExtras__": {},
  2738. "node": {
  2739. "__id__": 65
  2740. },
  2741. "_enabled": true,
  2742. "__prefab": null,
  2743. "_barSprite": {
  2744. "__id__": 68
  2745. },
  2746. "_mode": 0,
  2747. "_totalLength": 300,
  2748. "_progress": 1,
  2749. "_reverse": false,
  2750. "_id": "26uVnI1RlKn680UzKwKZsv"
  2751. },
  2752. {
  2753. "__type__": "cc.Node",
  2754. "_name": "lab_progress",
  2755. "_objFlags": 0,
  2756. "__editorExtras__": {},
  2757. "_parent": {
  2758. "__id__": 60
  2759. },
  2760. "_children": [],
  2761. "_active": true,
  2762. "_components": [
  2763. {
  2764. "__id__": 74
  2765. },
  2766. {
  2767. "__id__": 75
  2768. }
  2769. ],
  2770. "_prefab": null,
  2771. "_lpos": {
  2772. "__type__": "cc.Vec3",
  2773. "x": 0,
  2774. "y": -65.447,
  2775. "z": 0
  2776. },
  2777. "_lrot": {
  2778. "__type__": "cc.Quat",
  2779. "x": 0,
  2780. "y": 0,
  2781. "z": 0,
  2782. "w": 1
  2783. },
  2784. "_lscale": {
  2785. "__type__": "cc.Vec3",
  2786. "x": 1,
  2787. "y": 1,
  2788. "z": 1
  2789. },
  2790. "_mobility": 0,
  2791. "_layer": 33554432,
  2792. "_euler": {
  2793. "__type__": "cc.Vec3",
  2794. "x": 0,
  2795. "y": 0,
  2796. "z": 0
  2797. },
  2798. "_id": "3e+4wE3I1Ce56p1RBg6bvy"
  2799. },
  2800. {
  2801. "__type__": "cc.UITransform",
  2802. "_name": "",
  2803. "_objFlags": 0,
  2804. "__editorExtras__": {},
  2805. "node": {
  2806. "__id__": 73
  2807. },
  2808. "_enabled": true,
  2809. "__prefab": null,
  2810. "_contentSize": {
  2811. "__type__": "cc.Size",
  2812. "width": 87.48974910783178,
  2813. "height": 25.2
  2814. },
  2815. "_anchorPoint": {
  2816. "__type__": "cc.Vec2",
  2817. "x": 0.5,
  2818. "y": 0.5
  2819. },
  2820. "_id": "fbI4+rJhZN6bbWei5clZns"
  2821. },
  2822. {
  2823. "__type__": "cc.Label",
  2824. "_name": "",
  2825. "_objFlags": 0,
  2826. "__editorExtras__": {},
  2827. "node": {
  2828. "__id__": 73
  2829. },
  2830. "_enabled": true,
  2831. "__prefab": null,
  2832. "_customMaterial": null,
  2833. "_srcBlendFactor": 2,
  2834. "_dstBlendFactor": 4,
  2835. "_color": {
  2836. "__type__": "cc.Color",
  2837. "r": 99,
  2838. "g": 60,
  2839. "b": 0,
  2840. "a": 255
  2841. },
  2842. "_string": "加载中50%...",
  2843. "_horizontalAlign": 1,
  2844. "_verticalAlign": 1,
  2845. "_actualFontSize": 20.948275862068964,
  2846. "_fontSize": 15,
  2847. "_fontFamily": "Arial",
  2848. "_lineHeight": 20,
  2849. "_overflow": 0,
  2850. "_enableWrapText": true,
  2851. "_font": null,
  2852. "_isSystemFontUsed": true,
  2853. "_spacingX": 0,
  2854. "_isItalic": false,
  2855. "_isBold": true,
  2856. "_isUnderline": false,
  2857. "_underlineHeight": 2,
  2858. "_cacheMode": 0,
  2859. "_id": "5bVBzVxTxGO76XMaCNOOWb"
  2860. },
  2861. {
  2862. "__type__": "cc.Node",
  2863. "_name": "img_launch",
  2864. "_objFlags": 0,
  2865. "__editorExtras__": {},
  2866. "_parent": {
  2867. "__id__": 60
  2868. },
  2869. "_children": [],
  2870. "_active": true,
  2871. "_components": [
  2872. {
  2873. "__id__": 77
  2874. },
  2875. {
  2876. "__id__": 78
  2877. }
  2878. ],
  2879. "_prefab": null,
  2880. "_lpos": {
  2881. "__type__": "cc.Vec3",
  2882. "x": 0,
  2883. "y": 118.238,
  2884. "z": 0
  2885. },
  2886. "_lrot": {
  2887. "__type__": "cc.Quat",
  2888. "x": 0,
  2889. "y": 0,
  2890. "z": 0,
  2891. "w": 1
  2892. },
  2893. "_lscale": {
  2894. "__type__": "cc.Vec3",
  2895. "x": 0.3,
  2896. "y": 0.3,
  2897. "z": 1
  2898. },
  2899. "_mobility": 0,
  2900. "_layer": 33554432,
  2901. "_euler": {
  2902. "__type__": "cc.Vec3",
  2903. "x": 0,
  2904. "y": 0,
  2905. "z": 0
  2906. },
  2907. "_id": "ddEqg1/thKrIF/pbWxB2CO"
  2908. },
  2909. {
  2910. "__type__": "cc.UITransform",
  2911. "_name": "",
  2912. "_objFlags": 0,
  2913. "__editorExtras__": {},
  2914. "node": {
  2915. "__id__": 76
  2916. },
  2917. "_enabled": true,
  2918. "__prefab": null,
  2919. "_contentSize": {
  2920. "__type__": "cc.Size",
  2921. "width": 742,
  2922. "height": 657
  2923. },
  2924. "_anchorPoint": {
  2925. "__type__": "cc.Vec2",
  2926. "x": 0.5,
  2927. "y": 0.5
  2928. },
  2929. "_id": "5cxod5kvFBjrDlKGtTo01L"
  2930. },
  2931. {
  2932. "__type__": "cc.Sprite",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "__editorExtras__": {},
  2936. "node": {
  2937. "__id__": 76
  2938. },
  2939. "_enabled": true,
  2940. "__prefab": null,
  2941. "_customMaterial": null,
  2942. "_srcBlendFactor": 2,
  2943. "_dstBlendFactor": 4,
  2944. "_color": {
  2945. "__type__": "cc.Color",
  2946. "r": 255,
  2947. "g": 255,
  2948. "b": 255,
  2949. "a": 255
  2950. },
  2951. "_spriteFrame": {
  2952. "__uuid__": "e1e19303-1b3d-4628-b572-52689d574a72@f9941",
  2953. "__expectedType__": "cc.SpriteFrame"
  2954. },
  2955. "_type": 0,
  2956. "_fillType": 0,
  2957. "_sizeMode": 1,
  2958. "_fillCenter": {
  2959. "__type__": "cc.Vec2",
  2960. "x": 0,
  2961. "y": 0
  2962. },
  2963. "_fillStart": 0,
  2964. "_fillRange": 0,
  2965. "_isTrimmedMode": true,
  2966. "_useGrayscale": false,
  2967. "_atlas": null,
  2968. "_id": "10QjfbG8dOaK/Fuk5C28RJ"
  2969. },
  2970. {
  2971. "__type__": "cc.Node",
  2972. "_name": "font_des",
  2973. "_objFlags": 0,
  2974. "__editorExtras__": {},
  2975. "_parent": {
  2976. "__id__": 60
  2977. },
  2978. "_children": [],
  2979. "_active": true,
  2980. "_components": [
  2981. {
  2982. "__id__": 80
  2983. },
  2984. {
  2985. "__id__": 81
  2986. },
  2987. {
  2988. "__id__": 82
  2989. }
  2990. ],
  2991. "_prefab": null,
  2992. "_lpos": {
  2993. "__type__": "cc.Vec3",
  2994. "x": 0,
  2995. "y": -362.65,
  2996. "z": 0
  2997. },
  2998. "_lrot": {
  2999. "__type__": "cc.Quat",
  3000. "x": 0,
  3001. "y": 0,
  3002. "z": 0,
  3003. "w": 1
  3004. },
  3005. "_lscale": {
  3006. "__type__": "cc.Vec3",
  3007. "x": 0.3,
  3008. "y": 0.3,
  3009. "z": 1
  3010. },
  3011. "_mobility": 0,
  3012. "_layer": 33554432,
  3013. "_euler": {
  3014. "__type__": "cc.Vec3",
  3015. "x": 0,
  3016. "y": 0,
  3017. "z": 0
  3018. },
  3019. "_id": "bcwfetP71ATKzwvG4r3eFa"
  3020. },
  3021. {
  3022. "__type__": "cc.UITransform",
  3023. "_name": "",
  3024. "_objFlags": 0,
  3025. "__editorExtras__": {},
  3026. "node": {
  3027. "__id__": 79
  3028. },
  3029. "_enabled": true,
  3030. "__prefab": null,
  3031. "_contentSize": {
  3032. "__type__": "cc.Size",
  3033. "width": 934,
  3034. "height": 189
  3035. },
  3036. "_anchorPoint": {
  3037. "__type__": "cc.Vec2",
  3038. "x": 0.5,
  3039. "y": 0.5
  3040. },
  3041. "_id": "029KjY0DZIL7VU+0uN19+3"
  3042. },
  3043. {
  3044. "__type__": "cc.Sprite",
  3045. "_name": "",
  3046. "_objFlags": 0,
  3047. "__editorExtras__": {},
  3048. "node": {
  3049. "__id__": 79
  3050. },
  3051. "_enabled": true,
  3052. "__prefab": null,
  3053. "_customMaterial": null,
  3054. "_srcBlendFactor": 2,
  3055. "_dstBlendFactor": 4,
  3056. "_color": {
  3057. "__type__": "cc.Color",
  3058. "r": 255,
  3059. "g": 255,
  3060. "b": 255,
  3061. "a": 255
  3062. },
  3063. "_spriteFrame": {
  3064. "__uuid__": "af8a9585-a146-488f-aa3d-57550eec2de0@f9941",
  3065. "__expectedType__": "cc.SpriteFrame"
  3066. },
  3067. "_type": 0,
  3068. "_fillType": 0,
  3069. "_sizeMode": 1,
  3070. "_fillCenter": {
  3071. "__type__": "cc.Vec2",
  3072. "x": 0,
  3073. "y": 0
  3074. },
  3075. "_fillStart": 0,
  3076. "_fillRange": 0,
  3077. "_isTrimmedMode": true,
  3078. "_useGrayscale": false,
  3079. "_atlas": null,
  3080. "_id": "efJT+9ihdJlJzF4+1gDYYG"
  3081. },
  3082. {
  3083. "__type__": "cc.Widget",
  3084. "_name": "",
  3085. "_objFlags": 0,
  3086. "__editorExtras__": {},
  3087. "node": {
  3088. "__id__": 79
  3089. },
  3090. "_enabled": true,
  3091. "__prefab": null,
  3092. "_alignFlags": 4,
  3093. "_target": null,
  3094. "_left": 0,
  3095. "_right": 0,
  3096. "_top": 0,
  3097. "_bottom": 15,
  3098. "_horizontalCenter": 0,
  3099. "_verticalCenter": 0,
  3100. "_isAbsLeft": true,
  3101. "_isAbsRight": true,
  3102. "_isAbsTop": true,
  3103. "_isAbsBottom": true,
  3104. "_isAbsHorizontalCenter": true,
  3105. "_isAbsVerticalCenter": true,
  3106. "_originalWidth": 0,
  3107. "_originalHeight": 0,
  3108. "_alignMode": 2,
  3109. "_lockFlags": 0,
  3110. "_id": "8eCOFy0XVJBoG3k8PwZKjX"
  3111. },
  3112. {
  3113. "__type__": "cc.UITransform",
  3114. "_name": "",
  3115. "_objFlags": 0,
  3116. "__editorExtras__": {},
  3117. "node": {
  3118. "__id__": 60
  3119. },
  3120. "_enabled": true,
  3121. "__prefab": null,
  3122. "_contentSize": {
  3123. "__type__": "cc.Size",
  3124. "width": 375,
  3125. "height": 812
  3126. },
  3127. "_anchorPoint": {
  3128. "__type__": "cc.Vec2",
  3129. "x": 0.5,
  3130. "y": 0.5
  3131. },
  3132. "_id": "1fnn34cn9HdI7sBBcuQnZJ"
  3133. },
  3134. {
  3135. "__type__": "cc.Widget",
  3136. "_name": "",
  3137. "_objFlags": 0,
  3138. "__editorExtras__": {},
  3139. "node": {
  3140. "__id__": 60
  3141. },
  3142. "_enabled": true,
  3143. "__prefab": null,
  3144. "_alignFlags": 45,
  3145. "_target": null,
  3146. "_left": 0,
  3147. "_right": 0,
  3148. "_top": 0,
  3149. "_bottom": 0,
  3150. "_horizontalCenter": 0,
  3151. "_verticalCenter": 0,
  3152. "_isAbsLeft": true,
  3153. "_isAbsRight": true,
  3154. "_isAbsTop": true,
  3155. "_isAbsBottom": true,
  3156. "_isAbsHorizontalCenter": true,
  3157. "_isAbsVerticalCenter": true,
  3158. "_originalWidth": 100,
  3159. "_originalHeight": 100,
  3160. "_alignMode": 2,
  3161. "_lockFlags": 0,
  3162. "_id": "09kxxmYc9Li6LVAzW5XkPm"
  3163. },
  3164. {
  3165. "__type__": "a3c026WHr5EnbRhKjeozd1Z",
  3166. "_name": "",
  3167. "_objFlags": 0,
  3168. "__editorExtras__": {},
  3169. "node": {
  3170. "__id__": 60
  3171. },
  3172. "_enabled": true,
  3173. "__prefab": null,
  3174. "progress": {
  3175. "__id__": 65
  3176. },
  3177. "lab_progress": {
  3178. "__id__": 73
  3179. },
  3180. "_id": "d4ZGsTLulMmLasTBdgs7/d"
  3181. },
  3182. {
  3183. "__type__": "cc.Node",
  3184. "_name": "top_layer",
  3185. "_objFlags": 0,
  3186. "__editorExtras__": {},
  3187. "_parent": {
  3188. "__id__": 2
  3189. },
  3190. "_children": [],
  3191. "_active": true,
  3192. "_components": [
  3193. {
  3194. "__id__": 87
  3195. },
  3196. {
  3197. "__id__": 88
  3198. }
  3199. ],
  3200. "_prefab": null,
  3201. "_lpos": {
  3202. "__type__": "cc.Vec3",
  3203. "x": 0,
  3204. "y": 0,
  3205. "z": 0
  3206. },
  3207. "_lrot": {
  3208. "__type__": "cc.Quat",
  3209. "x": 0,
  3210. "y": 0,
  3211. "z": 0,
  3212. "w": 1
  3213. },
  3214. "_lscale": {
  3215. "__type__": "cc.Vec3",
  3216. "x": 1,
  3217. "y": 1,
  3218. "z": 1
  3219. },
  3220. "_mobility": 0,
  3221. "_layer": 33554432,
  3222. "_euler": {
  3223. "__type__": "cc.Vec3",
  3224. "x": 0,
  3225. "y": 0,
  3226. "z": 0
  3227. },
  3228. "_id": "75DSclrj1Pvp8gPU3IT6mt"
  3229. },
  3230. {
  3231. "__type__": "cc.UITransform",
  3232. "_name": "",
  3233. "_objFlags": 0,
  3234. "__editorExtras__": {},
  3235. "node": {
  3236. "__id__": 86
  3237. },
  3238. "_enabled": true,
  3239. "__prefab": null,
  3240. "_contentSize": {
  3241. "__type__": "cc.Size",
  3242. "width": 375,
  3243. "height": 812
  3244. },
  3245. "_anchorPoint": {
  3246. "__type__": "cc.Vec2",
  3247. "x": 0.5,
  3248. "y": 0.5
  3249. },
  3250. "_id": "24w3bTBOZAD4RCQvztIXYs"
  3251. },
  3252. {
  3253. "__type__": "cc.Widget",
  3254. "_name": "",
  3255. "_objFlags": 0,
  3256. "__editorExtras__": {},
  3257. "node": {
  3258. "__id__": 86
  3259. },
  3260. "_enabled": true,
  3261. "__prefab": null,
  3262. "_alignFlags": 45,
  3263. "_target": null,
  3264. "_left": 0,
  3265. "_right": 0,
  3266. "_top": 0,
  3267. "_bottom": 0,
  3268. "_horizontalCenter": 0,
  3269. "_verticalCenter": 0,
  3270. "_isAbsLeft": true,
  3271. "_isAbsRight": true,
  3272. "_isAbsTop": true,
  3273. "_isAbsBottom": true,
  3274. "_isAbsHorizontalCenter": true,
  3275. "_isAbsVerticalCenter": true,
  3276. "_originalWidth": 100,
  3277. "_originalHeight": 100,
  3278. "_alignMode": 2,
  3279. "_lockFlags": 0,
  3280. "_id": "ab9RT91zpHQoWG2VJwQxlL"
  3281. },
  3282. {
  3283. "__type__": "cc.Node",
  3284. "_name": "view_wait",
  3285. "_objFlags": 0,
  3286. "__editorExtras__": {},
  3287. "_parent": {
  3288. "__id__": 2
  3289. },
  3290. "_children": [
  3291. {
  3292. "__id__": 90
  3293. },
  3294. {
  3295. "__id__": 96
  3296. }
  3297. ],
  3298. "_active": false,
  3299. "_components": [
  3300. {
  3301. "__id__": 99
  3302. },
  3303. {
  3304. "__id__": 100
  3305. },
  3306. {
  3307. "__id__": 101
  3308. }
  3309. ],
  3310. "_prefab": null,
  3311. "_lpos": {
  3312. "__type__": "cc.Vec3",
  3313. "x": 0,
  3314. "y": 0,
  3315. "z": 0
  3316. },
  3317. "_lrot": {
  3318. "__type__": "cc.Quat",
  3319. "x": 0,
  3320. "y": 0,
  3321. "z": 0,
  3322. "w": 1
  3323. },
  3324. "_lscale": {
  3325. "__type__": "cc.Vec3",
  3326. "x": 1,
  3327. "y": 1,
  3328. "z": 1
  3329. },
  3330. "_mobility": 0,
  3331. "_layer": 33554432,
  3332. "_euler": {
  3333. "__type__": "cc.Vec3",
  3334. "x": 0,
  3335. "y": 0,
  3336. "z": 0
  3337. },
  3338. "_id": "2c1OObX1JKQ7GwFOGM+tcy"
  3339. },
  3340. {
  3341. "__type__": "cc.Node",
  3342. "_name": "mask",
  3343. "_objFlags": 0,
  3344. "__editorExtras__": {},
  3345. "_parent": {
  3346. "__id__": 89
  3347. },
  3348. "_children": [],
  3349. "_active": true,
  3350. "_components": [
  3351. {
  3352. "__id__": 91
  3353. },
  3354. {
  3355. "__id__": 92
  3356. },
  3357. {
  3358. "__id__": 93
  3359. },
  3360. {
  3361. "__id__": 94
  3362. },
  3363. {
  3364. "__id__": 95
  3365. }
  3366. ],
  3367. "_prefab": null,
  3368. "_lpos": {
  3369. "__type__": "cc.Vec3",
  3370. "x": 0,
  3371. "y": 0,
  3372. "z": 0
  3373. },
  3374. "_lrot": {
  3375. "__type__": "cc.Quat",
  3376. "x": 0,
  3377. "y": 0,
  3378. "z": 0,
  3379. "w": 1
  3380. },
  3381. "_lscale": {
  3382. "__type__": "cc.Vec3",
  3383. "x": 1,
  3384. "y": 1,
  3385. "z": 1
  3386. },
  3387. "_mobility": 0,
  3388. "_layer": 33554432,
  3389. "_euler": {
  3390. "__type__": "cc.Vec3",
  3391. "x": 0,
  3392. "y": 0,
  3393. "z": 0
  3394. },
  3395. "_id": "e1VdM1R1VMio1iG9hlvWuZ"
  3396. },
  3397. {
  3398. "__type__": "cc.UITransform",
  3399. "_name": "",
  3400. "_objFlags": 0,
  3401. "__editorExtras__": {},
  3402. "node": {
  3403. "__id__": 90
  3404. },
  3405. "_enabled": true,
  3406. "__prefab": null,
  3407. "_contentSize": {
  3408. "__type__": "cc.Size",
  3409. "width": 375,
  3410. "height": 812
  3411. },
  3412. "_anchorPoint": {
  3413. "__type__": "cc.Vec2",
  3414. "x": 0.5,
  3415. "y": 0.5
  3416. },
  3417. "_id": "98C+zcqoBMRIIG9Ia4c6Pw"
  3418. },
  3419. {
  3420. "__type__": "cc.Sprite",
  3421. "_name": "",
  3422. "_objFlags": 0,
  3423. "__editorExtras__": {},
  3424. "node": {
  3425. "__id__": 90
  3426. },
  3427. "_enabled": true,
  3428. "__prefab": null,
  3429. "_customMaterial": null,
  3430. "_srcBlendFactor": 2,
  3431. "_dstBlendFactor": 4,
  3432. "_color": {
  3433. "__type__": "cc.Color",
  3434. "r": 0,
  3435. "g": 0,
  3436. "b": 0,
  3437. "a": 255
  3438. },
  3439. "_spriteFrame": {
  3440. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  3441. "__expectedType__": "cc.SpriteFrame"
  3442. },
  3443. "_type": 1,
  3444. "_fillType": 0,
  3445. "_sizeMode": 0,
  3446. "_fillCenter": {
  3447. "__type__": "cc.Vec2",
  3448. "x": 0,
  3449. "y": 0
  3450. },
  3451. "_fillStart": 0,
  3452. "_fillRange": 0,
  3453. "_isTrimmedMode": true,
  3454. "_useGrayscale": false,
  3455. "_atlas": null,
  3456. "_id": "54bvtKhMZPf77Ln8fzs33L"
  3457. },
  3458. {
  3459. "__type__": "cc.Widget",
  3460. "_name": "",
  3461. "_objFlags": 0,
  3462. "__editorExtras__": {},
  3463. "node": {
  3464. "__id__": 90
  3465. },
  3466. "_enabled": true,
  3467. "__prefab": null,
  3468. "_alignFlags": 45,
  3469. "_target": null,
  3470. "_left": 0,
  3471. "_right": 0,
  3472. "_top": 0,
  3473. "_bottom": 0,
  3474. "_horizontalCenter": 0,
  3475. "_verticalCenter": 0,
  3476. "_isAbsLeft": true,
  3477. "_isAbsRight": true,
  3478. "_isAbsTop": true,
  3479. "_isAbsBottom": true,
  3480. "_isAbsHorizontalCenter": true,
  3481. "_isAbsVerticalCenter": true,
  3482. "_originalWidth": 20,
  3483. "_originalHeight": 20,
  3484. "_alignMode": 2,
  3485. "_lockFlags": 0,
  3486. "_id": "acgozZ1xNIcaqhUxd3Ty00"
  3487. },
  3488. {
  3489. "__type__": "cc.BlockInputEvents",
  3490. "_name": "",
  3491. "_objFlags": 0,
  3492. "__editorExtras__": {},
  3493. "node": {
  3494. "__id__": 90
  3495. },
  3496. "_enabled": true,
  3497. "__prefab": null,
  3498. "_id": "5apowHlTFMU61EVxwT4fWc"
  3499. },
  3500. {
  3501. "__type__": "cc.UIOpacity",
  3502. "_name": "",
  3503. "_objFlags": 0,
  3504. "__editorExtras__": {},
  3505. "node": {
  3506. "__id__": 90
  3507. },
  3508. "_enabled": true,
  3509. "__prefab": null,
  3510. "_opacity": 0,
  3511. "_id": "6fPeYdJopNKaw8F3gccIjd"
  3512. },
  3513. {
  3514. "__type__": "cc.Node",
  3515. "_name": "Label",
  3516. "_objFlags": 0,
  3517. "__editorExtras__": {},
  3518. "_parent": {
  3519. "__id__": 89
  3520. },
  3521. "_children": [],
  3522. "_active": false,
  3523. "_components": [
  3524. {
  3525. "__id__": 97
  3526. },
  3527. {
  3528. "__id__": 98
  3529. }
  3530. ],
  3531. "_prefab": null,
  3532. "_lpos": {
  3533. "__type__": "cc.Vec3",
  3534. "x": 0,
  3535. "y": 0,
  3536. "z": 0
  3537. },
  3538. "_lrot": {
  3539. "__type__": "cc.Quat",
  3540. "x": 0,
  3541. "y": 0,
  3542. "z": 0,
  3543. "w": 1
  3544. },
  3545. "_lscale": {
  3546. "__type__": "cc.Vec3",
  3547. "x": 1,
  3548. "y": 1,
  3549. "z": 1
  3550. },
  3551. "_mobility": 0,
  3552. "_layer": 33554432,
  3553. "_euler": {
  3554. "__type__": "cc.Vec3",
  3555. "x": 0,
  3556. "y": 0,
  3557. "z": 0
  3558. },
  3559. "_id": "1d0j2VjQdKJa+km4KaY0lk"
  3560. },
  3561. {
  3562. "__type__": "cc.UITransform",
  3563. "_name": "",
  3564. "_objFlags": 0,
  3565. "__editorExtras__": {},
  3566. "node": {
  3567. "__id__": 96
  3568. },
  3569. "_enabled": true,
  3570. "__prefab": null,
  3571. "_contentSize": {
  3572. "__type__": "cc.Size",
  3573. "width": 200,
  3574. "height": 25.2
  3575. },
  3576. "_anchorPoint": {
  3577. "__type__": "cc.Vec2",
  3578. "x": 0.5,
  3579. "y": 0.5
  3580. },
  3581. "_id": "d061I9wmNLL5Rb7s/KQBWY"
  3582. },
  3583. {
  3584. "__type__": "cc.Label",
  3585. "_name": "",
  3586. "_objFlags": 0,
  3587. "__editorExtras__": {},
  3588. "node": {
  3589. "__id__": 96
  3590. },
  3591. "_enabled": true,
  3592. "__prefab": null,
  3593. "_customMaterial": null,
  3594. "_srcBlendFactor": 2,
  3595. "_dstBlendFactor": 4,
  3596. "_color": {
  3597. "__type__": "cc.Color",
  3598. "r": 255,
  3599. "g": 255,
  3600. "b": 255,
  3601. "a": 255
  3602. },
  3603. "_string": "正在加载广告请稍等!",
  3604. "_horizontalAlign": 1,
  3605. "_verticalAlign": 1,
  3606. "_actualFontSize": 20,
  3607. "_fontSize": 20,
  3608. "_fontFamily": "Arial",
  3609. "_lineHeight": 20,
  3610. "_overflow": 0,
  3611. "_enableWrapText": true,
  3612. "_font": null,
  3613. "_isSystemFontUsed": true,
  3614. "_spacingX": 0,
  3615. "_isItalic": false,
  3616. "_isBold": false,
  3617. "_isUnderline": false,
  3618. "_underlineHeight": 2,
  3619. "_cacheMode": 0,
  3620. "_id": "7eU9bURWVC+bjrX0WRc65v"
  3621. },
  3622. {
  3623. "__type__": "cc.UITransform",
  3624. "_name": "",
  3625. "_objFlags": 0,
  3626. "__editorExtras__": {},
  3627. "node": {
  3628. "__id__": 89
  3629. },
  3630. "_enabled": true,
  3631. "__prefab": null,
  3632. "_contentSize": {
  3633. "__type__": "cc.Size",
  3634. "width": 375,
  3635. "height": 812
  3636. },
  3637. "_anchorPoint": {
  3638. "__type__": "cc.Vec2",
  3639. "x": 0.5,
  3640. "y": 0.5
  3641. },
  3642. "_id": "2bNRA1HQRH4pjZHkpFQi/r"
  3643. },
  3644. {
  3645. "__type__": "cc.Widget",
  3646. "_name": "",
  3647. "_objFlags": 0,
  3648. "__editorExtras__": {},
  3649. "node": {
  3650. "__id__": 89
  3651. },
  3652. "_enabled": true,
  3653. "__prefab": null,
  3654. "_alignFlags": 45,
  3655. "_target": null,
  3656. "_left": 0,
  3657. "_right": 0,
  3658. "_top": 0,
  3659. "_bottom": 0,
  3660. "_horizontalCenter": 0,
  3661. "_verticalCenter": 0,
  3662. "_isAbsLeft": true,
  3663. "_isAbsRight": true,
  3664. "_isAbsTop": true,
  3665. "_isAbsBottom": true,
  3666. "_isAbsHorizontalCenter": true,
  3667. "_isAbsVerticalCenter": true,
  3668. "_originalWidth": 100,
  3669. "_originalHeight": 100,
  3670. "_alignMode": 2,
  3671. "_lockFlags": 0,
  3672. "_id": "a5xE/Z4ZpLWY6DhgwroOXY"
  3673. },
  3674. {
  3675. "__type__": "1b7a0x4Gj5M6qbeVJ/sNqzR",
  3676. "_name": "",
  3677. "_objFlags": 0,
  3678. "__editorExtras__": {},
  3679. "node": {
  3680. "__id__": 89
  3681. },
  3682. "_enabled": true,
  3683. "__prefab": null,
  3684. "img_mask": {
  3685. "__id__": 90
  3686. },
  3687. "lab_text": {
  3688. "__id__": 96
  3689. },
  3690. "_id": "07rXQrN4tA2oyWKwaJVjhf"
  3691. },
  3692. {
  3693. "__type__": "cc.UITransform",
  3694. "_name": "",
  3695. "_objFlags": 0,
  3696. "__editorExtras__": {},
  3697. "node": {
  3698. "__id__": 2
  3699. },
  3700. "_enabled": true,
  3701. "__prefab": null,
  3702. "_contentSize": {
  3703. "__type__": "cc.Size",
  3704. "width": 375,
  3705. "height": 812
  3706. },
  3707. "_anchorPoint": {
  3708. "__type__": "cc.Vec2",
  3709. "x": 0.5,
  3710. "y": 0.5
  3711. },
  3712. "_id": "d6rUX5yfhMlKoWX2bSbawx"
  3713. },
  3714. {
  3715. "__type__": "cc.Canvas",
  3716. "_name": "",
  3717. "_objFlags": 0,
  3718. "__editorExtras__": {},
  3719. "node": {
  3720. "__id__": 2
  3721. },
  3722. "_enabled": true,
  3723. "__prefab": null,
  3724. "_cameraComponent": {
  3725. "__id__": 7
  3726. },
  3727. "_alignCanvasWithScreen": true,
  3728. "_id": "12O/ljcVlEqLmVm3U2gEOQ"
  3729. },
  3730. {
  3731. "__type__": "cc.Widget",
  3732. "_name": "",
  3733. "_objFlags": 0,
  3734. "__editorExtras__": {},
  3735. "node": {
  3736. "__id__": 2
  3737. },
  3738. "_enabled": true,
  3739. "__prefab": null,
  3740. "_alignFlags": 45,
  3741. "_target": null,
  3742. "_left": 2.842170943040401e-14,
  3743. "_right": 2.842170943040401e-14,
  3744. "_top": -5.684341886080802e-14,
  3745. "_bottom": -5.684341886080802e-14,
  3746. "_horizontalCenter": 0,
  3747. "_verticalCenter": 0,
  3748. "_isAbsLeft": true,
  3749. "_isAbsRight": true,
  3750. "_isAbsTop": true,
  3751. "_isAbsBottom": true,
  3752. "_isAbsHorizontalCenter": true,
  3753. "_isAbsVerticalCenter": true,
  3754. "_originalWidth": 0,
  3755. "_originalHeight": 0,
  3756. "_alignMode": 2,
  3757. "_lockFlags": 0,
  3758. "_id": "c5V1EV8IpMtrIvY1OE9t2u"
  3759. },
  3760. {
  3761. "__type__": "de33fWWUkdCOY9/VrwzxnV+",
  3762. "_name": "",
  3763. "_objFlags": 0,
  3764. "__editorExtras__": {},
  3765. "node": {
  3766. "__id__": 2
  3767. },
  3768. "_enabled": true,
  3769. "__prefab": null,
  3770. "g_gameManager": {
  3771. "__id__": 3
  3772. },
  3773. "uiLayer": {
  3774. "__id__": 57
  3775. },
  3776. "topLayer": {
  3777. "__id__": 86
  3778. },
  3779. "waitLayer": {
  3780. "__id__": 89
  3781. },
  3782. "_id": "f7O5J2e1NPdIkcALDc+ile"
  3783. },
  3784. {
  3785. "__type__": "cc.PrefabInfo",
  3786. "root": null,
  3787. "asset": null,
  3788. "fileId": "2cda1207-8d01-49d0-a583-3839ec2fef5b",
  3789. "instance": null,
  3790. "targetOverrides": null
  3791. },
  3792. {
  3793. "__type__": "cc.SceneGlobals",
  3794. "ambient": {
  3795. "__id__": 108
  3796. },
  3797. "shadows": {
  3798. "__id__": 109
  3799. },
  3800. "_skybox": {
  3801. "__id__": 110
  3802. },
  3803. "fog": {
  3804. "__id__": 111
  3805. },
  3806. "octree": {
  3807. "__id__": 112
  3808. },
  3809. "skin": {
  3810. "__id__": 113
  3811. },
  3812. "lightProbeInfo": {
  3813. "__id__": 114
  3814. },
  3815. "bakedWithStationaryMainLight": false,
  3816. "bakedWithHighpLightmap": false
  3817. },
  3818. {
  3819. "__type__": "cc.AmbientInfo",
  3820. "_skyColorHDR": {
  3821. "__type__": "cc.Vec4",
  3822. "x": 0,
  3823. "y": 0,
  3824. "z": 0,
  3825. "w": 0.520833125
  3826. },
  3827. "_skyColor": {
  3828. "__type__": "cc.Vec4",
  3829. "x": 0,
  3830. "y": 0,
  3831. "z": 0,
  3832. "w": 0.520833125
  3833. },
  3834. "_skyIllumHDR": 20000,
  3835. "_skyIllum": 20000,
  3836. "_groundAlbedoHDR": {
  3837. "__type__": "cc.Vec4",
  3838. "x": 0,
  3839. "y": 0,
  3840. "z": 0,
  3841. "w": 0
  3842. },
  3843. "_groundAlbedo": {
  3844. "__type__": "cc.Vec4",
  3845. "x": 0,
  3846. "y": 0,
  3847. "z": 0,
  3848. "w": 0
  3849. },
  3850. "_skyColorLDR": {
  3851. "__type__": "cc.Vec4",
  3852. "x": 0.2,
  3853. "y": 0.5,
  3854. "z": 0.8,
  3855. "w": 1
  3856. },
  3857. "_skyIllumLDR": 20000,
  3858. "_groundAlbedoLDR": {
  3859. "__type__": "cc.Vec4",
  3860. "x": 0.2,
  3861. "y": 0.2,
  3862. "z": 0.2,
  3863. "w": 1
  3864. }
  3865. },
  3866. {
  3867. "__type__": "cc.ShadowsInfo",
  3868. "_enabled": false,
  3869. "_type": 0,
  3870. "_normal": {
  3871. "__type__": "cc.Vec3",
  3872. "x": 0,
  3873. "y": 1,
  3874. "z": 0
  3875. },
  3876. "_distance": 0,
  3877. "_shadowColor": {
  3878. "__type__": "cc.Color",
  3879. "r": 76,
  3880. "g": 76,
  3881. "b": 76,
  3882. "a": 255
  3883. },
  3884. "_maxReceived": 4,
  3885. "_size": {
  3886. "__type__": "cc.Vec2",
  3887. "x": 512,
  3888. "y": 512
  3889. }
  3890. },
  3891. {
  3892. "__type__": "cc.SkyboxInfo",
  3893. "_envLightingType": 0,
  3894. "_envmapHDR": null,
  3895. "_envmap": null,
  3896. "_envmapLDR": null,
  3897. "_diffuseMapHDR": null,
  3898. "_diffuseMapLDR": null,
  3899. "_enabled": false,
  3900. "_useHDR": true,
  3901. "_editableMaterial": null,
  3902. "_reflectionHDR": null,
  3903. "_reflectionLDR": null,
  3904. "_rotationAngle": 0
  3905. },
  3906. {
  3907. "__type__": "cc.FogInfo",
  3908. "_type": 0,
  3909. "_fogColor": {
  3910. "__type__": "cc.Color",
  3911. "r": 200,
  3912. "g": 200,
  3913. "b": 200,
  3914. "a": 255
  3915. },
  3916. "_enabled": false,
  3917. "_fogDensity": 0.3,
  3918. "_fogStart": 0.5,
  3919. "_fogEnd": 300,
  3920. "_fogAtten": 5,
  3921. "_fogTop": 1.5,
  3922. "_fogRange": 1.2,
  3923. "_accurate": false
  3924. },
  3925. {
  3926. "__type__": "cc.OctreeInfo",
  3927. "_enabled": false,
  3928. "_minPos": {
  3929. "__type__": "cc.Vec3",
  3930. "x": -1024,
  3931. "y": -1024,
  3932. "z": -1024
  3933. },
  3934. "_maxPos": {
  3935. "__type__": "cc.Vec3",
  3936. "x": 1024,
  3937. "y": 1024,
  3938. "z": 1024
  3939. },
  3940. "_depth": 8
  3941. },
  3942. {
  3943. "__type__": "cc.SkinInfo",
  3944. "_enabled": false,
  3945. "_blurRadius": 0.01,
  3946. "_sssIntensity": 3
  3947. },
  3948. {
  3949. "__type__": "cc.LightProbeInfo",
  3950. "_giScale": 1,
  3951. "_giSamples": 1024,
  3952. "_bounces": 2,
  3953. "_reduceRinging": 0,
  3954. "_showProbe": true,
  3955. "_showWireframe": true,
  3956. "_showConvex": false,
  3957. "_data": null,
  3958. "_lightProbeSphereVolume": 1
  3959. }
  3960. ]