WithdrawalRecord.prefab 43 KB

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