DrawStarLayer.prefab 61 KB

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