NewPlayer.prefab 35 KB

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