DrawStarLayer.prefab 62 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516
  1. [
  2. {
  3. "__type__": "cc.Prefab",
  4. "_name": "DrawStarLayer",
  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": "DrawStarLayer",
  17. "_objFlags": 0,
  18. "__editorExtras__": {},
  19. "_parent": null,
  20. "_children": [
  21. {
  22. "__id__": 2
  23. },
  24. {
  25. "__id__": 12
  26. }
  27. ],
  28. "_active": true,
  29. "_components": [
  30. {
  31. "__id__": 140
  32. },
  33. {
  34. "__id__": 142
  35. },
  36. {
  37. "__id__": 144
  38. },
  39. {
  40. "__id__": 146
  41. }
  42. ],
  43. "_prefab": {
  44. "__id__": 148
  45. },
  46. "_lpos": {
  47. "__type__": "cc.Vec3",
  48. "x": 0,
  49. "y": 0,
  50. "z": 0
  51. },
  52. "_lrot": {
  53. "__type__": "cc.Quat",
  54. "x": 0,
  55. "y": 0,
  56. "z": 0,
  57. "w": 1
  58. },
  59. "_lscale": {
  60. "__type__": "cc.Vec3",
  61. "x": 1,
  62. "y": 1,
  63. "z": 1
  64. },
  65. "_mobility": 0,
  66. "_layer": 1073741824,
  67. "_euler": {
  68. "__type__": "cc.Vec3",
  69. "x": 0,
  70. "y": 0,
  71. "z": 0
  72. },
  73. "_id": ""
  74. },
  75. {
  76. "__type__": "cc.Node",
  77. "_name": "SpriteSplash",
  78. "_objFlags": 0,
  79. "__editorExtras__": {},
  80. "_parent": {
  81. "__id__": 1
  82. },
  83. "_children": [],
  84. "_active": true,
  85. "_components": [
  86. {
  87. "__id__": 3
  88. },
  89. {
  90. "__id__": 5
  91. },
  92. {
  93. "__id__": 7
  94. },
  95. {
  96. "__id__": 9
  97. }
  98. ],
  99. "_prefab": {
  100. "__id__": 11
  101. },
  102. "_lpos": {
  103. "__type__": "cc.Vec3",
  104. "x": 0,
  105. "y": 0,
  106. "z": 0
  107. },
  108. "_lrot": {
  109. "__type__": "cc.Quat",
  110. "x": 0,
  111. "y": 0,
  112. "z": 0,
  113. "w": 1
  114. },
  115. "_lscale": {
  116. "__type__": "cc.Vec3",
  117. "x": 1,
  118. "y": 1,
  119. "z": 1
  120. },
  121. "_mobility": 0,
  122. "_layer": 33554432,
  123. "_euler": {
  124. "__type__": "cc.Vec3",
  125. "x": 0,
  126. "y": 0,
  127. "z": 0
  128. },
  129. "_id": ""
  130. },
  131. {
  132. "__type__": "cc.UITransform",
  133. "_name": "",
  134. "_objFlags": 0,
  135. "__editorExtras__": {},
  136. "node": {
  137. "__id__": 2
  138. },
  139. "_enabled": true,
  140. "__prefab": {
  141. "__id__": 4
  142. },
  143. "_contentSize": {
  144. "__type__": "cc.Size",
  145. "width": 750,
  146. "height": 1334
  147. },
  148. "_anchorPoint": {
  149. "__type__": "cc.Vec2",
  150. "x": 0.5,
  151. "y": 0.5
  152. },
  153. "_id": ""
  154. },
  155. {
  156. "__type__": "cc.CompPrefabInfo",
  157. "fileId": "55pCbtzR5GbojKMArZkfim"
  158. },
  159. {
  160. "__type__": "cc.Sprite",
  161. "_name": "",
  162. "_objFlags": 0,
  163. "__editorExtras__": {},
  164. "node": {
  165. "__id__": 2
  166. },
  167. "_enabled": true,
  168. "__prefab": {
  169. "__id__": 6
  170. },
  171. "_customMaterial": null,
  172. "_srcBlendFactor": 2,
  173. "_dstBlendFactor": 4,
  174. "_color": {
  175. "__type__": "cc.Color",
  176. "r": 0,
  177. "g": 0,
  178. "b": 0,
  179. "a": 136
  180. },
  181. "_spriteFrame": {
  182. "__uuid__": "7d8f9b89-4fd1-4c9f-a3ab-38ec7cded7ca@f9941",
  183. "__expectedType__": "cc.SpriteFrame"
  184. },
  185. "_type": 0,
  186. "_fillType": 0,
  187. "_sizeMode": 0,
  188. "_fillCenter": {
  189. "__type__": "cc.Vec2",
  190. "x": 0,
  191. "y": 0
  192. },
  193. "_fillStart": 0,
  194. "_fillRange": 0,
  195. "_isTrimmedMode": true,
  196. "_useGrayscale": false,
  197. "_atlas": null,
  198. "_id": ""
  199. },
  200. {
  201. "__type__": "cc.CompPrefabInfo",
  202. "fileId": "20UGQn4U9GUoln0NJQTkbG"
  203. },
  204. {
  205. "__type__": "cc.BlockInputEvents",
  206. "_name": "",
  207. "_objFlags": 0,
  208. "__editorExtras__": {},
  209. "node": {
  210. "__id__": 2
  211. },
  212. "_enabled": true,
  213. "__prefab": {
  214. "__id__": 8
  215. },
  216. "_id": ""
  217. },
  218. {
  219. "__type__": "cc.CompPrefabInfo",
  220. "fileId": "77ShzfVO5D24pO46in5yH2"
  221. },
  222. {
  223. "__type__": "cc.Widget",
  224. "_name": "",
  225. "_objFlags": 0,
  226. "__editorExtras__": {},
  227. "node": {
  228. "__id__": 2
  229. },
  230. "_enabled": true,
  231. "__prefab": {
  232. "__id__": 10
  233. },
  234. "_alignFlags": 45,
  235. "_target": null,
  236. "_left": 0,
  237. "_right": 0,
  238. "_top": 0,
  239. "_bottom": 0,
  240. "_horizontalCenter": 0,
  241. "_verticalCenter": 0,
  242. "_isAbsLeft": true,
  243. "_isAbsRight": true,
  244. "_isAbsTop": true,
  245. "_isAbsBottom": true,
  246. "_isAbsHorizontalCenter": true,
  247. "_isAbsVerticalCenter": true,
  248. "_originalWidth": 1000,
  249. "_originalHeight": 2000,
  250. "_alignMode": 2,
  251. "_lockFlags": 0,
  252. "_id": ""
  253. },
  254. {
  255. "__type__": "cc.CompPrefabInfo",
  256. "fileId": "4a+DMys41DCYXf1iVe/oVT"
  257. },
  258. {
  259. "__type__": "cc.PrefabInfo",
  260. "root": {
  261. "__id__": 1
  262. },
  263. "asset": {
  264. "__id__": 0
  265. },
  266. "fileId": "47C3mEVAtFJpnxc91Z3iHW",
  267. "instance": null,
  268. "targetOverrides": null,
  269. "nestedPrefabInstanceRoots": null
  270. },
  271. {
  272. "__type__": "cc.Node",
  273. "_name": "node_ui",
  274. "_objFlags": 0,
  275. "__editorExtras__": {},
  276. "_parent": {
  277. "__id__": 1
  278. },
  279. "_children": [
  280. {
  281. "__id__": 13
  282. },
  283. {
  284. "__id__": 37
  285. },
  286. {
  287. "__id__": 55
  288. },
  289. {
  290. "__id__": 75
  291. }
  292. ],
  293. "_active": true,
  294. "_components": [
  295. {
  296. "__id__": 135
  297. },
  298. {
  299. "__id__": 137
  300. }
  301. ],
  302. "_prefab": {
  303. "__id__": 139
  304. },
  305. "_lpos": {
  306. "__type__": "cc.Vec3",
  307. "x": 0,
  308. "y": 0,
  309. "z": 0
  310. },
  311. "_lrot": {
  312. "__type__": "cc.Quat",
  313. "x": 0,
  314. "y": 0,
  315. "z": 0,
  316. "w": 1
  317. },
  318. "_lscale": {
  319. "__type__": "cc.Vec3",
  320. "x": 1,
  321. "y": 1,
  322. "z": 1
  323. },
  324. "_mobility": 0,
  325. "_layer": 33554432,
  326. "_euler": {
  327. "__type__": "cc.Vec3",
  328. "x": 0,
  329. "y": 0,
  330. "z": 0
  331. },
  332. "_id": ""
  333. },
  334. {
  335. "__type__": "cc.Node",
  336. "_name": "star_n",
  337. "_objFlags": 0,
  338. "__editorExtras__": {},
  339. "_parent": {
  340. "__id__": 12
  341. },
  342. "_children": [
  343. {
  344. "__id__": 14
  345. },
  346. {
  347. "__id__": 22
  348. }
  349. ],
  350. "_active": true,
  351. "_components": [
  352. {
  353. "__id__": 32
  354. },
  355. {
  356. "__id__": 34
  357. }
  358. ],
  359. "_prefab": {
  360. "__id__": 36
  361. },
  362. "_lpos": {
  363. "__type__": "cc.Vec3",
  364. "x": -7.041,
  365. "y": 102.393,
  366. "z": 0
  367. },
  368. "_lrot": {
  369. "__type__": "cc.Quat",
  370. "x": 0,
  371. "y": 0,
  372. "z": 0,
  373. "w": 1
  374. },
  375. "_lscale": {
  376. "__type__": "cc.Vec3",
  377. "x": 1,
  378. "y": 1,
  379. "z": 1
  380. },
  381. "_mobility": 0,
  382. "_layer": 33554432,
  383. "_euler": {
  384. "__type__": "cc.Vec3",
  385. "x": 0,
  386. "y": 0,
  387. "z": 0
  388. },
  389. "_id": ""
  390. },
  391. {
  392. "__type__": "cc.Node",
  393. "_name": "star-with-outline",
  394. "_objFlags": 0,
  395. "__editorExtras__": {},
  396. "_parent": {
  397. "__id__": 13
  398. },
  399. "_children": [],
  400. "_active": true,
  401. "_components": [
  402. {
  403. "__id__": 15
  404. },
  405. {
  406. "__id__": 17
  407. },
  408. {
  409. "__id__": 19
  410. }
  411. ],
  412. "_prefab": {
  413. "__id__": 21
  414. },
  415. "_lpos": {
  416. "__type__": "cc.Vec3",
  417. "x": -39.693359375,
  418. "y": 0,
  419. "z": 0
  420. },
  421. "_lrot": {
  422. "__type__": "cc.Quat",
  423. "x": 0,
  424. "y": 0,
  425. "z": 0,
  426. "w": 1
  427. },
  428. "_lscale": {
  429. "__type__": "cc.Vec3",
  430. "x": 1,
  431. "y": 1,
  432. "z": 1
  433. },
  434. "_mobility": 0,
  435. "_layer": 33554432,
  436. "_euler": {
  437. "__type__": "cc.Vec3",
  438. "x": 0,
  439. "y": 0,
  440. "z": 0
  441. },
  442. "_id": ""
  443. },
  444. {
  445. "__type__": "cc.UITransform",
  446. "_name": "",
  447. "_objFlags": 0,
  448. "__editorExtras__": {},
  449. "node": {
  450. "__id__": 14
  451. },
  452. "_enabled": true,
  453. "__prefab": {
  454. "__id__": 16
  455. },
  456. "_contentSize": {
  457. "__type__": "cc.Size",
  458. "width": 84,
  459. "height": 62
  460. },
  461. "_anchorPoint": {
  462. "__type__": "cc.Vec2",
  463. "x": 0.5,
  464. "y": 0.5
  465. },
  466. "_id": ""
  467. },
  468. {
  469. "__type__": "cc.CompPrefabInfo",
  470. "fileId": "b8Zg5ukQRCZJlnPi8iZWLR"
  471. },
  472. {
  473. "__type__": "cc.Sprite",
  474. "_name": "",
  475. "_objFlags": 0,
  476. "__editorExtras__": {},
  477. "node": {
  478. "__id__": 14
  479. },
  480. "_enabled": true,
  481. "__prefab": {
  482. "__id__": 18
  483. },
  484. "_customMaterial": null,
  485. "_srcBlendFactor": 2,
  486. "_dstBlendFactor": 4,
  487. "_color": {
  488. "__type__": "cc.Color",
  489. "r": 255,
  490. "g": 255,
  491. "b": 255,
  492. "a": 255
  493. },
  494. "_spriteFrame": {
  495. "__uuid__": "85c5a723-8bc9-4c1f-80d2-f29583ff9260@f9941",
  496. "__expectedType__": "cc.SpriteFrame"
  497. },
  498. "_type": 0,
  499. "_fillType": 0,
  500. "_sizeMode": 1,
  501. "_fillCenter": {
  502. "__type__": "cc.Vec2",
  503. "x": 0,
  504. "y": 0
  505. },
  506. "_fillStart": 0,
  507. "_fillRange": 0,
  508. "_isTrimmedMode": true,
  509. "_useGrayscale": false,
  510. "_atlas": null,
  511. "_id": ""
  512. },
  513. {
  514. "__type__": "cc.CompPrefabInfo",
  515. "fileId": "a1y3bb1apOmLKNdz2CSz/I"
  516. },
  517. {
  518. "__type__": "cc.Widget",
  519. "_name": "",
  520. "_objFlags": 0,
  521. "__editorExtras__": {},
  522. "node": {
  523. "__id__": 14
  524. },
  525. "_enabled": true,
  526. "__prefab": {
  527. "__id__": 20
  528. },
  529. "_alignFlags": 33,
  530. "_target": null,
  531. "_left": 607.596,
  532. "_right": 79.38671875,
  533. "_top": 19,
  534. "_bottom": 0,
  535. "_horizontalCenter": 0,
  536. "_verticalCenter": 0,
  537. "_isAbsLeft": true,
  538. "_isAbsRight": true,
  539. "_isAbsTop": true,
  540. "_isAbsBottom": true,
  541. "_isAbsHorizontalCenter": true,
  542. "_isAbsVerticalCenter": true,
  543. "_originalWidth": 0,
  544. "_originalHeight": 0,
  545. "_alignMode": 2,
  546. "_lockFlags": 0,
  547. "_id": ""
  548. },
  549. {
  550. "__type__": "cc.CompPrefabInfo",
  551. "fileId": "4fGAEcl6dHdL6EF5RUQwRD"
  552. },
  553. {
  554. "__type__": "cc.PrefabInfo",
  555. "root": {
  556. "__id__": 1
  557. },
  558. "asset": {
  559. "__id__": 0
  560. },
  561. "fileId": "eeKSGnQKFOupFDlSeuwdWF",
  562. "instance": null,
  563. "targetOverrides": null,
  564. "nestedPrefabInstanceRoots": null
  565. },
  566. {
  567. "__type__": "cc.Node",
  568. "_name": "lbl_star",
  569. "_objFlags": 0,
  570. "__editorExtras__": {},
  571. "_parent": {
  572. "__id__": 13
  573. },
  574. "_children": [],
  575. "_active": true,
  576. "_components": [
  577. {
  578. "__id__": 23
  579. },
  580. {
  581. "__id__": 25
  582. },
  583. {
  584. "__id__": 27
  585. },
  586. {
  587. "__id__": 29
  588. }
  589. ],
  590. "_prefab": {
  591. "__id__": 31
  592. },
  593. "_lpos": {
  594. "__type__": "cc.Vec3",
  595. "x": 4.306640625,
  596. "y": 0,
  597. "z": 0
  598. },
  599. "_lrot": {
  600. "__type__": "cc.Quat",
  601. "x": 0,
  602. "y": 0,
  603. "z": 0,
  604. "w": 1
  605. },
  606. "_lscale": {
  607. "__type__": "cc.Vec3",
  608. "x": 1,
  609. "y": 1,
  610. "z": 1
  611. },
  612. "_mobility": 0,
  613. "_layer": 33554432,
  614. "_euler": {
  615. "__type__": "cc.Vec3",
  616. "x": 0,
  617. "y": 0,
  618. "z": 0
  619. },
  620. "_id": ""
  621. },
  622. {
  623. "__type__": "cc.UITransform",
  624. "_name": "",
  625. "_objFlags": 0,
  626. "__editorExtras__": {},
  627. "node": {
  628. "__id__": 22
  629. },
  630. "_enabled": true,
  631. "__prefab": {
  632. "__id__": 24
  633. },
  634. "_contentSize": {
  635. "__type__": "cc.Size",
  636. "width": 77.38671875,
  637. "height": 91.68
  638. },
  639. "_anchorPoint": {
  640. "__type__": "cc.Vec2",
  641. "x": 0,
  642. "y": 0.5
  643. },
  644. "_id": ""
  645. },
  646. {
  647. "__type__": "cc.CompPrefabInfo",
  648. "fileId": "56nQIlaulCfZH+7u61CudW"
  649. },
  650. {
  651. "__type__": "cc.Label",
  652. "_name": "",
  653. "_objFlags": 0,
  654. "__editorExtras__": {},
  655. "node": {
  656. "__id__": 22
  657. },
  658. "_enabled": true,
  659. "__prefab": {
  660. "__id__": 26
  661. },
  662. "_customMaterial": null,
  663. "_srcBlendFactor": 2,
  664. "_dstBlendFactor": 4,
  665. "_color": {
  666. "__type__": "cc.Color",
  667. "r": 255,
  668. "g": 246,
  669. "b": 187,
  670. "a": 255
  671. },
  672. "_string": "23",
  673. "_horizontalAlign": 0,
  674. "_verticalAlign": 1,
  675. "_actualFontSize": 68,
  676. "_fontSize": 68,
  677. "_fontFamily": "Arial",
  678. "_lineHeight": 68,
  679. "_overflow": 0,
  680. "_enableWrapText": true,
  681. "_font": {
  682. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  683. "__expectedType__": "cc.TTFFont"
  684. },
  685. "_isSystemFontUsed": false,
  686. "_spacingX": 0,
  687. "_isItalic": false,
  688. "_isBold": true,
  689. "_isUnderline": false,
  690. "_underlineHeight": 2,
  691. "_cacheMode": 0,
  692. "_enableOutline": true,
  693. "_outlineColor": {
  694. "__type__": "cc.Color",
  695. "r": 195,
  696. "g": 140,
  697. "b": 34,
  698. "a": 255
  699. },
  700. "_outlineWidth": 3,
  701. "_enableShadow": false,
  702. "_shadowColor": {
  703. "__type__": "cc.Color",
  704. "r": 195,
  705. "g": 140,
  706. "b": 34,
  707. "a": 255
  708. },
  709. "_shadowOffset": {
  710. "__type__": "cc.Vec2",
  711. "x": 2,
  712. "y": 2
  713. },
  714. "_shadowBlur": 2,
  715. "_id": ""
  716. },
  717. {
  718. "__type__": "cc.CompPrefabInfo",
  719. "fileId": "53k5Z+MTdPl7gHyPr4PJqJ"
  720. },
  721. {
  722. "__type__": "cc.Widget",
  723. "_name": "",
  724. "_objFlags": 0,
  725. "__editorExtras__": {},
  726. "node": {
  727. "__id__": 22
  728. },
  729. "_enabled": true,
  730. "__prefab": {
  731. "__id__": 28
  732. },
  733. "_alignFlags": 33,
  734. "_target": null,
  735. "_left": 672.765,
  736. "_right": 0,
  737. "_top": 4.159999999999997,
  738. "_bottom": 0,
  739. "_horizontalCenter": 0,
  740. "_verticalCenter": 0,
  741. "_isAbsLeft": true,
  742. "_isAbsRight": true,
  743. "_isAbsTop": true,
  744. "_isAbsBottom": true,
  745. "_isAbsHorizontalCenter": true,
  746. "_isAbsVerticalCenter": true,
  747. "_originalWidth": 0,
  748. "_originalHeight": 0,
  749. "_alignMode": 2,
  750. "_lockFlags": 0,
  751. "_id": ""
  752. },
  753. {
  754. "__type__": "cc.CompPrefabInfo",
  755. "fileId": "d17KVoHEtJLZXx8l3bBX3F"
  756. },
  757. {
  758. "__type__": "cc.LabelOutline",
  759. "_name": "",
  760. "_objFlags": 0,
  761. "__editorExtras__": {},
  762. "node": {
  763. "__id__": 22
  764. },
  765. "_enabled": true,
  766. "__prefab": {
  767. "__id__": 30
  768. },
  769. "_id": ""
  770. },
  771. {
  772. "__type__": "cc.CompPrefabInfo",
  773. "fileId": "0cIyKK8XFHdKGDCdH9y8W1"
  774. },
  775. {
  776. "__type__": "cc.PrefabInfo",
  777. "root": {
  778. "__id__": 1
  779. },
  780. "asset": {
  781. "__id__": 0
  782. },
  783. "fileId": "96+Bp6WwpDAqem5WdKfkqR",
  784. "instance": null,
  785. "targetOverrides": null,
  786. "nestedPrefabInstanceRoots": null
  787. },
  788. {
  789. "__type__": "cc.UITransform",
  790. "_name": "",
  791. "_objFlags": 0,
  792. "__editorExtras__": {},
  793. "node": {
  794. "__id__": 13
  795. },
  796. "_enabled": true,
  797. "__prefab": {
  798. "__id__": 33
  799. },
  800. "_contentSize": {
  801. "__type__": "cc.Size",
  802. "width": 163.38671875,
  803. "height": 100
  804. },
  805. "_anchorPoint": {
  806. "__type__": "cc.Vec2",
  807. "x": 0.5,
  808. "y": 0.5
  809. },
  810. "_id": ""
  811. },
  812. {
  813. "__type__": "cc.CompPrefabInfo",
  814. "fileId": "d9knD2nI1GjqOADokn5E3B"
  815. },
  816. {
  817. "__type__": "cc.Layout",
  818. "_name": "",
  819. "_objFlags": 0,
  820. "__editorExtras__": {},
  821. "node": {
  822. "__id__": 13
  823. },
  824. "_enabled": true,
  825. "__prefab": {
  826. "__id__": 35
  827. },
  828. "_resizeMode": 1,
  829. "_layoutType": 1,
  830. "_cellSize": {
  831. "__type__": "cc.Size",
  832. "width": 40,
  833. "height": 40
  834. },
  835. "_startAxis": 0,
  836. "_paddingLeft": 0,
  837. "_paddingRight": 0,
  838. "_paddingTop": 0,
  839. "_paddingBottom": 0,
  840. "_spacingX": 2,
  841. "_spacingY": 0,
  842. "_verticalDirection": 1,
  843. "_horizontalDirection": 0,
  844. "_constraint": 0,
  845. "_constraintNum": 2,
  846. "_affectedByScale": false,
  847. "_isAlign": true,
  848. "_id": ""
  849. },
  850. {
  851. "__type__": "cc.CompPrefabInfo",
  852. "fileId": "8dYTA3KmJELZbezs4IqrUN"
  853. },
  854. {
  855. "__type__": "cc.PrefabInfo",
  856. "root": {
  857. "__id__": 1
  858. },
  859. "asset": {
  860. "__id__": 0
  861. },
  862. "fileId": "a0y8pDaK5DNpZubZMZU8Ob",
  863. "instance": null,
  864. "targetOverrides": null,
  865. "nestedPrefabInstanceRoots": null
  866. },
  867. {
  868. "__type__": "cc.Node",
  869. "_name": "btn_get",
  870. "_objFlags": 0,
  871. "__editorExtras__": {},
  872. "_parent": {
  873. "__id__": 12
  874. },
  875. "_children": [
  876. {
  877. "__id__": 38
  878. }
  879. ],
  880. "_active": true,
  881. "_components": [
  882. {
  883. "__id__": 48
  884. },
  885. {
  886. "__id__": 50
  887. },
  888. {
  889. "__id__": 52
  890. }
  891. ],
  892. "_prefab": {
  893. "__id__": 54
  894. },
  895. "_lpos": {
  896. "__type__": "cc.Vec3",
  897. "x": -126.661,
  898. "y": -145.41,
  899. "z": 0
  900. },
  901. "_lrot": {
  902. "__type__": "cc.Quat",
  903. "x": 0,
  904. "y": 0,
  905. "z": 0,
  906. "w": 1
  907. },
  908. "_lscale": {
  909. "__type__": "cc.Vec3",
  910. "x": 1,
  911. "y": 1,
  912. "z": 1
  913. },
  914. "_mobility": 0,
  915. "_layer": 33554432,
  916. "_euler": {
  917. "__type__": "cc.Vec3",
  918. "x": 0,
  919. "y": 0,
  920. "z": 0
  921. },
  922. "_id": ""
  923. },
  924. {
  925. "__type__": "cc.Node",
  926. "_name": "Label",
  927. "_objFlags": 0,
  928. "__editorExtras__": {},
  929. "_parent": {
  930. "__id__": 37
  931. },
  932. "_children": [],
  933. "_active": true,
  934. "_components": [
  935. {
  936. "__id__": 39
  937. },
  938. {
  939. "__id__": 41
  940. },
  941. {
  942. "__id__": 43
  943. },
  944. {
  945. "__id__": 45
  946. }
  947. ],
  948. "_prefab": {
  949. "__id__": 47
  950. },
  951. "_lpos": {
  952. "__type__": "cc.Vec3",
  953. "x": 0,
  954. "y": 0,
  955. "z": 0
  956. },
  957. "_lrot": {
  958. "__type__": "cc.Quat",
  959. "x": 0,
  960. "y": 0,
  961. "z": 0,
  962. "w": 1
  963. },
  964. "_lscale": {
  965. "__type__": "cc.Vec3",
  966. "x": 1,
  967. "y": 1,
  968. "z": 1
  969. },
  970. "_mobility": 0,
  971. "_layer": 33554432,
  972. "_euler": {
  973. "__type__": "cc.Vec3",
  974. "x": 0,
  975. "y": 0,
  976. "z": 0
  977. },
  978. "_id": ""
  979. },
  980. {
  981. "__type__": "cc.UITransform",
  982. "_name": "",
  983. "_objFlags": 0,
  984. "__editorExtras__": {},
  985. "node": {
  986. "__id__": 38
  987. },
  988. "_enabled": true,
  989. "__prefab": {
  990. "__id__": 40
  991. },
  992. "_contentSize": {
  993. "__type__": "cc.Size",
  994. "width": 84,
  995. "height": 54.4
  996. },
  997. "_anchorPoint": {
  998. "__type__": "cc.Vec2",
  999. "x": 0.5,
  1000. "y": 0.5
  1001. },
  1002. "_id": ""
  1003. },
  1004. {
  1005. "__type__": "cc.CompPrefabInfo",
  1006. "fileId": "c68UOAlNhN171Umca6yVvF"
  1007. },
  1008. {
  1009. "__type__": "cc.Label",
  1010. "_name": "",
  1011. "_objFlags": 0,
  1012. "__editorExtras__": {},
  1013. "node": {
  1014. "__id__": 38
  1015. },
  1016. "_enabled": true,
  1017. "__prefab": {
  1018. "__id__": 42
  1019. },
  1020. "_customMaterial": null,
  1021. "_srcBlendFactor": 2,
  1022. "_dstBlendFactor": 4,
  1023. "_color": {
  1024. "__type__": "cc.Color",
  1025. "r": 255,
  1026. "g": 255,
  1027. "b": 255,
  1028. "a": 255
  1029. },
  1030. "_string": "领取",
  1031. "_horizontalAlign": 1,
  1032. "_verticalAlign": 1,
  1033. "_actualFontSize": 40,
  1034. "_fontSize": 40,
  1035. "_fontFamily": "Arial",
  1036. "_lineHeight": 40,
  1037. "_overflow": 0,
  1038. "_enableWrapText": true,
  1039. "_font": null,
  1040. "_isSystemFontUsed": true,
  1041. "_spacingX": 0,
  1042. "_isItalic": false,
  1043. "_isBold": true,
  1044. "_isUnderline": false,
  1045. "_underlineHeight": 2,
  1046. "_cacheMode": 0,
  1047. "_enableOutline": true,
  1048. "_outlineColor": {
  1049. "__type__": "cc.Color",
  1050. "r": 0,
  1051. "g": 0,
  1052. "b": 0,
  1053. "a": 255
  1054. },
  1055. "_outlineWidth": 2,
  1056. "_enableShadow": false,
  1057. "_shadowColor": {
  1058. "__type__": "cc.Color",
  1059. "r": 0,
  1060. "g": 0,
  1061. "b": 0,
  1062. "a": 255
  1063. },
  1064. "_shadowOffset": {
  1065. "__type__": "cc.Vec2",
  1066. "x": 2,
  1067. "y": 2
  1068. },
  1069. "_shadowBlur": 2,
  1070. "_id": ""
  1071. },
  1072. {
  1073. "__type__": "cc.CompPrefabInfo",
  1074. "fileId": "2frm37uaJHQr0AEEaYyM82"
  1075. },
  1076. {
  1077. "__type__": "cc.LabelOutline",
  1078. "_name": "",
  1079. "_objFlags": 0,
  1080. "__editorExtras__": {},
  1081. "node": {
  1082. "__id__": 38
  1083. },
  1084. "_enabled": true,
  1085. "__prefab": {
  1086. "__id__": 44
  1087. },
  1088. "_id": ""
  1089. },
  1090. {
  1091. "__type__": "cc.CompPrefabInfo",
  1092. "fileId": "184cUfibBDRYjKfs38SOrE"
  1093. },
  1094. {
  1095. "__type__": "c4c1axXN+NL4oYQEr2M4qn2",
  1096. "_name": "",
  1097. "_objFlags": 0,
  1098. "__editorExtras__": {},
  1099. "node": {
  1100. "__id__": 38
  1101. },
  1102. "_enabled": true,
  1103. "__prefab": {
  1104. "__id__": 46
  1105. },
  1106. "_dataID": "main.领取",
  1107. "_id": ""
  1108. },
  1109. {
  1110. "__type__": "cc.CompPrefabInfo",
  1111. "fileId": "e56Tun+kVLrIhI7tBUgLm7"
  1112. },
  1113. {
  1114. "__type__": "cc.PrefabInfo",
  1115. "root": {
  1116. "__id__": 1
  1117. },
  1118. "asset": {
  1119. "__id__": 0
  1120. },
  1121. "fileId": "6enXVZN91It78KGTTffji0",
  1122. "instance": null,
  1123. "targetOverrides": null,
  1124. "nestedPrefabInstanceRoots": null
  1125. },
  1126. {
  1127. "__type__": "cc.UITransform",
  1128. "_name": "",
  1129. "_objFlags": 0,
  1130. "__editorExtras__": {},
  1131. "node": {
  1132. "__id__": 37
  1133. },
  1134. "_enabled": true,
  1135. "__prefab": {
  1136. "__id__": 49
  1137. },
  1138. "_contentSize": {
  1139. "__type__": "cc.Size",
  1140. "width": 157,
  1141. "height": 157
  1142. },
  1143. "_anchorPoint": {
  1144. "__type__": "cc.Vec2",
  1145. "x": 0.5,
  1146. "y": 0.5
  1147. },
  1148. "_id": ""
  1149. },
  1150. {
  1151. "__type__": "cc.CompPrefabInfo",
  1152. "fileId": "65KUQ7PcFBJYsUUoe2EXrg"
  1153. },
  1154. {
  1155. "__type__": "cc.Sprite",
  1156. "_name": "",
  1157. "_objFlags": 0,
  1158. "__editorExtras__": {},
  1159. "node": {
  1160. "__id__": 37
  1161. },
  1162. "_enabled": true,
  1163. "__prefab": {
  1164. "__id__": 51
  1165. },
  1166. "_customMaterial": null,
  1167. "_srcBlendFactor": 2,
  1168. "_dstBlendFactor": 4,
  1169. "_color": {
  1170. "__type__": "cc.Color",
  1171. "r": 255,
  1172. "g": 255,
  1173. "b": 255,
  1174. "a": 255
  1175. },
  1176. "_spriteFrame": {
  1177. "__uuid__": "984e3925-9f7e-47c6-a0fc-0241fe11a3b2@f9941",
  1178. "__expectedType__": "cc.SpriteFrame"
  1179. },
  1180. "_type": 0,
  1181. "_fillType": 0,
  1182. "_sizeMode": 0,
  1183. "_fillCenter": {
  1184. "__type__": "cc.Vec2",
  1185. "x": 0,
  1186. "y": 0
  1187. },
  1188. "_fillStart": 0,
  1189. "_fillRange": 0,
  1190. "_isTrimmedMode": false,
  1191. "_useGrayscale": false,
  1192. "_atlas": null,
  1193. "_id": ""
  1194. },
  1195. {
  1196. "__type__": "cc.CompPrefabInfo",
  1197. "fileId": "ee7E68CpdATpIENpbj/rQH"
  1198. },
  1199. {
  1200. "__type__": "cc.Button",
  1201. "_name": "",
  1202. "_objFlags": 0,
  1203. "__editorExtras__": {},
  1204. "node": {
  1205. "__id__": 37
  1206. },
  1207. "_enabled": true,
  1208. "__prefab": {
  1209. "__id__": 53
  1210. },
  1211. "clickEvents": [],
  1212. "_interactable": true,
  1213. "_transition": 1,
  1214. "_normalColor": {
  1215. "__type__": "cc.Color",
  1216. "r": 255,
  1217. "g": 255,
  1218. "b": 255,
  1219. "a": 255
  1220. },
  1221. "_hoverColor": {
  1222. "__type__": "cc.Color",
  1223. "r": 211,
  1224. "g": 211,
  1225. "b": 211,
  1226. "a": 255
  1227. },
  1228. "_pressedColor": {
  1229. "__type__": "cc.Color",
  1230. "r": 255,
  1231. "g": 255,
  1232. "b": 255,
  1233. "a": 255
  1234. },
  1235. "_disabledColor": {
  1236. "__type__": "cc.Color",
  1237. "r": 124,
  1238. "g": 124,
  1239. "b": 124,
  1240. "a": 255
  1241. },
  1242. "_normalSprite": {
  1243. "__uuid__": "984e3925-9f7e-47c6-a0fc-0241fe11a3b2@f9941",
  1244. "__expectedType__": "cc.SpriteFrame"
  1245. },
  1246. "_hoverSprite": null,
  1247. "_pressedSprite": null,
  1248. "_disabledSprite": null,
  1249. "_duration": 0.1,
  1250. "_zoomScale": 1.2,
  1251. "_target": {
  1252. "__id__": 37
  1253. },
  1254. "_id": ""
  1255. },
  1256. {
  1257. "__type__": "cc.CompPrefabInfo",
  1258. "fileId": "56HtSyUhtOdZGgjHpbO/4L"
  1259. },
  1260. {
  1261. "__type__": "cc.PrefabInfo",
  1262. "root": {
  1263. "__id__": 1
  1264. },
  1265. "asset": {
  1266. "__id__": 0
  1267. },
  1268. "fileId": "ff8nq/V+RMspa6T/5+SaD+",
  1269. "instance": null,
  1270. "targetOverrides": null,
  1271. "nestedPrefabInstanceRoots": null
  1272. },
  1273. {
  1274. "__type__": "cc.Node",
  1275. "_name": "btn_ad",
  1276. "_objFlags": 0,
  1277. "__editorExtras__": {},
  1278. "_parent": {
  1279. "__id__": 12
  1280. },
  1281. "_children": [
  1282. {
  1283. "__id__": 56
  1284. },
  1285. {
  1286. "__id__": 62
  1287. }
  1288. ],
  1289. "_active": true,
  1290. "_components": [
  1291. {
  1292. "__id__": 68
  1293. },
  1294. {
  1295. "__id__": 70
  1296. },
  1297. {
  1298. "__id__": 72
  1299. }
  1300. ],
  1301. "_prefab": {
  1302. "__id__": 74
  1303. },
  1304. "_lpos": {
  1305. "__type__": "cc.Vec3",
  1306. "x": 135.629,
  1307. "y": -145.41,
  1308. "z": 0
  1309. },
  1310. "_lrot": {
  1311. "__type__": "cc.Quat",
  1312. "x": 0,
  1313. "y": 0,
  1314. "z": 0,
  1315. "w": 1
  1316. },
  1317. "_lscale": {
  1318. "__type__": "cc.Vec3",
  1319. "x": 1,
  1320. "y": 1,
  1321. "z": 1
  1322. },
  1323. "_mobility": 0,
  1324. "_layer": 33554432,
  1325. "_euler": {
  1326. "__type__": "cc.Vec3",
  1327. "x": 0,
  1328. "y": 0,
  1329. "z": 0
  1330. },
  1331. "_id": ""
  1332. },
  1333. {
  1334. "__type__": "cc.Node",
  1335. "_name": "video_icon_yellow_stroke",
  1336. "_objFlags": 0,
  1337. "__editorExtras__": {},
  1338. "_parent": {
  1339. "__id__": 55
  1340. },
  1341. "_children": [],
  1342. "_active": true,
  1343. "_components": [
  1344. {
  1345. "__id__": 57
  1346. },
  1347. {
  1348. "__id__": 59
  1349. }
  1350. ],
  1351. "_prefab": {
  1352. "__id__": 61
  1353. },
  1354. "_lpos": {
  1355. "__type__": "cc.Vec3",
  1356. "x": -22.418,
  1357. "y": -4.033,
  1358. "z": 0
  1359. },
  1360. "_lrot": {
  1361. "__type__": "cc.Quat",
  1362. "x": 0,
  1363. "y": 0,
  1364. "z": 0,
  1365. "w": 1
  1366. },
  1367. "_lscale": {
  1368. "__type__": "cc.Vec3",
  1369. "x": 1,
  1370. "y": 1,
  1371. "z": 1
  1372. },
  1373. "_mobility": 0,
  1374. "_layer": 33554432,
  1375. "_euler": {
  1376. "__type__": "cc.Vec3",
  1377. "x": 0,
  1378. "y": 0,
  1379. "z": 0
  1380. },
  1381. "_id": ""
  1382. },
  1383. {
  1384. "__type__": "cc.UITransform",
  1385. "_name": "",
  1386. "_objFlags": 0,
  1387. "__editorExtras__": {},
  1388. "node": {
  1389. "__id__": 56
  1390. },
  1391. "_enabled": true,
  1392. "__prefab": {
  1393. "__id__": 58
  1394. },
  1395. "_contentSize": {
  1396. "__type__": "cc.Size",
  1397. "width": 70,
  1398. "height": 43
  1399. },
  1400. "_anchorPoint": {
  1401. "__type__": "cc.Vec2",
  1402. "x": 0.5,
  1403. "y": 0.5
  1404. },
  1405. "_id": ""
  1406. },
  1407. {
  1408. "__type__": "cc.CompPrefabInfo",
  1409. "fileId": "10iQBI+uxF4bCwfNGa5xKv"
  1410. },
  1411. {
  1412. "__type__": "cc.Sprite",
  1413. "_name": "",
  1414. "_objFlags": 0,
  1415. "__editorExtras__": {},
  1416. "node": {
  1417. "__id__": 56
  1418. },
  1419. "_enabled": true,
  1420. "__prefab": {
  1421. "__id__": 60
  1422. },
  1423. "_customMaterial": null,
  1424. "_srcBlendFactor": 2,
  1425. "_dstBlendFactor": 4,
  1426. "_color": {
  1427. "__type__": "cc.Color",
  1428. "r": 255,
  1429. "g": 255,
  1430. "b": 255,
  1431. "a": 255
  1432. },
  1433. "_spriteFrame": {
  1434. "__uuid__": "8aeb9c85-3c05-4d07-93e0-323f5bf09a6f@f9941",
  1435. "__expectedType__": "cc.SpriteFrame"
  1436. },
  1437. "_type": 0,
  1438. "_fillType": 0,
  1439. "_sizeMode": 1,
  1440. "_fillCenter": {
  1441. "__type__": "cc.Vec2",
  1442. "x": 0,
  1443. "y": 0
  1444. },
  1445. "_fillStart": 0,
  1446. "_fillRange": 0,
  1447. "_isTrimmedMode": true,
  1448. "_useGrayscale": false,
  1449. "_atlas": null,
  1450. "_id": ""
  1451. },
  1452. {
  1453. "__type__": "cc.CompPrefabInfo",
  1454. "fileId": "02KStCV75HErer8D9CgLaV"
  1455. },
  1456. {
  1457. "__type__": "cc.PrefabInfo",
  1458. "root": {
  1459. "__id__": 1
  1460. },
  1461. "asset": {
  1462. "__id__": 0
  1463. },
  1464. "fileId": "216F6nO1tLyajASfdZWKy9",
  1465. "instance": null,
  1466. "targetOverrides": null,
  1467. "nestedPrefabInstanceRoots": null
  1468. },
  1469. {
  1470. "__type__": "cc.Node",
  1471. "_name": "lbl_beisu",
  1472. "_objFlags": 0,
  1473. "__editorExtras__": {},
  1474. "_parent": {
  1475. "__id__": 55
  1476. },
  1477. "_children": [],
  1478. "_active": true,
  1479. "_components": [
  1480. {
  1481. "__id__": 63
  1482. },
  1483. {
  1484. "__id__": 65
  1485. }
  1486. ],
  1487. "_prefab": {
  1488. "__id__": 67
  1489. },
  1490. "_lpos": {
  1491. "__type__": "cc.Vec3",
  1492. "x": 42.614,
  1493. "y": -4.033,
  1494. "z": 0
  1495. },
  1496. "_lrot": {
  1497. "__type__": "cc.Quat",
  1498. "x": 0,
  1499. "y": 0,
  1500. "z": 0,
  1501. "w": 1
  1502. },
  1503. "_lscale": {
  1504. "__type__": "cc.Vec3",
  1505. "x": 1,
  1506. "y": 1,
  1507. "z": 1
  1508. },
  1509. "_mobility": 0,
  1510. "_layer": 33554432,
  1511. "_euler": {
  1512. "__type__": "cc.Vec3",
  1513. "x": 0,
  1514. "y": 0,
  1515. "z": 0
  1516. },
  1517. "_id": ""
  1518. },
  1519. {
  1520. "__type__": "cc.UITransform",
  1521. "_name": "",
  1522. "_objFlags": 0,
  1523. "__editorExtras__": {},
  1524. "node": {
  1525. "__id__": 62
  1526. },
  1527. "_enabled": true,
  1528. "__prefab": {
  1529. "__id__": 64
  1530. },
  1531. "_contentSize": {
  1532. "__type__": "cc.Size",
  1533. "width": 42.8017578125,
  1534. "height": 51.660000000000004
  1535. },
  1536. "_anchorPoint": {
  1537. "__type__": "cc.Vec2",
  1538. "x": 0.5,
  1539. "y": 0.5
  1540. },
  1541. "_id": ""
  1542. },
  1543. {
  1544. "__type__": "cc.CompPrefabInfo",
  1545. "fileId": "39p+BKwFZI6J6JCcKGV1vN"
  1546. },
  1547. {
  1548. "__type__": "cc.Label",
  1549. "_name": "",
  1550. "_objFlags": 0,
  1551. "__editorExtras__": {},
  1552. "node": {
  1553. "__id__": 62
  1554. },
  1555. "_enabled": true,
  1556. "__prefab": {
  1557. "__id__": 66
  1558. },
  1559. "_customMaterial": null,
  1560. "_srcBlendFactor": 2,
  1561. "_dstBlendFactor": 4,
  1562. "_color": {
  1563. "__type__": "cc.Color",
  1564. "r": 255,
  1565. "g": 255,
  1566. "b": 255,
  1567. "a": 255
  1568. },
  1569. "_string": "x3",
  1570. "_horizontalAlign": 1,
  1571. "_verticalAlign": 1,
  1572. "_actualFontSize": 41,
  1573. "_fontSize": 41,
  1574. "_fontFamily": "Arial",
  1575. "_lineHeight": 41,
  1576. "_overflow": 0,
  1577. "_enableWrapText": true,
  1578. "_font": {
  1579. "__uuid__": "a773a425-e6b8-4ed4-9f7a-8fb8c3fccc4c",
  1580. "__expectedType__": "cc.TTFFont"
  1581. },
  1582. "_isSystemFontUsed": false,
  1583. "_spacingX": 0,
  1584. "_isItalic": false,
  1585. "_isBold": true,
  1586. "_isUnderline": false,
  1587. "_underlineHeight": 2,
  1588. "_cacheMode": 0,
  1589. "_enableOutline": false,
  1590. "_outlineColor": {
  1591. "__type__": "cc.Color",
  1592. "r": 0,
  1593. "g": 0,
  1594. "b": 0,
  1595. "a": 255
  1596. },
  1597. "_outlineWidth": 2,
  1598. "_enableShadow": false,
  1599. "_shadowColor": {
  1600. "__type__": "cc.Color",
  1601. "r": 0,
  1602. "g": 0,
  1603. "b": 0,
  1604. "a": 255
  1605. },
  1606. "_shadowOffset": {
  1607. "__type__": "cc.Vec2",
  1608. "x": 2,
  1609. "y": -2
  1610. },
  1611. "_shadowBlur": 2,
  1612. "_id": ""
  1613. },
  1614. {
  1615. "__type__": "cc.CompPrefabInfo",
  1616. "fileId": "a9GhIpXEBFpI+DUFcnX52N"
  1617. },
  1618. {
  1619. "__type__": "cc.PrefabInfo",
  1620. "root": {
  1621. "__id__": 1
  1622. },
  1623. "asset": {
  1624. "__id__": 0
  1625. },
  1626. "fileId": "3aAR5Xh3VMrKLFYkdBFha3",
  1627. "instance": null,
  1628. "targetOverrides": null,
  1629. "nestedPrefabInstanceRoots": null
  1630. },
  1631. {
  1632. "__type__": "cc.UITransform",
  1633. "_name": "",
  1634. "_objFlags": 0,
  1635. "__editorExtras__": {},
  1636. "node": {
  1637. "__id__": 55
  1638. },
  1639. "_enabled": true,
  1640. "__prefab": {
  1641. "__id__": 69
  1642. },
  1643. "_contentSize": {
  1644. "__type__": "cc.Size",
  1645. "width": 155,
  1646. "height": 143
  1647. },
  1648. "_anchorPoint": {
  1649. "__type__": "cc.Vec2",
  1650. "x": 0.5,
  1651. "y": 0.5
  1652. },
  1653. "_id": ""
  1654. },
  1655. {
  1656. "__type__": "cc.CompPrefabInfo",
  1657. "fileId": "6e1lodY4FH1ZkxXIa4dDOR"
  1658. },
  1659. {
  1660. "__type__": "cc.Sprite",
  1661. "_name": "",
  1662. "_objFlags": 0,
  1663. "__editorExtras__": {},
  1664. "node": {
  1665. "__id__": 55
  1666. },
  1667. "_enabled": true,
  1668. "__prefab": {
  1669. "__id__": 71
  1670. },
  1671. "_customMaterial": null,
  1672. "_srcBlendFactor": 2,
  1673. "_dstBlendFactor": 4,
  1674. "_color": {
  1675. "__type__": "cc.Color",
  1676. "r": 255,
  1677. "g": 255,
  1678. "b": 255,
  1679. "a": 255
  1680. },
  1681. "_spriteFrame": {
  1682. "__uuid__": "1986cb55-ac23-4c60-948b-79805e1f23e6@f9941",
  1683. "__expectedType__": "cc.SpriteFrame"
  1684. },
  1685. "_type": 0,
  1686. "_fillType": 0,
  1687. "_sizeMode": 1,
  1688. "_fillCenter": {
  1689. "__type__": "cc.Vec2",
  1690. "x": 0,
  1691. "y": 0
  1692. },
  1693. "_fillStart": 0,
  1694. "_fillRange": 0,
  1695. "_isTrimmedMode": true,
  1696. "_useGrayscale": false,
  1697. "_atlas": null,
  1698. "_id": ""
  1699. },
  1700. {
  1701. "__type__": "cc.CompPrefabInfo",
  1702. "fileId": "13CpVchEdI8Kd6E+h9lWuQ"
  1703. },
  1704. {
  1705. "__type__": "cc.Button",
  1706. "_name": "",
  1707. "_objFlags": 0,
  1708. "__editorExtras__": {},
  1709. "node": {
  1710. "__id__": 55
  1711. },
  1712. "_enabled": true,
  1713. "__prefab": {
  1714. "__id__": 73
  1715. },
  1716. "clickEvents": [],
  1717. "_interactable": true,
  1718. "_transition": 3,
  1719. "_normalColor": {
  1720. "__type__": "cc.Color",
  1721. "r": 255,
  1722. "g": 255,
  1723. "b": 255,
  1724. "a": 255
  1725. },
  1726. "_hoverColor": {
  1727. "__type__": "cc.Color",
  1728. "r": 211,
  1729. "g": 211,
  1730. "b": 211,
  1731. "a": 255
  1732. },
  1733. "_pressedColor": {
  1734. "__type__": "cc.Color",
  1735. "r": 255,
  1736. "g": 255,
  1737. "b": 255,
  1738. "a": 255
  1739. },
  1740. "_disabledColor": {
  1741. "__type__": "cc.Color",
  1742. "r": 124,
  1743. "g": 124,
  1744. "b": 124,
  1745. "a": 255
  1746. },
  1747. "_normalSprite": null,
  1748. "_hoverSprite": null,
  1749. "_pressedSprite": null,
  1750. "_disabledSprite": null,
  1751. "_duration": 0.1,
  1752. "_zoomScale": 1.02,
  1753. "_target": {
  1754. "__id__": 55
  1755. },
  1756. "_id": ""
  1757. },
  1758. {
  1759. "__type__": "cc.CompPrefabInfo",
  1760. "fileId": "66nbQA26FAI7d3Szy1q5ya"
  1761. },
  1762. {
  1763. "__type__": "cc.PrefabInfo",
  1764. "root": {
  1765. "__id__": 1
  1766. },
  1767. "asset": {
  1768. "__id__": 0
  1769. },
  1770. "fileId": "a14xy3xM5O/q7nIxqMZBan",
  1771. "instance": null,
  1772. "targetOverrides": null,
  1773. "nestedPrefabInstanceRoots": null
  1774. },
  1775. {
  1776. "__type__": "cc.Node",
  1777. "_name": "star-gamification-bar",
  1778. "_objFlags": 0,
  1779. "__editorExtras__": {},
  1780. "_parent": {
  1781. "__id__": 12
  1782. },
  1783. "_children": [
  1784. {
  1785. "__id__": 76
  1786. },
  1787. {
  1788. "__id__": 124
  1789. }
  1790. ],
  1791. "_active": true,
  1792. "_components": [
  1793. {
  1794. "__id__": 130
  1795. },
  1796. {
  1797. "__id__": 132
  1798. }
  1799. ],
  1800. "_prefab": {
  1801. "__id__": 134
  1802. },
  1803. "_lpos": {
  1804. "__type__": "cc.Vec3",
  1805. "x": -16.43,
  1806. "y": -1.805,
  1807. "z": 0
  1808. },
  1809. "_lrot": {
  1810. "__type__": "cc.Quat",
  1811. "x": 0,
  1812. "y": 0,
  1813. "z": 0,
  1814. "w": 1
  1815. },
  1816. "_lscale": {
  1817. "__type__": "cc.Vec3",
  1818. "x": 1.2,
  1819. "y": 1.2,
  1820. "z": 1
  1821. },
  1822. "_mobility": 0,
  1823. "_layer": 33554432,
  1824. "_euler": {
  1825. "__type__": "cc.Vec3",
  1826. "x": 0,
  1827. "y": 0,
  1828. "z": 0
  1829. },
  1830. "_id": ""
  1831. },
  1832. {
  1833. "__type__": "cc.Node",
  1834. "_name": "lables",
  1835. "_objFlags": 0,
  1836. "__editorExtras__": {},
  1837. "_parent": {
  1838. "__id__": 75
  1839. },
  1840. "_children": [
  1841. {
  1842. "__id__": 77
  1843. },
  1844. {
  1845. "__id__": 83
  1846. },
  1847. {
  1848. "__id__": 89
  1849. },
  1850. {
  1851. "__id__": 95
  1852. },
  1853. {
  1854. "__id__": 101
  1855. },
  1856. {
  1857. "__id__": 107
  1858. },
  1859. {
  1860. "__id__": 113
  1861. }
  1862. ],
  1863. "_active": true,
  1864. "_components": [
  1865. {
  1866. "__id__": 119
  1867. },
  1868. {
  1869. "__id__": 121
  1870. }
  1871. ],
  1872. "_prefab": {
  1873. "__id__": 123
  1874. },
  1875. "_lpos": {
  1876. "__type__": "cc.Vec3",
  1877. "x": -182.558,
  1878. "y": 1.56,
  1879. "z": 0
  1880. },
  1881. "_lrot": {
  1882. "__type__": "cc.Quat",
  1883. "x": 0,
  1884. "y": 0,
  1885. "z": 0,
  1886. "w": 1
  1887. },
  1888. "_lscale": {
  1889. "__type__": "cc.Vec3",
  1890. "x": 1,
  1891. "y": 1,
  1892. "z": 1
  1893. },
  1894. "_mobility": 0,
  1895. "_layer": 33554432,
  1896. "_euler": {
  1897. "__type__": "cc.Vec3",
  1898. "x": 0,
  1899. "y": 0,
  1900. "z": 0
  1901. },
  1902. "_id": ""
  1903. },
  1904. {
  1905. "__type__": "cc.Node",
  1906. "_name": "lable_01",
  1907. "_objFlags": 0,
  1908. "__editorExtras__": {},
  1909. "_parent": {
  1910. "__id__": 76
  1911. },
  1912. "_children": [],
  1913. "_active": true,
  1914. "_components": [
  1915. {
  1916. "__id__": 78
  1917. },
  1918. {
  1919. "__id__": 80
  1920. }
  1921. ],
  1922. "_prefab": {
  1923. "__id__": 82
  1924. },
  1925. "_lpos": {
  1926. "__type__": "cc.Vec3",
  1927. "x": -9.54,
  1928. "y": 0,
  1929. "z": 0
  1930. },
  1931. "_lrot": {
  1932. "__type__": "cc.Quat",
  1933. "x": 0,
  1934. "y": 0,
  1935. "z": 0,
  1936. "w": 1
  1937. },
  1938. "_lscale": {
  1939. "__type__": "cc.Vec3",
  1940. "x": 1,
  1941. "y": 1,
  1942. "z": 1
  1943. },
  1944. "_mobility": 0,
  1945. "_layer": 33554432,
  1946. "_euler": {
  1947. "__type__": "cc.Vec3",
  1948. "x": 0,
  1949. "y": 0,
  1950. "z": 0
  1951. },
  1952. "_id": ""
  1953. },
  1954. {
  1955. "__type__": "cc.UITransform",
  1956. "_name": "",
  1957. "_objFlags": 0,
  1958. "__editorExtras__": {},
  1959. "node": {
  1960. "__id__": 77
  1961. },
  1962. "_enabled": true,
  1963. "__prefab": {
  1964. "__id__": 79
  1965. },
  1966. "_contentSize": {
  1967. "__type__": "cc.Size",
  1968. "width": 33.369140625,
  1969. "height": 37.8
  1970. },
  1971. "_anchorPoint": {
  1972. "__type__": "cc.Vec2",
  1973. "x": 0.5,
  1974. "y": 0.5
  1975. },
  1976. "_id": ""
  1977. },
  1978. {
  1979. "__type__": "cc.CompPrefabInfo",
  1980. "fileId": "cbf7SW5b5L4YehfffSJbr6"
  1981. },
  1982. {
  1983. "__type__": "cc.Label",
  1984. "_name": "",
  1985. "_objFlags": 0,
  1986. "__editorExtras__": {},
  1987. "node": {
  1988. "__id__": 77
  1989. },
  1990. "_enabled": true,
  1991. "__prefab": {
  1992. "__id__": 81
  1993. },
  1994. "_customMaterial": null,
  1995. "_srcBlendFactor": 2,
  1996. "_dstBlendFactor": 4,
  1997. "_color": {
  1998. "__type__": "cc.Color",
  1999. "r": 255,
  2000. "g": 255,
  2001. "b": 255,
  2002. "a": 255
  2003. },
  2004. "_string": "x2",
  2005. "_horizontalAlign": 1,
  2006. "_verticalAlign": 1,
  2007. "_actualFontSize": 30,
  2008. "_fontSize": 30,
  2009. "_fontFamily": "Arial",
  2010. "_lineHeight": 30,
  2011. "_overflow": 0,
  2012. "_enableWrapText": true,
  2013. "_font": null,
  2014. "_isSystemFontUsed": true,
  2015. "_spacingX": 0,
  2016. "_isItalic": false,
  2017. "_isBold": true,
  2018. "_isUnderline": false,
  2019. "_underlineHeight": 2,
  2020. "_cacheMode": 0,
  2021. "_enableOutline": false,
  2022. "_outlineColor": {
  2023. "__type__": "cc.Color",
  2024. "r": 0,
  2025. "g": 0,
  2026. "b": 0,
  2027. "a": 255
  2028. },
  2029. "_outlineWidth": 2,
  2030. "_enableShadow": true,
  2031. "_shadowColor": {
  2032. "__type__": "cc.Color",
  2033. "r": 0,
  2034. "g": 0,
  2035. "b": 0,
  2036. "a": 255
  2037. },
  2038. "_shadowOffset": {
  2039. "__type__": "cc.Vec2",
  2040. "x": 2,
  2041. "y": 2
  2042. },
  2043. "_shadowBlur": 2,
  2044. "_id": ""
  2045. },
  2046. {
  2047. "__type__": "cc.CompPrefabInfo",
  2048. "fileId": "d5D/vbb19K+YF+77aR2Vsm"
  2049. },
  2050. {
  2051. "__type__": "cc.PrefabInfo",
  2052. "root": {
  2053. "__id__": 1
  2054. },
  2055. "asset": {
  2056. "__id__": 0
  2057. },
  2058. "fileId": "7dDQlN7A5FvKPDdgq9UjCo",
  2059. "instance": null,
  2060. "targetOverrides": null,
  2061. "nestedPrefabInstanceRoots": null
  2062. },
  2063. {
  2064. "__type__": "cc.Node",
  2065. "_name": "lable_02",
  2066. "_objFlags": 0,
  2067. "__editorExtras__": {},
  2068. "_parent": {
  2069. "__id__": 76
  2070. },
  2071. "_children": [],
  2072. "_active": true,
  2073. "_components": [
  2074. {
  2075. "__id__": 84
  2076. },
  2077. {
  2078. "__id__": 86
  2079. }
  2080. ],
  2081. "_prefab": {
  2082. "__id__": 88
  2083. },
  2084. "_lpos": {
  2085. "__type__": "cc.Vec3",
  2086. "x": 47.571,
  2087. "y": 0,
  2088. "z": 0
  2089. },
  2090. "_lrot": {
  2091. "__type__": "cc.Quat",
  2092. "x": 0,
  2093. "y": 0,
  2094. "z": 0,
  2095. "w": 1
  2096. },
  2097. "_lscale": {
  2098. "__type__": "cc.Vec3",
  2099. "x": 1,
  2100. "y": 1,
  2101. "z": 1
  2102. },
  2103. "_mobility": 0,
  2104. "_layer": 33554432,
  2105. "_euler": {
  2106. "__type__": "cc.Vec3",
  2107. "x": 0,
  2108. "y": 0,
  2109. "z": 0
  2110. },
  2111. "_id": ""
  2112. },
  2113. {
  2114. "__type__": "cc.UITransform",
  2115. "_name": "",
  2116. "_objFlags": 0,
  2117. "__editorExtras__": {},
  2118. "node": {
  2119. "__id__": 83
  2120. },
  2121. "_enabled": true,
  2122. "__prefab": {
  2123. "__id__": 85
  2124. },
  2125. "_contentSize": {
  2126. "__type__": "cc.Size",
  2127. "width": 33.369140625,
  2128. "height": 37.8
  2129. },
  2130. "_anchorPoint": {
  2131. "__type__": "cc.Vec2",
  2132. "x": 0.5,
  2133. "y": 0.5
  2134. },
  2135. "_id": ""
  2136. },
  2137. {
  2138. "__type__": "cc.CompPrefabInfo",
  2139. "fileId": "02Lo/tX41NpJlMDSR1Scd0"
  2140. },
  2141. {
  2142. "__type__": "cc.Label",
  2143. "_name": "",
  2144. "_objFlags": 0,
  2145. "__editorExtras__": {},
  2146. "node": {
  2147. "__id__": 83
  2148. },
  2149. "_enabled": true,
  2150. "__prefab": {
  2151. "__id__": 87
  2152. },
  2153. "_customMaterial": null,
  2154. "_srcBlendFactor": 2,
  2155. "_dstBlendFactor": 4,
  2156. "_color": {
  2157. "__type__": "cc.Color",
  2158. "r": 255,
  2159. "g": 255,
  2160. "b": 255,
  2161. "a": 255
  2162. },
  2163. "_string": "x3",
  2164. "_horizontalAlign": 1,
  2165. "_verticalAlign": 1,
  2166. "_actualFontSize": 30,
  2167. "_fontSize": 30,
  2168. "_fontFamily": "Arial",
  2169. "_lineHeight": 30,
  2170. "_overflow": 0,
  2171. "_enableWrapText": true,
  2172. "_font": null,
  2173. "_isSystemFontUsed": true,
  2174. "_spacingX": 0,
  2175. "_isItalic": false,
  2176. "_isBold": true,
  2177. "_isUnderline": false,
  2178. "_underlineHeight": 2,
  2179. "_cacheMode": 0,
  2180. "_enableOutline": false,
  2181. "_outlineColor": {
  2182. "__type__": "cc.Color",
  2183. "r": 0,
  2184. "g": 0,
  2185. "b": 0,
  2186. "a": 255
  2187. },
  2188. "_outlineWidth": 2,
  2189. "_enableShadow": true,
  2190. "_shadowColor": {
  2191. "__type__": "cc.Color",
  2192. "r": 0,
  2193. "g": 0,
  2194. "b": 0,
  2195. "a": 255
  2196. },
  2197. "_shadowOffset": {
  2198. "__type__": "cc.Vec2",
  2199. "x": 2,
  2200. "y": 2
  2201. },
  2202. "_shadowBlur": 2,
  2203. "_id": ""
  2204. },
  2205. {
  2206. "__type__": "cc.CompPrefabInfo",
  2207. "fileId": "12llYNxjlKaL0sWIYnG0MP"
  2208. },
  2209. {
  2210. "__type__": "cc.PrefabInfo",
  2211. "root": {
  2212. "__id__": 1
  2213. },
  2214. "asset": {
  2215. "__id__": 0
  2216. },
  2217. "fileId": "b3UX77B55J5IQvY86JpsLh",
  2218. "instance": null,
  2219. "targetOverrides": null,
  2220. "nestedPrefabInstanceRoots": null
  2221. },
  2222. {
  2223. "__type__": "cc.Node",
  2224. "_name": "lable_03",
  2225. "_objFlags": 0,
  2226. "__editorExtras__": {},
  2227. "_parent": {
  2228. "__id__": 76
  2229. },
  2230. "_children": [],
  2231. "_active": true,
  2232. "_components": [
  2233. {
  2234. "__id__": 90
  2235. },
  2236. {
  2237. "__id__": 92
  2238. }
  2239. ],
  2240. "_prefab": {
  2241. "__id__": 94
  2242. },
  2243. "_lpos": {
  2244. "__type__": "cc.Vec3",
  2245. "x": 113.4228515625,
  2246. "y": 0,
  2247. "z": 0
  2248. },
  2249. "_lrot": {
  2250. "__type__": "cc.Quat",
  2251. "x": 0,
  2252. "y": 0,
  2253. "z": 0,
  2254. "w": 1
  2255. },
  2256. "_lscale": {
  2257. "__type__": "cc.Vec3",
  2258. "x": 1,
  2259. "y": 1,
  2260. "z": 1
  2261. },
  2262. "_mobility": 0,
  2263. "_layer": 33554432,
  2264. "_euler": {
  2265. "__type__": "cc.Vec3",
  2266. "x": 0,
  2267. "y": 0,
  2268. "z": 0
  2269. },
  2270. "_id": ""
  2271. },
  2272. {
  2273. "__type__": "cc.UITransform",
  2274. "_name": "",
  2275. "_objFlags": 0,
  2276. "__editorExtras__": {},
  2277. "node": {
  2278. "__id__": 89
  2279. },
  2280. "_enabled": true,
  2281. "__prefab": {
  2282. "__id__": 91
  2283. },
  2284. "_contentSize": {
  2285. "__type__": "cc.Size",
  2286. "width": 33.369140625,
  2287. "height": 37.8
  2288. },
  2289. "_anchorPoint": {
  2290. "__type__": "cc.Vec2",
  2291. "x": 0.5,
  2292. "y": 0.5
  2293. },
  2294. "_id": ""
  2295. },
  2296. {
  2297. "__type__": "cc.CompPrefabInfo",
  2298. "fileId": "b5LAs3l0pPiqUsaFREAj/j"
  2299. },
  2300. {
  2301. "__type__": "cc.Label",
  2302. "_name": "",
  2303. "_objFlags": 0,
  2304. "__editorExtras__": {},
  2305. "node": {
  2306. "__id__": 89
  2307. },
  2308. "_enabled": true,
  2309. "__prefab": {
  2310. "__id__": 93
  2311. },
  2312. "_customMaterial": null,
  2313. "_srcBlendFactor": 2,
  2314. "_dstBlendFactor": 4,
  2315. "_color": {
  2316. "__type__": "cc.Color",
  2317. "r": 255,
  2318. "g": 255,
  2319. "b": 255,
  2320. "a": 255
  2321. },
  2322. "_string": "x4",
  2323. "_horizontalAlign": 1,
  2324. "_verticalAlign": 1,
  2325. "_actualFontSize": 30,
  2326. "_fontSize": 30,
  2327. "_fontFamily": "Arial",
  2328. "_lineHeight": 30,
  2329. "_overflow": 0,
  2330. "_enableWrapText": true,
  2331. "_font": null,
  2332. "_isSystemFontUsed": true,
  2333. "_spacingX": 0,
  2334. "_isItalic": false,
  2335. "_isBold": true,
  2336. "_isUnderline": false,
  2337. "_underlineHeight": 2,
  2338. "_cacheMode": 0,
  2339. "_enableOutline": false,
  2340. "_outlineColor": {
  2341. "__type__": "cc.Color",
  2342. "r": 0,
  2343. "g": 0,
  2344. "b": 0,
  2345. "a": 255
  2346. },
  2347. "_outlineWidth": 2,
  2348. "_enableShadow": true,
  2349. "_shadowColor": {
  2350. "__type__": "cc.Color",
  2351. "r": 0,
  2352. "g": 0,
  2353. "b": 0,
  2354. "a": 255
  2355. },
  2356. "_shadowOffset": {
  2357. "__type__": "cc.Vec2",
  2358. "x": 2,
  2359. "y": 2
  2360. },
  2361. "_shadowBlur": 2,
  2362. "_id": ""
  2363. },
  2364. {
  2365. "__type__": "cc.CompPrefabInfo",
  2366. "fileId": "c0ttg2ds1Dq4eR/iNOysN/"
  2367. },
  2368. {
  2369. "__type__": "cc.PrefabInfo",
  2370. "root": {
  2371. "__id__": 1
  2372. },
  2373. "asset": {
  2374. "__id__": 0
  2375. },
  2376. "fileId": "daoH9XhxBCZ7TDbIZ4fvO2",
  2377. "instance": null,
  2378. "targetOverrides": null,
  2379. "nestedPrefabInstanceRoots": null
  2380. },
  2381. {
  2382. "__type__": "cc.Node",
  2383. "_name": "lable_04",
  2384. "_objFlags": 0,
  2385. "__editorExtras__": {},
  2386. "_parent": {
  2387. "__id__": 76
  2388. },
  2389. "_children": [],
  2390. "_active": true,
  2391. "_components": [
  2392. {
  2393. "__id__": 96
  2394. },
  2395. {
  2396. "__id__": 98
  2397. }
  2398. ],
  2399. "_prefab": {
  2400. "__id__": 100
  2401. },
  2402. "_lpos": {
  2403. "__type__": "cc.Vec3",
  2404. "x": 183.465,
  2405. "y": 0,
  2406. "z": 0
  2407. },
  2408. "_lrot": {
  2409. "__type__": "cc.Quat",
  2410. "x": 0,
  2411. "y": 0,
  2412. "z": 0,
  2413. "w": 1
  2414. },
  2415. "_lscale": {
  2416. "__type__": "cc.Vec3",
  2417. "x": 1,
  2418. "y": 1,
  2419. "z": 1
  2420. },
  2421. "_mobility": 0,
  2422. "_layer": 33554432,
  2423. "_euler": {
  2424. "__type__": "cc.Vec3",
  2425. "x": 0,
  2426. "y": 0,
  2427. "z": 0
  2428. },
  2429. "_id": ""
  2430. },
  2431. {
  2432. "__type__": "cc.UITransform",
  2433. "_name": "",
  2434. "_objFlags": 0,
  2435. "__editorExtras__": {},
  2436. "node": {
  2437. "__id__": 95
  2438. },
  2439. "_enabled": true,
  2440. "__prefab": {
  2441. "__id__": 97
  2442. },
  2443. "_contentSize": {
  2444. "__type__": "cc.Size",
  2445. "width": 33.369140625,
  2446. "height": 37.8
  2447. },
  2448. "_anchorPoint": {
  2449. "__type__": "cc.Vec2",
  2450. "x": 0.5,
  2451. "y": 0.5
  2452. },
  2453. "_id": ""
  2454. },
  2455. {
  2456. "__type__": "cc.CompPrefabInfo",
  2457. "fileId": "c7o3pgRY9JXodpWoGw5D85"
  2458. },
  2459. {
  2460. "__type__": "cc.Label",
  2461. "_name": "",
  2462. "_objFlags": 0,
  2463. "__editorExtras__": {},
  2464. "node": {
  2465. "__id__": 95
  2466. },
  2467. "_enabled": true,
  2468. "__prefab": {
  2469. "__id__": 99
  2470. },
  2471. "_customMaterial": null,
  2472. "_srcBlendFactor": 2,
  2473. "_dstBlendFactor": 4,
  2474. "_color": {
  2475. "__type__": "cc.Color",
  2476. "r": 255,
  2477. "g": 255,
  2478. "b": 255,
  2479. "a": 255
  2480. },
  2481. "_string": "x5",
  2482. "_horizontalAlign": 1,
  2483. "_verticalAlign": 1,
  2484. "_actualFontSize": 30,
  2485. "_fontSize": 30,
  2486. "_fontFamily": "Arial",
  2487. "_lineHeight": 30,
  2488. "_overflow": 0,
  2489. "_enableWrapText": true,
  2490. "_font": null,
  2491. "_isSystemFontUsed": true,
  2492. "_spacingX": 0,
  2493. "_isItalic": false,
  2494. "_isBold": true,
  2495. "_isUnderline": false,
  2496. "_underlineHeight": 2,
  2497. "_cacheMode": 0,
  2498. "_enableOutline": false,
  2499. "_outlineColor": {
  2500. "__type__": "cc.Color",
  2501. "r": 0,
  2502. "g": 0,
  2503. "b": 0,
  2504. "a": 255
  2505. },
  2506. "_outlineWidth": 2,
  2507. "_enableShadow": true,
  2508. "_shadowColor": {
  2509. "__type__": "cc.Color",
  2510. "r": 0,
  2511. "g": 0,
  2512. "b": 0,
  2513. "a": 255
  2514. },
  2515. "_shadowOffset": {
  2516. "__type__": "cc.Vec2",
  2517. "x": 2,
  2518. "y": 2
  2519. },
  2520. "_shadowBlur": 2,
  2521. "_id": ""
  2522. },
  2523. {
  2524. "__type__": "cc.CompPrefabInfo",
  2525. "fileId": "ecA8xvFdBOGLeoAbA5BjZK"
  2526. },
  2527. {
  2528. "__type__": "cc.PrefabInfo",
  2529. "root": {
  2530. "__id__": 1
  2531. },
  2532. "asset": {
  2533. "__id__": 0
  2534. },
  2535. "fileId": "eaqurEnkxFibCZkjTJH2nh",
  2536. "instance": null,
  2537. "targetOverrides": null,
  2538. "nestedPrefabInstanceRoots": null
  2539. },
  2540. {
  2541. "__type__": "cc.Node",
  2542. "_name": "lable_05",
  2543. "_objFlags": 0,
  2544. "__editorExtras__": {},
  2545. "_parent": {
  2546. "__id__": 76
  2547. },
  2548. "_children": [],
  2549. "_active": true,
  2550. "_components": [
  2551. {
  2552. "__id__": 102
  2553. },
  2554. {
  2555. "__id__": 104
  2556. }
  2557. ],
  2558. "_prefab": {
  2559. "__id__": 106
  2560. },
  2561. "_lpos": {
  2562. "__type__": "cc.Vec3",
  2563. "x": 256.811,
  2564. "y": 0,
  2565. "z": 0
  2566. },
  2567. "_lrot": {
  2568. "__type__": "cc.Quat",
  2569. "x": 0,
  2570. "y": 0,
  2571. "z": 0,
  2572. "w": 1
  2573. },
  2574. "_lscale": {
  2575. "__type__": "cc.Vec3",
  2576. "x": 1,
  2577. "y": 1,
  2578. "z": 1
  2579. },
  2580. "_mobility": 0,
  2581. "_layer": 33554432,
  2582. "_euler": {
  2583. "__type__": "cc.Vec3",
  2584. "x": 0,
  2585. "y": 0,
  2586. "z": 0
  2587. },
  2588. "_id": ""
  2589. },
  2590. {
  2591. "__type__": "cc.UITransform",
  2592. "_name": "",
  2593. "_objFlags": 0,
  2594. "__editorExtras__": {},
  2595. "node": {
  2596. "__id__": 101
  2597. },
  2598. "_enabled": true,
  2599. "__prefab": {
  2600. "__id__": 103
  2601. },
  2602. "_contentSize": {
  2603. "__type__": "cc.Size",
  2604. "width": 33.369140625,
  2605. "height": 37.8
  2606. },
  2607. "_anchorPoint": {
  2608. "__type__": "cc.Vec2",
  2609. "x": 0.5,
  2610. "y": 0.5
  2611. },
  2612. "_id": ""
  2613. },
  2614. {
  2615. "__type__": "cc.CompPrefabInfo",
  2616. "fileId": "92kjr9voFJL7/JKtVAvXas"
  2617. },
  2618. {
  2619. "__type__": "cc.Label",
  2620. "_name": "",
  2621. "_objFlags": 0,
  2622. "__editorExtras__": {},
  2623. "node": {
  2624. "__id__": 101
  2625. },
  2626. "_enabled": true,
  2627. "__prefab": {
  2628. "__id__": 105
  2629. },
  2630. "_customMaterial": null,
  2631. "_srcBlendFactor": 2,
  2632. "_dstBlendFactor": 4,
  2633. "_color": {
  2634. "__type__": "cc.Color",
  2635. "r": 255,
  2636. "g": 255,
  2637. "b": 255,
  2638. "a": 255
  2639. },
  2640. "_string": "x4",
  2641. "_horizontalAlign": 1,
  2642. "_verticalAlign": 1,
  2643. "_actualFontSize": 30,
  2644. "_fontSize": 30,
  2645. "_fontFamily": "Arial",
  2646. "_lineHeight": 30,
  2647. "_overflow": 0,
  2648. "_enableWrapText": true,
  2649. "_font": null,
  2650. "_isSystemFontUsed": true,
  2651. "_spacingX": 0,
  2652. "_isItalic": false,
  2653. "_isBold": true,
  2654. "_isUnderline": false,
  2655. "_underlineHeight": 2,
  2656. "_cacheMode": 0,
  2657. "_enableOutline": false,
  2658. "_outlineColor": {
  2659. "__type__": "cc.Color",
  2660. "r": 0,
  2661. "g": 0,
  2662. "b": 0,
  2663. "a": 255
  2664. },
  2665. "_outlineWidth": 2,
  2666. "_enableShadow": true,
  2667. "_shadowColor": {
  2668. "__type__": "cc.Color",
  2669. "r": 0,
  2670. "g": 0,
  2671. "b": 0,
  2672. "a": 255
  2673. },
  2674. "_shadowOffset": {
  2675. "__type__": "cc.Vec2",
  2676. "x": 2,
  2677. "y": 2
  2678. },
  2679. "_shadowBlur": 2,
  2680. "_id": ""
  2681. },
  2682. {
  2683. "__type__": "cc.CompPrefabInfo",
  2684. "fileId": "27Jbn3T2FFlJIuHVmhMjqi"
  2685. },
  2686. {
  2687. "__type__": "cc.PrefabInfo",
  2688. "root": {
  2689. "__id__": 1
  2690. },
  2691. "asset": {
  2692. "__id__": 0
  2693. },
  2694. "fileId": "95rlA0wg9HxILNbVmG1IGc",
  2695. "instance": null,
  2696. "targetOverrides": null,
  2697. "nestedPrefabInstanceRoots": null
  2698. },
  2699. {
  2700. "__type__": "cc.Node",
  2701. "_name": "lable_06",
  2702. "_objFlags": 0,
  2703. "__editorExtras__": {},
  2704. "_parent": {
  2705. "__id__": 76
  2706. },
  2707. "_children": [],
  2708. "_active": true,
  2709. "_components": [
  2710. {
  2711. "__id__": 108
  2712. },
  2713. {
  2714. "__id__": 110
  2715. }
  2716. ],
  2717. "_prefab": {
  2718. "__id__": 112
  2719. },
  2720. "_lpos": {
  2721. "__type__": "cc.Vec3",
  2722. "x": 322.591,
  2723. "y": 0,
  2724. "z": 0
  2725. },
  2726. "_lrot": {
  2727. "__type__": "cc.Quat",
  2728. "x": 0,
  2729. "y": 0,
  2730. "z": 0,
  2731. "w": 1
  2732. },
  2733. "_lscale": {
  2734. "__type__": "cc.Vec3",
  2735. "x": 1,
  2736. "y": 1,
  2737. "z": 1
  2738. },
  2739. "_mobility": 0,
  2740. "_layer": 33554432,
  2741. "_euler": {
  2742. "__type__": "cc.Vec3",
  2743. "x": 0,
  2744. "y": 0,
  2745. "z": 0
  2746. },
  2747. "_id": ""
  2748. },
  2749. {
  2750. "__type__": "cc.UITransform",
  2751. "_name": "",
  2752. "_objFlags": 0,
  2753. "__editorExtras__": {},
  2754. "node": {
  2755. "__id__": 107
  2756. },
  2757. "_enabled": true,
  2758. "__prefab": {
  2759. "__id__": 109
  2760. },
  2761. "_contentSize": {
  2762. "__type__": "cc.Size",
  2763. "width": 33.369140625,
  2764. "height": 37.8
  2765. },
  2766. "_anchorPoint": {
  2767. "__type__": "cc.Vec2",
  2768. "x": 0.5,
  2769. "y": 0.5
  2770. },
  2771. "_id": ""
  2772. },
  2773. {
  2774. "__type__": "cc.CompPrefabInfo",
  2775. "fileId": "abxXFjelVMsYHzxuRGpCfV"
  2776. },
  2777. {
  2778. "__type__": "cc.Label",
  2779. "_name": "",
  2780. "_objFlags": 0,
  2781. "__editorExtras__": {},
  2782. "node": {
  2783. "__id__": 107
  2784. },
  2785. "_enabled": true,
  2786. "__prefab": {
  2787. "__id__": 111
  2788. },
  2789. "_customMaterial": null,
  2790. "_srcBlendFactor": 2,
  2791. "_dstBlendFactor": 4,
  2792. "_color": {
  2793. "__type__": "cc.Color",
  2794. "r": 255,
  2795. "g": 255,
  2796. "b": 255,
  2797. "a": 255
  2798. },
  2799. "_string": "x3",
  2800. "_horizontalAlign": 1,
  2801. "_verticalAlign": 1,
  2802. "_actualFontSize": 30,
  2803. "_fontSize": 30,
  2804. "_fontFamily": "Arial",
  2805. "_lineHeight": 30,
  2806. "_overflow": 0,
  2807. "_enableWrapText": true,
  2808. "_font": null,
  2809. "_isSystemFontUsed": true,
  2810. "_spacingX": 0,
  2811. "_isItalic": false,
  2812. "_isBold": true,
  2813. "_isUnderline": false,
  2814. "_underlineHeight": 2,
  2815. "_cacheMode": 0,
  2816. "_enableOutline": false,
  2817. "_outlineColor": {
  2818. "__type__": "cc.Color",
  2819. "r": 0,
  2820. "g": 0,
  2821. "b": 0,
  2822. "a": 255
  2823. },
  2824. "_outlineWidth": 2,
  2825. "_enableShadow": true,
  2826. "_shadowColor": {
  2827. "__type__": "cc.Color",
  2828. "r": 0,
  2829. "g": 0,
  2830. "b": 0,
  2831. "a": 255
  2832. },
  2833. "_shadowOffset": {
  2834. "__type__": "cc.Vec2",
  2835. "x": 2,
  2836. "y": 2
  2837. },
  2838. "_shadowBlur": 2,
  2839. "_id": ""
  2840. },
  2841. {
  2842. "__type__": "cc.CompPrefabInfo",
  2843. "fileId": "35HIHqlNpL9JBFs2RpvVm0"
  2844. },
  2845. {
  2846. "__type__": "cc.PrefabInfo",
  2847. "root": {
  2848. "__id__": 1
  2849. },
  2850. "asset": {
  2851. "__id__": 0
  2852. },
  2853. "fileId": "a7/KpMA3pOpIZlESzTIYv7",
  2854. "instance": null,
  2855. "targetOverrides": null,
  2856. "nestedPrefabInstanceRoots": null
  2857. },
  2858. {
  2859. "__type__": "cc.Node",
  2860. "_name": "lable_07",
  2861. "_objFlags": 0,
  2862. "__editorExtras__": {},
  2863. "_parent": {
  2864. "__id__": 76
  2865. },
  2866. "_children": [],
  2867. "_active": true,
  2868. "_components": [
  2869. {
  2870. "__id__": 114
  2871. },
  2872. {
  2873. "__id__": 116
  2874. }
  2875. ],
  2876. "_prefab": {
  2877. "__id__": 118
  2878. },
  2879. "_lpos": {
  2880. "__type__": "cc.Vec3",
  2881. "x": 383.016,
  2882. "y": 0,
  2883. "z": 0
  2884. },
  2885. "_lrot": {
  2886. "__type__": "cc.Quat",
  2887. "x": 0,
  2888. "y": 0,
  2889. "z": 0,
  2890. "w": 1
  2891. },
  2892. "_lscale": {
  2893. "__type__": "cc.Vec3",
  2894. "x": 1,
  2895. "y": 1,
  2896. "z": 1
  2897. },
  2898. "_mobility": 0,
  2899. "_layer": 33554432,
  2900. "_euler": {
  2901. "__type__": "cc.Vec3",
  2902. "x": 0,
  2903. "y": 0,
  2904. "z": 0
  2905. },
  2906. "_id": ""
  2907. },
  2908. {
  2909. "__type__": "cc.UITransform",
  2910. "_name": "",
  2911. "_objFlags": 0,
  2912. "__editorExtras__": {},
  2913. "node": {
  2914. "__id__": 113
  2915. },
  2916. "_enabled": true,
  2917. "__prefab": {
  2918. "__id__": 115
  2919. },
  2920. "_contentSize": {
  2921. "__type__": "cc.Size",
  2922. "width": 33.369140625,
  2923. "height": 37.8
  2924. },
  2925. "_anchorPoint": {
  2926. "__type__": "cc.Vec2",
  2927. "x": 0.5,
  2928. "y": 0.5
  2929. },
  2930. "_id": ""
  2931. },
  2932. {
  2933. "__type__": "cc.CompPrefabInfo",
  2934. "fileId": "6ad9xbr6FDV4MOJV+IjyFv"
  2935. },
  2936. {
  2937. "__type__": "cc.Label",
  2938. "_name": "",
  2939. "_objFlags": 0,
  2940. "__editorExtras__": {},
  2941. "node": {
  2942. "__id__": 113
  2943. },
  2944. "_enabled": true,
  2945. "__prefab": {
  2946. "__id__": 117
  2947. },
  2948. "_customMaterial": null,
  2949. "_srcBlendFactor": 2,
  2950. "_dstBlendFactor": 4,
  2951. "_color": {
  2952. "__type__": "cc.Color",
  2953. "r": 255,
  2954. "g": 255,
  2955. "b": 255,
  2956. "a": 255
  2957. },
  2958. "_string": "x2",
  2959. "_horizontalAlign": 1,
  2960. "_verticalAlign": 1,
  2961. "_actualFontSize": 30,
  2962. "_fontSize": 30,
  2963. "_fontFamily": "Arial",
  2964. "_lineHeight": 30,
  2965. "_overflow": 0,
  2966. "_enableWrapText": true,
  2967. "_font": null,
  2968. "_isSystemFontUsed": true,
  2969. "_spacingX": 0,
  2970. "_isItalic": false,
  2971. "_isBold": true,
  2972. "_isUnderline": false,
  2973. "_underlineHeight": 2,
  2974. "_cacheMode": 0,
  2975. "_enableOutline": false,
  2976. "_outlineColor": {
  2977. "__type__": "cc.Color",
  2978. "r": 0,
  2979. "g": 0,
  2980. "b": 0,
  2981. "a": 255
  2982. },
  2983. "_outlineWidth": 2,
  2984. "_enableShadow": true,
  2985. "_shadowColor": {
  2986. "__type__": "cc.Color",
  2987. "r": 0,
  2988. "g": 0,
  2989. "b": 0,
  2990. "a": 255
  2991. },
  2992. "_shadowOffset": {
  2993. "__type__": "cc.Vec2",
  2994. "x": 2,
  2995. "y": 2
  2996. },
  2997. "_shadowBlur": 2,
  2998. "_id": ""
  2999. },
  3000. {
  3001. "__type__": "cc.CompPrefabInfo",
  3002. "fileId": "8elgoEPd5PaJ6KNG3KSKoN"
  3003. },
  3004. {
  3005. "__type__": "cc.PrefabInfo",
  3006. "root": {
  3007. "__id__": 1
  3008. },
  3009. "asset": {
  3010. "__id__": 0
  3011. },
  3012. "fileId": "4beoQ65EZOM6nAqiJ4+K2d",
  3013. "instance": null,
  3014. "targetOverrides": null,
  3015. "nestedPrefabInstanceRoots": null
  3016. },
  3017. {
  3018. "__type__": "cc.UITransform",
  3019. "_name": "",
  3020. "_objFlags": 0,
  3021. "__editorExtras__": {},
  3022. "node": {
  3023. "__id__": 76
  3024. },
  3025. "_enabled": true,
  3026. "__prefab": {
  3027. "__id__": 120
  3028. },
  3029. "_contentSize": {
  3030. "__type__": "cc.Size",
  3031. "width": 323.583984375,
  3032. "height": 40
  3033. },
  3034. "_anchorPoint": {
  3035. "__type__": "cc.Vec2",
  3036. "x": 0,
  3037. "y": 0.5
  3038. },
  3039. "_id": ""
  3040. },
  3041. {
  3042. "__type__": "cc.CompPrefabInfo",
  3043. "fileId": "e61zrJvelGKpb9Gu39riBH"
  3044. },
  3045. {
  3046. "__type__": "cc.Layout",
  3047. "_name": "",
  3048. "_objFlags": 0,
  3049. "__editorExtras__": {},
  3050. "node": {
  3051. "__id__": 76
  3052. },
  3053. "_enabled": false,
  3054. "__prefab": {
  3055. "__id__": 122
  3056. },
  3057. "_resizeMode": 1,
  3058. "_layoutType": 1,
  3059. "_cellSize": {
  3060. "__type__": "cc.Size",
  3061. "width": 40,
  3062. "height": 40
  3063. },
  3064. "_startAxis": 0,
  3065. "_paddingLeft": 0,
  3066. "_paddingRight": 0,
  3067. "_paddingTop": 0,
  3068. "_paddingBottom": 0,
  3069. "_spacingX": 15,
  3070. "_spacingY": 0,
  3071. "_verticalDirection": 1,
  3072. "_horizontalDirection": 0,
  3073. "_constraint": 0,
  3074. "_constraintNum": 2,
  3075. "_affectedByScale": false,
  3076. "_isAlign": false,
  3077. "_id": ""
  3078. },
  3079. {
  3080. "__type__": "cc.CompPrefabInfo",
  3081. "fileId": "a9yF52Uq5CEbB4qc+kh3MA"
  3082. },
  3083. {
  3084. "__type__": "cc.PrefabInfo",
  3085. "root": {
  3086. "__id__": 1
  3087. },
  3088. "asset": {
  3089. "__id__": 0
  3090. },
  3091. "fileId": "f76rwNBuhCSJn7pS14qh4k",
  3092. "instance": null,
  3093. "targetOverrides": null,
  3094. "nestedPrefabInstanceRoots": null
  3095. },
  3096. {
  3097. "__type__": "cc.Node",
  3098. "_name": "star-gamification-indicator",
  3099. "_objFlags": 0,
  3100. "__editorExtras__": {},
  3101. "_parent": {
  3102. "__id__": 75
  3103. },
  3104. "_children": [],
  3105. "_active": true,
  3106. "_components": [
  3107. {
  3108. "__id__": 125
  3109. },
  3110. {
  3111. "__id__": 127
  3112. }
  3113. ],
  3114. "_prefab": {
  3115. "__id__": 129
  3116. },
  3117. "_lpos": {
  3118. "__type__": "cc.Vec3",
  3119. "x": 194.078,
  3120. "y": -33.763,
  3121. "z": 0
  3122. },
  3123. "_lrot": {
  3124. "__type__": "cc.Quat",
  3125. "x": 0,
  3126. "y": 0,
  3127. "z": 0,
  3128. "w": 1
  3129. },
  3130. "_lscale": {
  3131. "__type__": "cc.Vec3",
  3132. "x": 1,
  3133. "y": 1,
  3134. "z": 1
  3135. },
  3136. "_mobility": 0,
  3137. "_layer": 33554432,
  3138. "_euler": {
  3139. "__type__": "cc.Vec3",
  3140. "x": 0,
  3141. "y": 0,
  3142. "z": 0
  3143. },
  3144. "_id": ""
  3145. },
  3146. {
  3147. "__type__": "cc.UITransform",
  3148. "_name": "",
  3149. "_objFlags": 0,
  3150. "__editorExtras__": {},
  3151. "node": {
  3152. "__id__": 124
  3153. },
  3154. "_enabled": true,
  3155. "__prefab": {
  3156. "__id__": 126
  3157. },
  3158. "_contentSize": {
  3159. "__type__": "cc.Size",
  3160. "width": 42,
  3161. "height": 33
  3162. },
  3163. "_anchorPoint": {
  3164. "__type__": "cc.Vec2",
  3165. "x": 0.5,
  3166. "y": 0.5
  3167. },
  3168. "_id": ""
  3169. },
  3170. {
  3171. "__type__": "cc.CompPrefabInfo",
  3172. "fileId": "74tMzAT7ZPwJ16J7beqWUt"
  3173. },
  3174. {
  3175. "__type__": "cc.Sprite",
  3176. "_name": "",
  3177. "_objFlags": 0,
  3178. "__editorExtras__": {},
  3179. "node": {
  3180. "__id__": 124
  3181. },
  3182. "_enabled": true,
  3183. "__prefab": {
  3184. "__id__": 128
  3185. },
  3186. "_customMaterial": null,
  3187. "_srcBlendFactor": 2,
  3188. "_dstBlendFactor": 4,
  3189. "_color": {
  3190. "__type__": "cc.Color",
  3191. "r": 255,
  3192. "g": 255,
  3193. "b": 255,
  3194. "a": 255
  3195. },
  3196. "_spriteFrame": {
  3197. "__uuid__": "5ea36b80-8b57-4e3b-8dec-cd3fb7d27b6d@f9941",
  3198. "__expectedType__": "cc.SpriteFrame"
  3199. },
  3200. "_type": 0,
  3201. "_fillType": 0,
  3202. "_sizeMode": 1,
  3203. "_fillCenter": {
  3204. "__type__": "cc.Vec2",
  3205. "x": 0,
  3206. "y": 0
  3207. },
  3208. "_fillStart": 0,
  3209. "_fillRange": 0,
  3210. "_isTrimmedMode": true,
  3211. "_useGrayscale": false,
  3212. "_atlas": null,
  3213. "_id": ""
  3214. },
  3215. {
  3216. "__type__": "cc.CompPrefabInfo",
  3217. "fileId": "bbpjz1Xh9MPoau5y0jLLAX"
  3218. },
  3219. {
  3220. "__type__": "cc.PrefabInfo",
  3221. "root": {
  3222. "__id__": 1
  3223. },
  3224. "asset": {
  3225. "__id__": 0
  3226. },
  3227. "fileId": "c7g9irmQZH3p/Vw3bkG2Xy",
  3228. "instance": null,
  3229. "targetOverrides": null,
  3230. "nestedPrefabInstanceRoots": null
  3231. },
  3232. {
  3233. "__type__": "cc.UITransform",
  3234. "_name": "",
  3235. "_objFlags": 0,
  3236. "__editorExtras__": {},
  3237. "node": {
  3238. "__id__": 75
  3239. },
  3240. "_enabled": true,
  3241. "__prefab": {
  3242. "__id__": 131
  3243. },
  3244. "_contentSize": {
  3245. "__type__": "cc.Size",
  3246. "width": 473,
  3247. "height": 68
  3248. },
  3249. "_anchorPoint": {
  3250. "__type__": "cc.Vec2",
  3251. "x": 0.5,
  3252. "y": 0.5
  3253. },
  3254. "_id": ""
  3255. },
  3256. {
  3257. "__type__": "cc.CompPrefabInfo",
  3258. "fileId": "21aTKepmxH3YOBQ2nSkJOd"
  3259. },
  3260. {
  3261. "__type__": "cc.Sprite",
  3262. "_name": "",
  3263. "_objFlags": 0,
  3264. "__editorExtras__": {},
  3265. "node": {
  3266. "__id__": 75
  3267. },
  3268. "_enabled": true,
  3269. "__prefab": {
  3270. "__id__": 133
  3271. },
  3272. "_customMaterial": null,
  3273. "_srcBlendFactor": 2,
  3274. "_dstBlendFactor": 4,
  3275. "_color": {
  3276. "__type__": "cc.Color",
  3277. "r": 255,
  3278. "g": 255,
  3279. "b": 255,
  3280. "a": 255
  3281. },
  3282. "_spriteFrame": {
  3283. "__uuid__": "d0311ddf-da6c-43c6-a3d3-e5b6a3b2861e@f9941",
  3284. "__expectedType__": "cc.SpriteFrame"
  3285. },
  3286. "_type": 0,
  3287. "_fillType": 0,
  3288. "_sizeMode": 1,
  3289. "_fillCenter": {
  3290. "__type__": "cc.Vec2",
  3291. "x": 0,
  3292. "y": 0
  3293. },
  3294. "_fillStart": 0,
  3295. "_fillRange": 0,
  3296. "_isTrimmedMode": true,
  3297. "_useGrayscale": false,
  3298. "_atlas": null,
  3299. "_id": ""
  3300. },
  3301. {
  3302. "__type__": "cc.CompPrefabInfo",
  3303. "fileId": "4bCPxYoplIkrw4A42xWlU8"
  3304. },
  3305. {
  3306. "__type__": "cc.PrefabInfo",
  3307. "root": {
  3308. "__id__": 1
  3309. },
  3310. "asset": {
  3311. "__id__": 0
  3312. },
  3313. "fileId": "e4pXczqPpHoLY6MNmgtNBC",
  3314. "instance": null,
  3315. "targetOverrides": null,
  3316. "nestedPrefabInstanceRoots": null
  3317. },
  3318. {
  3319. "__type__": "cc.UITransform",
  3320. "_name": "",
  3321. "_objFlags": 0,
  3322. "__editorExtras__": {},
  3323. "node": {
  3324. "__id__": 12
  3325. },
  3326. "_enabled": true,
  3327. "__prefab": {
  3328. "__id__": 136
  3329. },
  3330. "_contentSize": {
  3331. "__type__": "cc.Size",
  3332. "width": 684,
  3333. "height": 717
  3334. },
  3335. "_anchorPoint": {
  3336. "__type__": "cc.Vec2",
  3337. "x": 0.5,
  3338. "y": 0.5
  3339. },
  3340. "_id": ""
  3341. },
  3342. {
  3343. "__type__": "cc.CompPrefabInfo",
  3344. "fileId": "b4zTsch69OKpbhclZO3jyf"
  3345. },
  3346. {
  3347. "__type__": "cc.Sprite",
  3348. "_name": "",
  3349. "_objFlags": 0,
  3350. "__editorExtras__": {},
  3351. "node": {
  3352. "__id__": 12
  3353. },
  3354. "_enabled": true,
  3355. "__prefab": {
  3356. "__id__": 138
  3357. },
  3358. "_customMaterial": null,
  3359. "_srcBlendFactor": 2,
  3360. "_dstBlendFactor": 4,
  3361. "_color": {
  3362. "__type__": "cc.Color",
  3363. "r": 255,
  3364. "g": 255,
  3365. "b": 255,
  3366. "a": 255
  3367. },
  3368. "_spriteFrame": {
  3369. "__uuid__": "12689024-04d9-4c41-abe8-9668ebdd55a8@f9941",
  3370. "__expectedType__": "cc.SpriteFrame"
  3371. },
  3372. "_type": 0,
  3373. "_fillType": 0,
  3374. "_sizeMode": 1,
  3375. "_fillCenter": {
  3376. "__type__": "cc.Vec2",
  3377. "x": 0,
  3378. "y": 0
  3379. },
  3380. "_fillStart": 0,
  3381. "_fillRange": 0,
  3382. "_isTrimmedMode": true,
  3383. "_useGrayscale": false,
  3384. "_atlas": null,
  3385. "_id": ""
  3386. },
  3387. {
  3388. "__type__": "cc.CompPrefabInfo",
  3389. "fileId": "fbQy4QcctDp5ZTvfQTBEvL"
  3390. },
  3391. {
  3392. "__type__": "cc.PrefabInfo",
  3393. "root": {
  3394. "__id__": 1
  3395. },
  3396. "asset": {
  3397. "__id__": 0
  3398. },
  3399. "fileId": "1bnJaSMVBPhZGAeBxw0ItL",
  3400. "instance": null,
  3401. "targetOverrides": null,
  3402. "nestedPrefabInstanceRoots": null
  3403. },
  3404. {
  3405. "__type__": "cc.UITransform",
  3406. "_name": "",
  3407. "_objFlags": 0,
  3408. "__editorExtras__": {},
  3409. "node": {
  3410. "__id__": 1
  3411. },
  3412. "_enabled": true,
  3413. "__prefab": {
  3414. "__id__": 141
  3415. },
  3416. "_contentSize": {
  3417. "__type__": "cc.Size",
  3418. "width": 750,
  3419. "height": 1334
  3420. },
  3421. "_anchorPoint": {
  3422. "__type__": "cc.Vec2",
  3423. "x": 0.5,
  3424. "y": 0.5
  3425. },
  3426. "_id": ""
  3427. },
  3428. {
  3429. "__type__": "cc.CompPrefabInfo",
  3430. "fileId": "4dhLIF97JC7aNPOfJBLKiR"
  3431. },
  3432. {
  3433. "__type__": "7afe5oq/n9DwrKNNlUUERm9",
  3434. "_name": "",
  3435. "_objFlags": 0,
  3436. "__editorExtras__": {},
  3437. "node": {
  3438. "__id__": 1
  3439. },
  3440. "_enabled": true,
  3441. "__prefab": {
  3442. "__id__": 143
  3443. },
  3444. "_id": ""
  3445. },
  3446. {
  3447. "__type__": "cc.CompPrefabInfo",
  3448. "fileId": "c0obiHjo5Hyaq4AJ+pbf6x"
  3449. },
  3450. {
  3451. "__type__": "a0a725EHOZPgLLfmAclucbA",
  3452. "_name": "",
  3453. "_objFlags": 0,
  3454. "__editorExtras__": {},
  3455. "node": {
  3456. "__id__": 1
  3457. },
  3458. "_enabled": true,
  3459. "__prefab": {
  3460. "__id__": 145
  3461. },
  3462. "_id": ""
  3463. },
  3464. {
  3465. "__type__": "cc.CompPrefabInfo",
  3466. "fileId": "9f1t5m2KJKkqspYbqB+L/m"
  3467. },
  3468. {
  3469. "__type__": "cc.Widget",
  3470. "_name": "",
  3471. "_objFlags": 0,
  3472. "__editorExtras__": {},
  3473. "node": {
  3474. "__id__": 1
  3475. },
  3476. "_enabled": true,
  3477. "__prefab": {
  3478. "__id__": 147
  3479. },
  3480. "_alignFlags": 45,
  3481. "_target": null,
  3482. "_left": 0,
  3483. "_right": 0,
  3484. "_top": 0,
  3485. "_bottom": 0,
  3486. "_horizontalCenter": 0,
  3487. "_verticalCenter": 0,
  3488. "_isAbsLeft": true,
  3489. "_isAbsRight": true,
  3490. "_isAbsTop": true,
  3491. "_isAbsBottom": true,
  3492. "_isAbsHorizontalCenter": true,
  3493. "_isAbsVerticalCenter": true,
  3494. "_originalWidth": 750,
  3495. "_originalHeight": 1334,
  3496. "_alignMode": 1,
  3497. "_lockFlags": 0,
  3498. "_id": ""
  3499. },
  3500. {
  3501. "__type__": "cc.CompPrefabInfo",
  3502. "fileId": "feO6lYHk5PvJqxvP7tlaXx"
  3503. },
  3504. {
  3505. "__type__": "cc.PrefabInfo",
  3506. "root": {
  3507. "__id__": 1
  3508. },
  3509. "asset": {
  3510. "__id__": 0
  3511. },
  3512. "fileId": "aceafpKZ9Nm5sJ6hf2IJKC",
  3513. "instance": null,
  3514. "targetOverrides": null
  3515. }
  3516. ]