starHandbook.prefab 55 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "",
  5. "_objFlags": 0,
  6. "_native": "",
  7. "data": {
  8. "__id__": 1
  9. },
  10. "optimizationPolicy": 0,
  11. "asyncLoadAssets": false
  12. },
  13. {
  14. "__type__": "cc.Node",
  15. "_name": "starHandbook",
  16. "_objFlags": 0,
  17. "_parent": null,
  18. "_children": [
  19. {
  20. "__id__": 2
  21. },
  22. {
  23. "__id__": 6
  24. },
  25. {
  26. "__id__": 55
  27. }
  28. ],
  29. "_active": true,
  30. "_level": 1,
  31. "_components": [
  32. {
  33. "__id__": 93
  34. }
  35. ],
  36. "_prefab": {
  37. "__id__": 94
  38. },
  39. "_opacity": 255,
  40. "_color": {
  41. "__type__": "cc.Color",
  42. "r": 255,
  43. "g": 255,
  44. "b": 255,
  45. "a": 255
  46. },
  47. "_contentSize": {
  48. "__type__": "cc.Size",
  49. "width": 750,
  50. "height": 1334
  51. },
  52. "_anchorPoint": {
  53. "__type__": "cc.Vec2",
  54. "x": 0.5,
  55. "y": 0.5
  56. },
  57. "_position": {
  58. "__type__": "cc.Vec3",
  59. "x": 0,
  60. "y": 0,
  61. "z": 0
  62. },
  63. "_scale": {
  64. "__type__": "cc.Vec3",
  65. "x": 1,
  66. "y": 1,
  67. "z": 1
  68. },
  69. "_rotationX": 0,
  70. "_rotationY": 0,
  71. "_quat": {
  72. "__type__": "cc.Quat",
  73. "x": 0,
  74. "y": 0,
  75. "z": 0,
  76. "w": 1
  77. },
  78. "_skewX": 0,
  79. "_skewY": 0,
  80. "_zIndex": 0,
  81. "groupIndex": 0,
  82. "_id": ""
  83. },
  84. {
  85. "__type__": "cc.Node",
  86. "_name": "maskBg",
  87. "_objFlags": 0,
  88. "_parent": {
  89. "__id__": 1
  90. },
  91. "_children": [],
  92. "_active": true,
  93. "_level": 2,
  94. "_components": [
  95. {
  96. "__id__": 3
  97. },
  98. {
  99. "__id__": 4
  100. }
  101. ],
  102. "_prefab": {
  103. "__id__": 5
  104. },
  105. "_opacity": 153,
  106. "_color": {
  107. "__type__": "cc.Color",
  108. "r": 0,
  109. "g": 0,
  110. "b": 0,
  111. "a": 255
  112. },
  113. "_contentSize": {
  114. "__type__": "cc.Size",
  115. "width": 1500,
  116. "height": 2000
  117. },
  118. "_anchorPoint": {
  119. "__type__": "cc.Vec2",
  120. "x": 0.5,
  121. "y": 0.5
  122. },
  123. "_position": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_scale": {
  130. "__type__": "cc.Vec3",
  131. "x": 1,
  132. "y": 1,
  133. "z": 1
  134. },
  135. "_rotationX": 0,
  136. "_rotationY": 0,
  137. "_quat": {
  138. "__type__": "cc.Quat",
  139. "x": 0,
  140. "y": 0,
  141. "z": 0,
  142. "w": 1
  143. },
  144. "_skewX": 0,
  145. "_skewY": 0,
  146. "_zIndex": 0,
  147. "groupIndex": 0,
  148. "_id": ""
  149. },
  150. {
  151. "__type__": "cc.Sprite",
  152. "_name": "",
  153. "_objFlags": 0,
  154. "node": {
  155. "__id__": 2
  156. },
  157. "_enabled": true,
  158. "_srcBlendFactor": 770,
  159. "_dstBlendFactor": 771,
  160. "_spriteFrame": {
  161. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  162. },
  163. "_type": 0,
  164. "_sizeMode": 0,
  165. "_fillType": 0,
  166. "_fillCenter": {
  167. "__type__": "cc.Vec2",
  168. "x": 0,
  169. "y": 0
  170. },
  171. "_fillStart": 0,
  172. "_fillRange": 0,
  173. "_isTrimmedMode": true,
  174. "_state": 0,
  175. "_atlas": null,
  176. "_id": "18zuW+RQRCNIw9Oct3NyZ0"
  177. },
  178. {
  179. "__type__": "cc.BlockInputEvents",
  180. "_name": "",
  181. "_objFlags": 0,
  182. "node": {
  183. "__id__": 2
  184. },
  185. "_enabled": true,
  186. "_id": "01jnF9OG1IuoZq+NK3tF05"
  187. },
  188. {
  189. "__type__": "cc.PrefabInfo",
  190. "root": {
  191. "__id__": 1
  192. },
  193. "asset": {
  194. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  195. },
  196. "fileId": "ceb3ClZrFPkL9vEyxeBEoq",
  197. "sync": false
  198. },
  199. {
  200. "__type__": "cc.Node",
  201. "_name": "content",
  202. "_objFlags": 0,
  203. "_parent": {
  204. "__id__": 1
  205. },
  206. "_children": [
  207. {
  208. "__id__": 7
  209. },
  210. {
  211. "__id__": 42
  212. },
  213. {
  214. "__id__": 49
  215. }
  216. ],
  217. "_active": true,
  218. "_level": 2,
  219. "_components": [],
  220. "_prefab": {
  221. "__id__": 54
  222. },
  223. "_opacity": 255,
  224. "_color": {
  225. "__type__": "cc.Color",
  226. "r": 255,
  227. "g": 255,
  228. "b": 255,
  229. "a": 255
  230. },
  231. "_contentSize": {
  232. "__type__": "cc.Size",
  233. "width": 0,
  234. "height": 0
  235. },
  236. "_anchorPoint": {
  237. "__type__": "cc.Vec2",
  238. "x": 0.5,
  239. "y": 0.5
  240. },
  241. "_position": {
  242. "__type__": "cc.Vec3",
  243. "x": 0,
  244. "y": 0,
  245. "z": 0
  246. },
  247. "_scale": {
  248. "__type__": "cc.Vec3",
  249. "x": 1,
  250. "y": 1,
  251. "z": 1
  252. },
  253. "_rotationX": 0,
  254. "_rotationY": 0,
  255. "_quat": {
  256. "__type__": "cc.Quat",
  257. "x": 0,
  258. "y": 0,
  259. "z": 0,
  260. "w": 1
  261. },
  262. "_skewX": 0,
  263. "_skewY": 0,
  264. "_zIndex": 0,
  265. "groupIndex": 0,
  266. "_id": ""
  267. },
  268. {
  269. "__type__": "cc.Node",
  270. "_name": "common_frame_bg",
  271. "_objFlags": 0,
  272. "_parent": {
  273. "__id__": 6
  274. },
  275. "_children": [
  276. {
  277. "__id__": 8
  278. },
  279. {
  280. "__id__": 16
  281. },
  282. {
  283. "__id__": 25
  284. },
  285. {
  286. "__id__": 29
  287. },
  288. {
  289. "__id__": 33
  290. }
  291. ],
  292. "_active": true,
  293. "_level": 3,
  294. "_components": [
  295. {
  296. "__id__": 40
  297. }
  298. ],
  299. "_prefab": {
  300. "__id__": 41
  301. },
  302. "_opacity": 255,
  303. "_color": {
  304. "__type__": "cc.Color",
  305. "r": 255,
  306. "g": 255,
  307. "b": 255,
  308. "a": 255
  309. },
  310. "_contentSize": {
  311. "__type__": "cc.Size",
  312. "width": 700,
  313. "height": 900
  314. },
  315. "_anchorPoint": {
  316. "__type__": "cc.Vec2",
  317. "x": 0.5,
  318. "y": 0.5
  319. },
  320. "_position": {
  321. "__type__": "cc.Vec3",
  322. "x": 0,
  323. "y": 0,
  324. "z": 0
  325. },
  326. "_scale": {
  327. "__type__": "cc.Vec3",
  328. "x": 1,
  329. "y": 1,
  330. "z": 1
  331. },
  332. "_rotationX": 0,
  333. "_rotationY": 0,
  334. "_quat": {
  335. "__type__": "cc.Quat",
  336. "x": 0,
  337. "y": 0,
  338. "z": 0,
  339. "w": 1
  340. },
  341. "_skewX": 0,
  342. "_skewY": 0,
  343. "_zIndex": 0,
  344. "groupIndex": 0,
  345. "_id": ""
  346. },
  347. {
  348. "__type__": "cc.Node",
  349. "_name": "New ProgressBar",
  350. "_objFlags": 0,
  351. "_parent": {
  352. "__id__": 7
  353. },
  354. "_children": [
  355. {
  356. "__id__": 9
  357. }
  358. ],
  359. "_active": true,
  360. "_level": 4,
  361. "_components": [
  362. {
  363. "__id__": 12
  364. },
  365. {
  366. "__id__": 13
  367. },
  368. {
  369. "__id__": 14
  370. }
  371. ],
  372. "_prefab": {
  373. "__id__": 15
  374. },
  375. "_opacity": 255,
  376. "_color": {
  377. "__type__": "cc.Color",
  378. "r": 255,
  379. "g": 255,
  380. "b": 255,
  381. "a": 255
  382. },
  383. "_contentSize": {
  384. "__type__": "cc.Size",
  385. "width": 620,
  386. "height": 34
  387. },
  388. "_anchorPoint": {
  389. "__type__": "cc.Vec2",
  390. "x": 0.5,
  391. "y": 0.5
  392. },
  393. "_position": {
  394. "__type__": "cc.Vec3",
  395. "x": 0,
  396. "y": 348,
  397. "z": 0
  398. },
  399. "_scale": {
  400. "__type__": "cc.Vec3",
  401. "x": 1,
  402. "y": 1,
  403. "z": 1
  404. },
  405. "_rotationX": 0,
  406. "_rotationY": 0,
  407. "_quat": {
  408. "__type__": "cc.Quat",
  409. "x": 0,
  410. "y": 0,
  411. "z": 0,
  412. "w": 1
  413. },
  414. "_skewX": 0,
  415. "_skewY": 0,
  416. "_zIndex": 0,
  417. "groupIndex": 0,
  418. "_id": ""
  419. },
  420. {
  421. "__type__": "cc.Node",
  422. "_name": "bar",
  423. "_objFlags": 0,
  424. "_parent": {
  425. "__id__": 8
  426. },
  427. "_children": [],
  428. "_active": true,
  429. "_level": 0,
  430. "_components": [
  431. {
  432. "__id__": 10
  433. }
  434. ],
  435. "_prefab": {
  436. "__id__": 11
  437. },
  438. "_opacity": 255,
  439. "_color": {
  440. "__type__": "cc.Color",
  441. "r": 255,
  442. "g": 255,
  443. "b": 255,
  444. "a": 255
  445. },
  446. "_contentSize": {
  447. "__type__": "cc.Size",
  448. "width": 0,
  449. "height": 34
  450. },
  451. "_anchorPoint": {
  452. "__type__": "cc.Vec2",
  453. "x": 0,
  454. "y": 0.5
  455. },
  456. "_position": {
  457. "__type__": "cc.Vec3",
  458. "x": -310,
  459. "y": 0,
  460. "z": 0
  461. },
  462. "_scale": {
  463. "__type__": "cc.Vec3",
  464. "x": 1,
  465. "y": 1,
  466. "z": 1
  467. },
  468. "_rotationX": 0,
  469. "_rotationY": 0,
  470. "_quat": {
  471. "__type__": "cc.Quat",
  472. "x": 0,
  473. "y": 0,
  474. "z": 0,
  475. "w": 1
  476. },
  477. "_skewX": 0,
  478. "_skewY": 0,
  479. "_zIndex": 0,
  480. "groupIndex": 0,
  481. "_id": ""
  482. },
  483. {
  484. "__type__": "cc.Sprite",
  485. "_name": "",
  486. "_objFlags": 0,
  487. "node": {
  488. "__id__": 9
  489. },
  490. "_enabled": true,
  491. "_srcBlendFactor": 770,
  492. "_dstBlendFactor": 771,
  493. "_spriteFrame": {
  494. "__uuid__": "37dd7a58-920c-4fbf-a8af-d8a71a4842dc"
  495. },
  496. "_type": 2,
  497. "_sizeMode": 0,
  498. "_fillType": 0,
  499. "_fillCenter": {
  500. "__type__": "cc.Vec2",
  501. "x": 0,
  502. "y": 0
  503. },
  504. "_fillStart": 0,
  505. "_fillRange": 0,
  506. "_isTrimmedMode": true,
  507. "_state": 0,
  508. "_atlas": null,
  509. "_id": "bcM4Dm4BlJSqruUV7L9Rc0"
  510. },
  511. {
  512. "__type__": "cc.PrefabInfo",
  513. "root": {
  514. "__id__": 1
  515. },
  516. "asset": {
  517. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  518. },
  519. "fileId": "c3hNHeKTFFortmkJzrEqT1",
  520. "sync": false
  521. },
  522. {
  523. "__type__": "cc.Sprite",
  524. "_name": "",
  525. "_objFlags": 0,
  526. "node": {
  527. "__id__": 8
  528. },
  529. "_enabled": true,
  530. "_srcBlendFactor": 770,
  531. "_dstBlendFactor": 771,
  532. "_spriteFrame": {
  533. "__uuid__": "6c222544-71d1-46b6-a7d0-16ff053160a6"
  534. },
  535. "_type": 0,
  536. "_sizeMode": 0,
  537. "_fillType": 0,
  538. "_fillCenter": {
  539. "__type__": "cc.Vec2",
  540. "x": 0,
  541. "y": 0
  542. },
  543. "_fillStart": 0,
  544. "_fillRange": 0,
  545. "_isTrimmedMode": true,
  546. "_state": 0,
  547. "_atlas": null,
  548. "_id": "49HSzl7R1CKah9eC6hcHiC"
  549. },
  550. {
  551. "__type__": "cc.ProgressBar",
  552. "_name": "",
  553. "_objFlags": 0,
  554. "node": {
  555. "__id__": 8
  556. },
  557. "_enabled": true,
  558. "_N$totalLength": 620,
  559. "_N$barSprite": {
  560. "__id__": 10
  561. },
  562. "_N$mode": 0,
  563. "_N$progress": 0,
  564. "_N$reverse": false,
  565. "_id": "e2L2wJaOlNpIQo8xvSpHj0"
  566. },
  567. {
  568. "__type__": "cc.Widget",
  569. "_name": "",
  570. "_objFlags": 0,
  571. "node": {
  572. "__id__": 8
  573. },
  574. "_enabled": true,
  575. "alignMode": 1,
  576. "_target": null,
  577. "_alignFlags": 41,
  578. "_left": 40,
  579. "_right": 40,
  580. "_top": 85,
  581. "_bottom": 0,
  582. "_verticalCenter": 0,
  583. "_horizontalCenter": 0,
  584. "_isAbsLeft": true,
  585. "_isAbsRight": true,
  586. "_isAbsTop": true,
  587. "_isAbsBottom": true,
  588. "_isAbsHorizontalCenter": true,
  589. "_isAbsVerticalCenter": true,
  590. "_originalWidth": 300,
  591. "_originalHeight": 0,
  592. "_id": "85dyE5zAxJmb7pfqR6ArJN"
  593. },
  594. {
  595. "__type__": "cc.PrefabInfo",
  596. "root": {
  597. "__id__": 1
  598. },
  599. "asset": {
  600. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  601. },
  602. "fileId": "b2ya91zJZGZKYvi64zs1G5",
  603. "sync": false
  604. },
  605. {
  606. "__type__": "cc.Node",
  607. "_name": "scrollview",
  608. "_objFlags": 0,
  609. "_parent": {
  610. "__id__": 7
  611. },
  612. "_children": [
  613. {
  614. "__id__": 17
  615. }
  616. ],
  617. "_active": true,
  618. "_level": 4,
  619. "_components": [
  620. {
  621. "__id__": 21
  622. },
  623. {
  624. "__id__": 22
  625. },
  626. {
  627. "__id__": 23
  628. }
  629. ],
  630. "_prefab": {
  631. "__id__": 24
  632. },
  633. "_opacity": 255,
  634. "_color": {
  635. "__type__": "cc.Color",
  636. "r": 255,
  637. "g": 255,
  638. "b": 255,
  639. "a": 255
  640. },
  641. "_contentSize": {
  642. "__type__": "cc.Size",
  643. "width": 620,
  644. "height": 720
  645. },
  646. "_anchorPoint": {
  647. "__type__": "cc.Vec2",
  648. "x": 0.5,
  649. "y": 0.5
  650. },
  651. "_position": {
  652. "__type__": "cc.Vec3",
  653. "x": 0,
  654. "y": -55,
  655. "z": 0
  656. },
  657. "_scale": {
  658. "__type__": "cc.Vec3",
  659. "x": 1,
  660. "y": 1,
  661. "z": 1
  662. },
  663. "_rotationX": 0,
  664. "_rotationY": 0,
  665. "_quat": {
  666. "__type__": "cc.Quat",
  667. "x": 0,
  668. "y": 0,
  669. "z": 0,
  670. "w": 1
  671. },
  672. "_skewX": 0,
  673. "_skewY": 0,
  674. "_zIndex": 0,
  675. "groupIndex": 0,
  676. "_id": ""
  677. },
  678. {
  679. "__type__": "cc.Node",
  680. "_name": "content",
  681. "_objFlags": 0,
  682. "_parent": {
  683. "__id__": 16
  684. },
  685. "_children": [],
  686. "_active": true,
  687. "_level": 5,
  688. "_components": [
  689. {
  690. "__id__": 18
  691. },
  692. {
  693. "__id__": 19
  694. }
  695. ],
  696. "_prefab": {
  697. "__id__": 20
  698. },
  699. "_opacity": 255,
  700. "_color": {
  701. "__type__": "cc.Color",
  702. "r": 255,
  703. "g": 255,
  704. "b": 255,
  705. "a": 255
  706. },
  707. "_contentSize": {
  708. "__type__": "cc.Size",
  709. "width": 620,
  710. "height": 720
  711. },
  712. "_anchorPoint": {
  713. "__type__": "cc.Vec2",
  714. "x": 0.5,
  715. "y": 1
  716. },
  717. "_position": {
  718. "__type__": "cc.Vec3",
  719. "x": 0,
  720. "y": 360,
  721. "z": 0
  722. },
  723. "_scale": {
  724. "__type__": "cc.Vec3",
  725. "x": 1,
  726. "y": 1,
  727. "z": 1
  728. },
  729. "_rotationX": 0,
  730. "_rotationY": 0,
  731. "_quat": {
  732. "__type__": "cc.Quat",
  733. "x": 0,
  734. "y": 0,
  735. "z": 0,
  736. "w": 1
  737. },
  738. "_skewX": 0,
  739. "_skewY": 0,
  740. "_zIndex": 0,
  741. "groupIndex": 0,
  742. "_id": ""
  743. },
  744. {
  745. "__type__": "cc.Layout",
  746. "_name": "",
  747. "_objFlags": 0,
  748. "node": {
  749. "__id__": 17
  750. },
  751. "_enabled": true,
  752. "_layoutSize": {
  753. "__type__": "cc.Size",
  754. "width": 620,
  755. "height": 720
  756. },
  757. "_resize": 1,
  758. "_N$layoutType": 3,
  759. "_N$padding": 0,
  760. "_N$cellSize": {
  761. "__type__": "cc.Size",
  762. "width": 40,
  763. "height": 40
  764. },
  765. "_N$startAxis": 0,
  766. "_N$paddingLeft": 0,
  767. "_N$paddingRight": 0,
  768. "_N$paddingTop": 0,
  769. "_N$paddingBottom": 0,
  770. "_N$spacingX": 9,
  771. "_N$spacingY": 8,
  772. "_N$verticalDirection": 1,
  773. "_N$horizontalDirection": 0,
  774. "_id": "3aF8VUol1OpJrKeuWJRfmX"
  775. },
  776. {
  777. "__type__": "cc.Widget",
  778. "_name": "",
  779. "_objFlags": 0,
  780. "node": {
  781. "__id__": 17
  782. },
  783. "_enabled": true,
  784. "alignMode": 1,
  785. "_target": null,
  786. "_alignFlags": 45,
  787. "_left": 0,
  788. "_right": 0,
  789. "_top": 0,
  790. "_bottom": 0,
  791. "_verticalCenter": 0,
  792. "_horizontalCenter": 0,
  793. "_isAbsLeft": true,
  794. "_isAbsRight": true,
  795. "_isAbsTop": true,
  796. "_isAbsBottom": true,
  797. "_isAbsHorizontalCenter": true,
  798. "_isAbsVerticalCenter": true,
  799. "_originalWidth": 220,
  800. "_originalHeight": 400,
  801. "_id": "3fZC5RYUlNKagIJpTA0AgD"
  802. },
  803. {
  804. "__type__": "cc.PrefabInfo",
  805. "root": {
  806. "__id__": 1
  807. },
  808. "asset": {
  809. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  810. },
  811. "fileId": "50x1nMnj5NnqZVInrHcLKX",
  812. "sync": false
  813. },
  814. {
  815. "__type__": "cc.ScrollView",
  816. "_name": "",
  817. "_objFlags": 0,
  818. "node": {
  819. "__id__": 16
  820. },
  821. "_enabled": true,
  822. "content": {
  823. "__id__": 17
  824. },
  825. "horizontal": false,
  826. "vertical": true,
  827. "inertia": true,
  828. "brake": 0.75,
  829. "elastic": true,
  830. "bounceDuration": 0.23,
  831. "scrollEvents": [],
  832. "cancelInnerEvents": true,
  833. "_N$horizontalScrollBar": null,
  834. "_N$verticalScrollBar": null,
  835. "_id": "bbsqcoXDREP7udJTwaRwQJ"
  836. },
  837. {
  838. "__type__": "cc.Widget",
  839. "_name": "",
  840. "_objFlags": 0,
  841. "node": {
  842. "__id__": 16
  843. },
  844. "_enabled": true,
  845. "alignMode": 1,
  846. "_target": null,
  847. "_alignFlags": 45,
  848. "_left": 40,
  849. "_right": 40,
  850. "_top": 145,
  851. "_bottom": 35,
  852. "_verticalCenter": 0,
  853. "_horizontalCenter": 0,
  854. "_isAbsLeft": true,
  855. "_isAbsRight": true,
  856. "_isAbsTop": true,
  857. "_isAbsBottom": true,
  858. "_isAbsHorizontalCenter": true,
  859. "_isAbsVerticalCenter": true,
  860. "_originalWidth": 240,
  861. "_originalHeight": 250,
  862. "_id": "0cMinwv1ZJbIzanAtayv5k"
  863. },
  864. {
  865. "__type__": "cc.Mask",
  866. "_name": "",
  867. "_objFlags": 0,
  868. "node": {
  869. "__id__": 16
  870. },
  871. "_enabled": true,
  872. "_srcBlendFactor": 770,
  873. "_dstBlendFactor": 771,
  874. "_spriteFrame": null,
  875. "_type": 0,
  876. "_segments": 64,
  877. "_N$alphaThreshold": 0,
  878. "_N$inverted": false,
  879. "_id": "47FQaHahNGYIJbvylEeRKf"
  880. },
  881. {
  882. "__type__": "cc.PrefabInfo",
  883. "root": {
  884. "__id__": 1
  885. },
  886. "asset": {
  887. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  888. },
  889. "fileId": "7cJVACB+tCb4WYWLiCL2XT",
  890. "sync": false
  891. },
  892. {
  893. "__type__": "cc.Node",
  894. "_name": "label",
  895. "_objFlags": 0,
  896. "_parent": {
  897. "__id__": 7
  898. },
  899. "_children": [],
  900. "_active": true,
  901. "_level": 4,
  902. "_components": [
  903. {
  904. "__id__": 26
  905. },
  906. {
  907. "__id__": 27
  908. }
  909. ],
  910. "_prefab": {
  911. "__id__": 28
  912. },
  913. "_opacity": 255,
  914. "_color": {
  915. "__type__": "cc.Color",
  916. "r": 255,
  917. "g": 255,
  918. "b": 255,
  919. "a": 255
  920. },
  921. "_contentSize": {
  922. "__type__": "cc.Size",
  923. "width": 194.71,
  924. "height": 28
  925. },
  926. "_anchorPoint": {
  927. "__type__": "cc.Vec2",
  928. "x": 0,
  929. "y": 0.5
  930. },
  931. "_position": {
  932. "__type__": "cc.Vec3",
  933. "x": -285,
  934. "y": 347,
  935. "z": 0
  936. },
  937. "_scale": {
  938. "__type__": "cc.Vec3",
  939. "x": 1,
  940. "y": 1,
  941. "z": 1
  942. },
  943. "_rotationX": 0,
  944. "_rotationY": 0,
  945. "_quat": {
  946. "__type__": "cc.Quat",
  947. "x": 0,
  948. "y": 0,
  949. "z": 0,
  950. "w": 1
  951. },
  952. "_skewX": 0,
  953. "_skewY": 0,
  954. "_zIndex": 0,
  955. "groupIndex": 0,
  956. "_id": ""
  957. },
  958. {
  959. "__type__": "cc.Label",
  960. "_name": "",
  961. "_objFlags": 0,
  962. "node": {
  963. "__id__": 25
  964. },
  965. "_enabled": true,
  966. "_srcBlendFactor": 1,
  967. "_dstBlendFactor": 771,
  968. "_useOriginalSize": false,
  969. "_string": "0/50已收集的明星",
  970. "_N$string": "0/50已收集的明星",
  971. "_fontSize": 24,
  972. "_lineHeight": 28,
  973. "_enableWrapText": true,
  974. "_N$file": null,
  975. "_isSystemFontUsed": true,
  976. "_spacingX": 0,
  977. "_N$horizontalAlign": 1,
  978. "_N$verticalAlign": 1,
  979. "_N$fontFamily": "Arial",
  980. "_N$overflow": 0,
  981. "_id": "e9a1TxYG5ORY0Fj1NTbTlz"
  982. },
  983. {
  984. "__type__": "cc.LabelOutline",
  985. "_name": "",
  986. "_objFlags": 0,
  987. "node": {
  988. "__id__": 25
  989. },
  990. "_enabled": true,
  991. "_color": {
  992. "__type__": "cc.Color",
  993. "r": 61,
  994. "g": 46,
  995. "b": 29,
  996. "a": 255
  997. },
  998. "_width": 2,
  999. "_id": "e7lB0OJTFGgrs8v65dOCtF"
  1000. },
  1001. {
  1002. "__type__": "cc.PrefabInfo",
  1003. "root": {
  1004. "__id__": 1
  1005. },
  1006. "asset": {
  1007. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1008. },
  1009. "fileId": "7ew+sBfktDb7dEsU2kWkB8",
  1010. "sync": false
  1011. },
  1012. {
  1013. "__type__": "cc.Node",
  1014. "_name": "label",
  1015. "_objFlags": 0,
  1016. "_parent": {
  1017. "__id__": 7
  1018. },
  1019. "_children": [],
  1020. "_active": false,
  1021. "_level": 4,
  1022. "_components": [
  1023. {
  1024. "__id__": 30
  1025. },
  1026. {
  1027. "__id__": 31
  1028. }
  1029. ],
  1030. "_prefab": {
  1031. "__id__": 32
  1032. },
  1033. "_opacity": 255,
  1034. "_color": {
  1035. "__type__": "cc.Color",
  1036. "r": 255,
  1037. "g": 216,
  1038. "b": 0,
  1039. "a": 255
  1040. },
  1041. "_contentSize": {
  1042. "__type__": "cc.Size",
  1043. "width": 61.81,
  1044. "height": 44
  1045. },
  1046. "_anchorPoint": {
  1047. "__type__": "cc.Vec2",
  1048. "x": 1,
  1049. "y": 0.5
  1050. },
  1051. "_position": {
  1052. "__type__": "cc.Vec3",
  1053. "x": 285,
  1054. "y": 362,
  1055. "z": 0
  1056. },
  1057. "_scale": {
  1058. "__type__": "cc.Vec3",
  1059. "x": 1,
  1060. "y": 1,
  1061. "z": 1
  1062. },
  1063. "_rotationX": 0,
  1064. "_rotationY": 0,
  1065. "_quat": {
  1066. "__type__": "cc.Quat",
  1067. "x": 0,
  1068. "y": 0,
  1069. "z": 0,
  1070. "w": 1
  1071. },
  1072. "_skewX": 0,
  1073. "_skewY": 0,
  1074. "_zIndex": 0,
  1075. "groupIndex": 0,
  1076. "_id": ""
  1077. },
  1078. {
  1079. "__type__": "cc.Label",
  1080. "_name": "",
  1081. "_objFlags": 0,
  1082. "node": {
  1083. "__id__": 29
  1084. },
  1085. "_enabled": true,
  1086. "_srcBlendFactor": 1,
  1087. "_dstBlendFactor": 771,
  1088. "_useOriginalSize": false,
  1089. "_string": "0%",
  1090. "_N$string": "0%",
  1091. "_fontSize": 40,
  1092. "_lineHeight": 44,
  1093. "_enableWrapText": true,
  1094. "_N$file": null,
  1095. "_isSystemFontUsed": true,
  1096. "_spacingX": 0,
  1097. "_N$horizontalAlign": 2,
  1098. "_N$verticalAlign": 1,
  1099. "_N$fontFamily": "Arial",
  1100. "_N$overflow": 0,
  1101. "_id": "d04G4wdA9N8ruX6eceflfq"
  1102. },
  1103. {
  1104. "__type__": "cc.LabelOutline",
  1105. "_name": "",
  1106. "_objFlags": 0,
  1107. "node": {
  1108. "__id__": 29
  1109. },
  1110. "_enabled": true,
  1111. "_color": {
  1112. "__type__": "cc.Color",
  1113. "r": 61,
  1114. "g": 46,
  1115. "b": 29,
  1116. "a": 255
  1117. },
  1118. "_width": 2,
  1119. "_id": "7d7ktr7BhEkoyuLVcm/2cc"
  1120. },
  1121. {
  1122. "__type__": "cc.PrefabInfo",
  1123. "root": {
  1124. "__id__": 1
  1125. },
  1126. "asset": {
  1127. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1128. },
  1129. "fileId": "5aI/zJUbJCJ7ZFn+Wjt+Eo",
  1130. "sync": false
  1131. },
  1132. {
  1133. "__type__": "cc.Node",
  1134. "_name": "richtext",
  1135. "_objFlags": 0,
  1136. "_parent": {
  1137. "__id__": 7
  1138. },
  1139. "_children": [
  1140. {
  1141. "__id__": 34
  1142. }
  1143. ],
  1144. "_active": true,
  1145. "_level": 4,
  1146. "_components": [
  1147. {
  1148. "__id__": 38
  1149. }
  1150. ],
  1151. "_prefab": {
  1152. "__id__": 39
  1153. },
  1154. "_opacity": 255,
  1155. "_color": {
  1156. "__type__": "cc.Color",
  1157. "r": 255,
  1158. "g": 255,
  1159. "b": 255,
  1160. "a": 255
  1161. },
  1162. "_contentSize": {
  1163. "__type__": "cc.Size",
  1164. "width": 56.03,
  1165. "height": 40
  1166. },
  1167. "_anchorPoint": {
  1168. "__type__": "cc.Vec2",
  1169. "x": 1,
  1170. "y": 0.5
  1171. },
  1172. "_position": {
  1173. "__type__": "cc.Vec3",
  1174. "x": 285,
  1175. "y": 362,
  1176. "z": 0
  1177. },
  1178. "_scale": {
  1179. "__type__": "cc.Vec3",
  1180. "x": 1,
  1181. "y": 1,
  1182. "z": 1
  1183. },
  1184. "_rotationX": 0,
  1185. "_rotationY": 0,
  1186. "_quat": {
  1187. "__type__": "cc.Quat",
  1188. "x": 0,
  1189. "y": 0,
  1190. "z": 0,
  1191. "w": 1
  1192. },
  1193. "_skewX": 0,
  1194. "_skewY": 0,
  1195. "_zIndex": 0,
  1196. "groupIndex": 0,
  1197. "_id": ""
  1198. },
  1199. {
  1200. "__type__": "cc.PrivateNode",
  1201. "_name": "RICHTEXT_CHILD",
  1202. "_objFlags": 0,
  1203. "_parent": {
  1204. "__id__": 33
  1205. },
  1206. "_children": [],
  1207. "_active": true,
  1208. "_level": 5,
  1209. "_components": [
  1210. {
  1211. "__id__": 35
  1212. },
  1213. {
  1214. "__id__": 36
  1215. }
  1216. ],
  1217. "_prefab": {
  1218. "__id__": 37
  1219. },
  1220. "_opacity": 255,
  1221. "_color": {
  1222. "__type__": "cc.Color",
  1223. "r": 255,
  1224. "g": 216,
  1225. "b": 0,
  1226. "a": 255
  1227. },
  1228. "_contentSize": {
  1229. "__type__": "cc.Size",
  1230. "width": 56.03,
  1231. "height": 40
  1232. },
  1233. "_anchorPoint": {
  1234. "__type__": "cc.Vec2",
  1235. "x": 0,
  1236. "y": 0
  1237. },
  1238. "_position": {
  1239. "__type__": "cc.Vec3",
  1240. "x": -56.03,
  1241. "y": -20,
  1242. "z": 0
  1243. },
  1244. "_scale": {
  1245. "__type__": "cc.Vec3",
  1246. "x": 1,
  1247. "y": 1,
  1248. "z": 1
  1249. },
  1250. "_rotationX": 0,
  1251. "_rotationY": 0,
  1252. "_quat": {
  1253. "__type__": "cc.Quat",
  1254. "x": 0,
  1255. "y": 0,
  1256. "z": 0,
  1257. "w": 1
  1258. },
  1259. "_skewX": 0,
  1260. "_skewY": 0,
  1261. "_zIndex": -32768,
  1262. "groupIndex": 0,
  1263. "_id": ""
  1264. },
  1265. {
  1266. "__type__": "cc.Label",
  1267. "_name": "",
  1268. "_objFlags": 0,
  1269. "node": {
  1270. "__id__": 34
  1271. },
  1272. "_enabled": true,
  1273. "_srcBlendFactor": 1,
  1274. "_dstBlendFactor": 771,
  1275. "_useOriginalSize": true,
  1276. "_string": "0%",
  1277. "_N$string": "0%",
  1278. "_fontSize": 36,
  1279. "_lineHeight": 40,
  1280. "_enableWrapText": true,
  1281. "_N$file": null,
  1282. "_isSystemFontUsed": true,
  1283. "_spacingX": 0,
  1284. "_N$horizontalAlign": 0,
  1285. "_N$verticalAlign": 1,
  1286. "_N$fontFamily": "Arial",
  1287. "_N$overflow": 0,
  1288. "_id": "fdzPe8Gb9MtpvX/jYU4hIj"
  1289. },
  1290. {
  1291. "__type__": "cc.LabelOutline",
  1292. "_name": "",
  1293. "_objFlags": 0,
  1294. "node": {
  1295. "__id__": 34
  1296. },
  1297. "_enabled": true,
  1298. "_color": {
  1299. "__type__": "cc.Color",
  1300. "r": 61,
  1301. "g": 46,
  1302. "b": 29,
  1303. "a": 255
  1304. },
  1305. "_width": 2,
  1306. "_id": "d0Q/iiWDpKb52U2q2iUOR/"
  1307. },
  1308. {
  1309. "__type__": "cc.PrefabInfo",
  1310. "root": {
  1311. "__id__": 1
  1312. },
  1313. "asset": {
  1314. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1315. },
  1316. "fileId": "920axbIUVF7a/63JVHVJ7o",
  1317. "sync": false
  1318. },
  1319. {
  1320. "__type__": "cc.RichText",
  1321. "_name": "",
  1322. "_objFlags": 0,
  1323. "node": {
  1324. "__id__": 33
  1325. },
  1326. "_enabled": true,
  1327. "_N$string": "<b><outline color=#3d2e1d width=2><color=#FFD800 >0%</color></outline></b>",
  1328. "_N$horizontalAlign": 2,
  1329. "_N$fontSize": 36,
  1330. "_N$font": null,
  1331. "_N$maxWidth": 0,
  1332. "_N$lineHeight": 40,
  1333. "_N$imageAtlas": null,
  1334. "_N$handleTouchEvent": true,
  1335. "_id": "cfvvphQ+dE65sky/OA6lhA"
  1336. },
  1337. {
  1338. "__type__": "cc.PrefabInfo",
  1339. "root": {
  1340. "__id__": 1
  1341. },
  1342. "asset": {
  1343. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1344. },
  1345. "fileId": "8axTmM+8BC3YhwTXZUhI44",
  1346. "sync": false
  1347. },
  1348. {
  1349. "__type__": "cc.Sprite",
  1350. "_name": "",
  1351. "_objFlags": 0,
  1352. "node": {
  1353. "__id__": 7
  1354. },
  1355. "_enabled": true,
  1356. "_srcBlendFactor": 770,
  1357. "_dstBlendFactor": 771,
  1358. "_spriteFrame": {
  1359. "__uuid__": "47ce8a87-06e6-4fa9-b7f8-bf15f9c21c54"
  1360. },
  1361. "_type": 1,
  1362. "_sizeMode": 0,
  1363. "_fillType": 0,
  1364. "_fillCenter": {
  1365. "__type__": "cc.Vec2",
  1366. "x": 0,
  1367. "y": 0
  1368. },
  1369. "_fillStart": 0,
  1370. "_fillRange": 0,
  1371. "_isTrimmedMode": true,
  1372. "_state": 0,
  1373. "_atlas": null,
  1374. "_id": "18XwH0vcxIJ7nFTCStK0Fg"
  1375. },
  1376. {
  1377. "__type__": "cc.PrefabInfo",
  1378. "root": {
  1379. "__id__": 1
  1380. },
  1381. "asset": {
  1382. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1383. },
  1384. "fileId": "eb7Pg0FPNIJb6y4qutwSts",
  1385. "sync": false
  1386. },
  1387. {
  1388. "__type__": "cc.Node",
  1389. "_name": "top_color_bar",
  1390. "_objFlags": 0,
  1391. "_parent": {
  1392. "__id__": 6
  1393. },
  1394. "_children": [
  1395. {
  1396. "__id__": 43
  1397. }
  1398. ],
  1399. "_active": true,
  1400. "_level": 3,
  1401. "_components": [
  1402. {
  1403. "__id__": 47
  1404. }
  1405. ],
  1406. "_prefab": {
  1407. "__id__": 48
  1408. },
  1409. "_opacity": 255,
  1410. "_color": {
  1411. "__type__": "cc.Color",
  1412. "r": 255,
  1413. "g": 255,
  1414. "b": 255,
  1415. "a": 255
  1416. },
  1417. "_contentSize": {
  1418. "__type__": "cc.Size",
  1419. "width": 432,
  1420. "height": 96
  1421. },
  1422. "_anchorPoint": {
  1423. "__type__": "cc.Vec2",
  1424. "x": 0.5,
  1425. "y": 0.5
  1426. },
  1427. "_position": {
  1428. "__type__": "cc.Vec3",
  1429. "x": 0,
  1430. "y": 450,
  1431. "z": 0
  1432. },
  1433. "_scale": {
  1434. "__type__": "cc.Vec3",
  1435. "x": 1,
  1436. "y": 1,
  1437. "z": 1
  1438. },
  1439. "_rotationX": 0,
  1440. "_rotationY": 0,
  1441. "_quat": {
  1442. "__type__": "cc.Quat",
  1443. "x": 0,
  1444. "y": 0,
  1445. "z": 0,
  1446. "w": 1
  1447. },
  1448. "_skewX": 0,
  1449. "_skewY": 0,
  1450. "_zIndex": 0,
  1451. "groupIndex": 0,
  1452. "_id": ""
  1453. },
  1454. {
  1455. "__type__": "cc.Node",
  1456. "_name": "label",
  1457. "_objFlags": 0,
  1458. "_parent": {
  1459. "__id__": 42
  1460. },
  1461. "_children": [],
  1462. "_active": true,
  1463. "_level": 4,
  1464. "_components": [
  1465. {
  1466. "__id__": 44
  1467. },
  1468. {
  1469. "__id__": 45
  1470. }
  1471. ],
  1472. "_prefab": {
  1473. "__id__": 46
  1474. },
  1475. "_opacity": 255,
  1476. "_color": {
  1477. "__type__": "cc.Color",
  1478. "r": 255,
  1479. "g": 255,
  1480. "b": 255,
  1481. "a": 255
  1482. },
  1483. "_contentSize": {
  1484. "__type__": "cc.Size",
  1485. "width": 166,
  1486. "height": 44
  1487. },
  1488. "_anchorPoint": {
  1489. "__type__": "cc.Vec2",
  1490. "x": 0.5,
  1491. "y": 0.5
  1492. },
  1493. "_position": {
  1494. "__type__": "cc.Vec3",
  1495. "x": 0,
  1496. "y": 12,
  1497. "z": 0
  1498. },
  1499. "_scale": {
  1500. "__type__": "cc.Vec3",
  1501. "x": 1,
  1502. "y": 1,
  1503. "z": 1
  1504. },
  1505. "_rotationX": 0,
  1506. "_rotationY": 0,
  1507. "_quat": {
  1508. "__type__": "cc.Quat",
  1509. "x": 0,
  1510. "y": 0,
  1511. "z": 0,
  1512. "w": 1
  1513. },
  1514. "_skewX": 0,
  1515. "_skewY": 0,
  1516. "_zIndex": 0,
  1517. "groupIndex": 0,
  1518. "_id": ""
  1519. },
  1520. {
  1521. "__type__": "cc.Label",
  1522. "_name": "",
  1523. "_objFlags": 0,
  1524. "node": {
  1525. "__id__": 43
  1526. },
  1527. "_enabled": true,
  1528. "_srcBlendFactor": 1,
  1529. "_dstBlendFactor": 771,
  1530. "_useOriginalSize": false,
  1531. "_string": "明星图鉴",
  1532. "_N$string": "明星图鉴",
  1533. "_fontSize": 40,
  1534. "_lineHeight": 44,
  1535. "_enableWrapText": true,
  1536. "_N$file": null,
  1537. "_isSystemFontUsed": true,
  1538. "_spacingX": 0,
  1539. "_N$horizontalAlign": 1,
  1540. "_N$verticalAlign": 1,
  1541. "_N$fontFamily": "Arial",
  1542. "_N$overflow": 0,
  1543. "_id": "dbkkym4zdAQ4UJ+W9RgNT1"
  1544. },
  1545. {
  1546. "__type__": "cc.LabelOutline",
  1547. "_name": "",
  1548. "_objFlags": 0,
  1549. "node": {
  1550. "__id__": 43
  1551. },
  1552. "_enabled": true,
  1553. "_color": {
  1554. "__type__": "cc.Color",
  1555. "r": 194,
  1556. "g": 83,
  1557. "b": 83,
  1558. "a": 255
  1559. },
  1560. "_width": 3,
  1561. "_id": "e2iBdWr5JKxImT01+RmI7c"
  1562. },
  1563. {
  1564. "__type__": "cc.PrefabInfo",
  1565. "root": {
  1566. "__id__": 1
  1567. },
  1568. "asset": {
  1569. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1570. },
  1571. "fileId": "23UqqgMf5A+In9200stOWg",
  1572. "sync": false
  1573. },
  1574. {
  1575. "__type__": "cc.Sprite",
  1576. "_name": "",
  1577. "_objFlags": 0,
  1578. "node": {
  1579. "__id__": 42
  1580. },
  1581. "_enabled": true,
  1582. "_srcBlendFactor": 770,
  1583. "_dstBlendFactor": 771,
  1584. "_spriteFrame": {
  1585. "__uuid__": "a813d5dc-f021-4f82-803c-a3701eaffc4e"
  1586. },
  1587. "_type": 0,
  1588. "_sizeMode": 1,
  1589. "_fillType": 0,
  1590. "_fillCenter": {
  1591. "__type__": "cc.Vec2",
  1592. "x": 0,
  1593. "y": 0
  1594. },
  1595. "_fillStart": 0,
  1596. "_fillRange": 0,
  1597. "_isTrimmedMode": true,
  1598. "_state": 0,
  1599. "_atlas": null,
  1600. "_id": "34eBE7yDJP9Y2YeI6zPn9A"
  1601. },
  1602. {
  1603. "__type__": "cc.PrefabInfo",
  1604. "root": {
  1605. "__id__": 1
  1606. },
  1607. "asset": {
  1608. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1609. },
  1610. "fileId": "85LkNblUZE94ZvtMAyEbHB",
  1611. "sync": false
  1612. },
  1613. {
  1614. "__type__": "cc.Node",
  1615. "_name": "button",
  1616. "_objFlags": 0,
  1617. "_parent": {
  1618. "__id__": 6
  1619. },
  1620. "_children": [],
  1621. "_active": true,
  1622. "_level": 3,
  1623. "_components": [
  1624. {
  1625. "__id__": 50
  1626. },
  1627. {
  1628. "__id__": 51
  1629. }
  1630. ],
  1631. "_prefab": {
  1632. "__id__": 53
  1633. },
  1634. "_opacity": 255,
  1635. "_color": {
  1636. "__type__": "cc.Color",
  1637. "r": 255,
  1638. "g": 255,
  1639. "b": 255,
  1640. "a": 255
  1641. },
  1642. "_contentSize": {
  1643. "__type__": "cc.Size",
  1644. "width": 70,
  1645. "height": 72
  1646. },
  1647. "_anchorPoint": {
  1648. "__type__": "cc.Vec2",
  1649. "x": 0.5,
  1650. "y": 0.5
  1651. },
  1652. "_position": {
  1653. "__type__": "cc.Vec3",
  1654. "x": 340,
  1655. "y": 430,
  1656. "z": 0
  1657. },
  1658. "_scale": {
  1659. "__type__": "cc.Vec3",
  1660. "x": 1,
  1661. "y": 1,
  1662. "z": 1
  1663. },
  1664. "_rotationX": 0,
  1665. "_rotationY": 0,
  1666. "_quat": {
  1667. "__type__": "cc.Quat",
  1668. "x": 0,
  1669. "y": 0,
  1670. "z": 0,
  1671. "w": 1
  1672. },
  1673. "_skewX": 0,
  1674. "_skewY": 0,
  1675. "_zIndex": 0,
  1676. "groupIndex": 0,
  1677. "_id": ""
  1678. },
  1679. {
  1680. "__type__": "cc.Sprite",
  1681. "_name": "",
  1682. "_objFlags": 0,
  1683. "node": {
  1684. "__id__": 49
  1685. },
  1686. "_enabled": true,
  1687. "_srcBlendFactor": 770,
  1688. "_dstBlendFactor": 771,
  1689. "_spriteFrame": {
  1690. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  1691. },
  1692. "_type": 0,
  1693. "_sizeMode": 0,
  1694. "_fillType": 0,
  1695. "_fillCenter": {
  1696. "__type__": "cc.Vec2",
  1697. "x": 0,
  1698. "y": 0
  1699. },
  1700. "_fillStart": 0,
  1701. "_fillRange": 0,
  1702. "_isTrimmedMode": true,
  1703. "_state": 0,
  1704. "_atlas": null,
  1705. "_id": "69F7W4Af9MbYihiu+VtxnZ"
  1706. },
  1707. {
  1708. "__type__": "cc.Button",
  1709. "_name": "",
  1710. "_objFlags": 0,
  1711. "node": {
  1712. "__id__": 49
  1713. },
  1714. "_enabled": true,
  1715. "transition": 1,
  1716. "pressedColor": {
  1717. "__type__": "cc.Color",
  1718. "r": 120,
  1719. "g": 120,
  1720. "b": 120,
  1721. "a": 255
  1722. },
  1723. "hoverColor": {
  1724. "__type__": "cc.Color",
  1725. "r": 255,
  1726. "g": 255,
  1727. "b": 255,
  1728. "a": 255
  1729. },
  1730. "duration": 0.1,
  1731. "zoomScale": 1.2,
  1732. "clickEvents": [
  1733. {
  1734. "__id__": 52
  1735. }
  1736. ],
  1737. "_N$interactable": true,
  1738. "_N$enableAutoGrayEffect": false,
  1739. "_N$normalColor": {
  1740. "__type__": "cc.Color",
  1741. "r": 255,
  1742. "g": 255,
  1743. "b": 255,
  1744. "a": 255
  1745. },
  1746. "_N$disabledColor": {
  1747. "__type__": "cc.Color",
  1748. "r": 255,
  1749. "g": 255,
  1750. "b": 255,
  1751. "a": 255
  1752. },
  1753. "_N$normalSprite": {
  1754. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  1755. },
  1756. "_N$pressedSprite": {
  1757. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1758. },
  1759. "pressedSprite": {
  1760. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  1761. },
  1762. "_N$hoverSprite": {
  1763. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1764. },
  1765. "hoverSprite": {
  1766. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  1767. },
  1768. "_N$disabledSprite": {
  1769. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  1770. },
  1771. "_N$target": {
  1772. "__id__": 49
  1773. },
  1774. "_id": "f2BpiXtO5OFIRwmeonPXQ/"
  1775. },
  1776. {
  1777. "__type__": "cc.ClickEvent",
  1778. "target": {
  1779. "__id__": 1
  1780. },
  1781. "component": "StarHandbook",
  1782. "handler": "closeView",
  1783. "customEventData": ""
  1784. },
  1785. {
  1786. "__type__": "cc.PrefabInfo",
  1787. "root": {
  1788. "__id__": 1
  1789. },
  1790. "asset": {
  1791. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1792. },
  1793. "fileId": "74bo4p3uFC8onvoxSoUAFL",
  1794. "sync": false
  1795. },
  1796. {
  1797. "__type__": "cc.PrefabInfo",
  1798. "root": {
  1799. "__id__": 1
  1800. },
  1801. "asset": {
  1802. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1803. },
  1804. "fileId": "00djID6/NAu69D94ld5uiY",
  1805. "sync": false
  1806. },
  1807. {
  1808. "__type__": "cc.Node",
  1809. "_name": "descNode",
  1810. "_objFlags": 0,
  1811. "_parent": {
  1812. "__id__": 1
  1813. },
  1814. "_children": [
  1815. {
  1816. "__id__": 56
  1817. },
  1818. {
  1819. "__id__": 60
  1820. },
  1821. {
  1822. "__id__": 86
  1823. }
  1824. ],
  1825. "_active": false,
  1826. "_level": 2,
  1827. "_components": [
  1828. {
  1829. "__id__": 91
  1830. }
  1831. ],
  1832. "_prefab": {
  1833. "__id__": 92
  1834. },
  1835. "_opacity": 255,
  1836. "_color": {
  1837. "__type__": "cc.Color",
  1838. "r": 255,
  1839. "g": 255,
  1840. "b": 255,
  1841. "a": 255
  1842. },
  1843. "_contentSize": {
  1844. "__type__": "cc.Size",
  1845. "width": 0,
  1846. "height": 0
  1847. },
  1848. "_anchorPoint": {
  1849. "__type__": "cc.Vec2",
  1850. "x": 0.5,
  1851. "y": 0.5
  1852. },
  1853. "_position": {
  1854. "__type__": "cc.Vec3",
  1855. "x": 0,
  1856. "y": 0,
  1857. "z": 0
  1858. },
  1859. "_scale": {
  1860. "__type__": "cc.Vec3",
  1861. "x": 1,
  1862. "y": 1,
  1863. "z": 1
  1864. },
  1865. "_rotationX": 0,
  1866. "_rotationY": 0,
  1867. "_quat": {
  1868. "__type__": "cc.Quat",
  1869. "x": 0,
  1870. "y": 0,
  1871. "z": 0,
  1872. "w": 1
  1873. },
  1874. "_skewX": 0,
  1875. "_skewY": 0,
  1876. "_zIndex": 0,
  1877. "groupIndex": 0,
  1878. "_id": ""
  1879. },
  1880. {
  1881. "__type__": "cc.Node",
  1882. "_name": "maskBg",
  1883. "_objFlags": 0,
  1884. "_parent": {
  1885. "__id__": 55
  1886. },
  1887. "_children": [],
  1888. "_active": true,
  1889. "_level": 3,
  1890. "_components": [
  1891. {
  1892. "__id__": 57
  1893. },
  1894. {
  1895. "__id__": 58
  1896. }
  1897. ],
  1898. "_prefab": {
  1899. "__id__": 59
  1900. },
  1901. "_opacity": 153,
  1902. "_color": {
  1903. "__type__": "cc.Color",
  1904. "r": 0,
  1905. "g": 0,
  1906. "b": 0,
  1907. "a": 255
  1908. },
  1909. "_contentSize": {
  1910. "__type__": "cc.Size",
  1911. "width": 750,
  1912. "height": 2000
  1913. },
  1914. "_anchorPoint": {
  1915. "__type__": "cc.Vec2",
  1916. "x": 0.5,
  1917. "y": 0.5
  1918. },
  1919. "_position": {
  1920. "__type__": "cc.Vec3",
  1921. "x": 0,
  1922. "y": 0,
  1923. "z": 0
  1924. },
  1925. "_scale": {
  1926. "__type__": "cc.Vec3",
  1927. "x": 1,
  1928. "y": 1,
  1929. "z": 1
  1930. },
  1931. "_rotationX": 0,
  1932. "_rotationY": 0,
  1933. "_quat": {
  1934. "__type__": "cc.Quat",
  1935. "x": 0,
  1936. "y": 0,
  1937. "z": 0,
  1938. "w": 1
  1939. },
  1940. "_skewX": 0,
  1941. "_skewY": 0,
  1942. "_zIndex": 0,
  1943. "groupIndex": 0,
  1944. "_id": ""
  1945. },
  1946. {
  1947. "__type__": "cc.Sprite",
  1948. "_name": "",
  1949. "_objFlags": 0,
  1950. "node": {
  1951. "__id__": 56
  1952. },
  1953. "_enabled": true,
  1954. "_srcBlendFactor": 770,
  1955. "_dstBlendFactor": 771,
  1956. "_spriteFrame": {
  1957. "__uuid__": "a23235d1-15db-4b95-8439-a2e005bfff91"
  1958. },
  1959. "_type": 0,
  1960. "_sizeMode": 0,
  1961. "_fillType": 0,
  1962. "_fillCenter": {
  1963. "__type__": "cc.Vec2",
  1964. "x": 0,
  1965. "y": 0
  1966. },
  1967. "_fillStart": 0,
  1968. "_fillRange": 0,
  1969. "_isTrimmedMode": true,
  1970. "_state": 0,
  1971. "_atlas": null,
  1972. "_id": "2d7Y9b5B1ACKZxi+VNaDOr"
  1973. },
  1974. {
  1975. "__type__": "cc.BlockInputEvents",
  1976. "_name": "",
  1977. "_objFlags": 0,
  1978. "node": {
  1979. "__id__": 56
  1980. },
  1981. "_enabled": true,
  1982. "_id": "1bgno0nV9L85UVxD5n2OXR"
  1983. },
  1984. {
  1985. "__type__": "cc.PrefabInfo",
  1986. "root": {
  1987. "__id__": 1
  1988. },
  1989. "asset": {
  1990. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  1991. },
  1992. "fileId": "22BL9qoONO/KD+03FQL0em",
  1993. "sync": false
  1994. },
  1995. {
  1996. "__type__": "cc.Node",
  1997. "_name": "content",
  1998. "_objFlags": 0,
  1999. "_parent": {
  2000. "__id__": 55
  2001. },
  2002. "_children": [
  2003. {
  2004. "__id__": 61
  2005. },
  2006. {
  2007. "__id__": 65
  2008. },
  2009. {
  2010. "__id__": 69
  2011. },
  2012. {
  2013. "__id__": 73
  2014. }
  2015. ],
  2016. "_active": true,
  2017. "_level": 3,
  2018. "_components": [
  2019. {
  2020. "__id__": 84
  2021. }
  2022. ],
  2023. "_prefab": {
  2024. "__id__": 85
  2025. },
  2026. "_opacity": 255,
  2027. "_color": {
  2028. "__type__": "cc.Color",
  2029. "r": 255,
  2030. "g": 255,
  2031. "b": 255,
  2032. "a": 255
  2033. },
  2034. "_contentSize": {
  2035. "__type__": "cc.Size",
  2036. "width": 470,
  2037. "height": 590
  2038. },
  2039. "_anchorPoint": {
  2040. "__type__": "cc.Vec2",
  2041. "x": 0.5,
  2042. "y": 0.5
  2043. },
  2044. "_position": {
  2045. "__type__": "cc.Vec3",
  2046. "x": 0,
  2047. "y": 0,
  2048. "z": 0
  2049. },
  2050. "_scale": {
  2051. "__type__": "cc.Vec3",
  2052. "x": 1,
  2053. "y": 1,
  2054. "z": 1
  2055. },
  2056. "_rotationX": 0,
  2057. "_rotationY": 0,
  2058. "_quat": {
  2059. "__type__": "cc.Quat",
  2060. "x": 0,
  2061. "y": 0,
  2062. "z": 0,
  2063. "w": 1
  2064. },
  2065. "_skewX": 0,
  2066. "_skewY": 0,
  2067. "_zIndex": 0,
  2068. "groupIndex": 0,
  2069. "_id": ""
  2070. },
  2071. {
  2072. "__type__": "cc.Node",
  2073. "_name": "nameLabel",
  2074. "_objFlags": 0,
  2075. "_parent": {
  2076. "__id__": 60
  2077. },
  2078. "_children": [],
  2079. "_active": true,
  2080. "_level": 4,
  2081. "_components": [
  2082. {
  2083. "__id__": 62
  2084. },
  2085. {
  2086. "__id__": 63
  2087. }
  2088. ],
  2089. "_prefab": {
  2090. "__id__": 64
  2091. },
  2092. "_opacity": 255,
  2093. "_color": {
  2094. "__type__": "cc.Color",
  2095. "r": 1,
  2096. "g": 1,
  2097. "b": 1,
  2098. "a": 255
  2099. },
  2100. "_contentSize": {
  2101. "__type__": "cc.Size",
  2102. "width": 72,
  2103. "height": 24
  2104. },
  2105. "_anchorPoint": {
  2106. "__type__": "cc.Vec2",
  2107. "x": 0.5,
  2108. "y": 1
  2109. },
  2110. "_position": {
  2111. "__type__": "cc.Vec3",
  2112. "x": 0,
  2113. "y": 255,
  2114. "z": 0
  2115. },
  2116. "_scale": {
  2117. "__type__": "cc.Vec3",
  2118. "x": 1,
  2119. "y": 1,
  2120. "z": 1
  2121. },
  2122. "_rotationX": 0,
  2123. "_rotationY": 0,
  2124. "_quat": {
  2125. "__type__": "cc.Quat",
  2126. "x": 0,
  2127. "y": 0,
  2128. "z": 0,
  2129. "w": 1
  2130. },
  2131. "_skewX": 0,
  2132. "_skewY": 0,
  2133. "_zIndex": 0,
  2134. "groupIndex": 0,
  2135. "_id": ""
  2136. },
  2137. {
  2138. "__type__": "cc.Label",
  2139. "_name": "",
  2140. "_objFlags": 0,
  2141. "node": {
  2142. "__id__": 61
  2143. },
  2144. "_enabled": true,
  2145. "_srcBlendFactor": 1,
  2146. "_dstBlendFactor": 771,
  2147. "_useOriginalSize": false,
  2148. "_string": "吴亦烦",
  2149. "_N$string": "吴亦烦",
  2150. "_fontSize": 24,
  2151. "_lineHeight": 24,
  2152. "_enableWrapText": true,
  2153. "_N$file": null,
  2154. "_isSystemFontUsed": true,
  2155. "_spacingX": 0,
  2156. "_N$horizontalAlign": 1,
  2157. "_N$verticalAlign": 1,
  2158. "_N$fontFamily": "Arial",
  2159. "_N$overflow": 0,
  2160. "_id": "28csmvdKBK54RPoPT/VVxA"
  2161. },
  2162. {
  2163. "__type__": "cc.Widget",
  2164. "_name": "",
  2165. "_objFlags": 0,
  2166. "node": {
  2167. "__id__": 61
  2168. },
  2169. "_enabled": true,
  2170. "alignMode": 1,
  2171. "_target": null,
  2172. "_alignFlags": 1,
  2173. "_left": 0,
  2174. "_right": 0,
  2175. "_top": 40,
  2176. "_bottom": 0,
  2177. "_verticalCenter": 0,
  2178. "_horizontalCenter": 0,
  2179. "_isAbsLeft": true,
  2180. "_isAbsRight": true,
  2181. "_isAbsTop": true,
  2182. "_isAbsBottom": true,
  2183. "_isAbsHorizontalCenter": true,
  2184. "_isAbsVerticalCenter": true,
  2185. "_originalWidth": 0,
  2186. "_originalHeight": 0,
  2187. "_id": "9b/LAMeHhF5ZtO7rJibdbY"
  2188. },
  2189. {
  2190. "__type__": "cc.PrefabInfo",
  2191. "root": {
  2192. "__id__": 1
  2193. },
  2194. "asset": {
  2195. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2196. },
  2197. "fileId": "0fhZpCP4NPl6BNoZ0D1MQ7",
  2198. "sync": false
  2199. },
  2200. {
  2201. "__type__": "cc.Node",
  2202. "_name": "conditionLabel",
  2203. "_objFlags": 0,
  2204. "_parent": {
  2205. "__id__": 60
  2206. },
  2207. "_children": [],
  2208. "_active": true,
  2209. "_level": 4,
  2210. "_components": [
  2211. {
  2212. "__id__": 66
  2213. },
  2214. {
  2215. "__id__": 67
  2216. }
  2217. ],
  2218. "_prefab": {
  2219. "__id__": 68
  2220. },
  2221. "_opacity": 255,
  2222. "_color": {
  2223. "__type__": "cc.Color",
  2224. "r": 96,
  2225. "g": 96,
  2226. "b": 96,
  2227. "a": 255
  2228. },
  2229. "_contentSize": {
  2230. "__type__": "cc.Size",
  2231. "width": 400,
  2232. "height": 26
  2233. },
  2234. "_anchorPoint": {
  2235. "__type__": "cc.Vec2",
  2236. "x": 0.5,
  2237. "y": 1
  2238. },
  2239. "_position": {
  2240. "__type__": "cc.Vec3",
  2241. "x": 0,
  2242. "y": 220,
  2243. "z": 0
  2244. },
  2245. "_scale": {
  2246. "__type__": "cc.Vec3",
  2247. "x": 1,
  2248. "y": 1,
  2249. "z": 1
  2250. },
  2251. "_rotationX": 0,
  2252. "_rotationY": 0,
  2253. "_quat": {
  2254. "__type__": "cc.Quat",
  2255. "x": 0,
  2256. "y": 0,
  2257. "z": 0,
  2258. "w": 1
  2259. },
  2260. "_skewX": 0,
  2261. "_skewY": 0,
  2262. "_zIndex": 0,
  2263. "groupIndex": 0,
  2264. "_id": ""
  2265. },
  2266. {
  2267. "__type__": "cc.Label",
  2268. "_name": "",
  2269. "_objFlags": 0,
  2270. "node": {
  2271. "__id__": 65
  2272. },
  2273. "_enabled": true,
  2274. "_srcBlendFactor": 1,
  2275. "_dstBlendFactor": 771,
  2276. "_useOriginalSize": false,
  2277. "_string": "需要开启嘻哈歌房",
  2278. "_N$string": "需要开启嘻哈歌房",
  2279. "_fontSize": 22,
  2280. "_lineHeight": 26,
  2281. "_enableWrapText": true,
  2282. "_N$file": null,
  2283. "_isSystemFontUsed": true,
  2284. "_spacingX": 0,
  2285. "_N$horizontalAlign": 1,
  2286. "_N$verticalAlign": 1,
  2287. "_N$fontFamily": "Arial",
  2288. "_N$overflow": 3,
  2289. "_id": "774resDOlCG5PZP+Jlz70l"
  2290. },
  2291. {
  2292. "__type__": "cc.Widget",
  2293. "_name": "",
  2294. "_objFlags": 0,
  2295. "node": {
  2296. "__id__": 65
  2297. },
  2298. "_enabled": true,
  2299. "alignMode": 1,
  2300. "_target": null,
  2301. "_alignFlags": 1,
  2302. "_left": 0,
  2303. "_right": 0,
  2304. "_top": 75,
  2305. "_bottom": 0,
  2306. "_verticalCenter": 0,
  2307. "_horizontalCenter": 0,
  2308. "_isAbsLeft": true,
  2309. "_isAbsRight": true,
  2310. "_isAbsTop": true,
  2311. "_isAbsBottom": true,
  2312. "_isAbsHorizontalCenter": true,
  2313. "_isAbsVerticalCenter": true,
  2314. "_originalWidth": 0,
  2315. "_originalHeight": 0,
  2316. "_id": "c7J2ahtxZCnbmUnI3ZEcwG"
  2317. },
  2318. {
  2319. "__type__": "cc.PrefabInfo",
  2320. "root": {
  2321. "__id__": 1
  2322. },
  2323. "asset": {
  2324. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2325. },
  2326. "fileId": "ac44VkQYpLrrBYsy32PsQC",
  2327. "sync": false
  2328. },
  2329. {
  2330. "__type__": "cc.Node",
  2331. "_name": "starFigure",
  2332. "_objFlags": 0,
  2333. "_parent": {
  2334. "__id__": 60
  2335. },
  2336. "_children": [],
  2337. "_active": true,
  2338. "_level": 4,
  2339. "_components": [
  2340. {
  2341. "__id__": 70
  2342. },
  2343. {
  2344. "__id__": 71
  2345. }
  2346. ],
  2347. "_prefab": {
  2348. "__id__": 72
  2349. },
  2350. "_opacity": 255,
  2351. "_color": {
  2352. "__type__": "cc.Color",
  2353. "r": 255,
  2354. "g": 255,
  2355. "b": 255,
  2356. "a": 255
  2357. },
  2358. "_contentSize": {
  2359. "__type__": "cc.Size",
  2360. "width": 276,
  2361. "height": 412
  2362. },
  2363. "_anchorPoint": {
  2364. "__type__": "cc.Vec2",
  2365. "x": 0.5,
  2366. "y": 0.5
  2367. },
  2368. "_position": {
  2369. "__type__": "cc.Vec3",
  2370. "x": 0,
  2371. "y": -12,
  2372. "z": 0
  2373. },
  2374. "_scale": {
  2375. "__type__": "cc.Vec3",
  2376. "x": 1,
  2377. "y": 1,
  2378. "z": 1
  2379. },
  2380. "_rotationX": 0,
  2381. "_rotationY": 0,
  2382. "_quat": {
  2383. "__type__": "cc.Quat",
  2384. "x": 0,
  2385. "y": 0,
  2386. "z": 0,
  2387. "w": 1
  2388. },
  2389. "_skewX": 0,
  2390. "_skewY": 0,
  2391. "_zIndex": 0,
  2392. "groupIndex": 0,
  2393. "_id": ""
  2394. },
  2395. {
  2396. "__type__": "cc.Sprite",
  2397. "_name": "",
  2398. "_objFlags": 0,
  2399. "node": {
  2400. "__id__": 69
  2401. },
  2402. "_enabled": true,
  2403. "_srcBlendFactor": 770,
  2404. "_dstBlendFactor": 771,
  2405. "_spriteFrame": null,
  2406. "_type": 0,
  2407. "_sizeMode": 0,
  2408. "_fillType": 0,
  2409. "_fillCenter": {
  2410. "__type__": "cc.Vec2",
  2411. "x": 0,
  2412. "y": 0
  2413. },
  2414. "_fillStart": 0,
  2415. "_fillRange": 0,
  2416. "_isTrimmedMode": false,
  2417. "_state": 0,
  2418. "_atlas": null,
  2419. "_id": "40R8bNm9FB/Kh2Rk6cYkMw"
  2420. },
  2421. {
  2422. "__type__": "cc.Widget",
  2423. "_name": "",
  2424. "_objFlags": 0,
  2425. "node": {
  2426. "__id__": 69
  2427. },
  2428. "_enabled": true,
  2429. "alignMode": 2,
  2430. "_target": null,
  2431. "_alignFlags": 16,
  2432. "_left": 0,
  2433. "_right": 0,
  2434. "_top": 0,
  2435. "_bottom": 0,
  2436. "_verticalCenter": 0,
  2437. "_horizontalCenter": 0,
  2438. "_isAbsLeft": true,
  2439. "_isAbsRight": true,
  2440. "_isAbsTop": true,
  2441. "_isAbsBottom": true,
  2442. "_isAbsHorizontalCenter": true,
  2443. "_isAbsVerticalCenter": true,
  2444. "_originalWidth": 0,
  2445. "_originalHeight": 0,
  2446. "_id": "94bMNBkHlPOLe5Goky763C"
  2447. },
  2448. {
  2449. "__type__": "cc.PrefabInfo",
  2450. "root": {
  2451. "__id__": 1
  2452. },
  2453. "asset": {
  2454. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2455. },
  2456. "fileId": "e4rNktCzJIZoPEtt0Njf+t",
  2457. "sync": false
  2458. },
  2459. {
  2460. "__type__": "cc.Node",
  2461. "_name": "sprite_splash",
  2462. "_objFlags": 0,
  2463. "_parent": {
  2464. "__id__": 60
  2465. },
  2466. "_children": [
  2467. {
  2468. "__id__": 74
  2469. },
  2470. {
  2471. "__id__": 78
  2472. }
  2473. ],
  2474. "_active": true,
  2475. "_level": 4,
  2476. "_components": [
  2477. {
  2478. "__id__": 82
  2479. }
  2480. ],
  2481. "_prefab": {
  2482. "__id__": 83
  2483. },
  2484. "_opacity": 255,
  2485. "_color": {
  2486. "__type__": "cc.Color",
  2487. "r": 255,
  2488. "g": 255,
  2489. "b": 255,
  2490. "a": 255
  2491. },
  2492. "_contentSize": {
  2493. "__type__": "cc.Size",
  2494. "width": 200,
  2495. "height": 40
  2496. },
  2497. "_anchorPoint": {
  2498. "__type__": "cc.Vec2",
  2499. "x": 0.5,
  2500. "y": 0.5
  2501. },
  2502. "_position": {
  2503. "__type__": "cc.Vec3",
  2504. "x": 0,
  2505. "y": -250,
  2506. "z": 0
  2507. },
  2508. "_scale": {
  2509. "__type__": "cc.Vec3",
  2510. "x": 1,
  2511. "y": 1,
  2512. "z": 1
  2513. },
  2514. "_rotationX": 0,
  2515. "_rotationY": 0,
  2516. "_quat": {
  2517. "__type__": "cc.Quat",
  2518. "x": 0,
  2519. "y": 0,
  2520. "z": 0,
  2521. "w": 1
  2522. },
  2523. "_skewX": 0,
  2524. "_skewY": 0,
  2525. "_zIndex": 0,
  2526. "groupIndex": 0,
  2527. "_id": ""
  2528. },
  2529. {
  2530. "__type__": "cc.Node",
  2531. "_name": "label",
  2532. "_objFlags": 0,
  2533. "_parent": {
  2534. "__id__": 73
  2535. },
  2536. "_children": [],
  2537. "_active": true,
  2538. "_level": 5,
  2539. "_components": [
  2540. {
  2541. "__id__": 75
  2542. },
  2543. {
  2544. "__id__": 76
  2545. }
  2546. ],
  2547. "_prefab": {
  2548. "__id__": 77
  2549. },
  2550. "_opacity": 255,
  2551. "_color": {
  2552. "__type__": "cc.Color",
  2553. "r": 96,
  2554. "g": 96,
  2555. "b": 96,
  2556. "a": 255
  2557. },
  2558. "_contentSize": {
  2559. "__type__": "cc.Size",
  2560. "width": 88,
  2561. "height": 22
  2562. },
  2563. "_anchorPoint": {
  2564. "__type__": "cc.Vec2",
  2565. "x": 0,
  2566. "y": 0.5
  2567. },
  2568. "_position": {
  2569. "__type__": "cc.Vec3",
  2570. "x": -90,
  2571. "y": 0,
  2572. "z": 0
  2573. },
  2574. "_scale": {
  2575. "__type__": "cc.Vec3",
  2576. "x": 1,
  2577. "y": 1,
  2578. "z": 1
  2579. },
  2580. "_rotationX": 0,
  2581. "_rotationY": 0,
  2582. "_quat": {
  2583. "__type__": "cc.Quat",
  2584. "x": 0,
  2585. "y": 0,
  2586. "z": 0,
  2587. "w": 1
  2588. },
  2589. "_skewX": 0,
  2590. "_skewY": 0,
  2591. "_zIndex": 0,
  2592. "groupIndex": 0,
  2593. "_id": ""
  2594. },
  2595. {
  2596. "__type__": "cc.Label",
  2597. "_name": "",
  2598. "_objFlags": 0,
  2599. "node": {
  2600. "__id__": 74
  2601. },
  2602. "_enabled": true,
  2603. "_srcBlendFactor": 1,
  2604. "_dstBlendFactor": 771,
  2605. "_useOriginalSize": false,
  2606. "_string": "合计拥有",
  2607. "_N$string": "合计拥有",
  2608. "_fontSize": 22,
  2609. "_lineHeight": 22,
  2610. "_enableWrapText": true,
  2611. "_N$file": null,
  2612. "_isSystemFontUsed": true,
  2613. "_spacingX": 0,
  2614. "_N$horizontalAlign": 0,
  2615. "_N$verticalAlign": 1,
  2616. "_N$fontFamily": "Arial",
  2617. "_N$overflow": 0,
  2618. "_id": "71NBBbvhJP2ZfmKPpDDTxC"
  2619. },
  2620. {
  2621. "__type__": "cc.Widget",
  2622. "_name": "",
  2623. "_objFlags": 0,
  2624. "node": {
  2625. "__id__": 74
  2626. },
  2627. "_enabled": true,
  2628. "alignMode": 1,
  2629. "_target": null,
  2630. "_alignFlags": 10,
  2631. "_left": 10,
  2632. "_right": 0,
  2633. "_top": 0,
  2634. "_bottom": 0,
  2635. "_verticalCenter": 0,
  2636. "_horizontalCenter": 0,
  2637. "_isAbsLeft": true,
  2638. "_isAbsRight": true,
  2639. "_isAbsTop": true,
  2640. "_isAbsBottom": true,
  2641. "_isAbsHorizontalCenter": true,
  2642. "_isAbsVerticalCenter": true,
  2643. "_originalWidth": 0,
  2644. "_originalHeight": 0,
  2645. "_id": "ae2tL4WPNJ6YdIo63CtqMt"
  2646. },
  2647. {
  2648. "__type__": "cc.PrefabInfo",
  2649. "root": {
  2650. "__id__": 1
  2651. },
  2652. "asset": {
  2653. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2654. },
  2655. "fileId": "faucpqwJdGZ5anbjM3v3Y2",
  2656. "sync": false
  2657. },
  2658. {
  2659. "__type__": "cc.Node",
  2660. "_name": "countLabel",
  2661. "_objFlags": 0,
  2662. "_parent": {
  2663. "__id__": 73
  2664. },
  2665. "_children": [],
  2666. "_active": true,
  2667. "_level": 5,
  2668. "_components": [
  2669. {
  2670. "__id__": 79
  2671. },
  2672. {
  2673. "__id__": 80
  2674. }
  2675. ],
  2676. "_prefab": {
  2677. "__id__": 81
  2678. },
  2679. "_opacity": 255,
  2680. "_color": {
  2681. "__type__": "cc.Color",
  2682. "r": 222,
  2683. "g": 84,
  2684. "b": 0,
  2685. "a": 255
  2686. },
  2687. "_contentSize": {
  2688. "__type__": "cc.Size",
  2689. "width": 34.24,
  2690. "height": 22
  2691. },
  2692. "_anchorPoint": {
  2693. "__type__": "cc.Vec2",
  2694. "x": 1,
  2695. "y": 0.5
  2696. },
  2697. "_position": {
  2698. "__type__": "cc.Vec3",
  2699. "x": 90,
  2700. "y": 0,
  2701. "z": 0
  2702. },
  2703. "_scale": {
  2704. "__type__": "cc.Vec3",
  2705. "x": 1,
  2706. "y": 1,
  2707. "z": 1
  2708. },
  2709. "_rotationX": 0,
  2710. "_rotationY": 0,
  2711. "_quat": {
  2712. "__type__": "cc.Quat",
  2713. "x": 0,
  2714. "y": 0,
  2715. "z": 0,
  2716. "w": 1
  2717. },
  2718. "_skewX": 0,
  2719. "_skewY": 0,
  2720. "_zIndex": 0,
  2721. "groupIndex": 0,
  2722. "_id": ""
  2723. },
  2724. {
  2725. "__type__": "cc.Label",
  2726. "_name": "",
  2727. "_objFlags": 0,
  2728. "node": {
  2729. "__id__": 78
  2730. },
  2731. "_enabled": true,
  2732. "_srcBlendFactor": 1,
  2733. "_dstBlendFactor": 771,
  2734. "_useOriginalSize": false,
  2735. "_string": "1个",
  2736. "_N$string": "1个",
  2737. "_fontSize": 22,
  2738. "_lineHeight": 22,
  2739. "_enableWrapText": false,
  2740. "_N$file": null,
  2741. "_isSystemFontUsed": true,
  2742. "_spacingX": 0,
  2743. "_N$horizontalAlign": 2,
  2744. "_N$verticalAlign": 1,
  2745. "_N$fontFamily": "Arial",
  2746. "_N$overflow": 2,
  2747. "_id": "90ktqi2XhHjIMf+cUxR9zf"
  2748. },
  2749. {
  2750. "__type__": "cc.Widget",
  2751. "_name": "",
  2752. "_objFlags": 0,
  2753. "node": {
  2754. "__id__": 78
  2755. },
  2756. "_enabled": true,
  2757. "alignMode": 1,
  2758. "_target": null,
  2759. "_alignFlags": 34,
  2760. "_left": 0,
  2761. "_right": 10,
  2762. "_top": 0,
  2763. "_bottom": 0,
  2764. "_verticalCenter": 0,
  2765. "_horizontalCenter": 0,
  2766. "_isAbsLeft": true,
  2767. "_isAbsRight": true,
  2768. "_isAbsTop": true,
  2769. "_isAbsBottom": true,
  2770. "_isAbsHorizontalCenter": true,
  2771. "_isAbsVerticalCenter": true,
  2772. "_originalWidth": 0,
  2773. "_originalHeight": 0,
  2774. "_id": "8fcebU4ThKe57M+IK5vpcB"
  2775. },
  2776. {
  2777. "__type__": "cc.PrefabInfo",
  2778. "root": {
  2779. "__id__": 1
  2780. },
  2781. "asset": {
  2782. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2783. },
  2784. "fileId": "4fS009yeVMfZLe0Xt+NCXV",
  2785. "sync": false
  2786. },
  2787. {
  2788. "__type__": "cc.Sprite",
  2789. "_name": "",
  2790. "_objFlags": 0,
  2791. "node": {
  2792. "__id__": 73
  2793. },
  2794. "_enabled": true,
  2795. "_srcBlendFactor": 770,
  2796. "_dstBlendFactor": 771,
  2797. "_spriteFrame": {
  2798. "__uuid__": "4d5a2585-b910-4ed3-928f-55442619bdcf"
  2799. },
  2800. "_type": 0,
  2801. "_sizeMode": 0,
  2802. "_fillType": 0,
  2803. "_fillCenter": {
  2804. "__type__": "cc.Vec2",
  2805. "x": 0,
  2806. "y": 0
  2807. },
  2808. "_fillStart": 0,
  2809. "_fillRange": 0,
  2810. "_isTrimmedMode": true,
  2811. "_state": 0,
  2812. "_atlas": null,
  2813. "_id": "1a2uJJGK1HHJy1i0P9ZWXB"
  2814. },
  2815. {
  2816. "__type__": "cc.PrefabInfo",
  2817. "root": {
  2818. "__id__": 1
  2819. },
  2820. "asset": {
  2821. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2822. },
  2823. "fileId": "2eh/eHpelKeJz1T7iM9MCZ",
  2824. "sync": false
  2825. },
  2826. {
  2827. "__type__": "cc.Sprite",
  2828. "_name": "",
  2829. "_objFlags": 0,
  2830. "node": {
  2831. "__id__": 60
  2832. },
  2833. "_enabled": true,
  2834. "_srcBlendFactor": 770,
  2835. "_dstBlendFactor": 771,
  2836. "_spriteFrame": {
  2837. "__uuid__": "47ce8a87-06e6-4fa9-b7f8-bf15f9c21c54"
  2838. },
  2839. "_type": 1,
  2840. "_sizeMode": 0,
  2841. "_fillType": 0,
  2842. "_fillCenter": {
  2843. "__type__": "cc.Vec2",
  2844. "x": 0,
  2845. "y": 0
  2846. },
  2847. "_fillStart": 0,
  2848. "_fillRange": 0,
  2849. "_isTrimmedMode": true,
  2850. "_state": 0,
  2851. "_atlas": null,
  2852. "_id": "18EA/+CypBzrgm/jK2WcRb"
  2853. },
  2854. {
  2855. "__type__": "cc.PrefabInfo",
  2856. "root": {
  2857. "__id__": 1
  2858. },
  2859. "asset": {
  2860. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  2861. },
  2862. "fileId": "25xrwhevBOOqD9et3EW37i",
  2863. "sync": false
  2864. },
  2865. {
  2866. "__type__": "cc.Node",
  2867. "_name": "closeButton",
  2868. "_objFlags": 0,
  2869. "_parent": {
  2870. "__id__": 55
  2871. },
  2872. "_children": [],
  2873. "_active": true,
  2874. "_level": 3,
  2875. "_components": [
  2876. {
  2877. "__id__": 87
  2878. },
  2879. {
  2880. "__id__": 88
  2881. }
  2882. ],
  2883. "_prefab": {
  2884. "__id__": 90
  2885. },
  2886. "_opacity": 255,
  2887. "_color": {
  2888. "__type__": "cc.Color",
  2889. "r": 255,
  2890. "g": 255,
  2891. "b": 255,
  2892. "a": 255
  2893. },
  2894. "_contentSize": {
  2895. "__type__": "cc.Size",
  2896. "width": 70,
  2897. "height": 72
  2898. },
  2899. "_anchorPoint": {
  2900. "__type__": "cc.Vec2",
  2901. "x": 0.5,
  2902. "y": 0.5
  2903. },
  2904. "_position": {
  2905. "__type__": "cc.Vec3",
  2906. "x": 215,
  2907. "y": 270,
  2908. "z": 0
  2909. },
  2910. "_scale": {
  2911. "__type__": "cc.Vec3",
  2912. "x": 1,
  2913. "y": 1,
  2914. "z": 1
  2915. },
  2916. "_rotationX": 0,
  2917. "_rotationY": 0,
  2918. "_quat": {
  2919. "__type__": "cc.Quat",
  2920. "x": 0,
  2921. "y": 0,
  2922. "z": 0,
  2923. "w": 1
  2924. },
  2925. "_skewX": 0,
  2926. "_skewY": 0,
  2927. "_zIndex": 0,
  2928. "groupIndex": 0,
  2929. "_id": ""
  2930. },
  2931. {
  2932. "__type__": "cc.Sprite",
  2933. "_name": "",
  2934. "_objFlags": 0,
  2935. "node": {
  2936. "__id__": 86
  2937. },
  2938. "_enabled": true,
  2939. "_srcBlendFactor": 770,
  2940. "_dstBlendFactor": 771,
  2941. "_spriteFrame": {
  2942. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  2943. },
  2944. "_type": 1,
  2945. "_sizeMode": 0,
  2946. "_fillType": 0,
  2947. "_fillCenter": {
  2948. "__type__": "cc.Vec2",
  2949. "x": 0,
  2950. "y": 0
  2951. },
  2952. "_fillStart": 0,
  2953. "_fillRange": 0,
  2954. "_isTrimmedMode": true,
  2955. "_state": 0,
  2956. "_atlas": null,
  2957. "_id": "6dh6DghTdFYo8q5L80akwZ"
  2958. },
  2959. {
  2960. "__type__": "cc.Button",
  2961. "_name": "",
  2962. "_objFlags": 0,
  2963. "node": {
  2964. "__id__": 86
  2965. },
  2966. "_enabled": true,
  2967. "transition": 1,
  2968. "pressedColor": {
  2969. "__type__": "cc.Color",
  2970. "r": 120,
  2971. "g": 120,
  2972. "b": 120,
  2973. "a": 255
  2974. },
  2975. "hoverColor": {
  2976. "__type__": "cc.Color",
  2977. "r": 255,
  2978. "g": 255,
  2979. "b": 255,
  2980. "a": 255
  2981. },
  2982. "duration": 0.1,
  2983. "zoomScale": 1.2,
  2984. "clickEvents": [
  2985. {
  2986. "__id__": 89
  2987. }
  2988. ],
  2989. "_N$interactable": true,
  2990. "_N$enableAutoGrayEffect": false,
  2991. "_N$normalColor": {
  2992. "__type__": "cc.Color",
  2993. "r": 255,
  2994. "g": 255,
  2995. "b": 255,
  2996. "a": 255
  2997. },
  2998. "_N$disabledColor": {
  2999. "__type__": "cc.Color",
  3000. "r": 255,
  3001. "g": 255,
  3002. "b": 255,
  3003. "a": 255
  3004. },
  3005. "_N$normalSprite": {
  3006. "__uuid__": "5e4122b9-5634-44c1-af70-c2aae5fab4eb"
  3007. },
  3008. "_N$pressedSprite": {
  3009. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3010. },
  3011. "pressedSprite": {
  3012. "__uuid__": "e9ec654c-97a2-4787-9325-e6a10375219a"
  3013. },
  3014. "_N$hoverSprite": {
  3015. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3016. },
  3017. "hoverSprite": {
  3018. "__uuid__": "f0048c10-f03e-4c97-b9d3-3506e1d58952"
  3019. },
  3020. "_N$disabledSprite": {
  3021. "__uuid__": "29158224-f8dd-4661-a796-1ffab537140e"
  3022. },
  3023. "_N$target": {
  3024. "__id__": 86
  3025. },
  3026. "_id": "a1AJFThuxLsqa4bULaoz74"
  3027. },
  3028. {
  3029. "__type__": "cc.ClickEvent",
  3030. "target": {
  3031. "__id__": 1
  3032. },
  3033. "component": "StarHandbook",
  3034. "handler": "closeDescView",
  3035. "customEventData": ""
  3036. },
  3037. {
  3038. "__type__": "cc.PrefabInfo",
  3039. "root": {
  3040. "__id__": 1
  3041. },
  3042. "asset": {
  3043. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  3044. },
  3045. "fileId": "bclyaTSlpFgYyqlbROS4xI",
  3046. "sync": false
  3047. },
  3048. {
  3049. "__type__": "abf85yHN1lK+qzZKG3NBSAU",
  3050. "_name": "",
  3051. "_objFlags": 0,
  3052. "node": {
  3053. "__id__": 55
  3054. },
  3055. "_enabled": true,
  3056. "nameLabel": {
  3057. "__id__": 62
  3058. },
  3059. "conditionLabel": {
  3060. "__id__": 66
  3061. },
  3062. "figure": {
  3063. "__id__": 70
  3064. },
  3065. "countLabel": {
  3066. "__id__": 79
  3067. },
  3068. "_id": "6cuaO1L3NLfYNcNmG7KW+X"
  3069. },
  3070. {
  3071. "__type__": "cc.PrefabInfo",
  3072. "root": {
  3073. "__id__": 1
  3074. },
  3075. "asset": {
  3076. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  3077. },
  3078. "fileId": "94E/Bp9wtPqbCYSLrLRW7X",
  3079. "sync": false
  3080. },
  3081. {
  3082. "__type__": "0fb2fd8UctIx6JYhQj4WClP",
  3083. "_name": "",
  3084. "_objFlags": 0,
  3085. "node": {
  3086. "__id__": 1
  3087. },
  3088. "_enabled": true,
  3089. "starItemPrefab": {
  3090. "__uuid__": "ea5ecae0-4c01-4efa-8708-ceb0998f2014"
  3091. },
  3092. "starLayout": {
  3093. "__id__": 18
  3094. },
  3095. "progressBar": {
  3096. "__id__": 13
  3097. },
  3098. "countLabel": {
  3099. "__id__": 26
  3100. },
  3101. "percentRichText": {
  3102. "__id__": 38
  3103. },
  3104. "descNode": {
  3105. "__id__": 55
  3106. },
  3107. "_id": "3awmfWmwdJNLGKC32YCQ5w"
  3108. },
  3109. {
  3110. "__type__": "cc.PrefabInfo",
  3111. "root": {
  3112. "__id__": 1
  3113. },
  3114. "asset": {
  3115. "__uuid__": "5d748165-a66c-42a7-b3a1-ddf43ad00279"
  3116. },
  3117. "fileId": "0ex1/FzxdCYr2NBQUO9Wq5",
  3118. "sync": false
  3119. }
  3120. ]