ClubScorePswLogon.prefab 41 KB

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