Loading.prefab 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "Loading",
  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",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 16
  29. },
  30. {
  31. "__id__": 52
  32. }
  33. ],
  34. "_active": true,
  35. "_components": [
  36. {
  37. "__id__": 109
  38. },
  39. {
  40. "__id__": 111
  41. },
  42. {
  43. "__id__": 113
  44. }
  45. ],
  46. "_prefab": {
  47. "__id__": 115
  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": "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": 720,
  146. "height": 1599.9999999999998
  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": "f7NISe7HdAD68SLfhnddy8"
  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__": "d1d5efcb-6ba8-466b-a0ec-be1da2bec6e2@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": "e71ctEmpxFC4KlSYRZNz/a"
  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": 720,
  231. "_originalHeight": 1280,
  232. "_alignMode": 2,
  233. "_lockFlags": 0,
  234. "_id": ""
  235. },
  236. {
  237. "__type__": "cc.CompPrefabInfo",
  238. "fileId": "c0xnHUYFNGkrxi5N275i/F"
  239. },
  240. {
  241. "__type__": "cc.PrefabInfo",
  242. "root": {
  243. "__id__": 1
  244. },
  245. "asset": {
  246. "__id__": 0
  247. },
  248. "fileId": "7cza7A3O1NDLUuQQdasqMx",
  249. "instance": null,
  250. "targetOverrides": null,
  251. "nestedPrefabInstanceRoots": null
  252. },
  253. {
  254. "__type__": "cc.Node",
  255. "_name": "title_xxjk",
  256. "_objFlags": 0,
  257. "__editorExtras__": {},
  258. "_parent": {
  259. "__id__": 1
  260. },
  261. "_children": [],
  262. "_active": true,
  263. "_components": [
  264. {
  265. "__id__": 11
  266. },
  267. {
  268. "__id__": 13
  269. }
  270. ],
  271. "_prefab": {
  272. "__id__": 15
  273. },
  274. "_lpos": {
  275. "__type__": "cc.Vec3",
  276. "x": 0,
  277. "y": 564.507,
  278. "z": 0
  279. },
  280. "_lrot": {
  281. "__type__": "cc.Quat",
  282. "x": 0,
  283. "y": 0,
  284. "z": 0,
  285. "w": 1
  286. },
  287. "_lscale": {
  288. "__type__": "cc.Vec3",
  289. "x": 1,
  290. "y": 1,
  291. "z": 1
  292. },
  293. "_mobility": 0,
  294. "_layer": 33554432,
  295. "_euler": {
  296. "__type__": "cc.Vec3",
  297. "x": 0,
  298. "y": 0,
  299. "z": 0
  300. },
  301. "_id": ""
  302. },
  303. {
  304. "__type__": "cc.UITransform",
  305. "_name": "",
  306. "_objFlags": 0,
  307. "__editorExtras__": {},
  308. "node": {
  309. "__id__": 10
  310. },
  311. "_enabled": true,
  312. "__prefab": {
  313. "__id__": 12
  314. },
  315. "_contentSize": {
  316. "__type__": "cc.Size",
  317. "width": 434,
  318. "height": 145
  319. },
  320. "_anchorPoint": {
  321. "__type__": "cc.Vec2",
  322. "x": 0.5,
  323. "y": 0.5
  324. },
  325. "_id": ""
  326. },
  327. {
  328. "__type__": "cc.CompPrefabInfo",
  329. "fileId": "16RvVE+nBKT4umw/Ma4OQv"
  330. },
  331. {
  332. "__type__": "cc.Sprite",
  333. "_name": "",
  334. "_objFlags": 0,
  335. "__editorExtras__": {},
  336. "node": {
  337. "__id__": 10
  338. },
  339. "_enabled": true,
  340. "__prefab": {
  341. "__id__": 14
  342. },
  343. "_customMaterial": null,
  344. "_srcBlendFactor": 2,
  345. "_dstBlendFactor": 4,
  346. "_color": {
  347. "__type__": "cc.Color",
  348. "r": 255,
  349. "g": 255,
  350. "b": 255,
  351. "a": 255
  352. },
  353. "_spriteFrame": {
  354. "__uuid__": "c445eb61-e7a0-4dd5-9c76-f41dec335398@f9941",
  355. "__expectedType__": "cc.SpriteFrame"
  356. },
  357. "_type": 0,
  358. "_fillType": 0,
  359. "_sizeMode": 1,
  360. "_fillCenter": {
  361. "__type__": "cc.Vec2",
  362. "x": 0,
  363. "y": 0
  364. },
  365. "_fillStart": 0,
  366. "_fillRange": 0,
  367. "_isTrimmedMode": true,
  368. "_useGrayscale": false,
  369. "_atlas": null,
  370. "_id": ""
  371. },
  372. {
  373. "__type__": "cc.CompPrefabInfo",
  374. "fileId": "92xfxlihBAPoBs++ZKLb1G"
  375. },
  376. {
  377. "__type__": "cc.PrefabInfo",
  378. "root": {
  379. "__id__": 1
  380. },
  381. "asset": {
  382. "__id__": 0
  383. },
  384. "fileId": "e5UH4t135C3qI+H9rOUwLk",
  385. "instance": null,
  386. "targetOverrides": null,
  387. "nestedPrefabInstanceRoots": null
  388. },
  389. {
  390. "__type__": "cc.Node",
  391. "_name": "pro_progress",
  392. "_objFlags": 0,
  393. "__editorExtras__": {},
  394. "_parent": {
  395. "__id__": 1
  396. },
  397. "_children": [
  398. {
  399. "__id__": 17
  400. },
  401. {
  402. "__id__": 27
  403. },
  404. {
  405. "__id__": 33
  406. }
  407. ],
  408. "_active": false,
  409. "_components": [
  410. {
  411. "__id__": 41
  412. },
  413. {
  414. "__id__": 43
  415. },
  416. {
  417. "__id__": 45
  418. },
  419. {
  420. "__id__": 47
  421. },
  422. {
  423. "__id__": 49
  424. }
  425. ],
  426. "_prefab": {
  427. "__id__": 51
  428. },
  429. "_lpos": {
  430. "__type__": "cc.Vec3",
  431. "x": 0,
  432. "y": -610.037,
  433. "z": 0
  434. },
  435. "_lrot": {
  436. "__type__": "cc.Quat",
  437. "x": 0,
  438. "y": 0,
  439. "z": 0,
  440. "w": 1
  441. },
  442. "_lscale": {
  443. "__type__": "cc.Vec3",
  444. "x": 1,
  445. "y": 1,
  446. "z": 1
  447. },
  448. "_mobility": 0,
  449. "_layer": 33554432,
  450. "_euler": {
  451. "__type__": "cc.Vec3",
  452. "x": 0,
  453. "y": 0,
  454. "z": 0
  455. },
  456. "_id": ""
  457. },
  458. {
  459. "__type__": "cc.Node",
  460. "_name": "lab_prompt",
  461. "_objFlags": 0,
  462. "__editorExtras__": {},
  463. "_parent": {
  464. "__id__": 16
  465. },
  466. "_children": [],
  467. "_active": true,
  468. "_components": [
  469. {
  470. "__id__": 18
  471. },
  472. {
  473. "__id__": 20
  474. },
  475. {
  476. "__id__": 22
  477. },
  478. {
  479. "__id__": 24
  480. }
  481. ],
  482. "_prefab": {
  483. "__id__": 26
  484. },
  485. "_lpos": {
  486. "__type__": "cc.Vec3",
  487. "x": 0,
  488. "y": 55.25,
  489. "z": 0
  490. },
  491. "_lrot": {
  492. "__type__": "cc.Quat",
  493. "x": 0,
  494. "y": 0,
  495. "z": 0,
  496. "w": 1
  497. },
  498. "_lscale": {
  499. "__type__": "cc.Vec3",
  500. "x": 1,
  501. "y": 1,
  502. "z": 1
  503. },
  504. "_mobility": 0,
  505. "_layer": 33554432,
  506. "_euler": {
  507. "__type__": "cc.Vec3",
  508. "x": 0,
  509. "y": 0,
  510. "z": 0
  511. },
  512. "_id": ""
  513. },
  514. {
  515. "__type__": "cc.UITransform",
  516. "_name": "lab_progress<UITransform>",
  517. "_objFlags": 0,
  518. "__editorExtras__": {},
  519. "node": {
  520. "__id__": 17
  521. },
  522. "_enabled": true,
  523. "__prefab": {
  524. "__id__": 19
  525. },
  526. "_contentSize": {
  527. "__type__": "cc.Size",
  528. "width": 84,
  529. "height": 29.2
  530. },
  531. "_anchorPoint": {
  532. "__type__": "cc.Vec2",
  533. "x": 0.5,
  534. "y": 0.5
  535. },
  536. "_id": ""
  537. },
  538. {
  539. "__type__": "cc.CompPrefabInfo",
  540. "fileId": "37WpHB35ZA8KJNfmflUmio"
  541. },
  542. {
  543. "__type__": "cc.Label",
  544. "_name": "lab_progress<Label>",
  545. "_objFlags": 0,
  546. "__editorExtras__": {},
  547. "node": {
  548. "__id__": 17
  549. },
  550. "_enabled": true,
  551. "__prefab": {
  552. "__id__": 21
  553. },
  554. "_customMaterial": null,
  555. "_srcBlendFactor": 2,
  556. "_dstBlendFactor": 4,
  557. "_color": {
  558. "__type__": "cc.Color",
  559. "r": 255,
  560. "g": 255,
  561. "b": 255,
  562. "a": 255
  563. },
  564. "_string": "状态提示",
  565. "_horizontalAlign": 1,
  566. "_verticalAlign": 1,
  567. "_actualFontSize": 20,
  568. "_fontSize": 20,
  569. "_fontFamily": "Arial",
  570. "_lineHeight": 20,
  571. "_overflow": 0,
  572. "_enableWrapText": true,
  573. "_font": null,
  574. "_isSystemFontUsed": true,
  575. "_spacingX": 0,
  576. "_isItalic": false,
  577. "_isBold": true,
  578. "_isUnderline": false,
  579. "_underlineHeight": 2,
  580. "_cacheMode": 0,
  581. "_enableOutline": false,
  582. "_outlineColor": {
  583. "__type__": "cc.Color",
  584. "r": 0,
  585. "g": 0,
  586. "b": 0,
  587. "a": 255
  588. },
  589. "_outlineWidth": 2,
  590. "_enableShadow": false,
  591. "_shadowColor": {
  592. "__type__": "cc.Color",
  593. "r": 0,
  594. "g": 0,
  595. "b": 0,
  596. "a": 255
  597. },
  598. "_shadowOffset": {
  599. "__type__": "cc.Vec2",
  600. "x": 2,
  601. "y": 2
  602. },
  603. "_shadowBlur": 2,
  604. "_id": ""
  605. },
  606. {
  607. "__type__": "cc.CompPrefabInfo",
  608. "fileId": "18xXPm7ZRGtJOVkw0KWRyI"
  609. },
  610. {
  611. "__type__": "cc.LabelOutline",
  612. "_name": "",
  613. "_objFlags": 0,
  614. "__editorExtras__": {},
  615. "node": {
  616. "__id__": 17
  617. },
  618. "_enabled": true,
  619. "__prefab": {
  620. "__id__": 23
  621. },
  622. "_id": ""
  623. },
  624. {
  625. "__type__": "cc.CompPrefabInfo",
  626. "fileId": "bfTjeen/RO8Z25U0XoQYb0"
  627. },
  628. {
  629. "__type__": "545c05XsG9GDJispEGWKvYv",
  630. "_name": "",
  631. "_objFlags": 0,
  632. "__editorExtras__": {},
  633. "node": {
  634. "__id__": 17
  635. },
  636. "_enabled": true,
  637. "__prefab": {
  638. "__id__": 25
  639. },
  640. "templateMode": false,
  641. "watchPath": "*.prompt",
  642. "labelType": "cc.Label",
  643. "watchPathArr": [
  644. ""
  645. ],
  646. "_id": ""
  647. },
  648. {
  649. "__type__": "cc.CompPrefabInfo",
  650. "fileId": "aaLLLRoNxJM6JIqIOxEbdK"
  651. },
  652. {
  653. "__type__": "cc.PrefabInfo",
  654. "root": {
  655. "__id__": 1
  656. },
  657. "asset": {
  658. "__id__": 0
  659. },
  660. "fileId": "a4Hlk39nNMV7QG9p+cKfSl",
  661. "instance": null,
  662. "targetOverrides": null,
  663. "nestedPrefabInstanceRoots": null
  664. },
  665. {
  666. "__type__": "cc.Node",
  667. "_name": "pro_bar",
  668. "_objFlags": 0,
  669. "__editorExtras__": {},
  670. "_parent": {
  671. "__id__": 16
  672. },
  673. "_children": [],
  674. "_active": true,
  675. "_components": [
  676. {
  677. "__id__": 28
  678. },
  679. {
  680. "__id__": 30
  681. }
  682. ],
  683. "_prefab": {
  684. "__id__": 32
  685. },
  686. "_lpos": {
  687. "__type__": "cc.Vec3",
  688. "x": -279.882,
  689. "y": 0,
  690. "z": 0
  691. },
  692. "_lrot": {
  693. "__type__": "cc.Quat",
  694. "x": 0,
  695. "y": 0,
  696. "z": 0,
  697. "w": 1
  698. },
  699. "_lscale": {
  700. "__type__": "cc.Vec3",
  701. "x": 1,
  702. "y": 1,
  703. "z": 1
  704. },
  705. "_mobility": 0,
  706. "_layer": 33554432,
  707. "_euler": {
  708. "__type__": "cc.Vec3",
  709. "x": 0,
  710. "y": 0,
  711. "z": 0
  712. },
  713. "_id": ""
  714. },
  715. {
  716. "__type__": "cc.UITransform",
  717. "_name": "Sprite<UITransform>",
  718. "_objFlags": 0,
  719. "__editorExtras__": {},
  720. "node": {
  721. "__id__": 27
  722. },
  723. "_enabled": true,
  724. "__prefab": {
  725. "__id__": 29
  726. },
  727. "_contentSize": {
  728. "__type__": "cc.Size",
  729. "width": 560,
  730. "height": 60
  731. },
  732. "_anchorPoint": {
  733. "__type__": "cc.Vec2",
  734. "x": 0,
  735. "y": 0.5
  736. },
  737. "_id": ""
  738. },
  739. {
  740. "__type__": "cc.CompPrefabInfo",
  741. "fileId": "bexms9rIVO1aqwsiKpx7p+"
  742. },
  743. {
  744. "__type__": "cc.Sprite",
  745. "_name": "Sprite<Sprite>",
  746. "_objFlags": 0,
  747. "__editorExtras__": {},
  748. "node": {
  749. "__id__": 27
  750. },
  751. "_enabled": true,
  752. "__prefab": {
  753. "__id__": 31
  754. },
  755. "_customMaterial": null,
  756. "_srcBlendFactor": 2,
  757. "_dstBlendFactor": 4,
  758. "_color": {
  759. "__type__": "cc.Color",
  760. "r": 255,
  761. "g": 255,
  762. "b": 255,
  763. "a": 255
  764. },
  765. "_spriteFrame": {
  766. "__uuid__": "1ac049d7-c899-492a-89a7-4e8d85ce4cb1@f9941",
  767. "__expectedType__": "cc.SpriteFrame"
  768. },
  769. "_type": 3,
  770. "_fillType": 0,
  771. "_sizeMode": 0,
  772. "_fillCenter": {
  773. "__type__": "cc.Vec2",
  774. "x": 0,
  775. "y": 0
  776. },
  777. "_fillStart": 0,
  778. "_fillRange": 1,
  779. "_isTrimmedMode": true,
  780. "_useGrayscale": false,
  781. "_atlas": null,
  782. "_id": ""
  783. },
  784. {
  785. "__type__": "cc.CompPrefabInfo",
  786. "fileId": "0fN5X9mM5MyL1PjGl22OSC"
  787. },
  788. {
  789. "__type__": "cc.PrefabInfo",
  790. "root": {
  791. "__id__": 1
  792. },
  793. "asset": {
  794. "__id__": 0
  795. },
  796. "fileId": "3dI6CU5MVPS4+WmiQzY0D3",
  797. "instance": null,
  798. "targetOverrides": null,
  799. "nestedPrefabInstanceRoots": null
  800. },
  801. {
  802. "__type__": "cc.Node",
  803. "_name": "lab_progress",
  804. "_objFlags": 0,
  805. "__editorExtras__": {},
  806. "_parent": {
  807. "__id__": 16
  808. },
  809. "_children": [],
  810. "_active": true,
  811. "_components": [
  812. {
  813. "__id__": 34
  814. },
  815. {
  816. "__id__": 36
  817. },
  818. {
  819. "__id__": 38
  820. }
  821. ],
  822. "_prefab": {
  823. "__id__": 40
  824. },
  825. "_lpos": {
  826. "__type__": "cc.Vec3",
  827. "x": 0,
  828. "y": 4.659,
  829. "z": 0
  830. },
  831. "_lrot": {
  832. "__type__": "cc.Quat",
  833. "x": 0,
  834. "y": 0,
  835. "z": 0,
  836. "w": 1
  837. },
  838. "_lscale": {
  839. "__type__": "cc.Vec3",
  840. "x": 1,
  841. "y": 1,
  842. "z": 1
  843. },
  844. "_mobility": 0,
  845. "_layer": 33554432,
  846. "_euler": {
  847. "__type__": "cc.Vec3",
  848. "x": 0,
  849. "y": 0,
  850. "z": 0
  851. },
  852. "_id": ""
  853. },
  854. {
  855. "__type__": "cc.UITransform",
  856. "_name": "lab_progress<UITransform>",
  857. "_objFlags": 0,
  858. "__editorExtras__": {},
  859. "node": {
  860. "__id__": 33
  861. },
  862. "_enabled": true,
  863. "__prefab": {
  864. "__id__": 35
  865. },
  866. "_contentSize": {
  867. "__type__": "cc.Size",
  868. "width": 96.0625,
  869. "height": 40.32
  870. },
  871. "_anchorPoint": {
  872. "__type__": "cc.Vec2",
  873. "x": 0.5,
  874. "y": 0.5
  875. },
  876. "_id": ""
  877. },
  878. {
  879. "__type__": "cc.CompPrefabInfo",
  880. "fileId": "59IJ+5vLRHKrxqAzljTkOL"
  881. },
  882. {
  883. "__type__": "cc.Label",
  884. "_name": "lab_progress<Label>",
  885. "_objFlags": 0,
  886. "__editorExtras__": {},
  887. "node": {
  888. "__id__": 33
  889. },
  890. "_enabled": true,
  891. "__prefab": {
  892. "__id__": 37
  893. },
  894. "_customMaterial": null,
  895. "_srcBlendFactor": 2,
  896. "_dstBlendFactor": 4,
  897. "_color": {
  898. "__type__": "cc.Color",
  899. "r": 19,
  900. "g": 168,
  901. "b": 28,
  902. "a": 255
  903. },
  904. "_string": "{{0}}%",
  905. "_horizontalAlign": 1,
  906. "_verticalAlign": 1,
  907. "_actualFontSize": 32,
  908. "_fontSize": 32,
  909. "_fontFamily": "Arial",
  910. "_lineHeight": 32,
  911. "_overflow": 0,
  912. "_enableWrapText": true,
  913. "_font": null,
  914. "_isSystemFontUsed": true,
  915. "_spacingX": 0,
  916. "_isItalic": false,
  917. "_isBold": true,
  918. "_isUnderline": false,
  919. "_underlineHeight": 2,
  920. "_cacheMode": 0,
  921. "_enableOutline": false,
  922. "_outlineColor": {
  923. "__type__": "cc.Color",
  924. "r": 0,
  925. "g": 0,
  926. "b": 0,
  927. "a": 255
  928. },
  929. "_outlineWidth": 2,
  930. "_enableShadow": false,
  931. "_shadowColor": {
  932. "__type__": "cc.Color",
  933. "r": 0,
  934. "g": 0,
  935. "b": 0,
  936. "a": 255
  937. },
  938. "_shadowOffset": {
  939. "__type__": "cc.Vec2",
  940. "x": 2,
  941. "y": 2
  942. },
  943. "_shadowBlur": 2,
  944. "_id": ""
  945. },
  946. {
  947. "__type__": "cc.CompPrefabInfo",
  948. "fileId": "fcepWL0LBALrW5rf6BD7MO"
  949. },
  950. {
  951. "__type__": "545c05XsG9GDJispEGWKvYv",
  952. "_name": "",
  953. "_objFlags": 0,
  954. "__editorExtras__": {},
  955. "node": {
  956. "__id__": 33
  957. },
  958. "_enabled": true,
  959. "__prefab": {
  960. "__id__": 39
  961. },
  962. "templateMode": true,
  963. "watchPath": "",
  964. "labelType": "cc.Label",
  965. "watchPathArr": [
  966. "*.progress"
  967. ],
  968. "_id": ""
  969. },
  970. {
  971. "__type__": "cc.CompPrefabInfo",
  972. "fileId": "daILjufOlPdqRfYp3C/iqc"
  973. },
  974. {
  975. "__type__": "cc.PrefabInfo",
  976. "root": {
  977. "__id__": 1
  978. },
  979. "asset": {
  980. "__id__": 0
  981. },
  982. "fileId": "8ebP9wp/lHdpbk2hOCdLkX",
  983. "instance": null,
  984. "targetOverrides": null,
  985. "nestedPrefabInstanceRoots": null
  986. },
  987. {
  988. "__type__": "cc.UITransform",
  989. "_name": "",
  990. "_objFlags": 0,
  991. "__editorExtras__": {},
  992. "node": {
  993. "__id__": 16
  994. },
  995. "_enabled": true,
  996. "__prefab": {
  997. "__id__": 42
  998. },
  999. "_contentSize": {
  1000. "__type__": "cc.Size",
  1001. "width": 568,
  1002. "height": 68
  1003. },
  1004. "_anchorPoint": {
  1005. "__type__": "cc.Vec2",
  1006. "x": 0.5,
  1007. "y": 0.5
  1008. },
  1009. "_id": ""
  1010. },
  1011. {
  1012. "__type__": "cc.CompPrefabInfo",
  1013. "fileId": "82bjtghDJB8YqPMxJfJ5Rr"
  1014. },
  1015. {
  1016. "__type__": "cc.Sprite",
  1017. "_name": "",
  1018. "_objFlags": 0,
  1019. "__editorExtras__": {},
  1020. "node": {
  1021. "__id__": 16
  1022. },
  1023. "_enabled": true,
  1024. "__prefab": {
  1025. "__id__": 44
  1026. },
  1027. "_customMaterial": null,
  1028. "_srcBlendFactor": 2,
  1029. "_dstBlendFactor": 4,
  1030. "_color": {
  1031. "__type__": "cc.Color",
  1032. "r": 255,
  1033. "g": 255,
  1034. "b": 255,
  1035. "a": 255
  1036. },
  1037. "_spriteFrame": {
  1038. "__uuid__": "a2001856-24f5-4ac7-9309-1207a3210cd8@f9941",
  1039. "__expectedType__": "cc.SpriteFrame"
  1040. },
  1041. "_type": 0,
  1042. "_fillType": 0,
  1043. "_sizeMode": 1,
  1044. "_fillCenter": {
  1045. "__type__": "cc.Vec2",
  1046. "x": 0,
  1047. "y": 0
  1048. },
  1049. "_fillStart": 0,
  1050. "_fillRange": 0,
  1051. "_isTrimmedMode": true,
  1052. "_useGrayscale": false,
  1053. "_atlas": null,
  1054. "_id": ""
  1055. },
  1056. {
  1057. "__type__": "cc.CompPrefabInfo",
  1058. "fileId": "c6r2/EbkJLgZKG1NvbxXiz"
  1059. },
  1060. {
  1061. "__type__": "cc.ProgressBar",
  1062. "_name": "",
  1063. "_objFlags": 0,
  1064. "__editorExtras__": {},
  1065. "node": {
  1066. "__id__": 16
  1067. },
  1068. "_enabled": true,
  1069. "__prefab": {
  1070. "__id__": 46
  1071. },
  1072. "_barSprite": {
  1073. "__id__": 30
  1074. },
  1075. "_mode": 2,
  1076. "_totalLength": 1,
  1077. "_progress": 1,
  1078. "_reverse": false,
  1079. "_id": ""
  1080. },
  1081. {
  1082. "__type__": "cc.CompPrefabInfo",
  1083. "fileId": "d8F8xTDrRJ2aYLMRDN1Csc"
  1084. },
  1085. {
  1086. "__type__": "2a50eqI7JZNV5Sh0y/Qd9C6",
  1087. "_name": "",
  1088. "_objFlags": 0,
  1089. "__editorExtras__": {},
  1090. "node": {
  1091. "__id__": 16
  1092. },
  1093. "_enabled": true,
  1094. "__prefab": {
  1095. "__id__": 48
  1096. },
  1097. "controller": false,
  1098. "watchPath": "",
  1099. "componentName": "cc.ProgressBar",
  1100. "componentProperty": "progress",
  1101. "refreshRate": 0.1,
  1102. "watchPathArr": [
  1103. "*.finished",
  1104. "*.total"
  1105. ],
  1106. "stringFormat": "",
  1107. "_id": ""
  1108. },
  1109. {
  1110. "__type__": "cc.CompPrefabInfo",
  1111. "fileId": "8cfgfLAqtIJLDNqIgFd8Xt"
  1112. },
  1113. {
  1114. "__type__": "cc.Widget",
  1115. "_name": "",
  1116. "_objFlags": 0,
  1117. "__editorExtras__": {},
  1118. "node": {
  1119. "__id__": 16
  1120. },
  1121. "_enabled": true,
  1122. "__prefab": {
  1123. "__id__": 50
  1124. },
  1125. "_alignFlags": 4,
  1126. "_target": null,
  1127. "_left": 0,
  1128. "_right": 0,
  1129. "_top": 0,
  1130. "_bottom": 155.9629999999999,
  1131. "_horizontalCenter": 0,
  1132. "_verticalCenter": 0,
  1133. "_isAbsLeft": true,
  1134. "_isAbsRight": true,
  1135. "_isAbsTop": true,
  1136. "_isAbsBottom": true,
  1137. "_isAbsHorizontalCenter": true,
  1138. "_isAbsVerticalCenter": true,
  1139. "_originalWidth": 0,
  1140. "_originalHeight": 0,
  1141. "_alignMode": 2,
  1142. "_lockFlags": 0,
  1143. "_id": ""
  1144. },
  1145. {
  1146. "__type__": "cc.CompPrefabInfo",
  1147. "fileId": "7cjLANFmdN6aV+qs7kuNy2"
  1148. },
  1149. {
  1150. "__type__": "cc.PrefabInfo",
  1151. "root": {
  1152. "__id__": 1
  1153. },
  1154. "asset": {
  1155. "__id__": 0
  1156. },
  1157. "fileId": "ecgn8y3TJCyrNvvrmyHnya",
  1158. "instance": null,
  1159. "targetOverrides": null,
  1160. "nestedPrefabInstanceRoots": null
  1161. },
  1162. {
  1163. "__type__": "cc.Node",
  1164. "_name": "login_node",
  1165. "_objFlags": 0,
  1166. "__editorExtras__": {},
  1167. "_parent": {
  1168. "__id__": 1
  1169. },
  1170. "_children": [
  1171. {
  1172. "__id__": 53
  1173. },
  1174. {
  1175. "__id__": 69
  1176. },
  1177. {
  1178. "__id__": 77
  1179. }
  1180. ],
  1181. "_active": false,
  1182. "_components": [
  1183. {
  1184. "__id__": 106
  1185. }
  1186. ],
  1187. "_prefab": {
  1188. "__id__": 108
  1189. },
  1190. "_lpos": {
  1191. "__type__": "cc.Vec3",
  1192. "x": 0,
  1193. "y": -458.546,
  1194. "z": 0
  1195. },
  1196. "_lrot": {
  1197. "__type__": "cc.Quat",
  1198. "x": 0,
  1199. "y": 0,
  1200. "z": 0,
  1201. "w": 1
  1202. },
  1203. "_lscale": {
  1204. "__type__": "cc.Vec3",
  1205. "x": 1,
  1206. "y": 1,
  1207. "z": 1
  1208. },
  1209. "_mobility": 0,
  1210. "_layer": 33554432,
  1211. "_euler": {
  1212. "__type__": "cc.Vec3",
  1213. "x": 0,
  1214. "y": 0,
  1215. "z": 0
  1216. },
  1217. "_id": ""
  1218. },
  1219. {
  1220. "__type__": "cc.Node",
  1221. "_name": "tipsNode",
  1222. "_objFlags": 0,
  1223. "__editorExtras__": {},
  1224. "_parent": {
  1225. "__id__": 52
  1226. },
  1227. "_children": [
  1228. {
  1229. "__id__": 54
  1230. },
  1231. {
  1232. "__id__": 60
  1233. }
  1234. ],
  1235. "_active": true,
  1236. "_components": [
  1237. {
  1238. "__id__": 66
  1239. }
  1240. ],
  1241. "_prefab": {
  1242. "__id__": 68
  1243. },
  1244. "_lpos": {
  1245. "__type__": "cc.Vec3",
  1246. "x": 0,
  1247. "y": -176.671,
  1248. "z": 0
  1249. },
  1250. "_lrot": {
  1251. "__type__": "cc.Quat",
  1252. "x": 0,
  1253. "y": 0,
  1254. "z": 0,
  1255. "w": 1
  1256. },
  1257. "_lscale": {
  1258. "__type__": "cc.Vec3",
  1259. "x": 1,
  1260. "y": 1,
  1261. "z": 1
  1262. },
  1263. "_mobility": 0,
  1264. "_layer": 33554432,
  1265. "_euler": {
  1266. "__type__": "cc.Vec3",
  1267. "x": 0,
  1268. "y": 0,
  1269. "z": 0
  1270. },
  1271. "_id": ""
  1272. },
  1273. {
  1274. "__type__": "cc.Node",
  1275. "_name": "icon_sltx",
  1276. "_objFlags": 0,
  1277. "__editorExtras__": {},
  1278. "_parent": {
  1279. "__id__": 53
  1280. },
  1281. "_children": [],
  1282. "_active": true,
  1283. "_components": [
  1284. {
  1285. "__id__": 55
  1286. },
  1287. {
  1288. "__id__": 57
  1289. }
  1290. ],
  1291. "_prefab": {
  1292. "__id__": 59
  1293. },
  1294. "_lpos": {
  1295. "__type__": "cc.Vec3",
  1296. "x": 247.961,
  1297. "y": 29.244,
  1298. "z": 0
  1299. },
  1300. "_lrot": {
  1301. "__type__": "cc.Quat",
  1302. "x": 0,
  1303. "y": 0,
  1304. "z": 0,
  1305. "w": 1
  1306. },
  1307. "_lscale": {
  1308. "__type__": "cc.Vec3",
  1309. "x": 1,
  1310. "y": 1,
  1311. "z": 1
  1312. },
  1313. "_mobility": 0,
  1314. "_layer": 33554432,
  1315. "_euler": {
  1316. "__type__": "cc.Vec3",
  1317. "x": 0,
  1318. "y": 0,
  1319. "z": 0
  1320. },
  1321. "_id": ""
  1322. },
  1323. {
  1324. "__type__": "cc.UITransform",
  1325. "_name": "",
  1326. "_objFlags": 0,
  1327. "__editorExtras__": {},
  1328. "node": {
  1329. "__id__": 54
  1330. },
  1331. "_enabled": true,
  1332. "__prefab": {
  1333. "__id__": 56
  1334. },
  1335. "_contentSize": {
  1336. "__type__": "cc.Size",
  1337. "width": 66,
  1338. "height": 84
  1339. },
  1340. "_anchorPoint": {
  1341. "__type__": "cc.Vec2",
  1342. "x": 0.5,
  1343. "y": 0.5
  1344. },
  1345. "_id": ""
  1346. },
  1347. {
  1348. "__type__": "cc.CompPrefabInfo",
  1349. "fileId": "530wamw/REwoRvS+B8IjMZ"
  1350. },
  1351. {
  1352. "__type__": "cc.Sprite",
  1353. "_name": "",
  1354. "_objFlags": 0,
  1355. "__editorExtras__": {},
  1356. "node": {
  1357. "__id__": 54
  1358. },
  1359. "_enabled": true,
  1360. "__prefab": {
  1361. "__id__": 58
  1362. },
  1363. "_customMaterial": null,
  1364. "_srcBlendFactor": 2,
  1365. "_dstBlendFactor": 4,
  1366. "_color": {
  1367. "__type__": "cc.Color",
  1368. "r": 255,
  1369. "g": 255,
  1370. "b": 255,
  1371. "a": 255
  1372. },
  1373. "_spriteFrame": {
  1374. "__uuid__": "575dd6b1-b8c6-4131-a61c-2fc2019cc256@f9941",
  1375. "__expectedType__": "cc.SpriteFrame"
  1376. },
  1377. "_type": 0,
  1378. "_fillType": 0,
  1379. "_sizeMode": 1,
  1380. "_fillCenter": {
  1381. "__type__": "cc.Vec2",
  1382. "x": 0,
  1383. "y": 0
  1384. },
  1385. "_fillStart": 0,
  1386. "_fillRange": 0,
  1387. "_isTrimmedMode": true,
  1388. "_useGrayscale": false,
  1389. "_atlas": null,
  1390. "_id": ""
  1391. },
  1392. {
  1393. "__type__": "cc.CompPrefabInfo",
  1394. "fileId": "07r/zjONNMY5XaURDU7j6h"
  1395. },
  1396. {
  1397. "__type__": "cc.PrefabInfo",
  1398. "root": {
  1399. "__id__": 1
  1400. },
  1401. "asset": {
  1402. "__id__": 0
  1403. },
  1404. "fileId": "418uAmfUxFcb9ZhCJ4NZAp",
  1405. "instance": null,
  1406. "targetOverrides": null,
  1407. "nestedPrefabInstanceRoots": null
  1408. },
  1409. {
  1410. "__type__": "cc.Node",
  1411. "_name": "Label-001",
  1412. "_objFlags": 0,
  1413. "__editorExtras__": {},
  1414. "_parent": {
  1415. "__id__": 53
  1416. },
  1417. "_children": [],
  1418. "_active": true,
  1419. "_components": [
  1420. {
  1421. "__id__": 61
  1422. },
  1423. {
  1424. "__id__": 63
  1425. }
  1426. ],
  1427. "_prefab": {
  1428. "__id__": 65
  1429. },
  1430. "_lpos": {
  1431. "__type__": "cc.Vec3",
  1432. "x": -30.052,
  1433. "y": 26.974,
  1434. "z": 0
  1435. },
  1436. "_lrot": {
  1437. "__type__": "cc.Quat",
  1438. "x": 0,
  1439. "y": 0,
  1440. "z": 0,
  1441. "w": 1
  1442. },
  1443. "_lscale": {
  1444. "__type__": "cc.Vec3",
  1445. "x": 1,
  1446. "y": 1,
  1447. "z": 1
  1448. },
  1449. "_mobility": 0,
  1450. "_layer": 33554432,
  1451. "_euler": {
  1452. "__type__": "cc.Vec3",
  1453. "x": 0,
  1454. "y": 0,
  1455. "z": 0
  1456. },
  1457. "_id": ""
  1458. },
  1459. {
  1460. "__type__": "cc.UITransform",
  1461. "_name": "",
  1462. "_objFlags": 0,
  1463. "__editorExtras__": {},
  1464. "node": {
  1465. "__id__": 60
  1466. },
  1467. "_enabled": true,
  1468. "__prefab": {
  1469. "__id__": 62
  1470. },
  1471. "_contentSize": {
  1472. "__type__": "cc.Size",
  1473. "width": 470,
  1474. "height": 97.8
  1475. },
  1476. "_anchorPoint": {
  1477. "__type__": "cc.Vec2",
  1478. "x": 0.5,
  1479. "y": 0.5
  1480. },
  1481. "_id": ""
  1482. },
  1483. {
  1484. "__type__": "cc.CompPrefabInfo",
  1485. "fileId": "a2Tv1an/tJepq+1lE2hXX4"
  1486. },
  1487. {
  1488. "__type__": "cc.Label",
  1489. "_name": "",
  1490. "_objFlags": 0,
  1491. "__editorExtras__": {},
  1492. "node": {
  1493. "__id__": 60
  1494. },
  1495. "_enabled": true,
  1496. "__prefab": {
  1497. "__id__": 64
  1498. },
  1499. "_customMaterial": null,
  1500. "_srcBlendFactor": 2,
  1501. "_dstBlendFactor": 4,
  1502. "_color": {
  1503. "__type__": "cc.Color",
  1504. "r": 160,
  1505. "g": 160,
  1506. "b": 160,
  1507. "a": 255
  1508. },
  1509. "_string": "健康游戏忠告,抵制不良游戏,拒绝盗版游戏。注意自我保护,谨防受骗上当。适度游戏益脑,沉迷游戏伤身。合理安排时间,享受健康生活。",
  1510. "_horizontalAlign": 0,
  1511. "_verticalAlign": 1,
  1512. "_actualFontSize": 20,
  1513. "_fontSize": 20,
  1514. "_fontFamily": "Arial",
  1515. "_lineHeight": 30,
  1516. "_overflow": 3,
  1517. "_enableWrapText": true,
  1518. "_font": null,
  1519. "_isSystemFontUsed": true,
  1520. "_spacingX": 0,
  1521. "_isItalic": false,
  1522. "_isBold": false,
  1523. "_isUnderline": false,
  1524. "_underlineHeight": 2,
  1525. "_cacheMode": 0,
  1526. "_enableOutline": false,
  1527. "_outlineColor": {
  1528. "__type__": "cc.Color",
  1529. "r": 0,
  1530. "g": 0,
  1531. "b": 0,
  1532. "a": 255
  1533. },
  1534. "_outlineWidth": 2,
  1535. "_enableShadow": false,
  1536. "_shadowColor": {
  1537. "__type__": "cc.Color",
  1538. "r": 0,
  1539. "g": 0,
  1540. "b": 0,
  1541. "a": 255
  1542. },
  1543. "_shadowOffset": {
  1544. "__type__": "cc.Vec2",
  1545. "x": 2,
  1546. "y": 2
  1547. },
  1548. "_shadowBlur": 2,
  1549. "_id": ""
  1550. },
  1551. {
  1552. "__type__": "cc.CompPrefabInfo",
  1553. "fileId": "8aZNE6ocBAXafyaoPepdkN"
  1554. },
  1555. {
  1556. "__type__": "cc.PrefabInfo",
  1557. "root": {
  1558. "__id__": 1
  1559. },
  1560. "asset": {
  1561. "__id__": 0
  1562. },
  1563. "fileId": "058aOWzOpP/Zdp+Zc3Ih47",
  1564. "instance": null,
  1565. "targetOverrides": null,
  1566. "nestedPrefabInstanceRoots": null
  1567. },
  1568. {
  1569. "__type__": "cc.UITransform",
  1570. "_name": "",
  1571. "_objFlags": 0,
  1572. "__editorExtras__": {},
  1573. "node": {
  1574. "__id__": 53
  1575. },
  1576. "_enabled": true,
  1577. "__prefab": {
  1578. "__id__": 67
  1579. },
  1580. "_contentSize": {
  1581. "__type__": "cc.Size",
  1582. "width": 500,
  1583. "height": 200
  1584. },
  1585. "_anchorPoint": {
  1586. "__type__": "cc.Vec2",
  1587. "x": 0.5,
  1588. "y": 0.5
  1589. },
  1590. "_id": ""
  1591. },
  1592. {
  1593. "__type__": "cc.CompPrefabInfo",
  1594. "fileId": "4fkksrIbFIx4VmYou2uBfx"
  1595. },
  1596. {
  1597. "__type__": "cc.PrefabInfo",
  1598. "root": {
  1599. "__id__": 1
  1600. },
  1601. "asset": {
  1602. "__id__": 0
  1603. },
  1604. "fileId": "804zwwZwtCVIjDO6o0IbP+",
  1605. "instance": null,
  1606. "targetOverrides": null,
  1607. "nestedPrefabInstanceRoots": null
  1608. },
  1609. {
  1610. "__type__": "cc.Node",
  1611. "_name": "btn_wxlogin",
  1612. "_objFlags": 0,
  1613. "__editorExtras__": {},
  1614. "_parent": {
  1615. "__id__": 52
  1616. },
  1617. "_children": [],
  1618. "_active": true,
  1619. "_components": [
  1620. {
  1621. "__id__": 70
  1622. },
  1623. {
  1624. "__id__": 72
  1625. },
  1626. {
  1627. "__id__": 74
  1628. }
  1629. ],
  1630. "_prefab": {
  1631. "__id__": 76
  1632. },
  1633. "_lpos": {
  1634. "__type__": "cc.Vec3",
  1635. "x": 0,
  1636. "y": 89.077,
  1637. "z": 0
  1638. },
  1639. "_lrot": {
  1640. "__type__": "cc.Quat",
  1641. "x": 0,
  1642. "y": 0,
  1643. "z": 0,
  1644. "w": 1
  1645. },
  1646. "_lscale": {
  1647. "__type__": "cc.Vec3",
  1648. "x": 1,
  1649. "y": 1,
  1650. "z": 1
  1651. },
  1652. "_mobility": 0,
  1653. "_layer": 33554432,
  1654. "_euler": {
  1655. "__type__": "cc.Vec3",
  1656. "x": 0,
  1657. "y": 0,
  1658. "z": 0
  1659. },
  1660. "_id": ""
  1661. },
  1662. {
  1663. "__type__": "cc.UITransform",
  1664. "_name": "",
  1665. "_objFlags": 0,
  1666. "__editorExtras__": {},
  1667. "node": {
  1668. "__id__": 69
  1669. },
  1670. "_enabled": true,
  1671. "__prefab": {
  1672. "__id__": 71
  1673. },
  1674. "_contentSize": {
  1675. "__type__": "cc.Size",
  1676. "width": 596,
  1677. "height": 134
  1678. },
  1679. "_anchorPoint": {
  1680. "__type__": "cc.Vec2",
  1681. "x": 0.5,
  1682. "y": 0.5
  1683. },
  1684. "_id": ""
  1685. },
  1686. {
  1687. "__type__": "cc.CompPrefabInfo",
  1688. "fileId": "a36CM1QGVE0J6mYyXVhsX9"
  1689. },
  1690. {
  1691. "__type__": "cc.Sprite",
  1692. "_name": "",
  1693. "_objFlags": 0,
  1694. "__editorExtras__": {},
  1695. "node": {
  1696. "__id__": 69
  1697. },
  1698. "_enabled": true,
  1699. "__prefab": {
  1700. "__id__": 73
  1701. },
  1702. "_customMaterial": null,
  1703. "_srcBlendFactor": 2,
  1704. "_dstBlendFactor": 4,
  1705. "_color": {
  1706. "__type__": "cc.Color",
  1707. "r": 255,
  1708. "g": 255,
  1709. "b": 255,
  1710. "a": 255
  1711. },
  1712. "_spriteFrame": {
  1713. "__uuid__": "5f331d85-d1fc-4d7d-a274-6c18380305da@f9941",
  1714. "__expectedType__": "cc.SpriteFrame"
  1715. },
  1716. "_type": 1,
  1717. "_fillType": 0,
  1718. "_sizeMode": 2,
  1719. "_fillCenter": {
  1720. "__type__": "cc.Vec2",
  1721. "x": 0,
  1722. "y": 0
  1723. },
  1724. "_fillStart": 0,
  1725. "_fillRange": 0,
  1726. "_isTrimmedMode": true,
  1727. "_useGrayscale": false,
  1728. "_atlas": null,
  1729. "_id": ""
  1730. },
  1731. {
  1732. "__type__": "cc.CompPrefabInfo",
  1733. "fileId": "38kNw+szNJ16NFzY570dZZ"
  1734. },
  1735. {
  1736. "__type__": "cc.Button",
  1737. "_name": "",
  1738. "_objFlags": 0,
  1739. "__editorExtras__": {},
  1740. "node": {
  1741. "__id__": 69
  1742. },
  1743. "_enabled": true,
  1744. "__prefab": {
  1745. "__id__": 75
  1746. },
  1747. "clickEvents": [],
  1748. "_interactable": true,
  1749. "_transition": 3,
  1750. "_normalColor": {
  1751. "__type__": "cc.Color",
  1752. "r": 214,
  1753. "g": 214,
  1754. "b": 214,
  1755. "a": 255
  1756. },
  1757. "_hoverColor": {
  1758. "__type__": "cc.Color",
  1759. "r": 211,
  1760. "g": 211,
  1761. "b": 211,
  1762. "a": 255
  1763. },
  1764. "_pressedColor": {
  1765. "__type__": "cc.Color",
  1766. "r": 255,
  1767. "g": 255,
  1768. "b": 255,
  1769. "a": 255
  1770. },
  1771. "_disabledColor": {
  1772. "__type__": "cc.Color",
  1773. "r": 124,
  1774. "g": 124,
  1775. "b": 124,
  1776. "a": 255
  1777. },
  1778. "_normalSprite": null,
  1779. "_hoverSprite": null,
  1780. "_pressedSprite": null,
  1781. "_disabledSprite": null,
  1782. "_duration": 0.1,
  1783. "_zoomScale": 1.2,
  1784. "_target": {
  1785. "__id__": 69
  1786. },
  1787. "_id": ""
  1788. },
  1789. {
  1790. "__type__": "cc.CompPrefabInfo",
  1791. "fileId": "c8YBI5bJBB7bDXMINs+kQA"
  1792. },
  1793. {
  1794. "__type__": "cc.PrefabInfo",
  1795. "root": {
  1796. "__id__": 1
  1797. },
  1798. "asset": {
  1799. "__id__": 0
  1800. },
  1801. "fileId": "591mU3rH5Mr4g5wYeKd9pb",
  1802. "instance": null,
  1803. "targetOverrides": null,
  1804. "nestedPrefabInstanceRoots": null
  1805. },
  1806. {
  1807. "__type__": "cc.Node",
  1808. "_name": "login_bg",
  1809. "_objFlags": 0,
  1810. "__editorExtras__": {},
  1811. "_parent": {
  1812. "__id__": 52
  1813. },
  1814. "_children": [
  1815. {
  1816. "__id__": 78
  1817. },
  1818. {
  1819. "__id__": 93
  1820. }
  1821. ],
  1822. "_active": true,
  1823. "_components": [
  1824. {
  1825. "__id__": 101
  1826. },
  1827. {
  1828. "__id__": 103
  1829. }
  1830. ],
  1831. "_prefab": {
  1832. "__id__": 105
  1833. },
  1834. "_lpos": {
  1835. "__type__": "cc.Vec3",
  1836. "x": -22.533,
  1837. "y": -21.802,
  1838. "z": 0
  1839. },
  1840. "_lrot": {
  1841. "__type__": "cc.Quat",
  1842. "x": 0,
  1843. "y": 0,
  1844. "z": 0,
  1845. "w": 1
  1846. },
  1847. "_lscale": {
  1848. "__type__": "cc.Vec3",
  1849. "x": 1,
  1850. "y": 1,
  1851. "z": 1
  1852. },
  1853. "_mobility": 0,
  1854. "_layer": 33554432,
  1855. "_euler": {
  1856. "__type__": "cc.Vec3",
  1857. "x": 0,
  1858. "y": 0,
  1859. "z": 0
  1860. },
  1861. "_id": ""
  1862. },
  1863. {
  1864. "__type__": "cc.Node",
  1865. "_name": "tog_agree",
  1866. "_objFlags": 0,
  1867. "__editorExtras__": {},
  1868. "_parent": {
  1869. "__id__": 77
  1870. },
  1871. "_children": [
  1872. {
  1873. "__id__": 79
  1874. }
  1875. ],
  1876. "_active": true,
  1877. "_components": [
  1878. {
  1879. "__id__": 85
  1880. },
  1881. {
  1882. "__id__": 87
  1883. },
  1884. {
  1885. "__id__": 89
  1886. }
  1887. ],
  1888. "_prefab": {
  1889. "__id__": 92
  1890. },
  1891. "_lpos": {
  1892. "__type__": "cc.Vec3",
  1893. "x": -273,
  1894. "y": 1.2890000000000015,
  1895. "z": 0
  1896. },
  1897. "_lrot": {
  1898. "__type__": "cc.Quat",
  1899. "x": 0,
  1900. "y": 0,
  1901. "z": 0,
  1902. "w": 1
  1903. },
  1904. "_lscale": {
  1905. "__type__": "cc.Vec3",
  1906. "x": 1,
  1907. "y": 1,
  1908. "z": 1
  1909. },
  1910. "_mobility": 0,
  1911. "_layer": 33554432,
  1912. "_euler": {
  1913. "__type__": "cc.Vec3",
  1914. "x": 0,
  1915. "y": 0,
  1916. "z": 0
  1917. },
  1918. "_id": ""
  1919. },
  1920. {
  1921. "__type__": "cc.Node",
  1922. "_name": "Checkmark",
  1923. "_objFlags": 512,
  1924. "__editorExtras__": {},
  1925. "_parent": {
  1926. "__id__": 78
  1927. },
  1928. "_children": [],
  1929. "_active": true,
  1930. "_components": [
  1931. {
  1932. "__id__": 80
  1933. },
  1934. {
  1935. "__id__": 82
  1936. }
  1937. ],
  1938. "_prefab": {
  1939. "__id__": 84
  1940. },
  1941. "_lpos": {
  1942. "__type__": "cc.Vec3",
  1943. "x": 0,
  1944. "y": 0,
  1945. "z": 0
  1946. },
  1947. "_lrot": {
  1948. "__type__": "cc.Quat",
  1949. "x": 0,
  1950. "y": 0,
  1951. "z": 0,
  1952. "w": 1
  1953. },
  1954. "_lscale": {
  1955. "__type__": "cc.Vec3",
  1956. "x": 1,
  1957. "y": 1,
  1958. "z": 1
  1959. },
  1960. "_mobility": 0,
  1961. "_layer": 33554432,
  1962. "_euler": {
  1963. "__type__": "cc.Vec3",
  1964. "x": 0,
  1965. "y": 0,
  1966. "z": 0
  1967. },
  1968. "_id": ""
  1969. },
  1970. {
  1971. "__type__": "cc.UITransform",
  1972. "_name": "",
  1973. "_objFlags": 0,
  1974. "__editorExtras__": {},
  1975. "node": {
  1976. "__id__": 79
  1977. },
  1978. "_enabled": true,
  1979. "__prefab": {
  1980. "__id__": 81
  1981. },
  1982. "_contentSize": {
  1983. "__type__": "cc.Size",
  1984. "width": 26,
  1985. "height": 26
  1986. },
  1987. "_anchorPoint": {
  1988. "__type__": "cc.Vec2",
  1989. "x": 0.5,
  1990. "y": 0.5
  1991. },
  1992. "_id": ""
  1993. },
  1994. {
  1995. "__type__": "cc.CompPrefabInfo",
  1996. "fileId": "edvvdt8ExCcrE7a0YxPw0z"
  1997. },
  1998. {
  1999. "__type__": "cc.Sprite",
  2000. "_name": "",
  2001. "_objFlags": 0,
  2002. "__editorExtras__": {},
  2003. "node": {
  2004. "__id__": 79
  2005. },
  2006. "_enabled": true,
  2007. "__prefab": {
  2008. "__id__": 83
  2009. },
  2010. "_customMaterial": null,
  2011. "_srcBlendFactor": 2,
  2012. "_dstBlendFactor": 4,
  2013. "_color": {
  2014. "__type__": "cc.Color",
  2015. "r": 255,
  2016. "g": 255,
  2017. "b": 255,
  2018. "a": 255
  2019. },
  2020. "_spriteFrame": {
  2021. "__uuid__": "2ff92d6e-9d32-481c-a168-ac38fb2f0783@f9941",
  2022. "__expectedType__": "cc.SpriteFrame"
  2023. },
  2024. "_type": 0,
  2025. "_fillType": 0,
  2026. "_sizeMode": 0,
  2027. "_fillCenter": {
  2028. "__type__": "cc.Vec2",
  2029. "x": 0,
  2030. "y": 0
  2031. },
  2032. "_fillStart": 0,
  2033. "_fillRange": 0,
  2034. "_isTrimmedMode": true,
  2035. "_useGrayscale": false,
  2036. "_atlas": null,
  2037. "_id": ""
  2038. },
  2039. {
  2040. "__type__": "cc.CompPrefabInfo",
  2041. "fileId": "b9sirm2b1JHpT8KXZNjWlX"
  2042. },
  2043. {
  2044. "__type__": "cc.PrefabInfo",
  2045. "root": {
  2046. "__id__": 1
  2047. },
  2048. "asset": {
  2049. "__id__": 0
  2050. },
  2051. "fileId": "00EyUPPWdPJ6Spo7Jkual0",
  2052. "instance": null,
  2053. "targetOverrides": null,
  2054. "nestedPrefabInstanceRoots": null
  2055. },
  2056. {
  2057. "__type__": "cc.UITransform",
  2058. "_name": "",
  2059. "_objFlags": 0,
  2060. "__editorExtras__": {},
  2061. "node": {
  2062. "__id__": 78
  2063. },
  2064. "_enabled": true,
  2065. "__prefab": {
  2066. "__id__": 86
  2067. },
  2068. "_contentSize": {
  2069. "__type__": "cc.Size",
  2070. "width": 24,
  2071. "height": 24
  2072. },
  2073. "_anchorPoint": {
  2074. "__type__": "cc.Vec2",
  2075. "x": 0.5,
  2076. "y": 0.5
  2077. },
  2078. "_id": ""
  2079. },
  2080. {
  2081. "__type__": "cc.CompPrefabInfo",
  2082. "fileId": "26xHUoYVBC7paoNLBZ54EE"
  2083. },
  2084. {
  2085. "__type__": "cc.Sprite",
  2086. "_name": "",
  2087. "_objFlags": 0,
  2088. "__editorExtras__": {},
  2089. "node": {
  2090. "__id__": 78
  2091. },
  2092. "_enabled": true,
  2093. "__prefab": {
  2094. "__id__": 88
  2095. },
  2096. "_customMaterial": null,
  2097. "_srcBlendFactor": 2,
  2098. "_dstBlendFactor": 4,
  2099. "_color": {
  2100. "__type__": "cc.Color",
  2101. "r": 255,
  2102. "g": 255,
  2103. "b": 255,
  2104. "a": 255
  2105. },
  2106. "_spriteFrame": {
  2107. "__uuid__": "8e3d5939-0cca-4c14-b42a-26706f1e46a6@f9941",
  2108. "__expectedType__": "cc.SpriteFrame"
  2109. },
  2110. "_type": 0,
  2111. "_fillType": 0,
  2112. "_sizeMode": 1,
  2113. "_fillCenter": {
  2114. "__type__": "cc.Vec2",
  2115. "x": 0,
  2116. "y": 0
  2117. },
  2118. "_fillStart": 0,
  2119. "_fillRange": 0,
  2120. "_isTrimmedMode": true,
  2121. "_useGrayscale": false,
  2122. "_atlas": null,
  2123. "_id": ""
  2124. },
  2125. {
  2126. "__type__": "cc.CompPrefabInfo",
  2127. "fileId": "2dYRyHoehKT7Q1+i24BlCB"
  2128. },
  2129. {
  2130. "__type__": "cc.Toggle",
  2131. "_name": "",
  2132. "_objFlags": 0,
  2133. "__editorExtras__": {},
  2134. "node": {
  2135. "__id__": 78
  2136. },
  2137. "_enabled": true,
  2138. "__prefab": {
  2139. "__id__": 90
  2140. },
  2141. "clickEvents": [],
  2142. "_interactable": true,
  2143. "_transition": 0,
  2144. "_normalColor": {
  2145. "__type__": "cc.Color",
  2146. "r": 214,
  2147. "g": 214,
  2148. "b": 214,
  2149. "a": 255
  2150. },
  2151. "_hoverColor": {
  2152. "__type__": "cc.Color",
  2153. "r": 211,
  2154. "g": 211,
  2155. "b": 211,
  2156. "a": 255
  2157. },
  2158. "_pressedColor": {
  2159. "__type__": "cc.Color",
  2160. "r": 255,
  2161. "g": 255,
  2162. "b": 255,
  2163. "a": 255
  2164. },
  2165. "_disabledColor": {
  2166. "__type__": "cc.Color",
  2167. "r": 124,
  2168. "g": 124,
  2169. "b": 124,
  2170. "a": 255
  2171. },
  2172. "_normalSprite": null,
  2173. "_hoverSprite": null,
  2174. "_pressedSprite": null,
  2175. "_disabledSprite": null,
  2176. "_duration": 0.1,
  2177. "_zoomScale": 1.2,
  2178. "_target": {
  2179. "__id__": 78
  2180. },
  2181. "checkEvents": [
  2182. {
  2183. "__id__": 91
  2184. }
  2185. ],
  2186. "_isChecked": true,
  2187. "_checkMark": {
  2188. "__id__": 82
  2189. },
  2190. "_id": ""
  2191. },
  2192. {
  2193. "__type__": "cc.CompPrefabInfo",
  2194. "fileId": "93ith0yfFNS7Mftwt6YcVZ"
  2195. },
  2196. {
  2197. "__type__": "cc.ClickEvent",
  2198. "target": {
  2199. "__id__": 1
  2200. },
  2201. "component": "",
  2202. "_componentId": "92429ykTnxFCrcGyW58JWjj",
  2203. "handler": "onToggleChick",
  2204. "customEventData": ""
  2205. },
  2206. {
  2207. "__type__": "cc.PrefabInfo",
  2208. "root": {
  2209. "__id__": 1
  2210. },
  2211. "asset": {
  2212. "__id__": 0
  2213. },
  2214. "fileId": "3bp5Jo279NfJHrWyQt6FPj",
  2215. "instance": null,
  2216. "targetOverrides": null,
  2217. "nestedPrefabInstanceRoots": null
  2218. },
  2219. {
  2220. "__type__": "cc.Node",
  2221. "_name": "tips",
  2222. "_objFlags": 0,
  2223. "__editorExtras__": {},
  2224. "_parent": {
  2225. "__id__": 77
  2226. },
  2227. "_children": [],
  2228. "_active": true,
  2229. "_components": [
  2230. {
  2231. "__id__": 94
  2232. },
  2233. {
  2234. "__id__": 96
  2235. },
  2236. {
  2237. "__id__": 98
  2238. }
  2239. ],
  2240. "_prefab": {
  2241. "__id__": 100
  2242. },
  2243. "_lpos": {
  2244. "__type__": "cc.Vec3",
  2245. "x": 37,
  2246. "y": -0.65,
  2247. "z": 0
  2248. },
  2249. "_lrot": {
  2250. "__type__": "cc.Quat",
  2251. "x": 0,
  2252. "y": 0,
  2253. "z": 0,
  2254. "w": 1
  2255. },
  2256. "_lscale": {
  2257. "__type__": "cc.Vec3",
  2258. "x": 1,
  2259. "y": 1,
  2260. "z": 1
  2261. },
  2262. "_mobility": 0,
  2263. "_layer": 33554432,
  2264. "_euler": {
  2265. "__type__": "cc.Vec3",
  2266. "x": 0,
  2267. "y": 0,
  2268. "z": 0
  2269. },
  2270. "_id": ""
  2271. },
  2272. {
  2273. "__type__": "cc.UITransform",
  2274. "_name": "",
  2275. "_objFlags": 0,
  2276. "__editorExtras__": {},
  2277. "node": {
  2278. "__id__": 93
  2279. },
  2280. "_enabled": true,
  2281. "__prefab": {
  2282. "__id__": 95
  2283. },
  2284. "_contentSize": {
  2285. "__type__": "cc.Size",
  2286. "width": 576,
  2287. "height": 30.240000000000002
  2288. },
  2289. "_anchorPoint": {
  2290. "__type__": "cc.Vec2",
  2291. "x": 0.5,
  2292. "y": 0.5
  2293. },
  2294. "_id": ""
  2295. },
  2296. {
  2297. "__type__": "cc.CompPrefabInfo",
  2298. "fileId": "49Av0ybvZFVr8KRuAkX97u"
  2299. },
  2300. {
  2301. "__type__": "cc.RichText",
  2302. "_name": "",
  2303. "_objFlags": 0,
  2304. "__editorExtras__": {},
  2305. "node": {
  2306. "__id__": 93
  2307. },
  2308. "_enabled": true,
  2309. "__prefab": {
  2310. "__id__": 97
  2311. },
  2312. "_lineHeight": 24,
  2313. "_string": "登录即代表同意消消金块<on click=\"onClicked\" param=\"User Agreement\"><color=#5C9CE9>《用户协议》</color></on>和<on click=\"onClicked\" param=\"Privacy Policy\"><color=#5C9CE9>《隐私政策》</color></on>",
  2314. "_horizontalAlign": 0,
  2315. "_verticalAlign": 0,
  2316. "_fontSize": 24,
  2317. "_fontColor": {
  2318. "__type__": "cc.Color",
  2319. "r": 160,
  2320. "g": 160,
  2321. "b": 160,
  2322. "a": 255
  2323. },
  2324. "_maxWidth": 0,
  2325. "_fontFamily": "Arial",
  2326. "_font": null,
  2327. "_isSystemFontUsed": true,
  2328. "_userDefinedFont": null,
  2329. "_cacheMode": 0,
  2330. "_imageAtlas": null,
  2331. "_handleTouchEvent": true,
  2332. "_id": ""
  2333. },
  2334. {
  2335. "__type__": "cc.CompPrefabInfo",
  2336. "fileId": "8cdae3GFFLco6IXWz/L/FA"
  2337. },
  2338. {
  2339. "__type__": "16f06h3mPNKjbAsWaBEkDUh",
  2340. "_name": "",
  2341. "_objFlags": 0,
  2342. "__editorExtras__": {},
  2343. "node": {
  2344. "__id__": 93
  2345. },
  2346. "_enabled": true,
  2347. "__prefab": {
  2348. "__id__": 99
  2349. },
  2350. "_id": ""
  2351. },
  2352. {
  2353. "__type__": "cc.CompPrefabInfo",
  2354. "fileId": "f5Jxj3jH5OXLXaW5RXbzk3"
  2355. },
  2356. {
  2357. "__type__": "cc.PrefabInfo",
  2358. "root": {
  2359. "__id__": 1
  2360. },
  2361. "asset": {
  2362. "__id__": 0
  2363. },
  2364. "fileId": "a3YETY/dhIb671tn/JG/r0",
  2365. "instance": null,
  2366. "targetOverrides": null,
  2367. "nestedPrefabInstanceRoots": null
  2368. },
  2369. {
  2370. "__type__": "cc.UITransform",
  2371. "_name": "",
  2372. "_objFlags": 0,
  2373. "__editorExtras__": {},
  2374. "node": {
  2375. "__id__": 77
  2376. },
  2377. "_enabled": true,
  2378. "__prefab": {
  2379. "__id__": 102
  2380. },
  2381. "_contentSize": {
  2382. "__type__": "cc.Size",
  2383. "width": 630,
  2384. "height": 53
  2385. },
  2386. "_anchorPoint": {
  2387. "__type__": "cc.Vec2",
  2388. "x": 0.5,
  2389. "y": 0.5
  2390. },
  2391. "_id": ""
  2392. },
  2393. {
  2394. "__type__": "cc.CompPrefabInfo",
  2395. "fileId": "9aujqzLLdHy64onkymk5Ii"
  2396. },
  2397. {
  2398. "__type__": "cc.Layout",
  2399. "_name": "",
  2400. "_objFlags": 0,
  2401. "__editorExtras__": {},
  2402. "node": {
  2403. "__id__": 77
  2404. },
  2405. "_enabled": true,
  2406. "__prefab": {
  2407. "__id__": 104
  2408. },
  2409. "_resizeMode": 0,
  2410. "_layoutType": 1,
  2411. "_cellSize": {
  2412. "__type__": "cc.Size",
  2413. "width": 40,
  2414. "height": 40
  2415. },
  2416. "_startAxis": 0,
  2417. "_paddingLeft": 30,
  2418. "_paddingRight": 0,
  2419. "_paddingTop": 0,
  2420. "_paddingBottom": 0,
  2421. "_spacingX": 10,
  2422. "_spacingY": 0,
  2423. "_verticalDirection": 1,
  2424. "_horizontalDirection": 0,
  2425. "_constraint": 0,
  2426. "_constraintNum": 2,
  2427. "_affectedByScale": false,
  2428. "_isAlign": false,
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.CompPrefabInfo",
  2433. "fileId": "87HUM7OApI6rhQATIF/tw/"
  2434. },
  2435. {
  2436. "__type__": "cc.PrefabInfo",
  2437. "root": {
  2438. "__id__": 1
  2439. },
  2440. "asset": {
  2441. "__id__": 0
  2442. },
  2443. "fileId": "19WsKo7fpHq5VKbtzSENf6",
  2444. "instance": null,
  2445. "targetOverrides": null,
  2446. "nestedPrefabInstanceRoots": null
  2447. },
  2448. {
  2449. "__type__": "cc.UITransform",
  2450. "_name": "",
  2451. "_objFlags": 0,
  2452. "__editorExtras__": {},
  2453. "node": {
  2454. "__id__": 52
  2455. },
  2456. "_enabled": true,
  2457. "__prefab": {
  2458. "__id__": 107
  2459. },
  2460. "_contentSize": {
  2461. "__type__": "cc.Size",
  2462. "width": 720,
  2463. "height": 200
  2464. },
  2465. "_anchorPoint": {
  2466. "__type__": "cc.Vec2",
  2467. "x": 0.5,
  2468. "y": 0.5
  2469. },
  2470. "_id": ""
  2471. },
  2472. {
  2473. "__type__": "cc.CompPrefabInfo",
  2474. "fileId": "b4QGwviIVKzZEMmXZbTmLX"
  2475. },
  2476. {
  2477. "__type__": "cc.PrefabInfo",
  2478. "root": {
  2479. "__id__": 1
  2480. },
  2481. "asset": {
  2482. "__id__": 0
  2483. },
  2484. "fileId": "eejkSEK4JAhqsHCR4DbqUN",
  2485. "instance": null,
  2486. "targetOverrides": null,
  2487. "nestedPrefabInstanceRoots": null
  2488. },
  2489. {
  2490. "__type__": "cc.UITransform",
  2491. "_name": "loading<UITransform>",
  2492. "_objFlags": 0,
  2493. "__editorExtras__": {},
  2494. "node": {
  2495. "__id__": 1
  2496. },
  2497. "_enabled": true,
  2498. "__prefab": {
  2499. "__id__": 110
  2500. },
  2501. "_contentSize": {
  2502. "__type__": "cc.Size",
  2503. "width": 720,
  2504. "height": 1599.9999999999998
  2505. },
  2506. "_anchorPoint": {
  2507. "__type__": "cc.Vec2",
  2508. "x": 0.5,
  2509. "y": 0.5
  2510. },
  2511. "_id": ""
  2512. },
  2513. {
  2514. "__type__": "cc.CompPrefabInfo",
  2515. "fileId": "dcwRyrrAFJIZu8cg5N9Q7q"
  2516. },
  2517. {
  2518. "__type__": "cc.Widget",
  2519. "_name": "",
  2520. "_objFlags": 0,
  2521. "__editorExtras__": {},
  2522. "node": {
  2523. "__id__": 1
  2524. },
  2525. "_enabled": true,
  2526. "__prefab": {
  2527. "__id__": 112
  2528. },
  2529. "_alignFlags": 45,
  2530. "_target": null,
  2531. "_left": 0,
  2532. "_right": 0,
  2533. "_top": 0,
  2534. "_bottom": 0,
  2535. "_horizontalCenter": 0,
  2536. "_verticalCenter": 0,
  2537. "_isAbsLeft": true,
  2538. "_isAbsRight": true,
  2539. "_isAbsTop": true,
  2540. "_isAbsBottom": true,
  2541. "_isAbsHorizontalCenter": true,
  2542. "_isAbsVerticalCenter": true,
  2543. "_originalWidth": 1280,
  2544. "_originalHeight": 720,
  2545. "_alignMode": 2,
  2546. "_lockFlags": 0,
  2547. "_id": ""
  2548. },
  2549. {
  2550. "__type__": "cc.CompPrefabInfo",
  2551. "fileId": "26ZokSfFxPFr+5cT88/8nR"
  2552. },
  2553. {
  2554. "__type__": "92429ykTnxFCrcGyW58JWjj",
  2555. "_name": "",
  2556. "_objFlags": 0,
  2557. "__editorExtras__": {},
  2558. "node": {
  2559. "__id__": 1
  2560. },
  2561. "_enabled": true,
  2562. "__prefab": {
  2563. "__id__": 114
  2564. },
  2565. "_id": ""
  2566. },
  2567. {
  2568. "__type__": "cc.CompPrefabInfo",
  2569. "fileId": "daCFe+B0BOeZtHLHqBYu9Z"
  2570. },
  2571. {
  2572. "__type__": "cc.PrefabInfo",
  2573. "root": {
  2574. "__id__": 1
  2575. },
  2576. "asset": {
  2577. "__id__": 0
  2578. },
  2579. "fileId": "65Pe/9AIJMgIjcSkJv5QHh",
  2580. "instance": null,
  2581. "targetOverrides": null
  2582. }
  2583. ]