eliminate.prefab 67 KB

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