TipsLayer.prefab 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "TipsLayer",
  5. "_objFlags": 0,
  6. "__editorExtras__": {},
  7. "_native": "",
  8. "data": {
  9. "__id__": 1
  10. },
  11. "optimizationPolicy": 0,
  12. "persistent": false
  13. },
  14. {
  15. "__type__": "cc.Node",
  16. "_name": "TipsLayer",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 10
  26. },
  27. {
  28. "__id__": 18
  29. },
  30. {
  31. "__id__": 26
  32. },
  33. {
  34. "__id__": 38
  35. },
  36. {
  37. "__id__": 102
  38. }
  39. ],
  40. "_active": true,
  41. "_components": [
  42. {
  43. "__id__": 113
  44. },
  45. {
  46. "__id__": 115
  47. },
  48. {
  49. "__id__": 117
  50. }
  51. ],
  52. "_prefab": {
  53. "__id__": 119
  54. },
  55. "_lpos": {
  56. "__type__": "cc.Vec3",
  57. "x": 0,
  58. "y": 0,
  59. "z": 0
  60. },
  61. "_lrot": {
  62. "__type__": "cc.Quat",
  63. "x": 0,
  64. "y": 0,
  65. "z": 0,
  66. "w": 1
  67. },
  68. "_lscale": {
  69. "__type__": "cc.Vec3",
  70. "x": 1,
  71. "y": 1,
  72. "z": 1
  73. },
  74. "_mobility": 0,
  75. "_layer": 33554432,
  76. "_euler": {
  77. "__type__": "cc.Vec3",
  78. "x": 0,
  79. "y": 0,
  80. "z": 0
  81. },
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "bg_main-002",
  87. "_objFlags": 0,
  88. "__editorExtras__": {},
  89. "_parent": {
  90. "__id__": 1
  91. },
  92. "_children": [],
  93. "_active": true,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 5
  100. },
  101. {
  102. "__id__": 7
  103. }
  104. ],
  105. "_prefab": {
  106. "__id__": 9
  107. },
  108. "_lpos": {
  109. "__type__": "cc.Vec3",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0
  113. },
  114. "_lrot": {
  115. "__type__": "cc.Quat",
  116. "x": 0,
  117. "y": 0,
  118. "z": 0,
  119. "w": 1
  120. },
  121. "_lscale": {
  122. "__type__": "cc.Vec3",
  123. "x": 1,
  124. "y": 1,
  125. "z": 1
  126. },
  127. "_mobility": 0,
  128. "_layer": 33554432,
  129. "_euler": {
  130. "__type__": "cc.Vec3",
  131. "x": 0,
  132. "y": 0,
  133. "z": 0
  134. },
  135. "_id": ""
  136. },
  137. {
  138. "__type__": "cc.UITransform",
  139. "_name": "",
  140. "_objFlags": 0,
  141. "__editorExtras__": {},
  142. "node": {
  143. "__id__": 2
  144. },
  145. "_enabled": true,
  146. "__prefab": {
  147. "__id__": 4
  148. },
  149. "_contentSize": {
  150. "__type__": "cc.Size",
  151. "width": 720,
  152. "height": 1280
  153. },
  154. "_anchorPoint": {
  155. "__type__": "cc.Vec2",
  156. "x": 0.5,
  157. "y": 0.5
  158. },
  159. "_id": ""
  160. },
  161. {
  162. "__type__": "cc.CompPrefabInfo",
  163. "fileId": "493OoRpyJPqb4B2F5MVrKz"
  164. },
  165. {
  166. "__type__": "cc.Sprite",
  167. "_name": "",
  168. "_objFlags": 0,
  169. "__editorExtras__": {},
  170. "node": {
  171. "__id__": 2
  172. },
  173. "_enabled": true,
  174. "__prefab": {
  175. "__id__": 6
  176. },
  177. "_customMaterial": null,
  178. "_srcBlendFactor": 2,
  179. "_dstBlendFactor": 4,
  180. "_color": {
  181. "__type__": "cc.Color",
  182. "r": 255,
  183. "g": 255,
  184. "b": 255,
  185. "a": 255
  186. },
  187. "_spriteFrame": {
  188. "__uuid__": "bdaf962d-54ff-4348-bde8-9db6f3ddfcac@f9941",
  189. "__expectedType__": "cc.SpriteFrame"
  190. },
  191. "_type": 0,
  192. "_fillType": 0,
  193. "_sizeMode": 1,
  194. "_fillCenter": {
  195. "__type__": "cc.Vec2",
  196. "x": 0,
  197. "y": 0
  198. },
  199. "_fillStart": 0,
  200. "_fillRange": 0,
  201. "_isTrimmedMode": true,
  202. "_useGrayscale": false,
  203. "_atlas": null,
  204. "_id": ""
  205. },
  206. {
  207. "__type__": "cc.CompPrefabInfo",
  208. "fileId": "ea4COtOR9K6aPzelsq+I8a"
  209. },
  210. {
  211. "__type__": "cc.UIOpacity",
  212. "_name": "",
  213. "_objFlags": 0,
  214. "__editorExtras__": {},
  215. "node": {
  216. "__id__": 2
  217. },
  218. "_enabled": true,
  219. "__prefab": {
  220. "__id__": 8
  221. },
  222. "_opacity": 180,
  223. "_id": ""
  224. },
  225. {
  226. "__type__": "cc.CompPrefabInfo",
  227. "fileId": "b0Fd7YSupEXqw+0N7khzoa"
  228. },
  229. {
  230. "__type__": "cc.PrefabInfo",
  231. "root": {
  232. "__id__": 1
  233. },
  234. "asset": {
  235. "__id__": 0
  236. },
  237. "fileId": "advYbO/hFNN6TmmoU3U3o8",
  238. "instance": null,
  239. "targetOverrides": null,
  240. "nestedPrefabInstanceRoots": null
  241. },
  242. {
  243. "__type__": "cc.Node",
  244. "_name": "bg_main-001",
  245. "_objFlags": 0,
  246. "__editorExtras__": {},
  247. "_parent": {
  248. "__id__": 1
  249. },
  250. "_children": [],
  251. "_active": true,
  252. "_components": [
  253. {
  254. "__id__": 11
  255. },
  256. {
  257. "__id__": 13
  258. },
  259. {
  260. "__id__": 15
  261. }
  262. ],
  263. "_prefab": {
  264. "__id__": 17
  265. },
  266. "_lpos": {
  267. "__type__": "cc.Vec3",
  268. "x": 0,
  269. "y": 0,
  270. "z": 0
  271. },
  272. "_lrot": {
  273. "__type__": "cc.Quat",
  274. "x": 0,
  275. "y": 0,
  276. "z": 0,
  277. "w": 1
  278. },
  279. "_lscale": {
  280. "__type__": "cc.Vec3",
  281. "x": 1,
  282. "y": 1,
  283. "z": 1
  284. },
  285. "_mobility": 0,
  286. "_layer": 33554432,
  287. "_euler": {
  288. "__type__": "cc.Vec3",
  289. "x": 0,
  290. "y": 0,
  291. "z": 0
  292. },
  293. "_id": ""
  294. },
  295. {
  296. "__type__": "cc.UITransform",
  297. "_name": "",
  298. "_objFlags": 0,
  299. "__editorExtras__": {},
  300. "node": {
  301. "__id__": 10
  302. },
  303. "_enabled": true,
  304. "__prefab": {
  305. "__id__": 12
  306. },
  307. "_contentSize": {
  308. "__type__": "cc.Size",
  309. "width": 720,
  310. "height": 1280
  311. },
  312. "_anchorPoint": {
  313. "__type__": "cc.Vec2",
  314. "x": 0.5,
  315. "y": 0.5
  316. },
  317. "_id": ""
  318. },
  319. {
  320. "__type__": "cc.CompPrefabInfo",
  321. "fileId": "10nZ97qOVB56aCvDeoqQDk"
  322. },
  323. {
  324. "__type__": "cc.Sprite",
  325. "_name": "",
  326. "_objFlags": 0,
  327. "__editorExtras__": {},
  328. "node": {
  329. "__id__": 10
  330. },
  331. "_enabled": true,
  332. "__prefab": {
  333. "__id__": 14
  334. },
  335. "_customMaterial": null,
  336. "_srcBlendFactor": 2,
  337. "_dstBlendFactor": 4,
  338. "_color": {
  339. "__type__": "cc.Color",
  340. "r": 255,
  341. "g": 255,
  342. "b": 255,
  343. "a": 255
  344. },
  345. "_spriteFrame": {
  346. "__uuid__": "bdaf962d-54ff-4348-bde8-9db6f3ddfcac@f9941",
  347. "__expectedType__": "cc.SpriteFrame"
  348. },
  349. "_type": 0,
  350. "_fillType": 0,
  351. "_sizeMode": 1,
  352. "_fillCenter": {
  353. "__type__": "cc.Vec2",
  354. "x": 0,
  355. "y": 0
  356. },
  357. "_fillStart": 0,
  358. "_fillRange": 0,
  359. "_isTrimmedMode": true,
  360. "_useGrayscale": false,
  361. "_atlas": null,
  362. "_id": ""
  363. },
  364. {
  365. "__type__": "cc.CompPrefabInfo",
  366. "fileId": "9dg4oaTf5Op4apnGFvnunA"
  367. },
  368. {
  369. "__type__": "cc.UIOpacity",
  370. "_name": "",
  371. "_objFlags": 0,
  372. "__editorExtras__": {},
  373. "node": {
  374. "__id__": 10
  375. },
  376. "_enabled": true,
  377. "__prefab": {
  378. "__id__": 16
  379. },
  380. "_opacity": 180,
  381. "_id": ""
  382. },
  383. {
  384. "__type__": "cc.CompPrefabInfo",
  385. "fileId": "detnInIoNAeqLy1kFqLGwN"
  386. },
  387. {
  388. "__type__": "cc.PrefabInfo",
  389. "root": {
  390. "__id__": 1
  391. },
  392. "asset": {
  393. "__id__": 0
  394. },
  395. "fileId": "54Qob+LHBM9oC/Q8rv6gai",
  396. "instance": null,
  397. "targetOverrides": null,
  398. "nestedPrefabInstanceRoots": null
  399. },
  400. {
  401. "__type__": "cc.Node",
  402. "_name": "bg_main",
  403. "_objFlags": 0,
  404. "__editorExtras__": {},
  405. "_parent": {
  406. "__id__": 1
  407. },
  408. "_children": [],
  409. "_active": true,
  410. "_components": [
  411. {
  412. "__id__": 19
  413. },
  414. {
  415. "__id__": 21
  416. },
  417. {
  418. "__id__": 23
  419. }
  420. ],
  421. "_prefab": {
  422. "__id__": 25
  423. },
  424. "_lpos": {
  425. "__type__": "cc.Vec3",
  426. "x": 0,
  427. "y": 0,
  428. "z": 0
  429. },
  430. "_lrot": {
  431. "__type__": "cc.Quat",
  432. "x": 0,
  433. "y": 0,
  434. "z": 0,
  435. "w": 1
  436. },
  437. "_lscale": {
  438. "__type__": "cc.Vec3",
  439. "x": 1,
  440. "y": 1,
  441. "z": 1
  442. },
  443. "_mobility": 0,
  444. "_layer": 33554432,
  445. "_euler": {
  446. "__type__": "cc.Vec3",
  447. "x": 0,
  448. "y": 0,
  449. "z": 0
  450. },
  451. "_id": ""
  452. },
  453. {
  454. "__type__": "cc.UITransform",
  455. "_name": "",
  456. "_objFlags": 0,
  457. "__editorExtras__": {},
  458. "node": {
  459. "__id__": 18
  460. },
  461. "_enabled": true,
  462. "__prefab": {
  463. "__id__": 20
  464. },
  465. "_contentSize": {
  466. "__type__": "cc.Size",
  467. "width": 720,
  468. "height": 1280
  469. },
  470. "_anchorPoint": {
  471. "__type__": "cc.Vec2",
  472. "x": 0.5,
  473. "y": 0.5
  474. },
  475. "_id": ""
  476. },
  477. {
  478. "__type__": "cc.CompPrefabInfo",
  479. "fileId": "5dQpSlZZVNa4jX7tl5KjBB"
  480. },
  481. {
  482. "__type__": "cc.Sprite",
  483. "_name": "",
  484. "_objFlags": 0,
  485. "__editorExtras__": {},
  486. "node": {
  487. "__id__": 18
  488. },
  489. "_enabled": true,
  490. "__prefab": {
  491. "__id__": 22
  492. },
  493. "_customMaterial": null,
  494. "_srcBlendFactor": 2,
  495. "_dstBlendFactor": 4,
  496. "_color": {
  497. "__type__": "cc.Color",
  498. "r": 255,
  499. "g": 255,
  500. "b": 255,
  501. "a": 255
  502. },
  503. "_spriteFrame": {
  504. "__uuid__": "bdaf962d-54ff-4348-bde8-9db6f3ddfcac@f9941",
  505. "__expectedType__": "cc.SpriteFrame"
  506. },
  507. "_type": 0,
  508. "_fillType": 0,
  509. "_sizeMode": 1,
  510. "_fillCenter": {
  511. "__type__": "cc.Vec2",
  512. "x": 0,
  513. "y": 0
  514. },
  515. "_fillStart": 0,
  516. "_fillRange": 0,
  517. "_isTrimmedMode": true,
  518. "_useGrayscale": false,
  519. "_atlas": null,
  520. "_id": ""
  521. },
  522. {
  523. "__type__": "cc.CompPrefabInfo",
  524. "fileId": "ffCTakt7dHZZeeWOR+6O/2"
  525. },
  526. {
  527. "__type__": "cc.UIOpacity",
  528. "_name": "",
  529. "_objFlags": 0,
  530. "__editorExtras__": {},
  531. "node": {
  532. "__id__": 18
  533. },
  534. "_enabled": true,
  535. "__prefab": {
  536. "__id__": 24
  537. },
  538. "_opacity": 180,
  539. "_id": ""
  540. },
  541. {
  542. "__type__": "cc.CompPrefabInfo",
  543. "fileId": "40/TstXoRPIa6HboK8fmKt"
  544. },
  545. {
  546. "__type__": "cc.PrefabInfo",
  547. "root": {
  548. "__id__": 1
  549. },
  550. "asset": {
  551. "__id__": 0
  552. },
  553. "fileId": "15RSXTClNKx46vgzzIc5sQ",
  554. "instance": null,
  555. "targetOverrides": null,
  556. "nestedPrefabInstanceRoots": null
  557. },
  558. {
  559. "__type__": "cc.Node",
  560. "_name": "btn_close",
  561. "_objFlags": 0,
  562. "__editorExtras__": {},
  563. "_parent": {
  564. "__id__": 1
  565. },
  566. "_children": [],
  567. "_active": true,
  568. "_components": [
  569. {
  570. "__id__": 27
  571. },
  572. {
  573. "__id__": 29
  574. },
  575. {
  576. "__id__": 31
  577. },
  578. {
  579. "__id__": 33
  580. },
  581. {
  582. "__id__": 35
  583. }
  584. ],
  585. "_prefab": {
  586. "__id__": 37
  587. },
  588. "_lpos": {
  589. "__type__": "cc.Vec3",
  590. "x": 0,
  591. "y": 0,
  592. "z": 0
  593. },
  594. "_lrot": {
  595. "__type__": "cc.Quat",
  596. "x": 0,
  597. "y": 0,
  598. "z": 0,
  599. "w": 1
  600. },
  601. "_lscale": {
  602. "__type__": "cc.Vec3",
  603. "x": 1,
  604. "y": 1,
  605. "z": 1
  606. },
  607. "_mobility": 0,
  608. "_layer": 33554432,
  609. "_euler": {
  610. "__type__": "cc.Vec3",
  611. "x": 0,
  612. "y": 0,
  613. "z": 0
  614. },
  615. "_id": ""
  616. },
  617. {
  618. "__type__": "cc.UITransform",
  619. "_name": "",
  620. "_objFlags": 0,
  621. "__editorExtras__": {},
  622. "node": {
  623. "__id__": 26
  624. },
  625. "_enabled": true,
  626. "__prefab": {
  627. "__id__": 28
  628. },
  629. "_contentSize": {
  630. "__type__": "cc.Size",
  631. "width": 720,
  632. "height": 1280
  633. },
  634. "_anchorPoint": {
  635. "__type__": "cc.Vec2",
  636. "x": 0.5,
  637. "y": 0.5
  638. },
  639. "_id": ""
  640. },
  641. {
  642. "__type__": "cc.CompPrefabInfo",
  643. "fileId": "1f9lO0hQhJTYuVitU6CnIJ"
  644. },
  645. {
  646. "__type__": "cc.Sprite",
  647. "_name": "",
  648. "_objFlags": 0,
  649. "__editorExtras__": {},
  650. "node": {
  651. "__id__": 26
  652. },
  653. "_enabled": true,
  654. "__prefab": {
  655. "__id__": 30
  656. },
  657. "_customMaterial": null,
  658. "_srcBlendFactor": 2,
  659. "_dstBlendFactor": 4,
  660. "_color": {
  661. "__type__": "cc.Color",
  662. "r": 0,
  663. "g": 0,
  664. "b": 0,
  665. "a": 255
  666. },
  667. "_spriteFrame": {
  668. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  669. "__expectedType__": "cc.SpriteFrame"
  670. },
  671. "_type": 0,
  672. "_fillType": 0,
  673. "_sizeMode": 0,
  674. "_fillCenter": {
  675. "__type__": "cc.Vec2",
  676. "x": 0,
  677. "y": 0
  678. },
  679. "_fillStart": 0,
  680. "_fillRange": 0,
  681. "_isTrimmedMode": true,
  682. "_useGrayscale": false,
  683. "_atlas": null,
  684. "_id": ""
  685. },
  686. {
  687. "__type__": "cc.CompPrefabInfo",
  688. "fileId": "07U2MvdJ9HDa7ohHn26ww8"
  689. },
  690. {
  691. "__type__": "cc.Widget",
  692. "_name": "",
  693. "_objFlags": 0,
  694. "__editorExtras__": {},
  695. "node": {
  696. "__id__": 26
  697. },
  698. "_enabled": true,
  699. "__prefab": {
  700. "__id__": 32
  701. },
  702. "_alignFlags": 45,
  703. "_target": null,
  704. "_left": 0,
  705. "_right": 0,
  706. "_top": 0,
  707. "_bottom": 0,
  708. "_horizontalCenter": 0,
  709. "_verticalCenter": 0,
  710. "_isAbsLeft": true,
  711. "_isAbsRight": true,
  712. "_isAbsTop": true,
  713. "_isAbsBottom": true,
  714. "_isAbsHorizontalCenter": true,
  715. "_isAbsVerticalCenter": true,
  716. "_originalWidth": 40,
  717. "_originalHeight": 36,
  718. "_alignMode": 2,
  719. "_lockFlags": 0,
  720. "_id": ""
  721. },
  722. {
  723. "__type__": "cc.CompPrefabInfo",
  724. "fileId": "74FJLC0nRHgYs6n/97mpgi"
  725. },
  726. {
  727. "__type__": "cc.BlockInputEvents",
  728. "_name": "",
  729. "_objFlags": 0,
  730. "__editorExtras__": {},
  731. "node": {
  732. "__id__": 26
  733. },
  734. "_enabled": true,
  735. "__prefab": {
  736. "__id__": 34
  737. },
  738. "_id": ""
  739. },
  740. {
  741. "__type__": "cc.CompPrefabInfo",
  742. "fileId": "39P5v0bAVDY4X3hvxVqQd+"
  743. },
  744. {
  745. "__type__": "cc.Button",
  746. "_name": "",
  747. "_objFlags": 0,
  748. "__editorExtras__": {},
  749. "node": {
  750. "__id__": 26
  751. },
  752. "_enabled": true,
  753. "__prefab": {
  754. "__id__": 36
  755. },
  756. "clickEvents": [],
  757. "_interactable": true,
  758. "_transition": 0,
  759. "_normalColor": {
  760. "__type__": "cc.Color",
  761. "r": 255,
  762. "g": 255,
  763. "b": 255,
  764. "a": 255
  765. },
  766. "_hoverColor": {
  767. "__type__": "cc.Color",
  768. "r": 211,
  769. "g": 211,
  770. "b": 211,
  771. "a": 255
  772. },
  773. "_pressedColor": {
  774. "__type__": "cc.Color",
  775. "r": 255,
  776. "g": 255,
  777. "b": 255,
  778. "a": 255
  779. },
  780. "_disabledColor": {
  781. "__type__": "cc.Color",
  782. "r": 124,
  783. "g": 124,
  784. "b": 124,
  785. "a": 255
  786. },
  787. "_normalSprite": null,
  788. "_hoverSprite": null,
  789. "_pressedSprite": null,
  790. "_disabledSprite": null,
  791. "_duration": 0.1,
  792. "_zoomScale": 1.2,
  793. "_target": null,
  794. "_id": ""
  795. },
  796. {
  797. "__type__": "cc.CompPrefabInfo",
  798. "fileId": "f7nCggr+FCaaChOY6TF2rG"
  799. },
  800. {
  801. "__type__": "cc.PrefabInfo",
  802. "root": {
  803. "__id__": 1
  804. },
  805. "asset": {
  806. "__id__": 0
  807. },
  808. "fileId": "0fSGIky0NAZoqNQLjGQx6z",
  809. "instance": null,
  810. "targetOverrides": null,
  811. "nestedPrefabInstanceRoots": null
  812. },
  813. {
  814. "__type__": "cc.Node",
  815. "_name": "bg",
  816. "_objFlags": 512,
  817. "__editorExtras__": {},
  818. "_parent": {
  819. "__id__": 1
  820. },
  821. "_children": [
  822. {
  823. "__id__": 39
  824. },
  825. {
  826. "__id__": 51
  827. },
  828. {
  829. "__id__": 57
  830. },
  831. {
  832. "__id__": 63
  833. },
  834. {
  835. "__id__": 77
  836. }
  837. ],
  838. "_active": true,
  839. "_components": [
  840. {
  841. "__id__": 93
  842. },
  843. {
  844. "__id__": 95
  845. },
  846. {
  847. "__id__": 97
  848. },
  849. {
  850. "__id__": 99
  851. }
  852. ],
  853. "_prefab": {
  854. "__id__": 101
  855. },
  856. "_lpos": {
  857. "__type__": "cc.Vec3",
  858. "x": 2.1980000000000004,
  859. "y": -14.964500000000008,
  860. "z": 0
  861. },
  862. "_lrot": {
  863. "__type__": "cc.Quat",
  864. "x": 0,
  865. "y": 0,
  866. "z": 0,
  867. "w": 1
  868. },
  869. "_lscale": {
  870. "__type__": "cc.Vec3",
  871. "x": 1,
  872. "y": 1,
  873. "z": 1
  874. },
  875. "_mobility": 0,
  876. "_layer": 33554432,
  877. "_euler": {
  878. "__type__": "cc.Vec3",
  879. "x": 0,
  880. "y": 0,
  881. "z": 0
  882. },
  883. "_id": ""
  884. },
  885. {
  886. "__type__": "cc.Node",
  887. "_name": "ttt",
  888. "_objFlags": 0,
  889. "__editorExtras__": {},
  890. "_parent": {
  891. "__id__": 38
  892. },
  893. "_children": [
  894. {
  895. "__id__": 40
  896. }
  897. ],
  898. "_active": true,
  899. "_components": [
  900. {
  901. "__id__": 46
  902. },
  903. {
  904. "__id__": 48
  905. }
  906. ],
  907. "_prefab": {
  908. "__id__": 50
  909. },
  910. "_lpos": {
  911. "__type__": "cc.Vec3",
  912. "x": 2.197999999999979,
  913. "y": 286.15,
  914. "z": 0
  915. },
  916. "_lrot": {
  917. "__type__": "cc.Quat",
  918. "x": 0,
  919. "y": 0,
  920. "z": 0,
  921. "w": 1
  922. },
  923. "_lscale": {
  924. "__type__": "cc.Vec3",
  925. "x": 1,
  926. "y": 1,
  927. "z": 1
  928. },
  929. "_mobility": 0,
  930. "_layer": 33554432,
  931. "_euler": {
  932. "__type__": "cc.Vec3",
  933. "x": 0,
  934. "y": 0,
  935. "z": 0
  936. },
  937. "_id": ""
  938. },
  939. {
  940. "__type__": "cc.Node",
  941. "_name": "close_obj",
  942. "_objFlags": 0,
  943. "__editorExtras__": {},
  944. "_parent": {
  945. "__id__": 39
  946. },
  947. "_children": [],
  948. "_active": true,
  949. "_components": [
  950. {
  951. "__id__": 41
  952. },
  953. {
  954. "__id__": 43
  955. }
  956. ],
  957. "_prefab": {
  958. "__id__": 45
  959. },
  960. "_lpos": {
  961. "__type__": "cc.Vec3",
  962. "x": 256.887,
  963. "y": 28.538,
  964. "z": 0
  965. },
  966. "_lrot": {
  967. "__type__": "cc.Quat",
  968. "x": 0,
  969. "y": 0,
  970. "z": 0,
  971. "w": 1
  972. },
  973. "_lscale": {
  974. "__type__": "cc.Vec3",
  975. "x": 1,
  976. "y": 1,
  977. "z": 1
  978. },
  979. "_mobility": 0,
  980. "_layer": 33554432,
  981. "_euler": {
  982. "__type__": "cc.Vec3",
  983. "x": 0,
  984. "y": 0,
  985. "z": 0
  986. },
  987. "_id": ""
  988. },
  989. {
  990. "__type__": "cc.UITransform",
  991. "_name": "",
  992. "_objFlags": 0,
  993. "__editorExtras__": {},
  994. "node": {
  995. "__id__": 40
  996. },
  997. "_enabled": true,
  998. "__prefab": {
  999. "__id__": 42
  1000. },
  1001. "_contentSize": {
  1002. "__type__": "cc.Size",
  1003. "width": 40,
  1004. "height": 40
  1005. },
  1006. "_anchorPoint": {
  1007. "__type__": "cc.Vec2",
  1008. "x": 0.5,
  1009. "y": 0.5
  1010. },
  1011. "_id": ""
  1012. },
  1013. {
  1014. "__type__": "cc.CompPrefabInfo",
  1015. "fileId": "f4bTD1s0pF75uPmBrMl/Jg"
  1016. },
  1017. {
  1018. "__type__": "cc.Sprite",
  1019. "_name": "",
  1020. "_objFlags": 0,
  1021. "__editorExtras__": {},
  1022. "node": {
  1023. "__id__": 40
  1024. },
  1025. "_enabled": true,
  1026. "__prefab": {
  1027. "__id__": 44
  1028. },
  1029. "_customMaterial": null,
  1030. "_srcBlendFactor": 2,
  1031. "_dstBlendFactor": 4,
  1032. "_color": {
  1033. "__type__": "cc.Color",
  1034. "r": 255,
  1035. "g": 255,
  1036. "b": 255,
  1037. "a": 255
  1038. },
  1039. "_spriteFrame": {
  1040. "__uuid__": "3f348859-9143-4941-abdd-37473b5f40df@f9941",
  1041. "__expectedType__": "cc.SpriteFrame"
  1042. },
  1043. "_type": 0,
  1044. "_fillType": 0,
  1045. "_sizeMode": 1,
  1046. "_fillCenter": {
  1047. "__type__": "cc.Vec2",
  1048. "x": 0,
  1049. "y": 0
  1050. },
  1051. "_fillStart": 0,
  1052. "_fillRange": 0,
  1053. "_isTrimmedMode": true,
  1054. "_useGrayscale": false,
  1055. "_atlas": null,
  1056. "_id": ""
  1057. },
  1058. {
  1059. "__type__": "cc.CompPrefabInfo",
  1060. "fileId": "aafxpFUdxACIW8TvNb9xCm"
  1061. },
  1062. {
  1063. "__type__": "cc.PrefabInfo",
  1064. "root": {
  1065. "__id__": 1
  1066. },
  1067. "asset": {
  1068. "__id__": 0
  1069. },
  1070. "fileId": "7cF9QImQZMv69yryy/lK9y",
  1071. "instance": null,
  1072. "targetOverrides": null,
  1073. "nestedPrefabInstanceRoots": null
  1074. },
  1075. {
  1076. "__type__": "cc.UITransform",
  1077. "_name": "",
  1078. "_objFlags": 0,
  1079. "__editorExtras__": {},
  1080. "node": {
  1081. "__id__": 39
  1082. },
  1083. "_enabled": true,
  1084. "__prefab": {
  1085. "__id__": 47
  1086. },
  1087. "_contentSize": {
  1088. "__type__": "cc.Size",
  1089. "width": 500,
  1090. "height": 100.8
  1091. },
  1092. "_anchorPoint": {
  1093. "__type__": "cc.Vec2",
  1094. "x": 0.5,
  1095. "y": 0.5
  1096. },
  1097. "_id": ""
  1098. },
  1099. {
  1100. "__type__": "cc.CompPrefabInfo",
  1101. "fileId": "794SEFSRVEi7Lvs59GkT35"
  1102. },
  1103. {
  1104. "__type__": "cc.Label",
  1105. "_name": "",
  1106. "_objFlags": 0,
  1107. "__editorExtras__": {},
  1108. "node": {
  1109. "__id__": 39
  1110. },
  1111. "_enabled": true,
  1112. "__prefab": {
  1113. "__id__": 49
  1114. },
  1115. "_customMaterial": null,
  1116. "_srcBlendFactor": 2,
  1117. "_dstBlendFactor": 4,
  1118. "_color": {
  1119. "__type__": "cc.Color",
  1120. "r": 255,
  1121. "g": 255,
  1122. "b": 255,
  1123. "a": 255
  1124. },
  1125. "_string": "TIPS",
  1126. "_horizontalAlign": 1,
  1127. "_verticalAlign": 0,
  1128. "_actualFontSize": 40,
  1129. "_fontSize": 40,
  1130. "_fontFamily": "Arial",
  1131. "_lineHeight": 80,
  1132. "_overflow": 3,
  1133. "_enableWrapText": true,
  1134. "_font": null,
  1135. "_isSystemFontUsed": true,
  1136. "_spacingX": 0,
  1137. "_isItalic": false,
  1138. "_isBold": false,
  1139. "_isUnderline": false,
  1140. "_underlineHeight": 2,
  1141. "_cacheMode": 0,
  1142. "_enableOutline": false,
  1143. "_outlineColor": {
  1144. "__type__": "cc.Color",
  1145. "r": 0,
  1146. "g": 0,
  1147. "b": 0,
  1148. "a": 255
  1149. },
  1150. "_outlineWidth": 2,
  1151. "_enableShadow": false,
  1152. "_shadowColor": {
  1153. "__type__": "cc.Color",
  1154. "r": 0,
  1155. "g": 0,
  1156. "b": 0,
  1157. "a": 255
  1158. },
  1159. "_shadowOffset": {
  1160. "__type__": "cc.Vec2",
  1161. "x": 2,
  1162. "y": 2
  1163. },
  1164. "_shadowBlur": 2,
  1165. "_id": ""
  1166. },
  1167. {
  1168. "__type__": "cc.CompPrefabInfo",
  1169. "fileId": "50XbVEq49MIaXe/IptOrAO"
  1170. },
  1171. {
  1172. "__type__": "cc.PrefabInfo",
  1173. "root": {
  1174. "__id__": 1
  1175. },
  1176. "asset": {
  1177. "__id__": 0
  1178. },
  1179. "fileId": "27XwX6W9FFVZgZQN3s/uFC",
  1180. "instance": null,
  1181. "targetOverrides": null,
  1182. "nestedPrefabInstanceRoots": null
  1183. },
  1184. {
  1185. "__type__": "cc.Node",
  1186. "_name": "lbl_title",
  1187. "_objFlags": 0,
  1188. "__editorExtras__": {},
  1189. "_parent": {
  1190. "__id__": 38
  1191. },
  1192. "_children": [],
  1193. "_active": true,
  1194. "_components": [
  1195. {
  1196. "__id__": 52
  1197. },
  1198. {
  1199. "__id__": 54
  1200. }
  1201. ],
  1202. "_prefab": {
  1203. "__id__": 56
  1204. },
  1205. "_lpos": {
  1206. "__type__": "cc.Vec3",
  1207. "x": 0,
  1208. "y": 210.54999999999998,
  1209. "z": 0
  1210. },
  1211. "_lrot": {
  1212. "__type__": "cc.Quat",
  1213. "x": 0,
  1214. "y": 0,
  1215. "z": 0,
  1216. "w": 1
  1217. },
  1218. "_lscale": {
  1219. "__type__": "cc.Vec3",
  1220. "x": 1,
  1221. "y": 1,
  1222. "z": 1
  1223. },
  1224. "_mobility": 0,
  1225. "_layer": 33554432,
  1226. "_euler": {
  1227. "__type__": "cc.Vec3",
  1228. "x": 0,
  1229. "y": 0,
  1230. "z": 0
  1231. },
  1232. "_id": ""
  1233. },
  1234. {
  1235. "__type__": "cc.UITransform",
  1236. "_name": "",
  1237. "_objFlags": 0,
  1238. "__editorExtras__": {},
  1239. "node": {
  1240. "__id__": 51
  1241. },
  1242. "_enabled": true,
  1243. "__prefab": {
  1244. "__id__": 53
  1245. },
  1246. "_contentSize": {
  1247. "__type__": "cc.Size",
  1248. "width": 500,
  1249. "height": 50.4
  1250. },
  1251. "_anchorPoint": {
  1252. "__type__": "cc.Vec2",
  1253. "x": 0.5,
  1254. "y": 0.5
  1255. },
  1256. "_id": ""
  1257. },
  1258. {
  1259. "__type__": "cc.CompPrefabInfo",
  1260. "fileId": "68r5RuR9tH4LceZ/8yocb7"
  1261. },
  1262. {
  1263. "__type__": "cc.Label",
  1264. "_name": "",
  1265. "_objFlags": 0,
  1266. "__editorExtras__": {},
  1267. "node": {
  1268. "__id__": 51
  1269. },
  1270. "_enabled": true,
  1271. "__prefab": {
  1272. "__id__": 55
  1273. },
  1274. "_customMaterial": null,
  1275. "_srcBlendFactor": 2,
  1276. "_dstBlendFactor": 4,
  1277. "_color": {
  1278. "__type__": "cc.Color",
  1279. "r": 255,
  1280. "g": 255,
  1281. "b": 255,
  1282. "a": 255
  1283. },
  1284. "_string": "POG Utility:",
  1285. "_horizontalAlign": 0,
  1286. "_verticalAlign": 0,
  1287. "_actualFontSize": 30,
  1288. "_fontSize": 30,
  1289. "_fontFamily": "Arial",
  1290. "_lineHeight": 40,
  1291. "_overflow": 3,
  1292. "_enableWrapText": true,
  1293. "_font": null,
  1294. "_isSystemFontUsed": true,
  1295. "_spacingX": 0,
  1296. "_isItalic": false,
  1297. "_isBold": false,
  1298. "_isUnderline": false,
  1299. "_underlineHeight": 2,
  1300. "_cacheMode": 0,
  1301. "_enableOutline": false,
  1302. "_outlineColor": {
  1303. "__type__": "cc.Color",
  1304. "r": 0,
  1305. "g": 0,
  1306. "b": 0,
  1307. "a": 255
  1308. },
  1309. "_outlineWidth": 2,
  1310. "_enableShadow": false,
  1311. "_shadowColor": {
  1312. "__type__": "cc.Color",
  1313. "r": 0,
  1314. "g": 0,
  1315. "b": 0,
  1316. "a": 255
  1317. },
  1318. "_shadowOffset": {
  1319. "__type__": "cc.Vec2",
  1320. "x": 2,
  1321. "y": 2
  1322. },
  1323. "_shadowBlur": 2,
  1324. "_id": ""
  1325. },
  1326. {
  1327. "__type__": "cc.CompPrefabInfo",
  1328. "fileId": "56/0RX99FFmJ2odAmEck4s"
  1329. },
  1330. {
  1331. "__type__": "cc.PrefabInfo",
  1332. "root": {
  1333. "__id__": 1
  1334. },
  1335. "asset": {
  1336. "__id__": 0
  1337. },
  1338. "fileId": "36fVoTZgRDy5vng0Qp2jtO",
  1339. "instance": null,
  1340. "targetOverrides": null,
  1341. "nestedPrefabInstanceRoots": null
  1342. },
  1343. {
  1344. "__type__": "cc.Node",
  1345. "_name": "lbl_content",
  1346. "_objFlags": 0,
  1347. "__editorExtras__": {},
  1348. "_parent": {
  1349. "__id__": 38
  1350. },
  1351. "_children": [],
  1352. "_active": true,
  1353. "_components": [
  1354. {
  1355. "__id__": 58
  1356. },
  1357. {
  1358. "__id__": 60
  1359. }
  1360. ],
  1361. "_prefab": {
  1362. "__id__": 62
  1363. },
  1364. "_lpos": {
  1365. "__type__": "cc.Vec3",
  1366. "x": 0,
  1367. "y": 0.15000000000000568,
  1368. "z": 0
  1369. },
  1370. "_lrot": {
  1371. "__type__": "cc.Quat",
  1372. "x": 0,
  1373. "y": 0,
  1374. "z": 0,
  1375. "w": 1
  1376. },
  1377. "_lscale": {
  1378. "__type__": "cc.Vec3",
  1379. "x": 1,
  1380. "y": 1,
  1381. "z": 1
  1382. },
  1383. "_mobility": 0,
  1384. "_layer": 33554432,
  1385. "_euler": {
  1386. "__type__": "cc.Vec3",
  1387. "x": 0,
  1388. "y": 0,
  1389. "z": 0
  1390. },
  1391. "_id": ""
  1392. },
  1393. {
  1394. "__type__": "cc.UITransform",
  1395. "_name": "",
  1396. "_objFlags": 0,
  1397. "__editorExtras__": {},
  1398. "node": {
  1399. "__id__": 57
  1400. },
  1401. "_enabled": true,
  1402. "__prefab": {
  1403. "__id__": 59
  1404. },
  1405. "_contentSize": {
  1406. "__type__": "cc.Size",
  1407. "width": 550,
  1408. "height": 370.4
  1409. },
  1410. "_anchorPoint": {
  1411. "__type__": "cc.Vec2",
  1412. "x": 0.5,
  1413. "y": 0.5
  1414. },
  1415. "_id": ""
  1416. },
  1417. {
  1418. "__type__": "cc.CompPrefabInfo",
  1419. "fileId": "5dlblL1BpNH4GKEEOqAUU2"
  1420. },
  1421. {
  1422. "__type__": "cc.RichText",
  1423. "_name": "",
  1424. "_objFlags": 0,
  1425. "__editorExtras__": {},
  1426. "node": {
  1427. "__id__": 57
  1428. },
  1429. "_enabled": true,
  1430. "__prefab": {
  1431. "__id__": 61
  1432. },
  1433. "_lineHeight": 40,
  1434. "_string": "- Tracked as leaderboard score for each season\n\n- Determines eligibility for $TOG rewards\n- Enforces anti-bot integrity via velocity and participation caps\n- Unlocks power scaling and cosmetic boosts across mini-games\n- Redeemable for $TOG, Diamonds, and other rewards on the Porta",
  1435. "_horizontalAlign": 0,
  1436. "_verticalAlign": 0,
  1437. "_fontSize": 25,
  1438. "_fontColor": {
  1439. "__type__": "cc.Color",
  1440. "r": 255,
  1441. "g": 255,
  1442. "b": 255,
  1443. "a": 255
  1444. },
  1445. "_maxWidth": 550,
  1446. "_fontFamily": "Arial",
  1447. "_font": null,
  1448. "_isSystemFontUsed": true,
  1449. "_userDefinedFont": null,
  1450. "_cacheMode": 0,
  1451. "_imageAtlas": null,
  1452. "_handleTouchEvent": true,
  1453. "_id": ""
  1454. },
  1455. {
  1456. "__type__": "cc.CompPrefabInfo",
  1457. "fileId": "88hOJWNgpLLJ6hO0WVhguK"
  1458. },
  1459. {
  1460. "__type__": "cc.PrefabInfo",
  1461. "root": {
  1462. "__id__": 1
  1463. },
  1464. "asset": {
  1465. "__id__": 0
  1466. },
  1467. "fileId": "99h5IKfVNKwYcL45yXSfMj",
  1468. "instance": null,
  1469. "targetOverrides": null,
  1470. "nestedPrefabInstanceRoots": null
  1471. },
  1472. {
  1473. "__type__": "cc.Node",
  1474. "_name": "link_node",
  1475. "_objFlags": 0,
  1476. "__editorExtras__": {},
  1477. "_parent": {
  1478. "__id__": 38
  1479. },
  1480. "_children": [
  1481. {
  1482. "__id__": 64
  1483. }
  1484. ],
  1485. "_active": true,
  1486. "_components": [
  1487. {
  1488. "__id__": 72
  1489. },
  1490. {
  1491. "__id__": 74
  1492. }
  1493. ],
  1494. "_prefab": {
  1495. "__id__": 76
  1496. },
  1497. "_lpos": {
  1498. "__type__": "cc.Vec3",
  1499. "x": 0,
  1500. "y": -215.29999999999998,
  1501. "z": 0
  1502. },
  1503. "_lrot": {
  1504. "__type__": "cc.Quat",
  1505. "x": 0,
  1506. "y": 0,
  1507. "z": 0,
  1508. "w": 1
  1509. },
  1510. "_lscale": {
  1511. "__type__": "cc.Vec3",
  1512. "x": 1,
  1513. "y": 1,
  1514. "z": 1
  1515. },
  1516. "_mobility": 0,
  1517. "_layer": 33554432,
  1518. "_euler": {
  1519. "__type__": "cc.Vec3",
  1520. "x": 0,
  1521. "y": 0,
  1522. "z": 0
  1523. },
  1524. "_id": ""
  1525. },
  1526. {
  1527. "__type__": "cc.Node",
  1528. "_name": "btn_link",
  1529. "_objFlags": 0,
  1530. "__editorExtras__": {},
  1531. "_parent": {
  1532. "__id__": 63
  1533. },
  1534. "_children": [],
  1535. "_active": true,
  1536. "_components": [
  1537. {
  1538. "__id__": 65
  1539. },
  1540. {
  1541. "__id__": 67
  1542. },
  1543. {
  1544. "__id__": 69
  1545. }
  1546. ],
  1547. "_prefab": {
  1548. "__id__": 71
  1549. },
  1550. "_lpos": {
  1551. "__type__": "cc.Vec3",
  1552. "x": -26.882,
  1553. "y": 15.622,
  1554. "z": 0
  1555. },
  1556. "_lrot": {
  1557. "__type__": "cc.Quat",
  1558. "x": 0,
  1559. "y": 0,
  1560. "z": 0,
  1561. "w": 1
  1562. },
  1563. "_lscale": {
  1564. "__type__": "cc.Vec3",
  1565. "x": 1,
  1566. "y": 1,
  1567. "z": 1
  1568. },
  1569. "_mobility": 0,
  1570. "_layer": 33554432,
  1571. "_euler": {
  1572. "__type__": "cc.Vec3",
  1573. "x": 0,
  1574. "y": 0,
  1575. "z": 0
  1576. },
  1577. "_id": ""
  1578. },
  1579. {
  1580. "__type__": "cc.UITransform",
  1581. "_name": "",
  1582. "_objFlags": 0,
  1583. "__editorExtras__": {},
  1584. "node": {
  1585. "__id__": 64
  1586. },
  1587. "_enabled": true,
  1588. "__prefab": {
  1589. "__id__": 66
  1590. },
  1591. "_contentSize": {
  1592. "__type__": "cc.Size",
  1593. "width": 500,
  1594. "height": 60.49999999999999
  1595. },
  1596. "_anchorPoint": {
  1597. "__type__": "cc.Vec2",
  1598. "x": 0.5,
  1599. "y": 0.5
  1600. },
  1601. "_id": ""
  1602. },
  1603. {
  1604. "__type__": "cc.CompPrefabInfo",
  1605. "fileId": "8d4RmTSNpOtLS5bQP42X1Y"
  1606. },
  1607. {
  1608. "__type__": "cc.Label",
  1609. "_name": "",
  1610. "_objFlags": 0,
  1611. "__editorExtras__": {},
  1612. "node": {
  1613. "__id__": 64
  1614. },
  1615. "_enabled": true,
  1616. "__prefab": {
  1617. "__id__": 68
  1618. },
  1619. "_customMaterial": null,
  1620. "_srcBlendFactor": 2,
  1621. "_dstBlendFactor": 4,
  1622. "_color": {
  1623. "__type__": "cc.Color",
  1624. "r": 0,
  1625. "g": 143,
  1626. "b": 255,
  1627. "a": 255
  1628. },
  1629. "_string": "https://telgather.gitbook.io/telgather-litepaper/telgather-economy",
  1630. "_horizontalAlign": 0,
  1631. "_verticalAlign": 0,
  1632. "_actualFontSize": 25,
  1633. "_fontSize": 25,
  1634. "_fontFamily": "Arial",
  1635. "_lineHeight": 25,
  1636. "_overflow": 3,
  1637. "_enableWrapText": true,
  1638. "_font": null,
  1639. "_isSystemFontUsed": true,
  1640. "_spacingX": 0,
  1641. "_isItalic": false,
  1642. "_isBold": true,
  1643. "_isUnderline": false,
  1644. "_underlineHeight": 2,
  1645. "_cacheMode": 0,
  1646. "_enableOutline": true,
  1647. "_outlineColor": {
  1648. "__type__": "cc.Color",
  1649. "r": 19,
  1650. "g": 19,
  1651. "b": 19,
  1652. "a": 255
  1653. },
  1654. "_outlineWidth": 2,
  1655. "_enableShadow": false,
  1656. "_shadowColor": {
  1657. "__type__": "cc.Color",
  1658. "r": 0,
  1659. "g": 0,
  1660. "b": 0,
  1661. "a": 255
  1662. },
  1663. "_shadowOffset": {
  1664. "__type__": "cc.Vec2",
  1665. "x": 2,
  1666. "y": 2
  1667. },
  1668. "_shadowBlur": 2,
  1669. "_id": ""
  1670. },
  1671. {
  1672. "__type__": "cc.CompPrefabInfo",
  1673. "fileId": "89yjiZNKZPQaFhHbYmjF+N"
  1674. },
  1675. {
  1676. "__type__": "cc.Button",
  1677. "_name": "",
  1678. "_objFlags": 0,
  1679. "__editorExtras__": {},
  1680. "node": {
  1681. "__id__": 64
  1682. },
  1683. "_enabled": true,
  1684. "__prefab": {
  1685. "__id__": 70
  1686. },
  1687. "clickEvents": [],
  1688. "_interactable": true,
  1689. "_transition": 3,
  1690. "_normalColor": {
  1691. "__type__": "cc.Color",
  1692. "r": 255,
  1693. "g": 255,
  1694. "b": 255,
  1695. "a": 255
  1696. },
  1697. "_hoverColor": {
  1698. "__type__": "cc.Color",
  1699. "r": 211,
  1700. "g": 211,
  1701. "b": 211,
  1702. "a": 255
  1703. },
  1704. "_pressedColor": {
  1705. "__type__": "cc.Color",
  1706. "r": 255,
  1707. "g": 255,
  1708. "b": 255,
  1709. "a": 255
  1710. },
  1711. "_disabledColor": {
  1712. "__type__": "cc.Color",
  1713. "r": 124,
  1714. "g": 124,
  1715. "b": 124,
  1716. "a": 255
  1717. },
  1718. "_normalSprite": null,
  1719. "_hoverSprite": null,
  1720. "_pressedSprite": null,
  1721. "_disabledSprite": null,
  1722. "_duration": 0.1,
  1723. "_zoomScale": 1.2,
  1724. "_target": null,
  1725. "_id": ""
  1726. },
  1727. {
  1728. "__type__": "cc.CompPrefabInfo",
  1729. "fileId": "909bsCBgZGe41beEAU/1Cw"
  1730. },
  1731. {
  1732. "__type__": "cc.PrefabInfo",
  1733. "root": {
  1734. "__id__": 1
  1735. },
  1736. "asset": {
  1737. "__id__": 0
  1738. },
  1739. "fileId": "c082W6m3ZDNIEG8U1FC1Fk",
  1740. "instance": null,
  1741. "targetOverrides": null,
  1742. "nestedPrefabInstanceRoots": null
  1743. },
  1744. {
  1745. "__type__": "cc.UITransform",
  1746. "_name": "",
  1747. "_objFlags": 0,
  1748. "__editorExtras__": {},
  1749. "node": {
  1750. "__id__": 63
  1751. },
  1752. "_enabled": true,
  1753. "__prefab": {
  1754. "__id__": 73
  1755. },
  1756. "_contentSize": {
  1757. "__type__": "cc.Size",
  1758. "width": 100,
  1759. "height": 60.49999999999999
  1760. },
  1761. "_anchorPoint": {
  1762. "__type__": "cc.Vec2",
  1763. "x": 0.5,
  1764. "y": 0.5
  1765. },
  1766. "_id": ""
  1767. },
  1768. {
  1769. "__type__": "cc.CompPrefabInfo",
  1770. "fileId": "deWOG0hhZNa5oGjGiUyBwB"
  1771. },
  1772. {
  1773. "__type__": "cc.Layout",
  1774. "_name": "",
  1775. "_objFlags": 0,
  1776. "__editorExtras__": {},
  1777. "node": {
  1778. "__id__": 63
  1779. },
  1780. "_enabled": true,
  1781. "__prefab": {
  1782. "__id__": 75
  1783. },
  1784. "_resizeMode": 1,
  1785. "_layoutType": 2,
  1786. "_cellSize": {
  1787. "__type__": "cc.Size",
  1788. "width": 40,
  1789. "height": 40
  1790. },
  1791. "_startAxis": 0,
  1792. "_paddingLeft": 0,
  1793. "_paddingRight": 0,
  1794. "_paddingTop": 0,
  1795. "_paddingBottom": 0,
  1796. "_spacingX": 0,
  1797. "_spacingY": 0,
  1798. "_verticalDirection": 1,
  1799. "_horizontalDirection": 0,
  1800. "_constraint": 0,
  1801. "_constraintNum": 2,
  1802. "_affectedByScale": false,
  1803. "_isAlign": false,
  1804. "_id": ""
  1805. },
  1806. {
  1807. "__type__": "cc.CompPrefabInfo",
  1808. "fileId": "ab6alOsN9JmYO9i2Jz7HXE"
  1809. },
  1810. {
  1811. "__type__": "cc.PrefabInfo",
  1812. "root": {
  1813. "__id__": 1
  1814. },
  1815. "asset": {
  1816. "__id__": 0
  1817. },
  1818. "fileId": "a4+Y7d3ptEx5UgDBn58iln",
  1819. "instance": null,
  1820. "targetOverrides": null,
  1821. "nestedPrefabInstanceRoots": null
  1822. },
  1823. {
  1824. "__type__": "cc.Node",
  1825. "_name": "btn_layout",
  1826. "_objFlags": 0,
  1827. "__editorExtras__": {},
  1828. "_parent": {
  1829. "__id__": 38
  1830. },
  1831. "_children": [
  1832. {
  1833. "__id__": 78
  1834. }
  1835. ],
  1836. "_active": true,
  1837. "_components": [
  1838. {
  1839. "__id__": 90
  1840. }
  1841. ],
  1842. "_prefab": {
  1843. "__id__": 92
  1844. },
  1845. "_lpos": {
  1846. "__type__": "cc.Vec3",
  1847. "x": 0,
  1848. "y": -246.04999999999998,
  1849. "z": 0
  1850. },
  1851. "_lrot": {
  1852. "__type__": "cc.Quat",
  1853. "x": 0,
  1854. "y": 0,
  1855. "z": 0,
  1856. "w": 1
  1857. },
  1858. "_lscale": {
  1859. "__type__": "cc.Vec3",
  1860. "x": 1,
  1861. "y": 1,
  1862. "z": 1
  1863. },
  1864. "_mobility": 0,
  1865. "_layer": 33554432,
  1866. "_euler": {
  1867. "__type__": "cc.Vec3",
  1868. "x": 0,
  1869. "y": 0,
  1870. "z": 0
  1871. },
  1872. "_id": ""
  1873. },
  1874. {
  1875. "__type__": "cc.Node",
  1876. "_name": "btn_confirm",
  1877. "_objFlags": 0,
  1878. "__editorExtras__": {},
  1879. "_parent": {
  1880. "__id__": 77
  1881. },
  1882. "_children": [
  1883. {
  1884. "__id__": 79
  1885. }
  1886. ],
  1887. "_active": true,
  1888. "_components": [
  1889. {
  1890. "__id__": 85
  1891. },
  1892. {
  1893. "__id__": 87
  1894. }
  1895. ],
  1896. "_prefab": {
  1897. "__id__": 89
  1898. },
  1899. "_lpos": {
  1900. "__type__": "cc.Vec3",
  1901. "x": -2.198,
  1902. "y": -87.077,
  1903. "z": 0
  1904. },
  1905. "_lrot": {
  1906. "__type__": "cc.Quat",
  1907. "x": 0,
  1908. "y": 0,
  1909. "z": 0,
  1910. "w": 1
  1911. },
  1912. "_lscale": {
  1913. "__type__": "cc.Vec3",
  1914. "x": 1,
  1915. "y": 1,
  1916. "z": 1
  1917. },
  1918. "_mobility": 0,
  1919. "_layer": 33554432,
  1920. "_euler": {
  1921. "__type__": "cc.Vec3",
  1922. "x": 0,
  1923. "y": 0,
  1924. "z": 0
  1925. },
  1926. "_id": ""
  1927. },
  1928. {
  1929. "__type__": "cc.Node",
  1930. "_name": "Label",
  1931. "_objFlags": 0,
  1932. "__editorExtras__": {},
  1933. "_parent": {
  1934. "__id__": 78
  1935. },
  1936. "_children": [],
  1937. "_active": true,
  1938. "_components": [
  1939. {
  1940. "__id__": 80
  1941. },
  1942. {
  1943. "__id__": 82
  1944. }
  1945. ],
  1946. "_prefab": {
  1947. "__id__": 84
  1948. },
  1949. "_lpos": {
  1950. "__type__": "cc.Vec3",
  1951. "x": 0,
  1952. "y": 0,
  1953. "z": 0
  1954. },
  1955. "_lrot": {
  1956. "__type__": "cc.Quat",
  1957. "x": 0,
  1958. "y": 0,
  1959. "z": 0,
  1960. "w": 1
  1961. },
  1962. "_lscale": {
  1963. "__type__": "cc.Vec3",
  1964. "x": 1,
  1965. "y": 1,
  1966. "z": 1
  1967. },
  1968. "_mobility": 0,
  1969. "_layer": 33554432,
  1970. "_euler": {
  1971. "__type__": "cc.Vec3",
  1972. "x": 0,
  1973. "y": 0,
  1974. "z": 0
  1975. },
  1976. "_id": ""
  1977. },
  1978. {
  1979. "__type__": "cc.UITransform",
  1980. "_name": "",
  1981. "_objFlags": 0,
  1982. "__editorExtras__": {},
  1983. "node": {
  1984. "__id__": 79
  1985. },
  1986. "_enabled": true,
  1987. "__prefab": {
  1988. "__id__": 81
  1989. },
  1990. "_contentSize": {
  1991. "__type__": "cc.Size",
  1992. "width": 200,
  1993. "height": 37.8
  1994. },
  1995. "_anchorPoint": {
  1996. "__type__": "cc.Vec2",
  1997. "x": 0.5,
  1998. "y": 0.5
  1999. },
  2000. "_id": ""
  2001. },
  2002. {
  2003. "__type__": "cc.CompPrefabInfo",
  2004. "fileId": "faYltZl3RDNIoXBO7tTeAm"
  2005. },
  2006. {
  2007. "__type__": "cc.Label",
  2008. "_name": "",
  2009. "_objFlags": 0,
  2010. "__editorExtras__": {},
  2011. "node": {
  2012. "__id__": 79
  2013. },
  2014. "_enabled": true,
  2015. "__prefab": {
  2016. "__id__": 83
  2017. },
  2018. "_customMaterial": null,
  2019. "_srcBlendFactor": 2,
  2020. "_dstBlendFactor": 4,
  2021. "_color": {
  2022. "__type__": "cc.Color",
  2023. "r": 0,
  2024. "g": 0,
  2025. "b": 0,
  2026. "a": 255
  2027. },
  2028. "_string": "Confirm",
  2029. "_horizontalAlign": 1,
  2030. "_verticalAlign": 1,
  2031. "_actualFontSize": 30,
  2032. "_fontSize": 30,
  2033. "_fontFamily": "Arial",
  2034. "_lineHeight": 30,
  2035. "_overflow": 3,
  2036. "_enableWrapText": true,
  2037. "_font": null,
  2038. "_isSystemFontUsed": true,
  2039. "_spacingX": 0,
  2040. "_isItalic": false,
  2041. "_isBold": false,
  2042. "_isUnderline": false,
  2043. "_underlineHeight": 2,
  2044. "_cacheMode": 0,
  2045. "_enableOutline": false,
  2046. "_outlineColor": {
  2047. "__type__": "cc.Color",
  2048. "r": 0,
  2049. "g": 0,
  2050. "b": 0,
  2051. "a": 255
  2052. },
  2053. "_outlineWidth": 2,
  2054. "_enableShadow": false,
  2055. "_shadowColor": {
  2056. "__type__": "cc.Color",
  2057. "r": 0,
  2058. "g": 0,
  2059. "b": 0,
  2060. "a": 255
  2061. },
  2062. "_shadowOffset": {
  2063. "__type__": "cc.Vec2",
  2064. "x": 2,
  2065. "y": 2
  2066. },
  2067. "_shadowBlur": 2,
  2068. "_id": ""
  2069. },
  2070. {
  2071. "__type__": "cc.CompPrefabInfo",
  2072. "fileId": "21Nh+Bm9hPtadKC4pDYKr6"
  2073. },
  2074. {
  2075. "__type__": "cc.PrefabInfo",
  2076. "root": {
  2077. "__id__": 1
  2078. },
  2079. "asset": {
  2080. "__id__": 0
  2081. },
  2082. "fileId": "7aRcyaWvVEhpni9sRy889l",
  2083. "instance": null,
  2084. "targetOverrides": null,
  2085. "nestedPrefabInstanceRoots": null
  2086. },
  2087. {
  2088. "__type__": "cc.UITransform",
  2089. "_name": "",
  2090. "_objFlags": 0,
  2091. "__editorExtras__": {},
  2092. "node": {
  2093. "__id__": 78
  2094. },
  2095. "_enabled": true,
  2096. "__prefab": {
  2097. "__id__": 86
  2098. },
  2099. "_contentSize": {
  2100. "__type__": "cc.Size",
  2101. "width": 180,
  2102. "height": 64
  2103. },
  2104. "_anchorPoint": {
  2105. "__type__": "cc.Vec2",
  2106. "x": 0.5,
  2107. "y": 0.5
  2108. },
  2109. "_id": ""
  2110. },
  2111. {
  2112. "__type__": "cc.CompPrefabInfo",
  2113. "fileId": "51D7X5arhN35ZK3GHZY6M1"
  2114. },
  2115. {
  2116. "__type__": "cc.Sprite",
  2117. "_name": "",
  2118. "_objFlags": 0,
  2119. "__editorExtras__": {},
  2120. "node": {
  2121. "__id__": 78
  2122. },
  2123. "_enabled": true,
  2124. "__prefab": {
  2125. "__id__": 88
  2126. },
  2127. "_customMaterial": null,
  2128. "_srcBlendFactor": 2,
  2129. "_dstBlendFactor": 4,
  2130. "_color": {
  2131. "__type__": "cc.Color",
  2132. "r": 255,
  2133. "g": 255,
  2134. "b": 255,
  2135. "a": 255
  2136. },
  2137. "_spriteFrame": {
  2138. "__uuid__": "1458f4b4-f0b4-403e-aef0-1a0dde7fc411@f9941",
  2139. "__expectedType__": "cc.SpriteFrame"
  2140. },
  2141. "_type": 1,
  2142. "_fillType": 0,
  2143. "_sizeMode": 0,
  2144. "_fillCenter": {
  2145. "__type__": "cc.Vec2",
  2146. "x": 0,
  2147. "y": 0
  2148. },
  2149. "_fillStart": 0,
  2150. "_fillRange": 0,
  2151. "_isTrimmedMode": true,
  2152. "_useGrayscale": false,
  2153. "_atlas": null,
  2154. "_id": ""
  2155. },
  2156. {
  2157. "__type__": "cc.CompPrefabInfo",
  2158. "fileId": "4ek6uNiyVJ7ptxxE3RAEkz"
  2159. },
  2160. {
  2161. "__type__": "cc.PrefabInfo",
  2162. "root": {
  2163. "__id__": 1
  2164. },
  2165. "asset": {
  2166. "__id__": 0
  2167. },
  2168. "fileId": "49zumvp59NMZZL/5v5S92J",
  2169. "instance": null,
  2170. "targetOverrides": null,
  2171. "nestedPrefabInstanceRoots": null
  2172. },
  2173. {
  2174. "__type__": "cc.UITransform",
  2175. "_name": "",
  2176. "_objFlags": 0,
  2177. "__editorExtras__": {},
  2178. "node": {
  2179. "__id__": 77
  2180. },
  2181. "_enabled": true,
  2182. "__prefab": {
  2183. "__id__": 91
  2184. },
  2185. "_contentSize": {
  2186. "__type__": "cc.Size",
  2187. "width": 100,
  2188. "height": 1
  2189. },
  2190. "_anchorPoint": {
  2191. "__type__": "cc.Vec2",
  2192. "x": 0.5,
  2193. "y": 0.5
  2194. },
  2195. "_id": ""
  2196. },
  2197. {
  2198. "__type__": "cc.CompPrefabInfo",
  2199. "fileId": "ddIJm266pADYPp1y9AABfC"
  2200. },
  2201. {
  2202. "__type__": "cc.PrefabInfo",
  2203. "root": {
  2204. "__id__": 1
  2205. },
  2206. "asset": {
  2207. "__id__": 0
  2208. },
  2209. "fileId": "fbgiS+//9Kw4mNxRnpEfde",
  2210. "instance": null,
  2211. "targetOverrides": null,
  2212. "nestedPrefabInstanceRoots": null
  2213. },
  2214. {
  2215. "__type__": "cc.UITransform",
  2216. "_name": "",
  2217. "_objFlags": 0,
  2218. "__editorExtras__": {},
  2219. "node": {
  2220. "__id__": 38
  2221. },
  2222. "_enabled": true,
  2223. "__prefab": {
  2224. "__id__": 94
  2225. },
  2226. "_contentSize": {
  2227. "__type__": "cc.Size",
  2228. "width": 586.794,
  2229. "height": 553.0999999999999
  2230. },
  2231. "_anchorPoint": {
  2232. "__type__": "cc.Vec2",
  2233. "x": 0.5,
  2234. "y": 0.5
  2235. },
  2236. "_id": ""
  2237. },
  2238. {
  2239. "__type__": "cc.CompPrefabInfo",
  2240. "fileId": "11aLb4r8FMza8z5BK7Fmw7"
  2241. },
  2242. {
  2243. "__type__": "cc.Sprite",
  2244. "_name": "",
  2245. "_objFlags": 0,
  2246. "__editorExtras__": {},
  2247. "node": {
  2248. "__id__": 38
  2249. },
  2250. "_enabled": true,
  2251. "__prefab": {
  2252. "__id__": 96
  2253. },
  2254. "_customMaterial": null,
  2255. "_srcBlendFactor": 2,
  2256. "_dstBlendFactor": 4,
  2257. "_color": {
  2258. "__type__": "cc.Color",
  2259. "r": 255,
  2260. "g": 255,
  2261. "b": 255,
  2262. "a": 255
  2263. },
  2264. "_spriteFrame": {
  2265. "__uuid__": "f1fa8edd-957f-4cd3-93a8-9fc4e783c5a5@f9941",
  2266. "__expectedType__": "cc.SpriteFrame"
  2267. },
  2268. "_type": 1,
  2269. "_fillType": 0,
  2270. "_sizeMode": 0,
  2271. "_fillCenter": {
  2272. "__type__": "cc.Vec2",
  2273. "x": 0,
  2274. "y": 0
  2275. },
  2276. "_fillStart": 0,
  2277. "_fillRange": 0,
  2278. "_isTrimmedMode": true,
  2279. "_useGrayscale": false,
  2280. "_atlas": null,
  2281. "_id": ""
  2282. },
  2283. {
  2284. "__type__": "cc.CompPrefabInfo",
  2285. "fileId": "b10P37pFZCkZIftKBKicM0"
  2286. },
  2287. {
  2288. "__type__": "cc.Animation",
  2289. "_name": "",
  2290. "_objFlags": 0,
  2291. "__editorExtras__": {},
  2292. "node": {
  2293. "__id__": 38
  2294. },
  2295. "_enabled": true,
  2296. "__prefab": {
  2297. "__id__": 98
  2298. },
  2299. "playOnLoad": true,
  2300. "_clips": [
  2301. {
  2302. "__uuid__": "a0fff91a-a33e-49c2-b2b4-bfac4804bfbd",
  2303. "__expectedType__": "cc.AnimationClip"
  2304. }
  2305. ],
  2306. "_defaultClip": {
  2307. "__uuid__": "a0fff91a-a33e-49c2-b2b4-bfac4804bfbd",
  2308. "__expectedType__": "cc.AnimationClip"
  2309. },
  2310. "_id": ""
  2311. },
  2312. {
  2313. "__type__": "cc.CompPrefabInfo",
  2314. "fileId": "0eOQqYYu9PM5jIfZiKnc1C"
  2315. },
  2316. {
  2317. "__type__": "cc.Layout",
  2318. "_name": "",
  2319. "_objFlags": 0,
  2320. "__editorExtras__": {},
  2321. "node": {
  2322. "__id__": 38
  2323. },
  2324. "_enabled": true,
  2325. "__prefab": {
  2326. "__id__": 100
  2327. },
  2328. "_resizeMode": 1,
  2329. "_layoutType": 2,
  2330. "_cellSize": {
  2331. "__type__": "cc.Size",
  2332. "width": 40,
  2333. "height": 40
  2334. },
  2335. "_startAxis": 0,
  2336. "_paddingLeft": 0,
  2337. "_paddingRight": 0,
  2338. "_paddingTop": -60,
  2339. "_paddingBottom": 30,
  2340. "_spacingX": 0,
  2341. "_spacingY": 0,
  2342. "_verticalDirection": 1,
  2343. "_horizontalDirection": 0,
  2344. "_constraint": 0,
  2345. "_constraintNum": 2,
  2346. "_affectedByScale": false,
  2347. "_isAlign": false,
  2348. "_id": ""
  2349. },
  2350. {
  2351. "__type__": "cc.CompPrefabInfo",
  2352. "fileId": "f8Zc4UBjBHnalW+9f6TEAu"
  2353. },
  2354. {
  2355. "__type__": "cc.PrefabInfo",
  2356. "root": {
  2357. "__id__": 1
  2358. },
  2359. "asset": {
  2360. "__id__": 0
  2361. },
  2362. "fileId": "e44z7miFdJyqwXK4dobznb",
  2363. "instance": null,
  2364. "targetOverrides": null,
  2365. "nestedPrefabInstanceRoots": null
  2366. },
  2367. {
  2368. "__type__": "cc.Node",
  2369. "_objFlags": 0,
  2370. "_parent": {
  2371. "__id__": 1
  2372. },
  2373. "_prefab": {
  2374. "__id__": 103
  2375. },
  2376. "__editorExtras__": {}
  2377. },
  2378. {
  2379. "__type__": "cc.PrefabInfo",
  2380. "root": {
  2381. "__id__": 102
  2382. },
  2383. "asset": {
  2384. "__uuid__": "0c78a08a-69a1-4ce4-a8f1-b75767410906",
  2385. "__expectedType__": "cc.Prefab"
  2386. },
  2387. "fileId": "45I+1vKipFEI9dort+hxeT",
  2388. "instance": {
  2389. "__id__": 104
  2390. },
  2391. "targetOverrides": null
  2392. },
  2393. {
  2394. "__type__": "cc.PrefabInstance",
  2395. "fileId": "deTGzhOehLvI6qtHu1vOpa",
  2396. "prefabRootNode": {
  2397. "__id__": 1
  2398. },
  2399. "mountedChildren": [],
  2400. "mountedComponents": [],
  2401. "propertyOverrides": [
  2402. {
  2403. "__id__": 105
  2404. },
  2405. {
  2406. "__id__": 107
  2407. },
  2408. {
  2409. "__id__": 108
  2410. },
  2411. {
  2412. "__id__": 109
  2413. },
  2414. {
  2415. "__id__": 110
  2416. },
  2417. {
  2418. "__id__": 112
  2419. }
  2420. ],
  2421. "removedComponents": []
  2422. },
  2423. {
  2424. "__type__": "CCPropertyOverrideInfo",
  2425. "targetInfo": {
  2426. "__id__": 106
  2427. },
  2428. "propertyPath": [
  2429. "_name"
  2430. ],
  2431. "value": "tap_close"
  2432. },
  2433. {
  2434. "__type__": "cc.TargetInfo",
  2435. "localID": [
  2436. "45I+1vKipFEI9dort+hxeT"
  2437. ]
  2438. },
  2439. {
  2440. "__type__": "CCPropertyOverrideInfo",
  2441. "targetInfo": {
  2442. "__id__": 106
  2443. },
  2444. "propertyPath": [
  2445. "_lpos"
  2446. ],
  2447. "value": {
  2448. "__type__": "cc.Vec3",
  2449. "x": 0,
  2450. "y": -482.762,
  2451. "z": 0
  2452. }
  2453. },
  2454. {
  2455. "__type__": "CCPropertyOverrideInfo",
  2456. "targetInfo": {
  2457. "__id__": 106
  2458. },
  2459. "propertyPath": [
  2460. "_lrot"
  2461. ],
  2462. "value": {
  2463. "__type__": "cc.Quat",
  2464. "x": 0,
  2465. "y": 0,
  2466. "z": 0,
  2467. "w": 1
  2468. }
  2469. },
  2470. {
  2471. "__type__": "CCPropertyOverrideInfo",
  2472. "targetInfo": {
  2473. "__id__": 106
  2474. },
  2475. "propertyPath": [
  2476. "_euler"
  2477. ],
  2478. "value": {
  2479. "__type__": "cc.Vec3",
  2480. "x": 0,
  2481. "y": 0,
  2482. "z": 0
  2483. }
  2484. },
  2485. {
  2486. "__type__": "CCPropertyOverrideInfo",
  2487. "targetInfo": {
  2488. "__id__": 111
  2489. },
  2490. "propertyPath": [
  2491. "_bottom"
  2492. ],
  2493. "value": 107.238
  2494. },
  2495. {
  2496. "__type__": "cc.TargetInfo",
  2497. "localID": [
  2498. "81v10z28BNqZ/Uwudx0+Am"
  2499. ]
  2500. },
  2501. {
  2502. "__type__": "CCPropertyOverrideInfo",
  2503. "targetInfo": {
  2504. "__id__": 106
  2505. },
  2506. "propertyPath": [
  2507. "_active"
  2508. ],
  2509. "value": false
  2510. },
  2511. {
  2512. "__type__": "cc.UITransform",
  2513. "_name": "",
  2514. "_objFlags": 0,
  2515. "__editorExtras__": {},
  2516. "node": {
  2517. "__id__": 1
  2518. },
  2519. "_enabled": true,
  2520. "__prefab": {
  2521. "__id__": 114
  2522. },
  2523. "_contentSize": {
  2524. "__type__": "cc.Size",
  2525. "width": 720,
  2526. "height": 1280
  2527. },
  2528. "_anchorPoint": {
  2529. "__type__": "cc.Vec2",
  2530. "x": 0.5,
  2531. "y": 0.5
  2532. },
  2533. "_id": ""
  2534. },
  2535. {
  2536. "__type__": "cc.CompPrefabInfo",
  2537. "fileId": "fchk3mMPlEEoRWrMPIpt/i"
  2538. },
  2539. {
  2540. "__type__": "cc.Widget",
  2541. "_name": "",
  2542. "_objFlags": 0,
  2543. "__editorExtras__": {},
  2544. "node": {
  2545. "__id__": 1
  2546. },
  2547. "_enabled": true,
  2548. "__prefab": {
  2549. "__id__": 116
  2550. },
  2551. "_alignFlags": 45,
  2552. "_target": null,
  2553. "_left": 0,
  2554. "_right": 0,
  2555. "_top": 0,
  2556. "_bottom": 0,
  2557. "_horizontalCenter": 0,
  2558. "_verticalCenter": 0,
  2559. "_isAbsLeft": true,
  2560. "_isAbsRight": true,
  2561. "_isAbsTop": true,
  2562. "_isAbsBottom": true,
  2563. "_isAbsHorizontalCenter": true,
  2564. "_isAbsVerticalCenter": true,
  2565. "_originalWidth": 100,
  2566. "_originalHeight": 100,
  2567. "_alignMode": 2,
  2568. "_lockFlags": 0,
  2569. "_id": ""
  2570. },
  2571. {
  2572. "__type__": "cc.CompPrefabInfo",
  2573. "fileId": "caGZgxR19HL6Z7oAmyrPlA"
  2574. },
  2575. {
  2576. "__type__": "3c1770gS7FOJ5ToAl64v+7u",
  2577. "_name": "",
  2578. "_objFlags": 0,
  2579. "__editorExtras__": {},
  2580. "node": {
  2581. "__id__": 1
  2582. },
  2583. "_enabled": true,
  2584. "__prefab": {
  2585. "__id__": 118
  2586. },
  2587. "_id": ""
  2588. },
  2589. {
  2590. "__type__": "cc.CompPrefabInfo",
  2591. "fileId": "1dF9H44zJLfKXmCCjFEEFl"
  2592. },
  2593. {
  2594. "__type__": "cc.PrefabInfo",
  2595. "root": {
  2596. "__id__": 1
  2597. },
  2598. "asset": {
  2599. "__id__": 0
  2600. },
  2601. "fileId": "a1FjelHHtAzJyy283B//Nx",
  2602. "instance": null,
  2603. "targetOverrides": null,
  2604. "nestedPrefabInstanceRoots": [
  2605. {
  2606. "__id__": 102
  2607. }
  2608. ]
  2609. }
  2610. ]