loading_view.prefab 60 KB

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