edit_event_group_item.prefab 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "edit_event_group_item",
  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": "edit_event_group_item",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 8
  26. },
  27. {
  28. "__id__": 28
  29. },
  30. {
  31. "__id__": 34
  32. },
  33. {
  34. "__id__": 40
  35. },
  36. {
  37. "__id__": 56
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 72
  44. },
  45. {
  46. "__id__": 74
  47. },
  48. {
  49. "__id__": 76
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 78
  54. },
  55. "_lpos": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0
  60. },
  61. "_lrot": {
  62. "__type__": "cc.Quat",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0,
  66. "w": 1
  67. },
  68. "_lscale": {
  69. "__type__": "cc.Vec3",
  70. "x": 1,
  71. "y": 1,
  72. "z": 1
  73. },
  74. "_mobility": 0,
  75. "_layer": 33554432,
  76. "_euler": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "Label",
  87. "_objFlags": 0,
  88. "__editorExtras__": {},
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 5
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 7
  104. },
  105. "_lpos": {
  106. "__type__": "cc.Vec3",
  107. "x": -318.85,
  108. "y": 0,
  109. "z": 0
  110. },
  111. "_lrot": {
  112. "__type__": "cc.Quat",
  113. "x": 0,
  114. "y": 0,
  115. "z": 0,
  116. "w": 1
  117. },
  118. "_lscale": {
  119. "__type__": "cc.Vec3",
  120. "x": 1,
  121. "y": 1,
  122. "z": 1
  123. },
  124. "_mobility": 0,
  125. "_layer": 33554432,
  126. "_euler": {
  127. "__type__": "cc.Vec3",
  128. "x": 0,
  129. "y": 0,
  130. "z": 0
  131. },
  132. "_id": ""
  133. },
  134. {
  135. "__type__": "cc.UITransform",
  136. "_name": "",
  137. "_objFlags": 0,
  138. "__editorExtras__": {},
  139. "node": {
  140. "__id__": 2
  141. },
  142. "_enabled": true,
  143. "__prefab": {
  144. "__id__": 4
  145. },
  146. "_contentSize": {
  147. "__type__": "cc.Size",
  148. "width": 120,
  149. "height": 50.4
  150. },
  151. "_anchorPoint": {
  152. "__type__": "cc.Vec2",
  153. "x": 0.5,
  154. "y": 0.5
  155. },
  156. "_id": ""
  157. },
  158. {
  159. "__type__": "cc.CompPrefabInfo",
  160. "fileId": "3cKzuRECBEuLj7gjxkZEsK"
  161. },
  162. {
  163. "__type__": "cc.Label",
  164. "_name": "",
  165. "_objFlags": 0,
  166. "__editorExtras__": {},
  167. "node": {
  168. "__id__": 2
  169. },
  170. "_enabled": true,
  171. "__prefab": {
  172. "__id__": 6
  173. },
  174. "_customMaterial": null,
  175. "_srcBlendFactor": 2,
  176. "_dstBlendFactor": 4,
  177. "_color": {
  178. "__type__": "cc.Color",
  179. "r": 0,
  180. "g": 0,
  181. "b": 0,
  182. "a": 255
  183. },
  184. "_string": "延时时间",
  185. "_horizontalAlign": 1,
  186. "_verticalAlign": 1,
  187. "_actualFontSize": 30,
  188. "_fontSize": 30,
  189. "_fontFamily": "Arial",
  190. "_lineHeight": 40,
  191. "_overflow": 0,
  192. "_enableWrapText": true,
  193. "_font": null,
  194. "_isSystemFontUsed": true,
  195. "_spacingX": 0,
  196. "_isItalic": false,
  197. "_isBold": true,
  198. "_isUnderline": false,
  199. "_underlineHeight": 2,
  200. "_cacheMode": 0,
  201. "_id": ""
  202. },
  203. {
  204. "__type__": "cc.CompPrefabInfo",
  205. "fileId": "b66RbGqo1Da4xkbRkPwxhO"
  206. },
  207. {
  208. "__type__": "cc.PrefabInfo",
  209. "root": {
  210. "__id__": 1
  211. },
  212. "asset": {
  213. "__id__": 0
  214. },
  215. "fileId": "8bG1lHtCFHW5wYK2Kz1ije",
  216. "instance": null,
  217. "targetOverrides": null,
  218. "nestedPrefabInstanceRoots": null
  219. },
  220. {
  221. "__type__": "cc.Node",
  222. "_name": "editBox_delay_time",
  223. "_objFlags": 0,
  224. "__editorExtras__": {},
  225. "_parent": {
  226. "__id__": 1
  227. },
  228. "_children": [
  229. {
  230. "__id__": 9
  231. },
  232. {
  233. "__id__": 15
  234. }
  235. ],
  236. "_active": true,
  237. "_components": [
  238. {
  239. "__id__": 21
  240. },
  241. {
  242. "__id__": 23
  243. },
  244. {
  245. "__id__": 25
  246. }
  247. ],
  248. "_prefab": {
  249. "__id__": 27
  250. },
  251. "_lpos": {
  252. "__type__": "cc.Vec3",
  253. "x": -204.88,
  254. "y": 0,
  255. "z": 0
  256. },
  257. "_lrot": {
  258. "__type__": "cc.Quat",
  259. "x": 0,
  260. "y": 0,
  261. "z": 0,
  262. "w": 1
  263. },
  264. "_lscale": {
  265. "__type__": "cc.Vec3",
  266. "x": 1,
  267. "y": 1,
  268. "z": 1
  269. },
  270. "_mobility": 0,
  271. "_layer": 33554432,
  272. "_euler": {
  273. "__type__": "cc.Vec3",
  274. "x": 0,
  275. "y": 0,
  276. "z": 0
  277. },
  278. "_id": ""
  279. },
  280. {
  281. "__type__": "cc.Node",
  282. "_name": "TEXT_LABEL",
  283. "_objFlags": 0,
  284. "__editorExtras__": {},
  285. "_parent": {
  286. "__id__": 8
  287. },
  288. "_children": [],
  289. "_active": false,
  290. "_components": [
  291. {
  292. "__id__": 10
  293. },
  294. {
  295. "__id__": 12
  296. }
  297. ],
  298. "_prefab": {
  299. "__id__": 14
  300. },
  301. "_lpos": {
  302. "__type__": "cc.Vec3",
  303. "x": -43,
  304. "y": 30,
  305. "z": 0
  306. },
  307. "_lrot": {
  308. "__type__": "cc.Quat",
  309. "x": 0,
  310. "y": 0,
  311. "z": 0,
  312. "w": 1
  313. },
  314. "_lscale": {
  315. "__type__": "cc.Vec3",
  316. "x": 1,
  317. "y": 1,
  318. "z": 1
  319. },
  320. "_mobility": 0,
  321. "_layer": 33554432,
  322. "_euler": {
  323. "__type__": "cc.Vec3",
  324. "x": 0,
  325. "y": 0,
  326. "z": 0
  327. },
  328. "_id": ""
  329. },
  330. {
  331. "__type__": "cc.UITransform",
  332. "_name": "",
  333. "_objFlags": 0,
  334. "__editorExtras__": {},
  335. "node": {
  336. "__id__": 9
  337. },
  338. "_enabled": true,
  339. "__prefab": {
  340. "__id__": 11
  341. },
  342. "_contentSize": {
  343. "__type__": "cc.Size",
  344. "width": 88,
  345. "height": 60
  346. },
  347. "_anchorPoint": {
  348. "__type__": "cc.Vec2",
  349. "x": 0,
  350. "y": 1
  351. },
  352. "_id": ""
  353. },
  354. {
  355. "__type__": "cc.CompPrefabInfo",
  356. "fileId": "03HcWg6FJB4rhnlX9hcKqE"
  357. },
  358. {
  359. "__type__": "cc.Label",
  360. "_name": "",
  361. "_objFlags": 0,
  362. "__editorExtras__": {},
  363. "node": {
  364. "__id__": 9
  365. },
  366. "_enabled": true,
  367. "__prefab": {
  368. "__id__": 13
  369. },
  370. "_customMaterial": null,
  371. "_srcBlendFactor": 2,
  372. "_dstBlendFactor": 4,
  373. "_color": {
  374. "__type__": "cc.Color",
  375. "r": 255,
  376. "g": 255,
  377. "b": 255,
  378. "a": 255
  379. },
  380. "_string": "",
  381. "_horizontalAlign": 0,
  382. "_verticalAlign": 1,
  383. "_actualFontSize": 30,
  384. "_fontSize": 30,
  385. "_fontFamily": "Arial",
  386. "_lineHeight": 40,
  387. "_overflow": 1,
  388. "_enableWrapText": false,
  389. "_font": null,
  390. "_isSystemFontUsed": true,
  391. "_spacingX": 0,
  392. "_isItalic": false,
  393. "_isBold": false,
  394. "_isUnderline": false,
  395. "_underlineHeight": 2,
  396. "_cacheMode": 0,
  397. "_id": ""
  398. },
  399. {
  400. "__type__": "cc.CompPrefabInfo",
  401. "fileId": "1052kszpdHf5+UABzts+5n"
  402. },
  403. {
  404. "__type__": "cc.PrefabInfo",
  405. "root": {
  406. "__id__": 1
  407. },
  408. "asset": {
  409. "__id__": 0
  410. },
  411. "fileId": "1bnhn67w5HKIa3S8MTNp0Q",
  412. "instance": null,
  413. "targetOverrides": null,
  414. "nestedPrefabInstanceRoots": null
  415. },
  416. {
  417. "__type__": "cc.Node",
  418. "_name": "PLACEHOLDER_LABEL",
  419. "_objFlags": 0,
  420. "__editorExtras__": {},
  421. "_parent": {
  422. "__id__": 8
  423. },
  424. "_children": [],
  425. "_active": true,
  426. "_components": [
  427. {
  428. "__id__": 16
  429. },
  430. {
  431. "__id__": 18
  432. }
  433. ],
  434. "_prefab": {
  435. "__id__": 20
  436. },
  437. "_lpos": {
  438. "__type__": "cc.Vec3",
  439. "x": -43,
  440. "y": 30,
  441. "z": 0
  442. },
  443. "_lrot": {
  444. "__type__": "cc.Quat",
  445. "x": 0,
  446. "y": 0,
  447. "z": 0,
  448. "w": 1
  449. },
  450. "_lscale": {
  451. "__type__": "cc.Vec3",
  452. "x": 1,
  453. "y": 1,
  454. "z": 1
  455. },
  456. "_mobility": 0,
  457. "_layer": 33554432,
  458. "_euler": {
  459. "__type__": "cc.Vec3",
  460. "x": 0,
  461. "y": 0,
  462. "z": 0
  463. },
  464. "_id": ""
  465. },
  466. {
  467. "__type__": "cc.UITransform",
  468. "_name": "",
  469. "_objFlags": 0,
  470. "__editorExtras__": {},
  471. "node": {
  472. "__id__": 15
  473. },
  474. "_enabled": true,
  475. "__prefab": {
  476. "__id__": 17
  477. },
  478. "_contentSize": {
  479. "__type__": "cc.Size",
  480. "width": 88,
  481. "height": 60
  482. },
  483. "_anchorPoint": {
  484. "__type__": "cc.Vec2",
  485. "x": 0,
  486. "y": 1
  487. },
  488. "_id": ""
  489. },
  490. {
  491. "__type__": "cc.CompPrefabInfo",
  492. "fileId": "89t1fhoBlDaaZxUPHDtpSM"
  493. },
  494. {
  495. "__type__": "cc.Label",
  496. "_name": "",
  497. "_objFlags": 0,
  498. "__editorExtras__": {},
  499. "node": {
  500. "__id__": 15
  501. },
  502. "_enabled": true,
  503. "__prefab": {
  504. "__id__": 19
  505. },
  506. "_customMaterial": null,
  507. "_srcBlendFactor": 2,
  508. "_dstBlendFactor": 4,
  509. "_color": {
  510. "__type__": "cc.Color",
  511. "r": 187,
  512. "g": 187,
  513. "b": 187,
  514. "a": 255
  515. },
  516. "_string": "输入时间",
  517. "_horizontalAlign": 0,
  518. "_verticalAlign": 1,
  519. "_actualFontSize": 20,
  520. "_fontSize": 20,
  521. "_fontFamily": "Arial",
  522. "_lineHeight": 60,
  523. "_overflow": 1,
  524. "_enableWrapText": false,
  525. "_font": null,
  526. "_isSystemFontUsed": true,
  527. "_spacingX": 0,
  528. "_isItalic": false,
  529. "_isBold": false,
  530. "_isUnderline": false,
  531. "_underlineHeight": 2,
  532. "_cacheMode": 0,
  533. "_id": ""
  534. },
  535. {
  536. "__type__": "cc.CompPrefabInfo",
  537. "fileId": "48q/ef3hpBGI070wqIvHmU"
  538. },
  539. {
  540. "__type__": "cc.PrefabInfo",
  541. "root": {
  542. "__id__": 1
  543. },
  544. "asset": {
  545. "__id__": 0
  546. },
  547. "fileId": "4c/dEiH/pB2p+gSriVxl2R",
  548. "instance": null,
  549. "targetOverrides": null,
  550. "nestedPrefabInstanceRoots": null
  551. },
  552. {
  553. "__type__": "cc.UITransform",
  554. "_name": "",
  555. "_objFlags": 0,
  556. "__editorExtras__": {},
  557. "node": {
  558. "__id__": 8
  559. },
  560. "_enabled": true,
  561. "__prefab": {
  562. "__id__": 22
  563. },
  564. "_contentSize": {
  565. "__type__": "cc.Size",
  566. "width": 90,
  567. "height": 60
  568. },
  569. "_anchorPoint": {
  570. "__type__": "cc.Vec2",
  571. "x": 0.5,
  572. "y": 0.5
  573. },
  574. "_id": ""
  575. },
  576. {
  577. "__type__": "cc.CompPrefabInfo",
  578. "fileId": "39LSxOdiBPwpdCCeJBGObD"
  579. },
  580. {
  581. "__type__": "cc.Sprite",
  582. "_name": "",
  583. "_objFlags": 0,
  584. "__editorExtras__": {},
  585. "node": {
  586. "__id__": 8
  587. },
  588. "_enabled": true,
  589. "__prefab": {
  590. "__id__": 24
  591. },
  592. "_customMaterial": null,
  593. "_srcBlendFactor": 2,
  594. "_dstBlendFactor": 4,
  595. "_color": {
  596. "__type__": "cc.Color",
  597. "r": 255,
  598. "g": 255,
  599. "b": 255,
  600. "a": 255
  601. },
  602. "_spriteFrame": {
  603. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  604. "__expectedType__": "cc.SpriteFrame"
  605. },
  606. "_type": 1,
  607. "_fillType": 0,
  608. "_sizeMode": 0,
  609. "_fillCenter": {
  610. "__type__": "cc.Vec2",
  611. "x": 0,
  612. "y": 0
  613. },
  614. "_fillStart": 0,
  615. "_fillRange": 0,
  616. "_isTrimmedMode": true,
  617. "_useGrayscale": false,
  618. "_atlas": null,
  619. "_id": ""
  620. },
  621. {
  622. "__type__": "cc.CompPrefabInfo",
  623. "fileId": "0b2vH2eh1HloqcQXH6+BPS"
  624. },
  625. {
  626. "__type__": "cc.EditBox",
  627. "_name": "",
  628. "_objFlags": 0,
  629. "__editorExtras__": {},
  630. "node": {
  631. "__id__": 8
  632. },
  633. "_enabled": true,
  634. "__prefab": {
  635. "__id__": 26
  636. },
  637. "editingDidBegan": [],
  638. "textChanged": [],
  639. "editingDidEnded": [],
  640. "editingReturn": [],
  641. "_textLabel": {
  642. "__id__": 12
  643. },
  644. "_placeholderLabel": {
  645. "__id__": 18
  646. },
  647. "_returnType": 0,
  648. "_string": "",
  649. "_tabIndex": 0,
  650. "_backgroundImage": {
  651. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  652. "__expectedType__": "cc.SpriteFrame"
  653. },
  654. "_inputFlag": 5,
  655. "_inputMode": 6,
  656. "_maxLength": 8,
  657. "_id": ""
  658. },
  659. {
  660. "__type__": "cc.CompPrefabInfo",
  661. "fileId": "8c83qU+jVG0p7GmSthMeon"
  662. },
  663. {
  664. "__type__": "cc.PrefabInfo",
  665. "root": {
  666. "__id__": 1
  667. },
  668. "asset": {
  669. "__id__": 0
  670. },
  671. "fileId": "9diT9PqD1JFaAD+pBm1G/z",
  672. "instance": null,
  673. "targetOverrides": null,
  674. "nestedPrefabInstanceRoots": null
  675. },
  676. {
  677. "__type__": "cc.Node",
  678. "_name": "lab_event_id",
  679. "_objFlags": 0,
  680. "__editorExtras__": {},
  681. "_parent": {
  682. "__id__": 1
  683. },
  684. "_children": [],
  685. "_active": true,
  686. "_components": [
  687. {
  688. "__id__": 29
  689. },
  690. {
  691. "__id__": 31
  692. }
  693. ],
  694. "_prefab": {
  695. "__id__": 33
  696. },
  697. "_lpos": {
  698. "__type__": "cc.Vec3",
  699. "x": 90.529,
  700. "y": 0,
  701. "z": 0
  702. },
  703. "_lrot": {
  704. "__type__": "cc.Quat",
  705. "x": 0,
  706. "y": 0,
  707. "z": 0,
  708. "w": 1
  709. },
  710. "_lscale": {
  711. "__type__": "cc.Vec3",
  712. "x": 1,
  713. "y": 1,
  714. "z": 1
  715. },
  716. "_mobility": 0,
  717. "_layer": 33554432,
  718. "_euler": {
  719. "__type__": "cc.Vec3",
  720. "x": 0,
  721. "y": 0,
  722. "z": 0
  723. },
  724. "_id": ""
  725. },
  726. {
  727. "__type__": "cc.UITransform",
  728. "_name": "",
  729. "_objFlags": 0,
  730. "__editorExtras__": {},
  731. "node": {
  732. "__id__": 28
  733. },
  734. "_enabled": true,
  735. "__prefab": {
  736. "__id__": 30
  737. },
  738. "_contentSize": {
  739. "__type__": "cc.Size",
  740. "width": 470,
  741. "height": 50.4
  742. },
  743. "_anchorPoint": {
  744. "__type__": "cc.Vec2",
  745. "x": 0.5,
  746. "y": 0.5
  747. },
  748. "_id": ""
  749. },
  750. {
  751. "__type__": "cc.CompPrefabInfo",
  752. "fileId": "c5hbasKd5AZpRMHsZ4nFvK"
  753. },
  754. {
  755. "__type__": "cc.Label",
  756. "_name": "",
  757. "_objFlags": 0,
  758. "__editorExtras__": {},
  759. "node": {
  760. "__id__": 28
  761. },
  762. "_enabled": true,
  763. "__prefab": {
  764. "__id__": 32
  765. },
  766. "_customMaterial": null,
  767. "_srcBlendFactor": 2,
  768. "_dstBlendFactor": 4,
  769. "_color": {
  770. "__type__": "cc.Color",
  771. "r": 0,
  772. "g": 0,
  773. "b": 0,
  774. "a": 255
  775. },
  776. "_string": "事件id",
  777. "_horizontalAlign": 0,
  778. "_verticalAlign": 1,
  779. "_actualFontSize": 31,
  780. "_fontSize": 30,
  781. "_fontFamily": "Arial",
  782. "_lineHeight": 40,
  783. "_overflow": 2,
  784. "_enableWrapText": true,
  785. "_font": null,
  786. "_isSystemFontUsed": true,
  787. "_spacingX": 0,
  788. "_isItalic": false,
  789. "_isBold": true,
  790. "_isUnderline": false,
  791. "_underlineHeight": 2,
  792. "_cacheMode": 0,
  793. "_id": ""
  794. },
  795. {
  796. "__type__": "cc.CompPrefabInfo",
  797. "fileId": "51D98bct9CwpxB78RorNxU"
  798. },
  799. {
  800. "__type__": "cc.PrefabInfo",
  801. "root": {
  802. "__id__": 1
  803. },
  804. "asset": {
  805. "__id__": 0
  806. },
  807. "fileId": "59mfsaVQlA/7Vb+SoGR7IO",
  808. "instance": null,
  809. "targetOverrides": null,
  810. "nestedPrefabInstanceRoots": null
  811. },
  812. {
  813. "__type__": "cc.Node",
  814. "_name": "btn_delete",
  815. "_objFlags": 0,
  816. "__editorExtras__": {},
  817. "_parent": {
  818. "__id__": 1
  819. },
  820. "_children": [],
  821. "_active": true,
  822. "_components": [
  823. {
  824. "__id__": 35
  825. },
  826. {
  827. "__id__": 37
  828. }
  829. ],
  830. "_prefab": {
  831. "__id__": 39
  832. },
  833. "_lpos": {
  834. "__type__": "cc.Vec3",
  835. "x": -415,
  836. "y": 0,
  837. "z": 0
  838. },
  839. "_lrot": {
  840. "__type__": "cc.Quat",
  841. "x": 0,
  842. "y": 0,
  843. "z": 0,
  844. "w": 1
  845. },
  846. "_lscale": {
  847. "__type__": "cc.Vec3",
  848. "x": 1,
  849. "y": 1,
  850. "z": 1
  851. },
  852. "_mobility": 0,
  853. "_layer": 33554432,
  854. "_euler": {
  855. "__type__": "cc.Vec3",
  856. "x": 0,
  857. "y": 0,
  858. "z": 0
  859. },
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.UITransform",
  864. "_name": "",
  865. "_objFlags": 0,
  866. "__editorExtras__": {},
  867. "node": {
  868. "__id__": 34
  869. },
  870. "_enabled": true,
  871. "__prefab": {
  872. "__id__": 36
  873. },
  874. "_contentSize": {
  875. "__type__": "cc.Size",
  876. "width": 50,
  877. "height": 50
  878. },
  879. "_anchorPoint": {
  880. "__type__": "cc.Vec2",
  881. "x": 0.5,
  882. "y": 0.5
  883. },
  884. "_id": ""
  885. },
  886. {
  887. "__type__": "cc.CompPrefabInfo",
  888. "fileId": "13iSRU06FLh5Hl2xbnw5I/"
  889. },
  890. {
  891. "__type__": "cc.Sprite",
  892. "_name": "",
  893. "_objFlags": 0,
  894. "__editorExtras__": {},
  895. "node": {
  896. "__id__": 34
  897. },
  898. "_enabled": true,
  899. "__prefab": {
  900. "__id__": 38
  901. },
  902. "_customMaterial": null,
  903. "_srcBlendFactor": 2,
  904. "_dstBlendFactor": 4,
  905. "_color": {
  906. "__type__": "cc.Color",
  907. "r": 255,
  908. "g": 255,
  909. "b": 255,
  910. "a": 255
  911. },
  912. "_spriteFrame": {
  913. "__uuid__": "64c1f2bf-dc82-4530-bd30-7879d5a3e03e@f9941",
  914. "__expectedType__": "cc.SpriteFrame"
  915. },
  916. "_type": 0,
  917. "_fillType": 0,
  918. "_sizeMode": 0,
  919. "_fillCenter": {
  920. "__type__": "cc.Vec2",
  921. "x": 0,
  922. "y": 0
  923. },
  924. "_fillStart": 0,
  925. "_fillRange": 0,
  926. "_isTrimmedMode": true,
  927. "_useGrayscale": false,
  928. "_atlas": null,
  929. "_id": ""
  930. },
  931. {
  932. "__type__": "cc.CompPrefabInfo",
  933. "fileId": "8a4CGc8WhETIRi3rTV8qgg"
  934. },
  935. {
  936. "__type__": "cc.PrefabInfo",
  937. "root": {
  938. "__id__": 1
  939. },
  940. "asset": {
  941. "__id__": 0
  942. },
  943. "fileId": "7dM8tinw1Ac7ma0Oz/f3eB",
  944. "instance": null,
  945. "targetOverrides": null,
  946. "nestedPrefabInstanceRoots": null
  947. },
  948. {
  949. "__type__": "cc.Node",
  950. "_name": "btn_up",
  951. "_objFlags": 0,
  952. "__editorExtras__": {},
  953. "_parent": {
  954. "__id__": 1
  955. },
  956. "_children": [
  957. {
  958. "__id__": 41
  959. }
  960. ],
  961. "_active": true,
  962. "_components": [
  963. {
  964. "__id__": 47
  965. },
  966. {
  967. "__id__": 49
  968. },
  969. {
  970. "__id__": 51
  971. },
  972. {
  973. "__id__": 53
  974. }
  975. ],
  976. "_prefab": {
  977. "__id__": 55
  978. },
  979. "_lpos": {
  980. "__type__": "cc.Vec3",
  981. "x": 362,
  982. "y": 0,
  983. "z": 0
  984. },
  985. "_lrot": {
  986. "__type__": "cc.Quat",
  987. "x": 0,
  988. "y": 0,
  989. "z": 0,
  990. "w": 1
  991. },
  992. "_lscale": {
  993. "__type__": "cc.Vec3",
  994. "x": 1,
  995. "y": 1,
  996. "z": 1
  997. },
  998. "_mobility": 0,
  999. "_layer": 33554432,
  1000. "_euler": {
  1001. "__type__": "cc.Vec3",
  1002. "x": 0,
  1003. "y": 0,
  1004. "z": 0
  1005. },
  1006. "_id": ""
  1007. },
  1008. {
  1009. "__type__": "cc.Node",
  1010. "_name": "Label",
  1011. "_objFlags": 512,
  1012. "__editorExtras__": {},
  1013. "_parent": {
  1014. "__id__": 40
  1015. },
  1016. "_children": [],
  1017. "_active": true,
  1018. "_components": [
  1019. {
  1020. "__id__": 42
  1021. },
  1022. {
  1023. "__id__": 44
  1024. }
  1025. ],
  1026. "_prefab": {
  1027. "__id__": 46
  1028. },
  1029. "_lpos": {
  1030. "__type__": "cc.Vec3",
  1031. "x": 0,
  1032. "y": 0,
  1033. "z": 0
  1034. },
  1035. "_lrot": {
  1036. "__type__": "cc.Quat",
  1037. "x": 0,
  1038. "y": 0,
  1039. "z": 0,
  1040. "w": 1
  1041. },
  1042. "_lscale": {
  1043. "__type__": "cc.Vec3",
  1044. "x": 1,
  1045. "y": 1,
  1046. "z": 1
  1047. },
  1048. "_mobility": 0,
  1049. "_layer": 33554432,
  1050. "_euler": {
  1051. "__type__": "cc.Vec3",
  1052. "x": 0,
  1053. "y": 0,
  1054. "z": 0
  1055. },
  1056. "_id": ""
  1057. },
  1058. {
  1059. "__type__": "cc.UITransform",
  1060. "_name": "",
  1061. "_objFlags": 0,
  1062. "__editorExtras__": {},
  1063. "node": {
  1064. "__id__": 41
  1065. },
  1066. "_enabled": true,
  1067. "__prefab": {
  1068. "__id__": 43
  1069. },
  1070. "_contentSize": {
  1071. "__type__": "cc.Size",
  1072. "width": 50,
  1073. "height": 50
  1074. },
  1075. "_anchorPoint": {
  1076. "__type__": "cc.Vec2",
  1077. "x": 0.5,
  1078. "y": 0.5
  1079. },
  1080. "_id": ""
  1081. },
  1082. {
  1083. "__type__": "cc.CompPrefabInfo",
  1084. "fileId": "88f8aHKZND4JtMG6GdixGm"
  1085. },
  1086. {
  1087. "__type__": "cc.Label",
  1088. "_name": "",
  1089. "_objFlags": 0,
  1090. "__editorExtras__": {},
  1091. "node": {
  1092. "__id__": 41
  1093. },
  1094. "_enabled": true,
  1095. "__prefab": {
  1096. "__id__": 45
  1097. },
  1098. "_customMaterial": null,
  1099. "_srcBlendFactor": 2,
  1100. "_dstBlendFactor": 4,
  1101. "_color": {
  1102. "__type__": "cc.Color",
  1103. "r": 0,
  1104. "g": 0,
  1105. "b": 0,
  1106. "a": 255
  1107. },
  1108. "_string": "↑",
  1109. "_horizontalAlign": 1,
  1110. "_verticalAlign": 1,
  1111. "_actualFontSize": 40,
  1112. "_fontSize": 40,
  1113. "_fontFamily": "Arial",
  1114. "_lineHeight": 40,
  1115. "_overflow": 1,
  1116. "_enableWrapText": false,
  1117. "_font": null,
  1118. "_isSystemFontUsed": true,
  1119. "_spacingX": 0,
  1120. "_isItalic": false,
  1121. "_isBold": true,
  1122. "_isUnderline": false,
  1123. "_underlineHeight": 2,
  1124. "_cacheMode": 0,
  1125. "_id": ""
  1126. },
  1127. {
  1128. "__type__": "cc.CompPrefabInfo",
  1129. "fileId": "7duvEYlUBJYYaewuBAkN+G"
  1130. },
  1131. {
  1132. "__type__": "cc.PrefabInfo",
  1133. "root": {
  1134. "__id__": 1
  1135. },
  1136. "asset": {
  1137. "__id__": 0
  1138. },
  1139. "fileId": "08K5jnki5G7JcH2leS+gNx",
  1140. "instance": null,
  1141. "targetOverrides": null,
  1142. "nestedPrefabInstanceRoots": null
  1143. },
  1144. {
  1145. "__type__": "cc.UITransform",
  1146. "_name": "",
  1147. "_objFlags": 0,
  1148. "__editorExtras__": {},
  1149. "node": {
  1150. "__id__": 40
  1151. },
  1152. "_enabled": true,
  1153. "__prefab": {
  1154. "__id__": 48
  1155. },
  1156. "_contentSize": {
  1157. "__type__": "cc.Size",
  1158. "width": 40,
  1159. "height": 60
  1160. },
  1161. "_anchorPoint": {
  1162. "__type__": "cc.Vec2",
  1163. "x": 0.5,
  1164. "y": 0.5
  1165. },
  1166. "_id": ""
  1167. },
  1168. {
  1169. "__type__": "cc.CompPrefabInfo",
  1170. "fileId": "86aNyniZBAqL0VKwHxkPIN"
  1171. },
  1172. {
  1173. "__type__": "cc.Sprite",
  1174. "_name": "",
  1175. "_objFlags": 0,
  1176. "__editorExtras__": {},
  1177. "node": {
  1178. "__id__": 40
  1179. },
  1180. "_enabled": true,
  1181. "__prefab": {
  1182. "__id__": 50
  1183. },
  1184. "_customMaterial": null,
  1185. "_srcBlendFactor": 2,
  1186. "_dstBlendFactor": 4,
  1187. "_color": {
  1188. "__type__": "cc.Color",
  1189. "r": 255,
  1190. "g": 255,
  1191. "b": 255,
  1192. "a": 255
  1193. },
  1194. "_spriteFrame": {
  1195. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1196. "__expectedType__": "cc.SpriteFrame"
  1197. },
  1198. "_type": 1,
  1199. "_fillType": 0,
  1200. "_sizeMode": 0,
  1201. "_fillCenter": {
  1202. "__type__": "cc.Vec2",
  1203. "x": 0,
  1204. "y": 0
  1205. },
  1206. "_fillStart": 0,
  1207. "_fillRange": 0,
  1208. "_isTrimmedMode": true,
  1209. "_useGrayscale": false,
  1210. "_atlas": null,
  1211. "_id": ""
  1212. },
  1213. {
  1214. "__type__": "cc.CompPrefabInfo",
  1215. "fileId": "88lFaBzNVKH6rdoDnjMHQE"
  1216. },
  1217. {
  1218. "__type__": "cc.Button",
  1219. "_name": "",
  1220. "_objFlags": 0,
  1221. "__editorExtras__": {},
  1222. "node": {
  1223. "__id__": 40
  1224. },
  1225. "_enabled": true,
  1226. "__prefab": {
  1227. "__id__": 52
  1228. },
  1229. "clickEvents": [],
  1230. "_interactable": true,
  1231. "_transition": 3,
  1232. "_normalColor": {
  1233. "__type__": "cc.Color",
  1234. "r": 214,
  1235. "g": 214,
  1236. "b": 214,
  1237. "a": 255
  1238. },
  1239. "_hoverColor": {
  1240. "__type__": "cc.Color",
  1241. "r": 211,
  1242. "g": 211,
  1243. "b": 211,
  1244. "a": 255
  1245. },
  1246. "_pressedColor": {
  1247. "__type__": "cc.Color",
  1248. "r": 255,
  1249. "g": 255,
  1250. "b": 255,
  1251. "a": 255
  1252. },
  1253. "_disabledColor": {
  1254. "__type__": "cc.Color",
  1255. "r": 124,
  1256. "g": 124,
  1257. "b": 124,
  1258. "a": 255
  1259. },
  1260. "_normalSprite": null,
  1261. "_hoverSprite": null,
  1262. "_pressedSprite": null,
  1263. "_disabledSprite": null,
  1264. "_duration": 0.1,
  1265. "_zoomScale": 1.2,
  1266. "_target": {
  1267. "__id__": 40
  1268. },
  1269. "_id": ""
  1270. },
  1271. {
  1272. "__type__": "cc.CompPrefabInfo",
  1273. "fileId": "e0jzwJWvpNcL86k51ZKV6O"
  1274. },
  1275. {
  1276. "__type__": "cc.Widget",
  1277. "_name": "",
  1278. "_objFlags": 0,
  1279. "__editorExtras__": {},
  1280. "node": {
  1281. "__id__": 40
  1282. },
  1283. "_enabled": true,
  1284. "__prefab": {
  1285. "__id__": 54
  1286. },
  1287. "_alignFlags": 32,
  1288. "_target": null,
  1289. "_left": 0,
  1290. "_right": 68,
  1291. "_top": 0,
  1292. "_bottom": 0,
  1293. "_horizontalCenter": 0,
  1294. "_verticalCenter": 0,
  1295. "_isAbsLeft": true,
  1296. "_isAbsRight": true,
  1297. "_isAbsTop": true,
  1298. "_isAbsBottom": true,
  1299. "_isAbsHorizontalCenter": true,
  1300. "_isAbsVerticalCenter": true,
  1301. "_originalWidth": 0,
  1302. "_originalHeight": 0,
  1303. "_alignMode": 2,
  1304. "_lockFlags": 0,
  1305. "_id": ""
  1306. },
  1307. {
  1308. "__type__": "cc.CompPrefabInfo",
  1309. "fileId": "c5pHBMKJ1Nn7sro0d16DPw"
  1310. },
  1311. {
  1312. "__type__": "cc.PrefabInfo",
  1313. "root": {
  1314. "__id__": 1
  1315. },
  1316. "asset": {
  1317. "__id__": 0
  1318. },
  1319. "fileId": "f7uPsPNV5EUYT2AZcWF0AA",
  1320. "instance": null,
  1321. "targetOverrides": null,
  1322. "nestedPrefabInstanceRoots": null
  1323. },
  1324. {
  1325. "__type__": "cc.Node",
  1326. "_name": "btn_down",
  1327. "_objFlags": 0,
  1328. "__editorExtras__": {},
  1329. "_parent": {
  1330. "__id__": 1
  1331. },
  1332. "_children": [
  1333. {
  1334. "__id__": 57
  1335. }
  1336. ],
  1337. "_active": true,
  1338. "_components": [
  1339. {
  1340. "__id__": 63
  1341. },
  1342. {
  1343. "__id__": 65
  1344. },
  1345. {
  1346. "__id__": 67
  1347. },
  1348. {
  1349. "__id__": 69
  1350. }
  1351. ],
  1352. "_prefab": {
  1353. "__id__": 71
  1354. },
  1355. "_lpos": {
  1356. "__type__": "cc.Vec3",
  1357. "x": 420,
  1358. "y": 0,
  1359. "z": 0
  1360. },
  1361. "_lrot": {
  1362. "__type__": "cc.Quat",
  1363. "x": 0,
  1364. "y": 0,
  1365. "z": 0,
  1366. "w": 1
  1367. },
  1368. "_lscale": {
  1369. "__type__": "cc.Vec3",
  1370. "x": 1,
  1371. "y": 1,
  1372. "z": 1
  1373. },
  1374. "_mobility": 0,
  1375. "_layer": 33554432,
  1376. "_euler": {
  1377. "__type__": "cc.Vec3",
  1378. "x": 0,
  1379. "y": 0,
  1380. "z": 0
  1381. },
  1382. "_id": ""
  1383. },
  1384. {
  1385. "__type__": "cc.Node",
  1386. "_name": "Label",
  1387. "_objFlags": 512,
  1388. "__editorExtras__": {},
  1389. "_parent": {
  1390. "__id__": 56
  1391. },
  1392. "_children": [],
  1393. "_active": true,
  1394. "_components": [
  1395. {
  1396. "__id__": 58
  1397. },
  1398. {
  1399. "__id__": 60
  1400. }
  1401. ],
  1402. "_prefab": {
  1403. "__id__": 62
  1404. },
  1405. "_lpos": {
  1406. "__type__": "cc.Vec3",
  1407. "x": 0,
  1408. "y": 0,
  1409. "z": 0
  1410. },
  1411. "_lrot": {
  1412. "__type__": "cc.Quat",
  1413. "x": 0,
  1414. "y": 0,
  1415. "z": 0,
  1416. "w": 1
  1417. },
  1418. "_lscale": {
  1419. "__type__": "cc.Vec3",
  1420. "x": 1,
  1421. "y": 1,
  1422. "z": 1
  1423. },
  1424. "_mobility": 0,
  1425. "_layer": 33554432,
  1426. "_euler": {
  1427. "__type__": "cc.Vec3",
  1428. "x": 0,
  1429. "y": 0,
  1430. "z": 0
  1431. },
  1432. "_id": ""
  1433. },
  1434. {
  1435. "__type__": "cc.UITransform",
  1436. "_name": "",
  1437. "_objFlags": 0,
  1438. "__editorExtras__": {},
  1439. "node": {
  1440. "__id__": 57
  1441. },
  1442. "_enabled": true,
  1443. "__prefab": {
  1444. "__id__": 59
  1445. },
  1446. "_contentSize": {
  1447. "__type__": "cc.Size",
  1448. "width": 50,
  1449. "height": 50
  1450. },
  1451. "_anchorPoint": {
  1452. "__type__": "cc.Vec2",
  1453. "x": 0.5,
  1454. "y": 0.5
  1455. },
  1456. "_id": ""
  1457. },
  1458. {
  1459. "__type__": "cc.CompPrefabInfo",
  1460. "fileId": "24kjln4mFCNJ8x27qK6MXu"
  1461. },
  1462. {
  1463. "__type__": "cc.Label",
  1464. "_name": "",
  1465. "_objFlags": 0,
  1466. "__editorExtras__": {},
  1467. "node": {
  1468. "__id__": 57
  1469. },
  1470. "_enabled": true,
  1471. "__prefab": {
  1472. "__id__": 61
  1473. },
  1474. "_customMaterial": null,
  1475. "_srcBlendFactor": 2,
  1476. "_dstBlendFactor": 4,
  1477. "_color": {
  1478. "__type__": "cc.Color",
  1479. "r": 0,
  1480. "g": 0,
  1481. "b": 0,
  1482. "a": 255
  1483. },
  1484. "_string": "↓",
  1485. "_horizontalAlign": 1,
  1486. "_verticalAlign": 1,
  1487. "_actualFontSize": 40,
  1488. "_fontSize": 40,
  1489. "_fontFamily": "Arial",
  1490. "_lineHeight": 40,
  1491. "_overflow": 1,
  1492. "_enableWrapText": false,
  1493. "_font": null,
  1494. "_isSystemFontUsed": true,
  1495. "_spacingX": 0,
  1496. "_isItalic": false,
  1497. "_isBold": true,
  1498. "_isUnderline": false,
  1499. "_underlineHeight": 2,
  1500. "_cacheMode": 0,
  1501. "_id": ""
  1502. },
  1503. {
  1504. "__type__": "cc.CompPrefabInfo",
  1505. "fileId": "ceA14DlwJHlbC2xynEefGt"
  1506. },
  1507. {
  1508. "__type__": "cc.PrefabInfo",
  1509. "root": {
  1510. "__id__": 1
  1511. },
  1512. "asset": {
  1513. "__id__": 0
  1514. },
  1515. "fileId": "99xUZVidpLyYoMsVFtmFtd",
  1516. "instance": null,
  1517. "targetOverrides": null,
  1518. "nestedPrefabInstanceRoots": null
  1519. },
  1520. {
  1521. "__type__": "cc.UITransform",
  1522. "_name": "",
  1523. "_objFlags": 0,
  1524. "__editorExtras__": {},
  1525. "node": {
  1526. "__id__": 56
  1527. },
  1528. "_enabled": true,
  1529. "__prefab": {
  1530. "__id__": 64
  1531. },
  1532. "_contentSize": {
  1533. "__type__": "cc.Size",
  1534. "width": 40,
  1535. "height": 60
  1536. },
  1537. "_anchorPoint": {
  1538. "__type__": "cc.Vec2",
  1539. "x": 0.5,
  1540. "y": 0.5
  1541. },
  1542. "_id": ""
  1543. },
  1544. {
  1545. "__type__": "cc.CompPrefabInfo",
  1546. "fileId": "9eC64fXfhAI644vT7u20qe"
  1547. },
  1548. {
  1549. "__type__": "cc.Sprite",
  1550. "_name": "",
  1551. "_objFlags": 0,
  1552. "__editorExtras__": {},
  1553. "node": {
  1554. "__id__": 56
  1555. },
  1556. "_enabled": true,
  1557. "__prefab": {
  1558. "__id__": 66
  1559. },
  1560. "_customMaterial": null,
  1561. "_srcBlendFactor": 2,
  1562. "_dstBlendFactor": 4,
  1563. "_color": {
  1564. "__type__": "cc.Color",
  1565. "r": 255,
  1566. "g": 255,
  1567. "b": 255,
  1568. "a": 255
  1569. },
  1570. "_spriteFrame": {
  1571. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1572. "__expectedType__": "cc.SpriteFrame"
  1573. },
  1574. "_type": 1,
  1575. "_fillType": 0,
  1576. "_sizeMode": 0,
  1577. "_fillCenter": {
  1578. "__type__": "cc.Vec2",
  1579. "x": 0,
  1580. "y": 0
  1581. },
  1582. "_fillStart": 0,
  1583. "_fillRange": 0,
  1584. "_isTrimmedMode": true,
  1585. "_useGrayscale": false,
  1586. "_atlas": null,
  1587. "_id": ""
  1588. },
  1589. {
  1590. "__type__": "cc.CompPrefabInfo",
  1591. "fileId": "0epw2c515GtL/+yzdWmeOi"
  1592. },
  1593. {
  1594. "__type__": "cc.Button",
  1595. "_name": "",
  1596. "_objFlags": 0,
  1597. "__editorExtras__": {},
  1598. "node": {
  1599. "__id__": 56
  1600. },
  1601. "_enabled": true,
  1602. "__prefab": {
  1603. "__id__": 68
  1604. },
  1605. "clickEvents": [],
  1606. "_interactable": true,
  1607. "_transition": 3,
  1608. "_normalColor": {
  1609. "__type__": "cc.Color",
  1610. "r": 214,
  1611. "g": 214,
  1612. "b": 214,
  1613. "a": 255
  1614. },
  1615. "_hoverColor": {
  1616. "__type__": "cc.Color",
  1617. "r": 211,
  1618. "g": 211,
  1619. "b": 211,
  1620. "a": 255
  1621. },
  1622. "_pressedColor": {
  1623. "__type__": "cc.Color",
  1624. "r": 255,
  1625. "g": 255,
  1626. "b": 255,
  1627. "a": 255
  1628. },
  1629. "_disabledColor": {
  1630. "__type__": "cc.Color",
  1631. "r": 124,
  1632. "g": 124,
  1633. "b": 124,
  1634. "a": 255
  1635. },
  1636. "_normalSprite": null,
  1637. "_hoverSprite": null,
  1638. "_pressedSprite": null,
  1639. "_disabledSprite": null,
  1640. "_duration": 0.1,
  1641. "_zoomScale": 1.2,
  1642. "_target": {
  1643. "__id__": 56
  1644. },
  1645. "_id": ""
  1646. },
  1647. {
  1648. "__type__": "cc.CompPrefabInfo",
  1649. "fileId": "c7b55az8xMTbbV6DGDb5BH"
  1650. },
  1651. {
  1652. "__type__": "cc.Widget",
  1653. "_name": "",
  1654. "_objFlags": 0,
  1655. "__editorExtras__": {},
  1656. "node": {
  1657. "__id__": 56
  1658. },
  1659. "_enabled": true,
  1660. "__prefab": {
  1661. "__id__": 70
  1662. },
  1663. "_alignFlags": 32,
  1664. "_target": null,
  1665. "_left": 0,
  1666. "_right": 10,
  1667. "_top": 0,
  1668. "_bottom": 0,
  1669. "_horizontalCenter": 0,
  1670. "_verticalCenter": 0,
  1671. "_isAbsLeft": true,
  1672. "_isAbsRight": true,
  1673. "_isAbsTop": true,
  1674. "_isAbsBottom": true,
  1675. "_isAbsHorizontalCenter": true,
  1676. "_isAbsVerticalCenter": true,
  1677. "_originalWidth": 0,
  1678. "_originalHeight": 0,
  1679. "_alignMode": 2,
  1680. "_lockFlags": 0,
  1681. "_id": ""
  1682. },
  1683. {
  1684. "__type__": "cc.CompPrefabInfo",
  1685. "fileId": "edMQX7R7RB1YFzT1Lt7b2X"
  1686. },
  1687. {
  1688. "__type__": "cc.PrefabInfo",
  1689. "root": {
  1690. "__id__": 1
  1691. },
  1692. "asset": {
  1693. "__id__": 0
  1694. },
  1695. "fileId": "98NAhoFCFF6bA4fgwot3IC",
  1696. "instance": null,
  1697. "targetOverrides": null,
  1698. "nestedPrefabInstanceRoots": null
  1699. },
  1700. {
  1701. "__type__": "cc.UITransform",
  1702. "_name": "",
  1703. "_objFlags": 0,
  1704. "__editorExtras__": {},
  1705. "node": {
  1706. "__id__": 1
  1707. },
  1708. "_enabled": true,
  1709. "__prefab": {
  1710. "__id__": 73
  1711. },
  1712. "_contentSize": {
  1713. "__type__": "cc.Size",
  1714. "width": 900,
  1715. "height": 100
  1716. },
  1717. "_anchorPoint": {
  1718. "__type__": "cc.Vec2",
  1719. "x": 0.5,
  1720. "y": 0.5
  1721. },
  1722. "_id": ""
  1723. },
  1724. {
  1725. "__type__": "cc.CompPrefabInfo",
  1726. "fileId": "7fYF70FuRJ7aJxTEQPkQQC"
  1727. },
  1728. {
  1729. "__type__": "cc.Sprite",
  1730. "_name": "",
  1731. "_objFlags": 0,
  1732. "__editorExtras__": {},
  1733. "node": {
  1734. "__id__": 1
  1735. },
  1736. "_enabled": true,
  1737. "__prefab": {
  1738. "__id__": 75
  1739. },
  1740. "_customMaterial": null,
  1741. "_srcBlendFactor": 2,
  1742. "_dstBlendFactor": 4,
  1743. "_color": {
  1744. "__type__": "cc.Color",
  1745. "r": 96,
  1746. "g": 218,
  1747. "b": 96,
  1748. "a": 255
  1749. },
  1750. "_spriteFrame": {
  1751. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  1752. "__expectedType__": "cc.SpriteFrame"
  1753. },
  1754. "_type": 1,
  1755. "_fillType": 0,
  1756. "_sizeMode": 0,
  1757. "_fillCenter": {
  1758. "__type__": "cc.Vec2",
  1759. "x": 0,
  1760. "y": 0
  1761. },
  1762. "_fillStart": 0,
  1763. "_fillRange": 0,
  1764. "_isTrimmedMode": true,
  1765. "_useGrayscale": false,
  1766. "_atlas": null,
  1767. "_id": ""
  1768. },
  1769. {
  1770. "__type__": "cc.CompPrefabInfo",
  1771. "fileId": "b75201B1pCOa7SW8d4FwEK"
  1772. },
  1773. {
  1774. "__type__": "9a07aswlmtEGIO8ZU20aZYG",
  1775. "_name": "",
  1776. "_objFlags": 0,
  1777. "__editorExtras__": {},
  1778. "node": {
  1779. "__id__": 1
  1780. },
  1781. "_enabled": true,
  1782. "__prefab": {
  1783. "__id__": 77
  1784. },
  1785. "btn_delete": {
  1786. "__id__": 34
  1787. },
  1788. "lab_event_id": {
  1789. "__id__": 28
  1790. },
  1791. "editBox_delay_time": {
  1792. "__id__": 25
  1793. },
  1794. "btn_up": {
  1795. "__id__": 40
  1796. },
  1797. "btn_down": {
  1798. "__id__": 56
  1799. },
  1800. "_id": ""
  1801. },
  1802. {
  1803. "__type__": "cc.CompPrefabInfo",
  1804. "fileId": "10mOk4mOtGtYdex3eoNO8Q"
  1805. },
  1806. {
  1807. "__type__": "cc.PrefabInfo",
  1808. "root": {
  1809. "__id__": 1
  1810. },
  1811. "asset": {
  1812. "__id__": 0
  1813. },
  1814. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  1815. "instance": null,
  1816. "targetOverrides": null
  1817. }
  1818. ]