welfareOne.prefab 67 KB

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