mainScene.fire 73 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143
  1. [
  2. {
  3. "__type__": "cc.SceneAsset",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "scene": {
  8. "__id__": 1
  9. }
  10. },
  11. {
  12. "__type__": "cc.Scene",
  13. "_objFlags": 0,
  14. "_parent": null,
  15. "_children": [
  16. {
  17. "__id__": 2
  18. },
  19. {
  20. "__id__": 81
  21. }
  22. ],
  23. "_active": false,
  24. "_components": [],
  25. "_prefab": null,
  26. "_opacity": 255,
  27. "_color": {
  28. "__type__": "cc.Color",
  29. "r": 255,
  30. "g": 255,
  31. "b": 255,
  32. "a": 255
  33. },
  34. "_contentSize": {
  35. "__type__": "cc.Size",
  36. "width": 0,
  37. "height": 0
  38. },
  39. "_anchorPoint": {
  40. "__type__": "cc.Vec2",
  41. "x": 0,
  42. "y": 0
  43. },
  44. "_trs": {
  45. "__type__": "TypedArray",
  46. "ctor": "Float64Array",
  47. "array": [
  48. 0,
  49. 0,
  50. 0,
  51. 0,
  52. 0,
  53. 0,
  54. 1,
  55. 1,
  56. 1,
  57. 1
  58. ]
  59. },
  60. "_is3DNode": true,
  61. "_groupIndex": 0,
  62. "groupIndex": 0,
  63. "autoReleaseAssets": true,
  64. "_id": "2fe49f98-e4ed-4f93-bfb6-e8fe5b1d5bd4"
  65. },
  66. {
  67. "__type__": "cc.Node",
  68. "_name": "Canvas",
  69. "_objFlags": 0,
  70. "_parent": {
  71. "__id__": 1
  72. },
  73. "_children": [
  74. {
  75. "__id__": 3
  76. },
  77. {
  78. "__id__": 5
  79. },
  80. {
  81. "__id__": 7
  82. },
  83. {
  84. "__id__": 23
  85. },
  86. {
  87. "__id__": 72
  88. },
  89. {
  90. "__id__": 75
  91. }
  92. ],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 78
  97. },
  98. {
  99. "__id__": 79
  100. },
  101. {
  102. "__id__": 80
  103. }
  104. ],
  105. "_prefab": null,
  106. "_opacity": 255,
  107. "_color": {
  108. "__type__": "cc.Color",
  109. "r": 255,
  110. "g": 255,
  111. "b": 255,
  112. "a": 255
  113. },
  114. "_contentSize": {
  115. "__type__": "cc.Size",
  116. "width": 720,
  117. "height": 1280
  118. },
  119. "_anchorPoint": {
  120. "__type__": "cc.Vec2",
  121. "x": 0.5,
  122. "y": 0.5
  123. },
  124. "_trs": {
  125. "__type__": "TypedArray",
  126. "ctor": "Float64Array",
  127. "array": [
  128. 360,
  129. 640,
  130. 0,
  131. 0,
  132. 0,
  133. 0,
  134. 1,
  135. 1,
  136. 1,
  137. 1
  138. ]
  139. },
  140. "_eulerAngles": {
  141. "__type__": "cc.Vec3",
  142. "x": 0,
  143. "y": 0,
  144. "z": 0
  145. },
  146. "_skewX": 0,
  147. "_skewY": 0,
  148. "_is3DNode": false,
  149. "_groupIndex": 0,
  150. "groupIndex": 0,
  151. "_id": "a5esZu+45LA5mBpvttspPD"
  152. },
  153. {
  154. "__type__": "cc.Node",
  155. "_name": "Main Camera",
  156. "_objFlags": 0,
  157. "_parent": {
  158. "__id__": 2
  159. },
  160. "_children": [],
  161. "_active": true,
  162. "_components": [
  163. {
  164. "__id__": 4
  165. }
  166. ],
  167. "_prefab": null,
  168. "_opacity": 255,
  169. "_color": {
  170. "__type__": "cc.Color",
  171. "r": 255,
  172. "g": 255,
  173. "b": 255,
  174. "a": 255
  175. },
  176. "_contentSize": {
  177. "__type__": "cc.Size",
  178. "width": 960,
  179. "height": 640
  180. },
  181. "_anchorPoint": {
  182. "__type__": "cc.Vec2",
  183. "x": 0.5,
  184. "y": 0.5
  185. },
  186. "_trs": {
  187. "__type__": "TypedArray",
  188. "ctor": "Float64Array",
  189. "array": [
  190. 0,
  191. 0,
  192. 0,
  193. 0,
  194. 0,
  195. 0,
  196. 1,
  197. 1,
  198. 1,
  199. 1
  200. ]
  201. },
  202. "_eulerAngles": {
  203. "__type__": "cc.Vec3",
  204. "x": 0,
  205. "y": 0,
  206. "z": 0
  207. },
  208. "_skewX": 0,
  209. "_skewY": 0,
  210. "_is3DNode": false,
  211. "_groupIndex": 0,
  212. "groupIndex": 0,
  213. "_id": "e1WoFrQ79G7r4ZuQE3HlNb"
  214. },
  215. {
  216. "__type__": "cc.Camera",
  217. "_name": "",
  218. "_objFlags": 0,
  219. "node": {
  220. "__id__": 3
  221. },
  222. "_enabled": true,
  223. "_cullingMask": 4294967295,
  224. "_clearFlags": 7,
  225. "_backgroundColor": {
  226. "__type__": "cc.Color",
  227. "r": 0,
  228. "g": 0,
  229. "b": 0,
  230. "a": 255
  231. },
  232. "_depth": -1,
  233. "_zoomRatio": 1,
  234. "_targetTexture": null,
  235. "_fov": 60,
  236. "_orthoSize": 10,
  237. "_nearClip": 1,
  238. "_farClip": 4096,
  239. "_ortho": true,
  240. "_rect": {
  241. "__type__": "cc.Rect",
  242. "x": 0,
  243. "y": 0,
  244. "width": 1,
  245. "height": 1
  246. },
  247. "_renderStages": 1,
  248. "_alignWithScreen": true,
  249. "_id": "81GN3uXINKVLeW4+iKSlim"
  250. },
  251. {
  252. "__type__": "cc.Node",
  253. "_name": "bg",
  254. "_objFlags": 0,
  255. "_parent": {
  256. "__id__": 2
  257. },
  258. "_children": [],
  259. "_active": true,
  260. "_components": [
  261. {
  262. "__id__": 6
  263. }
  264. ],
  265. "_prefab": null,
  266. "_opacity": 255,
  267. "_color": {
  268. "__type__": "cc.Color",
  269. "r": 255,
  270. "g": 255,
  271. "b": 255,
  272. "a": 255
  273. },
  274. "_contentSize": {
  275. "__type__": "cc.Size",
  276. "width": 720,
  277. "height": 1800
  278. },
  279. "_anchorPoint": {
  280. "__type__": "cc.Vec2",
  281. "x": 0.5,
  282. "y": 0.5
  283. },
  284. "_trs": {
  285. "__type__": "TypedArray",
  286. "ctor": "Float64Array",
  287. "array": [
  288. 0,
  289. 0,
  290. 0,
  291. 0,
  292. 0,
  293. 0,
  294. 1,
  295. 1,
  296. 1,
  297. 1
  298. ]
  299. },
  300. "_eulerAngles": {
  301. "__type__": "cc.Vec3",
  302. "x": 0,
  303. "y": 0,
  304. "z": 0
  305. },
  306. "_skewX": 0,
  307. "_skewY": 0,
  308. "_is3DNode": false,
  309. "_groupIndex": 0,
  310. "groupIndex": 0,
  311. "_id": "35CrxFIelGGqYUIm8BU622"
  312. },
  313. {
  314. "__type__": "cc.Sprite",
  315. "_name": "",
  316. "_objFlags": 0,
  317. "node": {
  318. "__id__": 5
  319. },
  320. "_enabled": true,
  321. "_materials": [
  322. {
  323. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  324. }
  325. ],
  326. "_srcBlendFactor": 770,
  327. "_dstBlendFactor": 771,
  328. "_spriteFrame": {
  329. "__uuid__": "e4c35dc3-a34a-40d6-904a-3b5aa728a974"
  330. },
  331. "_type": 0,
  332. "_sizeMode": 1,
  333. "_fillType": 0,
  334. "_fillCenter": {
  335. "__type__": "cc.Vec2",
  336. "x": 0,
  337. "y": 0
  338. },
  339. "_fillStart": 0,
  340. "_fillRange": 0,
  341. "_isTrimmedMode": true,
  342. "_atlas": null,
  343. "_id": "98ut0I3BBH2b/rbUWBsZmG"
  344. },
  345. {
  346. "__type__": "cc.Node",
  347. "_name": "loadLayer",
  348. "_objFlags": 0,
  349. "_parent": {
  350. "__id__": 2
  351. },
  352. "_children": [
  353. {
  354. "__id__": 8
  355. }
  356. ],
  357. "_active": false,
  358. "_components": [
  359. {
  360. "__id__": 21
  361. },
  362. {
  363. "__id__": 22
  364. }
  365. ],
  366. "_prefab": null,
  367. "_opacity": 255,
  368. "_color": {
  369. "__type__": "cc.Color",
  370. "r": 255,
  371. "g": 255,
  372. "b": 255,
  373. "a": 255
  374. },
  375. "_contentSize": {
  376. "__type__": "cc.Size",
  377. "width": 0,
  378. "height": 0
  379. },
  380. "_anchorPoint": {
  381. "__type__": "cc.Vec2",
  382. "x": 0.5,
  383. "y": 0.5
  384. },
  385. "_trs": {
  386. "__type__": "TypedArray",
  387. "ctor": "Float64Array",
  388. "array": [
  389. 0,
  390. -321.94499999999994,
  391. 0,
  392. 0,
  393. 0,
  394. 0,
  395. 1,
  396. 1,
  397. 1,
  398. 1
  399. ]
  400. },
  401. "_eulerAngles": {
  402. "__type__": "cc.Vec3",
  403. "x": 0,
  404. "y": 0,
  405. "z": 0
  406. },
  407. "_skewX": 0,
  408. "_skewY": 0,
  409. "_is3DNode": false,
  410. "_groupIndex": 0,
  411. "groupIndex": 0,
  412. "_id": "182xiZf4lPd6eFaPV5CJtT"
  413. },
  414. {
  415. "__type__": "cc.Node",
  416. "_name": "bar",
  417. "_objFlags": 0,
  418. "_parent": {
  419. "__id__": 7
  420. },
  421. "_children": [
  422. {
  423. "__id__": 9
  424. },
  425. {
  426. "__id__": 11
  427. }
  428. ],
  429. "_active": true,
  430. "_components": [
  431. {
  432. "__id__": 19
  433. },
  434. {
  435. "__id__": 20
  436. }
  437. ],
  438. "_prefab": null,
  439. "_opacity": 255,
  440. "_color": {
  441. "__type__": "cc.Color",
  442. "r": 255,
  443. "g": 255,
  444. "b": 255,
  445. "a": 255
  446. },
  447. "_contentSize": {
  448. "__type__": "cc.Size",
  449. "width": 508,
  450. "height": 71
  451. },
  452. "_anchorPoint": {
  453. "__type__": "cc.Vec2",
  454. "x": 0.5,
  455. "y": 0.5
  456. },
  457. "_trs": {
  458. "__type__": "TypedArray",
  459. "ctor": "Float64Array",
  460. "array": [
  461. 0,
  462. -80,
  463. 0,
  464. 0,
  465. 0,
  466. 0,
  467. 1,
  468. 1,
  469. 1,
  470. 1
  471. ]
  472. },
  473. "_eulerAngles": {
  474. "__type__": "cc.Vec3",
  475. "x": 0,
  476. "y": 0,
  477. "z": 0
  478. },
  479. "_skewX": 0,
  480. "_skewY": 0,
  481. "_is3DNode": false,
  482. "_groupIndex": 0,
  483. "groupIndex": 0,
  484. "_id": "91ATWmCqNGD62UR+1/2BDa"
  485. },
  486. {
  487. "__type__": "cc.Node",
  488. "_name": "pro",
  489. "_objFlags": 0,
  490. "_parent": {
  491. "__id__": 8
  492. },
  493. "_children": [],
  494. "_active": true,
  495. "_components": [
  496. {
  497. "__id__": 10
  498. }
  499. ],
  500. "_prefab": null,
  501. "_opacity": 255,
  502. "_color": {
  503. "__type__": "cc.Color",
  504. "r": 255,
  505. "g": 255,
  506. "b": 255,
  507. "a": 255
  508. },
  509. "_contentSize": {
  510. "__type__": "cc.Size",
  511. "width": 494,
  512. "height": 60
  513. },
  514. "_anchorPoint": {
  515. "__type__": "cc.Vec2",
  516. "x": 0.5,
  517. "y": 0.5
  518. },
  519. "_trs": {
  520. "__type__": "TypedArray",
  521. "ctor": "Float64Array",
  522. "array": [
  523. 0,
  524. 0,
  525. 0,
  526. 0,
  527. 0,
  528. 0,
  529. 1,
  530. 1,
  531. 1,
  532. 1
  533. ]
  534. },
  535. "_eulerAngles": {
  536. "__type__": "cc.Vec3",
  537. "x": 0,
  538. "y": 0,
  539. "z": 0
  540. },
  541. "_skewX": 0,
  542. "_skewY": 0,
  543. "_is3DNode": false,
  544. "_groupIndex": 0,
  545. "groupIndex": 0,
  546. "_id": "82bqb4+xlGvbUMkb4QLoc2"
  547. },
  548. {
  549. "__type__": "cc.Sprite",
  550. "_name": "",
  551. "_objFlags": 0,
  552. "node": {
  553. "__id__": 9
  554. },
  555. "_enabled": true,
  556. "_materials": [
  557. {
  558. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  559. }
  560. ],
  561. "_srcBlendFactor": 770,
  562. "_dstBlendFactor": 771,
  563. "_spriteFrame": {
  564. "__uuid__": "97cb3151-f33f-4cc4-a905-07bdc250ab6b"
  565. },
  566. "_type": 3,
  567. "_sizeMode": 1,
  568. "_fillType": 0,
  569. "_fillCenter": {
  570. "__type__": "cc.Vec2",
  571. "x": 0,
  572. "y": 0
  573. },
  574. "_fillStart": 0,
  575. "_fillRange": 0.1,
  576. "_isTrimmedMode": true,
  577. "_atlas": null,
  578. "_id": "3cArPrW1xL7r3uzwImckQy"
  579. },
  580. {
  581. "__type__": "cc.Node",
  582. "_name": "zi_Jiazai",
  583. "_objFlags": 0,
  584. "_parent": {
  585. "__id__": 8
  586. },
  587. "_children": [
  588. {
  589. "__id__": 12
  590. },
  591. {
  592. "__id__": 14
  593. },
  594. {
  595. "__id__": 16
  596. }
  597. ],
  598. "_active": true,
  599. "_components": [
  600. {
  601. "__id__": 18
  602. }
  603. ],
  604. "_prefab": null,
  605. "_opacity": 255,
  606. "_color": {
  607. "__type__": "cc.Color",
  608. "r": 255,
  609. "g": 255,
  610. "b": 255,
  611. "a": 255
  612. },
  613. "_contentSize": {
  614. "__type__": "cc.Size",
  615. "width": 118,
  616. "height": 40
  617. },
  618. "_anchorPoint": {
  619. "__type__": "cc.Vec2",
  620. "x": 0.5,
  621. "y": 0.5
  622. },
  623. "_trs": {
  624. "__type__": "TypedArray",
  625. "ctor": "Float64Array",
  626. "array": [
  627. 0,
  628. 67.534,
  629. 0,
  630. 0,
  631. 0,
  632. 0,
  633. 1,
  634. 1,
  635. 1,
  636. 1
  637. ]
  638. },
  639. "_eulerAngles": {
  640. "__type__": "cc.Vec3",
  641. "x": 0,
  642. "y": 0,
  643. "z": 0
  644. },
  645. "_skewX": 0,
  646. "_skewY": 0,
  647. "_is3DNode": false,
  648. "_groupIndex": 0,
  649. "groupIndex": 0,
  650. "_id": "6aSfmbbvhLG4WsoJaCgG6o"
  651. },
  652. {
  653. "__type__": "cc.Node",
  654. "_name": "dian",
  655. "_objFlags": 0,
  656. "_parent": {
  657. "__id__": 11
  658. },
  659. "_children": [],
  660. "_active": true,
  661. "_components": [
  662. {
  663. "__id__": 13
  664. }
  665. ],
  666. "_prefab": null,
  667. "_opacity": 255,
  668. "_color": {
  669. "__type__": "cc.Color",
  670. "r": 255,
  671. "g": 255,
  672. "b": 255,
  673. "a": 255
  674. },
  675. "_contentSize": {
  676. "__type__": "cc.Size",
  677. "width": 14,
  678. "height": 14
  679. },
  680. "_anchorPoint": {
  681. "__type__": "cc.Vec2",
  682. "x": 0.5,
  683. "y": 0.5
  684. },
  685. "_trs": {
  686. "__type__": "TypedArray",
  687. "ctor": "Float64Array",
  688. "array": [
  689. 69.131,
  690. -13.307,
  691. 0,
  692. 0,
  693. 0,
  694. 0,
  695. 1,
  696. 1,
  697. 1,
  698. 1
  699. ]
  700. },
  701. "_eulerAngles": {
  702. "__type__": "cc.Vec3",
  703. "x": 0,
  704. "y": 0,
  705. "z": 0
  706. },
  707. "_skewX": 0,
  708. "_skewY": 0,
  709. "_is3DNode": false,
  710. "_groupIndex": 0,
  711. "groupIndex": 0,
  712. "_id": "68whSW7rxCkIy6NBwti2zP"
  713. },
  714. {
  715. "__type__": "cc.Sprite",
  716. "_name": "",
  717. "_objFlags": 0,
  718. "node": {
  719. "__id__": 12
  720. },
  721. "_enabled": true,
  722. "_materials": [
  723. {
  724. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  725. }
  726. ],
  727. "_srcBlendFactor": 770,
  728. "_dstBlendFactor": 771,
  729. "_spriteFrame": {
  730. "__uuid__": "37b2059e-2b27-4675-885c-b6bc96d1420e"
  731. },
  732. "_type": 0,
  733. "_sizeMode": 1,
  734. "_fillType": 0,
  735. "_fillCenter": {
  736. "__type__": "cc.Vec2",
  737. "x": 0,
  738. "y": 0
  739. },
  740. "_fillStart": 0,
  741. "_fillRange": 0,
  742. "_isTrimmedMode": true,
  743. "_atlas": null,
  744. "_id": "40+jFMY+1NCa+8NFYYm9j6"
  745. },
  746. {
  747. "__type__": "cc.Node",
  748. "_name": "dian",
  749. "_objFlags": 0,
  750. "_parent": {
  751. "__id__": 11
  752. },
  753. "_children": [],
  754. "_active": true,
  755. "_components": [
  756. {
  757. "__id__": 15
  758. }
  759. ],
  760. "_prefab": null,
  761. "_opacity": 255,
  762. "_color": {
  763. "__type__": "cc.Color",
  764. "r": 255,
  765. "g": 255,
  766. "b": 255,
  767. "a": 255
  768. },
  769. "_contentSize": {
  770. "__type__": "cc.Size",
  771. "width": 14,
  772. "height": 14
  773. },
  774. "_anchorPoint": {
  775. "__type__": "cc.Vec2",
  776. "x": 0.5,
  777. "y": 0.5
  778. },
  779. "_trs": {
  780. "__type__": "TypedArray",
  781. "ctor": "Float64Array",
  782. "array": [
  783. 85.465,
  784. -13.307,
  785. 0,
  786. 0,
  787. 0,
  788. 0,
  789. 1,
  790. 1,
  791. 1,
  792. 1
  793. ]
  794. },
  795. "_eulerAngles": {
  796. "__type__": "cc.Vec3",
  797. "x": 0,
  798. "y": 0,
  799. "z": 0
  800. },
  801. "_skewX": 0,
  802. "_skewY": 0,
  803. "_is3DNode": false,
  804. "_groupIndex": 0,
  805. "groupIndex": 0,
  806. "_id": "f4WLWU239CSK8sBOPRS5BX"
  807. },
  808. {
  809. "__type__": "cc.Sprite",
  810. "_name": "",
  811. "_objFlags": 0,
  812. "node": {
  813. "__id__": 14
  814. },
  815. "_enabled": true,
  816. "_materials": [
  817. {
  818. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  819. }
  820. ],
  821. "_srcBlendFactor": 770,
  822. "_dstBlendFactor": 771,
  823. "_spriteFrame": {
  824. "__uuid__": "37b2059e-2b27-4675-885c-b6bc96d1420e"
  825. },
  826. "_type": 0,
  827. "_sizeMode": 1,
  828. "_fillType": 0,
  829. "_fillCenter": {
  830. "__type__": "cc.Vec2",
  831. "x": 0,
  832. "y": 0
  833. },
  834. "_fillStart": 0,
  835. "_fillRange": 0,
  836. "_isTrimmedMode": true,
  837. "_atlas": null,
  838. "_id": "a2EG8vDeVHN7pcDJwrG3bL"
  839. },
  840. {
  841. "__type__": "cc.Node",
  842. "_name": "dian",
  843. "_objFlags": 0,
  844. "_parent": {
  845. "__id__": 11
  846. },
  847. "_children": [],
  848. "_active": true,
  849. "_components": [
  850. {
  851. "__id__": 17
  852. }
  853. ],
  854. "_prefab": null,
  855. "_opacity": 255,
  856. "_color": {
  857. "__type__": "cc.Color",
  858. "r": 255,
  859. "g": 255,
  860. "b": 255,
  861. "a": 255
  862. },
  863. "_contentSize": {
  864. "__type__": "cc.Size",
  865. "width": 14,
  866. "height": 14
  867. },
  868. "_anchorPoint": {
  869. "__type__": "cc.Vec2",
  870. "x": 0.5,
  871. "y": 0.5
  872. },
  873. "_trs": {
  874. "__type__": "TypedArray",
  875. "ctor": "Float64Array",
  876. "array": [
  877. 101.799,
  878. -13.307,
  879. 0,
  880. 0,
  881. 0,
  882. 0,
  883. 1,
  884. 1,
  885. 1,
  886. 1
  887. ]
  888. },
  889. "_eulerAngles": {
  890. "__type__": "cc.Vec3",
  891. "x": 0,
  892. "y": 0,
  893. "z": 0
  894. },
  895. "_skewX": 0,
  896. "_skewY": 0,
  897. "_is3DNode": false,
  898. "_groupIndex": 0,
  899. "groupIndex": 0,
  900. "_id": "b7h2JEZGFI2ZN7tCRgbueV"
  901. },
  902. {
  903. "__type__": "cc.Sprite",
  904. "_name": "",
  905. "_objFlags": 0,
  906. "node": {
  907. "__id__": 16
  908. },
  909. "_enabled": true,
  910. "_materials": [
  911. {
  912. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  913. }
  914. ],
  915. "_srcBlendFactor": 770,
  916. "_dstBlendFactor": 771,
  917. "_spriteFrame": {
  918. "__uuid__": "37b2059e-2b27-4675-885c-b6bc96d1420e"
  919. },
  920. "_type": 0,
  921. "_sizeMode": 1,
  922. "_fillType": 0,
  923. "_fillCenter": {
  924. "__type__": "cc.Vec2",
  925. "x": 0,
  926. "y": 0
  927. },
  928. "_fillStart": 0,
  929. "_fillRange": 0,
  930. "_isTrimmedMode": true,
  931. "_atlas": null,
  932. "_id": "65EozhpB5OQ5oosd97WWTi"
  933. },
  934. {
  935. "__type__": "cc.Sprite",
  936. "_name": "",
  937. "_objFlags": 0,
  938. "node": {
  939. "__id__": 11
  940. },
  941. "_enabled": true,
  942. "_materials": [
  943. {
  944. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  945. }
  946. ],
  947. "_srcBlendFactor": 770,
  948. "_dstBlendFactor": 771,
  949. "_spriteFrame": {
  950. "__uuid__": "9ff4329b-1d85-4877-9648-bcc4791cd935"
  951. },
  952. "_type": 0,
  953. "_sizeMode": 1,
  954. "_fillType": 0,
  955. "_fillCenter": {
  956. "__type__": "cc.Vec2",
  957. "x": 0,
  958. "y": 0
  959. },
  960. "_fillStart": 0,
  961. "_fillRange": 0,
  962. "_isTrimmedMode": true,
  963. "_atlas": null,
  964. "_id": "7eL8zwimJLHYBZFQXXFRzL"
  965. },
  966. {
  967. "__type__": "cc.Sprite",
  968. "_name": "",
  969. "_objFlags": 0,
  970. "node": {
  971. "__id__": 8
  972. },
  973. "_enabled": true,
  974. "_materials": [
  975. {
  976. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  977. }
  978. ],
  979. "_srcBlendFactor": 770,
  980. "_dstBlendFactor": 771,
  981. "_spriteFrame": {
  982. "__uuid__": "c3475f7a-f8cf-4767-8e19-e09cefc0803b"
  983. },
  984. "_type": 0,
  985. "_sizeMode": 1,
  986. "_fillType": 0,
  987. "_fillCenter": {
  988. "__type__": "cc.Vec2",
  989. "x": 0,
  990. "y": 0
  991. },
  992. "_fillStart": 0,
  993. "_fillRange": 0,
  994. "_isTrimmedMode": true,
  995. "_atlas": null,
  996. "_id": "ccqdtSc0pAdYAVTlDkjgRK"
  997. },
  998. {
  999. "__type__": "cc.Widget",
  1000. "_name": "",
  1001. "_objFlags": 0,
  1002. "node": {
  1003. "__id__": 8
  1004. },
  1005. "_enabled": true,
  1006. "alignMode": 1,
  1007. "_target": null,
  1008. "_alignFlags": 4,
  1009. "_left": 0,
  1010. "_right": 0,
  1011. "_top": 0,
  1012. "_bottom": -115.5,
  1013. "_verticalCenter": 0,
  1014. "_horizontalCenter": 0,
  1015. "_isAbsLeft": true,
  1016. "_isAbsRight": true,
  1017. "_isAbsTop": true,
  1018. "_isAbsBottom": true,
  1019. "_isAbsHorizontalCenter": true,
  1020. "_isAbsVerticalCenter": true,
  1021. "_originalWidth": 0,
  1022. "_originalHeight": 0,
  1023. "_id": "b9GgDcSM5Fnqux+Bo4LQV1"
  1024. },
  1025. {
  1026. "__type__": "b6c4euxza1FZJOtvTiMMSOC",
  1027. "_name": "",
  1028. "_objFlags": 0,
  1029. "node": {
  1030. "__id__": 7
  1031. },
  1032. "_enabled": true,
  1033. "spBar": {
  1034. "__id__": 10
  1035. },
  1036. "manifest": {
  1037. "__uuid__": "9f914ae7-6d6f-4cdd-9a69-7effa5dc32b3"
  1038. },
  1039. "_id": "37CU/6bdZGf7rEoSacOXGi"
  1040. },
  1041. {
  1042. "__type__": "cc.Widget",
  1043. "_name": "",
  1044. "_objFlags": 0,
  1045. "node": {
  1046. "__id__": 7
  1047. },
  1048. "_enabled": true,
  1049. "alignMode": 1,
  1050. "_target": null,
  1051. "_alignFlags": 45,
  1052. "_left": 360,
  1053. "_right": 360,
  1054. "_top": 961.9449999999999,
  1055. "_bottom": 318.05500000000006,
  1056. "_verticalCenter": 0,
  1057. "_horizontalCenter": 0,
  1058. "_isAbsLeft": true,
  1059. "_isAbsRight": true,
  1060. "_isAbsTop": true,
  1061. "_isAbsBottom": true,
  1062. "_isAbsHorizontalCenter": true,
  1063. "_isAbsVerticalCenter": true,
  1064. "_originalWidth": 0,
  1065. "_originalHeight": 0,
  1066. "_id": "82iT/zmO9PUbT/RV6fWyFa"
  1067. },
  1068. {
  1069. "__type__": "cc.Node",
  1070. "_name": "loginLayer",
  1071. "_objFlags": 0,
  1072. "_parent": {
  1073. "__id__": 2
  1074. },
  1075. "_children": [
  1076. {
  1077. "__id__": 24
  1078. },
  1079. {
  1080. "__id__": 70
  1081. }
  1082. ],
  1083. "_active": false,
  1084. "_components": [
  1085. {
  1086. "__id__": 71
  1087. }
  1088. ],
  1089. "_prefab": null,
  1090. "_opacity": 255,
  1091. "_color": {
  1092. "__type__": "cc.Color",
  1093. "r": 255,
  1094. "g": 255,
  1095. "b": 255,
  1096. "a": 255
  1097. },
  1098. "_contentSize": {
  1099. "__type__": "cc.Size",
  1100. "width": 0,
  1101. "height": 0
  1102. },
  1103. "_anchorPoint": {
  1104. "__type__": "cc.Vec2",
  1105. "x": 0.5,
  1106. "y": 0.5
  1107. },
  1108. "_trs": {
  1109. "__type__": "TypedArray",
  1110. "ctor": "Float64Array",
  1111. "array": [
  1112. 0,
  1113. 0,
  1114. 0,
  1115. 0,
  1116. 0,
  1117. 0,
  1118. 1,
  1119. 1,
  1120. 1,
  1121. 1
  1122. ]
  1123. },
  1124. "_eulerAngles": {
  1125. "__type__": "cc.Vec3",
  1126. "x": 0,
  1127. "y": 0,
  1128. "z": 0
  1129. },
  1130. "_skewX": 0,
  1131. "_skewY": 0,
  1132. "_is3DNode": false,
  1133. "_groupIndex": 0,
  1134. "groupIndex": 0,
  1135. "_id": "faPi8TyMBPE7Zpt4UJNcGQ"
  1136. },
  1137. {
  1138. "__type__": "cc.Node",
  1139. "_name": "accountLogin",
  1140. "_objFlags": 0,
  1141. "_parent": {
  1142. "__id__": 23
  1143. },
  1144. "_children": [
  1145. {
  1146. "__id__": 25
  1147. },
  1148. {
  1149. "__id__": 27
  1150. },
  1151. {
  1152. "__id__": 29
  1153. },
  1154. {
  1155. "__id__": 44
  1156. },
  1157. {
  1158. "__id__": 59
  1159. },
  1160. {
  1161. "__id__": 66
  1162. }
  1163. ],
  1164. "_active": false,
  1165. "_components": [],
  1166. "_prefab": null,
  1167. "_opacity": 255,
  1168. "_color": {
  1169. "__type__": "cc.Color",
  1170. "r": 255,
  1171. "g": 255,
  1172. "b": 255,
  1173. "a": 255
  1174. },
  1175. "_contentSize": {
  1176. "__type__": "cc.Size",
  1177. "width": 0,
  1178. "height": 0
  1179. },
  1180. "_anchorPoint": {
  1181. "__type__": "cc.Vec2",
  1182. "x": 0.5,
  1183. "y": 0.5
  1184. },
  1185. "_trs": {
  1186. "__type__": "TypedArray",
  1187. "ctor": "Float64Array",
  1188. "array": [
  1189. 0,
  1190. 0,
  1191. 0,
  1192. 0,
  1193. 0,
  1194. 0,
  1195. 1,
  1196. 1,
  1197. 1,
  1198. 1
  1199. ]
  1200. },
  1201. "_eulerAngles": {
  1202. "__type__": "cc.Vec3",
  1203. "x": 0,
  1204. "y": 0,
  1205. "z": 0
  1206. },
  1207. "_skewX": 0,
  1208. "_skewY": 0,
  1209. "_is3DNode": false,
  1210. "_groupIndex": 0,
  1211. "groupIndex": 0,
  1212. "_id": "e34y+WqV1F/4EQw3FLmIwN"
  1213. },
  1214. {
  1215. "__type__": "cc.Node",
  1216. "_name": "login_di",
  1217. "_objFlags": 0,
  1218. "_parent": {
  1219. "__id__": 24
  1220. },
  1221. "_children": [],
  1222. "_active": true,
  1223. "_components": [
  1224. {
  1225. "__id__": 26
  1226. }
  1227. ],
  1228. "_prefab": null,
  1229. "_opacity": 255,
  1230. "_color": {
  1231. "__type__": "cc.Color",
  1232. "r": 255,
  1233. "g": 255,
  1234. "b": 255,
  1235. "a": 255
  1236. },
  1237. "_contentSize": {
  1238. "__type__": "cc.Size",
  1239. "width": 703,
  1240. "height": 750
  1241. },
  1242. "_anchorPoint": {
  1243. "__type__": "cc.Vec2",
  1244. "x": 0.5,
  1245. "y": 0.5
  1246. },
  1247. "_trs": {
  1248. "__type__": "TypedArray",
  1249. "ctor": "Float64Array",
  1250. "array": [
  1251. 0,
  1252. 0,
  1253. 0,
  1254. 0,
  1255. 0,
  1256. 0,
  1257. 1,
  1258. 1,
  1259. 1,
  1260. 1
  1261. ]
  1262. },
  1263. "_eulerAngles": {
  1264. "__type__": "cc.Vec3",
  1265. "x": 0,
  1266. "y": 0,
  1267. "z": 0
  1268. },
  1269. "_skewX": 0,
  1270. "_skewY": 0,
  1271. "_is3DNode": false,
  1272. "_groupIndex": 0,
  1273. "groupIndex": 0,
  1274. "_id": "f0s+fV0g1L9IkEm+fdgFPw"
  1275. },
  1276. {
  1277. "__type__": "cc.Sprite",
  1278. "_name": "",
  1279. "_objFlags": 0,
  1280. "node": {
  1281. "__id__": 25
  1282. },
  1283. "_enabled": true,
  1284. "_materials": [
  1285. {
  1286. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1287. }
  1288. ],
  1289. "_srcBlendFactor": 770,
  1290. "_dstBlendFactor": 771,
  1291. "_spriteFrame": {
  1292. "__uuid__": "c18d756f-712c-4d08-bbf7-3104413fc2aa"
  1293. },
  1294. "_type": 0,
  1295. "_sizeMode": 0,
  1296. "_fillType": 0,
  1297. "_fillCenter": {
  1298. "__type__": "cc.Vec2",
  1299. "x": 0,
  1300. "y": 0
  1301. },
  1302. "_fillStart": 0,
  1303. "_fillRange": 0,
  1304. "_isTrimmedMode": true,
  1305. "_atlas": null,
  1306. "_id": "d07LXvF3NA5a/+XBerLfp7"
  1307. },
  1308. {
  1309. "__type__": "cc.Node",
  1310. "_name": "zi",
  1311. "_objFlags": 0,
  1312. "_parent": {
  1313. "__id__": 24
  1314. },
  1315. "_children": [],
  1316. "_active": true,
  1317. "_components": [
  1318. {
  1319. "__id__": 28
  1320. }
  1321. ],
  1322. "_prefab": null,
  1323. "_opacity": 255,
  1324. "_color": {
  1325. "__type__": "cc.Color",
  1326. "r": 255,
  1327. "g": 255,
  1328. "b": 255,
  1329. "a": 255
  1330. },
  1331. "_contentSize": {
  1332. "__type__": "cc.Size",
  1333. "width": 196,
  1334. "height": 52
  1335. },
  1336. "_anchorPoint": {
  1337. "__type__": "cc.Vec2",
  1338. "x": 0.5,
  1339. "y": 0.5
  1340. },
  1341. "_trs": {
  1342. "__type__": "TypedArray",
  1343. "ctor": "Float64Array",
  1344. "array": [
  1345. 0,
  1346. 210.819,
  1347. 0,
  1348. 0,
  1349. 0,
  1350. 0,
  1351. 1,
  1352. 1,
  1353. 1,
  1354. 1
  1355. ]
  1356. },
  1357. "_eulerAngles": {
  1358. "__type__": "cc.Vec3",
  1359. "x": 0,
  1360. "y": 0,
  1361. "z": 0
  1362. },
  1363. "_skewX": 0,
  1364. "_skewY": 0,
  1365. "_is3DNode": false,
  1366. "_groupIndex": 0,
  1367. "groupIndex": 0,
  1368. "_id": "9erA1dd0RByJlMsctQPhOc"
  1369. },
  1370. {
  1371. "__type__": "cc.Sprite",
  1372. "_name": "",
  1373. "_objFlags": 0,
  1374. "node": {
  1375. "__id__": 27
  1376. },
  1377. "_enabled": true,
  1378. "_materials": [
  1379. {
  1380. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1381. }
  1382. ],
  1383. "_srcBlendFactor": 770,
  1384. "_dstBlendFactor": 771,
  1385. "_spriteFrame": {
  1386. "__uuid__": "78be8f06-ef6a-492a-923a-17a304aff1e7"
  1387. },
  1388. "_type": 0,
  1389. "_sizeMode": 1,
  1390. "_fillType": 0,
  1391. "_fillCenter": {
  1392. "__type__": "cc.Vec2",
  1393. "x": 0,
  1394. "y": 0
  1395. },
  1396. "_fillStart": 0,
  1397. "_fillRange": 0,
  1398. "_isTrimmedMode": true,
  1399. "_atlas": null,
  1400. "_id": "09IYZ9k7hP6IYdKj5xuKro"
  1401. },
  1402. {
  1403. "__type__": "cc.Node",
  1404. "_name": "account",
  1405. "_objFlags": 0,
  1406. "_parent": {
  1407. "__id__": 24
  1408. },
  1409. "_children": [
  1410. {
  1411. "__id__": 30
  1412. },
  1413. {
  1414. "__id__": 32
  1415. }
  1416. ],
  1417. "_active": true,
  1418. "_components": [
  1419. {
  1420. "__id__": 43
  1421. }
  1422. ],
  1423. "_prefab": null,
  1424. "_opacity": 255,
  1425. "_color": {
  1426. "__type__": "cc.Color",
  1427. "r": 255,
  1428. "g": 255,
  1429. "b": 255,
  1430. "a": 255
  1431. },
  1432. "_contentSize": {
  1433. "__type__": "cc.Size",
  1434. "width": 450,
  1435. "height": 60
  1436. },
  1437. "_anchorPoint": {
  1438. "__type__": "cc.Vec2",
  1439. "x": 0.5,
  1440. "y": 0.5
  1441. },
  1442. "_trs": {
  1443. "__type__": "TypedArray",
  1444. "ctor": "Float64Array",
  1445. "array": [
  1446. 0,
  1447. 114.458,
  1448. 0,
  1449. 0,
  1450. 0,
  1451. 0,
  1452. 1,
  1453. 1,
  1454. 1,
  1455. 1
  1456. ]
  1457. },
  1458. "_eulerAngles": {
  1459. "__type__": "cc.Vec3",
  1460. "x": 0,
  1461. "y": 0,
  1462. "z": 0
  1463. },
  1464. "_skewX": 0,
  1465. "_skewY": 0,
  1466. "_is3DNode": false,
  1467. "_groupIndex": 0,
  1468. "groupIndex": 0,
  1469. "_id": "a8EvNKtvBFXIFeZrynUfaA"
  1470. },
  1471. {
  1472. "__type__": "cc.Node",
  1473. "_name": "ren",
  1474. "_objFlags": 0,
  1475. "_parent": {
  1476. "__id__": 29
  1477. },
  1478. "_children": [],
  1479. "_active": true,
  1480. "_components": [
  1481. {
  1482. "__id__": 31
  1483. }
  1484. ],
  1485. "_prefab": null,
  1486. "_opacity": 255,
  1487. "_color": {
  1488. "__type__": "cc.Color",
  1489. "r": 255,
  1490. "g": 255,
  1491. "b": 255,
  1492. "a": 255
  1493. },
  1494. "_contentSize": {
  1495. "__type__": "cc.Size",
  1496. "width": 22,
  1497. "height": 42
  1498. },
  1499. "_anchorPoint": {
  1500. "__type__": "cc.Vec2",
  1501. "x": 0.5,
  1502. "y": 0.5
  1503. },
  1504. "_trs": {
  1505. "__type__": "TypedArray",
  1506. "ctor": "Float64Array",
  1507. "array": [
  1508. -199.735,
  1509. 0,
  1510. 0,
  1511. 0,
  1512. 0,
  1513. 0,
  1514. 1,
  1515. 1,
  1516. 1,
  1517. 1
  1518. ]
  1519. },
  1520. "_eulerAngles": {
  1521. "__type__": "cc.Vec3",
  1522. "x": 0,
  1523. "y": 0,
  1524. "z": 0
  1525. },
  1526. "_skewX": 0,
  1527. "_skewY": 0,
  1528. "_is3DNode": false,
  1529. "_groupIndex": 0,
  1530. "groupIndex": 0,
  1531. "_id": "4cRaUkwCpMNrvCw/R/kzTQ"
  1532. },
  1533. {
  1534. "__type__": "cc.Sprite",
  1535. "_name": "",
  1536. "_objFlags": 0,
  1537. "node": {
  1538. "__id__": 30
  1539. },
  1540. "_enabled": true,
  1541. "_materials": [
  1542. {
  1543. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1544. }
  1545. ],
  1546. "_srcBlendFactor": 770,
  1547. "_dstBlendFactor": 771,
  1548. "_spriteFrame": {
  1549. "__uuid__": "1e6cfc71-1e02-41dc-bb40-66a73d5a9b33"
  1550. },
  1551. "_type": 0,
  1552. "_sizeMode": 1,
  1553. "_fillType": 0,
  1554. "_fillCenter": {
  1555. "__type__": "cc.Vec2",
  1556. "x": 0,
  1557. "y": 0
  1558. },
  1559. "_fillStart": 0,
  1560. "_fillRange": 0,
  1561. "_isTrimmedMode": true,
  1562. "_atlas": null,
  1563. "_id": "8fd62daiREX55UV9KjqKaP"
  1564. },
  1565. {
  1566. "__type__": "cc.Node",
  1567. "_name": "editBox",
  1568. "_objFlags": 0,
  1569. "_parent": {
  1570. "__id__": 29
  1571. },
  1572. "_children": [
  1573. {
  1574. "__id__": 33
  1575. },
  1576. {
  1577. "__id__": 36
  1578. },
  1579. {
  1580. "__id__": 39
  1581. }
  1582. ],
  1583. "_active": true,
  1584. "_components": [
  1585. {
  1586. "__id__": 42
  1587. }
  1588. ],
  1589. "_prefab": null,
  1590. "_opacity": 255,
  1591. "_color": {
  1592. "__type__": "cc.Color",
  1593. "r": 255,
  1594. "g": 255,
  1595. "b": 255,
  1596. "a": 255
  1597. },
  1598. "_contentSize": {
  1599. "__type__": "cc.Size",
  1600. "width": 350,
  1601. "height": 60
  1602. },
  1603. "_anchorPoint": {
  1604. "__type__": "cc.Vec2",
  1605. "x": 0.5,
  1606. "y": 0.5
  1607. },
  1608. "_trs": {
  1609. "__type__": "TypedArray",
  1610. "ctor": "Float64Array",
  1611. "array": [
  1612. 10.357,
  1613. 0,
  1614. 0,
  1615. 0,
  1616. 0,
  1617. 0,
  1618. 1,
  1619. 1,
  1620. 1,
  1621. 1
  1622. ]
  1623. },
  1624. "_eulerAngles": {
  1625. "__type__": "cc.Vec3",
  1626. "x": 0,
  1627. "y": 0,
  1628. "z": 0
  1629. },
  1630. "_skewX": 0,
  1631. "_skewY": 0,
  1632. "_is3DNode": false,
  1633. "_groupIndex": 0,
  1634. "groupIndex": 0,
  1635. "_id": "38Q+Is7h5EJZcW0dC6GIee"
  1636. },
  1637. {
  1638. "__type__": "cc.Node",
  1639. "_name": "BACKGROUND_SPRITE",
  1640. "_objFlags": 0,
  1641. "_parent": {
  1642. "__id__": 32
  1643. },
  1644. "_children": [],
  1645. "_active": true,
  1646. "_components": [
  1647. {
  1648. "__id__": 34
  1649. },
  1650. {
  1651. "__id__": 35
  1652. }
  1653. ],
  1654. "_prefab": null,
  1655. "_opacity": 255,
  1656. "_color": {
  1657. "__type__": "cc.Color",
  1658. "r": 255,
  1659. "g": 255,
  1660. "b": 255,
  1661. "a": 255
  1662. },
  1663. "_contentSize": {
  1664. "__type__": "cc.Size",
  1665. "width": 350,
  1666. "height": 60
  1667. },
  1668. "_anchorPoint": {
  1669. "__type__": "cc.Vec2",
  1670. "x": 0.5,
  1671. "y": 0.5
  1672. },
  1673. "_trs": {
  1674. "__type__": "TypedArray",
  1675. "ctor": "Float64Array",
  1676. "array": [
  1677. 0,
  1678. 0,
  1679. 0,
  1680. 0,
  1681. 0,
  1682. 0,
  1683. 1,
  1684. 1,
  1685. 1,
  1686. 1
  1687. ]
  1688. },
  1689. "_eulerAngles": {
  1690. "__type__": "cc.Vec3",
  1691. "x": 0,
  1692. "y": 0,
  1693. "z": 0
  1694. },
  1695. "_skewX": 0,
  1696. "_skewY": 0,
  1697. "_is3DNode": false,
  1698. "_groupIndex": 0,
  1699. "groupIndex": 0,
  1700. "_id": "9cq9MaSlhAf6O+n7VoauDb"
  1701. },
  1702. {
  1703. "__type__": "cc.Sprite",
  1704. "_name": "",
  1705. "_objFlags": 0,
  1706. "node": {
  1707. "__id__": 33
  1708. },
  1709. "_enabled": true,
  1710. "_materials": [
  1711. {
  1712. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1713. }
  1714. ],
  1715. "_srcBlendFactor": 770,
  1716. "_dstBlendFactor": 771,
  1717. "_spriteFrame": {
  1718. "__uuid__": "d36a348e-0b69-44f8-aeed-bce8094d5700"
  1719. },
  1720. "_type": 1,
  1721. "_sizeMode": 0,
  1722. "_fillType": 0,
  1723. "_fillCenter": {
  1724. "__type__": "cc.Vec2",
  1725. "x": 0,
  1726. "y": 0
  1727. },
  1728. "_fillStart": 0,
  1729. "_fillRange": 0,
  1730. "_isTrimmedMode": true,
  1731. "_atlas": null,
  1732. "_id": "d7WrOG6+dHYY1Y5VCmPPPh"
  1733. },
  1734. {
  1735. "__type__": "cc.Widget",
  1736. "_name": "",
  1737. "_objFlags": 0,
  1738. "node": {
  1739. "__id__": 33
  1740. },
  1741. "_enabled": true,
  1742. "alignMode": 0,
  1743. "_target": null,
  1744. "_alignFlags": 45,
  1745. "_left": 0,
  1746. "_right": 0,
  1747. "_top": 0,
  1748. "_bottom": 0,
  1749. "_verticalCenter": 0,
  1750. "_horizontalCenter": 0,
  1751. "_isAbsLeft": true,
  1752. "_isAbsRight": true,
  1753. "_isAbsTop": true,
  1754. "_isAbsBottom": true,
  1755. "_isAbsHorizontalCenter": true,
  1756. "_isAbsVerticalCenter": true,
  1757. "_originalWidth": 160,
  1758. "_originalHeight": 40,
  1759. "_id": "28TekBwaFPBYFxWblp+RJh"
  1760. },
  1761. {
  1762. "__type__": "cc.Node",
  1763. "_name": "TEXT_LABEL",
  1764. "_objFlags": 0,
  1765. "_parent": {
  1766. "__id__": 32
  1767. },
  1768. "_children": [],
  1769. "_active": false,
  1770. "_components": [
  1771. {
  1772. "__id__": 37
  1773. },
  1774. {
  1775. "__id__": 38
  1776. }
  1777. ],
  1778. "_prefab": null,
  1779. "_opacity": 255,
  1780. "_color": {
  1781. "__type__": "cc.Color",
  1782. "r": 255,
  1783. "g": 255,
  1784. "b": 255,
  1785. "a": 255
  1786. },
  1787. "_contentSize": {
  1788. "__type__": "cc.Size",
  1789. "width": 348,
  1790. "height": 60
  1791. },
  1792. "_anchorPoint": {
  1793. "__type__": "cc.Vec2",
  1794. "x": 0,
  1795. "y": 1
  1796. },
  1797. "_trs": {
  1798. "__type__": "TypedArray",
  1799. "ctor": "Float64Array",
  1800. "array": [
  1801. -173,
  1802. 30,
  1803. 0,
  1804. 0,
  1805. 0,
  1806. 0,
  1807. 1,
  1808. 1,
  1809. 1,
  1810. 1
  1811. ]
  1812. },
  1813. "_eulerAngles": {
  1814. "__type__": "cc.Vec3",
  1815. "x": 0,
  1816. "y": 0,
  1817. "z": 0
  1818. },
  1819. "_skewX": 0,
  1820. "_skewY": 0,
  1821. "_is3DNode": false,
  1822. "_groupIndex": 0,
  1823. "groupIndex": 0,
  1824. "_id": "40yPkQkPxGeZNOFoMq4WNn"
  1825. },
  1826. {
  1827. "__type__": "cc.Label",
  1828. "_name": "",
  1829. "_objFlags": 0,
  1830. "node": {
  1831. "__id__": 36
  1832. },
  1833. "_enabled": true,
  1834. "_materials": [
  1835. {
  1836. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1837. }
  1838. ],
  1839. "_srcBlendFactor": 770,
  1840. "_dstBlendFactor": 771,
  1841. "_string": "",
  1842. "_N$string": "",
  1843. "_fontSize": 40,
  1844. "_lineHeight": 40,
  1845. "_enableWrapText": false,
  1846. "_N$file": {
  1847. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  1848. },
  1849. "_isSystemFontUsed": false,
  1850. "_spacingX": 0,
  1851. "_batchAsBitmap": false,
  1852. "_styleFlags": 0,
  1853. "_underlineHeight": 0,
  1854. "_N$horizontalAlign": 0,
  1855. "_N$verticalAlign": 1,
  1856. "_N$fontFamily": "Arial",
  1857. "_N$overflow": 1,
  1858. "_N$cacheMode": 0,
  1859. "_id": "cazinZDktCoLzOOde6sotD"
  1860. },
  1861. {
  1862. "__type__": "cc.Widget",
  1863. "_name": "",
  1864. "_objFlags": 0,
  1865. "node": {
  1866. "__id__": 36
  1867. },
  1868. "_enabled": true,
  1869. "alignMode": 0,
  1870. "_target": null,
  1871. "_alignFlags": 45,
  1872. "_left": 2,
  1873. "_right": 0,
  1874. "_top": 0,
  1875. "_bottom": 0,
  1876. "_verticalCenter": 0,
  1877. "_horizontalCenter": 0,
  1878. "_isAbsLeft": true,
  1879. "_isAbsRight": true,
  1880. "_isAbsTop": true,
  1881. "_isAbsBottom": true,
  1882. "_isAbsHorizontalCenter": true,
  1883. "_isAbsVerticalCenter": true,
  1884. "_originalWidth": 158,
  1885. "_originalHeight": 40,
  1886. "_id": "b9zCvt90pFKLkAcCBzsEk3"
  1887. },
  1888. {
  1889. "__type__": "cc.Node",
  1890. "_name": "PLACEHOLDER_LABEL",
  1891. "_objFlags": 0,
  1892. "_parent": {
  1893. "__id__": 32
  1894. },
  1895. "_children": [],
  1896. "_active": true,
  1897. "_components": [
  1898. {
  1899. "__id__": 40
  1900. },
  1901. {
  1902. "__id__": 41
  1903. }
  1904. ],
  1905. "_prefab": null,
  1906. "_opacity": 255,
  1907. "_color": {
  1908. "__type__": "cc.Color",
  1909. "r": 255,
  1910. "g": 255,
  1911. "b": 255,
  1912. "a": 255
  1913. },
  1914. "_contentSize": {
  1915. "__type__": "cc.Size",
  1916. "width": 348,
  1917. "height": 60
  1918. },
  1919. "_anchorPoint": {
  1920. "__type__": "cc.Vec2",
  1921. "x": 0,
  1922. "y": 1
  1923. },
  1924. "_trs": {
  1925. "__type__": "TypedArray",
  1926. "ctor": "Float64Array",
  1927. "array": [
  1928. -173,
  1929. 30,
  1930. 0,
  1931. 0,
  1932. 0,
  1933. 0,
  1934. 1,
  1935. 1,
  1936. 1,
  1937. 1
  1938. ]
  1939. },
  1940. "_eulerAngles": {
  1941. "__type__": "cc.Vec3",
  1942. "x": 0,
  1943. "y": 0,
  1944. "z": 0
  1945. },
  1946. "_skewX": 0,
  1947. "_skewY": 0,
  1948. "_is3DNode": false,
  1949. "_groupIndex": 0,
  1950. "groupIndex": 0,
  1951. "_id": "8feZU/ibJDY5JM+YeWtBwi"
  1952. },
  1953. {
  1954. "__type__": "cc.Label",
  1955. "_name": "",
  1956. "_objFlags": 0,
  1957. "node": {
  1958. "__id__": 39
  1959. },
  1960. "_enabled": true,
  1961. "_materials": [
  1962. {
  1963. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  1964. }
  1965. ],
  1966. "_srcBlendFactor": 770,
  1967. "_dstBlendFactor": 771,
  1968. "_string": "请输入账号",
  1969. "_N$string": "请输入账号",
  1970. "_fontSize": 35,
  1971. "_lineHeight": 35,
  1972. "_enableWrapText": false,
  1973. "_N$file": {
  1974. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  1975. },
  1976. "_isSystemFontUsed": false,
  1977. "_spacingX": 0,
  1978. "_batchAsBitmap": false,
  1979. "_styleFlags": 0,
  1980. "_underlineHeight": 0,
  1981. "_N$horizontalAlign": 0,
  1982. "_N$verticalAlign": 1,
  1983. "_N$fontFamily": "Arial",
  1984. "_N$overflow": 1,
  1985. "_N$cacheMode": 0,
  1986. "_id": "c7X6QkrQRJOpabq1zdUDfW"
  1987. },
  1988. {
  1989. "__type__": "cc.Widget",
  1990. "_name": "",
  1991. "_objFlags": 0,
  1992. "node": {
  1993. "__id__": 39
  1994. },
  1995. "_enabled": true,
  1996. "alignMode": 0,
  1997. "_target": null,
  1998. "_alignFlags": 45,
  1999. "_left": 2,
  2000. "_right": 0,
  2001. "_top": 0,
  2002. "_bottom": 0,
  2003. "_verticalCenter": 0,
  2004. "_horizontalCenter": 0,
  2005. "_isAbsLeft": true,
  2006. "_isAbsRight": true,
  2007. "_isAbsTop": true,
  2008. "_isAbsBottom": true,
  2009. "_isAbsHorizontalCenter": true,
  2010. "_isAbsVerticalCenter": true,
  2011. "_originalWidth": 158,
  2012. "_originalHeight": 40,
  2013. "_id": "23NbRhJCxEA4Vw5NrLXam8"
  2014. },
  2015. {
  2016. "__type__": "cc.EditBox",
  2017. "_name": "",
  2018. "_objFlags": 0,
  2019. "node": {
  2020. "__id__": 32
  2021. },
  2022. "_enabled": true,
  2023. "_string": "",
  2024. "returnType": 0,
  2025. "maxLength": 18,
  2026. "_tabIndex": 0,
  2027. "editingDidBegan": [],
  2028. "textChanged": [],
  2029. "editingDidEnded": [],
  2030. "editingReturn": [],
  2031. "_N$textLabel": {
  2032. "__id__": 37
  2033. },
  2034. "_N$placeholderLabel": {
  2035. "__id__": 40
  2036. },
  2037. "_N$background": {
  2038. "__id__": 34
  2039. },
  2040. "_N$inputFlag": 5,
  2041. "_N$inputMode": 6,
  2042. "_N$stayOnTop": false,
  2043. "_id": "79WNDm9W5Dio5U7jEu5ry5"
  2044. },
  2045. {
  2046. "__type__": "cc.Sprite",
  2047. "_name": "",
  2048. "_objFlags": 0,
  2049. "node": {
  2050. "__id__": 29
  2051. },
  2052. "_enabled": true,
  2053. "_materials": [
  2054. {
  2055. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2056. }
  2057. ],
  2058. "_srcBlendFactor": 770,
  2059. "_dstBlendFactor": 771,
  2060. "_spriteFrame": {
  2061. "__uuid__": "d36a348e-0b69-44f8-aeed-bce8094d5700"
  2062. },
  2063. "_type": 1,
  2064. "_sizeMode": 0,
  2065. "_fillType": 0,
  2066. "_fillCenter": {
  2067. "__type__": "cc.Vec2",
  2068. "x": 0,
  2069. "y": 0
  2070. },
  2071. "_fillStart": 0,
  2072. "_fillRange": 0,
  2073. "_isTrimmedMode": true,
  2074. "_atlas": null,
  2075. "_id": "78sDXktcRCpYULkIFneE8t"
  2076. },
  2077. {
  2078. "__type__": "cc.Node",
  2079. "_name": "pwd",
  2080. "_objFlags": 0,
  2081. "_parent": {
  2082. "__id__": 24
  2083. },
  2084. "_children": [
  2085. {
  2086. "__id__": 45
  2087. },
  2088. {
  2089. "__id__": 47
  2090. }
  2091. ],
  2092. "_active": true,
  2093. "_components": [
  2094. {
  2095. "__id__": 58
  2096. }
  2097. ],
  2098. "_prefab": null,
  2099. "_opacity": 255,
  2100. "_color": {
  2101. "__type__": "cc.Color",
  2102. "r": 255,
  2103. "g": 255,
  2104. "b": 255,
  2105. "a": 255
  2106. },
  2107. "_contentSize": {
  2108. "__type__": "cc.Size",
  2109. "width": 450,
  2110. "height": 60
  2111. },
  2112. "_anchorPoint": {
  2113. "__type__": "cc.Vec2",
  2114. "x": 0.5,
  2115. "y": 0.5
  2116. },
  2117. "_trs": {
  2118. "__type__": "TypedArray",
  2119. "ctor": "Float64Array",
  2120. "array": [
  2121. 0,
  2122. 15.255,
  2123. 0,
  2124. 0,
  2125. 0,
  2126. 0,
  2127. 1,
  2128. 1,
  2129. 1,
  2130. 1
  2131. ]
  2132. },
  2133. "_eulerAngles": {
  2134. "__type__": "cc.Vec3",
  2135. "x": 0,
  2136. "y": 0,
  2137. "z": 0
  2138. },
  2139. "_skewX": 0,
  2140. "_skewY": 0,
  2141. "_is3DNode": false,
  2142. "_groupIndex": 0,
  2143. "groupIndex": 0,
  2144. "_id": "0epmQ2KgxCqZS5Dqpg7MAB"
  2145. },
  2146. {
  2147. "__type__": "cc.Node",
  2148. "_name": "suo",
  2149. "_objFlags": 0,
  2150. "_parent": {
  2151. "__id__": 44
  2152. },
  2153. "_children": [],
  2154. "_active": true,
  2155. "_components": [
  2156. {
  2157. "__id__": 46
  2158. }
  2159. ],
  2160. "_prefab": null,
  2161. "_opacity": 255,
  2162. "_color": {
  2163. "__type__": "cc.Color",
  2164. "r": 255,
  2165. "g": 255,
  2166. "b": 255,
  2167. "a": 255
  2168. },
  2169. "_contentSize": {
  2170. "__type__": "cc.Size",
  2171. "width": 29,
  2172. "height": 38
  2173. },
  2174. "_anchorPoint": {
  2175. "__type__": "cc.Vec2",
  2176. "x": 0.5,
  2177. "y": 0.5
  2178. },
  2179. "_trs": {
  2180. "__type__": "TypedArray",
  2181. "ctor": "Float64Array",
  2182. "array": [
  2183. -199.735,
  2184. 0,
  2185. 0,
  2186. 0,
  2187. 0,
  2188. 0,
  2189. 1,
  2190. 1,
  2191. 1,
  2192. 1
  2193. ]
  2194. },
  2195. "_eulerAngles": {
  2196. "__type__": "cc.Vec3",
  2197. "x": 0,
  2198. "y": 0,
  2199. "z": 0
  2200. },
  2201. "_skewX": 0,
  2202. "_skewY": 0,
  2203. "_is3DNode": false,
  2204. "_groupIndex": 0,
  2205. "groupIndex": 0,
  2206. "_id": "37R/XmX55ANLAaFiEzqYmt"
  2207. },
  2208. {
  2209. "__type__": "cc.Sprite",
  2210. "_name": "",
  2211. "_objFlags": 0,
  2212. "node": {
  2213. "__id__": 45
  2214. },
  2215. "_enabled": true,
  2216. "_materials": [
  2217. {
  2218. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2219. }
  2220. ],
  2221. "_srcBlendFactor": 770,
  2222. "_dstBlendFactor": 771,
  2223. "_spriteFrame": {
  2224. "__uuid__": "713ddf2b-9de6-4f49-9394-882d70833313"
  2225. },
  2226. "_type": 0,
  2227. "_sizeMode": 1,
  2228. "_fillType": 0,
  2229. "_fillCenter": {
  2230. "__type__": "cc.Vec2",
  2231. "x": 0,
  2232. "y": 0
  2233. },
  2234. "_fillStart": 0,
  2235. "_fillRange": 0,
  2236. "_isTrimmedMode": true,
  2237. "_atlas": null,
  2238. "_id": "fahawXxxVG2o5zMOW8yFEm"
  2239. },
  2240. {
  2241. "__type__": "cc.Node",
  2242. "_name": "editBox",
  2243. "_objFlags": 0,
  2244. "_parent": {
  2245. "__id__": 44
  2246. },
  2247. "_children": [
  2248. {
  2249. "__id__": 48
  2250. },
  2251. {
  2252. "__id__": 51
  2253. },
  2254. {
  2255. "__id__": 54
  2256. }
  2257. ],
  2258. "_active": true,
  2259. "_components": [
  2260. {
  2261. "__id__": 57
  2262. }
  2263. ],
  2264. "_prefab": null,
  2265. "_opacity": 255,
  2266. "_color": {
  2267. "__type__": "cc.Color",
  2268. "r": 255,
  2269. "g": 255,
  2270. "b": 255,
  2271. "a": 255
  2272. },
  2273. "_contentSize": {
  2274. "__type__": "cc.Size",
  2275. "width": 350,
  2276. "height": 60
  2277. },
  2278. "_anchorPoint": {
  2279. "__type__": "cc.Vec2",
  2280. "x": 0.5,
  2281. "y": 0.5
  2282. },
  2283. "_trs": {
  2284. "__type__": "TypedArray",
  2285. "ctor": "Float64Array",
  2286. "array": [
  2287. 10.357,
  2288. 0,
  2289. 0,
  2290. 0,
  2291. 0,
  2292. 0,
  2293. 1,
  2294. 1,
  2295. 1,
  2296. 1
  2297. ]
  2298. },
  2299. "_eulerAngles": {
  2300. "__type__": "cc.Vec3",
  2301. "x": 0,
  2302. "y": 0,
  2303. "z": 0
  2304. },
  2305. "_skewX": 0,
  2306. "_skewY": 0,
  2307. "_is3DNode": false,
  2308. "_groupIndex": 0,
  2309. "groupIndex": 0,
  2310. "_id": "33ayuWWydGVaMxydsOx3JA"
  2311. },
  2312. {
  2313. "__type__": "cc.Node",
  2314. "_name": "BACKGROUND_SPRITE",
  2315. "_objFlags": 0,
  2316. "_parent": {
  2317. "__id__": 47
  2318. },
  2319. "_children": [],
  2320. "_active": true,
  2321. "_components": [
  2322. {
  2323. "__id__": 49
  2324. },
  2325. {
  2326. "__id__": 50
  2327. }
  2328. ],
  2329. "_prefab": null,
  2330. "_opacity": 255,
  2331. "_color": {
  2332. "__type__": "cc.Color",
  2333. "r": 255,
  2334. "g": 255,
  2335. "b": 255,
  2336. "a": 255
  2337. },
  2338. "_contentSize": {
  2339. "__type__": "cc.Size",
  2340. "width": 350,
  2341. "height": 60
  2342. },
  2343. "_anchorPoint": {
  2344. "__type__": "cc.Vec2",
  2345. "x": 0.5,
  2346. "y": 0.5
  2347. },
  2348. "_trs": {
  2349. "__type__": "TypedArray",
  2350. "ctor": "Float64Array",
  2351. "array": [
  2352. 0,
  2353. 0,
  2354. 0,
  2355. 0,
  2356. 0,
  2357. 0,
  2358. 1,
  2359. 1,
  2360. 1,
  2361. 1
  2362. ]
  2363. },
  2364. "_eulerAngles": {
  2365. "__type__": "cc.Vec3",
  2366. "x": 0,
  2367. "y": 0,
  2368. "z": 0
  2369. },
  2370. "_skewX": 0,
  2371. "_skewY": 0,
  2372. "_is3DNode": false,
  2373. "_groupIndex": 0,
  2374. "groupIndex": 0,
  2375. "_id": "b0ENBvLQ5Ov5gGawZZ9Ta7"
  2376. },
  2377. {
  2378. "__type__": "cc.Sprite",
  2379. "_name": "",
  2380. "_objFlags": 0,
  2381. "node": {
  2382. "__id__": 48
  2383. },
  2384. "_enabled": true,
  2385. "_materials": [
  2386. {
  2387. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2388. }
  2389. ],
  2390. "_srcBlendFactor": 770,
  2391. "_dstBlendFactor": 771,
  2392. "_spriteFrame": {
  2393. "__uuid__": "d36a348e-0b69-44f8-aeed-bce8094d5700"
  2394. },
  2395. "_type": 1,
  2396. "_sizeMode": 0,
  2397. "_fillType": 0,
  2398. "_fillCenter": {
  2399. "__type__": "cc.Vec2",
  2400. "x": 0,
  2401. "y": 0
  2402. },
  2403. "_fillStart": 0,
  2404. "_fillRange": 0,
  2405. "_isTrimmedMode": true,
  2406. "_atlas": null,
  2407. "_id": "b6A2aljnRO17wx3/d+XW/0"
  2408. },
  2409. {
  2410. "__type__": "cc.Widget",
  2411. "_name": "",
  2412. "_objFlags": 0,
  2413. "node": {
  2414. "__id__": 48
  2415. },
  2416. "_enabled": true,
  2417. "alignMode": 0,
  2418. "_target": null,
  2419. "_alignFlags": 45,
  2420. "_left": 0,
  2421. "_right": 0,
  2422. "_top": 0,
  2423. "_bottom": 0,
  2424. "_verticalCenter": 0,
  2425. "_horizontalCenter": 0,
  2426. "_isAbsLeft": true,
  2427. "_isAbsRight": true,
  2428. "_isAbsTop": true,
  2429. "_isAbsBottom": true,
  2430. "_isAbsHorizontalCenter": true,
  2431. "_isAbsVerticalCenter": true,
  2432. "_originalWidth": 160,
  2433. "_originalHeight": 40,
  2434. "_id": "7eNRNrqp5N4ZLhVP9jx0at"
  2435. },
  2436. {
  2437. "__type__": "cc.Node",
  2438. "_name": "TEXT_LABEL",
  2439. "_objFlags": 0,
  2440. "_parent": {
  2441. "__id__": 47
  2442. },
  2443. "_children": [],
  2444. "_active": false,
  2445. "_components": [
  2446. {
  2447. "__id__": 52
  2448. },
  2449. {
  2450. "__id__": 53
  2451. }
  2452. ],
  2453. "_prefab": null,
  2454. "_opacity": 255,
  2455. "_color": {
  2456. "__type__": "cc.Color",
  2457. "r": 255,
  2458. "g": 255,
  2459. "b": 255,
  2460. "a": 255
  2461. },
  2462. "_contentSize": {
  2463. "__type__": "cc.Size",
  2464. "width": 348,
  2465. "height": 60
  2466. },
  2467. "_anchorPoint": {
  2468. "__type__": "cc.Vec2",
  2469. "x": 0,
  2470. "y": 1
  2471. },
  2472. "_trs": {
  2473. "__type__": "TypedArray",
  2474. "ctor": "Float64Array",
  2475. "array": [
  2476. -173,
  2477. 30,
  2478. 0,
  2479. 0,
  2480. 0,
  2481. 0,
  2482. 1,
  2483. 1,
  2484. 1,
  2485. 1
  2486. ]
  2487. },
  2488. "_eulerAngles": {
  2489. "__type__": "cc.Vec3",
  2490. "x": 0,
  2491. "y": 0,
  2492. "z": 0
  2493. },
  2494. "_skewX": 0,
  2495. "_skewY": 0,
  2496. "_is3DNode": false,
  2497. "_groupIndex": 0,
  2498. "groupIndex": 0,
  2499. "_id": "d7NLD40+xKeofCuUgERJL1"
  2500. },
  2501. {
  2502. "__type__": "cc.Label",
  2503. "_name": "",
  2504. "_objFlags": 0,
  2505. "node": {
  2506. "__id__": 51
  2507. },
  2508. "_enabled": true,
  2509. "_materials": [
  2510. {
  2511. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2512. }
  2513. ],
  2514. "_srcBlendFactor": 770,
  2515. "_dstBlendFactor": 771,
  2516. "_string": "",
  2517. "_N$string": "",
  2518. "_fontSize": 40,
  2519. "_lineHeight": 40,
  2520. "_enableWrapText": false,
  2521. "_N$file": {
  2522. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  2523. },
  2524. "_isSystemFontUsed": false,
  2525. "_spacingX": 0,
  2526. "_batchAsBitmap": false,
  2527. "_styleFlags": 0,
  2528. "_underlineHeight": 0,
  2529. "_N$horizontalAlign": 0,
  2530. "_N$verticalAlign": 1,
  2531. "_N$fontFamily": "Arial",
  2532. "_N$overflow": 1,
  2533. "_N$cacheMode": 0,
  2534. "_id": "90N9FAoDxEHaEU4sQHSe1o"
  2535. },
  2536. {
  2537. "__type__": "cc.Widget",
  2538. "_name": "",
  2539. "_objFlags": 0,
  2540. "node": {
  2541. "__id__": 51
  2542. },
  2543. "_enabled": true,
  2544. "alignMode": 0,
  2545. "_target": null,
  2546. "_alignFlags": 45,
  2547. "_left": 2,
  2548. "_right": 0,
  2549. "_top": 0,
  2550. "_bottom": 0,
  2551. "_verticalCenter": 0,
  2552. "_horizontalCenter": 0,
  2553. "_isAbsLeft": true,
  2554. "_isAbsRight": true,
  2555. "_isAbsTop": true,
  2556. "_isAbsBottom": true,
  2557. "_isAbsHorizontalCenter": true,
  2558. "_isAbsVerticalCenter": true,
  2559. "_originalWidth": 158,
  2560. "_originalHeight": 40,
  2561. "_id": "7dBvmBlVZNr6A5OiKnIQS+"
  2562. },
  2563. {
  2564. "__type__": "cc.Node",
  2565. "_name": "PLACEHOLDER_LABEL",
  2566. "_objFlags": 0,
  2567. "_parent": {
  2568. "__id__": 47
  2569. },
  2570. "_children": [],
  2571. "_active": true,
  2572. "_components": [
  2573. {
  2574. "__id__": 55
  2575. },
  2576. {
  2577. "__id__": 56
  2578. }
  2579. ],
  2580. "_prefab": null,
  2581. "_opacity": 255,
  2582. "_color": {
  2583. "__type__": "cc.Color",
  2584. "r": 255,
  2585. "g": 255,
  2586. "b": 255,
  2587. "a": 255
  2588. },
  2589. "_contentSize": {
  2590. "__type__": "cc.Size",
  2591. "width": 348,
  2592. "height": 60
  2593. },
  2594. "_anchorPoint": {
  2595. "__type__": "cc.Vec2",
  2596. "x": 0,
  2597. "y": 1
  2598. },
  2599. "_trs": {
  2600. "__type__": "TypedArray",
  2601. "ctor": "Float64Array",
  2602. "array": [
  2603. -173,
  2604. 30,
  2605. 0,
  2606. 0,
  2607. 0,
  2608. 0,
  2609. 1,
  2610. 1,
  2611. 1,
  2612. 1
  2613. ]
  2614. },
  2615. "_eulerAngles": {
  2616. "__type__": "cc.Vec3",
  2617. "x": 0,
  2618. "y": 0,
  2619. "z": 0
  2620. },
  2621. "_skewX": 0,
  2622. "_skewY": 0,
  2623. "_is3DNode": false,
  2624. "_groupIndex": 0,
  2625. "groupIndex": 0,
  2626. "_id": "0esKhhNphABb3R4UHDxxMn"
  2627. },
  2628. {
  2629. "__type__": "cc.Label",
  2630. "_name": "",
  2631. "_objFlags": 0,
  2632. "node": {
  2633. "__id__": 54
  2634. },
  2635. "_enabled": true,
  2636. "_materials": [
  2637. {
  2638. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2639. }
  2640. ],
  2641. "_srcBlendFactor": 770,
  2642. "_dstBlendFactor": 771,
  2643. "_string": "请输入密码",
  2644. "_N$string": "请输入密码",
  2645. "_fontSize": 35,
  2646. "_lineHeight": 35,
  2647. "_enableWrapText": false,
  2648. "_N$file": {
  2649. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  2650. },
  2651. "_isSystemFontUsed": false,
  2652. "_spacingX": 0,
  2653. "_batchAsBitmap": false,
  2654. "_styleFlags": 0,
  2655. "_underlineHeight": 0,
  2656. "_N$horizontalAlign": 0,
  2657. "_N$verticalAlign": 1,
  2658. "_N$fontFamily": "Arial",
  2659. "_N$overflow": 1,
  2660. "_N$cacheMode": 0,
  2661. "_id": "f9OmcUnBNF65tk/SN95HXl"
  2662. },
  2663. {
  2664. "__type__": "cc.Widget",
  2665. "_name": "",
  2666. "_objFlags": 0,
  2667. "node": {
  2668. "__id__": 54
  2669. },
  2670. "_enabled": true,
  2671. "alignMode": 0,
  2672. "_target": null,
  2673. "_alignFlags": 45,
  2674. "_left": 2,
  2675. "_right": 0,
  2676. "_top": 0,
  2677. "_bottom": 0,
  2678. "_verticalCenter": 0,
  2679. "_horizontalCenter": 0,
  2680. "_isAbsLeft": true,
  2681. "_isAbsRight": true,
  2682. "_isAbsTop": true,
  2683. "_isAbsBottom": true,
  2684. "_isAbsHorizontalCenter": true,
  2685. "_isAbsVerticalCenter": true,
  2686. "_originalWidth": 158,
  2687. "_originalHeight": 40,
  2688. "_id": "efeZky1LZNqKT2qDfy4RUv"
  2689. },
  2690. {
  2691. "__type__": "cc.EditBox",
  2692. "_name": "",
  2693. "_objFlags": 0,
  2694. "node": {
  2695. "__id__": 47
  2696. },
  2697. "_enabled": true,
  2698. "_string": "",
  2699. "returnType": 0,
  2700. "maxLength": 18,
  2701. "_tabIndex": 0,
  2702. "editingDidBegan": [],
  2703. "textChanged": [],
  2704. "editingDidEnded": [],
  2705. "editingReturn": [],
  2706. "_N$textLabel": {
  2707. "__id__": 52
  2708. },
  2709. "_N$placeholderLabel": {
  2710. "__id__": 55
  2711. },
  2712. "_N$background": {
  2713. "__id__": 49
  2714. },
  2715. "_N$inputFlag": 5,
  2716. "_N$inputMode": 6,
  2717. "_N$stayOnTop": false,
  2718. "_id": "85CsWhGilK3Yq4nJXBCtip"
  2719. },
  2720. {
  2721. "__type__": "cc.Sprite",
  2722. "_name": "",
  2723. "_objFlags": 0,
  2724. "node": {
  2725. "__id__": 44
  2726. },
  2727. "_enabled": true,
  2728. "_materials": [
  2729. {
  2730. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2731. }
  2732. ],
  2733. "_srcBlendFactor": 770,
  2734. "_dstBlendFactor": 771,
  2735. "_spriteFrame": {
  2736. "__uuid__": "d36a348e-0b69-44f8-aeed-bce8094d5700"
  2737. },
  2738. "_type": 1,
  2739. "_sizeMode": 0,
  2740. "_fillType": 0,
  2741. "_fillCenter": {
  2742. "__type__": "cc.Vec2",
  2743. "x": 0,
  2744. "y": 0
  2745. },
  2746. "_fillStart": 0,
  2747. "_fillRange": 0,
  2748. "_isTrimmedMode": true,
  2749. "_atlas": null,
  2750. "_id": "60osyygzFAFINAgO7jpHZp"
  2751. },
  2752. {
  2753. "__type__": "cc.Node",
  2754. "_name": "btn",
  2755. "_objFlags": 0,
  2756. "_parent": {
  2757. "__id__": 24
  2758. },
  2759. "_children": [
  2760. {
  2761. "__id__": 60
  2762. }
  2763. ],
  2764. "_active": true,
  2765. "_components": [
  2766. {
  2767. "__id__": 62
  2768. },
  2769. {
  2770. "__id__": 63
  2771. },
  2772. {
  2773. "__id__": 64
  2774. }
  2775. ],
  2776. "_prefab": null,
  2777. "_opacity": 255,
  2778. "_color": {
  2779. "__type__": "cc.Color",
  2780. "r": 255,
  2781. "g": 255,
  2782. "b": 255,
  2783. "a": 255
  2784. },
  2785. "_contentSize": {
  2786. "__type__": "cc.Size",
  2787. "width": 313,
  2788. "height": 98
  2789. },
  2790. "_anchorPoint": {
  2791. "__type__": "cc.Vec2",
  2792. "x": 0.5,
  2793. "y": 0.5
  2794. },
  2795. "_trs": {
  2796. "__type__": "TypedArray",
  2797. "ctor": "Float64Array",
  2798. "array": [
  2799. 0,
  2800. -110.658,
  2801. 0,
  2802. 0,
  2803. 0,
  2804. 0,
  2805. 1,
  2806. 1,
  2807. 1,
  2808. 1
  2809. ]
  2810. },
  2811. "_eulerAngles": {
  2812. "__type__": "cc.Vec3",
  2813. "x": 0,
  2814. "y": 0,
  2815. "z": 0
  2816. },
  2817. "_skewX": 0,
  2818. "_skewY": 0,
  2819. "_is3DNode": false,
  2820. "_groupIndex": 0,
  2821. "groupIndex": 0,
  2822. "_id": "8aLdtxtHhLNYd8QqKjpFtr"
  2823. },
  2824. {
  2825. "__type__": "cc.Node",
  2826. "_name": "zi2",
  2827. "_objFlags": 0,
  2828. "_parent": {
  2829. "__id__": 59
  2830. },
  2831. "_children": [],
  2832. "_active": true,
  2833. "_components": [
  2834. {
  2835. "__id__": 61
  2836. }
  2837. ],
  2838. "_prefab": null,
  2839. "_opacity": 255,
  2840. "_color": {
  2841. "__type__": "cc.Color",
  2842. "r": 255,
  2843. "g": 255,
  2844. "b": 255,
  2845. "a": 255
  2846. },
  2847. "_contentSize": {
  2848. "__type__": "cc.Size",
  2849. "width": 85,
  2850. "height": 44
  2851. },
  2852. "_anchorPoint": {
  2853. "__type__": "cc.Vec2",
  2854. "x": 0.5,
  2855. "y": 0.5
  2856. },
  2857. "_trs": {
  2858. "__type__": "TypedArray",
  2859. "ctor": "Float64Array",
  2860. "array": [
  2861. 0,
  2862. 0,
  2863. 0,
  2864. 0,
  2865. 0,
  2866. 0,
  2867. 1,
  2868. 1,
  2869. 1,
  2870. 1
  2871. ]
  2872. },
  2873. "_eulerAngles": {
  2874. "__type__": "cc.Vec3",
  2875. "x": 0,
  2876. "y": 0,
  2877. "z": 0
  2878. },
  2879. "_skewX": 0,
  2880. "_skewY": 0,
  2881. "_is3DNode": false,
  2882. "_groupIndex": 0,
  2883. "groupIndex": 0,
  2884. "_id": "9b9zRb/RtHNadao/H7fwuX"
  2885. },
  2886. {
  2887. "__type__": "cc.Sprite",
  2888. "_name": "",
  2889. "_objFlags": 0,
  2890. "node": {
  2891. "__id__": 60
  2892. },
  2893. "_enabled": true,
  2894. "_materials": [
  2895. {
  2896. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2897. }
  2898. ],
  2899. "_srcBlendFactor": 770,
  2900. "_dstBlendFactor": 771,
  2901. "_spriteFrame": {
  2902. "__uuid__": "ec59ac3e-44ec-4160-823b-bf25487a3316"
  2903. },
  2904. "_type": 0,
  2905. "_sizeMode": 1,
  2906. "_fillType": 0,
  2907. "_fillCenter": {
  2908. "__type__": "cc.Vec2",
  2909. "x": 0,
  2910. "y": 0
  2911. },
  2912. "_fillStart": 0,
  2913. "_fillRange": 0,
  2914. "_isTrimmedMode": true,
  2915. "_atlas": null,
  2916. "_id": "3cVX6kz+FNF4oHCOnts9Ow"
  2917. },
  2918. {
  2919. "__type__": "cc.Sprite",
  2920. "_name": "",
  2921. "_objFlags": 0,
  2922. "node": {
  2923. "__id__": 59
  2924. },
  2925. "_enabled": true,
  2926. "_materials": [
  2927. {
  2928. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  2929. }
  2930. ],
  2931. "_srcBlendFactor": 770,
  2932. "_dstBlendFactor": 771,
  2933. "_spriteFrame": {
  2934. "__uuid__": "27f3bc37-0882-4730-bddc-a43e2ebd49e0"
  2935. },
  2936. "_type": 0,
  2937. "_sizeMode": 1,
  2938. "_fillType": 0,
  2939. "_fillCenter": {
  2940. "__type__": "cc.Vec2",
  2941. "x": 0,
  2942. "y": 0
  2943. },
  2944. "_fillStart": 0,
  2945. "_fillRange": 0,
  2946. "_isTrimmedMode": true,
  2947. "_atlas": null,
  2948. "_id": "f9ZW37fnRMlYZi6/9fNBgE"
  2949. },
  2950. {
  2951. "__type__": "2bd1d/kufRJBadBMd1/PAFj",
  2952. "_name": "",
  2953. "_objFlags": 0,
  2954. "node": {
  2955. "__id__": 59
  2956. },
  2957. "_enabled": true,
  2958. "safeTime": 3,
  2959. "_id": "1cLl518jFKRqFoodVagOs7"
  2960. },
  2961. {
  2962. "__type__": "cc.Button",
  2963. "_name": "",
  2964. "_objFlags": 0,
  2965. "node": {
  2966. "__id__": 59
  2967. },
  2968. "_enabled": true,
  2969. "_normalMaterial": null,
  2970. "_grayMaterial": null,
  2971. "duration": 0.1,
  2972. "zoomScale": 1.2,
  2973. "clickEvents": [
  2974. {
  2975. "__id__": 65
  2976. }
  2977. ],
  2978. "_N$interactable": true,
  2979. "_N$enableAutoGrayEffect": false,
  2980. "_N$transition": 0,
  2981. "transition": 0,
  2982. "_N$normalColor": {
  2983. "__type__": "cc.Color",
  2984. "r": 230,
  2985. "g": 230,
  2986. "b": 230,
  2987. "a": 255
  2988. },
  2989. "_N$pressedColor": {
  2990. "__type__": "cc.Color",
  2991. "r": 200,
  2992. "g": 200,
  2993. "b": 200,
  2994. "a": 255
  2995. },
  2996. "pressedColor": {
  2997. "__type__": "cc.Color",
  2998. "r": 200,
  2999. "g": 200,
  3000. "b": 200,
  3001. "a": 255
  3002. },
  3003. "_N$hoverColor": {
  3004. "__type__": "cc.Color",
  3005. "r": 255,
  3006. "g": 255,
  3007. "b": 255,
  3008. "a": 255
  3009. },
  3010. "hoverColor": {
  3011. "__type__": "cc.Color",
  3012. "r": 255,
  3013. "g": 255,
  3014. "b": 255,
  3015. "a": 255
  3016. },
  3017. "_N$disabledColor": {
  3018. "__type__": "cc.Color",
  3019. "r": 120,
  3020. "g": 120,
  3021. "b": 120,
  3022. "a": 200
  3023. },
  3024. "_N$normalSprite": {
  3025. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3026. },
  3027. "_N$pressedSprite": {
  3028. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3029. },
  3030. "pressedSprite": {
  3031. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3032. },
  3033. "_N$hoverSprite": {
  3034. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3035. },
  3036. "hoverSprite": {
  3037. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3038. },
  3039. "_N$disabledSprite": {
  3040. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3041. },
  3042. "_N$target": {
  3043. "__id__": 59
  3044. },
  3045. "_id": "0dFY8utYhN/rcElVdoWZEy"
  3046. },
  3047. {
  3048. "__type__": "cc.ClickEvent",
  3049. "target": {
  3050. "__id__": 23
  3051. },
  3052. "component": "",
  3053. "_componentId": "c2ef3pGUdZP0qg/3i3piMwx",
  3054. "handler": "onClickAccountLogin",
  3055. "customEventData": ""
  3056. },
  3057. {
  3058. "__type__": "cc.Node",
  3059. "_name": "zhuce",
  3060. "_objFlags": 0,
  3061. "_parent": {
  3062. "__id__": 24
  3063. },
  3064. "_children": [],
  3065. "_active": true,
  3066. "_components": [
  3067. {
  3068. "__id__": 67
  3069. },
  3070. {
  3071. "__id__": 68
  3072. }
  3073. ],
  3074. "_prefab": null,
  3075. "_opacity": 255,
  3076. "_color": {
  3077. "__type__": "cc.Color",
  3078. "r": 255,
  3079. "g": 255,
  3080. "b": 255,
  3081. "a": 255
  3082. },
  3083. "_contentSize": {
  3084. "__type__": "cc.Size",
  3085. "width": 81,
  3086. "height": 95
  3087. },
  3088. "_anchorPoint": {
  3089. "__type__": "cc.Vec2",
  3090. "x": 0.5,
  3091. "y": 0.5
  3092. },
  3093. "_trs": {
  3094. "__type__": "TypedArray",
  3095. "ctor": "Float64Array",
  3096. "array": [
  3097. 237.38,
  3098. -170.063,
  3099. 0,
  3100. 0,
  3101. 0,
  3102. 0,
  3103. 1,
  3104. 1,
  3105. 1,
  3106. 1
  3107. ]
  3108. },
  3109. "_eulerAngles": {
  3110. "__type__": "cc.Vec3",
  3111. "x": 0,
  3112. "y": 0,
  3113. "z": 0
  3114. },
  3115. "_skewX": 0,
  3116. "_skewY": 0,
  3117. "_is3DNode": false,
  3118. "_groupIndex": 0,
  3119. "groupIndex": 0,
  3120. "_id": "252hsPUMZKi6X+xyiimr56"
  3121. },
  3122. {
  3123. "__type__": "cc.Sprite",
  3124. "_name": "",
  3125. "_objFlags": 0,
  3126. "node": {
  3127. "__id__": 66
  3128. },
  3129. "_enabled": true,
  3130. "_materials": [
  3131. {
  3132. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3133. }
  3134. ],
  3135. "_srcBlendFactor": 770,
  3136. "_dstBlendFactor": 771,
  3137. "_spriteFrame": {
  3138. "__uuid__": "8221c109-fabd-4b50-bea4-60674e68077f"
  3139. },
  3140. "_type": 0,
  3141. "_sizeMode": 1,
  3142. "_fillType": 0,
  3143. "_fillCenter": {
  3144. "__type__": "cc.Vec2",
  3145. "x": 0,
  3146. "y": 0
  3147. },
  3148. "_fillStart": 0,
  3149. "_fillRange": 0,
  3150. "_isTrimmedMode": true,
  3151. "_atlas": null,
  3152. "_id": "7bP0HPt3pBI6xL0arIbT6l"
  3153. },
  3154. {
  3155. "__type__": "cc.Button",
  3156. "_name": "",
  3157. "_objFlags": 0,
  3158. "node": {
  3159. "__id__": 66
  3160. },
  3161. "_enabled": true,
  3162. "_normalMaterial": null,
  3163. "_grayMaterial": null,
  3164. "duration": 0.1,
  3165. "zoomScale": 1.2,
  3166. "clickEvents": [
  3167. {
  3168. "__id__": 69
  3169. }
  3170. ],
  3171. "_N$interactable": true,
  3172. "_N$enableAutoGrayEffect": false,
  3173. "_N$transition": 0,
  3174. "transition": 0,
  3175. "_N$normalColor": {
  3176. "__type__": "cc.Color",
  3177. "r": 255,
  3178. "g": 255,
  3179. "b": 255,
  3180. "a": 255
  3181. },
  3182. "_N$pressedColor": {
  3183. "__type__": "cc.Color",
  3184. "r": 211,
  3185. "g": 211,
  3186. "b": 211,
  3187. "a": 255
  3188. },
  3189. "pressedColor": {
  3190. "__type__": "cc.Color",
  3191. "r": 211,
  3192. "g": 211,
  3193. "b": 211,
  3194. "a": 255
  3195. },
  3196. "_N$hoverColor": {
  3197. "__type__": "cc.Color",
  3198. "r": 255,
  3199. "g": 255,
  3200. "b": 255,
  3201. "a": 255
  3202. },
  3203. "hoverColor": {
  3204. "__type__": "cc.Color",
  3205. "r": 255,
  3206. "g": 255,
  3207. "b": 255,
  3208. "a": 255
  3209. },
  3210. "_N$disabledColor": {
  3211. "__type__": "cc.Color",
  3212. "r": 124,
  3213. "g": 124,
  3214. "b": 124,
  3215. "a": 255
  3216. },
  3217. "_N$normalSprite": null,
  3218. "_N$pressedSprite": null,
  3219. "pressedSprite": null,
  3220. "_N$hoverSprite": null,
  3221. "hoverSprite": null,
  3222. "_N$disabledSprite": null,
  3223. "_N$target": null,
  3224. "_id": "2fbZu3jmpJCr4v1tQCYH0I"
  3225. },
  3226. {
  3227. "__type__": "cc.ClickEvent",
  3228. "target": {
  3229. "__id__": 23
  3230. },
  3231. "component": "",
  3232. "_componentId": "c2ef3pGUdZP0qg/3i3piMwx",
  3233. "handler": "onClickRegister",
  3234. "customEventData": ""
  3235. },
  3236. {
  3237. "__type__": "cc.Node",
  3238. "_name": "wxLogin",
  3239. "_objFlags": 0,
  3240. "_parent": {
  3241. "__id__": 23
  3242. },
  3243. "_children": [],
  3244. "_active": false,
  3245. "_components": [],
  3246. "_prefab": null,
  3247. "_opacity": 255,
  3248. "_color": {
  3249. "__type__": "cc.Color",
  3250. "r": 255,
  3251. "g": 255,
  3252. "b": 255,
  3253. "a": 255
  3254. },
  3255. "_contentSize": {
  3256. "__type__": "cc.Size",
  3257. "width": 0,
  3258. "height": 0
  3259. },
  3260. "_anchorPoint": {
  3261. "__type__": "cc.Vec2",
  3262. "x": 0.5,
  3263. "y": 0.5
  3264. },
  3265. "_trs": {
  3266. "__type__": "TypedArray",
  3267. "ctor": "Float64Array",
  3268. "array": [
  3269. 0,
  3270. 0,
  3271. 0,
  3272. 0,
  3273. 0,
  3274. 0,
  3275. 1,
  3276. 1,
  3277. 1,
  3278. 1
  3279. ]
  3280. },
  3281. "_eulerAngles": {
  3282. "__type__": "cc.Vec3",
  3283. "x": 0,
  3284. "y": 0,
  3285. "z": 0
  3286. },
  3287. "_skewX": 0,
  3288. "_skewY": 0,
  3289. "_is3DNode": false,
  3290. "_groupIndex": 0,
  3291. "groupIndex": 0,
  3292. "_id": "e8mV5AfWRJwK8uAcRbZPNh"
  3293. },
  3294. {
  3295. "__type__": "c2ef3pGUdZP0qg/3i3piMwx",
  3296. "_name": "",
  3297. "_objFlags": 0,
  3298. "node": {
  3299. "__id__": 23
  3300. },
  3301. "_enabled": true,
  3302. "accountNode": {
  3303. "__id__": 24
  3304. },
  3305. "editName": {
  3306. "__id__": 42
  3307. },
  3308. "editPwd": {
  3309. "__id__": 57
  3310. },
  3311. "wxNode": {
  3312. "__id__": 70
  3313. },
  3314. "_id": "1fBAyIglxNorH8l+CH+twE"
  3315. },
  3316. {
  3317. "__type__": "cc.Node",
  3318. "_name": "labVersion",
  3319. "_objFlags": 0,
  3320. "_parent": {
  3321. "__id__": 2
  3322. },
  3323. "_children": [],
  3324. "_active": true,
  3325. "_components": [
  3326. {
  3327. "__id__": 73
  3328. },
  3329. {
  3330. "__id__": 74
  3331. }
  3332. ],
  3333. "_prefab": null,
  3334. "_opacity": 255,
  3335. "_color": {
  3336. "__type__": "cc.Color",
  3337. "r": 255,
  3338. "g": 255,
  3339. "b": 255,
  3340. "a": 255
  3341. },
  3342. "_contentSize": {
  3343. "__type__": "cc.Size",
  3344. "width": 111.15,
  3345. "height": 50.4
  3346. },
  3347. "_anchorPoint": {
  3348. "__type__": "cc.Vec2",
  3349. "x": 0.5,
  3350. "y": 0.5
  3351. },
  3352. "_trs": {
  3353. "__type__": "TypedArray",
  3354. "ctor": "Float64Array",
  3355. "array": [
  3356. -272.714,
  3357. 567.627,
  3358. 0,
  3359. 0,
  3360. 0,
  3361. 0,
  3362. 1,
  3363. 1,
  3364. 1,
  3365. 1
  3366. ]
  3367. },
  3368. "_eulerAngles": {
  3369. "__type__": "cc.Vec3",
  3370. "x": 0,
  3371. "y": 0,
  3372. "z": 0
  3373. },
  3374. "_skewX": 0,
  3375. "_skewY": 0,
  3376. "_is3DNode": false,
  3377. "_groupIndex": 0,
  3378. "groupIndex": 0,
  3379. "_id": "23Bgjt64tCGphUmpt+kT6y"
  3380. },
  3381. {
  3382. "__type__": "cc.Label",
  3383. "_name": "",
  3384. "_objFlags": 0,
  3385. "node": {
  3386. "__id__": 72
  3387. },
  3388. "_enabled": true,
  3389. "_materials": [
  3390. {
  3391. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3392. }
  3393. ],
  3394. "_srcBlendFactor": 770,
  3395. "_dstBlendFactor": 771,
  3396. "_string": "V1.x.x",
  3397. "_N$string": "V1.x.x",
  3398. "_fontSize": 40,
  3399. "_lineHeight": 40,
  3400. "_enableWrapText": true,
  3401. "_N$file": null,
  3402. "_isSystemFontUsed": true,
  3403. "_spacingX": 0,
  3404. "_batchAsBitmap": false,
  3405. "_styleFlags": 0,
  3406. "_underlineHeight": 0,
  3407. "_N$horizontalAlign": 1,
  3408. "_N$verticalAlign": 1,
  3409. "_N$fontFamily": "Arial",
  3410. "_N$overflow": 0,
  3411. "_N$cacheMode": 0,
  3412. "_id": "99v676cIlPs7UT8TmV/9hZ"
  3413. },
  3414. {
  3415. "__type__": "cc.Widget",
  3416. "_name": "",
  3417. "_objFlags": 0,
  3418. "node": {
  3419. "__id__": 72
  3420. },
  3421. "_enabled": true,
  3422. "alignMode": 1,
  3423. "_target": null,
  3424. "_alignFlags": 9,
  3425. "_left": 31.711000000000013,
  3426. "_right": 0,
  3427. "_top": 47.173,
  3428. "_bottom": 0,
  3429. "_verticalCenter": 0,
  3430. "_horizontalCenter": 0,
  3431. "_isAbsLeft": true,
  3432. "_isAbsRight": true,
  3433. "_isAbsTop": true,
  3434. "_isAbsBottom": true,
  3435. "_isAbsHorizontalCenter": true,
  3436. "_isAbsVerticalCenter": true,
  3437. "_originalWidth": 0,
  3438. "_originalHeight": 0,
  3439. "_id": "49mWu2NYxBXbTvtYnC980R"
  3440. },
  3441. {
  3442. "__type__": "cc.Node",
  3443. "_name": "shuoming",
  3444. "_objFlags": 0,
  3445. "_parent": {
  3446. "__id__": 2
  3447. },
  3448. "_children": [],
  3449. "_active": true,
  3450. "_components": [
  3451. {
  3452. "__id__": 76
  3453. },
  3454. {
  3455. "__id__": 77
  3456. }
  3457. ],
  3458. "_prefab": null,
  3459. "_opacity": 255,
  3460. "_color": {
  3461. "__type__": "cc.Color",
  3462. "r": 255,
  3463. "g": 255,
  3464. "b": 255,
  3465. "a": 255
  3466. },
  3467. "_contentSize": {
  3468. "__type__": "cc.Size",
  3469. "width": 660,
  3470. "height": 171
  3471. },
  3472. "_anchorPoint": {
  3473. "__type__": "cc.Vec2",
  3474. "x": 0.5,
  3475. "y": 0.5
  3476. },
  3477. "_trs": {
  3478. "__type__": "TypedArray",
  3479. "ctor": "Float64Array",
  3480. "array": [
  3481. 0,
  3482. -542.888,
  3483. 0,
  3484. 0,
  3485. 0,
  3486. 0,
  3487. 1,
  3488. 1,
  3489. 1,
  3490. 1
  3491. ]
  3492. },
  3493. "_eulerAngles": {
  3494. "__type__": "cc.Vec3",
  3495. "x": 0,
  3496. "y": 0,
  3497. "z": 0
  3498. },
  3499. "_skewX": 0,
  3500. "_skewY": 0,
  3501. "_is3DNode": false,
  3502. "_groupIndex": 0,
  3503. "groupIndex": 0,
  3504. "_id": "5d+bVmvfdFDoqKl4paxKJd"
  3505. },
  3506. {
  3507. "__type__": "cc.Sprite",
  3508. "_name": "",
  3509. "_objFlags": 0,
  3510. "node": {
  3511. "__id__": 75
  3512. },
  3513. "_enabled": true,
  3514. "_materials": [
  3515. {
  3516. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3517. }
  3518. ],
  3519. "_srcBlendFactor": 770,
  3520. "_dstBlendFactor": 771,
  3521. "_spriteFrame": {
  3522. "__uuid__": "977869e3-4612-462a-ad2e-14c721204ac1"
  3523. },
  3524. "_type": 0,
  3525. "_sizeMode": 1,
  3526. "_fillType": 0,
  3527. "_fillCenter": {
  3528. "__type__": "cc.Vec2",
  3529. "x": 0,
  3530. "y": 0
  3531. },
  3532. "_fillStart": 0,
  3533. "_fillRange": 0,
  3534. "_isTrimmedMode": true,
  3535. "_atlas": null,
  3536. "_id": "aar3zmxHBFqKZOX8qrrk1z"
  3537. },
  3538. {
  3539. "__type__": "cc.Widget",
  3540. "_name": "",
  3541. "_objFlags": 0,
  3542. "node": {
  3543. "__id__": 75
  3544. },
  3545. "_enabled": true,
  3546. "alignMode": 1,
  3547. "_target": null,
  3548. "_alignFlags": 4,
  3549. "_left": 0,
  3550. "_right": 0,
  3551. "_top": 0,
  3552. "_bottom": 11.611999999999966,
  3553. "_verticalCenter": 0,
  3554. "_horizontalCenter": 0,
  3555. "_isAbsLeft": true,
  3556. "_isAbsRight": true,
  3557. "_isAbsTop": true,
  3558. "_isAbsBottom": true,
  3559. "_isAbsHorizontalCenter": true,
  3560. "_isAbsVerticalCenter": true,
  3561. "_originalWidth": 0,
  3562. "_originalHeight": 0,
  3563. "_id": "bafvA47ltFG640Rj1c4+Yt"
  3564. },
  3565. {
  3566. "__type__": "cc.Canvas",
  3567. "_name": "",
  3568. "_objFlags": 0,
  3569. "node": {
  3570. "__id__": 2
  3571. },
  3572. "_enabled": true,
  3573. "_designResolution": {
  3574. "__type__": "cc.Size",
  3575. "width": 720,
  3576. "height": 1280
  3577. },
  3578. "_fitWidth": true,
  3579. "_fitHeight": false,
  3580. "_id": "59Cd0ovbdF4byw5sbjJDx7"
  3581. },
  3582. {
  3583. "__type__": "cc.Widget",
  3584. "_name": "",
  3585. "_objFlags": 0,
  3586. "node": {
  3587. "__id__": 2
  3588. },
  3589. "_enabled": true,
  3590. "alignMode": 1,
  3591. "_target": null,
  3592. "_alignFlags": 45,
  3593. "_left": 0,
  3594. "_right": 0,
  3595. "_top": 0,
  3596. "_bottom": 0,
  3597. "_verticalCenter": 0,
  3598. "_horizontalCenter": 0,
  3599. "_isAbsLeft": true,
  3600. "_isAbsRight": true,
  3601. "_isAbsTop": true,
  3602. "_isAbsBottom": true,
  3603. "_isAbsHorizontalCenter": true,
  3604. "_isAbsVerticalCenter": true,
  3605. "_originalWidth": 0,
  3606. "_originalHeight": 0,
  3607. "_id": "29zXboiXFBKoIV4PQ2liTe"
  3608. },
  3609. {
  3610. "__type__": "e59feFjgYpCtZpr3klfI8dC",
  3611. "_name": "",
  3612. "_objFlags": 0,
  3613. "node": {
  3614. "__id__": 2
  3615. },
  3616. "_enabled": true,
  3617. "loadLayer": {
  3618. "__id__": 7
  3619. },
  3620. "loginLayer": {
  3621. "__id__": 23
  3622. },
  3623. "labVersion": {
  3624. "__id__": 73
  3625. },
  3626. "_id": "ad/q2aYyhKyoSfEjvhgTeP"
  3627. },
  3628. {
  3629. "__type__": "cc.Node",
  3630. "_name": "WaitNodeLayer",
  3631. "_objFlags": 0,
  3632. "_parent": {
  3633. "__id__": 1
  3634. },
  3635. "_children": [
  3636. {
  3637. "__id__": 82
  3638. },
  3639. {
  3640. "__id__": 86
  3641. }
  3642. ],
  3643. "_active": false,
  3644. "_components": [
  3645. {
  3646. "__id__": 94
  3647. },
  3648. {
  3649. "__id__": 95
  3650. }
  3651. ],
  3652. "_prefab": {
  3653. "__id__": 96
  3654. },
  3655. "_opacity": 255,
  3656. "_color": {
  3657. "__type__": "cc.Color",
  3658. "r": 255,
  3659. "g": 255,
  3660. "b": 255,
  3661. "a": 255
  3662. },
  3663. "_contentSize": {
  3664. "__type__": "cc.Size",
  3665. "width": 0,
  3666. "height": 0
  3667. },
  3668. "_anchorPoint": {
  3669. "__type__": "cc.Vec2",
  3670. "x": 0.5,
  3671. "y": 0.5
  3672. },
  3673. "_trs": {
  3674. "__type__": "TypedArray",
  3675. "ctor": "Float64Array",
  3676. "array": [
  3677. 360,
  3678. 640,
  3679. 0,
  3680. 0,
  3681. 0,
  3682. 0,
  3683. 1,
  3684. 1,
  3685. 1,
  3686. 1
  3687. ]
  3688. },
  3689. "_eulerAngles": {
  3690. "__type__": "cc.Vec3",
  3691. "x": 0,
  3692. "y": 0,
  3693. "z": 0
  3694. },
  3695. "_skewX": 0,
  3696. "_skewY": 0,
  3697. "_is3DNode": false,
  3698. "_groupIndex": 0,
  3699. "groupIndex": 0,
  3700. "_id": "50f5jwjCJGUKu+doZslqlx"
  3701. },
  3702. {
  3703. "__type__": "cc.Node",
  3704. "_name": "Mask",
  3705. "_objFlags": 0,
  3706. "_parent": {
  3707. "__id__": 81
  3708. },
  3709. "_children": [],
  3710. "_active": true,
  3711. "_components": [
  3712. {
  3713. "__id__": 83
  3714. },
  3715. {
  3716. "__id__": 84
  3717. }
  3718. ],
  3719. "_prefab": {
  3720. "__id__": 85
  3721. },
  3722. "_opacity": 120,
  3723. "_color": {
  3724. "__type__": "cc.Color",
  3725. "r": 0,
  3726. "g": 0,
  3727. "b": 0,
  3728. "a": 255
  3729. },
  3730. "_contentSize": {
  3731. "__type__": "cc.Size",
  3732. "width": 960,
  3733. "height": 1560
  3734. },
  3735. "_anchorPoint": {
  3736. "__type__": "cc.Vec2",
  3737. "x": 0.5,
  3738. "y": 0.5
  3739. },
  3740. "_trs": {
  3741. "__type__": "TypedArray",
  3742. "ctor": "Float64Array",
  3743. "array": [
  3744. 0,
  3745. 0,
  3746. 0,
  3747. 0,
  3748. 0,
  3749. 0,
  3750. 1,
  3751. 1,
  3752. 1,
  3753. 1
  3754. ]
  3755. },
  3756. "_eulerAngles": {
  3757. "__type__": "cc.Vec3",
  3758. "x": 0,
  3759. "y": 0,
  3760. "z": 0
  3761. },
  3762. "_skewX": 0,
  3763. "_skewY": 0,
  3764. "_is3DNode": false,
  3765. "_groupIndex": 0,
  3766. "groupIndex": 0,
  3767. "_id": "f0oegImoVFfK/q4krrq6KN"
  3768. },
  3769. {
  3770. "__type__": "cc.Sprite",
  3771. "_name": "",
  3772. "_objFlags": 0,
  3773. "node": {
  3774. "__id__": 82
  3775. },
  3776. "_enabled": true,
  3777. "_materials": [
  3778. {
  3779. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3780. }
  3781. ],
  3782. "_srcBlendFactor": 770,
  3783. "_dstBlendFactor": 771,
  3784. "_spriteFrame": {
  3785. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  3786. },
  3787. "_type": 0,
  3788. "_sizeMode": 0,
  3789. "_fillType": 0,
  3790. "_fillCenter": {
  3791. "__type__": "cc.Vec2",
  3792. "x": 0,
  3793. "y": 0
  3794. },
  3795. "_fillStart": 0,
  3796. "_fillRange": 0,
  3797. "_isTrimmedMode": true,
  3798. "_atlas": null,
  3799. "_id": "d5XvwK6ddLr63Gdjb+qoQT"
  3800. },
  3801. {
  3802. "__type__": "cc.BlockInputEvents",
  3803. "_name": "",
  3804. "_objFlags": 0,
  3805. "node": {
  3806. "__id__": 82
  3807. },
  3808. "_enabled": true,
  3809. "_id": "29lfL/qs1CTp8fHyxwO9Rt"
  3810. },
  3811. {
  3812. "__type__": "cc.PrefabInfo",
  3813. "root": {
  3814. "__id__": 81
  3815. },
  3816. "asset": {
  3817. "__uuid__": "d53fffef-5818-4230-b4d7-efbd365efacb"
  3818. },
  3819. "fileId": "34KTHQeclC4aYXeRIOMET8",
  3820. "sync": false
  3821. },
  3822. {
  3823. "__type__": "cc.Node",
  3824. "_name": "fish",
  3825. "_objFlags": 0,
  3826. "_parent": {
  3827. "__id__": 81
  3828. },
  3829. "_children": [
  3830. {
  3831. "__id__": 87
  3832. }
  3833. ],
  3834. "_active": true,
  3835. "_components": [
  3836. {
  3837. "__id__": 90
  3838. },
  3839. {
  3840. "__id__": 91
  3841. },
  3842. {
  3843. "__id__": 92
  3844. }
  3845. ],
  3846. "_prefab": {
  3847. "__id__": 93
  3848. },
  3849. "_opacity": 255,
  3850. "_color": {
  3851. "__type__": "cc.Color",
  3852. "r": 255,
  3853. "g": 255,
  3854. "b": 255,
  3855. "a": 255
  3856. },
  3857. "_contentSize": {
  3858. "__type__": "cc.Size",
  3859. "width": 80,
  3860. "height": 152
  3861. },
  3862. "_anchorPoint": {
  3863. "__type__": "cc.Vec2",
  3864. "x": 0.5,
  3865. "y": 0.5
  3866. },
  3867. "_trs": {
  3868. "__type__": "TypedArray",
  3869. "ctor": "Float64Array",
  3870. "array": [
  3871. 0,
  3872. 0,
  3873. 0,
  3874. 0,
  3875. 0,
  3876. 0,
  3877. 1,
  3878. 1,
  3879. 1,
  3880. 1
  3881. ]
  3882. },
  3883. "_eulerAngles": {
  3884. "__type__": "cc.Vec3",
  3885. "x": 0,
  3886. "y": 0,
  3887. "z": 0
  3888. },
  3889. "_skewX": 0,
  3890. "_skewY": 0,
  3891. "_is3DNode": false,
  3892. "_groupIndex": 0,
  3893. "groupIndex": 0,
  3894. "_id": "b5cosP+bhDBI8/qDMgnp5T"
  3895. },
  3896. {
  3897. "__type__": "cc.Node",
  3898. "_name": "lab",
  3899. "_objFlags": 0,
  3900. "_parent": {
  3901. "__id__": 86
  3902. },
  3903. "_children": [],
  3904. "_active": true,
  3905. "_components": [
  3906. {
  3907. "__id__": 88
  3908. }
  3909. ],
  3910. "_prefab": {
  3911. "__id__": 89
  3912. },
  3913. "_opacity": 255,
  3914. "_color": {
  3915. "__type__": "cc.Color",
  3916. "r": 255,
  3917. "g": 255,
  3918. "b": 255,
  3919. "a": 255
  3920. },
  3921. "_contentSize": {
  3922. "__type__": "cc.Size",
  3923. "width": 231.88,
  3924. "height": 50.4
  3925. },
  3926. "_anchorPoint": {
  3927. "__type__": "cc.Vec2",
  3928. "x": 0.5,
  3929. "y": 0.5
  3930. },
  3931. "_trs": {
  3932. "__type__": "TypedArray",
  3933. "ctor": "Float64Array",
  3934. "array": [
  3935. 0,
  3936. -190,
  3937. 0,
  3938. 0,
  3939. 0,
  3940. 0,
  3941. 1,
  3942. 1,
  3943. 1,
  3944. 1
  3945. ]
  3946. },
  3947. "_eulerAngles": {
  3948. "__type__": "cc.Vec3",
  3949. "x": 0,
  3950. "y": 0,
  3951. "z": 0
  3952. },
  3953. "_skewX": 0,
  3954. "_skewY": 0,
  3955. "_is3DNode": false,
  3956. "_groupIndex": 0,
  3957. "groupIndex": 0,
  3958. "_id": "cdBzXon21BAoTkUME/z7dv"
  3959. },
  3960. {
  3961. "__type__": "cc.Label",
  3962. "_name": "",
  3963. "_objFlags": 0,
  3964. "node": {
  3965. "__id__": 87
  3966. },
  3967. "_enabled": true,
  3968. "_materials": [
  3969. {
  3970. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  3971. }
  3972. ],
  3973. "_srcBlendFactor": 770,
  3974. "_dstBlendFactor": 771,
  3975. "_string": "页面加载中...",
  3976. "_N$string": "页面加载中...",
  3977. "_fontSize": 40,
  3978. "_lineHeight": 40,
  3979. "_enableWrapText": true,
  3980. "_N$file": {
  3981. "__uuid__": "2f41974a-56ee-45f1-9012-c67f820aa7ec"
  3982. },
  3983. "_isSystemFontUsed": false,
  3984. "_spacingX": 0,
  3985. "_batchAsBitmap": false,
  3986. "_styleFlags": 0,
  3987. "_underlineHeight": 0,
  3988. "_N$horizontalAlign": 1,
  3989. "_N$verticalAlign": 1,
  3990. "_N$fontFamily": "Arial",
  3991. "_N$overflow": 0,
  3992. "_N$cacheMode": 0,
  3993. "_id": "3a9oMrK6dNBYqpWxXkM6Xg"
  3994. },
  3995. {
  3996. "__type__": "cc.PrefabInfo",
  3997. "root": {
  3998. "__id__": 81
  3999. },
  4000. "asset": {
  4001. "__uuid__": "d53fffef-5818-4230-b4d7-efbd365efacb"
  4002. },
  4003. "fileId": "e2f3G9EMtFhLtZzgPO19BU",
  4004. "sync": false
  4005. },
  4006. {
  4007. "__type__": "cc.Sprite",
  4008. "_name": "",
  4009. "_objFlags": 0,
  4010. "node": {
  4011. "__id__": 86
  4012. },
  4013. "_enabled": true,
  4014. "_materials": [
  4015. {
  4016. "__uuid__": "eca5d2f2-8ef6-41c2-bbe6-f9c79d09c432"
  4017. }
  4018. ],
  4019. "_srcBlendFactor": 770,
  4020. "_dstBlendFactor": 771,
  4021. "_spriteFrame": {
  4022. "__uuid__": "781c3e20-1e06-4bea-8d9c-3739543693cf"
  4023. },
  4024. "_type": 0,
  4025. "_sizeMode": 1,
  4026. "_fillType": 0,
  4027. "_fillCenter": {
  4028. "__type__": "cc.Vec2",
  4029. "x": 0,
  4030. "y": 0
  4031. },
  4032. "_fillStart": 0,
  4033. "_fillRange": 0,
  4034. "_isTrimmedMode": true,
  4035. "_atlas": null,
  4036. "_id": "00RfvEg5lCkLWrtUa3CZFt"
  4037. },
  4038. {
  4039. "__type__": "cc.Animation",
  4040. "_name": "",
  4041. "_objFlags": 0,
  4042. "node": {
  4043. "__id__": 86
  4044. },
  4045. "_enabled": true,
  4046. "_defaultClip": {
  4047. "__uuid__": "1aaff503-95db-49c3-aa04-e686c72caace"
  4048. },
  4049. "_clips": [
  4050. {
  4051. "__uuid__": "1aaff503-95db-49c3-aa04-e686c72caace"
  4052. }
  4053. ],
  4054. "playOnLoad": true,
  4055. "_id": "29d2VzGTdMDZ917oD//3j7"
  4056. },
  4057. {
  4058. "__type__": "cc.Widget",
  4059. "_name": "",
  4060. "_objFlags": 0,
  4061. "node": {
  4062. "__id__": 86
  4063. },
  4064. "_enabled": true,
  4065. "alignMode": 1,
  4066. "_target": null,
  4067. "_alignFlags": 18,
  4068. "_left": 360,
  4069. "_right": 0,
  4070. "_top": 0,
  4071. "_bottom": 0,
  4072. "_verticalCenter": 0,
  4073. "_horizontalCenter": 0,
  4074. "_isAbsLeft": true,
  4075. "_isAbsRight": true,
  4076. "_isAbsTop": true,
  4077. "_isAbsBottom": true,
  4078. "_isAbsHorizontalCenter": true,
  4079. "_isAbsVerticalCenter": true,
  4080. "_originalWidth": 0,
  4081. "_originalHeight": 0,
  4082. "_id": "06YNjP8nZD8oZyVSHj2b2p"
  4083. },
  4084. {
  4085. "__type__": "cc.PrefabInfo",
  4086. "root": {
  4087. "__id__": 81
  4088. },
  4089. "asset": {
  4090. "__uuid__": "d53fffef-5818-4230-b4d7-efbd365efacb"
  4091. },
  4092. "fileId": "5ewUzYlMJBJYa4/GGNKFpe",
  4093. "sync": false
  4094. },
  4095. {
  4096. "__type__": "bf836TvPdNB3b42g6L6+X0F",
  4097. "_name": "",
  4098. "_objFlags": 0,
  4099. "node": {
  4100. "__id__": 81
  4101. },
  4102. "_enabled": true,
  4103. "_id": "4aLXA7EtNNm65pZr5+PkV5"
  4104. },
  4105. {
  4106. "__type__": "cc.Widget",
  4107. "_name": "",
  4108. "_objFlags": 0,
  4109. "node": {
  4110. "__id__": 81
  4111. },
  4112. "_enabled": true,
  4113. "alignMode": 1,
  4114. "_target": null,
  4115. "_alignFlags": 18,
  4116. "_left": 360,
  4117. "_right": 0,
  4118. "_top": 0,
  4119. "_bottom": 0,
  4120. "_verticalCenter": 0,
  4121. "_horizontalCenter": 0,
  4122. "_isAbsLeft": true,
  4123. "_isAbsRight": true,
  4124. "_isAbsTop": true,
  4125. "_isAbsBottom": true,
  4126. "_isAbsHorizontalCenter": true,
  4127. "_isAbsVerticalCenter": true,
  4128. "_originalWidth": 0,
  4129. "_originalHeight": 0,
  4130. "_id": "84B7ATF99CnIbxiOMMG4Dw"
  4131. },
  4132. {
  4133. "__type__": "cc.PrefabInfo",
  4134. "root": {
  4135. "__id__": 81
  4136. },
  4137. "asset": {
  4138. "__uuid__": "d53fffef-5818-4230-b4d7-efbd365efacb"
  4139. },
  4140. "fileId": "",
  4141. "sync": false
  4142. }
  4143. ]