show_copy_scene.prefab 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "show_copy_scene",
  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": "show_copy_scene",
  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__": 98
  32. },
  33. {
  34. "__id__": 100
  35. },
  36. {
  37. "__id__": 102
  38. }
  39. ],
  40. "_prefab": {
  41. "__id__": 104
  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": "bg",
  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": 1919.9999999999998,
  143. "height": 1919.9999999999998
  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": "0bIzYH7g9J3KdkUTTz8ZZw"
  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": 100
  177. },
  178. "_spriteFrame": {
  179. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  180. "__expectedType__": "cc.SpriteFrame"
  181. },
  182. "_type": 1,
  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": "9c4vlVCnBKupIW3jx3d73s"
  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": 20,
  229. "_alignMode": 2,
  230. "_lockFlags": 0,
  231. "_id": ""
  232. },
  233. {
  234. "__type__": "cc.CompPrefabInfo",
  235. "fileId": "ddN9BgIqVIlrU8i/qbasXF"
  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": "daM1WMGVZEU4zE1vIVm3rP"
  254. },
  255. {
  256. "__type__": "cc.PrefabInfo",
  257. "root": {
  258. "__id__": 1
  259. },
  260. "asset": {
  261. "__id__": 0
  262. },
  263. "fileId": "84/AvNnkJBGrH6C6dxuN7h",
  264. "instance": null,
  265. "targetOverrides": null,
  266. "nestedPrefabInstanceRoots": null
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "db",
  271. "_objFlags": 0,
  272. "__editorExtras__": {},
  273. "_parent": {
  274. "__id__": 1
  275. },
  276. "_children": [
  277. {
  278. "__id__": 13
  279. },
  280. {
  281. "__id__": 27
  282. },
  283. {
  284. "__id__": 41
  285. },
  286. {
  287. "__id__": 47
  288. },
  289. {
  290. "__id__": 53
  291. },
  292. {
  293. "__id__": 73
  294. }
  295. ],
  296. "_active": true,
  297. "_components": [
  298. {
  299. "__id__": 93
  300. },
  301. {
  302. "__id__": 95
  303. }
  304. ],
  305. "_prefab": {
  306. "__id__": 97
  307. },
  308. "_lpos": {
  309. "__type__": "cc.Vec3",
  310. "x": 0,
  311. "y": 0,
  312. "z": 0
  313. },
  314. "_lrot": {
  315. "__type__": "cc.Quat",
  316. "x": 0,
  317. "y": 0,
  318. "z": 0,
  319. "w": 1
  320. },
  321. "_lscale": {
  322. "__type__": "cc.Vec3",
  323. "x": 1,
  324. "y": 1,
  325. "z": 1
  326. },
  327. "_mobility": 0,
  328. "_layer": 33554432,
  329. "_euler": {
  330. "__type__": "cc.Vec3",
  331. "x": 0,
  332. "y": 0,
  333. "z": 0
  334. },
  335. "_id": ""
  336. },
  337. {
  338. "__type__": "cc.Node",
  339. "_name": "btn_sure",
  340. "_objFlags": 0,
  341. "__editorExtras__": {},
  342. "_parent": {
  343. "__id__": 12
  344. },
  345. "_children": [
  346. {
  347. "__id__": 14
  348. }
  349. ],
  350. "_active": true,
  351. "_components": [
  352. {
  353. "__id__": 20
  354. },
  355. {
  356. "__id__": 22
  357. },
  358. {
  359. "__id__": 24
  360. }
  361. ],
  362. "_prefab": {
  363. "__id__": 26
  364. },
  365. "_lpos": {
  366. "__type__": "cc.Vec3",
  367. "x": -172.721,
  368. "y": -240,
  369. "z": 0
  370. },
  371. "_lrot": {
  372. "__type__": "cc.Quat",
  373. "x": 0,
  374. "y": 0,
  375. "z": 0,
  376. "w": 1
  377. },
  378. "_lscale": {
  379. "__type__": "cc.Vec3",
  380. "x": 1,
  381. "y": 1,
  382. "z": 1
  383. },
  384. "_mobility": 0,
  385. "_layer": 33554432,
  386. "_euler": {
  387. "__type__": "cc.Vec3",
  388. "x": 0,
  389. "y": 0,
  390. "z": 0
  391. },
  392. "_id": ""
  393. },
  394. {
  395. "__type__": "cc.Node",
  396. "_name": "Label",
  397. "_objFlags": 512,
  398. "__editorExtras__": {},
  399. "_parent": {
  400. "__id__": 13
  401. },
  402. "_children": [],
  403. "_active": true,
  404. "_components": [
  405. {
  406. "__id__": 15
  407. },
  408. {
  409. "__id__": 17
  410. }
  411. ],
  412. "_prefab": {
  413. "__id__": 19
  414. },
  415. "_lpos": {
  416. "__type__": "cc.Vec3",
  417. "x": 0,
  418. "y": 0,
  419. "z": 0
  420. },
  421. "_lrot": {
  422. "__type__": "cc.Quat",
  423. "x": 0,
  424. "y": 0,
  425. "z": 0,
  426. "w": 1
  427. },
  428. "_lscale": {
  429. "__type__": "cc.Vec3",
  430. "x": 1,
  431. "y": 1,
  432. "z": 1
  433. },
  434. "_mobility": 0,
  435. "_layer": 33554432,
  436. "_euler": {
  437. "__type__": "cc.Vec3",
  438. "x": 0,
  439. "y": 0,
  440. "z": 0
  441. },
  442. "_id": ""
  443. },
  444. {
  445. "__type__": "cc.UITransform",
  446. "_name": "",
  447. "_objFlags": 0,
  448. "__editorExtras__": {},
  449. "node": {
  450. "__id__": 14
  451. },
  452. "_enabled": true,
  453. "__prefab": {
  454. "__id__": 16
  455. },
  456. "_contentSize": {
  457. "__type__": "cc.Size",
  458. "width": 160,
  459. "height": 50.4
  460. },
  461. "_anchorPoint": {
  462. "__type__": "cc.Vec2",
  463. "x": 0.5,
  464. "y": 0.5
  465. },
  466. "_id": ""
  467. },
  468. {
  469. "__type__": "cc.CompPrefabInfo",
  470. "fileId": "f9Kh6S5YFFYZoq5D/jE54A"
  471. },
  472. {
  473. "__type__": "cc.Label",
  474. "_name": "",
  475. "_objFlags": 0,
  476. "__editorExtras__": {},
  477. "node": {
  478. "__id__": 14
  479. },
  480. "_enabled": true,
  481. "__prefab": {
  482. "__id__": 18
  483. },
  484. "_customMaterial": null,
  485. "_srcBlendFactor": 2,
  486. "_dstBlendFactor": 4,
  487. "_color": {
  488. "__type__": "cc.Color",
  489. "r": 0,
  490. "g": 0,
  491. "b": 0,
  492. "a": 255
  493. },
  494. "_string": "确定添加",
  495. "_horizontalAlign": 1,
  496. "_verticalAlign": 1,
  497. "_actualFontSize": 40,
  498. "_fontSize": 40,
  499. "_fontFamily": "Arial",
  500. "_lineHeight": 40,
  501. "_overflow": 0,
  502. "_enableWrapText": false,
  503. "_font": null,
  504. "_isSystemFontUsed": true,
  505. "_spacingX": 0,
  506. "_isItalic": false,
  507. "_isBold": true,
  508. "_isUnderline": false,
  509. "_underlineHeight": 2,
  510. "_cacheMode": 0,
  511. "_id": ""
  512. },
  513. {
  514. "__type__": "cc.CompPrefabInfo",
  515. "fileId": "5f2VAwYVlIdK9xWU8y0V3w"
  516. },
  517. {
  518. "__type__": "cc.PrefabInfo",
  519. "root": {
  520. "__id__": 1
  521. },
  522. "asset": {
  523. "__id__": 0
  524. },
  525. "fileId": "931D74Vx1H8KZg7z3reUNS",
  526. "instance": null,
  527. "targetOverrides": null,
  528. "nestedPrefabInstanceRoots": null
  529. },
  530. {
  531. "__type__": "cc.UITransform",
  532. "_name": "",
  533. "_objFlags": 0,
  534. "__editorExtras__": {},
  535. "node": {
  536. "__id__": 13
  537. },
  538. "_enabled": true,
  539. "__prefab": {
  540. "__id__": 21
  541. },
  542. "_contentSize": {
  543. "__type__": "cc.Size",
  544. "width": 200,
  545. "height": 80
  546. },
  547. "_anchorPoint": {
  548. "__type__": "cc.Vec2",
  549. "x": 0.5,
  550. "y": 0.5
  551. },
  552. "_id": ""
  553. },
  554. {
  555. "__type__": "cc.CompPrefabInfo",
  556. "fileId": "20NBE2EaND57fU9bSni/fb"
  557. },
  558. {
  559. "__type__": "cc.Sprite",
  560. "_name": "",
  561. "_objFlags": 0,
  562. "__editorExtras__": {},
  563. "node": {
  564. "__id__": 13
  565. },
  566. "_enabled": true,
  567. "__prefab": {
  568. "__id__": 23
  569. },
  570. "_customMaterial": null,
  571. "_srcBlendFactor": 2,
  572. "_dstBlendFactor": 4,
  573. "_color": {
  574. "__type__": "cc.Color",
  575. "r": 255,
  576. "g": 255,
  577. "b": 255,
  578. "a": 255
  579. },
  580. "_spriteFrame": {
  581. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  582. "__expectedType__": "cc.SpriteFrame"
  583. },
  584. "_type": 1,
  585. "_fillType": 0,
  586. "_sizeMode": 0,
  587. "_fillCenter": {
  588. "__type__": "cc.Vec2",
  589. "x": 0,
  590. "y": 0
  591. },
  592. "_fillStart": 0,
  593. "_fillRange": 0,
  594. "_isTrimmedMode": true,
  595. "_useGrayscale": false,
  596. "_atlas": null,
  597. "_id": ""
  598. },
  599. {
  600. "__type__": "cc.CompPrefabInfo",
  601. "fileId": "7axQa1VaREgoHKikFOkYXZ"
  602. },
  603. {
  604. "__type__": "cc.Button",
  605. "_name": "",
  606. "_objFlags": 0,
  607. "__editorExtras__": {},
  608. "node": {
  609. "__id__": 13
  610. },
  611. "_enabled": true,
  612. "__prefab": {
  613. "__id__": 25
  614. },
  615. "clickEvents": [],
  616. "_interactable": true,
  617. "_transition": 3,
  618. "_normalColor": {
  619. "__type__": "cc.Color",
  620. "r": 214,
  621. "g": 214,
  622. "b": 214,
  623. "a": 255
  624. },
  625. "_hoverColor": {
  626. "__type__": "cc.Color",
  627. "r": 211,
  628. "g": 211,
  629. "b": 211,
  630. "a": 255
  631. },
  632. "_pressedColor": {
  633. "__type__": "cc.Color",
  634. "r": 255,
  635. "g": 255,
  636. "b": 255,
  637. "a": 255
  638. },
  639. "_disabledColor": {
  640. "__type__": "cc.Color",
  641. "r": 124,
  642. "g": 124,
  643. "b": 124,
  644. "a": 255
  645. },
  646. "_normalSprite": {
  647. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  648. "__expectedType__": "cc.SpriteFrame"
  649. },
  650. "_hoverSprite": {
  651. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  652. "__expectedType__": "cc.SpriteFrame"
  653. },
  654. "_pressedSprite": {
  655. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  656. "__expectedType__": "cc.SpriteFrame"
  657. },
  658. "_disabledSprite": {
  659. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  660. "__expectedType__": "cc.SpriteFrame"
  661. },
  662. "_duration": 0.1,
  663. "_zoomScale": 1.2,
  664. "_target": {
  665. "__id__": 13
  666. },
  667. "_id": ""
  668. },
  669. {
  670. "__type__": "cc.CompPrefabInfo",
  671. "fileId": "1cXJSCk7pK+bkSE2N4lWs4"
  672. },
  673. {
  674. "__type__": "cc.PrefabInfo",
  675. "root": {
  676. "__id__": 1
  677. },
  678. "asset": {
  679. "__id__": 0
  680. },
  681. "fileId": "b3r0+mrL1AIpCoGUuL7pI2",
  682. "instance": null,
  683. "targetOverrides": null,
  684. "nestedPrefabInstanceRoots": null
  685. },
  686. {
  687. "__type__": "cc.Node",
  688. "_name": "btn_cancel",
  689. "_objFlags": 0,
  690. "__editorExtras__": {},
  691. "_parent": {
  692. "__id__": 12
  693. },
  694. "_children": [
  695. {
  696. "__id__": 28
  697. }
  698. ],
  699. "_active": true,
  700. "_components": [
  701. {
  702. "__id__": 34
  703. },
  704. {
  705. "__id__": 36
  706. },
  707. {
  708. "__id__": 38
  709. }
  710. ],
  711. "_prefab": {
  712. "__id__": 40
  713. },
  714. "_lpos": {
  715. "__type__": "cc.Vec3",
  716. "x": 186.913,
  717. "y": -240,
  718. "z": 0
  719. },
  720. "_lrot": {
  721. "__type__": "cc.Quat",
  722. "x": 0,
  723. "y": 0,
  724. "z": 0,
  725. "w": 1
  726. },
  727. "_lscale": {
  728. "__type__": "cc.Vec3",
  729. "x": 1,
  730. "y": 1,
  731. "z": 1
  732. },
  733. "_mobility": 0,
  734. "_layer": 33554432,
  735. "_euler": {
  736. "__type__": "cc.Vec3",
  737. "x": 0,
  738. "y": 0,
  739. "z": 0
  740. },
  741. "_id": ""
  742. },
  743. {
  744. "__type__": "cc.Node",
  745. "_name": "Label",
  746. "_objFlags": 512,
  747. "__editorExtras__": {},
  748. "_parent": {
  749. "__id__": 27
  750. },
  751. "_children": [],
  752. "_active": true,
  753. "_components": [
  754. {
  755. "__id__": 29
  756. },
  757. {
  758. "__id__": 31
  759. }
  760. ],
  761. "_prefab": {
  762. "__id__": 33
  763. },
  764. "_lpos": {
  765. "__type__": "cc.Vec3",
  766. "x": 0,
  767. "y": 0,
  768. "z": 0
  769. },
  770. "_lrot": {
  771. "__type__": "cc.Quat",
  772. "x": 0,
  773. "y": 0,
  774. "z": 0,
  775. "w": 1
  776. },
  777. "_lscale": {
  778. "__type__": "cc.Vec3",
  779. "x": 1,
  780. "y": 1,
  781. "z": 1
  782. },
  783. "_mobility": 0,
  784. "_layer": 33554432,
  785. "_euler": {
  786. "__type__": "cc.Vec3",
  787. "x": 0,
  788. "y": 0,
  789. "z": 0
  790. },
  791. "_id": ""
  792. },
  793. {
  794. "__type__": "cc.UITransform",
  795. "_name": "",
  796. "_objFlags": 0,
  797. "__editorExtras__": {},
  798. "node": {
  799. "__id__": 28
  800. },
  801. "_enabled": true,
  802. "__prefab": {
  803. "__id__": 30
  804. },
  805. "_contentSize": {
  806. "__type__": "cc.Size",
  807. "width": 80,
  808. "height": 50.4
  809. },
  810. "_anchorPoint": {
  811. "__type__": "cc.Vec2",
  812. "x": 0.5,
  813. "y": 0.5
  814. },
  815. "_id": ""
  816. },
  817. {
  818. "__type__": "cc.CompPrefabInfo",
  819. "fileId": "e1ZdQLMjNHoohd33kpNWwh"
  820. },
  821. {
  822. "__type__": "cc.Label",
  823. "_name": "",
  824. "_objFlags": 0,
  825. "__editorExtras__": {},
  826. "node": {
  827. "__id__": 28
  828. },
  829. "_enabled": true,
  830. "__prefab": {
  831. "__id__": 32
  832. },
  833. "_customMaterial": null,
  834. "_srcBlendFactor": 2,
  835. "_dstBlendFactor": 4,
  836. "_color": {
  837. "__type__": "cc.Color",
  838. "r": 0,
  839. "g": 0,
  840. "b": 0,
  841. "a": 255
  842. },
  843. "_string": "取消",
  844. "_horizontalAlign": 1,
  845. "_verticalAlign": 1,
  846. "_actualFontSize": 40,
  847. "_fontSize": 40,
  848. "_fontFamily": "Arial",
  849. "_lineHeight": 40,
  850. "_overflow": 0,
  851. "_enableWrapText": false,
  852. "_font": null,
  853. "_isSystemFontUsed": true,
  854. "_spacingX": 0,
  855. "_isItalic": false,
  856. "_isBold": true,
  857. "_isUnderline": false,
  858. "_underlineHeight": 2,
  859. "_cacheMode": 0,
  860. "_id": ""
  861. },
  862. {
  863. "__type__": "cc.CompPrefabInfo",
  864. "fileId": "12bUxMWCNFTquhWoYurLV0"
  865. },
  866. {
  867. "__type__": "cc.PrefabInfo",
  868. "root": {
  869. "__id__": 1
  870. },
  871. "asset": {
  872. "__id__": 0
  873. },
  874. "fileId": "a3CRc6YaREPbuQXWKhyCRe",
  875. "instance": null,
  876. "targetOverrides": null,
  877. "nestedPrefabInstanceRoots": null
  878. },
  879. {
  880. "__type__": "cc.UITransform",
  881. "_name": "",
  882. "_objFlags": 0,
  883. "__editorExtras__": {},
  884. "node": {
  885. "__id__": 27
  886. },
  887. "_enabled": true,
  888. "__prefab": {
  889. "__id__": 35
  890. },
  891. "_contentSize": {
  892. "__type__": "cc.Size",
  893. "width": 200,
  894. "height": 80
  895. },
  896. "_anchorPoint": {
  897. "__type__": "cc.Vec2",
  898. "x": 0.5,
  899. "y": 0.5
  900. },
  901. "_id": ""
  902. },
  903. {
  904. "__type__": "cc.CompPrefabInfo",
  905. "fileId": "c0hKFV8gpPRr4mT69sdZus"
  906. },
  907. {
  908. "__type__": "cc.Sprite",
  909. "_name": "",
  910. "_objFlags": 0,
  911. "__editorExtras__": {},
  912. "node": {
  913. "__id__": 27
  914. },
  915. "_enabled": true,
  916. "__prefab": {
  917. "__id__": 37
  918. },
  919. "_customMaterial": null,
  920. "_srcBlendFactor": 2,
  921. "_dstBlendFactor": 4,
  922. "_color": {
  923. "__type__": "cc.Color",
  924. "r": 255,
  925. "g": 255,
  926. "b": 255,
  927. "a": 255
  928. },
  929. "_spriteFrame": {
  930. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  931. "__expectedType__": "cc.SpriteFrame"
  932. },
  933. "_type": 1,
  934. "_fillType": 0,
  935. "_sizeMode": 0,
  936. "_fillCenter": {
  937. "__type__": "cc.Vec2",
  938. "x": 0,
  939. "y": 0
  940. },
  941. "_fillStart": 0,
  942. "_fillRange": 0,
  943. "_isTrimmedMode": true,
  944. "_useGrayscale": false,
  945. "_atlas": null,
  946. "_id": ""
  947. },
  948. {
  949. "__type__": "cc.CompPrefabInfo",
  950. "fileId": "5d0sYqgshNf4J0cWczPiQx"
  951. },
  952. {
  953. "__type__": "cc.Button",
  954. "_name": "",
  955. "_objFlags": 0,
  956. "__editorExtras__": {},
  957. "node": {
  958. "__id__": 27
  959. },
  960. "_enabled": true,
  961. "__prefab": {
  962. "__id__": 39
  963. },
  964. "clickEvents": [],
  965. "_interactable": true,
  966. "_transition": 3,
  967. "_normalColor": {
  968. "__type__": "cc.Color",
  969. "r": 214,
  970. "g": 214,
  971. "b": 214,
  972. "a": 255
  973. },
  974. "_hoverColor": {
  975. "__type__": "cc.Color",
  976. "r": 211,
  977. "g": 211,
  978. "b": 211,
  979. "a": 255
  980. },
  981. "_pressedColor": {
  982. "__type__": "cc.Color",
  983. "r": 255,
  984. "g": 255,
  985. "b": 255,
  986. "a": 255
  987. },
  988. "_disabledColor": {
  989. "__type__": "cc.Color",
  990. "r": 124,
  991. "g": 124,
  992. "b": 124,
  993. "a": 255
  994. },
  995. "_normalSprite": {
  996. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  997. "__expectedType__": "cc.SpriteFrame"
  998. },
  999. "_hoverSprite": {
  1000. "__uuid__": "20835ba4-6145-4fbc-a58a-051ce700aa3e@f9941",
  1001. "__expectedType__": "cc.SpriteFrame"
  1002. },
  1003. "_pressedSprite": {
  1004. "__uuid__": "544e49d6-3f05-4fa8-9a9e-091f98fc2ce8@f9941",
  1005. "__expectedType__": "cc.SpriteFrame"
  1006. },
  1007. "_disabledSprite": {
  1008. "__uuid__": "951249e0-9f16-456d-8b85-a6ca954da16b@f9941",
  1009. "__expectedType__": "cc.SpriteFrame"
  1010. },
  1011. "_duration": 0.1,
  1012. "_zoomScale": 1.2,
  1013. "_target": {
  1014. "__id__": 27
  1015. },
  1016. "_id": ""
  1017. },
  1018. {
  1019. "__type__": "cc.CompPrefabInfo",
  1020. "fileId": "48ddEWc1dDXYYnE9Mw/YeL"
  1021. },
  1022. {
  1023. "__type__": "cc.PrefabInfo",
  1024. "root": {
  1025. "__id__": 1
  1026. },
  1027. "asset": {
  1028. "__id__": 0
  1029. },
  1030. "fileId": "1fqg3+fhdP4bmM8TEEGWw3",
  1031. "instance": null,
  1032. "targetOverrides": null,
  1033. "nestedPrefabInstanceRoots": null
  1034. },
  1035. {
  1036. "__type__": "cc.Node",
  1037. "_name": "title",
  1038. "_objFlags": 0,
  1039. "__editorExtras__": {},
  1040. "_parent": {
  1041. "__id__": 12
  1042. },
  1043. "_children": [],
  1044. "_active": true,
  1045. "_components": [
  1046. {
  1047. "__id__": 42
  1048. },
  1049. {
  1050. "__id__": 44
  1051. }
  1052. ],
  1053. "_prefab": {
  1054. "__id__": 46
  1055. },
  1056. "_lpos": {
  1057. "__type__": "cc.Vec3",
  1058. "x": 0,
  1059. "y": 150,
  1060. "z": 0
  1061. },
  1062. "_lrot": {
  1063. "__type__": "cc.Quat",
  1064. "x": 0,
  1065. "y": 0,
  1066. "z": 0,
  1067. "w": 1
  1068. },
  1069. "_lscale": {
  1070. "__type__": "cc.Vec3",
  1071. "x": 1,
  1072. "y": 1,
  1073. "z": 1
  1074. },
  1075. "_mobility": 0,
  1076. "_layer": 33554432,
  1077. "_euler": {
  1078. "__type__": "cc.Vec3",
  1079. "x": 0,
  1080. "y": 0,
  1081. "z": 0
  1082. },
  1083. "_id": ""
  1084. },
  1085. {
  1086. "__type__": "cc.UITransform",
  1087. "_name": "",
  1088. "_objFlags": 0,
  1089. "__editorExtras__": {},
  1090. "node": {
  1091. "__id__": 41
  1092. },
  1093. "_enabled": true,
  1094. "__prefab": {
  1095. "__id__": 43
  1096. },
  1097. "_contentSize": {
  1098. "__type__": "cc.Size",
  1099. "width": 160,
  1100. "height": 50.4
  1101. },
  1102. "_anchorPoint": {
  1103. "__type__": "cc.Vec2",
  1104. "x": 0.5,
  1105. "y": 0.5
  1106. },
  1107. "_id": ""
  1108. },
  1109. {
  1110. "__type__": "cc.CompPrefabInfo",
  1111. "fileId": "172QDG6xhL1La8BHIXJ/BE"
  1112. },
  1113. {
  1114. "__type__": "cc.Label",
  1115. "_name": "",
  1116. "_objFlags": 0,
  1117. "__editorExtras__": {},
  1118. "node": {
  1119. "__id__": 41
  1120. },
  1121. "_enabled": true,
  1122. "__prefab": {
  1123. "__id__": 45
  1124. },
  1125. "_customMaterial": null,
  1126. "_srcBlendFactor": 2,
  1127. "_dstBlendFactor": 4,
  1128. "_color": {
  1129. "__type__": "cc.Color",
  1130. "r": 0,
  1131. "g": 0,
  1132. "b": 0,
  1133. "a": 255
  1134. },
  1135. "_string": "复制场景",
  1136. "_horizontalAlign": 1,
  1137. "_verticalAlign": 1,
  1138. "_actualFontSize": 40,
  1139. "_fontSize": 40,
  1140. "_fontFamily": "Arial",
  1141. "_lineHeight": 40,
  1142. "_overflow": 0,
  1143. "_enableWrapText": true,
  1144. "_font": null,
  1145. "_isSystemFontUsed": true,
  1146. "_spacingX": 0,
  1147. "_isItalic": false,
  1148. "_isBold": true,
  1149. "_isUnderline": false,
  1150. "_underlineHeight": 2,
  1151. "_cacheMode": 0,
  1152. "_id": ""
  1153. },
  1154. {
  1155. "__type__": "cc.CompPrefabInfo",
  1156. "fileId": "5fW0/Z7gVDd7PLebl7521E"
  1157. },
  1158. {
  1159. "__type__": "cc.PrefabInfo",
  1160. "root": {
  1161. "__id__": 1
  1162. },
  1163. "asset": {
  1164. "__id__": 0
  1165. },
  1166. "fileId": "0adZLIDyxCVLN54PAoEfp8",
  1167. "instance": null,
  1168. "targetOverrides": null,
  1169. "nestedPrefabInstanceRoots": null
  1170. },
  1171. {
  1172. "__type__": "cc.Node",
  1173. "_name": "lab_scene_name",
  1174. "_objFlags": 0,
  1175. "__editorExtras__": {},
  1176. "_parent": {
  1177. "__id__": 12
  1178. },
  1179. "_children": [],
  1180. "_active": true,
  1181. "_components": [
  1182. {
  1183. "__id__": 48
  1184. },
  1185. {
  1186. "__id__": 50
  1187. }
  1188. ],
  1189. "_prefab": {
  1190. "__id__": 52
  1191. },
  1192. "_lpos": {
  1193. "__type__": "cc.Vec3",
  1194. "x": -275.721,
  1195. "y": 0,
  1196. "z": 0
  1197. },
  1198. "_lrot": {
  1199. "__type__": "cc.Quat",
  1200. "x": 0,
  1201. "y": 0,
  1202. "z": 0,
  1203. "w": 1
  1204. },
  1205. "_lscale": {
  1206. "__type__": "cc.Vec3",
  1207. "x": 1,
  1208. "y": 1,
  1209. "z": 1
  1210. },
  1211. "_mobility": 0,
  1212. "_layer": 33554432,
  1213. "_euler": {
  1214. "__type__": "cc.Vec3",
  1215. "x": 0,
  1216. "y": 0,
  1217. "z": 0
  1218. },
  1219. "_id": ""
  1220. },
  1221. {
  1222. "__type__": "cc.UITransform",
  1223. "_name": "",
  1224. "_objFlags": 0,
  1225. "__editorExtras__": {},
  1226. "node": {
  1227. "__id__": 47
  1228. },
  1229. "_enabled": true,
  1230. "__prefab": {
  1231. "__id__": 49
  1232. },
  1233. "_contentSize": {
  1234. "__type__": "cc.Size",
  1235. "width": 160,
  1236. "height": 50.4
  1237. },
  1238. "_anchorPoint": {
  1239. "__type__": "cc.Vec2",
  1240. "x": 0.5,
  1241. "y": 0.5
  1242. },
  1243. "_id": ""
  1244. },
  1245. {
  1246. "__type__": "cc.CompPrefabInfo",
  1247. "fileId": "fczKHv0vZFTa+53ism8LTz"
  1248. },
  1249. {
  1250. "__type__": "cc.Label",
  1251. "_name": "",
  1252. "_objFlags": 0,
  1253. "__editorExtras__": {},
  1254. "node": {
  1255. "__id__": 47
  1256. },
  1257. "_enabled": true,
  1258. "__prefab": {
  1259. "__id__": 51
  1260. },
  1261. "_customMaterial": null,
  1262. "_srcBlendFactor": 2,
  1263. "_dstBlendFactor": 4,
  1264. "_color": {
  1265. "__type__": "cc.Color",
  1266. "r": 0,
  1267. "g": 0,
  1268. "b": 0,
  1269. "a": 255
  1270. },
  1271. "_string": "场景名称",
  1272. "_horizontalAlign": 1,
  1273. "_verticalAlign": 1,
  1274. "_actualFontSize": 40,
  1275. "_fontSize": 40,
  1276. "_fontFamily": "Arial",
  1277. "_lineHeight": 40,
  1278. "_overflow": 0,
  1279. "_enableWrapText": true,
  1280. "_font": null,
  1281. "_isSystemFontUsed": true,
  1282. "_spacingX": 0,
  1283. "_isItalic": false,
  1284. "_isBold": false,
  1285. "_isUnderline": false,
  1286. "_underlineHeight": 2,
  1287. "_cacheMode": 0,
  1288. "_id": ""
  1289. },
  1290. {
  1291. "__type__": "cc.CompPrefabInfo",
  1292. "fileId": "c9+E175oRDrakCoHdZ2pMV"
  1293. },
  1294. {
  1295. "__type__": "cc.PrefabInfo",
  1296. "root": {
  1297. "__id__": 1
  1298. },
  1299. "asset": {
  1300. "__id__": 0
  1301. },
  1302. "fileId": "55xER4sVlB4KmV9OP78LdT",
  1303. "instance": null,
  1304. "targetOverrides": null,
  1305. "nestedPrefabInstanceRoots": null
  1306. },
  1307. {
  1308. "__type__": "cc.Node",
  1309. "_name": "EditBox",
  1310. "_objFlags": 0,
  1311. "__editorExtras__": {},
  1312. "_parent": {
  1313. "__id__": 12
  1314. },
  1315. "_children": [
  1316. {
  1317. "__id__": 54
  1318. },
  1319. {
  1320. "__id__": 60
  1321. }
  1322. ],
  1323. "_active": true,
  1324. "_components": [
  1325. {
  1326. "__id__": 66
  1327. },
  1328. {
  1329. "__id__": 68
  1330. },
  1331. {
  1332. "__id__": 70
  1333. }
  1334. ],
  1335. "_prefab": {
  1336. "__id__": 72
  1337. },
  1338. "_lpos": {
  1339. "__type__": "cc.Vec3",
  1340. "x": 93.334,
  1341. "y": 0,
  1342. "z": 0
  1343. },
  1344. "_lrot": {
  1345. "__type__": "cc.Quat",
  1346. "x": 0,
  1347. "y": 0,
  1348. "z": 0,
  1349. "w": 1
  1350. },
  1351. "_lscale": {
  1352. "__type__": "cc.Vec3",
  1353. "x": 1,
  1354. "y": 1,
  1355. "z": 1
  1356. },
  1357. "_mobility": 0,
  1358. "_layer": 33554432,
  1359. "_euler": {
  1360. "__type__": "cc.Vec3",
  1361. "x": 0,
  1362. "y": 0,
  1363. "z": 0
  1364. },
  1365. "_id": ""
  1366. },
  1367. {
  1368. "__type__": "cc.Node",
  1369. "_name": "TEXT_LABEL",
  1370. "_objFlags": 0,
  1371. "__editorExtras__": {},
  1372. "_parent": {
  1373. "__id__": 53
  1374. },
  1375. "_children": [],
  1376. "_active": false,
  1377. "_components": [
  1378. {
  1379. "__id__": 55
  1380. },
  1381. {
  1382. "__id__": 57
  1383. }
  1384. ],
  1385. "_prefab": {
  1386. "__id__": 59
  1387. },
  1388. "_lpos": {
  1389. "__type__": "cc.Vec3",
  1390. "x": -248,
  1391. "y": 40,
  1392. "z": 0
  1393. },
  1394. "_lrot": {
  1395. "__type__": "cc.Quat",
  1396. "x": 0,
  1397. "y": 0,
  1398. "z": 0,
  1399. "w": 1
  1400. },
  1401. "_lscale": {
  1402. "__type__": "cc.Vec3",
  1403. "x": 1,
  1404. "y": 1,
  1405. "z": 1
  1406. },
  1407. "_mobility": 0,
  1408. "_layer": 33554432,
  1409. "_euler": {
  1410. "__type__": "cc.Vec3",
  1411. "x": 0,
  1412. "y": 0,
  1413. "z": 0
  1414. },
  1415. "_id": ""
  1416. },
  1417. {
  1418. "__type__": "cc.UITransform",
  1419. "_name": "",
  1420. "_objFlags": 0,
  1421. "__editorExtras__": {},
  1422. "node": {
  1423. "__id__": 54
  1424. },
  1425. "_enabled": true,
  1426. "__prefab": {
  1427. "__id__": 56
  1428. },
  1429. "_contentSize": {
  1430. "__type__": "cc.Size",
  1431. "width": 498,
  1432. "height": 80
  1433. },
  1434. "_anchorPoint": {
  1435. "__type__": "cc.Vec2",
  1436. "x": 0,
  1437. "y": 1
  1438. },
  1439. "_id": ""
  1440. },
  1441. {
  1442. "__type__": "cc.CompPrefabInfo",
  1443. "fileId": "3d2QhJeD1FSaa7q98qA59k"
  1444. },
  1445. {
  1446. "__type__": "cc.Label",
  1447. "_name": "",
  1448. "_objFlags": 0,
  1449. "__editorExtras__": {},
  1450. "node": {
  1451. "__id__": 54
  1452. },
  1453. "_enabled": true,
  1454. "__prefab": {
  1455. "__id__": 58
  1456. },
  1457. "_customMaterial": null,
  1458. "_srcBlendFactor": 2,
  1459. "_dstBlendFactor": 4,
  1460. "_color": {
  1461. "__type__": "cc.Color",
  1462. "r": 255,
  1463. "g": 255,
  1464. "b": 255,
  1465. "a": 255
  1466. },
  1467. "_string": "",
  1468. "_horizontalAlign": 0,
  1469. "_verticalAlign": 1,
  1470. "_actualFontSize": 40,
  1471. "_fontSize": 40,
  1472. "_fontFamily": "Arial",
  1473. "_lineHeight": 40,
  1474. "_overflow": 1,
  1475. "_enableWrapText": false,
  1476. "_font": null,
  1477. "_isSystemFontUsed": true,
  1478. "_spacingX": 0,
  1479. "_isItalic": false,
  1480. "_isBold": false,
  1481. "_isUnderline": false,
  1482. "_underlineHeight": 2,
  1483. "_cacheMode": 0,
  1484. "_id": ""
  1485. },
  1486. {
  1487. "__type__": "cc.CompPrefabInfo",
  1488. "fileId": "7dDptEPnxN7pdAEHwv1ShZ"
  1489. },
  1490. {
  1491. "__type__": "cc.PrefabInfo",
  1492. "root": {
  1493. "__id__": 1
  1494. },
  1495. "asset": {
  1496. "__id__": 0
  1497. },
  1498. "fileId": "0aFFdPjvpFtoY+0P7syGtw",
  1499. "instance": null,
  1500. "targetOverrides": null,
  1501. "nestedPrefabInstanceRoots": null
  1502. },
  1503. {
  1504. "__type__": "cc.Node",
  1505. "_name": "PLACEHOLDER_LABEL",
  1506. "_objFlags": 0,
  1507. "__editorExtras__": {},
  1508. "_parent": {
  1509. "__id__": 53
  1510. },
  1511. "_children": [],
  1512. "_active": true,
  1513. "_components": [
  1514. {
  1515. "__id__": 61
  1516. },
  1517. {
  1518. "__id__": 63
  1519. }
  1520. ],
  1521. "_prefab": {
  1522. "__id__": 65
  1523. },
  1524. "_lpos": {
  1525. "__type__": "cc.Vec3",
  1526. "x": -248,
  1527. "y": 40,
  1528. "z": 0
  1529. },
  1530. "_lrot": {
  1531. "__type__": "cc.Quat",
  1532. "x": 0,
  1533. "y": 0,
  1534. "z": 0,
  1535. "w": 1
  1536. },
  1537. "_lscale": {
  1538. "__type__": "cc.Vec3",
  1539. "x": 1,
  1540. "y": 1,
  1541. "z": 1
  1542. },
  1543. "_mobility": 0,
  1544. "_layer": 33554432,
  1545. "_euler": {
  1546. "__type__": "cc.Vec3",
  1547. "x": 0,
  1548. "y": 0,
  1549. "z": 0
  1550. },
  1551. "_id": ""
  1552. },
  1553. {
  1554. "__type__": "cc.UITransform",
  1555. "_name": "",
  1556. "_objFlags": 0,
  1557. "__editorExtras__": {},
  1558. "node": {
  1559. "__id__": 60
  1560. },
  1561. "_enabled": true,
  1562. "__prefab": {
  1563. "__id__": 62
  1564. },
  1565. "_contentSize": {
  1566. "__type__": "cc.Size",
  1567. "width": 498,
  1568. "height": 80
  1569. },
  1570. "_anchorPoint": {
  1571. "__type__": "cc.Vec2",
  1572. "x": 0,
  1573. "y": 1
  1574. },
  1575. "_id": ""
  1576. },
  1577. {
  1578. "__type__": "cc.CompPrefabInfo",
  1579. "fileId": "e7dXcxDwNH5YDXZgpaQZAo"
  1580. },
  1581. {
  1582. "__type__": "cc.Label",
  1583. "_name": "",
  1584. "_objFlags": 0,
  1585. "__editorExtras__": {},
  1586. "node": {
  1587. "__id__": 60
  1588. },
  1589. "_enabled": true,
  1590. "__prefab": {
  1591. "__id__": 64
  1592. },
  1593. "_customMaterial": null,
  1594. "_srcBlendFactor": 2,
  1595. "_dstBlendFactor": 4,
  1596. "_color": {
  1597. "__type__": "cc.Color",
  1598. "r": 187,
  1599. "g": 187,
  1600. "b": 187,
  1601. "a": 255
  1602. },
  1603. "_string": "此处输入场景名称...",
  1604. "_horizontalAlign": 0,
  1605. "_verticalAlign": 1,
  1606. "_actualFontSize": 40,
  1607. "_fontSize": 40,
  1608. "_fontFamily": "Arial",
  1609. "_lineHeight": 80,
  1610. "_overflow": 1,
  1611. "_enableWrapText": false,
  1612. "_font": null,
  1613. "_isSystemFontUsed": true,
  1614. "_spacingX": 0,
  1615. "_isItalic": false,
  1616. "_isBold": false,
  1617. "_isUnderline": false,
  1618. "_underlineHeight": 2,
  1619. "_cacheMode": 0,
  1620. "_id": ""
  1621. },
  1622. {
  1623. "__type__": "cc.CompPrefabInfo",
  1624. "fileId": "cbacW+ziVCu5ekm5p2to+4"
  1625. },
  1626. {
  1627. "__type__": "cc.PrefabInfo",
  1628. "root": {
  1629. "__id__": 1
  1630. },
  1631. "asset": {
  1632. "__id__": 0
  1633. },
  1634. "fileId": "a7teiT/BhMmYmKAqJBHjc0",
  1635. "instance": null,
  1636. "targetOverrides": null,
  1637. "nestedPrefabInstanceRoots": null
  1638. },
  1639. {
  1640. "__type__": "cc.UITransform",
  1641. "_name": "",
  1642. "_objFlags": 0,
  1643. "__editorExtras__": {},
  1644. "node": {
  1645. "__id__": 53
  1646. },
  1647. "_enabled": true,
  1648. "__prefab": {
  1649. "__id__": 67
  1650. },
  1651. "_contentSize": {
  1652. "__type__": "cc.Size",
  1653. "width": 500,
  1654. "height": 80
  1655. },
  1656. "_anchorPoint": {
  1657. "__type__": "cc.Vec2",
  1658. "x": 0.5,
  1659. "y": 0.5
  1660. },
  1661. "_id": ""
  1662. },
  1663. {
  1664. "__type__": "cc.CompPrefabInfo",
  1665. "fileId": "4aN5EF45lKmYwoVz5qwi0i"
  1666. },
  1667. {
  1668. "__type__": "cc.Sprite",
  1669. "_name": "",
  1670. "_objFlags": 0,
  1671. "__editorExtras__": {},
  1672. "node": {
  1673. "__id__": 53
  1674. },
  1675. "_enabled": true,
  1676. "__prefab": {
  1677. "__id__": 69
  1678. },
  1679. "_customMaterial": null,
  1680. "_srcBlendFactor": 2,
  1681. "_dstBlendFactor": 4,
  1682. "_color": {
  1683. "__type__": "cc.Color",
  1684. "r": 255,
  1685. "g": 255,
  1686. "b": 255,
  1687. "a": 255
  1688. },
  1689. "_spriteFrame": {
  1690. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  1691. "__expectedType__": "cc.SpriteFrame"
  1692. },
  1693. "_type": 1,
  1694. "_fillType": 0,
  1695. "_sizeMode": 0,
  1696. "_fillCenter": {
  1697. "__type__": "cc.Vec2",
  1698. "x": 0,
  1699. "y": 0
  1700. },
  1701. "_fillStart": 0,
  1702. "_fillRange": 0,
  1703. "_isTrimmedMode": true,
  1704. "_useGrayscale": false,
  1705. "_atlas": null,
  1706. "_id": ""
  1707. },
  1708. {
  1709. "__type__": "cc.CompPrefabInfo",
  1710. "fileId": "0fOJit9atLjKabmyQjiDTz"
  1711. },
  1712. {
  1713. "__type__": "cc.EditBox",
  1714. "_name": "",
  1715. "_objFlags": 0,
  1716. "__editorExtras__": {},
  1717. "node": {
  1718. "__id__": 53
  1719. },
  1720. "_enabled": true,
  1721. "__prefab": {
  1722. "__id__": 71
  1723. },
  1724. "editingDidBegan": [],
  1725. "textChanged": [],
  1726. "editingDidEnded": [],
  1727. "editingReturn": [],
  1728. "_textLabel": {
  1729. "__id__": 57
  1730. },
  1731. "_placeholderLabel": {
  1732. "__id__": 63
  1733. },
  1734. "_returnType": 0,
  1735. "_string": "",
  1736. "_tabIndex": 0,
  1737. "_backgroundImage": {
  1738. "__uuid__": "bd1bcaba-bd7d-4a71-b143-997c882383e4@f9941",
  1739. "__expectedType__": "cc.SpriteFrame"
  1740. },
  1741. "_inputFlag": 5,
  1742. "_inputMode": 6,
  1743. "_maxLength": 200,
  1744. "_id": ""
  1745. },
  1746. {
  1747. "__type__": "cc.CompPrefabInfo",
  1748. "fileId": "daggjXoV5CT5g9lHrdXsnV"
  1749. },
  1750. {
  1751. "__type__": "cc.PrefabInfo",
  1752. "root": {
  1753. "__id__": 1
  1754. },
  1755. "asset": {
  1756. "__id__": 0
  1757. },
  1758. "fileId": "87tbPUf8tEfYWfHWI8m665",
  1759. "instance": null,
  1760. "targetOverrides": null,
  1761. "nestedPrefabInstanceRoots": null
  1762. },
  1763. {
  1764. "__type__": "cc.Node",
  1765. "_name": "toggle_copy_only_widget",
  1766. "_objFlags": 0,
  1767. "__editorExtras__": {},
  1768. "_parent": {
  1769. "__id__": 12
  1770. },
  1771. "_children": [
  1772. {
  1773. "__id__": 74
  1774. },
  1775. {
  1776. "__id__": 80
  1777. }
  1778. ],
  1779. "_active": true,
  1780. "_components": [
  1781. {
  1782. "__id__": 86
  1783. },
  1784. {
  1785. "__id__": 88
  1786. },
  1787. {
  1788. "__id__": 90
  1789. }
  1790. ],
  1791. "_prefab": {
  1792. "__id__": 92
  1793. },
  1794. "_lpos": {
  1795. "__type__": "cc.Vec3",
  1796. "x": -100,
  1797. "y": -118,
  1798. "z": 0
  1799. },
  1800. "_lrot": {
  1801. "__type__": "cc.Quat",
  1802. "x": 0,
  1803. "y": 0,
  1804. "z": 0,
  1805. "w": 1
  1806. },
  1807. "_lscale": {
  1808. "__type__": "cc.Vec3",
  1809. "x": 1,
  1810. "y": 1,
  1811. "z": 1
  1812. },
  1813. "_mobility": 0,
  1814. "_layer": 33554432,
  1815. "_euler": {
  1816. "__type__": "cc.Vec3",
  1817. "x": 0,
  1818. "y": 0,
  1819. "z": 0
  1820. },
  1821. "_id": ""
  1822. },
  1823. {
  1824. "__type__": "cc.Node",
  1825. "_name": "Checkmark",
  1826. "_objFlags": 0,
  1827. "__editorExtras__": {},
  1828. "_parent": {
  1829. "__id__": 73
  1830. },
  1831. "_children": [],
  1832. "_active": true,
  1833. "_components": [
  1834. {
  1835. "__id__": 75
  1836. },
  1837. {
  1838. "__id__": 77
  1839. }
  1840. ],
  1841. "_prefab": {
  1842. "__id__": 79
  1843. },
  1844. "_lpos": {
  1845. "__type__": "cc.Vec3",
  1846. "x": 0,
  1847. "y": 0,
  1848. "z": 0
  1849. },
  1850. "_lrot": {
  1851. "__type__": "cc.Quat",
  1852. "x": 0,
  1853. "y": 0,
  1854. "z": 0,
  1855. "w": 1
  1856. },
  1857. "_lscale": {
  1858. "__type__": "cc.Vec3",
  1859. "x": 1,
  1860. "y": 1,
  1861. "z": 1
  1862. },
  1863. "_mobility": 0,
  1864. "_layer": 33554432,
  1865. "_euler": {
  1866. "__type__": "cc.Vec3",
  1867. "x": 0,
  1868. "y": 0,
  1869. "z": 0
  1870. },
  1871. "_id": ""
  1872. },
  1873. {
  1874. "__type__": "cc.UITransform",
  1875. "_name": "",
  1876. "_objFlags": 0,
  1877. "__editorExtras__": {},
  1878. "node": {
  1879. "__id__": 74
  1880. },
  1881. "_enabled": true,
  1882. "__prefab": {
  1883. "__id__": 76
  1884. },
  1885. "_contentSize": {
  1886. "__type__": "cc.Size",
  1887. "width": 26,
  1888. "height": 26
  1889. },
  1890. "_anchorPoint": {
  1891. "__type__": "cc.Vec2",
  1892. "x": 0.5,
  1893. "y": 0.5
  1894. },
  1895. "_id": ""
  1896. },
  1897. {
  1898. "__type__": "cc.CompPrefabInfo",
  1899. "fileId": "ddboYap1pJx62f85B2+/Ih"
  1900. },
  1901. {
  1902. "__type__": "cc.Sprite",
  1903. "_name": "",
  1904. "_objFlags": 0,
  1905. "__editorExtras__": {},
  1906. "node": {
  1907. "__id__": 74
  1908. },
  1909. "_enabled": true,
  1910. "__prefab": {
  1911. "__id__": 78
  1912. },
  1913. "_customMaterial": null,
  1914. "_srcBlendFactor": 2,
  1915. "_dstBlendFactor": 4,
  1916. "_color": {
  1917. "__type__": "cc.Color",
  1918. "r": 255,
  1919. "g": 255,
  1920. "b": 255,
  1921. "a": 255
  1922. },
  1923. "_spriteFrame": {
  1924. "__uuid__": "158e7e52-3220-4cd7-9694-713e0e6e8278@f9941",
  1925. "__expectedType__": "cc.SpriteFrame"
  1926. },
  1927. "_type": 0,
  1928. "_fillType": 0,
  1929. "_sizeMode": 0,
  1930. "_fillCenter": {
  1931. "__type__": "cc.Vec2",
  1932. "x": 0,
  1933. "y": 0
  1934. },
  1935. "_fillStart": 0,
  1936. "_fillRange": 0,
  1937. "_isTrimmedMode": true,
  1938. "_useGrayscale": false,
  1939. "_atlas": null,
  1940. "_id": ""
  1941. },
  1942. {
  1943. "__type__": "cc.CompPrefabInfo",
  1944. "fileId": "41Ob4Iz/FDCYoG9Ami5n4I"
  1945. },
  1946. {
  1947. "__type__": "cc.PrefabInfo",
  1948. "root": {
  1949. "__id__": 1
  1950. },
  1951. "asset": {
  1952. "__id__": 0
  1953. },
  1954. "fileId": "ebQ5ZKJCND77jH2VAwsh68",
  1955. "instance": null,
  1956. "targetOverrides": null,
  1957. "nestedPrefabInstanceRoots": null
  1958. },
  1959. {
  1960. "__type__": "cc.Node",
  1961. "_name": "Label",
  1962. "_objFlags": 0,
  1963. "__editorExtras__": {},
  1964. "_parent": {
  1965. "__id__": 73
  1966. },
  1967. "_children": [],
  1968. "_active": true,
  1969. "_components": [
  1970. {
  1971. "__id__": 81
  1972. },
  1973. {
  1974. "__id__": 83
  1975. }
  1976. ],
  1977. "_prefab": {
  1978. "__id__": 85
  1979. },
  1980. "_lpos": {
  1981. "__type__": "cc.Vec3",
  1982. "x": 110,
  1983. "y": 0,
  1984. "z": 0
  1985. },
  1986. "_lrot": {
  1987. "__type__": "cc.Quat",
  1988. "x": 0,
  1989. "y": 0,
  1990. "z": 0,
  1991. "w": 1
  1992. },
  1993. "_lscale": {
  1994. "__type__": "cc.Vec3",
  1995. "x": 1,
  1996. "y": 1,
  1997. "z": 1
  1998. },
  1999. "_mobility": 0,
  2000. "_layer": 33554432,
  2001. "_euler": {
  2002. "__type__": "cc.Vec3",
  2003. "x": 0,
  2004. "y": 0,
  2005. "z": 0
  2006. },
  2007. "_id": ""
  2008. },
  2009. {
  2010. "__type__": "cc.UITransform",
  2011. "_name": "",
  2012. "_objFlags": 0,
  2013. "__editorExtras__": {},
  2014. "node": {
  2015. "__id__": 80
  2016. },
  2017. "_enabled": true,
  2018. "__prefab": {
  2019. "__id__": 82
  2020. },
  2021. "_contentSize": {
  2022. "__type__": "cc.Size",
  2023. "width": 150,
  2024. "height": 50.4
  2025. },
  2026. "_anchorPoint": {
  2027. "__type__": "cc.Vec2",
  2028. "x": 0.5,
  2029. "y": 0.5
  2030. },
  2031. "_id": ""
  2032. },
  2033. {
  2034. "__type__": "cc.CompPrefabInfo",
  2035. "fileId": "58ILaB9wZBSaA5rPaotcgV"
  2036. },
  2037. {
  2038. "__type__": "cc.Label",
  2039. "_name": "",
  2040. "_objFlags": 0,
  2041. "__editorExtras__": {},
  2042. "node": {
  2043. "__id__": 80
  2044. },
  2045. "_enabled": true,
  2046. "__prefab": {
  2047. "__id__": 84
  2048. },
  2049. "_customMaterial": null,
  2050. "_srcBlendFactor": 2,
  2051. "_dstBlendFactor": 4,
  2052. "_color": {
  2053. "__type__": "cc.Color",
  2054. "r": 0,
  2055. "g": 0,
  2056. "b": 0,
  2057. "a": 255
  2058. },
  2059. "_string": "只复制控件",
  2060. "_horizontalAlign": 1,
  2061. "_verticalAlign": 1,
  2062. "_actualFontSize": 30,
  2063. "_fontSize": 30,
  2064. "_fontFamily": "Arial",
  2065. "_lineHeight": 40,
  2066. "_overflow": 0,
  2067. "_enableWrapText": true,
  2068. "_font": null,
  2069. "_isSystemFontUsed": true,
  2070. "_spacingX": 0,
  2071. "_isItalic": false,
  2072. "_isBold": false,
  2073. "_isUnderline": false,
  2074. "_underlineHeight": 2,
  2075. "_cacheMode": 0,
  2076. "_id": ""
  2077. },
  2078. {
  2079. "__type__": "cc.CompPrefabInfo",
  2080. "fileId": "4c95tUzR9LC42Rmw9ZrkGW"
  2081. },
  2082. {
  2083. "__type__": "cc.PrefabInfo",
  2084. "root": {
  2085. "__id__": 1
  2086. },
  2087. "asset": {
  2088. "__id__": 0
  2089. },
  2090. "fileId": "0b6yfRlqNI16iyDuXf4cwC",
  2091. "instance": null,
  2092. "targetOverrides": null,
  2093. "nestedPrefabInstanceRoots": null
  2094. },
  2095. {
  2096. "__type__": "cc.UITransform",
  2097. "_name": "",
  2098. "_objFlags": 0,
  2099. "__editorExtras__": {},
  2100. "node": {
  2101. "__id__": 73
  2102. },
  2103. "_enabled": true,
  2104. "__prefab": {
  2105. "__id__": 87
  2106. },
  2107. "_contentSize": {
  2108. "__type__": "cc.Size",
  2109. "width": 40,
  2110. "height": 40
  2111. },
  2112. "_anchorPoint": {
  2113. "__type__": "cc.Vec2",
  2114. "x": 0.5,
  2115. "y": 0.5
  2116. },
  2117. "_id": ""
  2118. },
  2119. {
  2120. "__type__": "cc.CompPrefabInfo",
  2121. "fileId": "656LdjrrZOxqn70GSC9jBk"
  2122. },
  2123. {
  2124. "__type__": "cc.Sprite",
  2125. "_name": "",
  2126. "_objFlags": 0,
  2127. "__editorExtras__": {},
  2128. "node": {
  2129. "__id__": 73
  2130. },
  2131. "_enabled": true,
  2132. "__prefab": {
  2133. "__id__": 89
  2134. },
  2135. "_customMaterial": null,
  2136. "_srcBlendFactor": 2,
  2137. "_dstBlendFactor": 4,
  2138. "_color": {
  2139. "__type__": "cc.Color",
  2140. "r": 255,
  2141. "g": 255,
  2142. "b": 255,
  2143. "a": 255
  2144. },
  2145. "_spriteFrame": {
  2146. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2147. "__expectedType__": "cc.SpriteFrame"
  2148. },
  2149. "_type": 0,
  2150. "_fillType": 0,
  2151. "_sizeMode": 0,
  2152. "_fillCenter": {
  2153. "__type__": "cc.Vec2",
  2154. "x": 0,
  2155. "y": 0
  2156. },
  2157. "_fillStart": 0,
  2158. "_fillRange": 0,
  2159. "_isTrimmedMode": true,
  2160. "_useGrayscale": false,
  2161. "_atlas": null,
  2162. "_id": ""
  2163. },
  2164. {
  2165. "__type__": "cc.CompPrefabInfo",
  2166. "fileId": "edrQurvrFDwba6uWRlZZ1p"
  2167. },
  2168. {
  2169. "__type__": "cc.Toggle",
  2170. "_name": "",
  2171. "_objFlags": 0,
  2172. "__editorExtras__": {},
  2173. "node": {
  2174. "__id__": 73
  2175. },
  2176. "_enabled": true,
  2177. "__prefab": {
  2178. "__id__": 91
  2179. },
  2180. "clickEvents": [],
  2181. "_interactable": true,
  2182. "_transition": 0,
  2183. "_normalColor": {
  2184. "__type__": "cc.Color",
  2185. "r": 214,
  2186. "g": 214,
  2187. "b": 214,
  2188. "a": 255
  2189. },
  2190. "_hoverColor": {
  2191. "__type__": "cc.Color",
  2192. "r": 211,
  2193. "g": 211,
  2194. "b": 211,
  2195. "a": 255
  2196. },
  2197. "_pressedColor": {
  2198. "__type__": "cc.Color",
  2199. "r": 255,
  2200. "g": 255,
  2201. "b": 255,
  2202. "a": 255
  2203. },
  2204. "_disabledColor": {
  2205. "__type__": "cc.Color",
  2206. "r": 124,
  2207. "g": 124,
  2208. "b": 124,
  2209. "a": 255
  2210. },
  2211. "_normalSprite": {
  2212. "__uuid__": "11bdc4b0-64a8-4eb7-a2a7-9fb9e233e977@f9941",
  2213. "__expectedType__": "cc.SpriteFrame"
  2214. },
  2215. "_hoverSprite": null,
  2216. "_pressedSprite": null,
  2217. "_disabledSprite": null,
  2218. "_duration": 0.1,
  2219. "_zoomScale": 1.2,
  2220. "_target": {
  2221. "__id__": 73
  2222. },
  2223. "checkEvents": [],
  2224. "_isChecked": true,
  2225. "_checkMark": {
  2226. "__id__": 77
  2227. },
  2228. "_id": ""
  2229. },
  2230. {
  2231. "__type__": "cc.CompPrefabInfo",
  2232. "fileId": "66B4WrSylH3IhhqC4+Mmt/"
  2233. },
  2234. {
  2235. "__type__": "cc.PrefabInfo",
  2236. "root": {
  2237. "__id__": 1
  2238. },
  2239. "asset": {
  2240. "__id__": 0
  2241. },
  2242. "fileId": "e1C4ZVxzhGSYyZQd/K8CBU",
  2243. "instance": null,
  2244. "targetOverrides": null,
  2245. "nestedPrefabInstanceRoots": null
  2246. },
  2247. {
  2248. "__type__": "cc.UITransform",
  2249. "_name": "",
  2250. "_objFlags": 0,
  2251. "__editorExtras__": {},
  2252. "node": {
  2253. "__id__": 12
  2254. },
  2255. "_enabled": true,
  2256. "__prefab": {
  2257. "__id__": 94
  2258. },
  2259. "_contentSize": {
  2260. "__type__": "cc.Size",
  2261. "width": 800,
  2262. "height": 650
  2263. },
  2264. "_anchorPoint": {
  2265. "__type__": "cc.Vec2",
  2266. "x": 0.5,
  2267. "y": 0.5
  2268. },
  2269. "_id": ""
  2270. },
  2271. {
  2272. "__type__": "cc.CompPrefabInfo",
  2273. "fileId": "10lBB/7glOVLvsEI7FWN9h"
  2274. },
  2275. {
  2276. "__type__": "cc.Sprite",
  2277. "_name": "",
  2278. "_objFlags": 0,
  2279. "__editorExtras__": {},
  2280. "node": {
  2281. "__id__": 12
  2282. },
  2283. "_enabled": true,
  2284. "__prefab": {
  2285. "__id__": 96
  2286. },
  2287. "_customMaterial": null,
  2288. "_srcBlendFactor": 2,
  2289. "_dstBlendFactor": 4,
  2290. "_color": {
  2291. "__type__": "cc.Color",
  2292. "r": 255,
  2293. "g": 255,
  2294. "b": 255,
  2295. "a": 255
  2296. },
  2297. "_spriteFrame": {
  2298. "__uuid__": "b730527c-3233-41c2-aaf7-7cdab58f9749@f9941",
  2299. "__expectedType__": "cc.SpriteFrame"
  2300. },
  2301. "_type": 1,
  2302. "_fillType": 0,
  2303. "_sizeMode": 0,
  2304. "_fillCenter": {
  2305. "__type__": "cc.Vec2",
  2306. "x": 0,
  2307. "y": 0
  2308. },
  2309. "_fillStart": 0,
  2310. "_fillRange": 0,
  2311. "_isTrimmedMode": true,
  2312. "_useGrayscale": false,
  2313. "_atlas": null,
  2314. "_id": ""
  2315. },
  2316. {
  2317. "__type__": "cc.CompPrefabInfo",
  2318. "fileId": "e3JTgKtKVFI6AxXXAREzWE"
  2319. },
  2320. {
  2321. "__type__": "cc.PrefabInfo",
  2322. "root": {
  2323. "__id__": 1
  2324. },
  2325. "asset": {
  2326. "__id__": 0
  2327. },
  2328. "fileId": "453bODY1FBGLew0Hyn+7mL",
  2329. "instance": null,
  2330. "targetOverrides": null,
  2331. "nestedPrefabInstanceRoots": null
  2332. },
  2333. {
  2334. "__type__": "cc.UITransform",
  2335. "_name": "",
  2336. "_objFlags": 0,
  2337. "__editorExtras__": {},
  2338. "node": {
  2339. "__id__": 1
  2340. },
  2341. "_enabled": true,
  2342. "__prefab": {
  2343. "__id__": 99
  2344. },
  2345. "_contentSize": {
  2346. "__type__": "cc.Size",
  2347. "width": 1919.9999999999998,
  2348. "height": 1919.9999999999998
  2349. },
  2350. "_anchorPoint": {
  2351. "__type__": "cc.Vec2",
  2352. "x": 0.5,
  2353. "y": 0.5
  2354. },
  2355. "_id": ""
  2356. },
  2357. {
  2358. "__type__": "cc.CompPrefabInfo",
  2359. "fileId": "8agBiBILZK9I8UqsEQNnVc"
  2360. },
  2361. {
  2362. "__type__": "cc.Widget",
  2363. "_name": "",
  2364. "_objFlags": 0,
  2365. "__editorExtras__": {},
  2366. "node": {
  2367. "__id__": 1
  2368. },
  2369. "_enabled": true,
  2370. "__prefab": {
  2371. "__id__": 101
  2372. },
  2373. "_alignFlags": 45,
  2374. "_target": null,
  2375. "_left": 0,
  2376. "_right": 0,
  2377. "_top": 0,
  2378. "_bottom": 0,
  2379. "_horizontalCenter": 0,
  2380. "_verticalCenter": 0,
  2381. "_isAbsLeft": true,
  2382. "_isAbsRight": true,
  2383. "_isAbsTop": true,
  2384. "_isAbsBottom": true,
  2385. "_isAbsHorizontalCenter": true,
  2386. "_isAbsVerticalCenter": true,
  2387. "_originalWidth": 100,
  2388. "_originalHeight": 100,
  2389. "_alignMode": 2,
  2390. "_lockFlags": 0,
  2391. "_id": ""
  2392. },
  2393. {
  2394. "__type__": "cc.CompPrefabInfo",
  2395. "fileId": "cejMf3HgZKP5nPw+THjuI4"
  2396. },
  2397. {
  2398. "__type__": "1076aKT28hNTaLMmSPPvZ7a",
  2399. "_name": "",
  2400. "_objFlags": 0,
  2401. "__editorExtras__": {},
  2402. "node": {
  2403. "__id__": 1
  2404. },
  2405. "_enabled": true,
  2406. "__prefab": {
  2407. "__id__": 103
  2408. },
  2409. "btn_sure": {
  2410. "__id__": 13
  2411. },
  2412. "btn_cancel": {
  2413. "__id__": 27
  2414. },
  2415. "editBox_scene_name": {
  2416. "__id__": 53
  2417. },
  2418. "toggle_copy_only_widget": {
  2419. "__id__": 90
  2420. },
  2421. "_id": ""
  2422. },
  2423. {
  2424. "__type__": "cc.CompPrefabInfo",
  2425. "fileId": "a4EBiLsmBKw4E7Ds9cRLCF"
  2426. },
  2427. {
  2428. "__type__": "cc.PrefabInfo",
  2429. "root": {
  2430. "__id__": 1
  2431. },
  2432. "asset": {
  2433. "__id__": 0
  2434. },
  2435. "fileId": "c46/YsCPVOJYA4mWEpNYRx",
  2436. "instance": null,
  2437. "targetOverrides": null
  2438. }
  2439. ]