debug_alert.prefab 42 KB

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