Gm.prefab 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "Gm",
  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": "Gm",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 87
  32. },
  33. {
  34. "__id__": 89
  35. },
  36. {
  37. "__id__": 91
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 93
  42. },
  43. "_lpos": {
  44. "__type__": "cc.Vec3",
  45. "x": 0,
  46. "y": 0,
  47. "z": 0
  48. },
  49. "_lrot": {
  50. "__type__": "cc.Quat",
  51. "x": 0,
  52. "y": 0,
  53. "z": 0,
  54. "w": 1
  55. },
  56. "_lscale": {
  57. "__type__": "cc.Vec3",
  58. "x": 1,
  59. "y": 1,
  60. "z": 1
  61. },
  62. "_mobility": 0,
  63. "_layer": 33554432,
  64. "_euler": {
  65. "__type__": "cc.Vec3",
  66. "x": 0,
  67. "y": 0,
  68. "z": 0
  69. },
  70. "_id": ""
  71. },
  72. {
  73. "__type__": "cc.Node",
  74. "_name": "mask",
  75. "_objFlags": 0,
  76. "__editorExtras__": {},
  77. "_parent": {
  78. "__id__": 1
  79. },
  80. "_children": [],
  81. "_active": true,
  82. "_components": [
  83. {
  84. "__id__": 3
  85. },
  86. {
  87. "__id__": 5
  88. },
  89. {
  90. "__id__": 7
  91. },
  92. {
  93. "__id__": 9
  94. }
  95. ],
  96. "_prefab": {
  97. "__id__": 11
  98. },
  99. "_lpos": {
  100. "__type__": "cc.Vec3",
  101. "x": 0,
  102. "y": 0,
  103. "z": 0
  104. },
  105. "_lrot": {
  106. "__type__": "cc.Quat",
  107. "x": 0,
  108. "y": 0,
  109. "z": 0,
  110. "w": 1
  111. },
  112. "_lscale": {
  113. "__type__": "cc.Vec3",
  114. "x": 1,
  115. "y": 1,
  116. "z": 1
  117. },
  118. "_mobility": 0,
  119. "_layer": 33554432,
  120. "_euler": {
  121. "__type__": "cc.Vec3",
  122. "x": 0,
  123. "y": 0,
  124. "z": 0
  125. },
  126. "_id": ""
  127. },
  128. {
  129. "__type__": "cc.UITransform",
  130. "_name": "",
  131. "_objFlags": 0,
  132. "__editorExtras__": {},
  133. "node": {
  134. "__id__": 2
  135. },
  136. "_enabled": true,
  137. "__prefab": {
  138. "__id__": 4
  139. },
  140. "_contentSize": {
  141. "__type__": "cc.Size",
  142. "width": 720,
  143. "height": 1280
  144. },
  145. "_anchorPoint": {
  146. "__type__": "cc.Vec2",
  147. "x": 0.5,
  148. "y": 0.5
  149. },
  150. "_id": ""
  151. },
  152. {
  153. "__type__": "cc.CompPrefabInfo",
  154. "fileId": "9emcsx2dhD6aUAW+ocrh14"
  155. },
  156. {
  157. "__type__": "cc.Sprite",
  158. "_name": "",
  159. "_objFlags": 0,
  160. "__editorExtras__": {},
  161. "node": {
  162. "__id__": 2
  163. },
  164. "_enabled": true,
  165. "__prefab": {
  166. "__id__": 6
  167. },
  168. "_customMaterial": null,
  169. "_srcBlendFactor": 2,
  170. "_dstBlendFactor": 4,
  171. "_color": {
  172. "__type__": "cc.Color",
  173. "r": 0,
  174. "g": 0,
  175. "b": 0,
  176. "a": 80
  177. },
  178. "_spriteFrame": {
  179. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  180. "__expectedType__": "cc.SpriteFrame"
  181. },
  182. "_type": 0,
  183. "_fillType": 0,
  184. "_sizeMode": 0,
  185. "_fillCenter": {
  186. "__type__": "cc.Vec2",
  187. "x": 0,
  188. "y": 0
  189. },
  190. "_fillStart": 0,
  191. "_fillRange": 0,
  192. "_isTrimmedMode": true,
  193. "_useGrayscale": false,
  194. "_atlas": null,
  195. "_id": ""
  196. },
  197. {
  198. "__type__": "cc.CompPrefabInfo",
  199. "fileId": "80e3K8pBlOSIWtDjmv951g"
  200. },
  201. {
  202. "__type__": "cc.Widget",
  203. "_name": "",
  204. "_objFlags": 0,
  205. "__editorExtras__": {},
  206. "node": {
  207. "__id__": 2
  208. },
  209. "_enabled": true,
  210. "__prefab": {
  211. "__id__": 8
  212. },
  213. "_alignFlags": 45,
  214. "_target": null,
  215. "_left": 0,
  216. "_right": 0,
  217. "_top": 0,
  218. "_bottom": 0,
  219. "_horizontalCenter": 0,
  220. "_verticalCenter": 0,
  221. "_isAbsLeft": true,
  222. "_isAbsRight": true,
  223. "_isAbsTop": true,
  224. "_isAbsBottom": true,
  225. "_isAbsHorizontalCenter": true,
  226. "_isAbsVerticalCenter": true,
  227. "_originalWidth": 100,
  228. "_originalHeight": 100,
  229. "_alignMode": 2,
  230. "_lockFlags": 0,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.CompPrefabInfo",
  235. "fileId": "24aqU0gURGDJqwf3cGRtcw"
  236. },
  237. {
  238. "__type__": "cc.BlockInputEvents",
  239. "_name": "",
  240. "_objFlags": 0,
  241. "__editorExtras__": {},
  242. "node": {
  243. "__id__": 2
  244. },
  245. "_enabled": true,
  246. "__prefab": {
  247. "__id__": 10
  248. },
  249. "_id": ""
  250. },
  251. {
  252. "__type__": "cc.CompPrefabInfo",
  253. "fileId": "4dFropAotCzKUuVjYf4wvk"
  254. },
  255. {
  256. "__type__": "cc.PrefabInfo",
  257. "root": {
  258. "__id__": 1
  259. },
  260. "asset": {
  261. "__id__": 0
  262. },
  263. "fileId": "faL84kOQtJz7/GwaqgSiZL",
  264. "instance": null,
  265. "targetOverrides": null,
  266. "nestedPrefabInstanceRoots": null
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "bg",
  271. "_objFlags": 0,
  272. "__editorExtras__": {},
  273. "_parent": {
  274. "__id__": 1
  275. },
  276. "_children": [
  277. {
  278. "__id__": 13
  279. },
  280. {
  281. "__id__": 39
  282. },
  283. {
  284. "__id__": 48
  285. },
  286. {
  287. "__id__": 54
  288. },
  289. {
  290. "__id__": 76
  291. }
  292. ],
  293. "_active": true,
  294. "_components": [
  295. {
  296. "__id__": 82
  297. },
  298. {
  299. "__id__": 84
  300. }
  301. ],
  302. "_prefab": {
  303. "__id__": 86
  304. },
  305. "_lpos": {
  306. "__type__": "cc.Vec3",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0
  310. },
  311. "_lrot": {
  312. "__type__": "cc.Quat",
  313. "x": 0,
  314. "y": 0,
  315. "z": 0,
  316. "w": 1
  317. },
  318. "_lscale": {
  319. "__type__": "cc.Vec3",
  320. "x": 1,
  321. "y": 1,
  322. "z": 1
  323. },
  324. "_mobility": 0,
  325. "_layer": 33554432,
  326. "_euler": {
  327. "__type__": "cc.Vec3",
  328. "x": 0,
  329. "y": 0,
  330. "z": 0
  331. },
  332. "_id": ""
  333. },
  334. {
  335. "__type__": "cc.Node",
  336. "_name": "EditBox_time",
  337. "_objFlags": 0,
  338. "__editorExtras__": {},
  339. "_parent": {
  340. "__id__": 12
  341. },
  342. "_children": [
  343. {
  344. "__id__": 14
  345. },
  346. {
  347. "__id__": 20
  348. },
  349. {
  350. "__id__": 26
  351. }
  352. ],
  353. "_active": true,
  354. "_components": [
  355. {
  356. "__id__": 32
  357. },
  358. {
  359. "__id__": 34
  360. },
  361. {
  362. "__id__": 36
  363. }
  364. ],
  365. "_prefab": {
  366. "__id__": 38
  367. },
  368. "_lpos": {
  369. "__type__": "cc.Vec3",
  370. "x": 34.2975,
  371. "y": 417.417,
  372. "z": 0
  373. },
  374. "_lrot": {
  375. "__type__": "cc.Quat",
  376. "x": 0,
  377. "y": 0,
  378. "z": 0,
  379. "w": 1
  380. },
  381. "_lscale": {
  382. "__type__": "cc.Vec3",
  383. "x": 1,
  384. "y": 1,
  385. "z": 1
  386. },
  387. "_mobility": 0,
  388. "_layer": 33554432,
  389. "_euler": {
  390. "__type__": "cc.Vec3",
  391. "x": 0,
  392. "y": 0,
  393. "z": 0
  394. },
  395. "_id": ""
  396. },
  397. {
  398. "__type__": "cc.Node",
  399. "_name": "TEXT_LABEL",
  400. "_objFlags": 0,
  401. "__editorExtras__": {},
  402. "_parent": {
  403. "__id__": 13
  404. },
  405. "_children": [],
  406. "_active": false,
  407. "_components": [
  408. {
  409. "__id__": 15
  410. },
  411. {
  412. "__id__": 17
  413. }
  414. ],
  415. "_prefab": {
  416. "__id__": 19
  417. },
  418. "_lpos": {
  419. "__type__": "cc.Vec3",
  420. "x": -118.9005,
  421. "y": 20,
  422. "z": 0
  423. },
  424. "_lrot": {
  425. "__type__": "cc.Quat",
  426. "x": 0,
  427. "y": 0,
  428. "z": 0,
  429. "w": 1
  430. },
  431. "_lscale": {
  432. "__type__": "cc.Vec3",
  433. "x": 1,
  434. "y": 1,
  435. "z": 1
  436. },
  437. "_mobility": 0,
  438. "_layer": 33554432,
  439. "_euler": {
  440. "__type__": "cc.Vec3",
  441. "x": 0,
  442. "y": 0,
  443. "z": 0
  444. },
  445. "_id": ""
  446. },
  447. {
  448. "__type__": "cc.UITransform",
  449. "_name": "",
  450. "_objFlags": 0,
  451. "__editorExtras__": {},
  452. "node": {
  453. "__id__": 14
  454. },
  455. "_enabled": true,
  456. "__prefab": {
  457. "__id__": 16
  458. },
  459. "_contentSize": {
  460. "__type__": "cc.Size",
  461. "width": 239.801,
  462. "height": 40
  463. },
  464. "_anchorPoint": {
  465. "__type__": "cc.Vec2",
  466. "x": 0,
  467. "y": 1
  468. },
  469. "_id": ""
  470. },
  471. {
  472. "__type__": "cc.CompPrefabInfo",
  473. "fileId": "beYPNSPexNiqT6z8O0eopj"
  474. },
  475. {
  476. "__type__": "cc.Label",
  477. "_name": "",
  478. "_objFlags": 0,
  479. "__editorExtras__": {},
  480. "node": {
  481. "__id__": 14
  482. },
  483. "_enabled": true,
  484. "__prefab": {
  485. "__id__": 18
  486. },
  487. "_customMaterial": null,
  488. "_srcBlendFactor": 2,
  489. "_dstBlendFactor": 4,
  490. "_color": {
  491. "__type__": "cc.Color",
  492. "r": 255,
  493. "g": 255,
  494. "b": 255,
  495. "a": 255
  496. },
  497. "_string": "",
  498. "_horizontalAlign": 0,
  499. "_verticalAlign": 0,
  500. "_actualFontSize": 40,
  501. "_fontSize": 20,
  502. "_fontFamily": "Arial",
  503. "_lineHeight": 40,
  504. "_overflow": 1,
  505. "_enableWrapText": true,
  506. "_font": null,
  507. "_isSystemFontUsed": true,
  508. "_spacingX": 0,
  509. "_isItalic": false,
  510. "_isBold": false,
  511. "_isUnderline": false,
  512. "_underlineHeight": 2,
  513. "_cacheMode": 0,
  514. "_enableOutline": false,
  515. "_outlineColor": {
  516. "__type__": "cc.Color",
  517. "r": 0,
  518. "g": 0,
  519. "b": 0,
  520. "a": 255
  521. },
  522. "_outlineWidth": 2,
  523. "_enableShadow": false,
  524. "_shadowColor": {
  525. "__type__": "cc.Color",
  526. "r": 0,
  527. "g": 0,
  528. "b": 0,
  529. "a": 255
  530. },
  531. "_shadowOffset": {
  532. "__type__": "cc.Vec2",
  533. "x": 2,
  534. "y": 2
  535. },
  536. "_shadowBlur": 2,
  537. "_id": ""
  538. },
  539. {
  540. "__type__": "cc.CompPrefabInfo",
  541. "fileId": "47F2dEz6pHrLIkmOWpdZ9m"
  542. },
  543. {
  544. "__type__": "cc.PrefabInfo",
  545. "root": {
  546. "__id__": 1
  547. },
  548. "asset": {
  549. "__id__": 0
  550. },
  551. "fileId": "f6/txp645DCZaHtmRRovFm",
  552. "instance": null,
  553. "targetOverrides": null,
  554. "nestedPrefabInstanceRoots": null
  555. },
  556. {
  557. "__type__": "cc.Node",
  558. "_name": "PLACEHOLDER_LABEL",
  559. "_objFlags": 0,
  560. "__editorExtras__": {},
  561. "_parent": {
  562. "__id__": 13
  563. },
  564. "_children": [],
  565. "_active": true,
  566. "_components": [
  567. {
  568. "__id__": 21
  569. },
  570. {
  571. "__id__": 23
  572. }
  573. ],
  574. "_prefab": {
  575. "__id__": 25
  576. },
  577. "_lpos": {
  578. "__type__": "cc.Vec3",
  579. "x": -118.9005,
  580. "y": 20,
  581. "z": 0
  582. },
  583. "_lrot": {
  584. "__type__": "cc.Quat",
  585. "x": 0,
  586. "y": 0,
  587. "z": 0,
  588. "w": 1
  589. },
  590. "_lscale": {
  591. "__type__": "cc.Vec3",
  592. "x": 1,
  593. "y": 1,
  594. "z": 1
  595. },
  596. "_mobility": 0,
  597. "_layer": 33554432,
  598. "_euler": {
  599. "__type__": "cc.Vec3",
  600. "x": 0,
  601. "y": 0,
  602. "z": 0
  603. },
  604. "_id": ""
  605. },
  606. {
  607. "__type__": "cc.UITransform",
  608. "_name": "",
  609. "_objFlags": 0,
  610. "__editorExtras__": {},
  611. "node": {
  612. "__id__": 20
  613. },
  614. "_enabled": true,
  615. "__prefab": {
  616. "__id__": 22
  617. },
  618. "_contentSize": {
  619. "__type__": "cc.Size",
  620. "width": 239.801,
  621. "height": 40
  622. },
  623. "_anchorPoint": {
  624. "__type__": "cc.Vec2",
  625. "x": 0,
  626. "y": 1
  627. },
  628. "_id": ""
  629. },
  630. {
  631. "__type__": "cc.CompPrefabInfo",
  632. "fileId": "3fQB0Va55H3ZKWMA3Z3XoV"
  633. },
  634. {
  635. "__type__": "cc.Label",
  636. "_name": "",
  637. "_objFlags": 0,
  638. "__editorExtras__": {},
  639. "node": {
  640. "__id__": 20
  641. },
  642. "_enabled": true,
  643. "__prefab": {
  644. "__id__": 24
  645. },
  646. "_customMaterial": null,
  647. "_srcBlendFactor": 2,
  648. "_dstBlendFactor": 4,
  649. "_color": {
  650. "__type__": "cc.Color",
  651. "r": 187,
  652. "g": 187,
  653. "b": 187,
  654. "a": 255
  655. },
  656. "_string": " 请输入秒数(纯数字)",
  657. "_horizontalAlign": 0,
  658. "_verticalAlign": 1,
  659. "_actualFontSize": 20,
  660. "_fontSize": 20,
  661. "_fontFamily": "Arial",
  662. "_lineHeight": 40,
  663. "_overflow": 1,
  664. "_enableWrapText": true,
  665. "_font": null,
  666. "_isSystemFontUsed": true,
  667. "_spacingX": 0,
  668. "_isItalic": false,
  669. "_isBold": false,
  670. "_isUnderline": false,
  671. "_underlineHeight": 2,
  672. "_cacheMode": 0,
  673. "_enableOutline": false,
  674. "_outlineColor": {
  675. "__type__": "cc.Color",
  676. "r": 0,
  677. "g": 0,
  678. "b": 0,
  679. "a": 255
  680. },
  681. "_outlineWidth": 2,
  682. "_enableShadow": false,
  683. "_shadowColor": {
  684. "__type__": "cc.Color",
  685. "r": 0,
  686. "g": 0,
  687. "b": 0,
  688. "a": 255
  689. },
  690. "_shadowOffset": {
  691. "__type__": "cc.Vec2",
  692. "x": 2,
  693. "y": 2
  694. },
  695. "_shadowBlur": 2,
  696. "_id": ""
  697. },
  698. {
  699. "__type__": "cc.CompPrefabInfo",
  700. "fileId": "58xOh9uMFJp7TO/N9C7tZC"
  701. },
  702. {
  703. "__type__": "cc.PrefabInfo",
  704. "root": {
  705. "__id__": 1
  706. },
  707. "asset": {
  708. "__id__": 0
  709. },
  710. "fileId": "7aq3mMYthLmIK2UN8Mv8vs",
  711. "instance": null,
  712. "targetOverrides": null,
  713. "nestedPrefabInstanceRoots": null
  714. },
  715. {
  716. "__type__": "cc.Node",
  717. "_name": "Label",
  718. "_objFlags": 0,
  719. "__editorExtras__": {},
  720. "_parent": {
  721. "__id__": 13
  722. },
  723. "_children": [],
  724. "_active": true,
  725. "_components": [
  726. {
  727. "__id__": 27
  728. },
  729. {
  730. "__id__": 29
  731. }
  732. ],
  733. "_prefab": {
  734. "__id__": 31
  735. },
  736. "_lpos": {
  737. "__type__": "cc.Vec3",
  738. "x": -194.175,
  739. "y": 0,
  740. "z": 0
  741. },
  742. "_lrot": {
  743. "__type__": "cc.Quat",
  744. "x": 0,
  745. "y": 0,
  746. "z": 0,
  747. "w": 1
  748. },
  749. "_lscale": {
  750. "__type__": "cc.Vec3",
  751. "x": 1,
  752. "y": 1,
  753. "z": 1
  754. },
  755. "_mobility": 0,
  756. "_layer": 33554432,
  757. "_euler": {
  758. "__type__": "cc.Vec3",
  759. "x": 0,
  760. "y": 0,
  761. "z": 0
  762. },
  763. "_id": ""
  764. },
  765. {
  766. "__type__": "cc.UITransform",
  767. "_name": "",
  768. "_objFlags": 0,
  769. "__editorExtras__": {},
  770. "node": {
  771. "__id__": 26
  772. },
  773. "_enabled": true,
  774. "__prefab": {
  775. "__id__": 28
  776. },
  777. "_contentSize": {
  778. "__type__": "cc.Size",
  779. "width": 154,
  780. "height": 54.4
  781. },
  782. "_anchorPoint": {
  783. "__type__": "cc.Vec2",
  784. "x": 0.5,
  785. "y": 0.5
  786. },
  787. "_id": ""
  788. },
  789. {
  790. "__type__": "cc.CompPrefabInfo",
  791. "fileId": "982BcRBNBN04lz5YCBITPl"
  792. },
  793. {
  794. "__type__": "cc.Label",
  795. "_name": "",
  796. "_objFlags": 0,
  797. "__editorExtras__": {},
  798. "node": {
  799. "__id__": 26
  800. },
  801. "_enabled": true,
  802. "__prefab": {
  803. "__id__": 30
  804. },
  805. "_customMaterial": null,
  806. "_srcBlendFactor": 2,
  807. "_dstBlendFactor": 4,
  808. "_color": {
  809. "__type__": "cc.Color",
  810. "r": 0,
  811. "g": 0,
  812. "b": 0,
  813. "a": 255
  814. },
  815. "_string": "关卡时间:",
  816. "_horizontalAlign": 1,
  817. "_verticalAlign": 1,
  818. "_actualFontSize": 30,
  819. "_fontSize": 30,
  820. "_fontFamily": "Arial",
  821. "_lineHeight": 40,
  822. "_overflow": 0,
  823. "_enableWrapText": true,
  824. "_font": null,
  825. "_isSystemFontUsed": true,
  826. "_spacingX": 0,
  827. "_isItalic": false,
  828. "_isBold": true,
  829. "_isUnderline": false,
  830. "_underlineHeight": 2,
  831. "_cacheMode": 0,
  832. "_enableOutline": true,
  833. "_outlineColor": {
  834. "__type__": "cc.Color",
  835. "r": 255,
  836. "g": 255,
  837. "b": 255,
  838. "a": 255
  839. },
  840. "_outlineWidth": 2,
  841. "_enableShadow": false,
  842. "_shadowColor": {
  843. "__type__": "cc.Color",
  844. "r": 0,
  845. "g": 0,
  846. "b": 0,
  847. "a": 255
  848. },
  849. "_shadowOffset": {
  850. "__type__": "cc.Vec2",
  851. "x": 2,
  852. "y": 2
  853. },
  854. "_shadowBlur": 2,
  855. "_id": ""
  856. },
  857. {
  858. "__type__": "cc.CompPrefabInfo",
  859. "fileId": "51h/y+GCZIgLiYsMhyz6FC"
  860. },
  861. {
  862. "__type__": "cc.PrefabInfo",
  863. "root": {
  864. "__id__": 1
  865. },
  866. "asset": {
  867. "__id__": 0
  868. },
  869. "fileId": "18TxnfQFdKc5SXQUybeBji",
  870. "instance": null,
  871. "targetOverrides": null,
  872. "nestedPrefabInstanceRoots": null
  873. },
  874. {
  875. "__type__": "cc.UITransform",
  876. "_name": "",
  877. "_objFlags": 0,
  878. "__editorExtras__": {},
  879. "node": {
  880. "__id__": 13
  881. },
  882. "_enabled": true,
  883. "__prefab": {
  884. "__id__": 33
  885. },
  886. "_contentSize": {
  887. "__type__": "cc.Size",
  888. "width": 241.801,
  889. "height": 40
  890. },
  891. "_anchorPoint": {
  892. "__type__": "cc.Vec2",
  893. "x": 0.5,
  894. "y": 0.5
  895. },
  896. "_id": ""
  897. },
  898. {
  899. "__type__": "cc.CompPrefabInfo",
  900. "fileId": "01kN8TKUJAZon5QX31oljM"
  901. },
  902. {
  903. "__type__": "cc.Sprite",
  904. "_name": "",
  905. "_objFlags": 0,
  906. "__editorExtras__": {},
  907. "node": {
  908. "__id__": 13
  909. },
  910. "_enabled": true,
  911. "__prefab": {
  912. "__id__": 35
  913. },
  914. "_customMaterial": null,
  915. "_srcBlendFactor": 2,
  916. "_dstBlendFactor": 4,
  917. "_color": {
  918. "__type__": "cc.Color",
  919. "r": 255,
  920. "g": 255,
  921. "b": 255,
  922. "a": 255
  923. },
  924. "_spriteFrame": {
  925. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  926. "__expectedType__": "cc.SpriteFrame"
  927. },
  928. "_type": 1,
  929. "_fillType": 0,
  930. "_sizeMode": 0,
  931. "_fillCenter": {
  932. "__type__": "cc.Vec2",
  933. "x": 0,
  934. "y": 0
  935. },
  936. "_fillStart": 0,
  937. "_fillRange": 0,
  938. "_isTrimmedMode": true,
  939. "_useGrayscale": false,
  940. "_atlas": null,
  941. "_id": ""
  942. },
  943. {
  944. "__type__": "cc.CompPrefabInfo",
  945. "fileId": "1fKvjDfGRDqLqnv3lda6yd"
  946. },
  947. {
  948. "__type__": "cc.EditBox",
  949. "_name": "",
  950. "_objFlags": 0,
  951. "__editorExtras__": {},
  952. "node": {
  953. "__id__": 13
  954. },
  955. "_enabled": true,
  956. "__prefab": {
  957. "__id__": 37
  958. },
  959. "editingDidBegan": [],
  960. "textChanged": [],
  961. "editingDidEnded": [],
  962. "editingReturn": [],
  963. "_textLabel": {
  964. "__id__": 17
  965. },
  966. "_placeholderLabel": {
  967. "__id__": 23
  968. },
  969. "_returnType": 0,
  970. "_string": "",
  971. "_tabIndex": 0,
  972. "_backgroundImage": {
  973. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  974. "__expectedType__": "cc.SpriteFrame"
  975. },
  976. "_inputFlag": 5,
  977. "_inputMode": 0,
  978. "_maxLength": 8,
  979. "_id": ""
  980. },
  981. {
  982. "__type__": "cc.CompPrefabInfo",
  983. "fileId": "13ZY0RMFFCMo6WhlV7to/p"
  984. },
  985. {
  986. "__type__": "cc.PrefabInfo",
  987. "root": {
  988. "__id__": 1
  989. },
  990. "asset": {
  991. "__id__": 0
  992. },
  993. "fileId": "afMZ9aXZxMUZihXLWMaUrg",
  994. "instance": null,
  995. "targetOverrides": null,
  996. "nestedPrefabInstanceRoots": null
  997. },
  998. {
  999. "__type__": "cc.Node",
  1000. "_name": "btn_close",
  1001. "_objFlags": 0,
  1002. "__editorExtras__": {},
  1003. "_parent": {
  1004. "__id__": 12
  1005. },
  1006. "_children": [],
  1007. "_active": true,
  1008. "_components": [
  1009. {
  1010. "__id__": 40
  1011. },
  1012. {
  1013. "__id__": 42
  1014. },
  1015. {
  1016. "__id__": 44
  1017. }
  1018. ],
  1019. "_prefab": {
  1020. "__id__": 47
  1021. },
  1022. "_lpos": {
  1023. "__type__": "cc.Vec3",
  1024. "x": 277.282,
  1025. "y": 542.062,
  1026. "z": 0
  1027. },
  1028. "_lrot": {
  1029. "__type__": "cc.Quat",
  1030. "x": 0,
  1031. "y": 0,
  1032. "z": 0,
  1033. "w": 1
  1034. },
  1035. "_lscale": {
  1036. "__type__": "cc.Vec3",
  1037. "x": 1,
  1038. "y": 1,
  1039. "z": 1
  1040. },
  1041. "_mobility": 0,
  1042. "_layer": 33554432,
  1043. "_euler": {
  1044. "__type__": "cc.Vec3",
  1045. "x": 0,
  1046. "y": 0,
  1047. "z": 0
  1048. },
  1049. "_id": ""
  1050. },
  1051. {
  1052. "__type__": "cc.UITransform",
  1053. "_name": "",
  1054. "_objFlags": 0,
  1055. "__editorExtras__": {},
  1056. "node": {
  1057. "__id__": 39
  1058. },
  1059. "_enabled": true,
  1060. "__prefab": {
  1061. "__id__": 41
  1062. },
  1063. "_contentSize": {
  1064. "__type__": "cc.Size",
  1065. "width": 67,
  1066. "height": 67
  1067. },
  1068. "_anchorPoint": {
  1069. "__type__": "cc.Vec2",
  1070. "x": 0.5,
  1071. "y": 0.5
  1072. },
  1073. "_id": ""
  1074. },
  1075. {
  1076. "__type__": "cc.CompPrefabInfo",
  1077. "fileId": "88YA+cPjhP6JMYld2XtDIC"
  1078. },
  1079. {
  1080. "__type__": "cc.Sprite",
  1081. "_name": "",
  1082. "_objFlags": 0,
  1083. "__editorExtras__": {},
  1084. "node": {
  1085. "__id__": 39
  1086. },
  1087. "_enabled": true,
  1088. "__prefab": {
  1089. "__id__": 43
  1090. },
  1091. "_customMaterial": null,
  1092. "_srcBlendFactor": 2,
  1093. "_dstBlendFactor": 4,
  1094. "_color": {
  1095. "__type__": "cc.Color",
  1096. "r": 255,
  1097. "g": 255,
  1098. "b": 255,
  1099. "a": 255
  1100. },
  1101. "_spriteFrame": {
  1102. "__uuid__": "9d250615-b5ff-4029-9cbd-5bed01e48353@f9941",
  1103. "__expectedType__": "cc.SpriteFrame"
  1104. },
  1105. "_type": 0,
  1106. "_fillType": 0,
  1107. "_sizeMode": 1,
  1108. "_fillCenter": {
  1109. "__type__": "cc.Vec2",
  1110. "x": 0,
  1111. "y": 0
  1112. },
  1113. "_fillStart": 0,
  1114. "_fillRange": 0,
  1115. "_isTrimmedMode": true,
  1116. "_useGrayscale": false,
  1117. "_atlas": null,
  1118. "_id": ""
  1119. },
  1120. {
  1121. "__type__": "cc.CompPrefabInfo",
  1122. "fileId": "c8E2ik7KdKyq+1duCZQb8k"
  1123. },
  1124. {
  1125. "__type__": "cc.Button",
  1126. "_name": "",
  1127. "_objFlags": 0,
  1128. "__editorExtras__": {},
  1129. "node": {
  1130. "__id__": 39
  1131. },
  1132. "_enabled": true,
  1133. "__prefab": {
  1134. "__id__": 45
  1135. },
  1136. "clickEvents": [
  1137. {
  1138. "__id__": 46
  1139. }
  1140. ],
  1141. "_interactable": true,
  1142. "_transition": 3,
  1143. "_normalColor": {
  1144. "__type__": "cc.Color",
  1145. "r": 255,
  1146. "g": 255,
  1147. "b": 255,
  1148. "a": 255
  1149. },
  1150. "_hoverColor": {
  1151. "__type__": "cc.Color",
  1152. "r": 211,
  1153. "g": 211,
  1154. "b": 211,
  1155. "a": 255
  1156. },
  1157. "_pressedColor": {
  1158. "__type__": "cc.Color",
  1159. "r": 255,
  1160. "g": 255,
  1161. "b": 255,
  1162. "a": 255
  1163. },
  1164. "_disabledColor": {
  1165. "__type__": "cc.Color",
  1166. "r": 124,
  1167. "g": 124,
  1168. "b": 124,
  1169. "a": 255
  1170. },
  1171. "_normalSprite": null,
  1172. "_hoverSprite": null,
  1173. "_pressedSprite": null,
  1174. "_disabledSprite": null,
  1175. "_duration": 0.1,
  1176. "_zoomScale": 1.2,
  1177. "_target": null,
  1178. "_id": ""
  1179. },
  1180. {
  1181. "__type__": "cc.CompPrefabInfo",
  1182. "fileId": "a8WL8GNEFEpJBfn0lTXoG3"
  1183. },
  1184. {
  1185. "__type__": "cc.ClickEvent",
  1186. "target": {
  1187. "__id__": 1
  1188. },
  1189. "component": "",
  1190. "_componentId": "f2e1dLq3gtKFLxHcTS65kmr",
  1191. "handler": "OnClickClose",
  1192. "customEventData": ""
  1193. },
  1194. {
  1195. "__type__": "cc.PrefabInfo",
  1196. "root": {
  1197. "__id__": 1
  1198. },
  1199. "asset": {
  1200. "__id__": 0
  1201. },
  1202. "fileId": "7bN9cfDHBOOLlMgXD/Cogp",
  1203. "instance": null,
  1204. "targetOverrides": null,
  1205. "nestedPrefabInstanceRoots": null
  1206. },
  1207. {
  1208. "__type__": "cc.Node",
  1209. "_name": "Label",
  1210. "_objFlags": 0,
  1211. "__editorExtras__": {},
  1212. "_parent": {
  1213. "__id__": 12
  1214. },
  1215. "_children": [],
  1216. "_active": true,
  1217. "_components": [
  1218. {
  1219. "__id__": 49
  1220. },
  1221. {
  1222. "__id__": 51
  1223. }
  1224. ],
  1225. "_prefab": {
  1226. "__id__": 53
  1227. },
  1228. "_lpos": {
  1229. "__type__": "cc.Vec3",
  1230. "x": -237.456,
  1231. "y": 348.911,
  1232. "z": 0
  1233. },
  1234. "_lrot": {
  1235. "__type__": "cc.Quat",
  1236. "x": 0,
  1237. "y": 0,
  1238. "z": 0,
  1239. "w": 1
  1240. },
  1241. "_lscale": {
  1242. "__type__": "cc.Vec3",
  1243. "x": 1,
  1244. "y": 1,
  1245. "z": 1
  1246. },
  1247. "_mobility": 0,
  1248. "_layer": 33554432,
  1249. "_euler": {
  1250. "__type__": "cc.Vec3",
  1251. "x": 0,
  1252. "y": 0,
  1253. "z": 0
  1254. },
  1255. "_id": ""
  1256. },
  1257. {
  1258. "__type__": "cc.UITransform",
  1259. "_name": "",
  1260. "_objFlags": 0,
  1261. "__editorExtras__": {},
  1262. "node": {
  1263. "__id__": 48
  1264. },
  1265. "_enabled": true,
  1266. "__prefab": {
  1267. "__id__": 50
  1268. },
  1269. "_contentSize": {
  1270. "__type__": "cc.Size",
  1271. "width": 454,
  1272. "height": 54.4
  1273. },
  1274. "_anchorPoint": {
  1275. "__type__": "cc.Vec2",
  1276. "x": 0,
  1277. "y": 0.5
  1278. },
  1279. "_id": ""
  1280. },
  1281. {
  1282. "__type__": "cc.CompPrefabInfo",
  1283. "fileId": "1evuPkuvlOdrBcA5xictLU"
  1284. },
  1285. {
  1286. "__type__": "cc.Label",
  1287. "_name": "",
  1288. "_objFlags": 0,
  1289. "__editorExtras__": {},
  1290. "node": {
  1291. "__id__": 48
  1292. },
  1293. "_enabled": true,
  1294. "__prefab": {
  1295. "__id__": 52
  1296. },
  1297. "_customMaterial": null,
  1298. "_srcBlendFactor": 2,
  1299. "_dstBlendFactor": 4,
  1300. "_color": {
  1301. "__type__": "cc.Color",
  1302. "r": 0,
  1303. "g": 0,
  1304. "b": 0,
  1305. "a": 255
  1306. },
  1307. "_string": "关卡顺序:点击关卡即可向前排序",
  1308. "_horizontalAlign": 1,
  1309. "_verticalAlign": 1,
  1310. "_actualFontSize": 30,
  1311. "_fontSize": 30,
  1312. "_fontFamily": "Arial",
  1313. "_lineHeight": 40,
  1314. "_overflow": 0,
  1315. "_enableWrapText": true,
  1316. "_font": null,
  1317. "_isSystemFontUsed": true,
  1318. "_spacingX": 0,
  1319. "_isItalic": false,
  1320. "_isBold": true,
  1321. "_isUnderline": false,
  1322. "_underlineHeight": 2,
  1323. "_cacheMode": 0,
  1324. "_enableOutline": true,
  1325. "_outlineColor": {
  1326. "__type__": "cc.Color",
  1327. "r": 255,
  1328. "g": 255,
  1329. "b": 255,
  1330. "a": 255
  1331. },
  1332. "_outlineWidth": 2,
  1333. "_enableShadow": false,
  1334. "_shadowColor": {
  1335. "__type__": "cc.Color",
  1336. "r": 0,
  1337. "g": 0,
  1338. "b": 0,
  1339. "a": 255
  1340. },
  1341. "_shadowOffset": {
  1342. "__type__": "cc.Vec2",
  1343. "x": 2,
  1344. "y": 2
  1345. },
  1346. "_shadowBlur": 2,
  1347. "_id": ""
  1348. },
  1349. {
  1350. "__type__": "cc.CompPrefabInfo",
  1351. "fileId": "8bP3B76XBHwoA/fEAHHBxD"
  1352. },
  1353. {
  1354. "__type__": "cc.PrefabInfo",
  1355. "root": {
  1356. "__id__": 1
  1357. },
  1358. "asset": {
  1359. "__id__": 0
  1360. },
  1361. "fileId": "4byvoNXlBAYIDWyzY6WuVP",
  1362. "instance": null,
  1363. "targetOverrides": null,
  1364. "nestedPrefabInstanceRoots": null
  1365. },
  1366. {
  1367. "__type__": "cc.Node",
  1368. "_name": "ScrollView",
  1369. "_objFlags": 0,
  1370. "__editorExtras__": {},
  1371. "_parent": {
  1372. "__id__": 12
  1373. },
  1374. "_children": [
  1375. {
  1376. "__id__": 55
  1377. }
  1378. ],
  1379. "_active": true,
  1380. "_components": [
  1381. {
  1382. "__id__": 69
  1383. },
  1384. {
  1385. "__id__": 71
  1386. },
  1387. {
  1388. "__id__": 73
  1389. }
  1390. ],
  1391. "_prefab": {
  1392. "__id__": 75
  1393. },
  1394. "_lpos": {
  1395. "__type__": "cc.Vec3",
  1396. "x": 2.457,
  1397. "y": -92.752,
  1398. "z": 0
  1399. },
  1400. "_lrot": {
  1401. "__type__": "cc.Quat",
  1402. "x": 0,
  1403. "y": 0,
  1404. "z": 0,
  1405. "w": 1
  1406. },
  1407. "_lscale": {
  1408. "__type__": "cc.Vec3",
  1409. "x": 1,
  1410. "y": 1,
  1411. "z": 1
  1412. },
  1413. "_mobility": 0,
  1414. "_layer": 33554432,
  1415. "_euler": {
  1416. "__type__": "cc.Vec3",
  1417. "x": 0,
  1418. "y": 0,
  1419. "z": 0
  1420. },
  1421. "_id": ""
  1422. },
  1423. {
  1424. "__type__": "cc.Node",
  1425. "_name": "view",
  1426. "_objFlags": 0,
  1427. "__editorExtras__": {},
  1428. "_parent": {
  1429. "__id__": 54
  1430. },
  1431. "_children": [
  1432. {
  1433. "__id__": 56
  1434. }
  1435. ],
  1436. "_active": true,
  1437. "_components": [
  1438. {
  1439. "__id__": 62
  1440. },
  1441. {
  1442. "__id__": 64
  1443. },
  1444. {
  1445. "__id__": 66
  1446. }
  1447. ],
  1448. "_prefab": {
  1449. "__id__": 68
  1450. },
  1451. "_lpos": {
  1452. "__type__": "cc.Vec3",
  1453. "x": 0,
  1454. "y": 0,
  1455. "z": 0
  1456. },
  1457. "_lrot": {
  1458. "__type__": "cc.Quat",
  1459. "x": 0,
  1460. "y": 0,
  1461. "z": 0,
  1462. "w": 1
  1463. },
  1464. "_lscale": {
  1465. "__type__": "cc.Vec3",
  1466. "x": 1,
  1467. "y": 1,
  1468. "z": 1
  1469. },
  1470. "_mobility": 0,
  1471. "_layer": 33554432,
  1472. "_euler": {
  1473. "__type__": "cc.Vec3",
  1474. "x": 0,
  1475. "y": 0,
  1476. "z": 0
  1477. },
  1478. "_id": ""
  1479. },
  1480. {
  1481. "__type__": "cc.Node",
  1482. "_name": "content",
  1483. "_objFlags": 0,
  1484. "__editorExtras__": {},
  1485. "_parent": {
  1486. "__id__": 55
  1487. },
  1488. "_children": [],
  1489. "_active": true,
  1490. "_components": [
  1491. {
  1492. "__id__": 57
  1493. },
  1494. {
  1495. "__id__": 59
  1496. }
  1497. ],
  1498. "_prefab": {
  1499. "__id__": 61
  1500. },
  1501. "_lpos": {
  1502. "__type__": "cc.Vec3",
  1503. "x": 0,
  1504. "y": 400,
  1505. "z": 0
  1506. },
  1507. "_lrot": {
  1508. "__type__": "cc.Quat",
  1509. "x": 0,
  1510. "y": 0,
  1511. "z": 0,
  1512. "w": 1
  1513. },
  1514. "_lscale": {
  1515. "__type__": "cc.Vec3",
  1516. "x": 1,
  1517. "y": 1,
  1518. "z": 1
  1519. },
  1520. "_mobility": 0,
  1521. "_layer": 33554432,
  1522. "_euler": {
  1523. "__type__": "cc.Vec3",
  1524. "x": 0,
  1525. "y": 0,
  1526. "z": 0
  1527. },
  1528. "_id": ""
  1529. },
  1530. {
  1531. "__type__": "cc.UITransform",
  1532. "_name": "",
  1533. "_objFlags": 0,
  1534. "__editorExtras__": {},
  1535. "node": {
  1536. "__id__": 56
  1537. },
  1538. "_enabled": true,
  1539. "__prefab": {
  1540. "__id__": 58
  1541. },
  1542. "_contentSize": {
  1543. "__type__": "cc.Size",
  1544. "width": 550,
  1545. "height": 0
  1546. },
  1547. "_anchorPoint": {
  1548. "__type__": "cc.Vec2",
  1549. "x": 0.5,
  1550. "y": 1
  1551. },
  1552. "_id": ""
  1553. },
  1554. {
  1555. "__type__": "cc.CompPrefabInfo",
  1556. "fileId": "80I6VchS1I959q/iV281i6"
  1557. },
  1558. {
  1559. "__type__": "cc.Layout",
  1560. "_name": "",
  1561. "_objFlags": 0,
  1562. "__editorExtras__": {},
  1563. "node": {
  1564. "__id__": 56
  1565. },
  1566. "_enabled": true,
  1567. "__prefab": {
  1568. "__id__": 60
  1569. },
  1570. "_resizeMode": 1,
  1571. "_layoutType": 3,
  1572. "_cellSize": {
  1573. "__type__": "cc.Size",
  1574. "width": 40,
  1575. "height": 40
  1576. },
  1577. "_startAxis": 0,
  1578. "_paddingLeft": 0,
  1579. "_paddingRight": 0,
  1580. "_paddingTop": 0,
  1581. "_paddingBottom": 0,
  1582. "_spacingX": 0,
  1583. "_spacingY": 0,
  1584. "_verticalDirection": 1,
  1585. "_horizontalDirection": 0,
  1586. "_constraint": 0,
  1587. "_constraintNum": 2,
  1588. "_affectedByScale": false,
  1589. "_isAlign": false,
  1590. "_id": ""
  1591. },
  1592. {
  1593. "__type__": "cc.CompPrefabInfo",
  1594. "fileId": "0cYz6QV0VP2pveHocA2oBv"
  1595. },
  1596. {
  1597. "__type__": "cc.PrefabInfo",
  1598. "root": {
  1599. "__id__": 1
  1600. },
  1601. "asset": {
  1602. "__id__": 0
  1603. },
  1604. "fileId": "c7CkHOoKxJ/7rUiZNWb83s",
  1605. "instance": null,
  1606. "targetOverrides": null,
  1607. "nestedPrefabInstanceRoots": null
  1608. },
  1609. {
  1610. "__type__": "cc.UITransform",
  1611. "_name": "",
  1612. "_objFlags": 0,
  1613. "__editorExtras__": {},
  1614. "node": {
  1615. "__id__": 55
  1616. },
  1617. "_enabled": true,
  1618. "__prefab": {
  1619. "__id__": 63
  1620. },
  1621. "_contentSize": {
  1622. "__type__": "cc.Size",
  1623. "width": 550,
  1624. "height": 800
  1625. },
  1626. "_anchorPoint": {
  1627. "__type__": "cc.Vec2",
  1628. "x": 0.5,
  1629. "y": 0.5
  1630. },
  1631. "_id": ""
  1632. },
  1633. {
  1634. "__type__": "cc.CompPrefabInfo",
  1635. "fileId": "feY6bSJ0JMDbH+qhxQruxO"
  1636. },
  1637. {
  1638. "__type__": "cc.Mask",
  1639. "_name": "",
  1640. "_objFlags": 0,
  1641. "__editorExtras__": {},
  1642. "node": {
  1643. "__id__": 55
  1644. },
  1645. "_enabled": true,
  1646. "__prefab": {
  1647. "__id__": 65
  1648. },
  1649. "_type": 0,
  1650. "_inverted": false,
  1651. "_segments": 64,
  1652. "_alphaThreshold": 0.1,
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.CompPrefabInfo",
  1657. "fileId": "8ekn76kmJM7LqGcMAHYPtL"
  1658. },
  1659. {
  1660. "__type__": "cc.Graphics",
  1661. "_name": "",
  1662. "_objFlags": 0,
  1663. "__editorExtras__": {},
  1664. "node": {
  1665. "__id__": 55
  1666. },
  1667. "_enabled": true,
  1668. "__prefab": {
  1669. "__id__": 67
  1670. },
  1671. "_customMaterial": null,
  1672. "_srcBlendFactor": 2,
  1673. "_dstBlendFactor": 4,
  1674. "_color": {
  1675. "__type__": "cc.Color",
  1676. "r": 255,
  1677. "g": 255,
  1678. "b": 255,
  1679. "a": 255
  1680. },
  1681. "_lineWidth": 1,
  1682. "_strokeColor": {
  1683. "__type__": "cc.Color",
  1684. "r": 0,
  1685. "g": 0,
  1686. "b": 0,
  1687. "a": 255
  1688. },
  1689. "_lineJoin": 2,
  1690. "_lineCap": 0,
  1691. "_fillColor": {
  1692. "__type__": "cc.Color",
  1693. "r": 255,
  1694. "g": 255,
  1695. "b": 255,
  1696. "a": 0
  1697. },
  1698. "_miterLimit": 10,
  1699. "_id": ""
  1700. },
  1701. {
  1702. "__type__": "cc.CompPrefabInfo",
  1703. "fileId": "9ctMZdlFZD6b/rbU3ervRo"
  1704. },
  1705. {
  1706. "__type__": "cc.PrefabInfo",
  1707. "root": {
  1708. "__id__": 1
  1709. },
  1710. "asset": {
  1711. "__id__": 0
  1712. },
  1713. "fileId": "53Cw3O02tKBqsNvQnktDKw",
  1714. "instance": null,
  1715. "targetOverrides": null,
  1716. "nestedPrefabInstanceRoots": null
  1717. },
  1718. {
  1719. "__type__": "cc.UITransform",
  1720. "_name": "",
  1721. "_objFlags": 0,
  1722. "__editorExtras__": {},
  1723. "node": {
  1724. "__id__": 54
  1725. },
  1726. "_enabled": true,
  1727. "__prefab": {
  1728. "__id__": 70
  1729. },
  1730. "_contentSize": {
  1731. "__type__": "cc.Size",
  1732. "width": 550,
  1733. "height": 800
  1734. },
  1735. "_anchorPoint": {
  1736. "__type__": "cc.Vec2",
  1737. "x": 0.5,
  1738. "y": 0.5
  1739. },
  1740. "_id": ""
  1741. },
  1742. {
  1743. "__type__": "cc.CompPrefabInfo",
  1744. "fileId": "9aVh4GIUVDspZ+GGdGYWPO"
  1745. },
  1746. {
  1747. "__type__": "cc.Sprite",
  1748. "_name": "",
  1749. "_objFlags": 0,
  1750. "__editorExtras__": {},
  1751. "node": {
  1752. "__id__": 54
  1753. },
  1754. "_enabled": false,
  1755. "__prefab": {
  1756. "__id__": 72
  1757. },
  1758. "_customMaterial": null,
  1759. "_srcBlendFactor": 2,
  1760. "_dstBlendFactor": 4,
  1761. "_color": {
  1762. "__type__": "cc.Color",
  1763. "r": 255,
  1764. "g": 255,
  1765. "b": 255,
  1766. "a": 255
  1767. },
  1768. "_spriteFrame": {
  1769. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1770. "__expectedType__": "cc.SpriteFrame"
  1771. },
  1772. "_type": 1,
  1773. "_fillType": 0,
  1774. "_sizeMode": 0,
  1775. "_fillCenter": {
  1776. "__type__": "cc.Vec2",
  1777. "x": 0,
  1778. "y": 0
  1779. },
  1780. "_fillStart": 0,
  1781. "_fillRange": 0,
  1782. "_isTrimmedMode": true,
  1783. "_useGrayscale": false,
  1784. "_atlas": null,
  1785. "_id": ""
  1786. },
  1787. {
  1788. "__type__": "cc.CompPrefabInfo",
  1789. "fileId": "c4c2mJRzZJ6L8eNX2PyRou"
  1790. },
  1791. {
  1792. "__type__": "cc.ScrollView",
  1793. "_name": "",
  1794. "_objFlags": 0,
  1795. "__editorExtras__": {},
  1796. "node": {
  1797. "__id__": 54
  1798. },
  1799. "_enabled": true,
  1800. "__prefab": {
  1801. "__id__": 74
  1802. },
  1803. "bounceDuration": 0.23,
  1804. "brake": 0.75,
  1805. "elastic": true,
  1806. "inertia": true,
  1807. "horizontal": false,
  1808. "vertical": true,
  1809. "cancelInnerEvents": true,
  1810. "scrollEvents": [],
  1811. "_content": {
  1812. "__id__": 56
  1813. },
  1814. "_horizontalScrollBar": null,
  1815. "_verticalScrollBar": null,
  1816. "_id": ""
  1817. },
  1818. {
  1819. "__type__": "cc.CompPrefabInfo",
  1820. "fileId": "9fj13VsfVKkrs2Rqb2vZ87"
  1821. },
  1822. {
  1823. "__type__": "cc.PrefabInfo",
  1824. "root": {
  1825. "__id__": 1
  1826. },
  1827. "asset": {
  1828. "__id__": 0
  1829. },
  1830. "fileId": "89VCFw1h1ImJB2uA6B7RYF",
  1831. "instance": null,
  1832. "targetOverrides": null,
  1833. "nestedPrefabInstanceRoots": null
  1834. },
  1835. {
  1836. "__type__": "cc.Node",
  1837. "_name": "Label-001",
  1838. "_objFlags": 0,
  1839. "__editorExtras__": {},
  1840. "_parent": {
  1841. "__id__": 12
  1842. },
  1843. "_children": [],
  1844. "_active": true,
  1845. "_components": [
  1846. {
  1847. "__id__": 77
  1848. },
  1849. {
  1850. "__id__": 79
  1851. }
  1852. ],
  1853. "_prefab": {
  1854. "__id__": 81
  1855. },
  1856. "_lpos": {
  1857. "__type__": "cc.Vec3",
  1858. "x": 0,
  1859. "y": 493.06,
  1860. "z": 0
  1861. },
  1862. "_lrot": {
  1863. "__type__": "cc.Quat",
  1864. "x": 0,
  1865. "y": 0,
  1866. "z": 0,
  1867. "w": 1
  1868. },
  1869. "_lscale": {
  1870. "__type__": "cc.Vec3",
  1871. "x": 1,
  1872. "y": 1,
  1873. "z": 1
  1874. },
  1875. "_mobility": 0,
  1876. "_layer": 33554432,
  1877. "_euler": {
  1878. "__type__": "cc.Vec3",
  1879. "x": 0,
  1880. "y": 0,
  1881. "z": 0
  1882. },
  1883. "_id": ""
  1884. },
  1885. {
  1886. "__type__": "cc.UITransform",
  1887. "_name": "",
  1888. "_objFlags": 0,
  1889. "__editorExtras__": {},
  1890. "node": {
  1891. "__id__": 76
  1892. },
  1893. "_enabled": true,
  1894. "__prefab": {
  1895. "__id__": 78
  1896. },
  1897. "_contentSize": {
  1898. "__type__": "cc.Size",
  1899. "width": 397.33984375,
  1900. "height": 54.4
  1901. },
  1902. "_anchorPoint": {
  1903. "__type__": "cc.Vec2",
  1904. "x": 0.5,
  1905. "y": 0.5
  1906. },
  1907. "_id": ""
  1908. },
  1909. {
  1910. "__type__": "cc.CompPrefabInfo",
  1911. "fileId": "3a+h8plQxH8r7GsLQEqIu1"
  1912. },
  1913. {
  1914. "__type__": "cc.Label",
  1915. "_name": "",
  1916. "_objFlags": 0,
  1917. "__editorExtras__": {},
  1918. "node": {
  1919. "__id__": 76
  1920. },
  1921. "_enabled": true,
  1922. "__prefab": {
  1923. "__id__": 80
  1924. },
  1925. "_customMaterial": null,
  1926. "_srcBlendFactor": 2,
  1927. "_dstBlendFactor": 4,
  1928. "_color": {
  1929. "__type__": "cc.Color",
  1930. "r": 0,
  1931. "g": 0,
  1932. "b": 0,
  1933. "a": 255
  1934. },
  1935. "_string": "注意:点击X后游戏将应用次页面修改的数据",
  1936. "_horizontalAlign": 1,
  1937. "_verticalAlign": 1,
  1938. "_actualFontSize": 20,
  1939. "_fontSize": 20,
  1940. "_fontFamily": "Arial",
  1941. "_lineHeight": 40,
  1942. "_overflow": 0,
  1943. "_enableWrapText": true,
  1944. "_font": null,
  1945. "_isSystemFontUsed": true,
  1946. "_spacingX": 0,
  1947. "_isItalic": false,
  1948. "_isBold": true,
  1949. "_isUnderline": false,
  1950. "_underlineHeight": 2,
  1951. "_cacheMode": 0,
  1952. "_enableOutline": true,
  1953. "_outlineColor": {
  1954. "__type__": "cc.Color",
  1955. "r": 255,
  1956. "g": 0,
  1957. "b": 0,
  1958. "a": 255
  1959. },
  1960. "_outlineWidth": 2,
  1961. "_enableShadow": false,
  1962. "_shadowColor": {
  1963. "__type__": "cc.Color",
  1964. "r": 0,
  1965. "g": 0,
  1966. "b": 0,
  1967. "a": 255
  1968. },
  1969. "_shadowOffset": {
  1970. "__type__": "cc.Vec2",
  1971. "x": 2,
  1972. "y": 2
  1973. },
  1974. "_shadowBlur": 2,
  1975. "_id": ""
  1976. },
  1977. {
  1978. "__type__": "cc.CompPrefabInfo",
  1979. "fileId": "803H1bU/FDzLBGxzrmYqaE"
  1980. },
  1981. {
  1982. "__type__": "cc.PrefabInfo",
  1983. "root": {
  1984. "__id__": 1
  1985. },
  1986. "asset": {
  1987. "__id__": 0
  1988. },
  1989. "fileId": "85kGz8EwZO1q2spXvYPWPD",
  1990. "instance": null,
  1991. "targetOverrides": null,
  1992. "nestedPrefabInstanceRoots": null
  1993. },
  1994. {
  1995. "__type__": "cc.UITransform",
  1996. "_name": "",
  1997. "_objFlags": 0,
  1998. "__editorExtras__": {},
  1999. "node": {
  2000. "__id__": 12
  2001. },
  2002. "_enabled": true,
  2003. "__prefab": {
  2004. "__id__": 83
  2005. },
  2006. "_contentSize": {
  2007. "__type__": "cc.Size",
  2008. "width": 680,
  2009. "height": 1200
  2010. },
  2011. "_anchorPoint": {
  2012. "__type__": "cc.Vec2",
  2013. "x": 0.5,
  2014. "y": 0.5
  2015. },
  2016. "_id": ""
  2017. },
  2018. {
  2019. "__type__": "cc.CompPrefabInfo",
  2020. "fileId": "d4e4tsISpMWqWBcgBsA6j4"
  2021. },
  2022. {
  2023. "__type__": "cc.Sprite",
  2024. "_name": "",
  2025. "_objFlags": 0,
  2026. "__editorExtras__": {},
  2027. "node": {
  2028. "__id__": 12
  2029. },
  2030. "_enabled": true,
  2031. "__prefab": {
  2032. "__id__": 85
  2033. },
  2034. "_customMaterial": null,
  2035. "_srcBlendFactor": 2,
  2036. "_dstBlendFactor": 4,
  2037. "_color": {
  2038. "__type__": "cc.Color",
  2039. "r": 255,
  2040. "g": 255,
  2041. "b": 255,
  2042. "a": 255
  2043. },
  2044. "_spriteFrame": {
  2045. "__uuid__": "76822d66-1374-47bf-abe0-0939ddf166f0@f9941",
  2046. "__expectedType__": "cc.SpriteFrame"
  2047. },
  2048. "_type": 0,
  2049. "_fillType": 0,
  2050. "_sizeMode": 0,
  2051. "_fillCenter": {
  2052. "__type__": "cc.Vec2",
  2053. "x": 0,
  2054. "y": 0
  2055. },
  2056. "_fillStart": 0,
  2057. "_fillRange": 0,
  2058. "_isTrimmedMode": true,
  2059. "_useGrayscale": false,
  2060. "_atlas": null,
  2061. "_id": ""
  2062. },
  2063. {
  2064. "__type__": "cc.CompPrefabInfo",
  2065. "fileId": "ce9H0HDo5ESqGD3jQ1i3VH"
  2066. },
  2067. {
  2068. "__type__": "cc.PrefabInfo",
  2069. "root": {
  2070. "__id__": 1
  2071. },
  2072. "asset": {
  2073. "__id__": 0
  2074. },
  2075. "fileId": "656xj+W3ZOy6vbILY5vYv+",
  2076. "instance": null,
  2077. "targetOverrides": null,
  2078. "nestedPrefabInstanceRoots": null
  2079. },
  2080. {
  2081. "__type__": "cc.UITransform",
  2082. "_name": "",
  2083. "_objFlags": 0,
  2084. "__editorExtras__": {},
  2085. "node": {
  2086. "__id__": 1
  2087. },
  2088. "_enabled": true,
  2089. "__prefab": {
  2090. "__id__": 88
  2091. },
  2092. "_contentSize": {
  2093. "__type__": "cc.Size",
  2094. "width": 720,
  2095. "height": 1280
  2096. },
  2097. "_anchorPoint": {
  2098. "__type__": "cc.Vec2",
  2099. "x": 0.5,
  2100. "y": 0.5
  2101. },
  2102. "_id": ""
  2103. },
  2104. {
  2105. "__type__": "cc.CompPrefabInfo",
  2106. "fileId": "ebZNBFmQ9KlJgUaxFlzg+h"
  2107. },
  2108. {
  2109. "__type__": "cc.Widget",
  2110. "_name": "",
  2111. "_objFlags": 0,
  2112. "__editorExtras__": {},
  2113. "node": {
  2114. "__id__": 1
  2115. },
  2116. "_enabled": true,
  2117. "__prefab": {
  2118. "__id__": 90
  2119. },
  2120. "_alignFlags": 45,
  2121. "_target": null,
  2122. "_left": 0,
  2123. "_right": 0,
  2124. "_top": 0,
  2125. "_bottom": 0,
  2126. "_horizontalCenter": 0,
  2127. "_verticalCenter": 0,
  2128. "_isAbsLeft": true,
  2129. "_isAbsRight": true,
  2130. "_isAbsTop": true,
  2131. "_isAbsBottom": true,
  2132. "_isAbsHorizontalCenter": true,
  2133. "_isAbsVerticalCenter": true,
  2134. "_originalWidth": 100,
  2135. "_originalHeight": 100,
  2136. "_alignMode": 2,
  2137. "_lockFlags": 0,
  2138. "_id": ""
  2139. },
  2140. {
  2141. "__type__": "cc.CompPrefabInfo",
  2142. "fileId": "6ewvkSnqlKl5RwhgedXsyS"
  2143. },
  2144. {
  2145. "__type__": "f2e1dLq3gtKFLxHcTS65kmr",
  2146. "_name": "",
  2147. "_objFlags": 0,
  2148. "__editorExtras__": {},
  2149. "node": {
  2150. "__id__": 1
  2151. },
  2152. "_enabled": true,
  2153. "__prefab": {
  2154. "__id__": 92
  2155. },
  2156. "item_level": {
  2157. "__uuid__": "44e23e88-b848-4db3-ab82-9c6e7ef8e75f",
  2158. "__expectedType__": "cc.Prefab"
  2159. },
  2160. "editBox_time": {
  2161. "__id__": 36
  2162. },
  2163. "scrollview": {
  2164. "__id__": 73
  2165. },
  2166. "_id": ""
  2167. },
  2168. {
  2169. "__type__": "cc.CompPrefabInfo",
  2170. "fileId": "ddWhRk3lZDDaVeH/3ZqWg0"
  2171. },
  2172. {
  2173. "__type__": "cc.PrefabInfo",
  2174. "root": {
  2175. "__id__": 1
  2176. },
  2177. "asset": {
  2178. "__id__": 0
  2179. },
  2180. "fileId": "631GiILNlK0bCLktmb+PjF",
  2181. "instance": null,
  2182. "targetOverrides": null
  2183. }
  2184. ]