UI_Alert.prefab 33 KB

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