LuckContainer.prefab 36 KB

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