Advertisement
dermetfan

uiskin.json

Mar 5th, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. {
  2. com.badlogic.gdx.graphics.g2d.BitmapFont: { default-font: { file: font/default.fnt } },
  3. com.badlogic.gdx.graphics.Color: {
  4. green: { a: 1, b: 0, g: 1, r: 0 },
  5. white: { a: 1, b: 1, g: 1, r: 1 },
  6. red: { a: 1, b: 0, g: 0, r: 1 },
  7. black: { a: 1, b: 0, g: 0, r: 0 }
  8. },
  9. com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: {
  10. dialogDim: { name: white, color: { r: 0, g: 0, b: 0, a: 0.45 } }
  11. },
  12. com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: {
  13. default: { down: default-round-down, up: default-round },
  14. toggle: { down: default-round-down, checked: default-round-down, up: default-round }
  15. },
  16. com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: {
  17. default: { down: default-round-down, up: default-round, font: default-font, fontColor: white },
  18. default-textButton: { down: default-round-down, up: default-round, font: default-font, fontColor: white },
  19. toggle: { down: default-round-down, up: default-round, checked: default-round-down, font: default-font, fontColor: white, downFontColor: red }
  20. },
  21. com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: {
  22. default: { vScroll: default-scroll, hScrollKnob: default-round-large, background: default-rect, hScroll: default-scroll, vScrollKnob: default-round-large }
  23. },
  24. com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: {
  25. default: {
  26. font: default-font, fontColor: white, background: default-select,
  27. scrollStyle: default,
  28. listStyle: { font: default-font, selection: default-select-selection }
  29. }
  30. },
  31. com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: {
  32. default-vertical: { handle: default-splitpane-vertical },
  33. default-horizontal: { handle: default-splitpane }
  34. },
  35. com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: {
  36. default: { titleFont: default-font, background: default-window, titleFontColor: white },
  37. dialog: { titleFont: default-font, background: default-window, titleFontColor: white, stageBackground: dialogDim }
  38. },
  39. com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: {
  40. default-horizontal: { background: default-slider, knob: default-slider-knob }
  41. },
  42. com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: {
  43. default: { font: default-font, fontColor: white }
  44. },
  45. com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: {
  46. default: { selection: selection, background: textfield, font: default-font, fontColor: white, cursor: cursor }
  47. },
  48. com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: {
  49. default: { checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white }
  50. },
  51. com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: {
  52. default: { fontColorUnselected: white, selection: default-rect-pad, fontColorSelected: white, font: default-font }
  53. },
  54. com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: {
  55. default: { background: default-pane, knob: default-round-large }
  56. },
  57. com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: {
  58. default: { minus: tree-minus, plus: tree-plus, selection: default-select-selection }
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement