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