diff --git a/gradle.properties b/gradle.properties index 6fff4bf..e6f4d32 100644 --- a/gradle.properties +++ b/gradle.properties @@ -4,7 +4,7 @@ org.gradle.parallel=true org.gradle.caching=false # Project Info -version=1.7.2 +version=1.8.0 group=net.pietru id=omni_power diff --git a/src/main/java/net/pietru/omni_power/OmniPower.java b/src/main/java/net/pietru/omni_power/OmniPower.java index c7fa464..a2aaed5 100644 --- a/src/main/java/net/pietru/omni_power/OmniPower.java +++ b/src/main/java/net/pietru/omni_power/OmniPower.java @@ -1,21 +1,22 @@ package net.pietru.omni_power; import com.badlogic.gdx.Gdx; +import com.badlogic.gdx.utils.Json; +import com.badlogic.gdx.utils.JsonValue; import finalforeach.cosmicreach.GameAssetLoader; import finalforeach.cosmicreach.blockevents.BlockEvents; import finalforeach.cosmicreach.blocks.Block; +import finalforeach.cosmicreach.items.ItemThing; import net.pietru.omni_power.blockevents.Power; import dev.crmodders.cosmicquilt.api.entrypoint.ModInitializer; +import net.pietru.omni_power.blocks.CustomUIBlockEntity; import org.quiltmc.loader.api.ModContainer; import java.io.*; import java.nio.file.DirectoryStream; import java.nio.file.Files; import java.nio.file.Path; -import java.util.ArrayList; -import java.util.Collection; -import java.util.Enumeration; -import java.util.List; +import java.util.*; import java.util.regex.Pattern; import java.util.zip.ZipEntry; import java.util.zip.ZipException; @@ -29,8 +30,11 @@ public class OmniPower implements ModInitializer { "lever", "door_cube", "cable_merger", - "cable_adapter" + "cable_adapter", + "custom_crate" }; + + public static Map uis = new HashMap<>(); @Override public void onInitialize(ModContainer mod) { //if (QuiltLoader.isModLoaded("becraft")) @@ -48,6 +52,10 @@ public class OmniPower implements ModInitializer { System.out.println("Registered OmniPower Events"); + CustomUIBlockEntity.registerBlockEntityCreator(); + + System.out.println("Registered OmniPower Entities"); + for (String block:blocks) { System.out.println(block); try { @@ -58,6 +66,9 @@ public class OmniPower implements ModInitializer { } System.out.println("Registered OmniPower Blocks"); + + load_custom_ui("omni_power:gui/example.json"); + load_custom_ui("omni_power:gui/example2.json"); } public static void load_power_event(){ @@ -68,5 +79,18 @@ public class OmniPower implements ModInitializer { System.out.println("If msg above says something Duplicate block event action key it might be intended behaviour..."); } } + + public static void load_custom_ui(final String path){ + JsonValue loadJson = GameAssetLoader.loadJson(path); + if (loadJson==null) + throw new RuntimeException("Error parsing ui: " + path); + String id = loadJson.getString("id"); + if (id==null || id.isEmpty()) + throw new RuntimeException("Invalid UI ID: " + path); + JsonValue layout = loadJson.get("layout"); + if (layout==null || !layout.isArray()) + throw new RuntimeException("Error parsing ui layout: " + path); + uis.put(id, loadJson); + } } diff --git a/src/main/java/net/pietru/omni_power/blocks/CustomUIBlockEntity.java b/src/main/java/net/pietru/omni_power/blocks/CustomUIBlockEntity.java new file mode 100644 index 0000000..bfd80e6 --- /dev/null +++ b/src/main/java/net/pietru/omni_power/blocks/CustomUIBlockEntity.java @@ -0,0 +1,42 @@ +package net.pietru.omni_power.blocks; + +import finalforeach.cosmicreach.GameSingletons; +import finalforeach.cosmicreach.blockentities.BlockEntityCreator; +import finalforeach.cosmicreach.blockentities.BlockEntityItemContainer; +import finalforeach.cosmicreach.blocks.Block; +import finalforeach.cosmicreach.entities.player.Player; +import finalforeach.cosmicreach.items.containers.SlotContainer; +import finalforeach.cosmicreach.world.Zone; +import net.pietru.omni_power.ui.CustomScreen; + +import static net.pietru.omni_power.OmniPower.MOD_ID; + +public class CustomUIBlockEntity extends BlockEntityItemContainer { + + public final String ui_id; + public CustomUIBlockEntity(Zone zone, int globalX, int globalY, int globalZ, SlotContainer slotContainer, String gui_id) { + super(zone, globalX, globalY, globalZ, slotContainer); + this.ui_id=gui_id; + } + + @Override + public void onInteract(Player player, Zone zone) { + CustomScreen.addOpenContainer(this,slotContainer); + } + + @Override + public String getBlockEntityId() { + return MOD_ID+":CustomUIBlockEntity"; + } + + public static void registerBlockEntityCreator() { + BlockEntityCreator.registerBlockEntityCreator(MOD_ID+":CustomUIBlockEntity", (blockState, zone, x, y, z) -> { + Block block = blockState.getBlock(); + int numSlots = getBlockEntityParamInt(block, "numSlots", 1); + String ui_id = getBlockEntityParamString(block, "gui"); + SlotContainer slotContainer = new SlotContainer(numSlots); + return new CustomUIBlockEntity(zone, x, y, z, slotContainer, ui_id); + }); + } + +} diff --git a/src/main/java/net/pietru/omni_power/ui/CustomScreen.java b/src/main/java/net/pietru/omni_power/ui/CustomScreen.java new file mode 100644 index 0000000..9d1bd1b --- /dev/null +++ b/src/main/java/net/pietru/omni_power/ui/CustomScreen.java @@ -0,0 +1,165 @@ +package net.pietru.omni_power.ui; + +import com.badlogic.gdx.scenes.scene2d.Action; +import com.badlogic.gdx.scenes.scene2d.Actor; +import com.badlogic.gdx.scenes.scene2d.ui.*; +import com.badlogic.gdx.scenes.scene2d.utils.NinePatchDrawable; +import com.badlogic.gdx.utils.JsonValue; +import finalforeach.cosmicreach.GameAssetLoader; +import finalforeach.cosmicreach.gamestates.InGame; +import finalforeach.cosmicreach.items.ItemSlot; +import finalforeach.cosmicreach.items.containers.SlotContainer; +import finalforeach.cosmicreach.items.screens.BaseItemScreen; +import finalforeach.cosmicreach.ui.UI; +import finalforeach.cosmicreach.ui.widgets.ItemSlotWidget; +import net.pietru.omni_power.OmniPower; +import net.pietru.omni_power.blocks.CustomUIBlockEntity; + +import java.util.Iterator; + +import static net.pietru.omni_power.OmniPower.MOD_ID; + +public class CustomScreen extends BaseItemScreen { + public static Skin skin = new Skin(GameAssetLoader.loadAsset(MOD_ID+":gdx-skins/default/skin/uiskin.json")); + //vis/skin/x1/uiskin.json + + SlotContainer container; + CustomUIBlockEntity blockEntity; + + public CustomScreen(final CustomUIBlockEntity be, final String ui_id) { + + if (!OmniPower.uis.containsKey(ui_id)) { + System.out.println("Omni Power [ERROR] Tried accessing/opening non existent ui data."); + return; + } + + JsonValue dataJson = OmniPower.uis.get(ui_id); + JsonValue ui_layout = dataJson.get("layout"); + + container = be.slotContainer; + blockEntity = be; + + Stack stack = new Stack(); + Actor background = new Image(UI.container9Patch); + + this.slotWidgets = new ItemSlotWidget[container.getNumSlots()]; + + Table table = new Table(); + build_ui(ui_layout,table,this); + + for (int i = 0; i iter = layout.iterator(); + while (iter.hasNext()){ + JsonValue data = iter.next(); + String type = data.getString("type",""); + if (type.isEmpty()) + continue; + switch (type.toLowerCase()) { + case "row": + table.row(); + break; + case "space": + table.add() + .height(data.getFloat("width",10F)) + .height(data.getFloat("height",10F)); + break; + case "label": + Label lbl = new Label(data.getString("text",""),skin); + lbl.setFontScale(data.getFloat("font_scale",1F)); + table.add(lbl); + break; + case "change_ui_text_button": + Button button = new TextButton(data.getString("text",""),skin); + String ui_id = data.getString("gui_id",""); + button.addListener(event -> { + if (!button.isPressed()) + return false; + UI.openContainers.removeValue(screen.container, true); + InGame.IN_GAME.removeBaseItemScreen(screen); + addOpenContainer(screen.blockEntity,screen.blockEntity.slotContainer,ui_id); + return true; + }); + table.add(button); + break; + case "item_slot": + add_ui_slot(table,screen,data.getInt("slot",0),data.getBoolean("output",false)); + break; + case "table": + JsonValue ui_layout = data.get("layout"); + Table new_table = new Table(); + build_ui(ui_layout,new_table,screen); + + float default_width = Math.max(new_table.getColumns(),1) * 32; + new_table.setWidth(ui_layout.getFloat("width",default_width)); + float default_height = Math.max(new_table.getRows(),1) * 32; + new_table.setHeight(ui_layout.getFloat("height",default_height)); + + table.add(new_table); + break; + } + } + } + + static void add_ui_slot(Table table, CustomScreen screen, int n, boolean is_output){ + ItemSlot slot = screen.container.getSlot(n); + slot.setOutputOnly(is_output); + ItemSlotWidget slotWidget; + if (slot.isOutputOnly()) + slotWidget = new ItemSlotWidget(screen.container, slot, + new NinePatchDrawable(UI.containerOutput9Patch), + new NinePatchDrawable(UI.containerOutput9PatchHovered), + new NinePatchDrawable(UI.containerSelected9Patch) + ); + else + slotWidget = new ItemSlotWidget(screen.container, slot); + screen.slotWidgets[n] = slotWidget; + table.add(slotWidget); + } + + + + public static void addOpenContainer(final CustomUIBlockEntity be, final SlotContainer container){ + addOpenContainer(be,container,be.ui_id); + } + public static void addOpenContainer(final CustomUIBlockEntity be, final SlotContainer container, final String ui_id) { + if (!UI.openContainers.contains(container, true)) { + UI.itemCatalog.show(); + UI.openContainers.add(container); + final CustomScreen screen = new CustomScreen(be, ui_id); + InGame.IN_GAME.openedMainItemScreen = screen; + InGame.IN_GAME.addBaseItemScreen(screen); + Action perFrameAct = new Action() { + public boolean act(float delta) { + screen.getActor().setX(InGame.IN_GAME.newUiViewport.getWorldWidth() / 2.0F, 1); + screen.getActor().setY(InGame.IN_GAME.newUiViewport.getWorldHeight() / 2.0F, 1); + if (!UI.isInventoryOpen()) { + UI.openContainers.removeValue(container, true); + InGame.IN_GAME.removeBaseItemScreen(screen); + return true; + } else { + return false; + } + } + }; + perFrameAct.act(0.0F); + screen.getActor().addAction(perFrameAct); + } + } +} \ No newline at end of file diff --git a/src/main/resources/omni_power/assets.txt b/src/main/resources/omni_power/assets.txt index 49f2967..641cca7 100644 --- a/src/main/resources/omni_power/assets.txt +++ b/src/main/resources/omni_power/assets.txt @@ -2,6 +2,7 @@ omni_power:assets.txt omni_power:blocks\cable.json omni_power:blocks\cable_adapter.json omni_power:blocks\cable_merger.json +omni_power:blocks\custom_crate.json omni_power:blocks\door_cube.json omni_power:blocks\lever.json omni_power:block_events\block_events_cable_merger_off.json @@ -14,10 +15,115 @@ omni_power:block_events\block_events_lever_blue_off.json omni_power:block_events\block_events_lever_blue_on.json omni_power:block_events\block_events_lever_red_off.json omni_power:block_events\block_events_lever_red_on.json +omni_power:gdx-skins\.gitignore +omni_power:gdx-skins\README.md +omni_power:gui\example.json +omni_power:gui\example2.json omni_power:block_events\adapter\cable_adapter_blue_off.json omni_power:block_events\adapter\cable_adapter_blue_on.json omni_power:block_events\adapter\cable_adapter_red_off.json omni_power:block_events\adapter\cable_adapter_red_on.json +omni_power:gdx-skins\arcade\preview.png +omni_power:gdx-skins\arcade\README.md +omni_power:gdx-skins\arcade\RussoOne.txt +omni_power:gdx-skins\biological-attack\preview.png +omni_power:gdx-skins\biological-attack\README.md +omni_power:gdx-skins\biological-attack\SourceSansPro.txt +omni_power:gdx-skins\clean-crispy\Comfortaa Font License.txt +omni_power:gdx-skins\clean-crispy\preview.png +omni_power:gdx-skins\clean-crispy\README.md +omni_power:gdx-skins\cloud-form\preview.gif +omni_power:gdx-skins\cloud-form\README.md +omni_power:gdx-skins\comic\preview.gif +omni_power:gdx-skins\comic\README.md +omni_power:gdx-skins\commodore64\preview.gif +omni_power:gdx-skins\commodore64\README.md +omni_power:gdx-skins\commodore64\style-guide.png +omni_power:gdx-skins\craftacular\preview.gif +omni_power:gdx-skins\craftacular\preview.png +omni_power:gdx-skins\craftacular\README.md +omni_power:gdx-skins\default\preview-large.png +omni_power:gdx-skins\default\preview.png +omni_power:gdx-skins\default\README.md +omni_power:gdx-skins\expee\preview.png +omni_power:gdx-skins\expee\README.md +omni_power:gdx-skins\extras\README.md +omni_power:gdx-skins\flat\preview-dark.png +omni_power:gdx-skins\flat\preview-light.png +omni_power:gdx-skins\flat\README.md +omni_power:gdx-skins\flat-earth\preview.png +omni_power:gdx-skins\flat-earth\README.md +omni_power:gdx-skins\freezing\preview.png +omni_power:gdx-skins\freezing\README.md +omni_power:gdx-skins\gdx-holo\preview.png +omni_power:gdx-skins\gdx-holo\README.md +omni_power:gdx-skins\glassy\preview.png +omni_power:gdx-skins\glassy\README.md +omni_power:gdx-skins\golden-spiral\preview.gif +omni_power:gdx-skins\golden-spiral\preview.png +omni_power:gdx-skins\golden-spiral\README.md +omni_power:gdx-skins\holo\preview.png +omni_power:gdx-skins\holo\README.md +omni_power:gdx-skins\kenney-pixel\preview-dark.png +omni_power:gdx-skins\kenney-pixel\preview-light.png +omni_power:gdx-skins\kenney-pixel\README.md +omni_power:gdx-skins\level-plane\JosefinSans.txt +omni_power:gdx-skins\level-plane\preview.gif +omni_power:gdx-skins\level-plane\README.md +omni_power:gdx-skins\lgdxs\FjallaOneRegular.txt +omni_power:gdx-skins\lgdxs\preview.png +omni_power:gdx-skins\lgdxs\README.md +omni_power:gdx-skins\lml\preview.png +omni_power:gdx-skins\lml\README.md +omni_power:gdx-skins\metal\preview.png +omni_power:gdx-skins\metal\README.md +omni_power:gdx-skins\neon\preview.gif +omni_power:gdx-skins\neon\README.md +omni_power:gdx-skins\neutralizer\PassionOneFont.txt +omni_power:gdx-skins\neutralizer\preview-colorpicker.png +omni_power:gdx-skins\neutralizer\preview-filechooser.png +omni_power:gdx-skins\neutralizer\preview.png +omni_power:gdx-skins\neutralizer\README.md +omni_power:gdx-skins\neutralizer\SpinnakerFont.txt +omni_power:gdx-skins\number-cruncher\preview.png +omni_power:gdx-skins\number-cruncher\README.md +omni_power:gdx-skins\orange\preview.png +omni_power:gdx-skins\orange\README.md +omni_power:gdx-skins\orange\style-guide.png +omni_power:gdx-skins\pixthulhu\preview.png +omni_power:gdx-skins\pixthulhu\preview2.png +omni_power:gdx-skins\pixthulhu\README.md +omni_power:gdx-skins\plain-james\preview.png +omni_power:gdx-skins\plain-james\README.md +omni_power:gdx-skins\quantum-horizon\preview.png +omni_power:gdx-skins\quantum-horizon\README.md +omni_power:gdx-skins\rainbow\preview.png +omni_power:gdx-skins\rainbow\README.md +omni_power:gdx-skins\rusty-robot\preview.png +omni_power:gdx-skins\rusty-robot\README.md +omni_power:gdx-skins\sgx\PlayFont.txt +omni_power:gdx-skins\sgx\preview.png +omni_power:gdx-skins\sgx\QuestrialFont.txt +omni_power:gdx-skins\sgx\README.md +omni_power:gdx-skins\shade\preview.png +omni_power:gdx-skins\shade\README.md +omni_power:gdx-skins\shade\style-guide.png +omni_power:gdx-skins\skin-composer\preview.png +omni_power:gdx-skins\skin-composer\README.md +omni_power:gdx-skins\skin-composer\SourceSansPro.txt +omni_power:gdx-skins\star-soldier\preview.png +omni_power:gdx-skins\star-soldier\README.md +omni_power:gdx-skins\terra-mother\preview.png +omni_power:gdx-skins\terra-mother\README.md +omni_power:gdx-skins\tracer\preview.png +omni_power:gdx-skins\tracer\README.md +omni_power:gdx-skins\tracer\UbuntuFont.txt +omni_power:gdx-skins\tubular\preview.png +omni_power:gdx-skins\tubular\README.md +omni_power:gdx-skins\vhs\preview.png +omni_power:gdx-skins\vhs\README.md +omni_power:gdx-skins\vis\preview.png +omni_power:gdx-skins\vis\README.md omni_power:models\blocks\model_cable_blue.json omni_power:models\blocks\model_cable_blue_slim.json omni_power:models\blocks\model_cable_merger.json @@ -52,5 +158,3353 @@ omni_power:textures\blocks\lever_off_blue.png omni_power:textures\blocks\lever_off_red.png omni_power:textures\blocks\lever_on_blue.png omni_power:textures\blocks\lever_on_red.png +omni_power:gdx-skins\.github\images\gdx-setup.png +omni_power:gdx-skins\.github\images\intellij-plugin.png +omni_power:gdx-skins\.github\images\skin-composer.png +omni_power:gdx-skins\.github\images\texture-packer.png +omni_power:gdx-skins\.github\images\vis-ui.png +omni_power:gdx-skins\arcade\raw\bg.png +omni_power:gdx-skins\arcade\raw\booth.png +omni_power:gdx-skins\arcade\raw\button-bg.png +omni_power:gdx-skins\arcade\raw\button-pressed.png +omni_power:gdx-skins\arcade\raw\button.png +omni_power:gdx-skins\arcade\raw\font-export.fnt +omni_power:gdx-skins\arcade\raw\font-export.png +omni_power:gdx-skins\arcade\raw\font.png +omni_power:gdx-skins\arcade\raw\joystick-bg.png +omni_power:gdx-skins\arcade\raw\joystick-d.png +omni_power:gdx-skins\arcade\raw\joystick-dl.png +omni_power:gdx-skins\arcade\raw\joystick-dr.png +omni_power:gdx-skins\arcade\raw\joystick-l.png +omni_power:gdx-skins\arcade\raw\joystick-r.png +omni_power:gdx-skins\arcade\raw\joystick-u.png +omni_power:gdx-skins\arcade\raw\joystick-ul.png +omni_power:gdx-skins\arcade\raw\joystick-ur.png +omni_power:gdx-skins\arcade\raw\joystick.png +omni_power:gdx-skins\arcade\raw\screen-export.fnt +omni_power:gdx-skins\arcade\raw\screen-export.png +omni_power:gdx-skins\arcade\raw\screen.png +omni_power:gdx-skins\arcade\raw\title-export.fnt +omni_power:gdx-skins\arcade\raw\title-export.png +omni_power:gdx-skins\arcade\raw\title.png +omni_power:gdx-skins\arcade\raw\white.png +omni_power:gdx-skins\arcade\skin\arcade-ui.atlas +omni_power:gdx-skins\arcade\skin\arcade-ui.json +omni_power:gdx-skins\arcade\skin\arcade-ui.png +omni_power:gdx-skins\arcade\skin\font-export.fnt +omni_power:gdx-skins\arcade\skin\screen-export.fnt +omni_power:gdx-skins\arcade\skin\title-export.fnt +omni_power:gdx-skins\biological-attack\raw\checkbox-off.png +omni_power:gdx-skins\biological-attack\raw\checkbox.png +omni_power:gdx-skins\biological-attack\raw\font-export.fnt +omni_power:gdx-skins\biological-attack\raw\font-export.png +omni_power:gdx-skins\biological-attack\raw\font-title-export.fnt +omni_power:gdx-skins\biological-attack\raw\font-title-export.png +omni_power:gdx-skins\biological-attack\raw\font-title.png +omni_power:gdx-skins\biological-attack\raw\font.png +omni_power:gdx-skins\biological-attack\raw\icon-biohazard-large.png +omni_power:gdx-skins\biological-attack\raw\icon-biohazard.png +omni_power:gdx-skins\biological-attack\raw\icon-electricity.png +omni_power:gdx-skins\biological-attack\raw\icon-fire.png +omni_power:gdx-skins\biological-attack\raw\icon-gas-mask.png +omni_power:gdx-skins\biological-attack\raw\icon-laser.png +omni_power:gdx-skins\biological-attack\raw\icon-poison.png +omni_power:gdx-skins\biological-attack\raw\icon-radiation-large.png +omni_power:gdx-skins\biological-attack\raw\icon-radiation.png +omni_power:gdx-skins\biological-attack\raw\icon-warning.png +omni_power:gdx-skins\biological-attack\raw\list.9.png +omni_power:gdx-skins\biological-attack\raw\list.png +omni_power:gdx-skins\biological-attack\raw\progress-bar-knob.png +omni_power:gdx-skins\biological-attack\raw\progress-bar.png +omni_power:gdx-skins\biological-attack\raw\radio-off.png +omni_power:gdx-skins\biological-attack\raw\radio.png +omni_power:gdx-skins\biological-attack\raw\scrollbar.9.png +omni_power:gdx-skins\biological-attack\raw\scrollbar.png +omni_power:gdx-skins\biological-attack\raw\select-box-pressed.9.png +omni_power:gdx-skins\biological-attack\raw\select-box-pressed.png +omni_power:gdx-skins\biological-attack\raw\select-box.9.png +omni_power:gdx-skins\biological-attack\raw\select-box.png +omni_power:gdx-skins\biological-attack\raw\slider-knob.png +omni_power:gdx-skins\biological-attack\raw\slider.png +omni_power:gdx-skins\biological-attack\raw\split-pane.png +omni_power:gdx-skins\biological-attack\raw\textfield.9.png +omni_power:gdx-skins\biological-attack\raw\textfield.png +omni_power:gdx-skins\biological-attack\raw\title-bg.9.png +omni_power:gdx-skins\biological-attack\raw\title-bg.png +omni_power:gdx-skins\biological-attack\raw\touchpad-knob.png +omni_power:gdx-skins\biological-attack\raw\touchpad.png +omni_power:gdx-skins\biological-attack\raw\white.png +omni_power:gdx-skins\biological-attack\raw\window.9.png +omni_power:gdx-skins\biological-attack\raw\window.png +omni_power:gdx-skins\biological-attack\skin\biological-attack-ui.atlas +omni_power:gdx-skins\biological-attack\skin\biological-attack-ui.json +omni_power:gdx-skins\biological-attack\skin\biological-attack-ui.png +omni_power:gdx-skins\biological-attack\skin\font-export.fnt +omni_power:gdx-skins\biological-attack\skin\font-title-export.fnt +omni_power:gdx-skins\clean-crispy\raw\button-arcade-pressed.9.png +omni_power:gdx-skins\clean-crispy\raw\button-arcade-pressed.png +omni_power:gdx-skins\clean-crispy\raw\button-arcade.9.png +omni_power:gdx-skins\clean-crispy\raw\button-arcade.png +omni_power:gdx-skins\clean-crispy\raw\button-close-over.png +omni_power:gdx-skins\clean-crispy\raw\button-close-pressed.png +omni_power:gdx-skins\clean-crispy\raw\button-close.png +omni_power:gdx-skins\clean-crispy\raw\button-maximize-over.png +omni_power:gdx-skins\clean-crispy\raw\button-maximize-pressed.png +omni_power:gdx-skins\clean-crispy\raw\button-maximize.png +omni_power:gdx-skins\clean-crispy\raw\button-minimize-over.png +omni_power:gdx-skins\clean-crispy\raw\button-minimize-pressed.png +omni_power:gdx-skins\clean-crispy\raw\button-minimize.png +omni_power:gdx-skins\clean-crispy\raw\button-over.9.png +omni_power:gdx-skins\clean-crispy\raw\button-over.png +omni_power:gdx-skins\clean-crispy\raw\button-pressed-over.9.png +omni_power:gdx-skins\clean-crispy\raw\button-pressed-over.png +omni_power:gdx-skins\clean-crispy\raw\button-pressed.9.png +omni_power:gdx-skins\clean-crispy\raw\button-pressed.png +omni_power:gdx-skins\clean-crispy\raw\button.9.png +omni_power:gdx-skins\clean-crispy\raw\button.png +omni_power:gdx-skins\clean-crispy\raw\checkbox-over.png +omni_power:gdx-skins\clean-crispy\raw\checkbox-pressed-over.png +omni_power:gdx-skins\clean-crispy\raw\checkbox-pressed.png +omni_power:gdx-skins\clean-crispy\raw\checkbox.png +omni_power:gdx-skins\clean-crispy\raw\cursor.9.png +omni_power:gdx-skins\clean-crispy\raw\cursor.png +omni_power:gdx-skins\clean-crispy\raw\font-export.fnt +omni_power:gdx-skins\clean-crispy\raw\font-export.png +omni_power:gdx-skins\clean-crispy\raw\font.png +omni_power:gdx-skins\clean-crispy\raw\list.9.png +omni_power:gdx-skins\clean-crispy\raw\list.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-big.9.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-big.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-horizontal.9.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-knob-big.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-knob-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-knob-vertical.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-tiled.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-vertical.9.png +omni_power:gdx-skins\clean-crispy\raw\progressbar-vertical.png +omni_power:gdx-skins\clean-crispy\raw\radio-over.png +omni_power:gdx-skins\clean-crispy\raw\radio-pressed-over.png +omni_power:gdx-skins\clean-crispy\raw\radio-pressed.png +omni_power:gdx-skins\clean-crispy\raw\radio.png +omni_power:gdx-skins\clean-crispy\raw\resize.png +omni_power:gdx-skins\clean-crispy\raw\scollpane-vertical.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-horizontal.9.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-knob-horizontal.9.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-knob-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-knob-vertical.9.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-knob-vertical.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-vertical.9.png +omni_power:gdx-skins\clean-crispy\raw\scrollpane-vertical.png +omni_power:gdx-skins\clean-crispy\raw\selectbox-over.9.png +omni_power:gdx-skins\clean-crispy\raw\selectbox-over.png +omni_power:gdx-skins\clean-crispy\raw\selectbox-pressed-over.9.png +omni_power:gdx-skins\clean-crispy\raw\selectbox-pressed-over.png +omni_power:gdx-skins\clean-crispy\raw\selectbox-pressed.9.png +omni_power:gdx-skins\clean-crispy\raw\selectbox-pressed.png +omni_power:gdx-skins\clean-crispy\raw\selectbox.9.png +omni_power:gdx-skins\clean-crispy\raw\selectbox.png +omni_power:gdx-skins\clean-crispy\raw\slider-bar-horizontal.9.png +omni_power:gdx-skins\clean-crispy\raw\slider-bar-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\slider-bar-vertical.9.png +omni_power:gdx-skins\clean-crispy\raw\slider-bar-vertical.png +omni_power:gdx-skins\clean-crispy\raw\slider-horizontal.9.png +omni_power:gdx-skins\clean-crispy\raw\slider-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\slider-knob-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\slider-knob-over-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\slider-knob-over-vertical.png +omni_power:gdx-skins\clean-crispy\raw\slider-knob-pressed-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\slider-knob-pressed-vertical.png +omni_power:gdx-skins\clean-crispy\raw\slider-knob-vertical.png +omni_power:gdx-skins\clean-crispy\raw\slider-tick.png +omni_power:gdx-skins\clean-crispy\raw\slider-vertical.9.png +omni_power:gdx-skins\clean-crispy\raw\slider-vertical.png +omni_power:gdx-skins\clean-crispy\raw\splitpane-horizontal.9.png +omni_power:gdx-skins\clean-crispy\raw\splitpane-horizontal.png +omni_power:gdx-skins\clean-crispy\raw\splitpane-vertical.9.png +omni_power:gdx-skins\clean-crispy\raw\splitpane-vertical.png +omni_power:gdx-skins\clean-crispy\raw\textfield.9.png +omni_power:gdx-skins\clean-crispy\raw\textfield.png +omni_power:gdx-skins\clean-crispy\raw\tooltip.9.png +omni_power:gdx-skins\clean-crispy\raw\tooltip.png +omni_power:gdx-skins\clean-crispy\raw\touchpad-knob.png +omni_power:gdx-skins\clean-crispy\raw\touchpad.png +omni_power:gdx-skins\clean-crispy\raw\tree-minus.png +omni_power:gdx-skins\clean-crispy\raw\tree-plus.png +omni_power:gdx-skins\clean-crispy\raw\white.png +omni_power:gdx-skins\clean-crispy\raw\window-main.9.png +omni_power:gdx-skins\clean-crispy\raw\window-main.png +omni_power:gdx-skins\clean-crispy\raw\window.9.png +omni_power:gdx-skins\clean-crispy\raw\window.png +omni_power:gdx-skins\clean-crispy\skin\clean-crispy-ui.atlas +omni_power:gdx-skins\clean-crispy\skin\clean-crispy-ui.json +omni_power:gdx-skins\clean-crispy\skin\clean-crispy-ui.png +omni_power:gdx-skins\clean-crispy\skin\font-export.fnt +omni_power:gdx-skins\cloud-form\raw\button-close-over-pressed.png +omni_power:gdx-skins\cloud-form\raw\button-close-over.png +omni_power:gdx-skins\cloud-form\raw\button-close-pressed.png +omni_power:gdx-skins\cloud-form\raw\button-close.png +omni_power:gdx-skins\cloud-form\raw\button-menu-over.9.png +omni_power:gdx-skins\cloud-form\raw\button-menu-over.png +omni_power:gdx-skins\cloud-form\raw\button-menu-pressed-over.9.png +omni_power:gdx-skins\cloud-form\raw\button-menu-pressed-over.png +omni_power:gdx-skins\cloud-form\raw\button-menu-pressed.9.png +omni_power:gdx-skins\cloud-form\raw\button-menu-pressed.png +omni_power:gdx-skins\cloud-form\raw\button-menu.9.png +omni_power:gdx-skins\cloud-form\raw\button-menu.png +omni_power:gdx-skins\cloud-form\raw\button-over.9.png +omni_power:gdx-skins\cloud-form\raw\button-over.png +omni_power:gdx-skins\cloud-form\raw\button-pressed-over.9.png +omni_power:gdx-skins\cloud-form\raw\button-pressed-over.png +omni_power:gdx-skins\cloud-form\raw\button-pressed.9.png +omni_power:gdx-skins\cloud-form\raw\button-pressed.png +omni_power:gdx-skins\cloud-form\raw\button.9.png +omni_power:gdx-skins\cloud-form\raw\button.png +omni_power:gdx-skins\cloud-form\raw\checkbox-over.png +omni_power:gdx-skins\cloud-form\raw\checkbox-pressed-over.png +omni_power:gdx-skins\cloud-form\raw\checkbox-pressed.png +omni_power:gdx-skins\cloud-form\raw\checkbox.png +omni_power:gdx-skins\cloud-form\raw\font-export.fnt +omni_power:gdx-skins\cloud-form\raw\font-export.png +omni_power:gdx-skins\cloud-form\raw\font.png +omni_power:gdx-skins\cloud-form\raw\list.9.png +omni_power:gdx-skins\cloud-form\raw\list.png +omni_power:gdx-skins\cloud-form\raw\minus.png +omni_power:gdx-skins\cloud-form\raw\plus.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-circle-knob.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-circle.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-horizontal-knob.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-horizontal.9.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-horizontal.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-vertical-knob.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\cloud-form\raw\progress-bar-vertical.png +omni_power:gdx-skins\cloud-form\raw\radio-over.png +omni_power:gdx-skins\cloud-form\raw\radio-pressed-over.png +omni_power:gdx-skins\cloud-form\raw\radio-pressed.png +omni_power:gdx-skins\cloud-form\raw\radio.png +omni_power:gdx-skins\cloud-form\raw\scrollbar-horizontal-knob.png +omni_power:gdx-skins\cloud-form\raw\scrollbar-horizontal.png +omni_power:gdx-skins\cloud-form\raw\scrollbar-vertical-knob.png +omni_power:gdx-skins\cloud-form\raw\scrollbar-vertical.png +omni_power:gdx-skins\cloud-form\raw\select-box-over.9.png +omni_power:gdx-skins\cloud-form\raw\select-box-over.png +omni_power:gdx-skins\cloud-form\raw\select-box-pressed.9.png +omni_power:gdx-skins\cloud-form\raw\select-box-pressed.png +omni_power:gdx-skins\cloud-form\raw\select-box.9.png +omni_power:gdx-skins\cloud-form\raw\select-box.png +omni_power:gdx-skins\cloud-form\raw\sky.png +omni_power:gdx-skins\cloud-form\raw\slider-knob-over.png +omni_power:gdx-skins\cloud-form\raw\slider-knob-pressed.png +omni_power:gdx-skins\cloud-form\raw\slider-knob.png +omni_power:gdx-skins\cloud-form\raw\slider.9.png +omni_power:gdx-skins\cloud-form\raw\slider.png +omni_power:gdx-skins\cloud-form\raw\splitpane-horizontal.png +omni_power:gdx-skins\cloud-form\raw\splitpane-vertical.png +omni_power:gdx-skins\cloud-form\raw\textfield-selected.9.png +omni_power:gdx-skins\cloud-form\raw\textfield-selected.png +omni_power:gdx-skins\cloud-form\raw\textfield.9.png +omni_power:gdx-skins\cloud-form\raw\textfield.png +omni_power:gdx-skins\cloud-form\raw\title.fnt +omni_power:gdx-skins\cloud-form\raw\title.png +omni_power:gdx-skins\cloud-form\raw\white.png +omni_power:gdx-skins\cloud-form\raw\window.9.png +omni_power:gdx-skins\cloud-form\raw\window.png +omni_power:gdx-skins\cloud-form\skin\cloud-form-ui.atlas +omni_power:gdx-skins\cloud-form\skin\cloud-form-ui.json +omni_power:gdx-skins\cloud-form\skin\cloud-form-ui.png +omni_power:gdx-skins\cloud-form\skin\font-export.fnt +omni_power:gdx-skins\cloud-form\skin\title.fnt +omni_power:gdx-skins\comic\raw\bubble-lower-left.9.png +omni_power:gdx-skins\comic\raw\bubble-lower-left.png +omni_power:gdx-skins\comic\raw\bubble-lower-right.9.png +omni_power:gdx-skins\comic\raw\bubble-lower-right.png +omni_power:gdx-skins\comic\raw\bubble-top-left.9.png +omni_power:gdx-skins\comic\raw\bubble-top-left.png +omni_power:gdx-skins\comic\raw\bubble-top-right.9.png +omni_power:gdx-skins\comic\raw\bubble-top-right.png +omni_power:gdx-skins\comic\raw\button-highlighted.9.png +omni_power:gdx-skins\comic\raw\button-highlighted.png +omni_power:gdx-skins\comic\raw\button-pressed.9.png +omni_power:gdx-skins\comic\raw\button-pressed.png +omni_power:gdx-skins\comic\raw\button.9.png +omni_power:gdx-skins\comic\raw\button.png +omni_power:gdx-skins\comic\raw\checkbox-on.png +omni_power:gdx-skins\comic\raw\checkbox.png +omni_power:gdx-skins\comic\raw\Crimson-Roach.png +omni_power:gdx-skins\comic\raw\cursor.9.png +omni_power:gdx-skins\comic\raw\cursor.png +omni_power:gdx-skins\comic\raw\font-button-export.fnt +omni_power:gdx-skins\comic\raw\font-button-export.png +omni_power:gdx-skins\comic\raw\font-button.png +omni_power:gdx-skins\comic\raw\font-export.fnt +omni_power:gdx-skins\comic\raw\font-export.png +omni_power:gdx-skins\comic\raw\font-title-export.fnt +omni_power:gdx-skins\comic\raw\font-title-export.png +omni_power:gdx-skins\comic\raw\font-title.png +omni_power:gdx-skins\comic\raw\font.png +omni_power:gdx-skins\comic\raw\half-tone-box.9.png +omni_power:gdx-skins\comic\raw\half-tone-box.png +omni_power:gdx-skins\comic\raw\minus.png +omni_power:gdx-skins\comic\raw\narration-box.9.png +omni_power:gdx-skins\comic\raw\narration-box.png +omni_power:gdx-skins\comic\raw\plus.png +omni_power:gdx-skins\comic\raw\progress-bar-knob.png +omni_power:gdx-skins\comic\raw\progress-bar.9.png +omni_power:gdx-skins\comic\raw\progress-bar.png +omni_power:gdx-skins\comic\raw\radio-on.png +omni_power:gdx-skins\comic\raw\radio.png +omni_power:gdx-skins\comic\raw\scrollbar-horizontal.png +omni_power:gdx-skins\comic\raw\scrollbar-vertical.png +omni_power:gdx-skins\comic\raw\select-box-big-list.9.png +omni_power:gdx-skins\comic\raw\select-box-big-list.png +omni_power:gdx-skins\comic\raw\select-box-big-open.9.png +omni_power:gdx-skins\comic\raw\select-box-big-open.png +omni_power:gdx-skins\comic\raw\select-box-big.9.png +omni_power:gdx-skins\comic\raw\select-box-big.png +omni_power:gdx-skins\comic\raw\select-box-list.9.png +omni_power:gdx-skins\comic\raw\select-box-list.png +omni_power:gdx-skins\comic\raw\select-box-open.9.png +omni_power:gdx-skins\comic\raw\select-box-open.png +omni_power:gdx-skins\comic\raw\select-box.9.png +omni_power:gdx-skins\comic\raw\select-box.png +omni_power:gdx-skins\comic\raw\slider-knob.png +omni_power:gdx-skins\comic\raw\slider.9.png +omni_power:gdx-skins\comic\raw\slider.png +omni_power:gdx-skins\comic\raw\splitpane.png +omni_power:gdx-skins\comic\raw\text-field.9.png +omni_power:gdx-skins\comic\raw\text-field.png +omni_power:gdx-skins\comic\raw\white.png +omni_power:gdx-skins\comic\raw\window-no-padding.9.png +omni_power:gdx-skins\comic\raw\window.9.png +omni_power:gdx-skins\comic\raw\window.png +omni_power:gdx-skins\comic\skin\comic-ui.atlas +omni_power:gdx-skins\comic\skin\comic-ui.json +omni_power:gdx-skins\comic\skin\comic-ui.png +omni_power:gdx-skins\comic\skin\font-button-export.fnt +omni_power:gdx-skins\comic\skin\font-export.fnt +omni_power:gdx-skins\comic\skin\font-title-export.fnt +omni_power:gdx-skins\commodore64\raw\blue.png +omni_power:gdx-skins\commodore64\raw\button-down.9.png +omni_power:gdx-skins\commodore64\raw\button.9.png +omni_power:gdx-skins\commodore64\raw\check-box-off.png +omni_power:gdx-skins\commodore64\raw\check-box.png +omni_power:gdx-skins\commodore64\raw\commodore-64.fnt +omni_power:gdx-skins\commodore64\raw\commodore-64.png +omni_power:gdx-skins\commodore64\raw\cursor-black.9.png +omni_power:gdx-skins\commodore64\raw\cursor.9.png +omni_power:gdx-skins\commodore64\raw\dialog.9.png +omni_power:gdx-skins\commodore64\raw\grey.png +omni_power:gdx-skins\commodore64\raw\horizontal-split-pane.9.png +omni_power:gdx-skins\commodore64\raw\light-blue.png +omni_power:gdx-skins\commodore64\raw\list.9.png +omni_power:gdx-skins\commodore64\raw\minus.png +omni_power:gdx-skins\commodore64\raw\music-off.png +omni_power:gdx-skins\commodore64\raw\music.png +omni_power:gdx-skins\commodore64\raw\plus.png +omni_power:gdx-skins\commodore64\raw\progress-bar-knob.9.png +omni_power:gdx-skins\commodore64\raw\progress-bar.9.png +omni_power:gdx-skins\commodore64\raw\radio-button-off.png +omni_power:gdx-skins\commodore64\raw\radio-button.9.png +omni_power:gdx-skins\commodore64\raw\radio-button.png +omni_power:gdx-skins\commodore64\raw\README.md +omni_power:gdx-skins\commodore64\raw\scroll-bar-horizontal-knob.9.png +omni_power:gdx-skins\commodore64\raw\scroll-bar-vertical-knob.9.png +omni_power:gdx-skins\commodore64\raw\scroll-bar.9.png +omni_power:gdx-skins\commodore64\raw\slider-knob.png +omni_power:gdx-skins\commodore64\raw\slider.png +omni_power:gdx-skins\commodore64\raw\sound-off.png +omni_power:gdx-skins\commodore64\raw\sound.png +omni_power:gdx-skins\commodore64\raw\touchpad-knob.png +omni_power:gdx-skins\commodore64\raw\touchpad.png +omni_power:gdx-skins\commodore64\raw\vertical-split-pane.9.png +omni_power:gdx-skins\commodore64\raw\white.png +omni_power:gdx-skins\commodore64\raw\window.9.png +omni_power:gdx-skins\commodore64\skin\commodore-64.fnt +omni_power:gdx-skins\commodore64\skin\uiskin.atlas +omni_power:gdx-skins\commodore64\skin\uiskin.json +omni_power:gdx-skins\commodore64\skin\uiskin.png +omni_power:gdx-skins\craftacular\raw\armor-bg.png +omni_power:gdx-skins\craftacular\raw\armor.png +omni_power:gdx-skins\craftacular\raw\button-disabled.9.png +omni_power:gdx-skins\craftacular\raw\button-hover.9.png +omni_power:gdx-skins\craftacular\raw\button.9.png +omni_power:gdx-skins\craftacular\raw\cell.9.png +omni_power:gdx-skins\craftacular\raw\craftacular-mockup.png +omni_power:gdx-skins\craftacular\raw\cursor.9.png +omni_power:gdx-skins\craftacular\raw\dirt.png +omni_power:gdx-skins\craftacular\raw\font-bold-export.fnt +omni_power:gdx-skins\craftacular\raw\font-bold-export.png +omni_power:gdx-skins\craftacular\raw\font-export.fnt +omni_power:gdx-skins\craftacular\raw\font-export.png +omni_power:gdx-skins\craftacular\raw\font-title-export.fnt +omni_power:gdx-skins\craftacular\raw\font-title-export.png +omni_power:gdx-skins\craftacular\raw\heart-bg.png +omni_power:gdx-skins\craftacular\raw\heart.png +omni_power:gdx-skins\craftacular\raw\meat-bg.png +omni_power:gdx-skins\craftacular\raw\meat.png +omni_power:gdx-skins\craftacular\raw\scroll-bg.9.png +omni_power:gdx-skins\craftacular\raw\scroll-horizontal.9.png +omni_power:gdx-skins\craftacular\raw\scroll-knob-horizontal.9.png +omni_power:gdx-skins\craftacular\raw\scroll-knob-vertical.9.png +omni_power:gdx-skins\craftacular\raw\scroll-vertical.9.png +omni_power:gdx-skins\craftacular\raw\slider-knob.9.png +omni_power:gdx-skins\craftacular\raw\slider.9.png +omni_power:gdx-skins\craftacular\raw\text-field.9.png +omni_power:gdx-skins\craftacular\raw\tooltip.9.png +omni_power:gdx-skins\craftacular\raw\underline.9.png +omni_power:gdx-skins\craftacular\raw\white.png +omni_power:gdx-skins\craftacular\raw\window.9.png +omni_power:gdx-skins\craftacular\raw\xp-bg.png +omni_power:gdx-skins\craftacular\raw\xp.png +omni_power:gdx-skins\craftacular\skin\craftacular-ui.atlas +omni_power:gdx-skins\craftacular\skin\craftacular-ui.json +omni_power:gdx-skins\craftacular\skin\craftacular-ui.png +omni_power:gdx-skins\craftacular\skin\font-bold-export.fnt +omni_power:gdx-skins\craftacular\skin\font-export.fnt +omni_power:gdx-skins\craftacular\skin\font-title-export.fnt +omni_power:gdx-skins\default\raw\check-off.png +omni_power:gdx-skins\default\raw\check-on.png +omni_power:gdx-skins\default\raw\cursor.9.png +omni_power:gdx-skins\default\raw\default-pane-noborder.9.png +omni_power:gdx-skins\default\raw\default-pane.9.png +omni_power:gdx-skins\default\raw\default-rect-down.9.png +omni_power:gdx-skins\default\raw\default-rect-pad.9.png +omni_power:gdx-skins\default\raw\default-rect.9.png +omni_power:gdx-skins\default\raw\default-round-down.9.png +omni_power:gdx-skins\default\raw\default-round-large.9.png +omni_power:gdx-skins\default\raw\default-round.9.png +omni_power:gdx-skins\default\raw\default-scroll.9.png +omni_power:gdx-skins\default\raw\default-select-selection.9.png +omni_power:gdx-skins\default\raw\default-select.9.png +omni_power:gdx-skins\default\raw\default-slider-knob.png +omni_power:gdx-skins\default\raw\default-slider.9.png +omni_power:gdx-skins\default\raw\default-splitpane-vertical.9.png +omni_power:gdx-skins\default\raw\default-splitpane.9.png +omni_power:gdx-skins\default\raw\default-window.9.png +omni_power:gdx-skins\default\raw\default.png +omni_power:gdx-skins\default\raw\pack.json +omni_power:gdx-skins\default\raw\selection.png +omni_power:gdx-skins\default\raw\textfield.9.png +omni_power:gdx-skins\default\raw\tree-minus.png +omni_power:gdx-skins\default\raw\tree-plus.png +omni_power:gdx-skins\default\raw\white.png +omni_power:gdx-skins\default\skin\default.fnt +omni_power:gdx-skins\default\skin\uiskin.atlas +omni_power:gdx-skins\default\skin\uiskin.json +omni_power:gdx-skins\default\skin\uiskin.png +omni_power:gdx-skins\expee\raw\button-back-disabled.9.png +omni_power:gdx-skins\expee\raw\button-back-down.9.png +omni_power:gdx-skins\expee\raw\button-back-over.9.png +omni_power:gdx-skins\expee\raw\button-back.9.png +omni_power:gdx-skins\expee\raw\button-close-over.png +omni_power:gdx-skins\expee\raw\button-close-pressed.png +omni_power:gdx-skins\expee\raw\button-close.png +omni_power:gdx-skins\expee\raw\button-forward-disabled.9.png +omni_power:gdx-skins\expee\raw\button-forward-down.9.png +omni_power:gdx-skins\expee\raw\button-forward-over.9.png +omni_power:gdx-skins\expee\raw\button-forward.9.png +omni_power:gdx-skins\expee\raw\button-go-down.png +omni_power:gdx-skins\expee\raw\button-go-over.png +omni_power:gdx-skins\expee\raw\button-go.png +omni_power:gdx-skins\expee\raw\button-hover.9.png +omni_power:gdx-skins\expee\raw\button-log-hover.9.png +omni_power:gdx-skins\expee\raw\button-log-pressed.9.png +omni_power:gdx-skins\expee\raw\button-log.9.png +omni_power:gdx-skins\expee\raw\button-off-hover.9.png +omni_power:gdx-skins\expee\raw\button-off-pressed.9.png +omni_power:gdx-skins\expee\raw\button-off.9.png +omni_power:gdx-skins\expee\raw\button-pressed.9.png +omni_power:gdx-skins\expee\raw\button-scroll-down-pressed.png +omni_power:gdx-skins\expee\raw\button-scroll-down.png +omni_power:gdx-skins\expee\raw\button-scroll-left-pressed.png +omni_power:gdx-skins\expee\raw\button-scroll-left.png +omni_power:gdx-skins\expee\raw\button-scroll-right-pressed.png +omni_power:gdx-skins\expee\raw\button-scroll-right.png +omni_power:gdx-skins\expee\raw\button-scroll-up-pressed.png +omni_power:gdx-skins\expee\raw\button-scroll-up.png +omni_power:gdx-skins\expee\raw\button.9.png +omni_power:gdx-skins\expee\raw\checkbox-disabled.png +omni_power:gdx-skins\expee\raw\checkbox-hover.png +omni_power:gdx-skins\expee\raw\checkbox-pressed-hover.png +omni_power:gdx-skins\expee\raw\checkbox-pressed.png +omni_power:gdx-skins\expee\raw\checkbox.png +omni_power:gdx-skins\expee\raw\cursor.png +omni_power:gdx-skins\expee\raw\dialog.9.png +omni_power:gdx-skins\expee\raw\expee-icon.png +omni_power:gdx-skins\expee\raw\explorer-icon.png +omni_power:gdx-skins\expee\raw\font-export.fnt +omni_power:gdx-skins\expee\raw\font-export.png +omni_power:gdx-skins\expee\raw\font-title-export.fnt +omni_power:gdx-skins\expee\raw\font-title-export.png +omni_power:gdx-skins\expee\raw\label-drive.9.png +omni_power:gdx-skins\expee\raw\label-file.9.png +omni_power:gdx-skins\expee\raw\label-folder.9.png +omni_power:gdx-skins\expee\raw\list-selection.9.png +omni_power:gdx-skins\expee\raw\list.9.png +omni_power:gdx-skins\expee\raw\loading-bar-knob.9.png +omni_power:gdx-skins\expee\raw\loading-bar.9.png +omni_power:gdx-skins\expee\raw\loading-bar_0.png +omni_power:gdx-skins\expee\raw\loading-bar_1.png +omni_power:gdx-skins\expee\raw\loading-bar_10.png +omni_power:gdx-skins\expee\raw\loading-bar_11.png +omni_power:gdx-skins\expee\raw\loading-bar_12.png +omni_power:gdx-skins\expee\raw\loading-bar_13.png +omni_power:gdx-skins\expee\raw\loading-bar_14.png +omni_power:gdx-skins\expee\raw\loading-bar_2.png +omni_power:gdx-skins\expee\raw\loading-bar_3.png +omni_power:gdx-skins\expee\raw\loading-bar_4.png +omni_power:gdx-skins\expee\raw\loading-bar_5.png +omni_power:gdx-skins\expee\raw\loading-bar_6.png +omni_power:gdx-skins\expee\raw\loading-bar_7.png +omni_power:gdx-skins\expee\raw\loading-bar_8.png +omni_power:gdx-skins\expee\raw\loading-bar_9.png +omni_power:gdx-skins\expee\raw\loading-window.9.png +omni_power:gdx-skins\expee\raw\logo.png +omni_power:gdx-skins\expee\raw\minus.png +omni_power:gdx-skins\expee\raw\pane-large.9.png +omni_power:gdx-skins\expee\raw\pane.9.png +omni_power:gdx-skins\expee\raw\panel.9.png +omni_power:gdx-skins\expee\raw\plus.png +omni_power:gdx-skins\expee\raw\programs-pressed.9.png +omni_power:gdx-skins\expee\raw\programs.9.png +omni_power:gdx-skins\expee\raw\progressbar-knob.9.png +omni_power:gdx-skins\expee\raw\progressbar.9.png +omni_power:gdx-skins\expee\raw\radio-disabled.png +omni_power:gdx-skins\expee\raw\radio-hover.png +omni_power:gdx-skins\expee\raw\radio-pressed-hover.png +omni_power:gdx-skins\expee\raw\radio-pressed.png +omni_power:gdx-skins\expee\raw\radio.png +omni_power:gdx-skins\expee\raw\README.md +omni_power:gdx-skins\expee\raw\scroll-background-h.9.png +omni_power:gdx-skins\expee\raw\scroll-background-v.9.png +omni_power:gdx-skins\expee\raw\scroll-corner.9.png +omni_power:gdx-skins\expee\raw\scrollbar-knob-h.9.png +omni_power:gdx-skins\expee\raw\scrollbar-knob-v.9.png +omni_power:gdx-skins\expee\raw\select-box.9.png +omni_power:gdx-skins\expee\raw\slider-knob.png +omni_power:gdx-skins\expee\raw\slider.9.png +omni_power:gdx-skins\expee\raw\splitpane-horizontal.png +omni_power:gdx-skins\expee\raw\splitpane-vertical.png +omni_power:gdx-skins\expee\raw\start-menu-bottom.9.png +omni_power:gdx-skins\expee\raw\start-menu-right.9.png +omni_power:gdx-skins\expee\raw\start-menu.9.png +omni_power:gdx-skins\expee\raw\start-pressed.png +omni_power:gdx-skins\expee\raw\start.png +omni_power:gdx-skins\expee\raw\taskbar.png +omni_power:gdx-skins\expee\raw\textfield.9.png +omni_power:gdx-skins\expee\raw\tooltip.9.png +omni_power:gdx-skins\expee\raw\touchpad-knob.png +omni_power:gdx-skins\expee\raw\touchpad.9.png +omni_power:gdx-skins\expee\raw\tray.9.png +omni_power:gdx-skins\expee\raw\wallpaper.png +omni_power:gdx-skins\expee\raw\white.png +omni_power:gdx-skins\expee\raw\window.9.png +omni_power:gdx-skins\expee\skin\expee-ui.atlas +omni_power:gdx-skins\expee\skin\expee-ui.json +omni_power:gdx-skins\expee\skin\expee-ui.png +omni_power:gdx-skins\expee\skin\font-export.fnt +omni_power:gdx-skins\expee\skin\font-title-export.fnt +omni_power:gdx-skins\extras\chronos\Audiowide.txt +omni_power:gdx-skins\extras\chronos\NunitoSans.txt +omni_power:gdx-skins\extras\chronos\PoiretOne.txt +omni_power:gdx-skins\extras\chronos\preview.png +omni_power:gdx-skins\extras\chronos\README.md +omni_power:gdx-skins\extras\kenney-atlas\preview.png +omni_power:gdx-skins\extras\kenney-atlas\README.md +omni_power:gdx-skins\flat\raw\check-on.png +omni_power:gdx-skins\flat\raw\check.png +omni_power:gdx-skins\flat\raw\dot.png +omni_power:gdx-skins\flat\raw\knob-h.png +omni_power:gdx-skins\flat\raw\knob-v.png +omni_power:gdx-skins\flat\raw\line-h.png +omni_power:gdx-skins\flat\raw\line-v.png +omni_power:gdx-skins\flat\raw\pack.json +omni_power:gdx-skins\flat\raw\rect.png +omni_power:gdx-skins\flat\raw\select.9.png +omni_power:gdx-skins\flat\raw\square.png +omni_power:gdx-skins\flat\raw\tree-minus.png +omni_power:gdx-skins\flat\raw\tree-plus.png +omni_power:gdx-skins\flat\raw\window-border.9.png +omni_power:gdx-skins\flat\raw\window-resize.9.png +omni_power:gdx-skins\flat\skin\skin.atlas +omni_power:gdx-skins\flat\skin\skin.json +omni_power:gdx-skins\flat\skin\skin.png +omni_power:gdx-skins\flat-earth\raw\button-close.png +omni_power:gdx-skins\flat-earth\raw\button-pressed.9.png +omni_power:gdx-skins\flat-earth\raw\button-pressed.png +omni_power:gdx-skins\flat-earth\raw\button.9.png +omni_power:gdx-skins\flat-earth\raw\button.png +omni_power:gdx-skins\flat-earth\raw\checkbox-pressed.png +omni_power:gdx-skins\flat-earth\raw\checkbox.png +omni_power:gdx-skins\flat-earth\raw\earth.png +omni_power:gdx-skins\flat-earth\raw\font-button-export.fnt +omni_power:gdx-skins\flat-earth\raw\font-button-export.png +omni_power:gdx-skins\flat-earth\raw\font-button.png +omni_power:gdx-skins\flat-earth\raw\font-export.fnt +omni_power:gdx-skins\flat-earth\raw\font-export.png +omni_power:gdx-skins\flat-earth\raw\font-title-export.fnt +omni_power:gdx-skins\flat-earth\raw\font-title-export.png +omni_power:gdx-skins\flat-earth\raw\font-title.png +omni_power:gdx-skins\flat-earth\raw\font.png +omni_power:gdx-skins\flat-earth\raw\list.9.png +omni_power:gdx-skins\flat-earth\raw\list.png +omni_power:gdx-skins\flat-earth\raw\radio-pressed.png +omni_power:gdx-skins\flat-earth\raw\scrollbar-android.png +omni_power:gdx-skins\flat-earth\raw\scrollbar.png +omni_power:gdx-skins\flat-earth\raw\select-box-pressed.9.png +omni_power:gdx-skins\flat-earth\raw\select-box-pressed.png +omni_power:gdx-skins\flat-earth\raw\select-box.9.png +omni_power:gdx-skins\flat-earth\raw\select-box.png +omni_power:gdx-skins\flat-earth\raw\slider-fancy-knob.png +omni_power:gdx-skins\flat-earth\raw\slider-fancy.png +omni_power:gdx-skins\flat-earth\raw\slider-horizontal.9.png +omni_power:gdx-skins\flat-earth\raw\slider-horizontal.png +omni_power:gdx-skins\flat-earth\raw\slider-knob.png +omni_power:gdx-skins\flat-earth\raw\slider-vertical.9.png +omni_power:gdx-skins\flat-earth\raw\slider-vertical.png +omni_power:gdx-skins\flat-earth\raw\splitpane-horizontal.9.png +omni_power:gdx-skins\flat-earth\raw\splitpane-horizontal.png +omni_power:gdx-skins\flat-earth\raw\splitpane-vertical.9.png +omni_power:gdx-skins\flat-earth\raw\splitpane-vertical.png +omni_power:gdx-skins\flat-earth\raw\textfield.9.png +omni_power:gdx-skins\flat-earth\raw\textfield.png +omni_power:gdx-skins\flat-earth\raw\tooltip.9.png +omni_power:gdx-skins\flat-earth\raw\tooltip.png +omni_power:gdx-skins\flat-earth\raw\touchpad-knob.png +omni_power:gdx-skins\flat-earth\raw\touchpad.png +omni_power:gdx-skins\flat-earth\raw\tree-minus.png +omni_power:gdx-skins\flat-earth\raw\tree-plus.png +omni_power:gdx-skins\flat-earth\raw\white.png +omni_power:gdx-skins\flat-earth\raw\window.9.png +omni_power:gdx-skins\flat-earth\raw\window.png +omni_power:gdx-skins\flat-earth\skin\flat-earth-ui.atlas +omni_power:gdx-skins\flat-earth\skin\flat-earth-ui.json +omni_power:gdx-skins\flat-earth\skin\flat-earth-ui.png +omni_power:gdx-skins\flat-earth\skin\font-button-export.fnt +omni_power:gdx-skins\flat-earth\skin\font-export.fnt +omni_power:gdx-skins\flat-earth\skin\font-title-export.fnt +omni_power:gdx-skins\freezing\raw\button-down.9.png +omni_power:gdx-skins\freezing\raw\button-down.png +omni_power:gdx-skins\freezing\raw\button.9.png +omni_power:gdx-skins\freezing\raw\button.png +omni_power:gdx-skins\freezing\raw\checkbox copy.png +omni_power:gdx-skins\freezing\raw\checkbox.png +omni_power:gdx-skins\freezing\raw\font-button-export.fnt +omni_power:gdx-skins\freezing\raw\font-button-export.png +omni_power:gdx-skins\freezing\raw\font-button.png +omni_power:gdx-skins\freezing\raw\font-export.fnt +omni_power:gdx-skins\freezing\raw\font-export.png +omni_power:gdx-skins\freezing\raw\font-title-export.fnt +omni_power:gdx-skins\freezing\raw\font-title-export.png +omni_power:gdx-skins\freezing\raw\font-title.png +omni_power:gdx-skins\freezing\raw\font.png +omni_power:gdx-skins\freezing\raw\list.9.png +omni_power:gdx-skins\freezing\raw\list.png +omni_power:gdx-skins\freezing\raw\progress-bar-knob.png +omni_power:gdx-skins\freezing\raw\progress-bar.png +omni_power:gdx-skins\freezing\raw\scrollbar-horizontal.9.png +omni_power:gdx-skins\freezing\raw\scrollbar-horizontal.png +omni_power:gdx-skins\freezing\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\freezing\raw\scrollbar-vertical.png +omni_power:gdx-skins\freezing\raw\select-box-pressed.9.png +omni_power:gdx-skins\freezing\raw\select-box-pressed.png +omni_power:gdx-skins\freezing\raw\select-box.9.png +omni_power:gdx-skins\freezing\raw\select-box.png +omni_power:gdx-skins\freezing\raw\slider-horizontal.9.png +omni_power:gdx-skins\freezing\raw\slider-horizontal.png +omni_power:gdx-skins\freezing\raw\slider-knob.png +omni_power:gdx-skins\freezing\raw\slider-vertical.9.png +omni_power:gdx-skins\freezing\raw\slider-vertical.png +omni_power:gdx-skins\freezing\raw\splitpane-horizontal.9.png +omni_power:gdx-skins\freezing\raw\splitpane-horizontal.png +omni_power:gdx-skins\freezing\raw\splitpane-vertical.9.png +omni_power:gdx-skins\freezing\raw\splitpane-vertical.png +omni_power:gdx-skins\freezing\raw\textfield.9.png +omni_power:gdx-skins\freezing\raw\textfield.png +omni_power:gdx-skins\freezing\raw\touchpad-knob.png +omni_power:gdx-skins\freezing\raw\touchpad.png +omni_power:gdx-skins\freezing\raw\tree-minus.png +omni_power:gdx-skins\freezing\raw\tree-plus.png +omni_power:gdx-skins\freezing\raw\white.png +omni_power:gdx-skins\freezing\raw\window.9.png +omni_power:gdx-skins\freezing\raw\window.png +omni_power:gdx-skins\freezing\skin\font-button-export.fnt +omni_power:gdx-skins\freezing\skin\font-export.fnt +omni_power:gdx-skins\freezing\skin\font-title-export.fnt +omni_power:gdx-skins\freezing\skin\freezing-ui.atlas +omni_power:gdx-skins\freezing\skin\freezing-ui.json +omni_power:gdx-skins\freezing\skin\freezing-ui.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_off_disabled_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_off_disabled_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_off_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_off_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_off_pressed_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_on_disabled_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_on_disabled_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_on_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_on_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_check_on_pressed_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_colored_disabled_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_colored_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_colored_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_colored_normal_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_colored_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_default_disabled_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_default_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_default_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_default_normal_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_default_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_off_disabled_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_off_disabled_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_off_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_off_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_off_pressed_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_on_disabled_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_on_disabled_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_on_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_on_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_radio_on_pressed_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_rating_star_off_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_rating_star_off_normal_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_rating_star_off_pressed_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_rating_star_on_focused_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_rating_star_on_normal_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_rating_star_on_pressed_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_off_disabled_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_off_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_off_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_off_normal_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_off_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_on_disabled_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_on_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_on_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_on_normal_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_btn_toggle_on_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_fastscroll_thumb_default_holo.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_fastscroll_thumb_default_holo_h.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_fastscroll_thumb_default_holo_v.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_fastscroll_thumb_pressed_holo.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_fastscroll_thumb_pressed_holo_h.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_fastscroll_thumb_pressed_holo_v.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_ic_navigation_drawer.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_list_activated_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_list_focused_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_list_longpressed_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_list_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_list_selector_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo1.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo2.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo3.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo4.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo5.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo6.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo7.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progressbar_indeterminate_holo8.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progress_bg_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progress_primary_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progress_secondary_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progress_vertical_bg_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_progress_vertical_primary_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_rate_star_big_half_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_rate_star_big_off_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_rate_star_big_on_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_rate_star_small_half_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_rate_star_small_off_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_rate_star_small_on_holo_light.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_control_disabled_holo.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_control_focused_holo.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_control_normal_holo.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_control_pressed_holo.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_primary_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_secondary_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_scrubber_track_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_slider_knob.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_colored_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_colored_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_colored_normal_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_colored_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_default_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_spinner_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_bg_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_bg_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_bg_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_thumb_activated_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_thumb_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_thumb_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_switch_thumb_pressed_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_tab_selected_focused_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_tab_selected_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_tab_selected_pressed_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_tab_unselected_focused_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_tab_unselected_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_tab_unselected_pressed_holo.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textarea_default_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textarea_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textarea_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textfield_activated_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textfield_default_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textfield_disabled_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textfield_disabled_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_textfield_focused_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_text_select_handle_left.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_text_select_handle_middle.png +omni_power:gdx-skins\gdx-holo\raw\apptheme_text_select_handle_right.png +omni_power:gdx-skins\gdx-holo\raw\card.9.png +omni_power:gdx-skins\gdx-holo\raw\cursor.9.png +omni_power:gdx-skins\gdx-holo\raw\default-splitpane-vertical.9.png +omni_power:gdx-skins\gdx-holo\raw\default-splitpane.9.png +omni_power:gdx-skins\gdx-holo\raw\default.fnt +omni_power:gdx-skins\gdx-holo\raw\default.png +omni_power:gdx-skins\gdx-holo\raw\dialog_holo_light.9.png +omni_power:gdx-skins\gdx-holo\raw\holoskin.usl +omni_power:gdx-skins\gdx-holo\raw\pack.json +omni_power:gdx-skins\gdx-holo\raw\selection.png +omni_power:gdx-skins\gdx-holo\raw\tooltip.9.png +omni_power:gdx-skins\gdx-holo\raw\tree-minus.png +omni_power:gdx-skins\gdx-holo\raw\tree-plus.png +omni_power:gdx-skins\gdx-holo\raw\white.png +omni_power:gdx-skins\gdx-holo\skin\default.fnt +omni_power:gdx-skins\gdx-holo\skin\uiskin.atlas +omni_power:gdx-skins\gdx-holo\skin\uiskin.json +omni_power:gdx-skins\gdx-holo\skin\uiskin.png +omni_power:gdx-skins\glassy\raw\button-down.9.png +omni_power:gdx-skins\glassy\raw\button-small-down.9.png +omni_power:gdx-skins\glassy\raw\button-small.9.png +omni_power:gdx-skins\glassy\raw\button.9.png +omni_power:gdx-skins\glassy\raw\checkbox-off.png +omni_power:gdx-skins\glassy\raw\checkbox.png +omni_power:gdx-skins\glassy\raw\font-big-export.fnt +omni_power:gdx-skins\glassy\raw\font-big-export.png +omni_power:gdx-skins\glassy\raw\font-export.fnt +omni_power:gdx-skins\glassy\raw\font-export.png +omni_power:gdx-skins\glassy\raw\horizontal-scroll-bar.9.png +omni_power:gdx-skins\glassy\raw\horizontal-scroll-knob.9.png +omni_power:gdx-skins\glassy\raw\horizontal-split-pane.9.png +omni_power:gdx-skins\glassy\raw\list.9.png +omni_power:gdx-skins\glassy\raw\minus.png +omni_power:gdx-skins\glassy\raw\plus.png +omni_power:gdx-skins\glassy\raw\progress-bar-knob-vertical.9.png +omni_power:gdx-skins\glassy\raw\progress-bar-knob.9.png +omni_power:gdx-skins\glassy\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\glassy\raw\progress-bar.9.png +omni_power:gdx-skins\glassy\raw\radio-button-off.png +omni_power:gdx-skins\glassy\raw\radio-button.png +omni_power:gdx-skins\glassy\raw\select-box-down.9.png +omni_power:gdx-skins\glassy\raw\select-box.9.png +omni_power:gdx-skins\glassy\raw\slider-knob.png +omni_power:gdx-skins\glassy\raw\slider-vertical.9.png +omni_power:gdx-skins\glassy\raw\slider.9.png +omni_power:gdx-skins\glassy\raw\textfield.9.png +omni_power:gdx-skins\glassy\raw\vertical-scroll-bar.9.png +omni_power:gdx-skins\glassy\raw\vertical-scroll-knob.9.png +omni_power:gdx-skins\glassy\raw\vertical-split-pane.9.png +omni_power:gdx-skins\glassy\raw\white.png +omni_power:gdx-skins\glassy\raw\window.9.png +omni_power:gdx-skins\glassy\skin\font-big-export.fnt +omni_power:gdx-skins\glassy\skin\font-export.fnt +omni_power:gdx-skins\glassy\skin\glassy-ui.atlas +omni_power:gdx-skins\glassy\skin\glassy-ui.json +omni_power:gdx-skins\glassy\skin\glassy-ui.png +omni_power:gdx-skins\golden-spiral\raw\button-over.9.png +omni_power:gdx-skins\golden-spiral\raw\button-over.png +omni_power:gdx-skins\golden-spiral\raw\button-pressed.9.png +omni_power:gdx-skins\golden-spiral\raw\button-pressed.png +omni_power:gdx-skins\golden-spiral\raw\button.9.png +omni_power:gdx-skins\golden-spiral\raw\button.png +omni_power:gdx-skins\golden-spiral\raw\checkbox-off-over.png +omni_power:gdx-skins\golden-spiral\raw\checkbox-off-pressed.png +omni_power:gdx-skins\golden-spiral\raw\checkbox-off.png +omni_power:gdx-skins\golden-spiral\raw\checkbox-on-over.png +omni_power:gdx-skins\golden-spiral\raw\checkbox-on-pressed.png +omni_power:gdx-skins\golden-spiral\raw\checkbox-on.png +omni_power:gdx-skins\golden-spiral\raw\cursor-primed.9.png +omni_power:gdx-skins\golden-spiral\raw\cursor-primed.png +omni_power:gdx-skins\golden-spiral\raw\cursor.9.png +omni_power:gdx-skins\golden-spiral\raw\cursor.png +omni_power:gdx-skins\golden-spiral\raw\font-export.fnt +omni_power:gdx-skins\golden-spiral\raw\font-export.png +omni_power:gdx-skins\golden-spiral\raw\font-title-export.fnt +omni_power:gdx-skins\golden-spiral\raw\font-title-export.png +omni_power:gdx-skins\golden-spiral\raw\font-title.png +omni_power:gdx-skins\golden-spiral\raw\font.png +omni_power:gdx-skins\golden-spiral\raw\health-orb-fill.png +omni_power:gdx-skins\golden-spiral\raw\health-orb.9.png +omni_power:gdx-skins\golden-spiral\raw\health-orb.png +omni_power:gdx-skins\golden-spiral\raw\list.9.png +omni_power:gdx-skins\golden-spiral\raw\list.png +omni_power:gdx-skins\golden-spiral\raw\mana-orb-fill.png +omni_power:gdx-skins\golden-spiral\raw\mana-orb.9.png +omni_power:gdx-skins\golden-spiral\raw\mana-orb.png +omni_power:gdx-skins\golden-spiral\raw\minus.png +omni_power:gdx-skins\golden-spiral\raw\pattern.png +omni_power:gdx-skins\golden-spiral\raw\plus.png +omni_power:gdx-skins\golden-spiral\raw\progress-bar-lfe-v.png +omni_power:gdx-skins\golden-spiral\raw\progress-bar-life.png +omni_power:gdx-skins\golden-spiral\raw\progress-bar-mana-v.png +omni_power:gdx-skins\golden-spiral\raw\progress-bar-mana.png +omni_power:gdx-skins\golden-spiral\raw\progress-bar-v.png +omni_power:gdx-skins\golden-spiral\raw\progress-bar.png +omni_power:gdx-skins\golden-spiral\raw\radio-off-over.png +omni_power:gdx-skins\golden-spiral\raw\radio-off-pressed.png +omni_power:gdx-skins\golden-spiral\raw\radio-off.png +omni_power:gdx-skins\golden-spiral\raw\radio-on-over.png +omni_power:gdx-skins\golden-spiral\raw\radio-on-pressed.png +omni_power:gdx-skins\golden-spiral\raw\radio-on.png +omni_power:gdx-skins\golden-spiral\raw\scrollbar-horizontal.9.png +omni_power:gdx-skins\golden-spiral\raw\scrollbar-horizontal.png +omni_power:gdx-skins\golden-spiral\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\golden-spiral\raw\scrollbar-vertical.png +omni_power:gdx-skins\golden-spiral\raw\select-box-bg.9.png +omni_power:gdx-skins\golden-spiral\raw\select-box-bg.png +omni_power:gdx-skins\golden-spiral\raw\select-box-highlighted.9.png +omni_power:gdx-skins\golden-spiral\raw\select-box-highlighted.png +omni_power:gdx-skins\golden-spiral\raw\select-box-pressed.9.png +omni_power:gdx-skins\golden-spiral\raw\select-box-pressed.png +omni_power:gdx-skins\golden-spiral\raw\select-box.9.png +omni_power:gdx-skins\golden-spiral\raw\select-box.png +omni_power:gdx-skins\golden-spiral\raw\slider-knob-over.png +omni_power:gdx-skins\golden-spiral\raw\slider-knob.png +omni_power:gdx-skins\golden-spiral\raw\slider.9.png +omni_power:gdx-skins\golden-spiral\raw\slider.png +omni_power:gdx-skins\golden-spiral\raw\split-pane-horizontal.9.png +omni_power:gdx-skins\golden-spiral\raw\split-pane-horizontal.png +omni_power:gdx-skins\golden-spiral\raw\split-pane-vertical.9.png +omni_power:gdx-skins\golden-spiral\raw\split-pane-vertical.png +omni_power:gdx-skins\golden-spiral\raw\textfield.9.png +omni_power:gdx-skins\golden-spiral\raw\textfield.png +omni_power:gdx-skins\golden-spiral\raw\touchpad.png +omni_power:gdx-skins\golden-spiral\raw\white.png +omni_power:gdx-skins\golden-spiral\raw\window.9.png +omni_power:gdx-skins\golden-spiral\raw\window.png +omni_power:gdx-skins\golden-spiral\skin\font-export.fnt +omni_power:gdx-skins\golden-spiral\skin\font-title-export.fnt +omni_power:gdx-skins\golden-spiral\skin\golden-ui-skin.atlas +omni_power:gdx-skins\golden-spiral\skin\golden-ui-skin.json +omni_power:gdx-skins\golden-spiral\skin\golden-ui-skin.png +omni_power:gdx-skins\kenney-pixel\raw\base-press.9.png +omni_power:gdx-skins\kenney-pixel\raw\base.9.png +omni_power:gdx-skins\kenney-pixel\raw\check-off.png +omni_power:gdx-skins\kenney-pixel\raw\check-on.png +omni_power:gdx-skins\kenney-pixel\raw\check-square.png +omni_power:gdx-skins\kenney-pixel\raw\cursor.9.png +omni_power:gdx-skins\kenney-pixel\raw\dot.png +omni_power:gdx-skins\kenney-pixel\raw\field.9.png +omni_power:gdx-skins\kenney-pixel\raw\knob.png +omni_power:gdx-skins\kenney-pixel\raw\outline-press.9.png +omni_power:gdx-skins\kenney-pixel\raw\outline.9.png +omni_power:gdx-skins\kenney-pixel\raw\pack.json +omni_power:gdx-skins\kenney-pixel\raw\progress-on.png +omni_power:gdx-skins\kenney-pixel\raw\progress-v-on.png +omni_power:gdx-skins\kenney-pixel\raw\progress-v.9.png +omni_power:gdx-skins\kenney-pixel\raw\progress.9.png +omni_power:gdx-skins\kenney-pixel\raw\radio-off.png +omni_power:gdx-skins\kenney-pixel\raw\radio-on.png +omni_power:gdx-skins\kenney-pixel\raw\scroll-v.9.png +omni_power:gdx-skins\kenney-pixel\raw\scroll.9.png +omni_power:gdx-skins\kenney-pixel\raw\select-list.9.png +omni_power:gdx-skins\kenney-pixel\raw\select-press.9.png +omni_power:gdx-skins\kenney-pixel\raw\select.9.png +omni_power:gdx-skins\kenney-pixel\raw\slider-v.9.png +omni_power:gdx-skins\kenney-pixel\raw\slider.9.png +omni_power:gdx-skins\kenney-pixel\raw\square.png +omni_power:gdx-skins\kenney-pixel\raw\tree-minus.png +omni_power:gdx-skins\kenney-pixel\raw\tree-plus.png +omni_power:gdx-skins\kenney-pixel\raw\underline.9.png +omni_power:gdx-skins\kenney-pixel\raw\window.9.png +omni_power:gdx-skins\kenney-pixel\raw\x.png +omni_power:gdx-skins\kenney-pixel\skin\skin.atlas +omni_power:gdx-skins\kenney-pixel\skin\skin.json +omni_power:gdx-skins\kenney-pixel\skin\skin.png +omni_power:gdx-skins\level-plane\raw\button-big-1-down.9.png +omni_power:gdx-skins\level-plane\raw\button-big-1-down.png +omni_power:gdx-skins\level-plane\raw\button-big-1.9.png +omni_power:gdx-skins\level-plane\raw\button-big-1.png +omni_power:gdx-skins\level-plane\raw\button-big-2-down.9.png +omni_power:gdx-skins\level-plane\raw\button-big-2-down.png +omni_power:gdx-skins\level-plane\raw\button-big-2.9.png +omni_power:gdx-skins\level-plane\raw\button-big-2.png +omni_power:gdx-skins\level-plane\raw\button-big-3-down.9.png +omni_power:gdx-skins\level-plane\raw\button-big-3-down.png +omni_power:gdx-skins\level-plane\raw\button-big-3.9.png +omni_power:gdx-skins\level-plane\raw\button-big-3.png +omni_power:gdx-skins\level-plane\raw\button-side.9.png +omni_power:gdx-skins\level-plane\raw\button-side.png +omni_power:gdx-skins\level-plane\raw\button-small.9.png +omni_power:gdx-skins\level-plane\raw\button-small.png +omni_power:gdx-skins\level-plane\raw\button.9.png +omni_power:gdx-skins\level-plane\raw\button.png +omni_power:gdx-skins\level-plane\raw\check-off.png +omni_power:gdx-skins\level-plane\raw\check-on.png +omni_power:gdx-skins\level-plane\raw\font-export.fnt +omni_power:gdx-skins\level-plane\raw\font-export.png +omni_power:gdx-skins\level-plane\raw\font-subtitle-export.fnt +omni_power:gdx-skins\level-plane\raw\font-subtitle-export.png +omni_power:gdx-skins\level-plane\raw\font-subtitle.png +omni_power:gdx-skins\level-plane\raw\font-title-export.fnt +omni_power:gdx-skins\level-plane\raw\font-title-export.png +omni_power:gdx-skins\level-plane\raw\font-title.png +omni_power:gdx-skins\level-plane\raw\font-underline.9.png +omni_power:gdx-skins\level-plane\raw\font-underline.png +omni_power:gdx-skins\level-plane\raw\font.png +omni_power:gdx-skins\level-plane\raw\icon-image.png +omni_power:gdx-skins\level-plane\raw\icon-left-small.png +omni_power:gdx-skins\level-plane\raw\icon-left.png +omni_power:gdx-skins\level-plane\raw\icon-right-small.png +omni_power:gdx-skins\level-plane\raw\icon-right.png +omni_power:gdx-skins\level-plane\raw\image1.png +omni_power:gdx-skins\level-plane\raw\image2.png +omni_power:gdx-skins\level-plane\raw\image3.png +omni_power:gdx-skins\level-plane\raw\image4.png +omni_power:gdx-skins\level-plane\raw\list-bg.9.png +omni_power:gdx-skins\level-plane\raw\list-bg.png +omni_power:gdx-skins\level-plane\raw\list-selection.9.png +omni_power:gdx-skins\level-plane\raw\list-selection.png +omni_power:gdx-skins\level-plane\raw\progress-bar-h.png +omni_power:gdx-skins\level-plane\raw\progress-bar-knob-h.png +omni_power:gdx-skins\level-plane\raw\progress-bar-knob-v.png +omni_power:gdx-skins\level-plane\raw\progress-bar-v.png +omni_power:gdx-skins\level-plane\raw\radio-off.png +omni_power:gdx-skins\level-plane\raw\radio-on.png +omni_power:gdx-skins\level-plane\raw\scrollbar-h-1.png +omni_power:gdx-skins\level-plane\raw\scrollbar-h-2.png +omni_power:gdx-skins\level-plane\raw\scrollbar-h-3.png +omni_power:gdx-skins\level-plane\raw\scrollbar-h.9.png +omni_power:gdx-skins\level-plane\raw\scrollbar-h.png +omni_power:gdx-skins\level-plane\raw\scrollbar-knob-small.9.png +omni_power:gdx-skins\level-plane\raw\scrollbar-knob-small.png +omni_power:gdx-skins\level-plane\raw\scrollbar-v-1.png +omni_power:gdx-skins\level-plane\raw\scrollbar-v-2.png +omni_power:gdx-skins\level-plane\raw\scrollbar-v-3.png +omni_power:gdx-skins\level-plane\raw\scrollbar-v.9.png +omni_power:gdx-skins\level-plane\raw\scrollbar-v.png +omni_power:gdx-skins\level-plane\raw\select-box-1.9.png +omni_power:gdx-skins\level-plane\raw\select-box-1.png +omni_power:gdx-skins\level-plane\raw\select-box-2.9.png +omni_power:gdx-skins\level-plane\raw\select-box-2.png +omni_power:gdx-skins\level-plane\raw\select-box-3.9.png +omni_power:gdx-skins\level-plane\raw\select-box-3.png +omni_power:gdx-skins\level-plane\raw\slider-knob-1.png +omni_power:gdx-skins\level-plane\raw\slider-knob-2.png +omni_power:gdx-skins\level-plane\raw\slider-knob-3.png +omni_power:gdx-skins\level-plane\raw\split-pane.9.png +omni_power:gdx-skins\level-plane\raw\split-pane.png +omni_power:gdx-skins\level-plane\raw\textfield.9.png +omni_power:gdx-skins\level-plane\raw\textfield.png +omni_power:gdx-skins\level-plane\raw\touchpad-knob.png +omni_power:gdx-skins\level-plane\raw\touchpad.png +omni_power:gdx-skins\level-plane\raw\tree-minus.png +omni_power:gdx-skins\level-plane\raw\tree-plus.png +omni_power:gdx-skins\level-plane\raw\white.png +omni_power:gdx-skins\level-plane\raw\window-1.9.png +omni_power:gdx-skins\level-plane\raw\window-1.png +omni_power:gdx-skins\level-plane\raw\window-2.9.png +omni_power:gdx-skins\level-plane\raw\window-2.png +omni_power:gdx-skins\level-plane\raw\window-3.9.png +omni_power:gdx-skins\level-plane\raw\window-3.png +omni_power:gdx-skins\level-plane\skin\font-export.fnt +omni_power:gdx-skins\level-plane\skin\font-subtitle-export.fnt +omni_power:gdx-skins\level-plane\skin\font-title-export.fnt +omni_power:gdx-skins\level-plane\skin\level-plane-ui.atlas +omni_power:gdx-skins\level-plane\skin\level-plane-ui.json +omni_power:gdx-skins\level-plane\skin\level-plane-ui.png +omni_power:gdx-skins\lgdxs\raw\button-big-disabled.9.png +omni_power:gdx-skins\lgdxs\raw\button-big-disabled.png +omni_power:gdx-skins\lgdxs\raw\button-big.9.png +omni_power:gdx-skins\lgdxs\raw\button-big.png +omni_power:gdx-skins\lgdxs\raw\button-disabled.9.png +omni_power:gdx-skins\lgdxs\raw\button-disabled.png +omni_power:gdx-skins\lgdxs\raw\button-oval.9.png +omni_power:gdx-skins\lgdxs\raw\button-oval.png +omni_power:gdx-skins\lgdxs\raw\button-small-disabled.9.png +omni_power:gdx-skins\lgdxs\raw\button-small-disabled.png +omni_power:gdx-skins\lgdxs\raw\button-small.9.png +omni_power:gdx-skins\lgdxs\raw\button-small.png +omni_power:gdx-skins\lgdxs\raw\button.9.png +omni_power:gdx-skins\lgdxs\raw\button.png +omni_power:gdx-skins\lgdxs\raw\corner-bl.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bl.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-bl.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-bl.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-br.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-br.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-tl.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-tl.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-tr.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bm-tr.png +omni_power:gdx-skins\lgdxs\raw\corner-br.9.png +omni_power:gdx-skins\lgdxs\raw\corner-br.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-bl.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-bl.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-br.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-br.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-tl.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-tl.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-tr.9.png +omni_power:gdx-skins\lgdxs\raw\corner-bs-tr.png +omni_power:gdx-skins\lgdxs\raw\corner-tl.9.png +omni_power:gdx-skins\lgdxs\raw\corner-tl.png +omni_power:gdx-skins\lgdxs\raw\corner-tr.9.png +omni_power:gdx-skins\lgdxs\raw\corner-tr.png +omni_power:gdx-skins\lgdxs\raw\endcap-left.9.png +omni_power:gdx-skins\lgdxs\raw\endcap-left.png +omni_power:gdx-skins\lgdxs\raw\endcap-right.9.png +omni_power:gdx-skins\lgdxs\raw\endcap-right.png +omni_power:gdx-skins\lgdxs\raw\endcap-small-left.9.png +omni_power:gdx-skins\lgdxs\raw\endcap-small-left.png +omni_power:gdx-skins\lgdxs\raw\endcap-small-right.9.png +omni_power:gdx-skins\lgdxs\raw\endcap-small-right.png +omni_power:gdx-skins\lgdxs\raw\font-export.fnt +omni_power:gdx-skins\lgdxs\raw\font-export.png +omni_power:gdx-skins\lgdxs\raw\font.png +omni_power:gdx-skins\lgdxs\raw\logo.png +omni_power:gdx-skins\lgdxs\raw\progress-bar-back-horizontal.png +omni_power:gdx-skins\lgdxs\raw\progress-bar-back-vertical.png +omni_power:gdx-skins\lgdxs\raw\progress-bar-horizontal.png +omni_power:gdx-skins\lgdxs\raw\progress-bar-vertical.png +omni_power:gdx-skins\lgdxs\raw\sub-title-font-export.fnt +omni_power:gdx-skins\lgdxs\raw\sub-title-font-export.png +omni_power:gdx-skins\lgdxs\raw\sub-title-font.png +omni_power:gdx-skins\lgdxs\raw\title-font-export.fnt +omni_power:gdx-skins\lgdxs\raw\title-font-export.png +omni_power:gdx-skins\lgdxs\raw\title-font.png +omni_power:gdx-skins\lgdxs\skin\font-export.fnt +omni_power:gdx-skins\lgdxs\skin\lgdxs-ui.atlas +omni_power:gdx-skins\lgdxs\skin\lgdxs-ui.json +omni_power:gdx-skins\lgdxs\skin\lgdxs-ui.png +omni_power:gdx-skins\lgdxs\skin\sub-title-font-export.fnt +omni_power:gdx-skins\lgdxs\skin\title-font-export.fnt +omni_power:gdx-skins\lml\raw\check-off.png +omni_power:gdx-skins\lml\raw\check-on.png +omni_power:gdx-skins\lml\raw\cursor.png +omni_power:gdx-skins\lml\raw\frame.9.png +omni_power:gdx-skins\lml\raw\hack.png +omni_power:gdx-skins\lml\raw\pack.json +omni_power:gdx-skins\lml\raw\progress-background-vertical.9.png +omni_power:gdx-skins\lml\raw\progress-background.9.png +omni_power:gdx-skins\lml\raw\progress-knob-vertical.9.png +omni_power:gdx-skins\lml\raw\progress-knob.9.png +omni_power:gdx-skins\lml\raw\select.9.png +omni_power:gdx-skins\lml\raw\tip.png +omni_power:gdx-skins\lml\raw\tree-minus.png +omni_power:gdx-skins\lml\raw\tree-plus.png +omni_power:gdx-skins\lml\raw\warn.png +omni_power:gdx-skins\lml\raw\white.9.png +omni_power:gdx-skins\lml\raw\window.9.png +omni_power:gdx-skins\lml\skin\hack.fnt +omni_power:gdx-skins\lml\skin\skin.atlas +omni_power:gdx-skins\lml\skin\skin.json +omni_power:gdx-skins\lml\skin\skin.png +omni_power:gdx-skins\metal\raw\button-over.9.png +omni_power:gdx-skins\metal\raw\button-over.png +omni_power:gdx-skins\metal\raw\button-pressed.9.png +omni_power:gdx-skins\metal\raw\button-pressed.png +omni_power:gdx-skins\metal\raw\button.9.png +omni_power:gdx-skins\metal\raw\button.png +omni_power:gdx-skins\metal\raw\checkbox-on-over.png +omni_power:gdx-skins\metal\raw\checkbox-on-pressed.png +omni_power:gdx-skins\metal\raw\checkbox-on.png +omni_power:gdx-skins\metal\raw\checkbox-over.png +omni_power:gdx-skins\metal\raw\checkbox-pressed.png +omni_power:gdx-skins\metal\raw\checkbox.png +omni_power:gdx-skins\metal\raw\close-down.png +omni_power:gdx-skins\metal\raw\close.png +omni_power:gdx-skins\metal\raw\folder.png +omni_power:gdx-skins\metal\raw\font-export.fnt +omni_power:gdx-skins\metal\raw\font-export.png +omni_power:gdx-skins\metal\raw\font.png +omni_power:gdx-skins\metal\raw\list.9.png +omni_power:gdx-skins\metal\raw\list.png +omni_power:gdx-skins\metal\raw\page.9.png +omni_power:gdx-skins\metal\raw\page.png +omni_power:gdx-skins\metal\raw\progress-bar-knob.9.png +omni_power:gdx-skins\metal\raw\progress-bar-knob.png +omni_power:gdx-skins\metal\raw\progress-bar-vertical-knob.9.png +omni_power:gdx-skins\metal\raw\progress-bar-vertical-knob.png +omni_power:gdx-skins\metal\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\metal\raw\progress-bar-vertical.png +omni_power:gdx-skins\metal\raw\progress-bar.9.png +omni_power:gdx-skins\metal\raw\progress-bar.png +omni_power:gdx-skins\metal\raw\radio-on-hover.png +omni_power:gdx-skins\metal\raw\radio-on-pressed.png +omni_power:gdx-skins\metal\raw\radio-on.png +omni_power:gdx-skins\metal\raw\radio-over.png +omni_power:gdx-skins\metal\raw\radio-pressed.png +omni_power:gdx-skins\metal\raw\radio.png +omni_power:gdx-skins\metal\raw\rect.9.png +omni_power:gdx-skins\metal\raw\rect.png +omni_power:gdx-skins\metal\raw\scrollbar-down-pressed.png +omni_power:gdx-skins\metal\raw\scrollbar-down.png +omni_power:gdx-skins\metal\raw\scrollbar-h-knob.9.png +omni_power:gdx-skins\metal\raw\scrollbar-h-knob.png +omni_power:gdx-skins\metal\raw\scrollbar-h.9.png +omni_power:gdx-skins\metal\raw\scrollbar-h.png +omni_power:gdx-skins\metal\raw\scrollbar-left-pressed.png +omni_power:gdx-skins\metal\raw\scrollbar-left.png +omni_power:gdx-skins\metal\raw\scrollbar-right-pressed.png +omni_power:gdx-skins\metal\raw\scrollbar-right.png +omni_power:gdx-skins\metal\raw\scrollbar-up-pressed.png +omni_power:gdx-skins\metal\raw\scrollbar-up.png +omni_power:gdx-skins\metal\raw\scrollbar-v-knob.9.png +omni_power:gdx-skins\metal\raw\scrollbar-v-knob.png +omni_power:gdx-skins\metal\raw\scrollbar-v.9.png +omni_power:gdx-skins\metal\raw\scrollbar-v.png +omni_power:gdx-skins\metal\raw\select-box-pressed.9.png +omni_power:gdx-skins\metal\raw\select-box-pressed.png +omni_power:gdx-skins\metal\raw\select-box.9.png +omni_power:gdx-skins\metal\raw\select-box.png +omni_power:gdx-skins\metal\raw\selection.png +omni_power:gdx-skins\metal\raw\slider-h-before-knob.9.png +omni_power:gdx-skins\metal\raw\slider-h-before-knob.png +omni_power:gdx-skins\metal\raw\slider-h-copy.9.png +omni_power:gdx-skins\metal\raw\slider-h-knob.png +omni_power:gdx-skins\metal\raw\slider-h.9.png +omni_power:gdx-skins\metal\raw\slider-h.png +omni_power:gdx-skins\metal\raw\slider-v-before-knob.9.png +omni_power:gdx-skins\metal\raw\slider-v-before-knob.png +omni_power:gdx-skins\metal\raw\slider-v-knob.png +omni_power:gdx-skins\metal\raw\slider-v.9.png +omni_power:gdx-skins\metal\raw\slider-v.png +omni_power:gdx-skins\metal\raw\spinner-down-over.png +omni_power:gdx-skins\metal\raw\spinner-down-pressed.png +omni_power:gdx-skins\metal\raw\spinner-down.png +omni_power:gdx-skins\metal\raw\spinner-field.9.png +omni_power:gdx-skins\metal\raw\spinner-field.png +omni_power:gdx-skins\metal\raw\spinner-up-over.png +omni_power:gdx-skins\metal\raw\spinner-up-pressed.png +omni_power:gdx-skins\metal\raw\spinner-up.png +omni_power:gdx-skins\metal\raw\split-pane-h.png +omni_power:gdx-skins\metal\raw\split-pane-v.png +omni_power:gdx-skins\metal\raw\white.png +omni_power:gdx-skins\metal\raw\window-icon.png +omni_power:gdx-skins\metal\raw\window-pattern.png +omni_power:gdx-skins\metal\raw\window.9.png +omni_power:gdx-skins\metal\raw\window.png +omni_power:gdx-skins\metal\skin\font-export.fnt +omni_power:gdx-skins\metal\skin\metal-ui.atlas +omni_power:gdx-skins\metal\skin\metal-ui.json +omni_power:gdx-skins\metal\skin\metal-ui.png +omni_power:gdx-skins\neon\raw\button-over.9.png +omni_power:gdx-skins\neon\raw\button-over.png +omni_power:gdx-skins\neon\raw\button-pressed.9.png +omni_power:gdx-skins\neon\raw\button-pressed.png +omni_power:gdx-skins\neon\raw\button.9.png +omni_power:gdx-skins\neon\raw\button.png +omni_power:gdx-skins\neon\raw\checkbox-over.png +omni_power:gdx-skins\neon\raw\checkbox-pressed-over.png +omni_power:gdx-skins\neon\raw\checkbox-pressed.png +omni_power:gdx-skins\neon\raw\checkbox.png +omni_power:gdx-skins\neon\raw\font-export.fnt +omni_power:gdx-skins\neon\raw\font-export.png +omni_power:gdx-skins\neon\raw\font-over-export.fnt +omni_power:gdx-skins\neon\raw\font-over-export.png +omni_power:gdx-skins\neon\raw\font-over.png +omni_power:gdx-skins\neon\raw\font-pressed-export.fnt +omni_power:gdx-skins\neon\raw\font-pressed-export.png +omni_power:gdx-skins\neon\raw\font-pressed.png +omni_power:gdx-skins\neon\raw\font.png +omni_power:gdx-skins\neon\raw\list.9.png +omni_power:gdx-skins\neon\raw\list.png +omni_power:gdx-skins\neon\raw\minus.png +omni_power:gdx-skins\neon\raw\plus.png +omni_power:gdx-skins\neon\raw\progress-bar-big-knob.png +omni_power:gdx-skins\neon\raw\progress-bar-big.9.png +omni_power:gdx-skins\neon\raw\progress-bar-big.png +omni_power:gdx-skins\neon\raw\progress-bar-knob.9.png +omni_power:gdx-skins\neon\raw\progress-bar-knob.png +omni_power:gdx-skins\neon\raw\progress-bar-vertical-knob.9.png +omni_power:gdx-skins\neon\raw\progress-bar-vertical-knob.png +omni_power:gdx-skins\neon\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\neon\raw\progress-bar-vertical.png +omni_power:gdx-skins\neon\raw\progress-bar.9.png +omni_power:gdx-skins\neon\raw\progress-bar.png +omni_power:gdx-skins\neon\raw\radio-over.png +omni_power:gdx-skins\neon\raw\radio-pressed.png +omni_power:gdx-skins\neon\raw\radio.png +omni_power:gdx-skins\neon\raw\scroll-horizontal.9.png +omni_power:gdx-skins\neon\raw\scroll-horizontal.png +omni_power:gdx-skins\neon\raw\scroll-vertical.9.png +omni_power:gdx-skins\neon\raw\scroll-vertical.png +omni_power:gdx-skins\neon\raw\select-box-over.9.png +omni_power:gdx-skins\neon\raw\select-box-over.png +omni_power:gdx-skins\neon\raw\select-box-pressed.9.png +omni_power:gdx-skins\neon\raw\select-box-pressed.png +omni_power:gdx-skins\neon\raw\select-box.9.png +omni_power:gdx-skins\neon\raw\select-box.png +omni_power:gdx-skins\neon\raw\slider-before.9.png +omni_power:gdx-skins\neon\raw\slider-before.png +omni_power:gdx-skins\neon\raw\slider-knob-pressed.png +omni_power:gdx-skins\neon\raw\slider-knob.png +omni_power:gdx-skins\neon\raw\slider-vertical-before.9.png +omni_power:gdx-skins\neon\raw\slider-vertical-before.png +omni_power:gdx-skins\neon\raw\slider-vertical.9.png +omni_power:gdx-skins\neon\raw\slider-vertical.png +omni_power:gdx-skins\neon\raw\slider.9.png +omni_power:gdx-skins\neon\raw\slider.png +omni_power:gdx-skins\neon\raw\split-pane-horizontal.png +omni_power:gdx-skins\neon\raw\split-pane-vertical.png +omni_power:gdx-skins\neon\raw\textfield-login-selected.9.png +omni_power:gdx-skins\neon\raw\textfield-login-selected.png +omni_power:gdx-skins\neon\raw\textfield-login.9.png +omni_power:gdx-skins\neon\raw\textfield-login.png +omni_power:gdx-skins\neon\raw\textfield-password-selected.9.png +omni_power:gdx-skins\neon\raw\textfield-password-selected.png +omni_power:gdx-skins\neon\raw\textfield-password.9.png +omni_power:gdx-skins\neon\raw\textfield-password.png +omni_power:gdx-skins\neon\raw\textfield-selected.9.png +omni_power:gdx-skins\neon\raw\textfield-selected.png +omni_power:gdx-skins\neon\raw\textfield.9.png +omni_power:gdx-skins\neon\raw\textfield.png +omni_power:gdx-skins\neon\raw\tooltip.9.png +omni_power:gdx-skins\neon\raw\tooltip.png +omni_power:gdx-skins\neon\raw\touchpad-knob.png +omni_power:gdx-skins\neon\raw\touchpad.9.png +omni_power:gdx-skins\neon\raw\touchpad.png +omni_power:gdx-skins\neon\raw\white.png +omni_power:gdx-skins\neon\raw\window.9.png +omni_power:gdx-skins\neon\raw\window.png +omni_power:gdx-skins\neon\skin\font-export.fnt +omni_power:gdx-skins\neon\skin\font-over-export.fnt +omni_power:gdx-skins\neon\skin\font-pressed-export.fnt +omni_power:gdx-skins\neon\skin\neon-ui.atlas +omni_power:gdx-skins\neon\skin\neon-ui.json +omni_power:gdx-skins\neon\skin\neon-ui.png +omni_power:gdx-skins\neutralizer\raw\bar-selector.png +omni_power:gdx-skins\neutralizer\raw\button-down-pressed.png +omni_power:gdx-skins\neutralizer\raw\button-down.png +omni_power:gdx-skins\neutralizer\raw\button-pressed.9.png +omni_power:gdx-skins\neutralizer\raw\button-pressed.png +omni_power:gdx-skins\neutralizer\raw\button-up-pressed.png +omni_power:gdx-skins\neutralizer\raw\button-up.png +omni_power:gdx-skins\neutralizer\raw\button.9.png +omni_power:gdx-skins\neutralizer\raw\button.png +omni_power:gdx-skins\neutralizer\raw\check-radio.png +omni_power:gdx-skins\neutralizer\raw\check.png +omni_power:gdx-skins\neutralizer\raw\checkbox-checked-pressed.png +omni_power:gdx-skins\neutralizer\raw\checkbox-checked.png +omni_power:gdx-skins\neutralizer\raw\checkbox-pressed.png +omni_power:gdx-skins\neutralizer\raw\checkbox.png +omni_power:gdx-skins\neutralizer\raw\expand-drop-down.png +omni_power:gdx-skins\neutralizer\raw\font-export.fnt +omni_power:gdx-skins\neutralizer\raw\font-export.png +omni_power:gdx-skins\neutralizer\raw\font-title-export.fnt +omni_power:gdx-skins\neutralizer\raw\font-title-export.png +omni_power:gdx-skins\neutralizer\raw\font-title.png +omni_power:gdx-skins\neutralizer\raw\font.png +omni_power:gdx-skins\neutralizer\raw\icon-arrow-1.png +omni_power:gdx-skins\neutralizer\raw\icon-arrow-2.png +omni_power:gdx-skins\neutralizer\raw\icon-brush.png +omni_power:gdx-skins\neutralizer\raw\icon-close.png +omni_power:gdx-skins\neutralizer\raw\icon-drive.png +omni_power:gdx-skins\neutralizer\raw\icon-file-audio.png +omni_power:gdx-skins\neutralizer\raw\icon-file-image.png +omni_power:gdx-skins\neutralizer\raw\icon-file-pdf.png +omni_power:gdx-skins\neutralizer\raw\icon-file-text.png +omni_power:gdx-skins\neutralizer\raw\icon-folder-new.png +omni_power:gdx-skins\neutralizer\raw\icon-folder-parent.png +omni_power:gdx-skins\neutralizer\raw\icon-folder-star.png +omni_power:gdx-skins\neutralizer\raw\icon-folder.png +omni_power:gdx-skins\neutralizer\raw\icon-left.png +omni_power:gdx-skins\neutralizer\raw\icon-pencil.png +omni_power:gdx-skins\neutralizer\raw\icon-rect.png +omni_power:gdx-skins\neutralizer\raw\icon-refresh.png +omni_power:gdx-skins\neutralizer\raw\icon-right.png +omni_power:gdx-skins\neutralizer\raw\icon-settings.png +omni_power:gdx-skins\neutralizer\raw\icon-star-outline.png +omni_power:gdx-skins\neutralizer\raw\icon-star.png +omni_power:gdx-skins\neutralizer\raw\icon-trash.png +omni_power:gdx-skins\neutralizer\raw\list.9.png +omni_power:gdx-skins\neutralizer\raw\list.png +omni_power:gdx-skins\neutralizer\raw\menu-bar.9.png +omni_power:gdx-skins\neutralizer\raw\menu-bar.png +omni_power:gdx-skins\neutralizer\raw\menu-button-down.9.png +omni_power:gdx-skins\neutralizer\raw\menu-button-down.png +omni_power:gdx-skins\neutralizer\raw\menu-button-over.9.png +omni_power:gdx-skins\neutralizer\raw\menu-button-over.png +omni_power:gdx-skins\neutralizer\raw\menu-button.9.png +omni_power:gdx-skins\neutralizer\raw\menu-button.png +omni_power:gdx-skins\neutralizer\raw\menu.9.png +omni_power:gdx-skins\neutralizer\raw\menu.png +omni_power:gdx-skins\neutralizer\raw\panel.9.png +omni_power:gdx-skins\neutralizer\raw\panel.png +omni_power:gdx-skins\neutralizer\raw\panel2.9.png +omni_power:gdx-skins\neutralizer\raw\panel2.png +omni_power:gdx-skins\neutralizer\raw\progress-bar-horizontal.9.png +omni_power:gdx-skins\neutralizer\raw\progress-bar-horizontal.png +omni_power:gdx-skins\neutralizer\raw\progress-bar-knob-horizontal.png +omni_power:gdx-skins\neutralizer\raw\progress-bar-knob-vertical.png +omni_power:gdx-skins\neutralizer\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\neutralizer\raw\progress-bar-vertical.png +omni_power:gdx-skins\neutralizer\raw\radio-checked-pressed.png +omni_power:gdx-skins\neutralizer\raw\radio-checked.png +omni_power:gdx-skins\neutralizer\raw\radio-pressed.png +omni_power:gdx-skins\neutralizer\raw\radio.png +omni_power:gdx-skins\neutralizer\raw\scrollbar-horizontal.9.png +omni_power:gdx-skins\neutralizer\raw\scrollbar-horizontal.png +omni_power:gdx-skins\neutralizer\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\neutralizer\raw\scrollbar-vertical.png +omni_power:gdx-skins\neutralizer\raw\select-box-pressed.9.png +omni_power:gdx-skins\neutralizer\raw\select-box-pressed.png +omni_power:gdx-skins\neutralizer\raw\select-box.9.png +omni_power:gdx-skins\neutralizer\raw\select-box.png +omni_power:gdx-skins\neutralizer\raw\selection.9.png +omni_power:gdx-skins\neutralizer\raw\selection.png +omni_power:gdx-skins\neutralizer\raw\slider-knob-horizontal.png +omni_power:gdx-skins\neutralizer\raw\slider-knob-pressed-horizontal.png +omni_power:gdx-skins\neutralizer\raw\slider-knob-pressed-vertical.png +omni_power:gdx-skins\neutralizer\raw\slider-knob-vertical.png +omni_power:gdx-skins\neutralizer\raw\spinner-down.png +omni_power:gdx-skins\neutralizer\raw\spinner-up.png +omni_power:gdx-skins\neutralizer\raw\splitpane-horizontal-pressed.png +omni_power:gdx-skins\neutralizer\raw\splitpane-horizontal.png +omni_power:gdx-skins\neutralizer\raw\splitpane-vertical-pressed.png +omni_power:gdx-skins\neutralizer\raw\splitpane-vertical.png +omni_power:gdx-skins\neutralizer\raw\tab-pressed.9.png +omni_power:gdx-skins\neutralizer\raw\tab-pressed.png +omni_power:gdx-skins\neutralizer\raw\tab.9.png +omni_power:gdx-skins\neutralizer\raw\tab.png +omni_power:gdx-skins\neutralizer\raw\textfield-pressed.9.png +omni_power:gdx-skins\neutralizer\raw\textfield-pressed.png +omni_power:gdx-skins\neutralizer\raw\textfield.9.png +omni_power:gdx-skins\neutralizer\raw\textfield.png +omni_power:gdx-skins\neutralizer\raw\title-bg.9.png +omni_power:gdx-skins\neutralizer\raw\title-bg.png +omni_power:gdx-skins\neutralizer\raw\touchpad-knob.png +omni_power:gdx-skins\neutralizer\raw\touchpad.png +omni_power:gdx-skins\neutralizer\raw\tree-minus.png +omni_power:gdx-skins\neutralizer\raw\tree-plus.png +omni_power:gdx-skins\neutralizer\raw\white.png +omni_power:gdx-skins\neutralizer\raw\window.9.png +omni_power:gdx-skins\neutralizer\raw\window.png +omni_power:gdx-skins\neutralizer\skin\font-export.fnt +omni_power:gdx-skins\neutralizer\skin\font-title-export.fnt +omni_power:gdx-skins\neutralizer\skin\neutralizer-ui.atlas +omni_power:gdx-skins\neutralizer\skin\neutralizer-ui.json +omni_power:gdx-skins\neutralizer\skin\neutralizer-ui.png +omni_power:gdx-skins\number-cruncher\raw\bg.9.png +omni_power:gdx-skins\number-cruncher\raw\bg.png +omni_power:gdx-skins\number-cruncher\raw\button-large-pressed.9.png +omni_power:gdx-skins\number-cruncher\raw\button-large-pressed.png +omni_power:gdx-skins\number-cruncher\raw\button-large.9.png +omni_power:gdx-skins\number-cruncher\raw\button-large.png +omni_power:gdx-skins\number-cruncher\raw\button-pressed.9.png +omni_power:gdx-skins\number-cruncher\raw\button-pressed.png +omni_power:gdx-skins\number-cruncher\raw\button.9.png +omni_power:gdx-skins\number-cruncher\raw\button.png +omni_power:gdx-skins\number-cruncher\raw\font-button-export.fnt +omni_power:gdx-skins\number-cruncher\raw\font-button-export.png +omni_power:gdx-skins\number-cruncher\raw\font-button.png +omni_power:gdx-skins\number-cruncher\raw\font-export.fnt +omni_power:gdx-skins\number-cruncher\raw\font-export.png +omni_power:gdx-skins\number-cruncher\raw\font-lcd-export.fnt +omni_power:gdx-skins\number-cruncher\raw\font-lcd-export.png +omni_power:gdx-skins\number-cruncher\raw\font-lcd.png +omni_power:gdx-skins\number-cruncher\raw\font-title-export.fnt +omni_power:gdx-skins\number-cruncher\raw\font-title-export.png +omni_power:gdx-skins\number-cruncher\raw\font-title.png +omni_power:gdx-skins\number-cruncher\raw\font.png +omni_power:gdx-skins\number-cruncher\raw\lcd.9.png +omni_power:gdx-skins\number-cruncher\raw\lcd.png +omni_power:gdx-skins\number-cruncher\raw\panel-black.9.png +omni_power:gdx-skins\number-cruncher\raw\panel-black.png +omni_power:gdx-skins\number-cruncher\raw\panel.9.png +omni_power:gdx-skins\number-cruncher\raw\panel.png +omni_power:gdx-skins\number-cruncher\raw\solar-panel.png +omni_power:gdx-skins\number-cruncher\skin\font-button-export.fnt +omni_power:gdx-skins\number-cruncher\skin\font-export.fnt +omni_power:gdx-skins\number-cruncher\skin\font-lcd-export.fnt +omni_power:gdx-skins\number-cruncher\skin\font-title-export.fnt +omni_power:gdx-skins\number-cruncher\skin\number-cruncher-ui.atlas +omni_power:gdx-skins\number-cruncher\skin\number-cruncher-ui.json +omni_power:gdx-skins\number-cruncher\skin\number-cruncher-ui.png +omni_power:gdx-skins\orange\raw\bleached-peach.png +omni_power:gdx-skins\orange\raw\button-maroon-down.9.png +omni_power:gdx-skins\orange\raw\button-maroon.9.png +omni_power:gdx-skins\orange\raw\button-orange-down.9.png +omni_power:gdx-skins\orange\raw\button-orange.9.png +omni_power:gdx-skins\orange\raw\check-box-off.png +omni_power:gdx-skins\orange\raw\check-box.png +omni_power:gdx-skins\orange\raw\close-button-alt-down.png +omni_power:gdx-skins\orange\raw\close-button-alt-highlight.png +omni_power:gdx-skins\orange\raw\close-button-alt.png +omni_power:gdx-skins\orange\raw\close-button-down.png +omni_power:gdx-skins\orange\raw\close-button-highlight.png +omni_power:gdx-skins\orange\raw\close-button.png +omni_power:gdx-skins\orange\raw\cursor.9.png +omni_power:gdx-skins\orange\raw\dark-dim-orange.png +omni_power:gdx-skins\orange\raw\dark-maroon.png +omni_power:gdx-skins\orange\raw\dark-orange.png +omni_power:gdx-skins\orange\raw\dim-orange.png +omni_power:gdx-skins\orange\raw\folder-open.png +omni_power:gdx-skins\orange\raw\folder.png +omni_power:gdx-skins\orange\raw\font-export.fnt +omni_power:gdx-skins\orange\raw\font-export.png +omni_power:gdx-skins\orange\raw\font-title-export.fnt +omni_power:gdx-skins\orange\raw\font-title-export.png +omni_power:gdx-skins\orange\raw\image-delete-down.png +omni_power:gdx-skins\orange\raw\image-delete.png +omni_power:gdx-skins\orange\raw\image-duplicate-down.png +omni_power:gdx-skins\orange\raw\image-duplicate.png +omni_power:gdx-skins\orange\raw\image-help-down.png +omni_power:gdx-skins\orange\raw\image-help.png +omni_power:gdx-skins\orange\raw\image-info-down.png +omni_power:gdx-skins\orange\raw\image-info.png +omni_power:gdx-skins\orange\raw\image-left-down.png +omni_power:gdx-skins\orange\raw\image-left.png +omni_power:gdx-skins\orange\raw\image-minus-down.png +omni_power:gdx-skins\orange\raw\image-minus.png +omni_power:gdx-skins\orange\raw\image-music-down.png +omni_power:gdx-skins\orange\raw\image-music-off-copy-down.png +omni_power:gdx-skins\orange\raw\image-music-off.png +omni_power:gdx-skins\orange\raw\image-music.png +omni_power:gdx-skins\orange\raw\image-plus-down.png +omni_power:gdx-skins\orange\raw\image-plus.png +omni_power:gdx-skins\orange\raw\image-right-down.png +omni_power:gdx-skins\orange\raw\image-right.png +omni_power:gdx-skins\orange\raw\image-settings-down.png +omni_power:gdx-skins\orange\raw\image-settings.png +omni_power:gdx-skins\orange\raw\image-sound-down.png +omni_power:gdx-skins\orange\raw\image-sound-off-down.png +omni_power:gdx-skins\orange\raw\image-sound-off.png +omni_power:gdx-skins\orange\raw\image-sound.png +omni_power:gdx-skins\orange\raw\maroon.png +omni_power:gdx-skins\orange\raw\menu-button-dark-maroon.9.png +omni_power:gdx-skins\orange\raw\menu-button-dark-orange.9.png +omni_power:gdx-skins\orange\raw\menu-button-maroon.9.png +omni_power:gdx-skins\orange\raw\menu-button-orange.9.png +omni_power:gdx-skins\orange\raw\menu-center.9.png +omni_power:gdx-skins\orange\raw\menu-down-center.9.png +omni_power:gdx-skins\orange\raw\menu-down-down.9.png +omni_power:gdx-skins\orange\raw\menu-down-left.9.png +omni_power:gdx-skins\orange\raw\menu-down-middle.9.png +omni_power:gdx-skins\orange\raw\menu-down-right.9.png +omni_power:gdx-skins\orange\raw\menu-down-up.9.png +omni_power:gdx-skins\orange\raw\menu-down.9.png +omni_power:gdx-skins\orange\raw\menu-left.9.png +omni_power:gdx-skins\orange\raw\menu-middle.9.png +omni_power:gdx-skins\orange\raw\menu-right.9.png +omni_power:gdx-skins\orange\raw\menu-up.9.png +omni_power:gdx-skins\orange\raw\minus.png +omni_power:gdx-skins\orange\raw\old.png +omni_power:gdx-skins\orange\raw\old1.png +omni_power:gdx-skins\orange\raw\old2.png +omni_power:gdx-skins\orange\raw\orange.png +omni_power:gdx-skins\orange\raw\panel-maroon.9.png +omni_power:gdx-skins\orange\raw\panel-orange.9.png +omni_power:gdx-skins\orange\raw\panel-peach.9.png +omni_power:gdx-skins\orange\raw\peach.png +omni_power:gdx-skins\orange\raw\plus.png +omni_power:gdx-skins\orange\raw\progress-bar-before-knob.9.png +omni_power:gdx-skins\orange\raw\progress-bar-vertical-before-knob.9.png +omni_power:gdx-skins\orange\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\orange\raw\progress-bar.9.png +omni_power:gdx-skins\orange\raw\radio-button-off.png +omni_power:gdx-skins\orange\raw\radio-button.png +omni_power:gdx-skins\orange\raw\README.md +omni_power:gdx-skins\orange\raw\round-dark-maroon.9.png +omni_power:gdx-skins\orange\raw\round-dark-orange.9.png +omni_power:gdx-skins\orange\raw\round-maroon.9.png +omni_power:gdx-skins\orange\raw\round-orange.9.png +omni_power:gdx-skins\orange\raw\scrollbar-android-knob.9.png +omni_power:gdx-skins\orange\raw\scrollbar-android-vertical-knob.9.png +omni_power:gdx-skins\orange\raw\scrollbar-android-vertical.9.png +omni_power:gdx-skins\orange\raw\scrollbar-android.9.png +omni_power:gdx-skins\orange\raw\scrollbar-knob.9.png +omni_power:gdx-skins\orange\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\orange\raw\scrollbar.9.png +omni_power:gdx-skins\orange\raw\select-box-down.9.png +omni_power:gdx-skins\orange\raw\select-box.9.png +omni_power:gdx-skins\orange\raw\slider-bar-knob.png +omni_power:gdx-skins\orange\raw\spinner-minus-down.9.png +omni_power:gdx-skins\orange\raw\spinner-minus.9.png +omni_power:gdx-skins\orange\raw\spinner-plus-down.9.png +omni_power:gdx-skins\orange\raw\spinner-plus.9.png +omni_power:gdx-skins\orange\raw\spinner-text-field-down.9.png +omni_power:gdx-skins\orange\raw\spinner-text-field.9.png +omni_power:gdx-skins\orange\raw\splitpane.9.png +omni_power:gdx-skins\orange\raw\switch-off.png +omni_power:gdx-skins\orange\raw\switch-text-off.png +omni_power:gdx-skins\orange\raw\switch-text.png +omni_power:gdx-skins\orange\raw\switch.png +omni_power:gdx-skins\orange\raw\textfield-down.9.png +omni_power:gdx-skins\orange\raw\textfield-login-down.9.png +omni_power:gdx-skins\orange\raw\textfield-login.9.png +omni_power:gdx-skins\orange\raw\textfield-password-down.9.png +omni_power:gdx-skins\orange\raw\textfield-password.9.png +omni_power:gdx-skins\orange\raw\textfield-search-down.9.png +omni_power:gdx-skins\orange\raw\textfield-search.9.png +omni_power:gdx-skins\orange\raw\textfield.9.png +omni_power:gdx-skins\orange\raw\touchpad-knob.png +omni_power:gdx-skins\orange\raw\touchpad.9.png +omni_power:gdx-skins\orange\raw\white.png +omni_power:gdx-skins\orange\raw\window-large.9.png +omni_power:gdx-skins\orange\raw\window-maroon.9.png +omni_power:gdx-skins\orange\raw\window-orange.9.png +omni_power:gdx-skins\orange\raw\window-peach.9.png +omni_power:gdx-skins\orange\skin\font-export.fnt +omni_power:gdx-skins\orange\skin\font-title-export.fnt +omni_power:gdx-skins\orange\skin\uiskin.atlas +omni_power:gdx-skins\orange\skin\uiskin.json +omni_power:gdx-skins\orange\skin\uiskin.png +omni_power:gdx-skins\pixthulhu\raw\button-arcade-pressed.9.png +omni_power:gdx-skins\pixthulhu\raw\button-arcade-pressed.png +omni_power:gdx-skins\pixthulhu\raw\button-arcade.9.png +omni_power:gdx-skins\pixthulhu\raw\button-arcade.png +omni_power:gdx-skins\pixthulhu\raw\button-pressed.9.png +omni_power:gdx-skins\pixthulhu\raw\button-pressed.png +omni_power:gdx-skins\pixthulhu\raw\button.9.png +omni_power:gdx-skins\pixthulhu\raw\button.png +omni_power:gdx-skins\pixthulhu\raw\checkbox-off.png +omni_power:gdx-skins\pixthulhu\raw\checkbox-on.png +omni_power:gdx-skins\pixthulhu\raw\eye-1.png +omni_power:gdx-skins\pixthulhu\raw\eye-2.png +omni_power:gdx-skins\pixthulhu\raw\font-export.fnt +omni_power:gdx-skins\pixthulhu\raw\font-export.png +omni_power:gdx-skins\pixthulhu\raw\font-subtitle-export.fnt +omni_power:gdx-skins\pixthulhu\raw\font-subtitle-export.png +omni_power:gdx-skins\pixthulhu\raw\font-subtitle.png +omni_power:gdx-skins\pixthulhu\raw\font-title-export.fnt +omni_power:gdx-skins\pixthulhu\raw\font-title-export.png +omni_power:gdx-skins\pixthulhu\raw\font-title.png +omni_power:gdx-skins\pixthulhu\raw\font.png +omni_power:gdx-skins\pixthulhu\raw\list.9.png +omni_power:gdx-skins\pixthulhu\raw\list.png +omni_power:gdx-skins\pixthulhu\raw\logo.png +omni_power:gdx-skins\pixthulhu\raw\pixthulhu.png +omni_power:gdx-skins\pixthulhu\raw\portrait.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-health-knob.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-health.9.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-health.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-horizontal-knob.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-horizontal.9.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-horizontal.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-mana-knob.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-mana.9.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-mana.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-vertical-knob.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\pixthulhu\raw\progress-bar-vertical.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-horizontal-knob.9.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-horizontal-knob.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-horizontal.9.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-horizontal.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-vertical-knob.9.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-vertical-knob.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\pixthulhu\raw\scrollbar-vertical.png +omni_power:gdx-skins\pixthulhu\raw\select-box.9.png +omni_power:gdx-skins\pixthulhu\raw\select-box.png +omni_power:gdx-skins\pixthulhu\raw\slider-horizontal.9.png +omni_power:gdx-skins\pixthulhu\raw\slider-horizontal.png +omni_power:gdx-skins\pixthulhu\raw\slider-knob.png +omni_power:gdx-skins\pixthulhu\raw\slider-vertical.9.png +omni_power:gdx-skins\pixthulhu\raw\slider-vertical.png +omni_power:gdx-skins\pixthulhu\raw\split-pane-horizontal.9.png +omni_power:gdx-skins\pixthulhu\raw\split-pane-horizontal.png +omni_power:gdx-skins\pixthulhu\raw\split-pane-vertical.9.png +omni_power:gdx-skins\pixthulhu\raw\split-pane-vertical.png +omni_power:gdx-skins\pixthulhu\raw\textfield.9.png +omni_power:gdx-skins\pixthulhu\raw\textfield.png +omni_power:gdx-skins\pixthulhu\raw\touchpad-knob.png +omni_power:gdx-skins\pixthulhu\raw\touchpad.png +omni_power:gdx-skins\pixthulhu\raw\white.png +omni_power:gdx-skins\pixthulhu\raw\window-round.9.png +omni_power:gdx-skins\pixthulhu\raw\window-round.png +omni_power:gdx-skins\pixthulhu\raw\window.9.png +omni_power:gdx-skins\pixthulhu\raw\window.png +omni_power:gdx-skins\pixthulhu\skin\font-export.fnt +omni_power:gdx-skins\pixthulhu\skin\font-subtitle-export.fnt +omni_power:gdx-skins\pixthulhu\skin\font-title-export.fnt +omni_power:gdx-skins\pixthulhu\skin\pixthulhu-ui.atlas +omni_power:gdx-skins\pixthulhu\skin\pixthulhu-ui.json +omni_power:gdx-skins\pixthulhu\skin\pixthulhu-ui.png +omni_power:gdx-skins\plain-james\raw\checkbox-on.png +omni_power:gdx-skins\plain-james\raw\checkbox.png +omni_power:gdx-skins\plain-james\raw\cursor.9.png +omni_power:gdx-skins\plain-james\raw\font-export.fnt +omni_power:gdx-skins\plain-james\raw\font-export.png +omni_power:gdx-skins\plain-james\raw\font-title-export.fnt +omni_power:gdx-skins\plain-james\raw\font-title-export.png +omni_power:gdx-skins\plain-james\raw\horizontal-split-pane.9.png +omni_power:gdx-skins\plain-james\raw\list.9.png +omni_power:gdx-skins\plain-james\raw\minus.png +omni_power:gdx-skins\plain-james\raw\plus.png +omni_power:gdx-skins\plain-james\raw\progress-bar-fill-vert.png +omni_power:gdx-skins\plain-james\raw\progress-bar-fill.png +omni_power:gdx-skins\plain-james\raw\progress-bar.9.png +omni_power:gdx-skins\plain-james\raw\radio-on.png +omni_power:gdx-skins\plain-james\raw\radio.png +omni_power:gdx-skins\plain-james\raw\README.md +omni_power:gdx-skins\plain-james\raw\round-gray.9.png +omni_power:gdx-skins\plain-james\raw\round-white-small.9.png +omni_power:gdx-skins\plain-james\raw\round-white.9.png +omni_power:gdx-skins\plain-james\raw\selectbox.9.png +omni_power:gdx-skins\plain-james\raw\selection.9.png +omni_power:gdx-skins\plain-james\raw\slider-horizontal.9.png +omni_power:gdx-skins\plain-james\raw\slider-knob.png +omni_power:gdx-skins\plain-james\raw\slider-vertical.9.png +omni_power:gdx-skins\plain-james\raw\textfield.9.png +omni_power:gdx-skins\plain-james\raw\touchpad-knob.png +omni_power:gdx-skins\plain-james\raw\touchpad.png +omni_power:gdx-skins\plain-james\raw\vertical-split-pane.9.png +omni_power:gdx-skins\plain-james\raw\white.png +omni_power:gdx-skins\plain-james\raw\window.9.png +omni_power:gdx-skins\plain-james\skin\font-export.fnt +omni_power:gdx-skins\plain-james\skin\font-title-export.fnt +omni_power:gdx-skins\plain-james\skin\plain-james-ui.atlas +omni_power:gdx-skins\plain-james\skin\plain-james-ui.json +omni_power:gdx-skins\plain-james\skin\plain-james-ui.png +omni_power:gdx-skins\quantum-horizon\raw\battery.png +omni_power:gdx-skins\quantum-horizon\raw\button-pressed.9.png +omni_power:gdx-skins\quantum-horizon\raw\button-pressed.png +omni_power:gdx-skins\quantum-horizon\raw\button.9.png +omni_power:gdx-skins\quantum-horizon\raw\button.png +omni_power:gdx-skins\quantum-horizon\raw\font-export.fnt +omni_power:gdx-skins\quantum-horizon\raw\font-export.png +omni_power:gdx-skins\quantum-horizon\raw\font-title-export.fnt +omni_power:gdx-skins\quantum-horizon\raw\font-title-export.png +omni_power:gdx-skins\quantum-horizon\raw\font-title.png +omni_power:gdx-skins\quantum-horizon\raw\font.png +omni_power:gdx-skins\quantum-horizon\raw\globe_1.png +omni_power:gdx-skins\quantum-horizon\raw\globe_2.png +omni_power:gdx-skins\quantum-horizon\raw\globe_3.png +omni_power:gdx-skins\quantum-horizon\raw\globe_4.png +omni_power:gdx-skins\quantum-horizon\raw\globe_5.png +omni_power:gdx-skins\quantum-horizon\raw\list.9.png +omni_power:gdx-skins\quantum-horizon\raw\list.png +omni_power:gdx-skins\quantum-horizon\raw\minus.png +omni_power:gdx-skins\quantum-horizon\raw\pattern-bg.png +omni_power:gdx-skins\quantum-horizon\raw\plus.png +omni_power:gdx-skins\quantum-horizon\raw\progress-bar-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\progress-bar-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\radio-button-clear.png +omni_power:gdx-skins\quantum-horizon\raw\radio-button-off.png +omni_power:gdx-skins\quantum-horizon\raw\radio-button-over.png +omni_power:gdx-skins\quantum-horizon\raw\radio-button.png +omni_power:gdx-skins\quantum-horizon\raw\scroll-bar-back-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\scroll-bar-back-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\scroll-bar-knob-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\scroll-bar-knob-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\select-box-pressed.9.png +omni_power:gdx-skins\quantum-horizon\raw\select-box-pressed.png +omni_power:gdx-skins\quantum-horizon\raw\select-box.9.png +omni_power:gdx-skins\quantum-horizon\raw\select-box.png +omni_power:gdx-skins\quantum-horizon\raw\signal-bar-1.png +omni_power:gdx-skins\quantum-horizon\raw\signal-bar-2.png +omni_power:gdx-skins\quantum-horizon\raw\signal-bar-3.png +omni_power:gdx-skins\quantum-horizon\raw\slider-horizontal.9.png +omni_power:gdx-skins\quantum-horizon\raw\slider-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\slider-knob-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\slider-knob-over-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\slider-knob-over-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\slider-knob-pressed-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\slider-knob-pressed-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\slider-knob-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\slider-vertical.9.png +omni_power:gdx-skins\quantum-horizon\raw\slider-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\split-pane-horizontal.9.png +omni_power:gdx-skins\quantum-horizon\raw\split-pane-horizontal.png +omni_power:gdx-skins\quantum-horizon\raw\split-pane-vertical.9.png +omni_power:gdx-skins\quantum-horizon\raw\split-pane-vertical.png +omni_power:gdx-skins\quantum-horizon\raw\style-bg.png +omni_power:gdx-skins\quantum-horizon\raw\textfield.9.png +omni_power:gdx-skins\quantum-horizon\raw\textfield.png +omni_power:gdx-skins\quantum-horizon\raw\tooltip.9.png +omni_power:gdx-skins\quantum-horizon\raw\tooltip.png +omni_power:gdx-skins\quantum-horizon\raw\touchpad-knob.png +omni_power:gdx-skins\quantum-horizon\raw\touchpad.png +omni_power:gdx-skins\quantum-horizon\raw\white.png +omni_power:gdx-skins\quantum-horizon\raw\window.9.png +omni_power:gdx-skins\quantum-horizon\raw\window.png +omni_power:gdx-skins\quantum-horizon\skin\font-export.fnt +omni_power:gdx-skins\quantum-horizon\skin\font-title-export.fnt +omni_power:gdx-skins\quantum-horizon\skin\quantum-horizon-ui.atlas +omni_power:gdx-skins\quantum-horizon\skin\quantum-horizon-ui.json +omni_power:gdx-skins\quantum-horizon\skin\quantum-horizon-ui.png +omni_power:gdx-skins\rainbow\raw\bg.9.png +omni_power:gdx-skins\rainbow\raw\bg.png +omni_power:gdx-skins\rainbow\raw\button-close-over.png +omni_power:gdx-skins\rainbow\raw\button-close.png +omni_power:gdx-skins\rainbow\raw\button-over.9.png +omni_power:gdx-skins\rainbow\raw\button-over.png +omni_power:gdx-skins\rainbow\raw\button-pressed-over.9.png +omni_power:gdx-skins\rainbow\raw\button-pressed-over.png +omni_power:gdx-skins\rainbow\raw\button-pressed.9.png +omni_power:gdx-skins\rainbow\raw\button-pressed.png +omni_power:gdx-skins\rainbow\raw\button-small-pressed.9.png +omni_power:gdx-skins\rainbow\raw\button-small-pressed.png +omni_power:gdx-skins\rainbow\raw\button-small.9.png +omni_power:gdx-skins\rainbow\raw\button-small.png +omni_power:gdx-skins\rainbow\raw\button.9.png +omni_power:gdx-skins\rainbow\raw\button.png +omni_power:gdx-skins\rainbow\raw\check-heart-over.png +omni_power:gdx-skins\rainbow\raw\check-heart-pressed-over.png +omni_power:gdx-skins\rainbow\raw\check-heart-pressed.png +omni_power:gdx-skins\rainbow\raw\check-heart.png +omni_power:gdx-skins\rainbow\raw\check-star-over.png +omni_power:gdx-skins\rainbow\raw\check-star-pressed-over.png +omni_power:gdx-skins\rainbow\raw\check-star-pressed.png +omni_power:gdx-skins\rainbow\raw\check-star.png +omni_power:gdx-skins\rainbow\raw\clear.png +omni_power:gdx-skins\rainbow\raw\cloud-1.png +omni_power:gdx-skins\rainbow\raw\cloud-2.png +omni_power:gdx-skins\rainbow\raw\font-button-export.fnt +omni_power:gdx-skins\rainbow\raw\font-button-export.png +omni_power:gdx-skins\rainbow\raw\font-button.png +omni_power:gdx-skins\rainbow\raw\font-export.fnt +omni_power:gdx-skins\rainbow\raw\font-export.png +omni_power:gdx-skins\rainbow\raw\font-title-export.fnt +omni_power:gdx-skins\rainbow\raw\font-title-export.png +omni_power:gdx-skins\rainbow\raw\font-title.png +omni_power:gdx-skins\rainbow\raw\font.png +omni_power:gdx-skins\rainbow\raw\hover.png +omni_power:gdx-skins\rainbow\raw\list.9.png +omni_power:gdx-skins\rainbow\raw\list.png +omni_power:gdx-skins\rainbow\raw\progress-bar-background.9.png +omni_power:gdx-skins\rainbow\raw\progress-bar-before.png +omni_power:gdx-skins\rainbow\raw\progress-bar-cloud-back.png +omni_power:gdx-skins\rainbow\raw\progress-bar-cloud.png +omni_power:gdx-skins\rainbow\raw\progress-bar-heart-back.png +omni_power:gdx-skins\rainbow\raw\progress-bar-heart.png +omni_power:gdx-skins\rainbow\raw\progress-bar-knob.png +omni_power:gdx-skins\rainbow\raw\progress-bar-star-back.png +omni_power:gdx-skins\rainbow\raw\progress-bar-star.png +omni_power:gdx-skins\rainbow\raw\scrollbar-horizontal.9.png +omni_power:gdx-skins\rainbow\raw\scrollbar-horizontal.png +omni_power:gdx-skins\rainbow\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\rainbow\raw\scrollbar-vertical.png +omni_power:gdx-skins\rainbow\raw\select-box-pressed.9.png +omni_power:gdx-skins\rainbow\raw\select-box-pressed.png +omni_power:gdx-skins\rainbow\raw\select-box.9.png +omni_power:gdx-skins\rainbow\raw\select-box.png +omni_power:gdx-skins\rainbow\raw\splitpane-horizontal.png +omni_power:gdx-skins\rainbow\raw\splitpane-vertical.png +omni_power:gdx-skins\rainbow\raw\textfield.9.png +omni_power:gdx-skins\rainbow\raw\textfield.png +omni_power:gdx-skins\rainbow\raw\title-box.9.png +omni_power:gdx-skins\rainbow\raw\title-box.png +omni_power:gdx-skins\rainbow\raw\touchpad-knob.png +omni_power:gdx-skins\rainbow\raw\touchpad.png +omni_power:gdx-skins\rainbow\raw\white.png +omni_power:gdx-skins\rainbow\raw\window.9.png +omni_power:gdx-skins\rainbow\raw\window.png +omni_power:gdx-skins\rainbow\skin\font-button-export.fnt +omni_power:gdx-skins\rainbow\skin\font-export.fnt +omni_power:gdx-skins\rainbow\skin\font-title-export.fnt +omni_power:gdx-skins\rainbow\skin\rainbow-ui.atlas +omni_power:gdx-skins\rainbow\skin\rainbow-ui.json +omni_power:gdx-skins\rainbow\skin\rainbow-ui.png +omni_power:gdx-skins\rusty-robot\raw\button-pressed.9.png +omni_power:gdx-skins\rusty-robot\raw\button-pressed.png +omni_power:gdx-skins\rusty-robot\raw\button.9.png +omni_power:gdx-skins\rusty-robot\raw\button.png +omni_power:gdx-skins\rusty-robot\raw\checkbox-pressed.png +omni_power:gdx-skins\rusty-robot\raw\checkbox.png +omni_power:gdx-skins\rusty-robot\raw\cog1.png +omni_power:gdx-skins\rusty-robot\raw\cog2.png +omni_power:gdx-skins\rusty-robot\raw\cog3.png +omni_power:gdx-skins\rusty-robot\raw\font-export.fnt +omni_power:gdx-skins\rusty-robot\raw\font-export.png +omni_power:gdx-skins\rusty-robot\raw\font-title-export.fnt +omni_power:gdx-skins\rusty-robot\raw\font-title-export.png +omni_power:gdx-skins\rusty-robot\raw\font-title.png +omni_power:gdx-skins\rusty-robot\raw\font.png +omni_power:gdx-skins\rusty-robot\raw\label-bg.9.png +omni_power:gdx-skins\rusty-robot\raw\label-bg.png +omni_power:gdx-skins\rusty-robot\raw\list.9.png +omni_power:gdx-skins\rusty-robot\raw\list.png +omni_power:gdx-skins\rusty-robot\raw\meter-front.png +omni_power:gdx-skins\rusty-robot\raw\meter-needle.png +omni_power:gdx-skins\rusty-robot\raw\meter.png +omni_power:gdx-skins\rusty-robot\raw\minus.png +omni_power:gdx-skins\rusty-robot\raw\plus.png +omni_power:gdx-skins\rusty-robot\raw\progress-bar-horizontal.9.png +omni_power:gdx-skins\rusty-robot\raw\progress-bar-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\progress-bar-knob-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\progress-bar-knob-vertical.png +omni_power:gdx-skins\rusty-robot\raw\progress-bar-vertical.9.png +omni_power:gdx-skins\rusty-robot\raw\progress-bar-vertical.png +omni_power:gdx-skins\rusty-robot\raw\radio-pressed.png +omni_power:gdx-skins\rusty-robot\raw\radio.png +omni_power:gdx-skins\rusty-robot\raw\robot.png +omni_power:gdx-skins\rusty-robot\raw\scrollbar-horizontal.9.png +omni_power:gdx-skins\rusty-robot\raw\scrollbar-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\scrollbar-knob-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\scrollbar-knob-vertical.png +omni_power:gdx-skins\rusty-robot\raw\scrollbar-vertical.9.png +omni_power:gdx-skins\rusty-robot\raw\scrollbar-vertical.png +omni_power:gdx-skins\rusty-robot\raw\select-box.9.png +omni_power:gdx-skins\rusty-robot\raw\select-box.png +omni_power:gdx-skins\rusty-robot\raw\slider-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\slider-knob-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\slider-knob-vertical.png +omni_power:gdx-skins\rusty-robot\raw\slider-vertical.png +omni_power:gdx-skins\rusty-robot\raw\splitpane-horizontal.9.png +omni_power:gdx-skins\rusty-robot\raw\splitpane-horizontal.png +omni_power:gdx-skins\rusty-robot\raw\splitpane-vertical.9.png +omni_power:gdx-skins\rusty-robot\raw\splitpane-vertical.png +omni_power:gdx-skins\rusty-robot\raw\text-field.9.png +omni_power:gdx-skins\rusty-robot\raw\text-field.png +omni_power:gdx-skins\rusty-robot\raw\white.png +omni_power:gdx-skins\rusty-robot\raw\window.9.png +omni_power:gdx-skins\rusty-robot\raw\window.png +omni_power:gdx-skins\rusty-robot\skin\font-export.fnt +omni_power:gdx-skins\rusty-robot\skin\font-title-export.fnt +omni_power:gdx-skins\rusty-robot\skin\rusty-robot-ui.atlas +omni_power:gdx-skins\rusty-robot\skin\rusty-robot-ui.json +omni_power:gdx-skins\rusty-robot\skin\rusty-robot-ui.png +omni_power:gdx-skins\sgx\raw\back.png +omni_power:gdx-skins\sgx\raw\background.png +omni_power:gdx-skins\sgx\raw\button-close-over.png +omni_power:gdx-skins\sgx\raw\button-close-pressed.png +omni_power:gdx-skins\sgx\raw\button-close.png +omni_power:gdx-skins\sgx\raw\button-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-disabled.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color-disabled.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color-over.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color-over.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color-pressed.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-color.png +omni_power:gdx-skins\sgx\raw\button-emphasis-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-disabled.png +omni_power:gdx-skins\sgx\raw\button-emphasis-over.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-over.png +omni_power:gdx-skins\sgx\raw\button-emphasis-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis-pressed.png +omni_power:gdx-skins\sgx\raw\button-emphasis.9.png +omni_power:gdx-skins\sgx\raw\button-emphasis.png +omni_power:gdx-skins\sgx\raw\button-icon-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-icon-disabled.png +omni_power:gdx-skins\sgx\raw\button-icon-over.9.png +omni_power:gdx-skins\sgx\raw\button-icon-over.png +omni_power:gdx-skins\sgx\raw\button-icon-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-icon-pressed.png +omni_power:gdx-skins\sgx\raw\button-icon.9.png +omni_power:gdx-skins\sgx\raw\button-icon.png +omni_power:gdx-skins\sgx\raw\button-minus-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-minus-disabled.png +omni_power:gdx-skins\sgx\raw\button-minus-over.9.png +omni_power:gdx-skins\sgx\raw\button-minus-over.png +omni_power:gdx-skins\sgx\raw\button-minus-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-minus-pressed.png +omni_power:gdx-skins\sgx\raw\button-minus.9.png +omni_power:gdx-skins\sgx\raw\button-minus.png +omni_power:gdx-skins\sgx\raw\button-number-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-number-disabled.png +omni_power:gdx-skins\sgx\raw\button-number-over.9.png +omni_power:gdx-skins\sgx\raw\button-number-over.png +omni_power:gdx-skins\sgx\raw\button-number-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-number-pressed.png +omni_power:gdx-skins\sgx\raw\button-number.9.png +omni_power:gdx-skins\sgx\raw\button-number.png +omni_power:gdx-skins\sgx\raw\button-over.9.png +omni_power:gdx-skins\sgx\raw\button-over.png +omni_power:gdx-skins\sgx\raw\button-plus-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-plus-disabled.png +omni_power:gdx-skins\sgx\raw\button-plus-over.9.png +omni_power:gdx-skins\sgx\raw\button-plus-over.png +omni_power:gdx-skins\sgx\raw\button-plus-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-plus-pressed.png +omni_power:gdx-skins\sgx\raw\button-plus.9.png +omni_power:gdx-skins\sgx\raw\button-plus.png +omni_power:gdx-skins\sgx\raw\button-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-pressed.png +omni_power:gdx-skins\sgx\raw\button-small-checked-over.9.png +omni_power:gdx-skins\sgx\raw\button-small-checked-over.png +omni_power:gdx-skins\sgx\raw\button-small-checked.9.png +omni_power:gdx-skins\sgx\raw\button-small-checked.png +omni_power:gdx-skins\sgx\raw\button-small-disabled.9.png +omni_power:gdx-skins\sgx\raw\button-small-disabled.png +omni_power:gdx-skins\sgx\raw\button-small-over.9.png +omni_power:gdx-skins\sgx\raw\button-small-over.png +omni_power:gdx-skins\sgx\raw\button-small-pressed.9.png +omni_power:gdx-skins\sgx\raw\button-small-pressed.png +omni_power:gdx-skins\sgx\raw\button-small.9.png +omni_power:gdx-skins\sgx\raw\button-small.png +omni_power:gdx-skins\sgx\raw\button.9.png +omni_power:gdx-skins\sgx\raw\button.png +omni_power:gdx-skins\sgx\raw\checkbox-alt.png +omni_power:gdx-skins\sgx\raw\checkbox-checked-disabled.png +omni_power:gdx-skins\sgx\raw\checkbox-checked-over.png +omni_power:gdx-skins\sgx\raw\checkbox-checked.png +omni_power:gdx-skins\sgx\raw\checkbox-disabled.png +omni_power:gdx-skins\sgx\raw\checkbox-over.png +omni_power:gdx-skins\sgx\raw\checkbox.png +omni_power:gdx-skins\sgx\raw\file-dialog-table.9.png +omni_power:gdx-skins\sgx\raw\file-dialog-table.png +omni_power:gdx-skins\sgx\raw\file-menu-bar.9.png +omni_power:gdx-skins\sgx\raw\file-menu-bar.png +omni_power:gdx-skins\sgx\raw\file-menu-button-over.9.png +omni_power:gdx-skins\sgx\raw\file-menu-button-over.png +omni_power:gdx-skins\sgx\raw\file-menu-button-pressed.9.png +omni_power:gdx-skins\sgx\raw\file-menu-button-pressed.png +omni_power:gdx-skins\sgx\raw\file-menu-button.9.png +omni_power:gdx-skins\sgx\raw\file-menu-button.png +omni_power:gdx-skins\sgx\raw\file-menu-list-button-over.9.png +omni_power:gdx-skins\sgx\raw\file-menu-list-button-over.png +omni_power:gdx-skins\sgx\raw\file-menu-list-button-pressed.9.png +omni_power:gdx-skins\sgx\raw\file-menu-list-button-pressed.png +omni_power:gdx-skins\sgx\raw\file-menu-list-button.9.png +omni_power:gdx-skins\sgx\raw\file-menu-list-button.png +omni_power:gdx-skins\sgx\raw\file-menu-list.9.png +omni_power:gdx-skins\sgx\raw\file-menu-list.png +omni_power:gdx-skins\sgx\raw\font-export.fnt +omni_power:gdx-skins\sgx\raw\font-export.png +omni_power:gdx-skins\sgx\raw\font-medium-export.fnt +omni_power:gdx-skins\sgx\raw\font-medium-export.png +omni_power:gdx-skins\sgx\raw\font-medium.png +omni_power:gdx-skins\sgx\raw\font-small-export.fnt +omni_power:gdx-skins\sgx\raw\font-small-export.png +omni_power:gdx-skins\sgx\raw\font-small.png +omni_power:gdx-skins\sgx\raw\font-title-export.fnt +omni_power:gdx-skins\sgx\raw\font-title-export.png +omni_power:gdx-skins\sgx\raw\font-title-large-export.fnt +omni_power:gdx-skins\sgx\raw\font-title-large-export.png +omni_power:gdx-skins\sgx\raw\font-title-large.png +omni_power:gdx-skins\sgx\raw\font-title.png +omni_power:gdx-skins\sgx\raw\font.png +omni_power:gdx-skins\sgx\raw\list-selection.9.png +omni_power:gdx-skins\sgx\raw\list-selection.png +omni_power:gdx-skins\sgx\raw\list.9.png +omni_power:gdx-skins\sgx\raw\list.png +omni_power:gdx-skins\sgx\raw\radio-checked-disabled.png +omni_power:gdx-skins\sgx\raw\radio-checked-over.png +omni_power:gdx-skins\sgx\raw\radio-checked.png +omni_power:gdx-skins\sgx\raw\radio-disabled.png +omni_power:gdx-skins\sgx\raw\radio-over.png +omni_power:gdx-skins\sgx\raw\radio.png +omni_power:gdx-skins\sgx\raw\scroll-bar-back-horizontal.9.png +omni_power:gdx-skins\sgx\raw\scroll-bar-back-horizontal.png +omni_power:gdx-skins\sgx\raw\scroll-bar-back-vertical.9.png +omni_power:gdx-skins\sgx\raw\scroll-bar-back-vertical.png +omni_power:gdx-skins\sgx\raw\scroll-bar-horizontal.9.png +omni_power:gdx-skins\sgx\raw\scroll-bar-horizontal.png +omni_power:gdx-skins\sgx\raw\scroll-bar-vertical.9.png +omni_power:gdx-skins\sgx\raw\scroll-bar-vertical.png +omni_power:gdx-skins\sgx\raw\select-box-disabled.9.png +omni_power:gdx-skins\sgx\raw\select-box-disabled.png +omni_power:gdx-skins\sgx\raw\select-box-over.9.png +omni_power:gdx-skins\sgx\raw\select-box-over.png +omni_power:gdx-skins\sgx\raw\select-box-pressed-alt.9.png +omni_power:gdx-skins\sgx\raw\select-box-pressed-alt.png +omni_power:gdx-skins\sgx\raw\select-box-pressed.9.png +omni_power:gdx-skins\sgx\raw\select-box-pressed.png +omni_power:gdx-skins\sgx\raw\select-box.9.png +omni_power:gdx-skins\sgx\raw\select-box.png +omni_power:gdx-skins\sgx\raw\selection.png +omni_power:gdx-skins\sgx\raw\slider-background-disabled-horizontal.9.png +omni_power:gdx-skins\sgx\raw\slider-background-disabled-horizontal.png +omni_power:gdx-skins\sgx\raw\slider-background-disabled-vertical.9.png +omni_power:gdx-skins\sgx\raw\slider-background-disabled-vertical.png +omni_power:gdx-skins\sgx\raw\slider-background-horizontal.9.png +omni_power:gdx-skins\sgx\raw\slider-background-horizontal.png +omni_power:gdx-skins\sgx\raw\slider-background-vertical.9.png +omni_power:gdx-skins\sgx\raw\slider-background-vertical.png +omni_power:gdx-skins\sgx\raw\slider-backgrround-disabled-horizontal.9.png +omni_power:gdx-skins\sgx\raw\slider-backgrround-horizontal.9.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-disabled-horizontal.9.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-disabled-horizontal.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-disabled-vertical.9.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-disabled-vertical.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-horizontal.9.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-horizontal.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-vertical.9.png +omni_power:gdx-skins\sgx\raw\slider-knob-before-vertical.png +omni_power:gdx-skins\sgx\raw\slider-knob-disabled.png +omni_power:gdx-skins\sgx\raw\slider-knob-pressed.png +omni_power:gdx-skins\sgx\raw\slider-knob.png +omni_power:gdx-skins\sgx\raw\switch-off-disabled.png +omni_power:gdx-skins\sgx\raw\switch-off-over.png +omni_power:gdx-skins\sgx\raw\switch-off.png +omni_power:gdx-skins\sgx\raw\switch-on-disabled.png +omni_power:gdx-skins\sgx\raw\switch-on-over.png +omni_power:gdx-skins\sgx\raw\switch-on.png +omni_power:gdx-skins\sgx\raw\tab-after.png +omni_power:gdx-skins\sgx\raw\tab-before.png +omni_power:gdx-skins\sgx\raw\tab-checked.9.png +omni_power:gdx-skins\sgx\raw\tab-checked.png +omni_power:gdx-skins\sgx\raw\tab-pane.9.png +omni_power:gdx-skins\sgx\raw\tab-pane.png +omni_power:gdx-skins\sgx\raw\tab.9.png +omni_power:gdx-skins\sgx\raw\tab.png +omni_power:gdx-skins\sgx\raw\text-field-spinner.9.png +omni_power:gdx-skins\sgx\raw\text-field-spinner.png +omni_power:gdx-skins\sgx\raw\text-field.9.png +omni_power:gdx-skins\sgx\raw\text-field.png +omni_power:gdx-skins\sgx\raw\white.png +omni_power:gdx-skins\sgx\raw\window-tool.9.png +omni_power:gdx-skins\sgx\raw\window-tool.png +omni_power:gdx-skins\sgx\raw\window.9.png +omni_power:gdx-skins\sgx\raw\window.png +omni_power:gdx-skins\sgx\skin\font-export.fnt +omni_power:gdx-skins\sgx\skin\font-medium-export.fnt +omni_power:gdx-skins\sgx\skin\font-small-export.fnt +omni_power:gdx-skins\sgx\skin\font-title-export.fnt +omni_power:gdx-skins\sgx\skin\sgx-ui.atlas +omni_power:gdx-skins\sgx\skin\sgx-ui.json +omni_power:gdx-skins\sgx\skin\sgx-ui.png +omni_power:gdx-skins\shade\raw\android-horizontal-scrollbar-knob.9.png +omni_power:gdx-skins\shade\raw\android-horizontal-scrollbar.9.png +omni_power:gdx-skins\shade\raw\android-vertical-scrollbar-knob.9.png +omni_power:gdx-skins\shade\raw\android-vertical-scrollbar.9.png +omni_power:gdx-skins\shade\raw\button-down.9.png +omni_power:gdx-skins\shade\raw\button.9.png +omni_power:gdx-skins\shade\raw\check-off.png +omni_power:gdx-skins\shade\raw\check-on.png +omni_power:gdx-skins\shade\raw\cursor.9.png +omni_power:gdx-skins\shade\raw\font-button.fnt +omni_power:gdx-skins\shade\raw\font-button.png +omni_power:gdx-skins\shade\raw\font-label.fnt +omni_power:gdx-skins\shade\raw\font-label.png +omni_power:gdx-skins\shade\raw\font-title.fnt +omni_power:gdx-skins\shade\raw\font-title.png +omni_power:gdx-skins\shade\raw\horizontal-scrollbar-knob.9.png +omni_power:gdx-skins\shade\raw\horizontal-scrollbar.9.png +omni_power:gdx-skins\shade\raw\horizontal-splitplane.9.png +omni_power:gdx-skins\shade\raw\label.9.png +omni_power:gdx-skins\shade\raw\left-button-down.png +omni_power:gdx-skins\shade\raw\left-button.png +omni_power:gdx-skins\shade\raw\list-selection.9.png +omni_power:gdx-skins\shade\raw\list.9.png +omni_power:gdx-skins\shade\raw\loading-bar-fill.9.png +omni_power:gdx-skins\shade\raw\loading-bar-knob.png +omni_power:gdx-skins\shade\raw\loading-bar.9.png +omni_power:gdx-skins\shade\raw\minus.png +omni_power:gdx-skins\shade\raw\music-down.png +omni_power:gdx-skins\shade\raw\music-off.png +omni_power:gdx-skins\shade\raw\music.png +omni_power:gdx-skins\shade\raw\panel1.9.png +omni_power:gdx-skins\shade\raw\panel2.9.png +omni_power:gdx-skins\shade\raw\plus.png +omni_power:gdx-skins\shade\raw\radio-button-off.9.png +omni_power:gdx-skins\shade\raw\radio-button.9.png +omni_power:gdx-skins\shade\raw\README.md +omni_power:gdx-skins\shade\raw\right-button-down.png +omni_power:gdx-skins\shade\raw\right-button.png +omni_power:gdx-skins\shade\raw\round-button-down.9.png +omni_power:gdx-skins\shade\raw\round-button.9.png +omni_power:gdx-skins\shade\raw\select-box-down.9.png +omni_power:gdx-skins\shade\raw\select-box.9.png +omni_power:gdx-skins\shade\raw\slider-bar-fill.9.png +omni_power:gdx-skins\shade\raw\slider-bar-knob.png +omni_power:gdx-skins\shade\raw\slider-bar.9.png +omni_power:gdx-skins\shade\raw\sound-down.png +omni_power:gdx-skins\shade\raw\sound-off.png +omni_power:gdx-skins\shade\raw\sound.png +omni_power:gdx-skins\shade\raw\switch-off.png +omni_power:gdx-skins\shade\raw\switch.png +omni_power:gdx-skins\shade\raw\text-selection.png +omni_power:gdx-skins\shade\raw\textfield.9.png +omni_power:gdx-skins\shade\raw\toggle-button-down.9.png +omni_power:gdx-skins\shade\raw\toggle-button-off.9.png +omni_power:gdx-skins\shade\raw\toggle-button.9.png +omni_power:gdx-skins\shade\raw\touchpad-knob.png +omni_power:gdx-skins\shade\raw\touchpad.png +omni_power:gdx-skins\shade\raw\tree-minus.png +omni_power:gdx-skins\shade\raw\tree-plus.png +omni_power:gdx-skins\shade\raw\vertical-scrollbar-knob.9.png +omni_power:gdx-skins\shade\raw\vertical-scrollbar.9.png +omni_power:gdx-skins\shade\raw\vertical-splitpane.9.png +omni_power:gdx-skins\shade\raw\white.png +omni_power:gdx-skins\shade\raw\window.9.png +omni_power:gdx-skins\shade\skin\font-button.fnt +omni_power:gdx-skins\shade\skin\font-label.fnt +omni_power:gdx-skins\shade\skin\font-title.fnt +omni_power:gdx-skins\shade\skin\uiskin.atlas +omni_power:gdx-skins\shade\skin\uiskin.json +omni_power:gdx-skins\shade\skin\uiskin.png +omni_power:gdx-skins\skin-composer\raw\button-close-over.png +omni_power:gdx-skins\skin-composer\raw\button-close-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-close.png +omni_power:gdx-skins\skin-composer\raw\button-colorwheel-over.png +omni_power:gdx-skins\skin-composer\raw\button-colorwheel-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-colorwheel.png +omni_power:gdx-skins\skin-composer\raw\button-delete-disabled.png +omni_power:gdx-skins\skin-composer\raw\button-delete-over.png +omni_power:gdx-skins\skin-composer\raw\button-delete-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-delete.png +omni_power:gdx-skins\skin-composer\raw\button-duplicate-over.png +omni_power:gdx-skins\skin-composer\raw\button-duplicate-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-duplicate.png +omni_power:gdx-skins\skin-composer\raw\button-file-over.9.png +omni_power:gdx-skins\skin-composer\raw\button-file-over.png +omni_power:gdx-skins\skin-composer\raw\button-file-pressed.9.png +omni_power:gdx-skins\skin-composer\raw\button-file-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-file.9.png +omni_power:gdx-skins\skin-composer\raw\button-file.png +omni_power:gdx-skins\skin-composer\raw\button-maximize-over.png +omni_power:gdx-skins\skin-composer\raw\button-maximize-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-maximize.png +omni_power:gdx-skins\skin-composer\raw\button-minimize-over copy.png +omni_power:gdx-skins\skin-composer\raw\button-minimize-over.png +omni_power:gdx-skins\skin-composer\raw\button-minimize.png +omni_power:gdx-skins\skin-composer\raw\button-new-over.png +omni_power:gdx-skins\skin-composer\raw\button-new-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-new.png +omni_power:gdx-skins\skin-composer\raw\button-over.9.png +omni_power:gdx-skins\skin-composer\raw\button-over.png +omni_power:gdx-skins\skin-composer\raw\button-plus-over.9.png +omni_power:gdx-skins\skin-composer\raw\button-plus-over.png +omni_power:gdx-skins\skin-composer\raw\button-plus-pressed.9.png +omni_power:gdx-skins\skin-composer\raw\button-plus-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-plus.9.png +omni_power:gdx-skins\skin-composer\raw\button-plus.png +omni_power:gdx-skins\skin-composer\raw\button-pressed.9.png +omni_power:gdx-skins\skin-composer\raw\button-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-restore-over.png +omni_power:gdx-skins\skin-composer\raw\button-restore-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-restore.png +omni_power:gdx-skins\skin-composer\raw\button-settings-disabled.png +omni_power:gdx-skins\skin-composer\raw\button-settings-over.png +omni_power:gdx-skins\skin-composer\raw\button-settings-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-settings-small-over.png +omni_power:gdx-skins\skin-composer\raw\button-settings-small-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-settings-small.png +omni_power:gdx-skins\skin-composer\raw\button-settings.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-minus-h-over.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-minus-h-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-minus-h.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-minus-v-over.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-minus-v-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-minus-v.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-plus-h-over.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-plus-h-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-plus-h.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-plus-v-over.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-plus-v-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-spinner-plus-v.png +omni_power:gdx-skins\skin-composer\raw\button-swatches-over.png +omni_power:gdx-skins\skin-composer\raw\button-swatches-pressed.png +omni_power:gdx-skins\skin-composer\raw\button-swatches.png +omni_power:gdx-skins\skin-composer\raw\button.9.png +omni_power:gdx-skins\skin-composer\raw\button.png +omni_power:gdx-skins\skin-composer\raw\checkbox-off-over.png +omni_power:gdx-skins\skin-composer\raw\checkbox-off-pressed.png +omni_power:gdx-skins\skin-composer\raw\checkbox-off.png +omni_power:gdx-skins\skin-composer\raw\checkbox-on-over.png +omni_power:gdx-skins\skin-composer\raw\checkbox-on-pressed.png +omni_power:gdx-skins\skin-composer\raw\checkbox-on.png +omni_power:gdx-skins\skin-composer\raw\class-bar.9.png +omni_power:gdx-skins\skin-composer\raw\class-bar.png +omni_power:gdx-skins\skin-composer\raw\font-export.fnt +omni_power:gdx-skins\skin-composer\raw\font-export.png +omni_power:gdx-skins\skin-composer\raw\font-title-export.fnt +omni_power:gdx-skins\skin-composer\raw\font-title-export.png +omni_power:gdx-skins\skin-composer\raw\font-title.png +omni_power:gdx-skins\skin-composer\raw\font.png +omni_power:gdx-skins\skin-composer\raw\icon-colorwheel-over.png +omni_power:gdx-skins\skin-composer\raw\icon-colorwheel.png +omni_power:gdx-skins\skin-composer\raw\icon-portrait-over.png +omni_power:gdx-skins\skin-composer\raw\icon-portrait.png +omni_power:gdx-skins\skin-composer\raw\icon-text-over.png +omni_power:gdx-skins\skin-composer\raw\icon-text.png +omni_power:gdx-skins\skin-composer\raw\list.9.png +omni_power:gdx-skins\skin-composer\raw\list.png +omni_power:gdx-skins\skin-composer\raw\scrollpane-knob.png +omni_power:gdx-skins\skin-composer\raw\scrollpane.png +omni_power:gdx-skins\skin-composer\raw\selectbox-over.9.png +omni_power:gdx-skins\skin-composer\raw\selectbox-over.png +omni_power:gdx-skins\skin-composer\raw\selectbox-pressed.9.png +omni_power:gdx-skins\skin-composer\raw\selectbox-pressed.png +omni_power:gdx-skins\skin-composer\raw\selectbox.9.png +omni_power:gdx-skins\skin-composer\raw\selectbox.png +omni_power:gdx-skins\skin-composer\raw\slider-horizontal.9.png +omni_power:gdx-skins\skin-composer\raw\slider-horizontal.png +omni_power:gdx-skins\skin-composer\raw\slider-knob-over.png +omni_power:gdx-skins\skin-composer\raw\slider-knob-pressed.png +omni_power:gdx-skins\skin-composer\raw\slider-knob.png +omni_power:gdx-skins\skin-composer\raw\slider-vertical.9.png +omni_power:gdx-skins\skin-composer\raw\slider-vertical.png +omni_power:gdx-skins\skin-composer\raw\splitpane.9.png +omni_power:gdx-skins\skin-composer\raw\splitpane.png +omni_power:gdx-skins\skin-composer\raw\status-bar.png +omni_power:gdx-skins\skin-composer\raw\textfield-pressed.9.png +omni_power:gdx-skins\skin-composer\raw\textfield-pressed.png +omni_power:gdx-skins\skin-composer\raw\textfield-spinner-over.9.png +omni_power:gdx-skins\skin-composer\raw\textfield-spinner-over.png +omni_power:gdx-skins\skin-composer\raw\textfield-spinner-pressed.9.png +omni_power:gdx-skins\skin-composer\raw\textfield-spinner-pressed.png +omni_power:gdx-skins\skin-composer\raw\textfield-spinner.9.png +omni_power:gdx-skins\skin-composer\raw\textfield-spinner.png +omni_power:gdx-skins\skin-composer\raw\textfield.9.png +omni_power:gdx-skins\skin-composer\raw\textfield.png +omni_power:gdx-skins\skin-composer\raw\toggle-off-over.png +omni_power:gdx-skins\skin-composer\raw\toggle-off-pressed.png +omni_power:gdx-skins\skin-composer\raw\toggle-off.png +omni_power:gdx-skins\skin-composer\raw\toggle-on-over.png +omni_power:gdx-skins\skin-composer\raw\toggle-on-pressed.png +omni_power:gdx-skins\skin-composer\raw\toggle-on.png +omni_power:gdx-skins\skin-composer\raw\white.png +omni_power:gdx-skins\skin-composer\raw\window-main.9.png +omni_power:gdx-skins\skin-composer\raw\window-main.png +omni_power:gdx-skins\skin-composer\raw\window.9.png +omni_power:gdx-skins\skin-composer\raw\window.png +omni_power:gdx-skins\skin-composer\raw\window2.9.png +omni_power:gdx-skins\skin-composer\raw\window2.png +omni_power:gdx-skins\skin-composer\skin\font-export.fnt +omni_power:gdx-skins\skin-composer\skin\font-title-export.fnt +omni_power:gdx-skins\skin-composer\skin\skin-composer-ui.atlas +omni_power:gdx-skins\skin-composer\skin\skin-composer-ui.json +omni_power:gdx-skins\skin-composer\skin\skin-composer-ui.png +omni_power:gdx-skins\star-soldier\raw\button-selected.9.png +omni_power:gdx-skins\star-soldier\raw\button-slim.9.png +omni_power:gdx-skins\star-soldier\raw\button.9.png +omni_power:gdx-skins\star-soldier\raw\check-off.png +omni_power:gdx-skins\star-soldier\raw\check.png +omni_power:gdx-skins\star-soldier\raw\cursor.png +omni_power:gdx-skins\star-soldier\raw\font-export.fnt +omni_power:gdx-skins\star-soldier\raw\font-export.png +omni_power:gdx-skins\star-soldier\raw\font-title-export.fnt +omni_power:gdx-skins\star-soldier\raw\font-title-export.png +omni_power:gdx-skins\star-soldier\raw\left-arrow-down.png +omni_power:gdx-skins\star-soldier\raw\left-arrow.png +omni_power:gdx-skins\star-soldier\raw\list.9.png +omni_power:gdx-skins\star-soldier\raw\minus.png +omni_power:gdx-skins\star-soldier\raw\plus.png +omni_power:gdx-skins\star-soldier\raw\progress-bar-back.9.png +omni_power:gdx-skins\star-soldier\raw\progress-bar.9.png +omni_power:gdx-skins\star-soldier\raw\radio-off.png +omni_power:gdx-skins\star-soldier\raw\radio.png +omni_power:gdx-skins\star-soldier\raw\README.md +omni_power:gdx-skins\star-soldier\raw\right-arrow-down.png +omni_power:gdx-skins\star-soldier\raw\right-arrow.png +omni_power:gdx-skins\star-soldier\raw\scrollbar-h.9.png +omni_power:gdx-skins\star-soldier\raw\scrollbar-v.9.png +omni_power:gdx-skins\star-soldier\raw\select-box.9.png +omni_power:gdx-skins\star-soldier\raw\selection.png +omni_power:gdx-skins\star-soldier\raw\slider-back.9.png +omni_power:gdx-skins\star-soldier\raw\slider-knob.png +omni_power:gdx-skins\star-soldier\raw\slider-v.9.png +omni_power:gdx-skins\star-soldier\raw\slider.9.png +omni_power:gdx-skins\star-soldier\raw\soldier.png +omni_power:gdx-skins\star-soldier\raw\splitpane-h.9.png +omni_power:gdx-skins\star-soldier\raw\splitpane-v.9.png +omni_power:gdx-skins\star-soldier\raw\textfield.9.png +omni_power:gdx-skins\star-soldier\raw\white.png +omni_power:gdx-skins\star-soldier\raw\window-special.9.png +omni_power:gdx-skins\star-soldier\raw\window.9.png +omni_power:gdx-skins\star-soldier\skin\font-export.fnt +omni_power:gdx-skins\star-soldier\skin\font-title-export.fnt +omni_power:gdx-skins\star-soldier\skin\star-soldier-ui.atlas +omni_power:gdx-skins\star-soldier\skin\star-soldier-ui.json +omni_power:gdx-skins\star-soldier\skin\star-soldier-ui.png +omni_power:gdx-skins\terra-mother\raw\199x-export.fnt +omni_power:gdx-skins\terra-mother\raw\199x-export.png +omni_power:gdx-skins\terra-mother\raw\199x.png +omni_power:gdx-skins\terra-mother\raw\cat.png +omni_power:gdx-skins\terra-mother\raw\cents.9.png +omni_power:gdx-skins\terra-mother\raw\cents.png +omni_power:gdx-skins\terra-mother\raw\cursor.9.png +omni_power:gdx-skins\terra-mother\raw\cursor.png +omni_power:gdx-skins\terra-mother\raw\cursor2.9.png +omni_power:gdx-skins\terra-mother\raw\cursor2.png +omni_power:gdx-skins\terra-mother\raw\digit-box.png +omni_power:gdx-skins\terra-mother\raw\font-export.fnt +omni_power:gdx-skins\terra-mother\raw\font-export.png +omni_power:gdx-skins\terra-mother\raw\font.png +omni_power:gdx-skins\terra-mother\raw\giygas-export.fnt +omni_power:gdx-skins\terra-mother\raw\giygas-export.png +omni_power:gdx-skins\terra-mother\raw\giygas.png +omni_power:gdx-skins\terra-mother\raw\label-hp.png +omni_power:gdx-skins\terra-mother\raw\label-pp.png +omni_power:gdx-skins\terra-mother\raw\label-title.png +omni_power:gdx-skins\terra-mother\raw\pc-1.png +omni_power:gdx-skins\terra-mother\raw\pc-2.png +omni_power:gdx-skins\terra-mother\raw\pc-3.png +omni_power:gdx-skins\terra-mother\raw\pc-4.png +omni_power:gdx-skins\terra-mother\raw\saturn-export.fnt +omni_power:gdx-skins\terra-mother\raw\saturn-export.png +omni_power:gdx-skins\terra-mother\raw\saturn.png +omni_power:gdx-skins\terra-mother\raw\selector-off.png +omni_power:gdx-skins\terra-mother\raw\selector.png +omni_power:gdx-skins\terra-mother\raw\smash.png +omni_power:gdx-skins\terra-mother\raw\tile-a.png +omni_power:gdx-skins\terra-mother\raw\tile-b.png +omni_power:gdx-skins\terra-mother\raw\tile.png +omni_power:gdx-skins\terra-mother\raw\white.png +omni_power:gdx-skins\terra-mother\raw\window-player.9.png +omni_power:gdx-skins\terra-mother\raw\window-player.png +omni_power:gdx-skins\terra-mother\raw\window.9.png +omni_power:gdx-skins\terra-mother\raw\window.png +omni_power:gdx-skins\terra-mother\skin\199x-export.fnt +omni_power:gdx-skins\terra-mother\skin\font-export.fnt +omni_power:gdx-skins\terra-mother\skin\giygas-export.fnt +omni_power:gdx-skins\terra-mother\skin\saturn-export.fnt +omni_power:gdx-skins\terra-mother\skin\terra-mother-ui.atlas +omni_power:gdx-skins\terra-mother\skin\terra-mother-ui.json +omni_power:gdx-skins\terra-mother\skin\terra-mother-ui.png +omni_power:gdx-skins\tracer\raw\bg.png +omni_power:gdx-skins\tracer\raw\button-new-icon.png +omni_power:gdx-skins\tracer\raw\button-new-pressed.png +omni_power:gdx-skins\tracer\raw\button-new.png +omni_power:gdx-skins\tracer\raw\button-over.9.png +omni_power:gdx-skins\tracer\raw\button-over.png +omni_power:gdx-skins\tracer\raw\button-pressed.9.png +omni_power:gdx-skins\tracer\raw\button-pressed.png +omni_power:gdx-skins\tracer\raw\button.9.png +omni_power:gdx-skins\tracer\raw\button.png +omni_power:gdx-skins\tracer\raw\checkbox-on.png +omni_power:gdx-skins\tracer\raw\checkbox.png +omni_power:gdx-skins\tracer\raw\close-button-icon.png +omni_power:gdx-skins\tracer\raw\close-button-pressed.png +omni_power:gdx-skins\tracer\raw\close-button.png +omni_power:gdx-skins\tracer\raw\font-export.fnt +omni_power:gdx-skins\tracer\raw\font-export.png +omni_power:gdx-skins\tracer\raw\font.png +omni_power:gdx-skins\tracer\raw\home-selected.png +omni_power:gdx-skins\tracer\raw\home.png +omni_power:gdx-skins\tracer\raw\info-selected.png +omni_power:gdx-skins\tracer\raw\info.png +omni_power:gdx-skins\tracer\raw\list.9.png +omni_power:gdx-skins\tracer\raw\list.png +omni_power:gdx-skins\tracer\raw\menu-bg.9.png +omni_power:gdx-skins\tracer\raw\menu-bg.png +omni_power:gdx-skins\tracer\raw\progress-bar.png +omni_power:gdx-skins\tracer\raw\radio-on.png +omni_power:gdx-skins\tracer\raw\radio.png +omni_power:gdx-skins\tracer\raw\scrollpane-knob.png +omni_power:gdx-skins\tracer\raw\select-box-over.9.png +omni_power:gdx-skins\tracer\raw\select-box-over.png +omni_power:gdx-skins\tracer\raw\select-box-pressed.9.png +omni_power:gdx-skins\tracer\raw\select-box-pressed.png +omni_power:gdx-skins\tracer\raw\select-box.9.png +omni_power:gdx-skins\tracer\raw\select-box.png +omni_power:gdx-skins\tracer\raw\settings-selected.png +omni_power:gdx-skins\tracer\raw\settings.png +omni_power:gdx-skins\tracer\raw\slider-knob-horizontal.png +omni_power:gdx-skins\tracer\raw\slider-knob-vertical.png +omni_power:gdx-skins\tracer\raw\splitpane-horizontal.9.png +omni_power:gdx-skins\tracer\raw\splitpane-horizontal.png +omni_power:gdx-skins\tracer\raw\splitpane-vertical.9.png +omni_power:gdx-skins\tracer\raw\splitpane-vertical.png +omni_power:gdx-skins\tracer\raw\sub-title-font-export.fnt +omni_power:gdx-skins\tracer\raw\sub-title-font-export.png +omni_power:gdx-skins\tracer\raw\sub-title-font.png +omni_power:gdx-skins\tracer\raw\textfield.9.png +omni_power:gdx-skins\tracer\raw\textfield.png +omni_power:gdx-skins\tracer\raw\title-bg.9.png +omni_power:gdx-skins\tracer\raw\title-bg.png +omni_power:gdx-skins\tracer\raw\title-font-export.fnt +omni_power:gdx-skins\tracer\raw\title-font-export.png +omni_power:gdx-skins\tracer\raw\title-font.png +omni_power:gdx-skins\tracer\raw\tooltip.9.png +omni_power:gdx-skins\tracer\raw\tooltip.png +omni_power:gdx-skins\tracer\raw\touchpad-knob.png +omni_power:gdx-skins\tracer\raw\touchpad.png +omni_power:gdx-skins\tracer\raw\tree-minus.png +omni_power:gdx-skins\tracer\raw\tree-plus.png +omni_power:gdx-skins\tracer\raw\white.png +omni_power:gdx-skins\tracer\raw\window.9.png +omni_power:gdx-skins\tracer\raw\window.png +omni_power:gdx-skins\tracer\skin\font-export.fnt +omni_power:gdx-skins\tracer\skin\sub-title-font-export.fnt +omni_power:gdx-skins\tracer\skin\title-font-export.fnt +omni_power:gdx-skins\tracer\skin\tracer-ui.atlas +omni_power:gdx-skins\tracer\skin\tracer-ui.json +omni_power:gdx-skins\tracer\skin\tracer-ui.png +omni_power:gdx-skins\tubular\raw\bottom-bar.9.png +omni_power:gdx-skins\tubular\raw\bottom-bar.png +omni_power:gdx-skins\tubular\raw\button-dislike-over.png +omni_power:gdx-skins\tubular\raw\button-dislike-pressed.png +omni_power:gdx-skins\tubular\raw\button-dislike.png +omni_power:gdx-skins\tubular\raw\button-full-screen-over.png +omni_power:gdx-skins\tubular\raw\button-full-screen-pressed.png +omni_power:gdx-skins\tubular\raw\button-full-screen.png +omni_power:gdx-skins\tubular\raw\button-left-over.png +omni_power:gdx-skins\tubular\raw\button-left-pressed.png +omni_power:gdx-skins\tubular\raw\button-left.png +omni_power:gdx-skins\tubular\raw\button-like-over.png +omni_power:gdx-skins\tubular\raw\button-like-pressed.png +omni_power:gdx-skins\tubular\raw\button-like.png +omni_power:gdx-skins\tubular\raw\button-menu-pressed.png +omni_power:gdx-skins\tubular\raw\button-menu.png +omni_power:gdx-skins\tubular\raw\button-over.9.png +omni_power:gdx-skins\tubular\raw\button-over.png +omni_power:gdx-skins\tubular\raw\button-pause-over.png +omni_power:gdx-skins\tubular\raw\button-pause-pressed.png +omni_power:gdx-skins\tubular\raw\button-pause.png +omni_power:gdx-skins\tubular\raw\button-play-over.png +omni_power:gdx-skins\tubular\raw\button-play-pressed.png +omni_power:gdx-skins\tubular\raw\button-play.png +omni_power:gdx-skins\tubular\raw\button-pressed.9.png +omni_power:gdx-skins\tubular\raw\button-pressed.png +omni_power:gdx-skins\tubular\raw\button-right-over.png +omni_power:gdx-skins\tubular\raw\button-right-pressed.png +omni_power:gdx-skins\tubular\raw\button-right.png +omni_power:gdx-skins\tubular\raw\button-search-over.png +omni_power:gdx-skins\tubular\raw\button-search-pressed.png +omni_power:gdx-skins\tubular\raw\button-search.png +omni_power:gdx-skins\tubular\raw\button-settings-over.png +omni_power:gdx-skins\tubular\raw\button-settings-pressed.png +omni_power:gdx-skins\tubular\raw\button-settings.png +omni_power:gdx-skins\tubular\raw\button-sidebar-over.9.png +omni_power:gdx-skins\tubular\raw\button-sidebar-over.png +omni_power:gdx-skins\tubular\raw\button-sidebar-pressed.9.png +omni_power:gdx-skins\tubular\raw\button-sidebar-pressed.png +omni_power:gdx-skins\tubular\raw\button-sidebar.9.png +omni_power:gdx-skins\tubular\raw\button-sidebar.png +omni_power:gdx-skins\tubular\raw\button-speaker-over.png +omni_power:gdx-skins\tubular\raw\button-speaker-pressed.png +omni_power:gdx-skins\tubular\raw\button-speaker.png +omni_power:gdx-skins\tubular\raw\button-text-menu-pressed.9.png +omni_power:gdx-skins\tubular\raw\button-text-menu-pressed.png +omni_power:gdx-skins\tubular\raw\button-text-menu.9.png +omni_power:gdx-skins\tubular\raw\button-text-menu.png +omni_power:gdx-skins\tubular\raw\button.9.png +omni_power:gdx-skins\tubular\raw\button.png +omni_power:gdx-skins\tubular\raw\checkbox-off.png +omni_power:gdx-skins\tubular\raw\checkbox-on.png +omni_power:gdx-skins\tubular\raw\font-export.fnt +omni_power:gdx-skins\tubular\raw\font-export.png +omni_power:gdx-skins\tubular\raw\font.png +omni_power:gdx-skins\tubular\raw\list.9.png +omni_power:gdx-skins\tubular\raw\list.png +omni_power:gdx-skins\tubular\raw\logo small.png +omni_power:gdx-skins\tubular\raw\logo.png +omni_power:gdx-skins\tubular\raw\progress-bar-horizontal-knob.png +omni_power:gdx-skins\tubular\raw\progress-bar-horizontal.png +omni_power:gdx-skins\tubular\raw\progress-bar-vertical-knob.png +omni_power:gdx-skins\tubular\raw\progress-bar-vertical.png +omni_power:gdx-skins\tubular\raw\scroll-bar-horizontal.png +omni_power:gdx-skins\tubular\raw\scroll-bar-vertical.png +omni_power:gdx-skins\tubular\raw\scroll-bg.9.png +omni_power:gdx-skins\tubular\raw\scroll-bg.png +omni_power:gdx-skins\tubular\raw\select-box-over.9.png +omni_power:gdx-skins\tubular\raw\select-box-over.png +omni_power:gdx-skins\tubular\raw\select-box-pressed.9.png +omni_power:gdx-skins\tubular\raw\select-box-pressed.png +omni_power:gdx-skins\tubular\raw\select-box.9.png +omni_power:gdx-skins\tubular\raw\select-box.png +omni_power:gdx-skins\tubular\raw\slider-knob.png +omni_power:gdx-skins\tubular\raw\slider-volume-horizontal.9.png +omni_power:gdx-skins\tubular\raw\slider-volume-horizontal.png +omni_power:gdx-skins\tubular\raw\slider-volume-knob.png +omni_power:gdx-skins\tubular\raw\slider-volume-vertical.9.png +omni_power:gdx-skins\tubular\raw\slider-volume-vertical.png +omni_power:gdx-skins\tubular\raw\super-click-bait.png +omni_power:gdx-skins\tubular\raw\textfield-pressed.9.png +omni_power:gdx-skins\tubular\raw\textfield-pressed.png +omni_power:gdx-skins\tubular\raw\textfield.9.png +omni_power:gdx-skins\tubular\raw\textfield.png +omni_power:gdx-skins\tubular\raw\toolbar.9.png +omni_power:gdx-skins\tubular\raw\toolbar.png +omni_power:gdx-skins\tubular\raw\tooltip.9.png +omni_power:gdx-skins\tubular\raw\tooltip.png +omni_power:gdx-skins\tubular\raw\user.png +omni_power:gdx-skins\tubular\raw\white.png +omni_power:gdx-skins\tubular\skin\font-export.fnt +omni_power:gdx-skins\tubular\skin\tubular-ui.atlas +omni_power:gdx-skins\tubular\skin\tubular-ui.json +omni_power:gdx-skins\tubular\skin\tubular-ui.png +omni_power:gdx-skins\vhs\raw\button-over.9.png +omni_power:gdx-skins\vhs\raw\button-over.png +omni_power:gdx-skins\vhs\raw\button.9.png +omni_power:gdx-skins\vhs\raw\button.png +omni_power:gdx-skins\vhs\raw\checkbox-on.png +omni_power:gdx-skins\vhs\raw\checkbox.png +omni_power:gdx-skins\vhs\raw\cursor.png +omni_power:gdx-skins\vhs\raw\font-export.fnt +omni_power:gdx-skins\vhs\raw\font-export.png +omni_power:gdx-skins\vhs\raw\font-title-export.fnt +omni_power:gdx-skins\vhs\raw\font-title-export.png +omni_power:gdx-skins\vhs\raw\font-title.png +omni_power:gdx-skins\vhs\raw\font.png +omni_power:gdx-skins\vhs\raw\label-fastforward.9.png +omni_power:gdx-skins\vhs\raw\label-fastforward.png +omni_power:gdx-skins\vhs\raw\label-pause.9.png +omni_power:gdx-skins\vhs\raw\label-pause.png +omni_power:gdx-skins\vhs\raw\label-play.9.png +omni_power:gdx-skins\vhs\raw\label-play.png +omni_power:gdx-skins\vhs\raw\label-reverse.9.png +omni_power:gdx-skins\vhs\raw\label-reverse.png +omni_power:gdx-skins\vhs\raw\label-stop.9.png +omni_power:gdx-skins\vhs\raw\label-stop.png +omni_power:gdx-skins\vhs\raw\progressbar-knob.png +omni_power:gdx-skins\vhs\raw\progressbar.9.png +omni_power:gdx-skins\vhs\raw\progressbar.png +omni_power:gdx-skins\vhs\raw\textfield.9.png +omni_power:gdx-skins\vhs\raw\textfield.png +omni_power:gdx-skins\vhs\skin\font-export.fnt +omni_power:gdx-skins\vhs\skin\font-title-export.fnt +omni_power:gdx-skins\vhs\skin\vhs-ui.atlas +omni_power:gdx-skins\vhs\skin\vhs-ui.json +omni_power:gdx-skins\vhs\skin\vhs-ui.png +omni_power:gdx-skins\vis\raw\icon-folder-new.svg +omni_power:gdx-skins\vis\raw\uiskin.usl +omni_power:gdx-skins\vis\raw\vis-ui.svg +omni_power:gdx-skins\vis\raw\VisOpenSans.ttf +omni_power:gdx-skins\vis\raw\VisOpenSansKerned.ttf omni_power:models\blocks\adapter\model_cable_adapter_blue.json omni_power:models\blocks\adapter\model_cable_adapter_red.json +omni_power:gdx-skins\extras\chronos\raw\bg.png +omni_power:gdx-skins\extras\chronos\raw\classic-bg.png +omni_power:gdx-skins\extras\chronos\raw\classic-font-export.fnt +omni_power:gdx-skins\extras\chronos\raw\classic-font-export.png +omni_power:gdx-skins\extras\chronos\raw\classic-font.png +omni_power:gdx-skins\extras\chronos\raw\classic-hour.png +omni_power:gdx-skins\extras\chronos\raw\classic-minute.png +omni_power:gdx-skins\extras\chronos\raw\classic-second.png +omni_power:gdx-skins\extras\chronos\raw\simple-bg.png +omni_power:gdx-skins\extras\chronos\raw\simple-font-export.fnt +omni_power:gdx-skins\extras\chronos\raw\simple-font-export.png +omni_power:gdx-skins\extras\chronos\raw\simple-font.png +omni_power:gdx-skins\extras\chronos\raw\simple-hour.png +omni_power:gdx-skins\extras\chronos\raw\simple-minute.png +omni_power:gdx-skins\extras\chronos\raw\simple-second.png +omni_power:gdx-skins\extras\chronos\raw\stylish-bg.png +omni_power:gdx-skins\extras\chronos\raw\stylish-font-export.fnt +omni_power:gdx-skins\extras\chronos\raw\stylish-font-export.png +omni_power:gdx-skins\extras\chronos\raw\stylish-font.png +omni_power:gdx-skins\extras\chronos\raw\stylish-hour.png +omni_power:gdx-skins\extras\chronos\raw\stylish-minute.png +omni_power:gdx-skins\extras\chronos\raw\stylish-second.png +omni_power:gdx-skins\extras\chronos\skin\chronos-ui.atlas +omni_power:gdx-skins\extras\chronos\skin\chronos-ui.json +omni_power:gdx-skins\extras\chronos\skin\chronos-ui.png +omni_power:gdx-skins\extras\chronos\skin\classic-font-export.fnt +omni_power:gdx-skins\extras\chronos\skin\simple-font-export.fnt +omni_power:gdx-skins\extras\chronos\skin\stylish-font-export.fnt +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-blue.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-blue.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-commons.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-commons.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-gray.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-gray.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-green.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-green.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-orange.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-orange.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-red.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-red.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-white.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-white.png +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-yellow.atlas +omni_power:gdx-skins\extras\kenney-atlas\skin\ui-yellow.png +omni_power:gdx-skins\flat\raw\extras\light.json +omni_power:gdx-skins\flat\raw\extras\macros.lml +omni_power:gdx-skins\flat\raw\extras\preview.lml +omni_power:gdx-skins\flat\raw\extras\README.md +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\dark-hdpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\dark-hdpi\Roboto-hdpi.png +omni_power:gdx-skins\holo\raw\dark-hdpi\Roboto-Thin-hdpi.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\text.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\dark-hdpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-hdpi\tree_minus.png +omni_power:gdx-skins\holo\raw\dark-hdpi\tree_plus.png +omni_power:gdx-skins\holo\raw\dark-hdpi\white_pixel.png +omni_power:gdx-skins\holo\raw\dark-hdpi\window.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\dark-ldpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\dark-ldpi\Roboto-ldpi.png +omni_power:gdx-skins\holo\raw\dark-ldpi\Roboto-Thin-ldpi.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\text.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\dark-ldpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-ldpi\tree_minus.png +omni_power:gdx-skins\holo\raw\dark-ldpi\tree_plus.png +omni_power:gdx-skins\holo\raw\dark-ldpi\white_pixel.png +omni_power:gdx-skins\holo\raw\dark-ldpi\window.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\dark-mdpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\dark-mdpi\Roboto-mdpi.png +omni_power:gdx-skins\holo\raw\dark-mdpi\Roboto-Thin-mdpi.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\text.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\dark-mdpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-mdpi\tree_minus.png +omni_power:gdx-skins\holo\raw\dark-mdpi\tree_plus.png +omni_power:gdx-skins\holo\raw\dark-mdpi\white_pixel.png +omni_power:gdx-skins\holo\raw\dark-mdpi\window.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\Roboto-Thin-xhdpi.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\Roboto-xhdpi.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\text.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\textfield_cursor_old.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\tree_minus.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\tree_plus.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\white_pixel.png +omni_power:gdx-skins\holo\raw\dark-xhdpi\window.9.png +omni_power:gdx-skins\holo\raw\fonts\holo.json +omni_power:gdx-skins\holo\raw\fonts\Roboto-hdpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-hdpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-ldpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-ldpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-mdpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-mdpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-hdpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-hdpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-ldpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-ldpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-mdpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-mdpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-xhdpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-Thin-xhdpi.png +omni_power:gdx-skins\holo\raw\fonts\Roboto-xhdpi.fnt +omni_power:gdx-skins\holo\raw\fonts\Roboto-xhdpi.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\light-hdpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\light-hdpi\Roboto-hdpi.png +omni_power:gdx-skins\holo\raw\light-hdpi\Roboto-Thin-hdpi.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\text.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\light-hdpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\text_selected.png +omni_power:gdx-skins\holo\raw\light-hdpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\light-hdpi\tree_minus.png +omni_power:gdx-skins\holo\raw\light-hdpi\tree_plus.png +omni_power:gdx-skins\holo\raw\light-hdpi\white_pixel.png +omni_power:gdx-skins\holo\raw\light-hdpi\window.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\light-ldpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\light-ldpi\Roboto-ldpi.png +omni_power:gdx-skins\holo\raw\light-ldpi\Roboto-Thin-ldpi.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\text.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\light-ldpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\text_selected.png +omni_power:gdx-skins\holo\raw\light-ldpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\light-ldpi\tree_minus.png +omni_power:gdx-skins\holo\raw\light-ldpi\tree_plus.png +omni_power:gdx-skins\holo\raw\light-ldpi\white_pixel.png +omni_power:gdx-skins\holo\raw\light-ldpi\window.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\light-mdpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\light-mdpi\Roboto-mdpi.png +omni_power:gdx-skins\holo\raw\light-mdpi\Roboto-Thin-mdpi.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\text.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\light-mdpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\text_selected.png +omni_power:gdx-skins\holo\raw\light-mdpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\light-mdpi\tree_minus.png +omni_power:gdx-skins\holo\raw\light-mdpi\tree_plus.png +omni_power:gdx-skins\holo\raw\light-mdpi\white_pixel.png +omni_power:gdx-skins\holo\raw\light-mdpi\window.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_check_off.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_check_on.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_check_on_focused.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_default_disabled.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_default_focused.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_default_normal.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_default_pressed.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_radio_off.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_radio_on.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_radio_on_focused.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_toggle_off_disabled.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_toggle_off_focused.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_toggle_off_normal.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_toggle_on_focused.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_toggle_on_normal.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\btn_toggle_on_pressed.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\icon-blitz.png +omni_power:gdx-skins\holo\raw\light-xhdpi\icon-blitz_pressed.png +omni_power:gdx-skins\holo\raw\light-xhdpi\Roboto-Thin-xhdpi.png +omni_power:gdx-skins\holo\raw\light-xhdpi\Roboto-xhdpi.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll_corner.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll_horizontal_knob.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll_opaque.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll_vertical.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scroll_vertical_knob.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_control_normal.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_primary.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_secondary.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_track.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_vertical_primary.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_vertical_secondary.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\scrubber_vertical_track.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\spinner_default.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\spinner_focused.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\spinner_pressed.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\splitpane_horizontal.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\splitpane_vertical.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\textfield_cursor.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\textfield_default.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\textfield_disabled.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\textfield_focused.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\textfield_selection.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text_focused.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text_focused_opaque.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text_opaque.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text_selected.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text_selected.png +omni_power:gdx-skins\holo\raw\light-xhdpi\text_selected_opaque.9.png +omni_power:gdx-skins\holo\raw\light-xhdpi\tree_minus.png +omni_power:gdx-skins\holo\raw\light-xhdpi\tree_plus.png +omni_power:gdx-skins\holo\raw\light-xhdpi\white_pixel.png +omni_power:gdx-skins\holo\raw\light-xhdpi\window.9.png +omni_power:gdx-skins\holo\skin\dark-hdpi\Holo-dark-hdpi.atlas +omni_power:gdx-skins\holo\skin\dark-hdpi\Holo-dark-hdpi.json +omni_power:gdx-skins\holo\skin\dark-hdpi\Holo-dark-hdpi.png +omni_power:gdx-skins\holo\skin\dark-hdpi\Roboto-hdpi.fnt +omni_power:gdx-skins\holo\skin\dark-hdpi\Roboto-Thin-hdpi.fnt +omni_power:gdx-skins\holo\skin\dark-ldpi\Holo-dark-ldpi.atlas +omni_power:gdx-skins\holo\skin\dark-ldpi\Holo-dark-ldpi.json +omni_power:gdx-skins\holo\skin\dark-ldpi\Holo-dark-ldpi.png +omni_power:gdx-skins\holo\skin\dark-ldpi\Roboto-ldpi.fnt +omni_power:gdx-skins\holo\skin\dark-ldpi\Roboto-Thin-ldpi.fnt +omni_power:gdx-skins\holo\skin\dark-mdpi\Holo-dark-mdpi.atlas +omni_power:gdx-skins\holo\skin\dark-mdpi\Holo-dark-mdpi.json +omni_power:gdx-skins\holo\skin\dark-mdpi\Holo-dark-mdpi.png +omni_power:gdx-skins\holo\skin\dark-mdpi\Roboto-mdpi.fnt +omni_power:gdx-skins\holo\skin\dark-mdpi\Roboto-Thin-mdpi.fnt +omni_power:gdx-skins\holo\skin\dark-xhdpi\Holo-dark-xhdpi.atlas +omni_power:gdx-skins\holo\skin\dark-xhdpi\Holo-dark-xhdpi.json +omni_power:gdx-skins\holo\skin\dark-xhdpi\Holo-dark-xhdpi.png +omni_power:gdx-skins\holo\skin\dark-xhdpi\Roboto-Thin-xhdpi.fnt +omni_power:gdx-skins\holo\skin\dark-xhdpi\Roboto-xhdpi.fnt +omni_power:gdx-skins\holo\skin\light-hdpi\Holo-light-hdpi.atlas +omni_power:gdx-skins\holo\skin\light-hdpi\Holo-light-hdpi.json +omni_power:gdx-skins\holo\skin\light-hdpi\Holo-light-hdpi.png +omni_power:gdx-skins\holo\skin\light-hdpi\Roboto-hdpi.fnt +omni_power:gdx-skins\holo\skin\light-hdpi\Roboto-Thin-hdpi.fnt +omni_power:gdx-skins\holo\skin\light-ldpi\Holo-light-ldpi.atlas +omni_power:gdx-skins\holo\skin\light-ldpi\Holo-light-ldpi.json +omni_power:gdx-skins\holo\skin\light-ldpi\Holo-light-ldpi.png +omni_power:gdx-skins\holo\skin\light-ldpi\Roboto-ldpi.fnt +omni_power:gdx-skins\holo\skin\light-ldpi\Roboto-Thin-ldpi.fnt +omni_power:gdx-skins\holo\skin\light-mdpi\Holo-light-mdpi.atlas +omni_power:gdx-skins\holo\skin\light-mdpi\Holo-light-mdpi.json +omni_power:gdx-skins\holo\skin\light-mdpi\Holo-light-mdpi.png +omni_power:gdx-skins\holo\skin\light-mdpi\Roboto-mdpi.fnt +omni_power:gdx-skins\holo\skin\light-mdpi\Roboto-Thin-mdpi.fnt +omni_power:gdx-skins\holo\skin\light-xhdpi\Holo-light-xhdpi.atlas +omni_power:gdx-skins\holo\skin\light-xhdpi\Holo-light-xhdpi.json +omni_power:gdx-skins\holo\skin\light-xhdpi\Holo-light-xhdpi.png +omni_power:gdx-skins\holo\skin\light-xhdpi\Roboto-Thin-xhdpi.fnt +omni_power:gdx-skins\holo\skin\light-xhdpi\Roboto-xhdpi.fnt +omni_power:gdx-skins\kenney-pixel\raw\extras\basic.xcf +omni_power:gdx-skins\kenney-pixel\raw\extras\dark.json +omni_power:gdx-skins\kenney-pixel\raw\extras\preview.lml +omni_power:gdx-skins\kenney-pixel\raw\extras\README.md +omni_power:gdx-skins\kenney-pixel\raw\extras\sheet.png +omni_power:gdx-skins\orange\skin\extras\README.md +omni_power:gdx-skins\vis\raw\x1\border-circle-error.png +omni_power:gdx-skins\vis\raw\x1\border-circle.png +omni_power:gdx-skins\vis\raw\x1\border-dark-blue.9.png +omni_power:gdx-skins\vis\raw\x1\border-error.9.png +omni_power:gdx-skins\vis\raw\x1\border.9.png +omni_power:gdx-skins\vis\raw\x1\button-blue-down.9.png +omni_power:gdx-skins\vis\raw\x1\button-blue-over.9.png +omni_power:gdx-skins\vis\raw\x1\button-blue.9.png +omni_power:gdx-skins\vis\raw\x1\button-down.9.png +omni_power:gdx-skins\vis\raw\x1\button-over.9.png +omni_power:gdx-skins\vis\raw\x1\button-red.9.png +omni_power:gdx-skins\vis\raw\x1\button-window-bg.9.png +omni_power:gdx-skins\vis\raw\x1\button.9.png +omni_power:gdx-skins\vis\raw\x1\check-down-on.png +omni_power:gdx-skins\vis\raw\x1\check-down.png +omni_power:gdx-skins\vis\raw\x1\check-off.png +omni_power:gdx-skins\vis\raw\x1\check-on-disabled.png +omni_power:gdx-skins\vis\raw\x1\check-on.png +omni_power:gdx-skins\vis\raw\x1\check-over-off.png +omni_power:gdx-skins\vis\raw\x1\check-over-on.png +omni_power:gdx-skins\vis\raw\x1\color-picker-bar-selector.png +omni_power:gdx-skins\vis\raw\x1\color-picker-cross.png +omni_power:gdx-skins\vis\raw\x1\color-picker-selector-horizontal.png +omni_power:gdx-skins\vis\raw\x1\color-picker-selector-vertical.png +omni_power:gdx-skins\vis\raw\x1\cursor.9.png +omni_power:gdx-skins\vis\raw\x1\default-pane-noborder.9.png +omni_power:gdx-skins\vis\raw\x1\default-pane.9.png +omni_power:gdx-skins\vis\raw\x1\default-select-selection.9.png +omni_power:gdx-skins\vis\raw\x1\default-select.9.png +omni_power:gdx-skins\vis\raw\x1\default.png +omni_power:gdx-skins\vis\raw\x1\font-small.png +omni_power:gdx-skins\vis\raw\x1\grey.png +omni_power:gdx-skins\vis\raw\x1\icon-arrow-left.png +omni_power:gdx-skins\vis\raw\x1\icon-arrow-right.png +omni_power:gdx-skins\vis\raw\x1\icon-close.png +omni_power:gdx-skins\vis\raw\x1\icon-drive.png +omni_power:gdx-skins\vis\raw\x1\icon-file-audio.png +omni_power:gdx-skins\vis\raw\x1\icon-file-image.png +omni_power:gdx-skins\vis\raw\x1\icon-file-pdf.png +omni_power:gdx-skins\vis\raw\x1\icon-file-text.png +omni_power:gdx-skins\vis\raw\x1\icon-folder-new.png +omni_power:gdx-skins\vis\raw\x1\icon-folder-parent.png +omni_power:gdx-skins\vis\raw\x1\icon-folder-star.png +omni_power:gdx-skins\vis\raw\x1\icon-folder.png +omni_power:gdx-skins\vis\raw\x1\icon-trash.png +omni_power:gdx-skins\vis\raw\x1\list-selection.png +omni_power:gdx-skins\vis\raw\x1\menu-bg.png +omni_power:gdx-skins\vis\raw\x1\pack.json +omni_power:gdx-skins\vis\raw\x1\padded-list-selection.9.png +omni_power:gdx-skins\vis\raw\x1\progressbar-filled-vertical.png +omni_power:gdx-skins\vis\raw\x1\progressbar-filled.png +omni_power:gdx-skins\vis\raw\x1\progressbar-vertical.png +omni_power:gdx-skins\vis\raw\x1\progressbar.png +omni_power:gdx-skins\vis\raw\x1\radio-down-on.png +omni_power:gdx-skins\vis\raw\x1\radio-down.png +omni_power:gdx-skins\vis\raw\x1\radio-off.png +omni_power:gdx-skins\vis\raw\x1\radio-on-disabled.png +omni_power:gdx-skins\vis\raw\x1\radio-on.png +omni_power:gdx-skins\vis\raw\x1\radio-over-off.png +omni_power:gdx-skins\vis\raw\x1\radio-over-on.png +omni_power:gdx-skins\vis\raw\x1\scroll-horizontal.9.png +omni_power:gdx-skins\vis\raw\x1\scroll-knob-horizontal.9.png +omni_power:gdx-skins\vis\raw\x1\scroll-knob-vertical.9.png +omni_power:gdx-skins\vis\raw\x1\scroll.9.png +omni_power:gdx-skins\vis\raw\x1\select-box-list-bg.png +omni_power:gdx-skins\vis\raw\x1\select-down.png +omni_power:gdx-skins\vis\raw\x1\select-up.png +omni_power:gdx-skins\vis\raw\x1\selection.png +omni_power:gdx-skins\vis\raw\x1\separator-menu.png +omni_power:gdx-skins\vis\raw\x1\separator.png +omni_power:gdx-skins\vis\raw\x1\slider-knob-disabled.png +omni_power:gdx-skins\vis\raw\x1\slider-knob-down.png +omni_power:gdx-skins\vis\raw\x1\slider-knob-over.png +omni_power:gdx-skins\vis\raw\x1\slider-knob.png +omni_power:gdx-skins\vis\raw\x1\slider-vertical.png +omni_power:gdx-skins\vis\raw\x1\slider.png +omni_power:gdx-skins\vis\raw\x1\splitpane-over.png +omni_power:gdx-skins\vis\raw\x1\splitpane-vertical-over.png +omni_power:gdx-skins\vis\raw\x1\splitpane-vertical.png +omni_power:gdx-skins\vis\raw\x1\splitpane.png +omni_power:gdx-skins\vis\raw\x1\sub-menu.png +omni_power:gdx-skins\vis\raw\x1\textfield-over.9.png +omni_power:gdx-skins\vis\raw\x1\textfield.9.png +omni_power:gdx-skins\vis\raw\x1\tooltip-bg.9.png +omni_power:gdx-skins\vis\raw\x1\touchpad-knob.png +omni_power:gdx-skins\vis\raw\x1\tree-minus.png +omni_power:gdx-skins\vis\raw\x1\tree-over.png +omni_power:gdx-skins\vis\raw\x1\tree-plus.png +omni_power:gdx-skins\vis\raw\x1\tree-selection.9.png +omni_power:gdx-skins\vis\raw\x1\vis-blue.png +omni_power:gdx-skins\vis\raw\x1\vis-red.png +omni_power:gdx-skins\vis\raw\x1\white.png +omni_power:gdx-skins\vis\raw\x1\window-bg.png +omni_power:gdx-skins\vis\raw\x1\window-noborder.9.png +omni_power:gdx-skins\vis\raw\x1\window-resizable.9.png +omni_power:gdx-skins\vis\raw\x1\window.9.png +omni_power:gdx-skins\vis\raw\x1-fonts\default.hiero +omni_power:gdx-skins\vis\raw\x1-fonts\font-small.hiero +omni_power:gdx-skins\vis\raw\x2\border-circle-error.png +omni_power:gdx-skins\vis\raw\x2\border-circle.png +omni_power:gdx-skins\vis\raw\x2\border-dark-blue.9.png +omni_power:gdx-skins\vis\raw\x2\border-error.9.png +omni_power:gdx-skins\vis\raw\x2\border.9.png +omni_power:gdx-skins\vis\raw\x2\button-blue-down.9.png +omni_power:gdx-skins\vis\raw\x2\button-blue-over.9.png +omni_power:gdx-skins\vis\raw\x2\button-blue.9.png +omni_power:gdx-skins\vis\raw\x2\button-down.9.png +omni_power:gdx-skins\vis\raw\x2\button-over.9.png +omni_power:gdx-skins\vis\raw\x2\button-red.9.png +omni_power:gdx-skins\vis\raw\x2\button-window-bg.9.png +omni_power:gdx-skins\vis\raw\x2\button.9.png +omni_power:gdx-skins\vis\raw\x2\check-down-on.png +omni_power:gdx-skins\vis\raw\x2\check-down.png +omni_power:gdx-skins\vis\raw\x2\check-off.png +omni_power:gdx-skins\vis\raw\x2\check-on-disabled.png +omni_power:gdx-skins\vis\raw\x2\check-on.png +omni_power:gdx-skins\vis\raw\x2\check-over-off.png +omni_power:gdx-skins\vis\raw\x2\check-over-on.png +omni_power:gdx-skins\vis\raw\x2\color-picker-bar-selector.png +omni_power:gdx-skins\vis\raw\x2\color-picker-cross.png +omni_power:gdx-skins\vis\raw\x2\color-picker-selector-horizontal.png +omni_power:gdx-skins\vis\raw\x2\color-picker-selector-vertical.png +omni_power:gdx-skins\vis\raw\x2\cursor.9.png +omni_power:gdx-skins\vis\raw\x2\default-pane-no-border.9.png +omni_power:gdx-skins\vis\raw\x2\default-pane.9.png +omni_power:gdx-skins\vis\raw\x2\default-select-selection.9.png +omni_power:gdx-skins\vis\raw\x2\default-select.9.png +omni_power:gdx-skins\vis\raw\x2\default.png +omni_power:gdx-skins\vis\raw\x2\font-small.png +omni_power:gdx-skins\vis\raw\x2\grey.png +omni_power:gdx-skins\vis\raw\x2\icon-arrow-left.png +omni_power:gdx-skins\vis\raw\x2\icon-arrow-right.png +omni_power:gdx-skins\vis\raw\x2\icon-close.png +omni_power:gdx-skins\vis\raw\x2\icon-drive.png +omni_power:gdx-skins\vis\raw\x2\icon-file-audio.png +omni_power:gdx-skins\vis\raw\x2\icon-file-image.png +omni_power:gdx-skins\vis\raw\x2\icon-file-pdf.png +omni_power:gdx-skins\vis\raw\x2\icon-file-text.png +omni_power:gdx-skins\vis\raw\x2\icon-folder-new.png +omni_power:gdx-skins\vis\raw\x2\icon-folder-parent.png +omni_power:gdx-skins\vis\raw\x2\icon-folder-star.png +omni_power:gdx-skins\vis\raw\x2\icon-folder.png +omni_power:gdx-skins\vis\raw\x2\icon-trash.png +omni_power:gdx-skins\vis\raw\x2\list-selection.png +omni_power:gdx-skins\vis\raw\x2\menu-bg.png +omni_power:gdx-skins\vis\raw\x2\pack.json +omni_power:gdx-skins\vis\raw\x2\padded-list-selection.9.png +omni_power:gdx-skins\vis\raw\x2\progressbar-filled-vertical.png +omni_power:gdx-skins\vis\raw\x2\progressbar-filled.png +omni_power:gdx-skins\vis\raw\x2\progressbar-vertical.png +omni_power:gdx-skins\vis\raw\x2\progressbar.png +omni_power:gdx-skins\vis\raw\x2\radio-down-on.png +omni_power:gdx-skins\vis\raw\x2\radio-down.png +omni_power:gdx-skins\vis\raw\x2\radio-off.png +omni_power:gdx-skins\vis\raw\x2\radio-on-disabled.png +omni_power:gdx-skins\vis\raw\x2\radio-on.png +omni_power:gdx-skins\vis\raw\x2\radio-over-off.png +omni_power:gdx-skins\vis\raw\x2\radio-over-on.png +omni_power:gdx-skins\vis\raw\x2\scroll-horizontal.9.png +omni_power:gdx-skins\vis\raw\x2\scroll-knob-horizontal.9.png +omni_power:gdx-skins\vis\raw\x2\scroll-knob-vertical.9.png +omni_power:gdx-skins\vis\raw\x2\scroll.9.png +omni_power:gdx-skins\vis\raw\x2\select-box-list-bg.png +omni_power:gdx-skins\vis\raw\x2\select-down.png +omni_power:gdx-skins\vis\raw\x2\select-up.png +omni_power:gdx-skins\vis\raw\x2\selection.png +omni_power:gdx-skins\vis\raw\x2\separator-menu.png +omni_power:gdx-skins\vis\raw\x2\separator.png +omni_power:gdx-skins\vis\raw\x2\slider-knob-disabled.png +omni_power:gdx-skins\vis\raw\x2\slider-knob-down.png +omni_power:gdx-skins\vis\raw\x2\slider-knob-over.png +omni_power:gdx-skins\vis\raw\x2\slider-knob.png +omni_power:gdx-skins\vis\raw\x2\slider-vertical.png +omni_power:gdx-skins\vis\raw\x2\slider.png +omni_power:gdx-skins\vis\raw\x2\splitpane-over.png +omni_power:gdx-skins\vis\raw\x2\splitpane-vertical-over.png +omni_power:gdx-skins\vis\raw\x2\splitpane-vertical.png +omni_power:gdx-skins\vis\raw\x2\splitpane.png +omni_power:gdx-skins\vis\raw\x2\sub-menu.png +omni_power:gdx-skins\vis\raw\x2\textfield-over.9.png +omni_power:gdx-skins\vis\raw\x2\textfield.9.png +omni_power:gdx-skins\vis\raw\x2\tooltip-bg.9.png +omni_power:gdx-skins\vis\raw\x2\touchpad-knob.png +omni_power:gdx-skins\vis\raw\x2\tree-minus.png +omni_power:gdx-skins\vis\raw\x2\tree-over.png +omni_power:gdx-skins\vis\raw\x2\tree-plus.png +omni_power:gdx-skins\vis\raw\x2\tree-selection.9.png +omni_power:gdx-skins\vis\raw\x2\vis-blue.png +omni_power:gdx-skins\vis\raw\x2\vis-red.png +omni_power:gdx-skins\vis\raw\x2\white.png +omni_power:gdx-skins\vis\raw\x2\window-bg.png +omni_power:gdx-skins\vis\raw\x2\window-noborder.9.png +omni_power:gdx-skins\vis\raw\x2\window-resizable.9.png +omni_power:gdx-skins\vis\raw\x2\window.9.png +omni_power:gdx-skins\vis\raw\x2-fonts\default.hiero +omni_power:gdx-skins\vis\raw\x2-fonts\font-small.hiero +omni_power:gdx-skins\vis\skin\x1\default.fnt +omni_power:gdx-skins\vis\skin\x1\font-small.fnt +omni_power:gdx-skins\vis\skin\x1\uiskin.atlas +omni_power:gdx-skins\vis\skin\x1\uiskin.json +omni_power:gdx-skins\vis\skin\x1\uiskin.png +omni_power:gdx-skins\vis\skin\x2\default.fnt +omni_power:gdx-skins\vis\skin\x2\font-small.fnt +omni_power:gdx-skins\vis\skin\x2\uiskin.atlas +omni_power:gdx-skins\vis\skin\x2\uiskin.json +omni_power:gdx-skins\vis\skin\x2\uiskin.png +omni_power:gdx-skins\orange\skin\extras\skin-composer-dark\dark-peel-ui.atlas +omni_power:gdx-skins\orange\skin\extras\skin-composer-dark\dark-peel-ui.json +omni_power:gdx-skins\orange\skin\extras\skin-composer-dark\dark-peel-ui.png +omni_power:gdx-skins\orange\skin\extras\skin-composer-dark\font-export.fnt +omni_power:gdx-skins\orange\skin\extras\skin-composer-dark\font-shortcut-export.fnt +omni_power:gdx-skins\orange\skin\extras\skin-composer-dark\font-title-export.fnt +omni_power:gdx-skins\orange\skin\extras\skin-composer-light\font-export.fnt +omni_power:gdx-skins\orange\skin\extras\skin-composer-light\font-shortcut-export.fnt +omni_power:gdx-skins\orange\skin\extras\skin-composer-light\font-title-export.fnt +omni_power:gdx-skins\orange\skin\extras\skin-composer-light\uiskin.atlas +omni_power:gdx-skins\orange\skin\extras\skin-composer-light\uiskin.json +omni_power:gdx-skins\orange\skin\extras\skin-composer-light\uiskin.png diff --git a/src/main/resources/omni_power/blocks/custom_crate.json b/src/main/resources/omni_power/blocks/custom_crate.json new file mode 100644 index 0000000..8afb342 --- /dev/null +++ b/src/main/resources/omni_power/blocks/custom_crate.json @@ -0,0 +1,23 @@ +{ + "stringId": "omni_power:custom_crate_wooden", + "blockEntityId": "omni_power:CustomUIBlockEntity", + "blockEntityParams": + { + "numSlots": 3, + "gui": "example_ui" + }, + "blockStates": + { + "default": + { + "modelName": "base:models/blocks/model_crate_wooden.json", + "tags": [ + "tool_axe_effective" + ], + "intProperties": + { + "fuelTicks": 128 + } + } + } +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/.github/images/gdx-setup.png b/src/main/resources/omni_power/gdx-skins/.github/images/gdx-setup.png new file mode 100644 index 0000000..db6a8cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/.github/images/gdx-setup.png differ diff --git a/src/main/resources/omni_power/gdx-skins/.github/images/intellij-plugin.png b/src/main/resources/omni_power/gdx-skins/.github/images/intellij-plugin.png new file mode 100644 index 0000000..0ece9fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/.github/images/intellij-plugin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/.github/images/skin-composer.png b/src/main/resources/omni_power/gdx-skins/.github/images/skin-composer.png new file mode 100644 index 0000000..a871e68 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/.github/images/skin-composer.png differ diff --git a/src/main/resources/omni_power/gdx-skins/.github/images/texture-packer.png b/src/main/resources/omni_power/gdx-skins/.github/images/texture-packer.png new file mode 100644 index 0000000..7bc1177 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/.github/images/texture-packer.png differ diff --git a/src/main/resources/omni_power/gdx-skins/.github/images/vis-ui.png b/src/main/resources/omni_power/gdx-skins/.github/images/vis-ui.png new file mode 100644 index 0000000..1809adf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/.github/images/vis-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/.gitignore b/src/main/resources/omni_power/gdx-skins/.gitignore new file mode 100644 index 0000000..99f8b9c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/.gitignore @@ -0,0 +1,56 @@ +## Based on default LibGDX project settings. + +## Java +*.class +*.war +*.ear +hs_err_pid* + +## GWT +war/ +html/war/gwt_bree/ +html/gwt-unitCache/ +.apt_generated/ +html/war/WEB-INF/deploy/ +html/war/WEB-INF/classes/ +.gwt/ +gwt-unitCache/ +www-test/ +.gwt-tmp/ + +## Android Studio, IntelliJ, Android +android/libs/armeabi/ +android/libs/armeabi-v7a/ +android/libs/x86/ +android/gen/ +.idea/ +*.ipr +*.iws +*.iml +out/ +com_crashlytics_export_strings.xml + +## Eclipse +.classpath +.project +.metadata +**/bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath +.externalToolBuilders/ +*.launch + +## Gradle +.gradle +gradle-app.setting +build/ + +## OS-specific, others +.DS_Store +TODO diff --git a/src/main/resources/omni_power/gdx-skins/README.md b/src/main/resources/omni_power/gdx-skins/README.md new file mode 100644 index 0000000..29d306e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/README.md @@ -0,0 +1,105 @@ +# LibGDX skins + +**LibGDX** comes with a *Scene2D* GUI module, which allows you to easily create your GUIs and customize them with `Skin` +instances. However, most beginners struggle with a problem: the GUI comes without a default skin, which makes it difficult +to test it. + +One could argue that it's the right approach, as it keeps framework's core `jar` smaller - but when you're trying to +learn a new thing, *something* is generally better than *nothing*. + +This repository contains *something*. + +### [**DOWNLOAD. ALL OF THEM.**](https://github.com/czyzby/gdx-skins/archive/master.zip) + +### Free assets + +You've probably stumbled upon the [default LibGDX skin](default), which was originally created to test *Scene2D* API in +the official LibGDX repository. It's alright, if you want to test things out - but by the time you're making an actual +LibGDX application, you're probably better off with something less *programmer-art*-ish. + +This repository collects free skins collected or contributed by various users. Most can be used free of charge. + +Note that some of the included skins might be out of date or incompatible with the latest LibGDX releases. However, +most skins include the raw resources and links to the original uploads in the `README` files - if you're interested +in a particular skin, make sure you're using up-to-date assets. This repository includes duplicates the skin files +for two reasons: original uploads might expire (or be moved) and it's very convenient to download them all at once +to try each one out. + +## Additional resources + +If you're learning *Scene2D* API, make sure to check out these resources. + +### Unofficial tools you might not know about + +[![LibGDX Texture Packer GUI](.github/images/texture-packer.png)](https://github.com/crashinvaders/gdx-texture-packer-gui) + +[Texture Packer GUI](https://github.com/crashinvaders/gdx-texture-packer-gui) allows to create texture atlases from +multiple images. It provides a graphical interface for [the official texture packer tool](https://libgdx.com/wiki/tools/texture-packer). + +[![IntelliJ LibGDX plugin](.github/images/intellij-plugin.png)](https://github.com/BlueBoxWare/LibGDXPlugin) + +[IntelliJ LibGDX plugin](https://github.com/BlueBoxWare/LibGDXPlugin) adds multiple useful LibGDX code inspections and +editors for *Scene2D*-related files (atlases, skins, fonts). + +[![VisUI](.github/images/vis-ui.png)](https://github.com/kotcrab/vis-editor/wiki/VisUI) + +[VisUI library](https://github.com/kotcrab/vis-editor/wiki/VisUI) extends *Scene2D* with custom widgets and some default +skins. Even if you don't like its default theme (or flat design in general), consider including this library for its +useful new actors. + +[![Skin Composer](.github/images/skin-composer.png)](https://github.com/raeleus/skin-composer) + +[Skin Composer](https://github.com/raeleus/skin-composer) is a graphical application that allows you to create and edit +custom `Scene2D` skins. + +[![gdx-liftoff](.github/images/gdx-setup.png)](https://github.com/tommyettinger/gdx-liftoff) + +[`gdx-liftoff` application](https://github.com/tommyettinger/gdx-liftoff) allows to create LibGDX projects. Additionally +to most features provided by the official setup application, it allows to include other JVM languages, more third-party +libraries and generate code with one of predefined project templates. + +### Helpful articles + +- [Official Scene2D article](https://libgdx.com/wiki/graphics/2d/scene2d/scene2d). +[Scene2D UI](https://libgdx.com/wiki/graphics/2d/scene2d/scene2d-ui) and [`Table`](https://libgdx.com/wiki/graphics/2d/scene2d/table) +pages are worth your time as well. +- [Official `Skin` article](https://libgdx.com/wiki/graphics/2d/scene2d/skin). +- [Official texture packer](https://libgdx.com/wiki/tools/texture-packer) and +[Hiero tool](https://libgdx.com/wiki/tools/hiero) articles, both of which are useful when preparing `Skin` assets. +- [Official ninepatches article](https://libgdx.com/wiki/graphics/2d/ninepatches) might help you understand how to +make skins that look well when resized. +- [This article](https://rskupnik.github.io/libgdx-ui-overview) is an amazing introduction into LibGDX GUI tools. +- [GamesFromScratch blog](http://www.gamefromscratch.com/post/2013/11/27/LibGDX-Tutorial-9-Scene2D-Part-1.aspx) includes +a multi-part *Scene2D* tutorial. +- [Pimentoso Software blog](http://pimentoso.blogspot.com/2013/04/libgdx-scene2d-skin-quick-tutorial.html) contains +a simple *Scene2D* tutorial. + +### Useful libraries + +- The [KTX libraries](https://github.com/libktx/ktx) contain [Kotlin](http://kotlinlang.org/) utilities for building +*Scene2D* styles and widgets. Its [`ktx-style`](https://github.com/libktx/ktx/tree/master/style) module can be +a great alternative to error-prone `.json` skin files, and the powerful Scene2D DSL from +[`ktx-scene2d`](https://github.com/libktx/ktx/tree/master/scene2d) replaces the overly verbose Java GUI building code. +- The [USL library](https://github.com/kotcrab/vis-ui/wiki/USL) allows you to create Skin *JSON* files thanks to its simplified, +less boilerplate-ish and more powerful syntax. `.usl` files are meant be compiled to LibGDX `.json` skin definitions before +deploying the application - there is no runtime overhead. + +### Tools you might have stumbled upon, but should not use + +- **Do NOT use [graphical texture packer](https://code.google.com/archive/p/libgdx-texturepacker-gui/)**, unless dealing +with legacy LibGDX version: it is not up-to-date and **can produce corrupt atlases** due to its texture packer version. +You're much better off setting up a Gradle task using the latest `gdx-tools` to pack your atlases (see official texture +packer article for more info how to do this) or using the new [Texture Packer GUI](https://github.com/crashinvaders/gdx-texture-packer-gui). +- [gdx-skineditor](https://github.com/cobolfoo/gdx-skineditor) is a graphical tool that allows to create `Skin` files. +It is not actively maintained, seems to be missing a few features and is known to crash. +Use [Skin Composer](https://github.com/raeleus/skin-composer) instead. + +## Contributing + +Maintainer will gladly accept any pull requests with additional resources - not only new skins, but also useful links +and texts. Helping with keeping skin files up-to-date is also appreciated: don't hesitate to leave an issue or create +a pull request if any resources are outdated. + +LibGDX team created their own [similar community-driven project](https://github.com/libgdx/libgdx-skins) featuring +live preview, but it seems to contain far less resources overall. Consider uploading your assets to their repository +as well. diff --git a/src/main/resources/omni_power/gdx-skins/arcade/README.md b/src/main/resources/omni_power/gdx-skins/arcade/README.md new file mode 100644 index 0000000..f2f29bb --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/README.md @@ -0,0 +1,22 @@ +# Arcade UI + +``` +Arcade UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Arcade UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Has a sort of early Flash games feel. Can be recolored with JSON parameters. + +![Arcade](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/arcade-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font license](RussoOne.txt). diff --git a/src/main/resources/omni_power/gdx-skins/arcade/RussoOne.txt b/src/main/resources/omni_power/gdx-skins/arcade/RussoOne.txt new file mode 100644 index 0000000..b427176 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/RussoOne.txt @@ -0,0 +1,92 @@ +Copyright (c) 2011-2012, Jovanny Lemonad (jovanny.ru), with Reserved Font Name "Russo" +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/arcade/preview.png b/src/main/resources/omni_power/gdx-skins/arcade/preview.png new file mode 100644 index 0000000..a349074 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/bg.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/bg.png new file mode 100644 index 0000000..822b2be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/booth.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/booth.png new file mode 100644 index 0000000..45fd681 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/booth.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/button-bg.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/button-bg.png new file mode 100644 index 0000000..aa1d5bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/button-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/button-pressed.png new file mode 100644 index 0000000..344645e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/button.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/button.png new file mode 100644 index 0000000..4ee15e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/arcade/raw/font-export.fnt new file mode 100644 index 0000000..6a18d44 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=26 base=26 scaleW=175 scaleH=176 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=166 y=112 width=7 height=19 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=144 y=108 width=11 height=9 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter=""" +char id=35 x=22 y=135 width=19 height=19 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=79 y=17 width=16 height=24 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="$" +char id=37 x=0 y=73 width=21 height=20 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="%" +char id=38 x=22 y=114 width=19 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="&" +char id=39 x=166 y=156 width=6 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=155 y=147 width=10 height=28 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=155 y=118 width=10 height=28 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=95 y=161 width=15 height=14 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="*" +char id=43 x=129 y=20 width=14 height=14 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=156 y=105 width=7 height=9 xoffset=0 yoffset=20 xadvance=9 page=0 chnl=0 letter="," +char id=45 x=61 y=121 width=13 height=6 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=164 y=105 width=7 height=6 xoffset=0 yoffset=20 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=128 y=139 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=95 y=124 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=143 y=52 width=12 height=19 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=128 y=99 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="2" +char id=51 x=96 y=37 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=61 y=101 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="4" +char id=53 x=96 y=78 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=78 y=121 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=78 y=142 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=43 y=40 width=17 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="8" +char id=57 x=79 y=83 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=166 y=19 width=7 height=15 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=166 y=0 width=8 height=18 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=129 y=35 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=78 y=162 width=13 height=11 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="=" +char id=62 x=129 y=52 width=13 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=112 y=99 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="?" +char id=64 x=22 y=93 width=19 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="@" +char id=65 x=0 y=94 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="A" +char id=66 x=44 y=61 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="B" +char id=67 x=79 y=42 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=60 y=134 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="D" +char id=69 x=95 y=104 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=96 y=58 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=60 y=154 width=17 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="G" +char id=72 x=46 y=0 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="H" +char id=73 x=144 y=88 width=11 height=19 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=143 y=146 width=11 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="J" +char id=75 x=27 y=0 width=18 height=19 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=96 y=17 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=114 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="M" +char id=78 x=61 y=81 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=42 y=113 width=18 height=20 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="O" +char id=80 x=43 y=20 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="P" +char id=81 x=24 y=36 width=18 height=23 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=42 y=93 width=18 height=19 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="R" +char id=83 x=42 y=134 width=17 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="S" +char id=84 x=61 y=20 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="T" +char id=85 x=41 y=155 width=18 height=20 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=0 y=134 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=26 height=19 xoffset=0 yoffset=7 xadvance=28 page=0 chnl=0 letter="W" +char id=88 x=22 y=73 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="X" +char id=89 x=0 y=154 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="Y" +char id=90 x=79 y=63 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=156 y=27 width=9 height=26 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="[" +char id=92 x=128 y=119 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="\" +char id=93 x=156 y=0 width=9 height=26 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="]" +char id=94 x=23 y=60 width=16 height=10 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="^" +char id=95 x=129 y=89 width=13 height=6 xoffset=0 yoffset=25 xadvance=15 page=0 chnl=0 letter="_" +char id=96 x=143 y=167 width=10 height=7 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=112 y=159 width=15 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="a" +char id=98 x=112 y=139 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=128 y=159 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="c" +char id=100 x=113 y=37 width=15 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=79 y=104 width=15 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="e" +char id=102 x=129 y=0 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=113 y=78 width=15 height=20 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=113 y=58 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="h" +char id=105 x=156 y=54 width=9 height=19 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="i" +char id=106 x=144 y=27 width=10 height=24 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=62 y=61 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="k" +char id=108 x=156 y=84 width=9 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=0 y=36 width=23 height=15 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 letter="m" +char id=110 x=95 y=145 width=16 height=15 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="n" +char id=111 x=81 y=0 width=16 height=16 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="o" +char id=112 x=112 y=119 width=15 height=19 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=113 y=17 width=15 height=19 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="q" +char id=114 x=143 y=72 width=12 height=15 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="r" +char id=115 x=64 y=0 width=16 height=16 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=129 y=69 width=13 height=19 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=98 y=0 width=15 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=25 y=20 width=17 height=15 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="v" +char id=119 x=0 y=20 width=24 height=15 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=22 y=155 width=18 height=15 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="x" +char id=121 x=61 y=40 width=17 height=20 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=114 y=0 width=14 height=15 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="z" +char id=123 x=143 y=119 width=11 height=26 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="{" +char id=124 x=166 y=132 width=7 height=23 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=144 y=0 width=11 height=26 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="}" +char id=126 x=44 y=81 width=14 height=8 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=156 y=74 width=9 height=9 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="•" +char id=169 x=0 y=52 width=22 height=20 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/font-export.png new file mode 100644 index 0000000..10b7d4f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/font.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/font.png new file mode 100644 index 0000000..39f8a12 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-bg.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-bg.png new file mode 100644 index 0000000..f6bb766 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-d.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-d.png new file mode 100644 index 0000000..4d55003 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-d.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-dl.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-dl.png new file mode 100644 index 0000000..c1ed17a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-dl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-dr.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-dr.png new file mode 100644 index 0000000..a359ead Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-dr.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-l.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-l.png new file mode 100644 index 0000000..5323d3c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-l.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-r.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-r.png new file mode 100644 index 0000000..0d32bde Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-r.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-u.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-u.png new file mode 100644 index 0000000..5c0609f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-u.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-ul.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-ul.png new file mode 100644 index 0000000..ccc451e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-ul.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-ur.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-ur.png new file mode 100644 index 0000000..05b0d67 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick-ur.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick.png new file mode 100644 index 0000000..e4167fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/joystick.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/screen-export.fnt b/src/main/resources/omni_power/gdx-skins/arcade/raw/screen-export.fnt new file mode 100644 index 0000000..5177162 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/raw/screen-export.fnt @@ -0,0 +1,104 @@ +info face="screen-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=13 base=13 scaleW=99 scaleH=99 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="screen-export.png" +chars count=98 +char id=33 x=57 y=0 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="!" +char id=34 x=57 y=60 width=9 height=5 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter=""" +char id=35 x=76 y=49 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=76 y=60 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=76 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="%" +char id=38 x=24 y=58 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=86 y=0 width=4 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=92 y=73 width=5 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=92 y=84 width=5 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=85 y=64 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=77 y=0 width=8 height=8 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=75 y=93 width=5 height=5 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=57 y=85 width=8 height=2 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=81 y=95 width=4 height=3 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=0 y=13 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="/" +char id=48 x=24 y=69 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=67 y=8 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=24 y=80 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="2" +char id=51 x=0 y=35 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=0 y=46 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=25 y=0 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="5" +char id=54 x=0 y=57 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="6" +char id=55 x=35 y=41 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=0 y=68 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=0 y=79 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="9" +char id=58 x=93 y=31 width=4 height=8 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=93 y=21 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=85 y=9 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=66 y=93 width=8 height=5 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=85 y=84 width=6 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=35 y=63 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=12 y=13 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=35 y=74 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=0 y=24 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=12 y=31 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=36 y=0 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=47 y=19 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=35 y=52 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=12 y=42 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=12 y=53 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=57 y=74 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="I" +char id=74 x=12 y=64 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=36 y=22 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=57 y=49 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=12 y=75 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=46 y=33 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=12 y=86 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=35 y=85 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=24 y=47 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=13 y=0 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=36 y=11 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="S" +char id=84 x=47 y=0 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=46 y=66 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=46 y=77 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=24 y=11 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=46 y=55 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=46 y=88 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=46 y=44 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=77 y=9 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=24 y=30 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="\" +char id=93 x=85 y=73 width=6 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=12 y=24 width=11 height=6 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="^" +char id=95 x=24 y=91 width=10 height=2 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=93 y=40 width=3 height=6 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=36 y=33 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=67 y=58 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=67 y=77 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=56 y=88 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=67 y=69 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=85 y=31 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=76 y=79 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=76 y=27 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=93 y=11 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=67 y=38 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=85 y=42 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=0 width=5 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=24 y=22 width=11 height=7 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="m" +char id=110 x=47 y=11 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=76 y=71 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=57 y=21 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=57 y=39 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=57 y=66 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=67 y=50 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=67 y=27 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=66 y=85 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=67 y=0 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=90 width=11 height=7 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=67 y=19 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=57 y=11 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=57 y=31 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=85 y=53 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=93 y=47 width=2 height=10 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=85 y=20 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=24 y=41 width=10 height=5 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=77 y=20 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/screen-export.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/screen-export.png new file mode 100644 index 0000000..d42f255 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/screen-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/screen.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/screen.png new file mode 100644 index 0000000..098404c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/screen.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/title-export.fnt b/src/main/resources/omni_power/gdx-skins/arcade/raw/title-export.fnt new file mode 100644 index 0000000..63e2a4a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/raw/title-export.fnt @@ -0,0 +1,104 @@ +info face="title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=58 base=58 scaleW=384 scaleH=384 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="title-export.png" +chars count=98 +char id=33 x=329 y=346 width=12 height=36 xoffset=0 yoffset=22 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=297 y=291 width=22 height=18 xoffset=0 yoffset=18 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=228 y=0 width=34 height=36 xoffset=0 yoffset=23 xadvance=31 page=0 chnl=0 letter="#" +char id=36 x=147 y=276 width=40 height=52 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="$" +char id=37 x=0 y=275 width=50 height=45 xoffset=0 yoffset=17 xadvance=47 page=0 chnl=0 letter="%" +char id=38 x=146 y=162 width=40 height=47 xoffset=0 yoffset=21 xadvance=37 page=0 chnl=0 letter="&" +char id=39 x=330 y=57 width=11 height=18 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=361 y=151 width=19 height=57 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=355 y=313 width=21 height=63 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter=")" +char id=42 x=148 y=251 width=26 height=22 xoffset=0 yoffset=19 xadvance=23 page=0 chnl=0 letter="*" +char id=43 x=228 y=218 width=34 height=33 xoffset=0 yoffset=25 xadvance=31 page=0 chnl=0 letter="+" +char id=44 x=175 y=251 width=12 height=18 xoffset=0 yoffset=45 xadvance=9 page=0 chnl=0 letter="," +char id=45 x=36 y=371 width=32 height=8 xoffset=0 yoffset=36 xadvance=29 page=0 chnl=0 letter="-" +char id=46 x=146 y=370 width=12 height=13 xoffset=0 yoffset=45 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=354 y=57 width=21 height=51 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="/" +char id=48 x=103 y=167 width=42 height=45 xoffset=0 yoffset=17 xadvance=36 page=0 chnl=0 letter="0" +char id=49 x=298 y=79 width=30 height=36 xoffset=0 yoffset=21 xadvance=27 page=0 chnl=0 letter="1" +char id=50 x=265 y=44 width=32 height=46 xoffset=0 yoffset=22 xadvance=29 page=0 chnl=0 letter="2" +char id=51 x=188 y=0 width=39 height=36 xoffset=0 yoffset=22 xadvance=36 page=0 chnl=0 letter="3" +char id=52 x=146 y=0 width=41 height=44 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="4" +char id=53 x=103 y=130 width=42 height=36 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="5" +char id=54 x=263 y=282 width=33 height=36 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="6" +char id=55 x=188 y=37 width=38 height=45 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="7" +char id=56 x=298 y=41 width=31 height=37 xoffset=0 yoffset=21 xadvance=28 page=0 chnl=0 letter="8" +char id=57 x=227 y=88 width=37 height=37 xoffset=0 yoffset=21 xadvance=37 page=0 chnl=0 letter="9" +char id=58 x=213 y=352 width=11 height=24 xoffset=0 yoffset=34 xadvance=8 page=0 chnl=0 letter=":" +char id=59 x=342 y=346 width=12 height=29 xoffset=0 yoffset=34 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=188 y=352 width=24 height=31 xoffset=0 yoffset=24 xadvance=21 page=0 chnl=0 letter="<" +char id=61 x=69 y=366 width=29 height=15 xoffset=0 yoffset=34 xadvance=26 page=0 chnl=0 letter="=" +char id=62 x=329 y=79 width=24 height=31 xoffset=0 yoffset=24 xadvance=21 page=0 chnl=0 letter=">" +char id=63 x=188 y=125 width=36 height=36 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="?" +char id=64 x=0 y=90 width=54 height=44 xoffset=0 yoffset=20 xadvance=51 page=0 chnl=0 letter="@" +char id=65 x=148 y=210 width=40 height=40 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="A" +char id=66 x=228 y=178 width=34 height=39 xoffset=0 yoffset=22 xadvance=36 page=0 chnl=0 letter="B" +char id=67 x=329 y=218 width=29 height=52 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="C" +char id=68 x=296 y=319 width=32 height=39 xoffset=0 yoffset=22 xadvance=31 page=0 chnl=0 letter="D" +char id=69 x=227 y=126 width=35 height=51 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="E" +char id=70 x=297 y=251 width=31 height=39 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="F" +char id=71 x=329 y=164 width=31 height=53 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="G" +char id=72 x=102 y=224 width=45 height=51 xoffset=0 yoffset=22 xadvance=37 page=0 chnl=0 letter="H" +char id=73 x=353 y=111 width=22 height=39 xoffset=0 yoffset=22 xadvance=19 page=0 chnl=0 letter="I" +char id=74 x=263 y=234 width=33 height=47 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="J" +char id=75 x=227 y=37 width=37 height=50 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="K" +char id=76 x=297 y=164 width=31 height=52 xoffset=0 yoffset=22 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=0 y=38 width=55 height=51 xoffset=0 yoffset=22 xadvance=52 page=0 chnl=0 letter="M" +char id=78 x=0 y=321 width=50 height=49 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="N" +char id=79 x=298 y=0 width=31 height=40 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="O" +char id=80 x=262 y=336 width=33 height=39 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="P" +char id=81 x=56 y=0 width=47 height=54 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="Q" +char id=82 x=0 y=184 width=52 height=50 xoffset=0 yoffset=22 xadvance=37 page=0 chnl=0 letter="R" +char id=83 x=147 y=45 width=40 height=48 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="S" +char id=84 x=297 y=124 width=32 height=39 xoffset=0 yoffset=22 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=104 y=0 width=41 height=40 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="U" +char id=86 x=188 y=251 width=39 height=48 xoffset=0 yoffset=22 xadvance=36 page=0 chnl=0 letter="V" +char id=87 x=0 y=135 width=53 height=48 xoffset=0 yoffset=22 xadvance=50 page=0 chnl=0 letter="W" +char id=88 x=51 y=315 width=50 height=50 xoffset=0 yoffset=22 xadvance=37 page=0 chnl=0 letter="X" +char id=89 x=104 y=89 width=42 height=39 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="Y" +char id=90 x=188 y=300 width=38 height=51 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="Z" +char id=91 x=359 y=265 width=20 height=46 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=330 y=111 width=22 height=49 xoffset=0 yoffset=12 xadvance=19 page=0 chnl=0 letter="\" +char id=93 x=359 y=218 width=20 height=46 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="]" +char id=94 x=296 y=359 width=30 height=24 xoffset=0 yoffset=21 xadvance=27 page=0 chnl=0 letter="^" +char id=95 x=0 y=371 width=35 height=8 xoffset=0 yoffset=61 xadvance=32 page=0 chnl=0 letter="_" +char id=96 x=53 y=224 width=48 height=49 xoffset=0 yoffset=9 xadvance=45 page=0 chnl=0 letter="`" +char id=97 x=146 y=129 width=41 height=32 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="a" +char id=98 x=147 y=94 width=36 height=32 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="b" +char id=99 x=329 y=271 width=29 height=41 xoffset=0 yoffset=25 xadvance=25 page=0 chnl=0 letter="c" +char id=100 x=263 y=126 width=33 height=32 xoffset=0 yoffset=25 xadvance=32 page=0 chnl=0 letter="d" +char id=101 x=187 y=162 width=39 height=41 xoffset=0 yoffset=25 xadvance=31 page=0 chnl=0 letter="e" +char id=102 x=265 y=91 width=32 height=32 xoffset=0 yoffset=25 xadvance=28 page=0 chnl=0 letter="f" +char id=103 x=265 y=0 width=32 height=43 xoffset=0 yoffset=25 xadvance=29 page=0 chnl=0 letter="g" +char id=104 x=53 y=184 width=49 height=39 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="h" +char id=105 x=329 y=313 width=25 height=32 xoffset=0 yoffset=25 xadvance=22 page=0 chnl=0 letter="i" +char id=106 x=227 y=336 width=34 height=45 xoffset=0 yoffset=25 xadvance=31 page=0 chnl=0 letter="j" +char id=107 x=189 y=204 width=38 height=41 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="k" +char id=108 x=263 y=159 width=33 height=41 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="l" +char id=109 x=55 y=90 width=48 height=39 xoffset=0 yoffset=25 xadvance=45 page=0 chnl=0 letter="m" +char id=110 x=54 y=135 width=48 height=39 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="n" +char id=111 x=297 y=217 width=31 height=33 xoffset=0 yoffset=25 xadvance=28 page=0 chnl=0 letter="o" +char id=112 x=228 y=252 width=34 height=32 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="p" +char id=113 x=102 y=314 width=44 height=43 xoffset=0 yoffset=25 xadvance=34 page=0 chnl=0 letter="q" +char id=114 x=0 y=235 width=52 height=39 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="r" +char id=115 x=147 y=329 width=40 height=40 xoffset=0 yoffset=24 xadvance=37 page=0 chnl=0 letter="s" +char id=116 x=263 y=201 width=33 height=32 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="t" +char id=117 x=102 y=55 width=44 height=33 xoffset=0 yoffset=25 xadvance=41 page=0 chnl=0 letter="u" +char id=118 x=102 y=276 width=44 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="v" +char id=119 x=0 y=0 width=55 height=37 xoffset=0 yoffset=25 xadvance=49 page=0 chnl=0 letter="w" +char id=120 x=51 y=275 width=50 height=39 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="x" +char id=121 x=56 y=55 width=45 height=32 xoffset=0 yoffset=25 xadvance=42 page=0 chnl=0 letter="y" +char id=122 x=188 y=83 width=38 height=41 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="z" +char id=123 x=330 y=0 width=23 height=56 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="{" +char id=124 x=376 y=57 width=7 height=56 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=354 y=0 width=22 height=56 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="}" +char id=126 x=99 y=370 width=28 height=13 xoffset=0 yoffset=36 xadvance=25 page=0 chnl=0 letter="~" +char id=8226 x=128 y=358 width=17 height=17 xoffset=0 yoffset=31 xadvance=14 page=0 chnl=0 letter="•" +char id=169 x=227 y=300 width=35 height=35 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=23 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=184 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/title-export.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/title-export.png new file mode 100644 index 0000000..11dfefc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/title.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/title.png new file mode 100644 index 0000000..06ece6b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/raw/white.png b/src/main/resources/omni_power/gdx-skins/arcade/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.atlas b/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.atlas new file mode 100644 index 0000000..5f9c150 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.atlas @@ -0,0 +1,132 @@ + +arcade-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bg + rotate: false + xy: 597, 623 + size: 400, 400 + orig: 400, 400 + offset: 0, 0 + index: -1 +booth + rotate: false + xy: 1, 240 + size: 594, 783 + orig: 594, 783 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 177, 52 + size: 61, 61 + orig: 61, 61 + offset: 0, 0 + index: -1 +button-bg + rotate: false + xy: 401, 144 + size: 94, 94 + orig: 95, 94 + offset: 1, 0 + index: -1 +button-pressed + rotate: false + xy: 902, 175 + size: 61, 61 + orig: 61, 61 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 63 + size: 174, 175 + orig: 175, 176 + offset: 0, 1 + index: -1 +joystick + rotate: false + xy: 965, 142 + size: 58, 94 + orig: 122, 128 + offset: 32, 33 + index: -1 +joystick-bg + rotate: false + xy: 177, 115 + size: 122, 123 + orig: 122, 128 + offset: 0, 0 + index: -1 +joystick-d + rotate: false + xy: 300, 19 + size: 58, 94 + orig: 122, 128 + offset: 32, 33 + index: -1 +joystick-dl + rotate: false + xy: 497, 149 + size: 69, 89 + orig: 122, 128 + offset: 21, 33 + index: -1 +joystick-dr + rotate: false + xy: 568, 147 + size: 68, 89 + orig: 122, 128 + offset: 32, 33 + index: -1 +joystick-l + rotate: false + xy: 638, 143 + size: 66, 93 + orig: 122, 128 + offset: 24, 33 + index: -1 +joystick-r + rotate: false + xy: 706, 143 + size: 66, 93 + orig: 122, 128 + offset: 32, 33 + index: -1 +joystick-u + rotate: false + xy: 240, 23 + size: 58, 90 + orig: 122, 128 + offset: 32, 33 + index: -1 +joystick-ul + rotate: false + xy: 774, 147 + size: 62, 89 + orig: 122, 128 + offset: 28, 33 + index: -1 +joystick-ur + rotate: false + xy: 838, 147 + size: 62, 89 + orig: 122, 128 + offset: 32, 33 + index: -1 +screen-export + rotate: false + xy: 301, 140 + size: 98, 98 + orig: 99, 99 + offset: 0, 1 + index: -1 +title-export + rotate: false + xy: 597, 238 + size: 383, 383 + orig: 384, 384 + offset: 0, 1 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.json b/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.json new file mode 100644 index 0000000..afac88c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.json @@ -0,0 +1,216 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + screen: { + file: screen-export.fnt + } + title: { + file: title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + blue: { + r: 0 + g: 0 + b: 1 + a: 1 + } + red: { + r: 1 + g: 0 + b: 0 + a: 1 + } + yellow: { + r: 1 + g: 1 + b: 0 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-red: { + name: button + color: red + } + button-pressed-red: { + name: button-pressed + color: red + } + button-blue: { + name: button + color: blue + } + button-pressed-blue: { + name: button-pressed + color: blue + } + button-yellow: { + name: button + color: yellow + } + button-pressed-yellow: { + name: button-pressed + color: yellow + } + joystick-red: { + name: joystick + color: red + } + joystick-l-red: { + name: joystick-l + color: red + } + joystick-u-red: { + name: joystick-u + color: red + } + joystick-d-red: { + name: joystick-d + color: red + } + joystick-dl-red: { + name: joystick-dl + color: red + } + joystick-dr-red: { + name: joystick-dr + color: red + } + joystick-r-red: { + name: joystick-r + color: red + } + joystick-ul-red: { + name: joystick-ul + color: red + } + joystick-ur-red: { + name: joystick-ur + color: red + } + joystick-blue: { + name: joystick + color: blue + } + joystick-d-blue: { + name: joystick-d + color: blue + } + joystick-dl-blue: { + name: joystick-dl + color: blue + } + joystick-dr-blue: { + name: joystick-dr + color: blue + } + joystick-l-blue: { + name: joystick-l + color: blue + } + joystick-r-blue: { + name: joystick-r + color: blue + } + joystick-u-blue: { + name: joystick-u + color: blue + } + joystick-ul-blue: { + name: joystick-ul + color: blue + } + joystick-ur-blue: { + name: joystick-ur + color: blue + } + joystick-yellow: { + name: joystick + color: yellow + } + joystick-d-yellow: { + name: joystick-d + color: yellow + } + joystick-dl-yellow: { + name: joystick-dl + color: yellow + } + joystick-dr-yellow: { + name: joystick-dr + color: yellow + } + joystick-l-yellow: { + name: joystick-l + color: yellow + } + joystick-r-yellow: { + name: joystick-r + color: yellow + } + joystick-u-yellow: { + name: joystick-u + color: yellow + } + joystick-ul-yellow: { + name: joystick-ul + color: yellow + } + joystick-ur-yellow: { + name: joystick-ur + color: yellow + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + } + red: { + up: button-red + down: button-pressed-red + } + blue: { + up: button-blue + down: button-pressed-blue + } + yellow: { + up: button-yellow + down: button-pressed-yellow + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + screen: { + font: screen + } + title: { + font: title + fontColor: red + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: joystick + } + red: { + background: joystick-red + } + blue: { + background: joystick-blue + } + yellow: { + background: joystick-yellow + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.png b/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.png new file mode 100644 index 0000000..3caf392 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/arcade/skin/arcade-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/arcade/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/arcade/skin/font-export.fnt new file mode 100644 index 0000000..6a18d44 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=26 base=26 scaleW=175 scaleH=176 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=166 y=112 width=7 height=19 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=144 y=108 width=11 height=9 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter=""" +char id=35 x=22 y=135 width=19 height=19 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=79 y=17 width=16 height=24 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="$" +char id=37 x=0 y=73 width=21 height=20 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="%" +char id=38 x=22 y=114 width=19 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="&" +char id=39 x=166 y=156 width=6 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=155 y=147 width=10 height=28 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=155 y=118 width=10 height=28 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=95 y=161 width=15 height=14 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="*" +char id=43 x=129 y=20 width=14 height=14 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=156 y=105 width=7 height=9 xoffset=0 yoffset=20 xadvance=9 page=0 chnl=0 letter="," +char id=45 x=61 y=121 width=13 height=6 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=164 y=105 width=7 height=6 xoffset=0 yoffset=20 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=128 y=139 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=95 y=124 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=143 y=52 width=12 height=19 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=128 y=99 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="2" +char id=51 x=96 y=37 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=61 y=101 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="4" +char id=53 x=96 y=78 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=78 y=121 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=78 y=142 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=43 y=40 width=17 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="8" +char id=57 x=79 y=83 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=166 y=19 width=7 height=15 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=166 y=0 width=8 height=18 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=129 y=35 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=78 y=162 width=13 height=11 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="=" +char id=62 x=129 y=52 width=13 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=112 y=99 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="?" +char id=64 x=22 y=93 width=19 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="@" +char id=65 x=0 y=94 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="A" +char id=66 x=44 y=61 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="B" +char id=67 x=79 y=42 width=16 height=20 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=60 y=134 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="D" +char id=69 x=95 y=104 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=96 y=58 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=60 y=154 width=17 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="G" +char id=72 x=46 y=0 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="H" +char id=73 x=144 y=88 width=11 height=19 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=143 y=146 width=11 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="J" +char id=75 x=27 y=0 width=18 height=19 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=96 y=17 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=114 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="M" +char id=78 x=61 y=81 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=42 y=113 width=18 height=20 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="O" +char id=80 x=43 y=20 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="P" +char id=81 x=24 y=36 width=18 height=23 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=42 y=93 width=18 height=19 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="R" +char id=83 x=42 y=134 width=17 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="S" +char id=84 x=61 y=20 width=17 height=19 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="T" +char id=85 x=41 y=155 width=18 height=20 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=0 y=134 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=26 height=19 xoffset=0 yoffset=7 xadvance=28 page=0 chnl=0 letter="W" +char id=88 x=22 y=73 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="X" +char id=89 x=0 y=154 width=21 height=19 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="Y" +char id=90 x=79 y=63 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=156 y=27 width=9 height=26 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="[" +char id=92 x=128 y=119 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="\" +char id=93 x=156 y=0 width=9 height=26 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="]" +char id=94 x=23 y=60 width=16 height=10 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="^" +char id=95 x=129 y=89 width=13 height=6 xoffset=0 yoffset=25 xadvance=15 page=0 chnl=0 letter="_" +char id=96 x=143 y=167 width=10 height=7 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=112 y=159 width=15 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="a" +char id=98 x=112 y=139 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=128 y=159 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="c" +char id=100 x=113 y=37 width=15 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=79 y=104 width=15 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="e" +char id=102 x=129 y=0 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=113 y=78 width=15 height=20 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=113 y=58 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="h" +char id=105 x=156 y=54 width=9 height=19 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="i" +char id=106 x=144 y=27 width=10 height=24 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=62 y=61 width=16 height=19 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="k" +char id=108 x=156 y=84 width=9 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=0 y=36 width=23 height=15 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 letter="m" +char id=110 x=95 y=145 width=16 height=15 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="n" +char id=111 x=81 y=0 width=16 height=16 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="o" +char id=112 x=112 y=119 width=15 height=19 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=113 y=17 width=15 height=19 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="q" +char id=114 x=143 y=72 width=12 height=15 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="r" +char id=115 x=64 y=0 width=16 height=16 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=129 y=69 width=13 height=19 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=98 y=0 width=15 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=25 y=20 width=17 height=15 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="v" +char id=119 x=0 y=20 width=24 height=15 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=22 y=155 width=18 height=15 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="x" +char id=121 x=61 y=40 width=17 height=20 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=114 y=0 width=14 height=15 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="z" +char id=123 x=143 y=119 width=11 height=26 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="{" +char id=124 x=166 y=132 width=7 height=23 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=144 y=0 width=11 height=26 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="}" +char id=126 x=44 y=81 width=14 height=8 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=156 y=74 width=9 height=9 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="•" +char id=169 x=0 y=52 width=22 height=20 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/arcade/skin/screen-export.fnt b/src/main/resources/omni_power/gdx-skins/arcade/skin/screen-export.fnt new file mode 100644 index 0000000..5177162 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/skin/screen-export.fnt @@ -0,0 +1,104 @@ +info face="screen-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=13 base=13 scaleW=99 scaleH=99 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="screen-export.png" +chars count=98 +char id=33 x=57 y=0 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="!" +char id=34 x=57 y=60 width=9 height=5 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter=""" +char id=35 x=76 y=49 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=76 y=60 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=76 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="%" +char id=38 x=24 y=58 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=86 y=0 width=4 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=92 y=73 width=5 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=92 y=84 width=5 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=85 y=64 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=77 y=0 width=8 height=8 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=75 y=93 width=5 height=5 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=57 y=85 width=8 height=2 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=81 y=95 width=4 height=3 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=0 y=13 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="/" +char id=48 x=24 y=69 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=67 y=8 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=24 y=80 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="2" +char id=51 x=0 y=35 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=0 y=46 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=25 y=0 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="5" +char id=54 x=0 y=57 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="6" +char id=55 x=35 y=41 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=0 y=68 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=0 y=79 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="9" +char id=58 x=93 y=31 width=4 height=8 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=93 y=21 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=85 y=9 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=66 y=93 width=8 height=5 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=85 y=84 width=6 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=35 y=63 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=12 y=13 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=35 y=74 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=0 y=24 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=12 y=31 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=36 y=0 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=47 y=19 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=35 y=52 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=12 y=42 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=12 y=53 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=57 y=74 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="I" +char id=74 x=12 y=64 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=36 y=22 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=57 y=49 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=12 y=75 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=46 y=33 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=12 y=86 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=35 y=85 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=24 y=47 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=13 y=0 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=36 y=11 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="S" +char id=84 x=47 y=0 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=46 y=66 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=46 y=77 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=24 y=11 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=46 y=55 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=46 y=88 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=46 y=44 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=77 y=9 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=24 y=30 width=11 height=10 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="\" +char id=93 x=85 y=73 width=6 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=12 y=24 width=11 height=6 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="^" +char id=95 x=24 y=91 width=10 height=2 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=93 y=40 width=3 height=6 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=36 y=33 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=67 y=58 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=67 y=77 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=56 y=88 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=67 y=69 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=85 y=31 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=76 y=79 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=76 y=27 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=93 y=11 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=67 y=38 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=85 y=42 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=0 width=5 height=10 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=24 y=22 width=11 height=7 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="m" +char id=110 x=47 y=11 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=76 y=71 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=57 y=21 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=57 y=39 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=57 y=66 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=67 y=50 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=67 y=27 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=66 y=85 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=67 y=0 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=90 width=11 height=7 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=67 y=19 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=57 y=11 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=57 y=31 width=9 height=7 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=85 y=53 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=93 y=47 width=2 height=10 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=85 y=20 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=24 y=41 width=10 height=5 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=77 y=20 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/arcade/skin/title-export.fnt b/src/main/resources/omni_power/gdx-skins/arcade/skin/title-export.fnt new file mode 100644 index 0000000..63e2a4a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/arcade/skin/title-export.fnt @@ -0,0 +1,104 @@ +info face="title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=58 base=58 scaleW=384 scaleH=384 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="title-export.png" +chars count=98 +char id=33 x=329 y=346 width=12 height=36 xoffset=0 yoffset=22 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=297 y=291 width=22 height=18 xoffset=0 yoffset=18 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=228 y=0 width=34 height=36 xoffset=0 yoffset=23 xadvance=31 page=0 chnl=0 letter="#" +char id=36 x=147 y=276 width=40 height=52 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="$" +char id=37 x=0 y=275 width=50 height=45 xoffset=0 yoffset=17 xadvance=47 page=0 chnl=0 letter="%" +char id=38 x=146 y=162 width=40 height=47 xoffset=0 yoffset=21 xadvance=37 page=0 chnl=0 letter="&" +char id=39 x=330 y=57 width=11 height=18 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=361 y=151 width=19 height=57 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=355 y=313 width=21 height=63 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter=")" +char id=42 x=148 y=251 width=26 height=22 xoffset=0 yoffset=19 xadvance=23 page=0 chnl=0 letter="*" +char id=43 x=228 y=218 width=34 height=33 xoffset=0 yoffset=25 xadvance=31 page=0 chnl=0 letter="+" +char id=44 x=175 y=251 width=12 height=18 xoffset=0 yoffset=45 xadvance=9 page=0 chnl=0 letter="," +char id=45 x=36 y=371 width=32 height=8 xoffset=0 yoffset=36 xadvance=29 page=0 chnl=0 letter="-" +char id=46 x=146 y=370 width=12 height=13 xoffset=0 yoffset=45 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=354 y=57 width=21 height=51 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="/" +char id=48 x=103 y=167 width=42 height=45 xoffset=0 yoffset=17 xadvance=36 page=0 chnl=0 letter="0" +char id=49 x=298 y=79 width=30 height=36 xoffset=0 yoffset=21 xadvance=27 page=0 chnl=0 letter="1" +char id=50 x=265 y=44 width=32 height=46 xoffset=0 yoffset=22 xadvance=29 page=0 chnl=0 letter="2" +char id=51 x=188 y=0 width=39 height=36 xoffset=0 yoffset=22 xadvance=36 page=0 chnl=0 letter="3" +char id=52 x=146 y=0 width=41 height=44 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="4" +char id=53 x=103 y=130 width=42 height=36 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="5" +char id=54 x=263 y=282 width=33 height=36 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="6" +char id=55 x=188 y=37 width=38 height=45 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="7" +char id=56 x=298 y=41 width=31 height=37 xoffset=0 yoffset=21 xadvance=28 page=0 chnl=0 letter="8" +char id=57 x=227 y=88 width=37 height=37 xoffset=0 yoffset=21 xadvance=37 page=0 chnl=0 letter="9" +char id=58 x=213 y=352 width=11 height=24 xoffset=0 yoffset=34 xadvance=8 page=0 chnl=0 letter=":" +char id=59 x=342 y=346 width=12 height=29 xoffset=0 yoffset=34 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=188 y=352 width=24 height=31 xoffset=0 yoffset=24 xadvance=21 page=0 chnl=0 letter="<" +char id=61 x=69 y=366 width=29 height=15 xoffset=0 yoffset=34 xadvance=26 page=0 chnl=0 letter="=" +char id=62 x=329 y=79 width=24 height=31 xoffset=0 yoffset=24 xadvance=21 page=0 chnl=0 letter=">" +char id=63 x=188 y=125 width=36 height=36 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="?" +char id=64 x=0 y=90 width=54 height=44 xoffset=0 yoffset=20 xadvance=51 page=0 chnl=0 letter="@" +char id=65 x=148 y=210 width=40 height=40 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="A" +char id=66 x=228 y=178 width=34 height=39 xoffset=0 yoffset=22 xadvance=36 page=0 chnl=0 letter="B" +char id=67 x=329 y=218 width=29 height=52 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="C" +char id=68 x=296 y=319 width=32 height=39 xoffset=0 yoffset=22 xadvance=31 page=0 chnl=0 letter="D" +char id=69 x=227 y=126 width=35 height=51 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="E" +char id=70 x=297 y=251 width=31 height=39 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="F" +char id=71 x=329 y=164 width=31 height=53 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="G" +char id=72 x=102 y=224 width=45 height=51 xoffset=0 yoffset=22 xadvance=37 page=0 chnl=0 letter="H" +char id=73 x=353 y=111 width=22 height=39 xoffset=0 yoffset=22 xadvance=19 page=0 chnl=0 letter="I" +char id=74 x=263 y=234 width=33 height=47 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="J" +char id=75 x=227 y=37 width=37 height=50 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="K" +char id=76 x=297 y=164 width=31 height=52 xoffset=0 yoffset=22 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=0 y=38 width=55 height=51 xoffset=0 yoffset=22 xadvance=52 page=0 chnl=0 letter="M" +char id=78 x=0 y=321 width=50 height=49 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="N" +char id=79 x=298 y=0 width=31 height=40 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="O" +char id=80 x=262 y=336 width=33 height=39 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="P" +char id=81 x=56 y=0 width=47 height=54 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="Q" +char id=82 x=0 y=184 width=52 height=50 xoffset=0 yoffset=22 xadvance=37 page=0 chnl=0 letter="R" +char id=83 x=147 y=45 width=40 height=48 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="S" +char id=84 x=297 y=124 width=32 height=39 xoffset=0 yoffset=22 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=104 y=0 width=41 height=40 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="U" +char id=86 x=188 y=251 width=39 height=48 xoffset=0 yoffset=22 xadvance=36 page=0 chnl=0 letter="V" +char id=87 x=0 y=135 width=53 height=48 xoffset=0 yoffset=22 xadvance=50 page=0 chnl=0 letter="W" +char id=88 x=51 y=315 width=50 height=50 xoffset=0 yoffset=22 xadvance=37 page=0 chnl=0 letter="X" +char id=89 x=104 y=89 width=42 height=39 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="Y" +char id=90 x=188 y=300 width=38 height=51 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="Z" +char id=91 x=359 y=265 width=20 height=46 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=330 y=111 width=22 height=49 xoffset=0 yoffset=12 xadvance=19 page=0 chnl=0 letter="\" +char id=93 x=359 y=218 width=20 height=46 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="]" +char id=94 x=296 y=359 width=30 height=24 xoffset=0 yoffset=21 xadvance=27 page=0 chnl=0 letter="^" +char id=95 x=0 y=371 width=35 height=8 xoffset=0 yoffset=61 xadvance=32 page=0 chnl=0 letter="_" +char id=96 x=53 y=224 width=48 height=49 xoffset=0 yoffset=9 xadvance=45 page=0 chnl=0 letter="`" +char id=97 x=146 y=129 width=41 height=32 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="a" +char id=98 x=147 y=94 width=36 height=32 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="b" +char id=99 x=329 y=271 width=29 height=41 xoffset=0 yoffset=25 xadvance=25 page=0 chnl=0 letter="c" +char id=100 x=263 y=126 width=33 height=32 xoffset=0 yoffset=25 xadvance=32 page=0 chnl=0 letter="d" +char id=101 x=187 y=162 width=39 height=41 xoffset=0 yoffset=25 xadvance=31 page=0 chnl=0 letter="e" +char id=102 x=265 y=91 width=32 height=32 xoffset=0 yoffset=25 xadvance=28 page=0 chnl=0 letter="f" +char id=103 x=265 y=0 width=32 height=43 xoffset=0 yoffset=25 xadvance=29 page=0 chnl=0 letter="g" +char id=104 x=53 y=184 width=49 height=39 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="h" +char id=105 x=329 y=313 width=25 height=32 xoffset=0 yoffset=25 xadvance=22 page=0 chnl=0 letter="i" +char id=106 x=227 y=336 width=34 height=45 xoffset=0 yoffset=25 xadvance=31 page=0 chnl=0 letter="j" +char id=107 x=189 y=204 width=38 height=41 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="k" +char id=108 x=263 y=159 width=33 height=41 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="l" +char id=109 x=55 y=90 width=48 height=39 xoffset=0 yoffset=25 xadvance=45 page=0 chnl=0 letter="m" +char id=110 x=54 y=135 width=48 height=39 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="n" +char id=111 x=297 y=217 width=31 height=33 xoffset=0 yoffset=25 xadvance=28 page=0 chnl=0 letter="o" +char id=112 x=228 y=252 width=34 height=32 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="p" +char id=113 x=102 y=314 width=44 height=43 xoffset=0 yoffset=25 xadvance=34 page=0 chnl=0 letter="q" +char id=114 x=0 y=235 width=52 height=39 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="r" +char id=115 x=147 y=329 width=40 height=40 xoffset=0 yoffset=24 xadvance=37 page=0 chnl=0 letter="s" +char id=116 x=263 y=201 width=33 height=32 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="t" +char id=117 x=102 y=55 width=44 height=33 xoffset=0 yoffset=25 xadvance=41 page=0 chnl=0 letter="u" +char id=118 x=102 y=276 width=44 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="v" +char id=119 x=0 y=0 width=55 height=37 xoffset=0 yoffset=25 xadvance=49 page=0 chnl=0 letter="w" +char id=120 x=51 y=275 width=50 height=39 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="x" +char id=121 x=56 y=55 width=45 height=32 xoffset=0 yoffset=25 xadvance=42 page=0 chnl=0 letter="y" +char id=122 x=188 y=83 width=38 height=41 xoffset=0 yoffset=25 xadvance=35 page=0 chnl=0 letter="z" +char id=123 x=330 y=0 width=23 height=56 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="{" +char id=124 x=376 y=57 width=7 height=56 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=354 y=0 width=22 height=56 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="}" +char id=126 x=99 y=370 width=28 height=13 xoffset=0 yoffset=36 xadvance=25 page=0 chnl=0 letter="~" +char id=8226 x=128 y=358 width=17 height=17 xoffset=0 yoffset=31 xadvance=14 page=0 chnl=0 letter="•" +char id=169 x=227 y=300 width=35 height=35 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=23 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=184 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/README.md b/src/main/resources/omni_power/gdx-skins/biological-attack/README.md new file mode 100644 index 0000000..8df8c30 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/README.md @@ -0,0 +1,22 @@ +# Biological Attack UI + +``` +Biological Attack UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Biological Attack UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Ideal for your post-apocalyptic game. Can be recolored with JSON parameters. + +![Biological Attack](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/biological-attack-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font license](SourceSansPro.txt). diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/SourceSansPro.txt b/src/main/resources/omni_power/gdx-skins/biological-attack/SourceSansPro.txt new file mode 100644 index 0000000..a9b845e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/SourceSansPro.txt @@ -0,0 +1,92 @@ +Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/preview.png b/src/main/resources/omni_power/gdx-skins/biological-attack/preview.png new file mode 100644 index 0000000..13e36f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/checkbox-off.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/checkbox-off.png new file mode 100644 index 0000000..964cef2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/checkbox-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/checkbox.png new file mode 100644 index 0000000..c21e1ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-export.fnt new file mode 100644 index 0000000..2d39c94 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=140 scaleH=140 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=129 y=41 width=5 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=109 y=127 width=9 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=60 y=69 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="#" +char id=36 x=97 y=97 width=11 height=21 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=22 width=20 height=16 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=0 y=99 width=16 height=16 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="&" +char id=39 x=135 y=40 width=4 height=8 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=128 y=73 width=6 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=121 y=23 width=6 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=99 y=34 width=10 height=9 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=62 y=30 width=12 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="+" +char id=44 x=111 y=23 width=5 height=9 xoffset=0 yoffset=18 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=85 y=136 width=6 height=3 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=120 y=117 width=5 height=5 xoffset=0 yoffset=17 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=120 y=51 width=8 height=21 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=46 y=107 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=99 y=17 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="1" +char id=50 x=98 y=63 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=88 y=0 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="3" +char id=52 x=47 y=73 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=49 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="5" +char id=54 x=49 y=30 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="6" +char id=55 x=98 y=80 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=100 y=0 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="8" +char id=57 x=61 y=47 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="9" +char id=58 x=129 y=59 width=5 height=12 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=128 y=23 width=6 height=17 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=59 y=107 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="<" +char id=61 x=19 y=73 width=11 height=8 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=87 y=34 width=11 height=11 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=109 y=110 width=10 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=20 height=21 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="@" +char id=65 x=20 y=39 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=60 y=86 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=33 y=90 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="C" +char id=68 x=21 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=98 y=46 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="E" +char id=70 x=97 y=119 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="F" +char id=71 x=35 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=21 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="H" +char id=73 x=135 y=49 width=4 height=16 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=110 y=34 width=10 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=35 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=87 y=17 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=116 width=16 height=16 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="M" +char id=78 x=75 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=19 y=56 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="O" +char id=80 x=73 y=82 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="P" +char id=81 x=17 y=99 width=15 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=32 y=120 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="R" +char id=83 x=74 y=43 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="S" +char id=84 x=34 y=56 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=35 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=17 y=120 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="V" +char id=87 x=0 y=39 width=19 height=16 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=33 y=73 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="X" +char id=89 x=18 y=82 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=62 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="Z" +char id=91 x=129 y=0 width=6 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=112 y=0 width=8 height=21 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=128 y=114 width=6 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=86 y=73 width=11 height=10 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=137 width=12 height=2 xoffset=0 yoffset=23 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=61 y=64 width=6 height=4 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=86 y=84 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=73 y=64 width=12 height=17 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="b" +char id=99 x=75 y=30 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=72 y=103 width=12 height=17 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="d" +char id=101 x=75 y=17 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=110 y=51 width=9 height=17 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=72 y=121 width=12 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=85 y=116 width=11 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=135 y=22 width=4 height=17 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=121 y=0 width=7 height=22 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=48 y=51 width=12 height=17 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=128 y=96 width=6 height=17 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=18 height=12 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="m" +char id=110 x=33 y=107 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=46 y=124 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="o" +char id=112 x=47 y=90 width=12 height=16 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="p" +char id=113 x=85 y=99 width=11 height=16 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=119 y=127 width=8 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=87 y=46 width=10 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="s" +char id=116 x=110 y=69 width=9 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=86 y=60 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=62 y=17 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=69 width=18 height=12 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=49 y=17 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="x" +char id=121 x=59 y=119 width=12 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=109 y=97 width=10 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=120 y=95 width=7 height=21 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=135 y=66 width=3 height=24 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=120 y=73 width=7 height=21 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=35 y=51 width=12 height=4 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=110 y=86 width=7 height=7 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=82 width=17 height=16 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-export.png new file mode 100644 index 0000000..60cffa6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title-export.fnt new file mode 100644 index 0000000..c08f469 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=64 base=64 scaleW=381 scaleH=382 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=365 y=238 width=13 height=48 xoffset=0 yoffset=17 xadvance=17 page=0 chnl=0 letter="!" +char id=34 x=202 y=150 width=29 height=23 xoffset=0 yoffset=16 xadvance=33 page=0 chnl=0 letter=""" +char id=35 x=199 y=226 width=33 height=45 xoffset=0 yoffset=19 xadvance=37 page=0 chnl=0 letter="#" +char id=36 x=264 y=293 width=31 height=60 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="$" +char id=37 x=0 y=60 width=56 height=48 xoffset=0 yoffset=17 xadvance=60 page=0 chnl=0 letter="%" +char id=38 x=45 y=275 width=44 height=48 xoffset=0 yoffset=17 xadvance=48 page=0 chnl=0 letter="&" +char id=39 x=313 y=212 width=12 height=23 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="'" +char id=40 x=348 y=193 width=16 height=64 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="(" +char id=41 x=349 y=0 width=16 height=64 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter=")" +char id=42 x=264 y=354 width=27 height=26 xoffset=0 yoffset=14 xadvance=31 page=0 chnl=0 letter="*" +char id=43 x=126 y=348 width=33 height=33 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="+" +char id=44 x=297 y=212 width=15 height=26 xoffset=0 yoffset=52 xadvance=19 page=0 chnl=0 letter="," +char id=45 x=204 y=36 width=17 height=8 xoffset=0 yoffset=42 xadvance=21 page=0 chnl=0 letter="-" +char id=46 x=167 y=177 width=13 height=13 xoffset=0 yoffset=52 xadvance=17 page=0 chnl=0 letter="." +char id=47 x=326 y=193 width=21 height=61 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter="/" +char id=48 x=237 y=0 width=32 height=46 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="0" +char id=49 x=270 y=0 width=29 height=44 xoffset=0 yoffset=20 xadvance=33 page=0 chnl=0 letter="1" +char id=50 x=233 y=150 width=32 height=45 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="2" +char id=51 x=197 y=291 width=33 height=46 xoffset=0 yoffset=19 xadvance=37 page=0 chnl=0 letter="3" +char id=52 x=169 y=0 width=34 height=44 xoffset=0 yoffset=20 xadvance=38 page=0 chnl=0 letter="4" +char id=53 x=231 y=319 width=32 height=45 xoffset=0 yoffset=20 xadvance=36 page=0 chnl=0 letter="5" +char id=54 x=231 y=272 width=32 height=46 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="6" +char id=55 x=237 y=47 width=31 height=44 xoffset=0 yoffset=20 xadvance=35 page=0 chnl=0 letter="7" +char id=56 x=264 y=246 width=31 height=46 xoffset=0 yoffset=19 xadvance=35 page=0 chnl=0 letter="8" +char id=57 x=236 y=92 width=32 height=46 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="9" +char id=58 x=366 y=0 width=13 height=35 xoffset=0 yoffset=30 xadvance=17 page=0 chnl=0 letter=":" +char id=59 x=352 y=127 width=15 height=48 xoffset=0 yoffset=30 xadvance=19 page=0 chnl=0 letter=";" +char id=60 x=160 y=348 width=33 height=32 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="<" +char id=61 x=90 y=299 width=32 height=23 xoffset=0 yoffset=30 xadvance=36 page=0 chnl=0 letter="=" +char id=62 x=168 y=99 width=33 height=32 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter=">" +char id=63 x=300 y=0 width=27 height=49 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=57 height=59 xoffset=0 yoffset=17 xadvance=61 page=0 chnl=0 letter="@" +char id=65 x=47 y=227 width=41 height=46 xoffset=0 yoffset=18 xadvance=45 page=0 chnl=0 letter="A" +char id=66 x=128 y=250 width=35 height=46 xoffset=0 yoffset=18 xadvance=39 page=0 chnl=0 letter="B" +char id=67 x=95 y=107 width=36 height=48 xoffset=0 yoffset=17 xadvance=40 page=0 chnl=0 letter="C" +char id=68 x=94 y=156 width=36 height=46 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="D" +char id=69 x=296 y=289 width=29 height=46 xoffset=0 yoffset=18 xadvance=33 page=0 chnl=0 letter="E" +char id=70 x=296 y=242 width=29 height=46 xoffset=0 yoffset=18 xadvance=33 page=0 chnl=0 letter="F" +char id=71 x=90 y=250 width=37 height=48 xoffset=0 yoffset=17 xadvance=41 page=0 chnl=0 letter="G" +char id=72 x=89 y=203 width=37 height=46 xoffset=0 yoffset=18 xadvance=41 page=0 chnl=0 letter="H" +char id=73 x=368 y=36 width=11 height=46 xoffset=0 yoffset=18 xadvance=15 page=0 chnl=0 letter="I" +char id=74 x=269 y=47 width=30 height=47 xoffset=0 yoffset=18 xadvance=34 page=0 chnl=0 letter="J" +char id=75 x=58 y=0 width=38 height=46 xoffset=0 yoffset=18 xadvance=42 page=0 chnl=0 letter="K" +char id=76 x=299 y=95 width=28 height=46 xoffset=0 yoffset=18 xadvance=32 page=0 chnl=0 letter="L" +char id=77 x=0 y=335 width=43 height=46 xoffset=0 yoffset=18 xadvance=47 page=0 chnl=0 letter="M" +char id=78 x=97 y=0 width=36 height=46 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="N" +char id=79 x=45 y=324 width=42 height=48 xoffset=0 yoffset=17 xadvance=46 page=0 chnl=0 letter="O" +char id=80 x=132 y=95 width=35 height=46 xoffset=0 yoffset=18 xadvance=39 page=0 chnl=0 letter="P" +char id=81 x=0 y=275 width=44 height=59 xoffset=0 yoffset=17 xadvance=48 page=0 chnl=0 letter="Q" +char id=82 x=88 y=324 width=37 height=46 xoffset=0 yoffset=18 xadvance=41 page=0 chnl=0 letter="R" +char id=83 x=168 y=50 width=34 height=48 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="S" +char id=84 x=127 y=203 width=36 height=46 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="T" +char id=85 x=96 y=47 width=36 height=47 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="U" +char id=86 x=53 y=156 width=40 height=46 xoffset=0 yoffset=18 xadvance=44 page=0 chnl=0 letter="V" +char id=87 x=0 y=109 width=55 height=46 xoffset=0 yoffset=18 xadvance=59 page=0 chnl=0 letter="W" +char id=88 x=56 y=109 width=38 height=46 xoffset=0 yoffset=18 xadvance=42 page=0 chnl=0 letter="X" +char id=89 x=57 y=60 width=38 height=46 xoffset=0 yoffset=18 xadvance=42 page=0 chnl=0 letter="Y" +char id=90 x=203 y=45 width=33 height=46 xoffset=0 yoffset=18 xadvance=37 page=0 chnl=0 letter="Z" +char id=91 x=351 y=309 width=15 height=61 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="[" +char id=92 x=326 y=255 width=21 height=61 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter="\" +char id=93 x=365 y=176 width=15 height=61 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="]" +char id=94 x=266 y=212 width=30 height=29 xoffset=0 yoffset=17 xadvance=34 page=0 chnl=0 letter="^" +char id=95 x=44 y=373 width=33 height=6 xoffset=0 yoffset=68 xadvance=37 page=0 chnl=0 letter="_" +char id=96 x=131 y=191 width=16 height=11 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="`" +char id=97 x=266 y=175 width=30 height=36 xoffset=0 yoffset=29 xadvance=34 page=0 chnl=0 letter="a" +char id=98 x=202 y=99 width=33 height=50 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="b" +char id=99 x=269 y=95 width=29 height=36 xoffset=0 yoffset=29 xadvance=33 page=0 chnl=0 letter="c" +char id=100 x=164 y=240 width=34 height=50 xoffset=0 yoffset=15 xadvance=38 page=0 chnl=0 letter="d" +char id=101 x=197 y=338 width=32 height=36 xoffset=0 yoffset=29 xadvance=36 page=0 chnl=0 letter="e" +char id=102 x=326 y=142 width=25 height=50 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="f" +char id=103 x=162 y=297 width=34 height=50 xoffset=0 yoffset=29 xadvance=38 page=0 chnl=0 letter="g" +char id=104 x=233 y=196 width=32 height=49 xoffset=0 yoffset=15 xadvance=36 page=0 chnl=0 letter="h" +char id=105 x=367 y=287 width=12 height=50 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="i" +char id=106 x=328 y=0 width=20 height=64 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="j" +char id=107 x=134 y=0 width=34 height=49 xoffset=0 yoffset=15 xadvance=38 page=0 chnl=0 letter="k" +char id=108 x=348 y=258 width=16 height=50 xoffset=0 yoffset=15 xadvance=20 page=0 chnl=0 letter="l" +char id=109 x=0 y=156 width=52 height=35 xoffset=0 yoffset=29 xadvance=56 page=0 chnl=0 letter="m" +char id=110 x=204 y=0 width=32 height=35 xoffset=0 yoffset=29 xadvance=36 page=0 chnl=0 letter="n" +char id=111 x=133 y=50 width=34 height=36 xoffset=0 yoffset=29 xadvance=38 page=0 chnl=0 letter="o" +char id=112 x=199 y=177 width=33 height=48 xoffset=0 yoffset=29 xadvance=37 page=0 chnl=0 letter="p" +char id=113 x=164 y=191 width=34 height=48 xoffset=0 yoffset=29 xadvance=38 page=0 chnl=0 letter="q" +char id=114 x=300 y=50 width=24 height=35 xoffset=0 yoffset=29 xadvance=28 page=0 chnl=0 letter="r" +char id=115 x=297 y=175 width=28 height=36 xoffset=0 yoffset=29 xadvance=32 page=0 chnl=0 letter="s" +char id=116 x=325 y=336 width=25 height=45 xoffset=0 yoffset=20 xadvance=29 page=0 chnl=0 letter="t" +char id=117 x=266 y=139 width=31 height=35 xoffset=0 yoffset=30 xadvance=35 page=0 chnl=0 letter="u" +char id=118 x=131 y=156 width=35 height=34 xoffset=0 yoffset=30 xadvance=39 page=0 chnl=0 letter="v" +char id=119 x=0 y=192 width=51 height=34 xoffset=0 yoffset=30 xadvance=55 page=0 chnl=0 letter="w" +char id=120 x=167 y=142 width=34 height=34 xoffset=0 yoffset=30 xadvance=38 page=0 chnl=0 letter="x" +char id=121 x=126 y=299 width=35 height=48 xoffset=0 yoffset=30 xadvance=39 page=0 chnl=0 letter="y" +char id=122 x=296 y=336 width=28 height=34 xoffset=0 yoffset=30 xadvance=32 page=0 chnl=0 letter="z" +char id=123 x=328 y=65 width=19 height=61 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="{" +char id=124 x=368 y=83 width=7 height=70 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=348 y=65 width=19 height=61 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="}" +char id=126 x=52 y=203 width=33 height=14 xoffset=0 yoffset=34 xadvance=37 page=0 chnl=0 letter="~" +char id=8226 x=233 y=246 width=19 height=20 xoffset=0 yoffset=36 xadvance=23 page=0 chnl=0 letter="•" +char id=169 x=0 y=227 width=46 height=47 xoffset=0 yoffset=18 xadvance=50 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=168 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title-export.png new file mode 100644 index 0000000..d810b30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title.png new file mode 100644 index 0000000..c07c1b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font.png new file mode 100644 index 0000000..454c857 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-biohazard-large.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-biohazard-large.png new file mode 100644 index 0000000..94bcadc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-biohazard-large.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-biohazard.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-biohazard.png new file mode 100644 index 0000000..feffea7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-biohazard.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-electricity.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-electricity.png new file mode 100644 index 0000000..e9fa968 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-electricity.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-fire.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-fire.png new file mode 100644 index 0000000..2517e32 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-fire.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-gas-mask.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-gas-mask.png new file mode 100644 index 0000000..871a146 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-gas-mask.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-laser.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-laser.png new file mode 100644 index 0000000..9e0f9cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-laser.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-poison.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-poison.png new file mode 100644 index 0000000..1d9774f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-poison.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-radiation-large.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-radiation-large.png new file mode 100644 index 0000000..d99b3bc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-radiation-large.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-radiation.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-radiation.png new file mode 100644 index 0000000..89027a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-radiation.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-warning.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-warning.png new file mode 100644 index 0000000..c37d689 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/icon-warning.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/list.9.png new file mode 100644 index 0000000..4a61615 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/list.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/list.png new file mode 100644 index 0000000..d2aadd2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/progress-bar-knob.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/progress-bar-knob.png new file mode 100644 index 0000000..b1c0535 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/progress-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/progress-bar.png new file mode 100644 index 0000000..1e96ea1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/radio-off.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/radio-off.png new file mode 100644 index 0000000..b2b6e14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/radio.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/radio.png new file mode 100644 index 0000000..1625e42 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/scrollbar.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/scrollbar.9.png new file mode 100644 index 0000000..20b2f93 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/scrollbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/scrollbar.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/scrollbar.png new file mode 100644 index 0000000..46cdefe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/scrollbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box-pressed.9.png new file mode 100644 index 0000000..eb75785 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box-pressed.png new file mode 100644 index 0000000..bc3d5d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box.9.png new file mode 100644 index 0000000..e3e61ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box.png new file mode 100644 index 0000000..f977e94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/slider-knob.png new file mode 100644 index 0000000..c928805 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/slider.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/slider.png new file mode 100644 index 0000000..cfbb35b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/split-pane.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/split-pane.png new file mode 100644 index 0000000..5071a82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/split-pane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/textfield.9.png new file mode 100644 index 0000000..5ae7ae7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/textfield.png new file mode 100644 index 0000000..cd3bd35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/title-bg.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/title-bg.9.png new file mode 100644 index 0000000..39d2863 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/title-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/title-bg.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/title-bg.png new file mode 100644 index 0000000..c5e245b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/title-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/touchpad-knob.png new file mode 100644 index 0000000..72d1748 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/touchpad.png new file mode 100644 index 0000000..19866b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/white.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/window.9.png new file mode 100644 index 0000000..d09637b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/raw/window.png b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/window.png new file mode 100644 index 0000000..a5b7061 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.atlas b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.atlas new file mode 100644 index 0000000..8e31546 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.atlas @@ -0,0 +1,235 @@ + +biological-attack-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +checkbox + rotate: false + xy: 144, 347 + size: 46, 40 + orig: 46, 40 + offset: 0, 0 + index: -1 +checkbox-off + rotate: false + xy: 144, 305 + size: 46, 40 + orig: 46, 40 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 384, 697 + size: 140, 140 + orig: 140, 140 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 640 + size: 381, 382 + orig: 381, 382 + offset: 0, 0 + index: -1 +icon-biohazard + rotate: false + xy: 1, 112 + size: 79, 73 + orig: 79, 73 + offset: 0, 0 + index: -1 +icon-biohazard-large + rotate: false + xy: 1, 323 + size: 141, 130 + orig: 141, 130 + offset: 0, 0 + index: -1 +icon-electricity + rotate: false + xy: 602, 948 + size: 44, 74 + orig: 44, 74 + offset: 0, 0 + index: -1 +icon-fire + rotate: false + xy: 82, 109 + size: 58, 76 + orig: 58, 76 + offset: 0, 0 + index: -1 +icon-gas-mask + rotate: false + xy: 458, 631 + size: 56, 64 + orig: 56, 64 + offset: 0, 0 + index: -1 +icon-laser + rotate: false + xy: 151, 488 + size: 65, 48 + orig: 65, 48 + offset: 0, 0 + index: -1 +icon-poison + rotate: false + xy: 1, 1 + size: 71, 65 + orig: 71, 65 + offset: 0, 0 + index: -1 +icon-radiation + rotate: false + xy: 151, 538 + size: 71, 65 + orig: 71, 65 + offset: 0, 0 + index: -1 +icon-radiation-large + rotate: false + xy: 1, 455 + size: 148, 148 + orig: 148, 148 + offset: 0, 0 + index: -1 +icon-warning + rotate: false + xy: 75, 62 + size: 53, 45 + orig: 53, 45 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 144, 389 + size: 49, 49 + split: 2, 2, 2, 2 + orig: 49, 49 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 1, 605 + size: 212, 33 + orig: 212, 33 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 384, 989 + size: 212, 33 + orig: 212, 33 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 74, 14 + size: 50, 46 + orig: 50, 46 + offset: 0, 0 + index: -1 +radio-off + rotate: false + xy: 151, 440 + size: 50, 46 + orig: 50, 46 + offset: 0, 0 + index: -1 +scrollbar + rotate: false + xy: 602, 927 + size: 19, 19 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 19, 19 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 384, 653 + size: 72, 42 + split: 9, 39, 0, 0 + pad: 4, 41, 4, 4 + orig: 72, 42 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 1, 68 + size: 72, 42 + split: 9, 39, 0, 0 + pad: 4, 41, 4, 4 + orig: 72, 42 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 526, 789 + size: 2, 48 + orig: 2, 48 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 137, 255 + size: 44, 48 + orig: 44, 48 + offset: 0, 0 + index: -1 +split-pane + rotate: false + xy: 598, 1020 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 137, 219 + size: 34, 34 + split: 2, 2, 2, 2 + pad: 4, 4, 4, 4 + orig: 34, 34 + offset: 0, 0 + index: -1 +title-bg + rotate: false + xy: 215, 618 + size: 20, 20 + split: 0, 0, 0, 0 + pad: 9, 9, 0, 0 + orig: 20, 20 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 384, 839 + size: 148, 148 + orig: 148, 148 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 1, 187 + size: 134, 134 + orig: 134, 134 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 75, 109 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 534, 858 + size: 66, 129 + split: 2, 2, 99, 2 + orig: 66, 129 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.json b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.json new file mode 100644 index 0000000..f0b70a2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.json @@ -0,0 +1,415 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + background: { + r: 1 + g: 1 + b: 0 + a: 1 + } + clear: { + r: 1 + g: 1 + b: 1 + a: 0 + } + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + down: { + r: 0.9033333 + g: 0.9033333 + b: 0.9033333 + a: 1 + } + over: { + r: 0.5800001 + g: 0.5800001 + b: 0.5800001 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + clear: { + name: white + color: clear + } + icon-biohazard-large-c: { + name: icon-biohazard-large + color: color + } + icon-electricity-c: { + name: icon-electricity + color: color + } + icon-fire-c: { + name: icon-fire + color: color + } + icon-gas-mask-c: { + name: icon-gas-mask + color: color + } + icon-laser-c: { + name: icon-laser + color: color + } + icon-poison-c: { + name: icon-poison + color: color + } + icon-radiation-c: { + name: icon-radiation + color: color + } + icon-radiation-large-c: { + name: icon-radiation-large + color: color + } + icon-warning-c: { + name: icon-warning + color: color + } + color: { + name: white + color: color + } + list-b: { + name: list + color: background + } + scrollbar-c: { + name: scrollbar + color: color + } + select-box-b: { + name: select-box + color: background + } + select-box-pressed-b: { + name: select-box-pressed + color: background + } + slider-c: { + name: slider + color: color + } + slider-knob-c: { + name: slider-knob + color: color + } + textfield-c: { + name: textfield + color: color + } + icon-biohazard-c: { + name: icon-biohazard + color: color + } + checkbox-c: { + name: checkbox + color: color + } + checkbox-off-c: { + name: checkbox-off + color: color + } + radio-b: { + name: radio + color: background + } + radio-off-b: { + name: radio-off + color: background + } + checkbox-off-o: { + name: checkbox-off + color: over + } + radio-off-o: { + name: radio-off + color: over + } + over: { + name: white + color: over + } + touchpad-b: { + name: touchpad + color: background + } + touchpad-knob-c: { + name: touchpad-knob + color: color + } + icon-biohazard-d: { + name: icon-biohazard + color: down + } + icon-biohazard-o: { + name: icon-biohazard + color: over + } + icon-warning-d: { + name: icon-warning + color: down + } + icon-warning-o: { + name: icon-warning + color: over + } + icon-poison-d: { + name: icon-poison + color: down + } + icon-poison-o: { + name: icon-poison + color: over + } + icon-fire-d: { + name: icon-fire + color: down + } + icon-fire-o: { + name: icon-fire + color: over + } + icon-gas-mask-d: { + name: icon-gas-mask + color: down + } + icon-gas-mask-o: { + name: icon-gas-mask + color: over + } + icon-electricity-d: { + name: icon-electricity + color: down + } + icon-electricity-o: { + name: icon-electricity + color: over + } + icon-radiation-d: { + name: icon-radiation + color: down + } + icon-radiation-o: { + name: icon-radiation + color: over + } + icon-laser-d: { + name: icon-laser + color: down + } + icon-laser-o: { + name: icon-laser + color: over + } + window-b: { + name: window + color: background + } + title-bg-c: { + name: title-bg + color: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-c + checkboxOff: checkbox-off-c + font: font + fontColor: color + overFontColor: over + } + radio: { + checkboxOn: radio-b + checkboxOff: radio-off-b + font: font + fontColor: color + overFontColor: over + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + imageUp: icon-biohazard-c + imageDown: icon-biohazard-d + imageOver: icon-biohazard-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + warning: { + imageUp: icon-warning-c + imageDown: icon-warning-d + imageOver: icon-warning-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + poison: { + imageUp: icon-poison-c + imageDown: icon-poison-d + imageOver: icon-poison-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + fire: { + imageUp: icon-fire-c + imageDown: icon-fire-d + imageOver: icon-fire-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + gasmask: { + imageUp: icon-gas-mask-c + imageDown: icon-gas-mask-d + imageOver: icon-gas-mask-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + electricity: { + imageUp: icon-electricity-c + imageDown: icon-electricity-d + imageOver: icon-electricity-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + radiation: { + imageUp: icon-radiation-c + imageDown: icon-radiation-d + imageOver: icon-radiation-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } + laser: { + imageUp: icon-laser-c + imageDown: icon-laser-d + imageOver: icon-laser-o + font: font + fontColor: color + downFontColor: down + overFontColor: over + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: color + } + title: { + font: title + fontColor: color + } + title-bg: { + font: title + fontColor: background + background: title-bg-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: color + fontColorUnselected: color + selection: over + background: list-b + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-knob + } + default-vertical: { + background: progress-bar + knobBefore: progress-bar-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-c + vScrollKnob: scrollbar-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: color + background: select-box-b + scrollStyle: default + listStyle: default + backgroundOpen: select-box-pressed-b + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: clear + knob: slider-knob-c + knobAfter: slider-c + } + default-vertical: { + background: clear + knob: slider-knob-c + knobBefore: slider-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane + } + default-vertical: { + handle: split-pane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: color + background: textfield-c + cursor: split-pane + selection: over + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad-b + knob: touchpad-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-b + titleFont: title + titleFontColor: color + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.png b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.png new file mode 100644 index 0000000..127e1cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/biological-attack-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/font-export.fnt new file mode 100644 index 0000000..2d39c94 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=140 scaleH=140 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=129 y=41 width=5 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=109 y=127 width=9 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=60 y=69 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="#" +char id=36 x=97 y=97 width=11 height=21 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=22 width=20 height=16 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=0 y=99 width=16 height=16 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="&" +char id=39 x=135 y=40 width=4 height=8 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=128 y=73 width=6 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=121 y=23 width=6 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=99 y=34 width=10 height=9 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=62 y=30 width=12 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="+" +char id=44 x=111 y=23 width=5 height=9 xoffset=0 yoffset=18 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=85 y=136 width=6 height=3 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=120 y=117 width=5 height=5 xoffset=0 yoffset=17 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=120 y=51 width=8 height=21 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=46 y=107 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=99 y=17 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="1" +char id=50 x=98 y=63 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=88 y=0 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="3" +char id=52 x=47 y=73 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=49 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="5" +char id=54 x=49 y=30 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="6" +char id=55 x=98 y=80 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=100 y=0 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="8" +char id=57 x=61 y=47 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="9" +char id=58 x=129 y=59 width=5 height=12 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=128 y=23 width=6 height=17 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=59 y=107 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="<" +char id=61 x=19 y=73 width=11 height=8 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=87 y=34 width=11 height=11 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=109 y=110 width=10 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=20 height=21 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="@" +char id=65 x=20 y=39 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=60 y=86 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=33 y=90 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="C" +char id=68 x=21 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=98 y=46 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="E" +char id=70 x=97 y=119 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="F" +char id=71 x=35 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=21 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="H" +char id=73 x=135 y=49 width=4 height=16 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=110 y=34 width=10 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=35 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=87 y=17 width=11 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=116 width=16 height=16 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="M" +char id=78 x=75 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=19 y=56 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="O" +char id=80 x=73 y=82 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="P" +char id=81 x=17 y=99 width=15 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=32 y=120 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="R" +char id=83 x=74 y=43 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="S" +char id=84 x=34 y=56 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=35 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=17 y=120 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="V" +char id=87 x=0 y=39 width=19 height=16 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=33 y=73 width=13 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="X" +char id=89 x=18 y=82 width=14 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=62 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="Z" +char id=91 x=129 y=0 width=6 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=112 y=0 width=8 height=21 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=128 y=114 width=6 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=86 y=73 width=11 height=10 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=137 width=12 height=2 xoffset=0 yoffset=23 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=61 y=64 width=6 height=4 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=86 y=84 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=73 y=64 width=12 height=17 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="b" +char id=99 x=75 y=30 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=72 y=103 width=12 height=17 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="d" +char id=101 x=75 y=17 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=110 y=51 width=9 height=17 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=72 y=121 width=12 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=85 y=116 width=11 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=135 y=22 width=4 height=17 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=121 y=0 width=7 height=22 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=48 y=51 width=12 height=17 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=128 y=96 width=6 height=17 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=18 height=12 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="m" +char id=110 x=33 y=107 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=46 y=124 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="o" +char id=112 x=47 y=90 width=12 height=16 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="p" +char id=113 x=85 y=99 width=11 height=16 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=119 y=127 width=8 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=87 y=46 width=10 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="s" +char id=116 x=110 y=69 width=9 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=86 y=60 width=11 height=12 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=62 y=17 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=69 width=18 height=12 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=49 y=17 width=12 height=12 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="x" +char id=121 x=59 y=119 width=12 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=109 y=97 width=10 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=120 y=95 width=7 height=21 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=135 y=66 width=3 height=24 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=120 y=73 width=7 height=21 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=35 y=51 width=12 height=4 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=110 y=86 width=7 height=7 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=82 width=17 height=16 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/biological-attack/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/font-title-export.fnt new file mode 100644 index 0000000..c08f469 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/biological-attack/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=64 base=64 scaleW=381 scaleH=382 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=365 y=238 width=13 height=48 xoffset=0 yoffset=17 xadvance=17 page=0 chnl=0 letter="!" +char id=34 x=202 y=150 width=29 height=23 xoffset=0 yoffset=16 xadvance=33 page=0 chnl=0 letter=""" +char id=35 x=199 y=226 width=33 height=45 xoffset=0 yoffset=19 xadvance=37 page=0 chnl=0 letter="#" +char id=36 x=264 y=293 width=31 height=60 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="$" +char id=37 x=0 y=60 width=56 height=48 xoffset=0 yoffset=17 xadvance=60 page=0 chnl=0 letter="%" +char id=38 x=45 y=275 width=44 height=48 xoffset=0 yoffset=17 xadvance=48 page=0 chnl=0 letter="&" +char id=39 x=313 y=212 width=12 height=23 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="'" +char id=40 x=348 y=193 width=16 height=64 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="(" +char id=41 x=349 y=0 width=16 height=64 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter=")" +char id=42 x=264 y=354 width=27 height=26 xoffset=0 yoffset=14 xadvance=31 page=0 chnl=0 letter="*" +char id=43 x=126 y=348 width=33 height=33 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="+" +char id=44 x=297 y=212 width=15 height=26 xoffset=0 yoffset=52 xadvance=19 page=0 chnl=0 letter="," +char id=45 x=204 y=36 width=17 height=8 xoffset=0 yoffset=42 xadvance=21 page=0 chnl=0 letter="-" +char id=46 x=167 y=177 width=13 height=13 xoffset=0 yoffset=52 xadvance=17 page=0 chnl=0 letter="." +char id=47 x=326 y=193 width=21 height=61 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter="/" +char id=48 x=237 y=0 width=32 height=46 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="0" +char id=49 x=270 y=0 width=29 height=44 xoffset=0 yoffset=20 xadvance=33 page=0 chnl=0 letter="1" +char id=50 x=233 y=150 width=32 height=45 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="2" +char id=51 x=197 y=291 width=33 height=46 xoffset=0 yoffset=19 xadvance=37 page=0 chnl=0 letter="3" +char id=52 x=169 y=0 width=34 height=44 xoffset=0 yoffset=20 xadvance=38 page=0 chnl=0 letter="4" +char id=53 x=231 y=319 width=32 height=45 xoffset=0 yoffset=20 xadvance=36 page=0 chnl=0 letter="5" +char id=54 x=231 y=272 width=32 height=46 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="6" +char id=55 x=237 y=47 width=31 height=44 xoffset=0 yoffset=20 xadvance=35 page=0 chnl=0 letter="7" +char id=56 x=264 y=246 width=31 height=46 xoffset=0 yoffset=19 xadvance=35 page=0 chnl=0 letter="8" +char id=57 x=236 y=92 width=32 height=46 xoffset=0 yoffset=19 xadvance=36 page=0 chnl=0 letter="9" +char id=58 x=366 y=0 width=13 height=35 xoffset=0 yoffset=30 xadvance=17 page=0 chnl=0 letter=":" +char id=59 x=352 y=127 width=15 height=48 xoffset=0 yoffset=30 xadvance=19 page=0 chnl=0 letter=";" +char id=60 x=160 y=348 width=33 height=32 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="<" +char id=61 x=90 y=299 width=32 height=23 xoffset=0 yoffset=30 xadvance=36 page=0 chnl=0 letter="=" +char id=62 x=168 y=99 width=33 height=32 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter=">" +char id=63 x=300 y=0 width=27 height=49 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=57 height=59 xoffset=0 yoffset=17 xadvance=61 page=0 chnl=0 letter="@" +char id=65 x=47 y=227 width=41 height=46 xoffset=0 yoffset=18 xadvance=45 page=0 chnl=0 letter="A" +char id=66 x=128 y=250 width=35 height=46 xoffset=0 yoffset=18 xadvance=39 page=0 chnl=0 letter="B" +char id=67 x=95 y=107 width=36 height=48 xoffset=0 yoffset=17 xadvance=40 page=0 chnl=0 letter="C" +char id=68 x=94 y=156 width=36 height=46 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="D" +char id=69 x=296 y=289 width=29 height=46 xoffset=0 yoffset=18 xadvance=33 page=0 chnl=0 letter="E" +char id=70 x=296 y=242 width=29 height=46 xoffset=0 yoffset=18 xadvance=33 page=0 chnl=0 letter="F" +char id=71 x=90 y=250 width=37 height=48 xoffset=0 yoffset=17 xadvance=41 page=0 chnl=0 letter="G" +char id=72 x=89 y=203 width=37 height=46 xoffset=0 yoffset=18 xadvance=41 page=0 chnl=0 letter="H" +char id=73 x=368 y=36 width=11 height=46 xoffset=0 yoffset=18 xadvance=15 page=0 chnl=0 letter="I" +char id=74 x=269 y=47 width=30 height=47 xoffset=0 yoffset=18 xadvance=34 page=0 chnl=0 letter="J" +char id=75 x=58 y=0 width=38 height=46 xoffset=0 yoffset=18 xadvance=42 page=0 chnl=0 letter="K" +char id=76 x=299 y=95 width=28 height=46 xoffset=0 yoffset=18 xadvance=32 page=0 chnl=0 letter="L" +char id=77 x=0 y=335 width=43 height=46 xoffset=0 yoffset=18 xadvance=47 page=0 chnl=0 letter="M" +char id=78 x=97 y=0 width=36 height=46 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="N" +char id=79 x=45 y=324 width=42 height=48 xoffset=0 yoffset=17 xadvance=46 page=0 chnl=0 letter="O" +char id=80 x=132 y=95 width=35 height=46 xoffset=0 yoffset=18 xadvance=39 page=0 chnl=0 letter="P" +char id=81 x=0 y=275 width=44 height=59 xoffset=0 yoffset=17 xadvance=48 page=0 chnl=0 letter="Q" +char id=82 x=88 y=324 width=37 height=46 xoffset=0 yoffset=18 xadvance=41 page=0 chnl=0 letter="R" +char id=83 x=168 y=50 width=34 height=48 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="S" +char id=84 x=127 y=203 width=36 height=46 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="T" +char id=85 x=96 y=47 width=36 height=47 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="U" +char id=86 x=53 y=156 width=40 height=46 xoffset=0 yoffset=18 xadvance=44 page=0 chnl=0 letter="V" +char id=87 x=0 y=109 width=55 height=46 xoffset=0 yoffset=18 xadvance=59 page=0 chnl=0 letter="W" +char id=88 x=56 y=109 width=38 height=46 xoffset=0 yoffset=18 xadvance=42 page=0 chnl=0 letter="X" +char id=89 x=57 y=60 width=38 height=46 xoffset=0 yoffset=18 xadvance=42 page=0 chnl=0 letter="Y" +char id=90 x=203 y=45 width=33 height=46 xoffset=0 yoffset=18 xadvance=37 page=0 chnl=0 letter="Z" +char id=91 x=351 y=309 width=15 height=61 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="[" +char id=92 x=326 y=255 width=21 height=61 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter="\" +char id=93 x=365 y=176 width=15 height=61 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="]" +char id=94 x=266 y=212 width=30 height=29 xoffset=0 yoffset=17 xadvance=34 page=0 chnl=0 letter="^" +char id=95 x=44 y=373 width=33 height=6 xoffset=0 yoffset=68 xadvance=37 page=0 chnl=0 letter="_" +char id=96 x=131 y=191 width=16 height=11 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="`" +char id=97 x=266 y=175 width=30 height=36 xoffset=0 yoffset=29 xadvance=34 page=0 chnl=0 letter="a" +char id=98 x=202 y=99 width=33 height=50 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="b" +char id=99 x=269 y=95 width=29 height=36 xoffset=0 yoffset=29 xadvance=33 page=0 chnl=0 letter="c" +char id=100 x=164 y=240 width=34 height=50 xoffset=0 yoffset=15 xadvance=38 page=0 chnl=0 letter="d" +char id=101 x=197 y=338 width=32 height=36 xoffset=0 yoffset=29 xadvance=36 page=0 chnl=0 letter="e" +char id=102 x=326 y=142 width=25 height=50 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="f" +char id=103 x=162 y=297 width=34 height=50 xoffset=0 yoffset=29 xadvance=38 page=0 chnl=0 letter="g" +char id=104 x=233 y=196 width=32 height=49 xoffset=0 yoffset=15 xadvance=36 page=0 chnl=0 letter="h" +char id=105 x=367 y=287 width=12 height=50 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="i" +char id=106 x=328 y=0 width=20 height=64 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="j" +char id=107 x=134 y=0 width=34 height=49 xoffset=0 yoffset=15 xadvance=38 page=0 chnl=0 letter="k" +char id=108 x=348 y=258 width=16 height=50 xoffset=0 yoffset=15 xadvance=20 page=0 chnl=0 letter="l" +char id=109 x=0 y=156 width=52 height=35 xoffset=0 yoffset=29 xadvance=56 page=0 chnl=0 letter="m" +char id=110 x=204 y=0 width=32 height=35 xoffset=0 yoffset=29 xadvance=36 page=0 chnl=0 letter="n" +char id=111 x=133 y=50 width=34 height=36 xoffset=0 yoffset=29 xadvance=38 page=0 chnl=0 letter="o" +char id=112 x=199 y=177 width=33 height=48 xoffset=0 yoffset=29 xadvance=37 page=0 chnl=0 letter="p" +char id=113 x=164 y=191 width=34 height=48 xoffset=0 yoffset=29 xadvance=38 page=0 chnl=0 letter="q" +char id=114 x=300 y=50 width=24 height=35 xoffset=0 yoffset=29 xadvance=28 page=0 chnl=0 letter="r" +char id=115 x=297 y=175 width=28 height=36 xoffset=0 yoffset=29 xadvance=32 page=0 chnl=0 letter="s" +char id=116 x=325 y=336 width=25 height=45 xoffset=0 yoffset=20 xadvance=29 page=0 chnl=0 letter="t" +char id=117 x=266 y=139 width=31 height=35 xoffset=0 yoffset=30 xadvance=35 page=0 chnl=0 letter="u" +char id=118 x=131 y=156 width=35 height=34 xoffset=0 yoffset=30 xadvance=39 page=0 chnl=0 letter="v" +char id=119 x=0 y=192 width=51 height=34 xoffset=0 yoffset=30 xadvance=55 page=0 chnl=0 letter="w" +char id=120 x=167 y=142 width=34 height=34 xoffset=0 yoffset=30 xadvance=38 page=0 chnl=0 letter="x" +char id=121 x=126 y=299 width=35 height=48 xoffset=0 yoffset=30 xadvance=39 page=0 chnl=0 letter="y" +char id=122 x=296 y=336 width=28 height=34 xoffset=0 yoffset=30 xadvance=32 page=0 chnl=0 letter="z" +char id=123 x=328 y=65 width=19 height=61 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="{" +char id=124 x=368 y=83 width=7 height=70 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=348 y=65 width=19 height=61 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="}" +char id=126 x=52 y=203 width=33 height=14 xoffset=0 yoffset=34 xadvance=37 page=0 chnl=0 letter="~" +char id=8226 x=233 y=246 width=19 height=20 xoffset=0 yoffset=36 xadvance=23 page=0 chnl=0 letter="•" +char id=169 x=0 y=227 width=46 height=47 xoffset=0 yoffset=18 xadvance=50 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=168 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/Comfortaa Font License.txt b/src/main/resources/omni_power/gdx-skins/clean-crispy/Comfortaa Font License.txt new file mode 100644 index 0000000..e9951e0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/clean-crispy/Comfortaa Font License.txt @@ -0,0 +1,94 @@ +Copyright (c) 2010, Johan Aakerlund (aajohan@gmail.com), +with Reserved Font Name "Comfortaa". + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/README.md b/src/main/resources/omni_power/gdx-skins/clean-crispy/README.md new file mode 100644 index 0000000..1b4c8d2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/clean-crispy/README.md @@ -0,0 +1,28 @@ +# Clean Crispy UI + +``` +Clean Crispy UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2016 Raymond Buckley + +Comfortaa Font used under SIL OPEN FONT LICENSE Version 1.1 +Copyright (c) 2010, Johan Aakerlund (aajohan@gmail.com), +with Reserved Font Name "Comfortaa". +See "Comfortaa Font License.txt" + +Clean Crispy UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Simple and readable. Can be easily recolored by modifing color properties in `.json` file. + +![Clean Crispy](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/clean-crispy-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/preview.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/preview.png new file mode 100644 index 0000000..2f24693 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade-pressed.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade-pressed.9.png new file mode 100644 index 0000000..c63f4e1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade-pressed.png new file mode 100644 index 0000000..6efa274 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade.9.png new file mode 100644 index 0000000..bddc02f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade.png new file mode 100644 index 0000000..9e2a839 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-arcade.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close-over.png new file mode 100644 index 0000000..ae9abba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close-pressed.png new file mode 100644 index 0000000..cd49181 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close.png new file mode 100644 index 0000000..6f921f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize-over.png new file mode 100644 index 0000000..6ad6a0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize-pressed.png new file mode 100644 index 0000000..f6367c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize.png new file mode 100644 index 0000000..cf7577d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-maximize.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize-over.png new file mode 100644 index 0000000..2a8823f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize-pressed.png new file mode 100644 index 0000000..46fe697 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize.png new file mode 100644 index 0000000..97eb32f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-minimize.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-over.9.png new file mode 100644 index 0000000..1b99d38 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-over.png new file mode 100644 index 0000000..45e2dab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed-over.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed-over.9.png new file mode 100644 index 0000000..1f2db39 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed-over.png new file mode 100644 index 0000000..dfef883 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed.9.png new file mode 100644 index 0000000..3eedb9a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed.png new file mode 100644 index 0000000..ec0e0ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button.9.png new file mode 100644 index 0000000..88879dc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button.png new file mode 100644 index 0000000..fac3239 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-over.png new file mode 100644 index 0000000..be4150a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-pressed-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-pressed-over.png new file mode 100644 index 0000000..562146d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-pressed.png new file mode 100644 index 0000000..d3340c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox.png new file mode 100644 index 0000000..4cc71f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/cursor.9.png new file mode 100644 index 0000000..9f1549c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/cursor.png new file mode 100644 index 0000000..01d1fd4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font-export.fnt new file mode 100644 index 0000000..8874161 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=98 scaleH=98 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=91 y=85 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=82 y=90 width=4 height=5 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=32 y=26 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=66 y=72 width=7 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=68 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=12 y=78 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=29 y=91 width=2 height=5 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=89 y=32 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=89 y=48 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=17 y=91 width=5 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=66 y=87 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=93 y=64 width=3 height=5 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=23 y=91 width=5 height=3 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=87 y=90 width=3 height=4 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=82 y=76 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=75 y=23 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=83 y=31 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=67 y=52 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=67 y=26 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=24 y=13 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=33 y=13 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=60 y=0 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=67 y=13 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=74 y=78 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=67 y=39 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="9" +char id=58 x=89 y=64 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=89 y=74 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=75 y=13 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=74 y=91 width=7 height=6 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=75 y=36 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=68 y=0 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=13 height=15 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=22 y=78 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=74 y=65 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=12 y=65 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=22 y=52 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=22 y=65 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=41 y=85 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=24 y=0 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=43 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=94 y=16 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=59 y=59 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=42 y=13 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=50 y=26 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=55 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=12 y=39 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=42 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=59 y=13 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=29 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=50 y=39 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=52 y=0 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=50 y=52 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=50 y=65 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=12 y=52 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=12 y=16 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=14 y=0 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=41 y=72 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=22 y=39 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=83 y=0 width=5 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=82 y=62 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=89 y=16 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=67 y=65 width=6 height=6 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=0 y=91 width=8 height=3 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=75 y=59 width=4 height=5 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=41 y=52 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=41 y=39 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=58 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=34 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=41 y=62 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=76 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=32 y=62 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=32 y=49 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=94 y=45 width=2 height=11 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=83 y=16 width=5 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=51 y=13 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=70 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=81 width=11 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="m" +char id=110 x=50 y=88 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=32 y=39 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=41 y=26 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=32 y=85 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=50 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=58 y=88 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=75 y=46 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=23 y=29 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=32 y=75 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=12 y=29 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=59 y=26 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=59 y=46 width=7 height=12 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=59 y=36 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=82 y=46 width=6 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=94 y=29 width=3 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=89 y=0 width=5 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=9 y=91 width=7 height=3 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=59 y=72 width=4 height=5 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=16 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font-export.png new file mode 100644 index 0000000..e583691 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font.png new file mode 100644 index 0000000..1828cfa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/list.9.png new file mode 100644 index 0000000..0c0d72e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/list.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/list.png new file mode 100644 index 0000000..73dc9e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-big.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-big.9.png new file mode 100644 index 0000000..cabfe7b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-big.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-big.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-big.png new file mode 100644 index 0000000..6809629 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-big.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-horizontal.9.png new file mode 100644 index 0000000..50ee826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-horizontal.png new file mode 100644 index 0000000..5cb11a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-big.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-big.png new file mode 100644 index 0000000..5b96c7d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-big.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-horizontal.png new file mode 100644 index 0000000..975389a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-vertical.png new file mode 100644 index 0000000..1c39ca0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-tiled.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-tiled.png new file mode 100644 index 0000000..a57f1c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-tiled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-vertical.9.png new file mode 100644 index 0000000..adc2d6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-vertical.png new file mode 100644 index 0000000..0b3d374 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/progressbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-over.png new file mode 100644 index 0000000..2b5df32 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-pressed-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-pressed-over.png new file mode 100644 index 0000000..55b2ee6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-pressed.png new file mode 100644 index 0000000..12985d3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio.png new file mode 100644 index 0000000..3ed9642 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/resize.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/resize.png new file mode 100644 index 0000000..a96e297 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/resize.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scollpane-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scollpane-vertical.png new file mode 100644 index 0000000..512dd95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scollpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-horizontal.9.png new file mode 100644 index 0000000..728043c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-horizontal.png new file mode 100644 index 0000000..ba15994 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-horizontal.9.png new file mode 100644 index 0000000..0b5a3df Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-horizontal.png new file mode 100644 index 0000000..00a3a17 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-vertical.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-vertical.9.png new file mode 100644 index 0000000..4bf124f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-vertical.png new file mode 100644 index 0000000..dab3486 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-vertical.9.png new file mode 100644 index 0000000..a03102d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-vertical.png new file mode 100644 index 0000000..512dd95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/scrollpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-over.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-over.9.png new file mode 100644 index 0000000..8e94f0c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-over.png new file mode 100644 index 0000000..317d251 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed-over.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed-over.9.png new file mode 100644 index 0000000..34f2b8f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed-over.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed-over.png new file mode 100644 index 0000000..3f3ea3b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed.9.png new file mode 100644 index 0000000..358880c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed.png new file mode 100644 index 0000000..fdc4fb5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox.9.png new file mode 100644 index 0000000..6a7cafe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox.png new file mode 100644 index 0000000..9cf3bf2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/selectbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-horizontal.9.png new file mode 100644 index 0000000..749322a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-horizontal.png new file mode 100644 index 0000000..9293f75 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-vertical.9.png new file mode 100644 index 0000000..e0f5121 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-vertical.png new file mode 100644 index 0000000..258a357 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-horizontal.9.png new file mode 100644 index 0000000..3a1dbbb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-horizontal.png new file mode 100644 index 0000000..0bc8598 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-horizontal.png new file mode 100644 index 0000000..32e9131 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-over-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-over-horizontal.png new file mode 100644 index 0000000..017fb3a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-over-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-over-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-over-vertical.png new file mode 100644 index 0000000..76bf5f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-over-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-pressed-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-pressed-horizontal.png new file mode 100644 index 0000000..1a58297 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-pressed-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-pressed-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-pressed-vertical.png new file mode 100644 index 0000000..0b6064b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-pressed-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-vertical.png new file mode 100644 index 0000000..0399ccc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-tick.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-tick.png new file mode 100644 index 0000000..50e537d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-tick.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-vertical.9.png new file mode 100644 index 0000000..40807bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-vertical.png new file mode 100644 index 0000000..995fd07 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-horizontal.9.png new file mode 100644 index 0000000..05ba6aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-horizontal.png new file mode 100644 index 0000000..8fee5a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-vertical.9.png new file mode 100644 index 0000000..c06177c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-vertical.png new file mode 100644 index 0000000..72656a4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/textfield.9.png new file mode 100644 index 0000000..50f2f89 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/textfield.png new file mode 100644 index 0000000..de85d41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tooltip.9.png new file mode 100644 index 0000000..f25b67d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tooltip.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tooltip.png new file mode 100644 index 0000000..bae3a2b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tooltip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/touchpad-knob.png new file mode 100644 index 0000000..77e76d3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/touchpad.png new file mode 100644 index 0000000..3d578df Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tree-minus.png new file mode 100644 index 0000000..473c505 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tree-plus.png new file mode 100644 index 0000000..e4c7abf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/white.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window-main.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window-main.9.png new file mode 100644 index 0000000..5e29ae4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window-main.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window-main.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window-main.png new file mode 100644 index 0000000..865d3a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window-main.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window.9.png new file mode 100644 index 0000000..0a32956 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window.png new file mode 100644 index 0000000..3b7a5f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.atlas b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.atlas new file mode 100644 index 0000000..72ae2f0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.atlas @@ -0,0 +1,512 @@ + +clean-crispy-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 267, 473 + size: 38, 38 + split: 8, 10, 9, 10 + pad: 8, 10, 4, 6 + orig: 38, 38 + offset: 0, 0 + index: -1 +button-arcade + rotate: false + xy: 115, 427 + size: 84, 84 + split: 0, 0, 0, 0 + pad: 18, 18, 25, 38 + orig: 84, 84 + offset: 0, 0 + index: -1 +button-arcade-pressed + rotate: false + xy: 1, 213 + size: 84, 84 + split: 0, 0, 0, 0 + pad: 18, 18, 30, 33 + orig: 84, 84 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 74, 51 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-close-over + rotate: false + xy: 101, 309 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-close-pressed + rotate: false + xy: 118, 369 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-maximize + rotate: false + xy: 118, 351 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-maximize-over + rotate: false + xy: 135, 369 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-maximize-pressed + rotate: false + xy: 118, 333 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-minimize + rotate: false + xy: 135, 351 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-minimize-over + rotate: false + xy: 152, 369 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-minimize-pressed + rotate: false + xy: 118, 315 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 307, 473 + size: 38, 38 + split: 8, 10, 9, 10 + pad: 8, 10, 4, 6 + orig: 38, 38 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 347, 473 + size: 38, 38 + split: 8, 10, 9, 10 + pad: 8, 10, 4, 6 + orig: 38, 38 + offset: 0, 0 + index: -1 +button-pressed-over + rotate: false + xy: 387, 473 + size: 38, 38 + split: 8, 10, 9, 10 + pad: 8, 10, 4, 6 + orig: 38, 38 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 54, 81 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +checkbox-over + rotate: false + xy: 54, 62 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 54, 43 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +checkbox-pressed-over + rotate: false + xy: 76, 126 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 1, 3 + size: 2, 6 + split: 0, 0, 1, 1 + pad: 0, 0, 0, 0 + orig: 2, 6 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 299 + size: 98, 98 + orig: 98, 98 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 41, 1 + size: 37, 35 + split: 6, 8, 4, 8 + pad: 7, 9, 2, 6 + orig: 37, 35 + offset: 0, 0 + index: -1 +progressbar-big + rotate: false + xy: 267, 440 + size: 31, 31 + split: 10, 10, 6, 9 + pad: 1, 1, 0, 0 + orig: 31, 31 + offset: 0, 0 + index: -1 +progressbar-horizontal + rotate: false + xy: 267, 426 + size: 23, 12 + split: 5, 5, 3, 3 + pad: 3, 3, 0, 0 + orig: 23, 12 + offset: 0, 0 + index: -1 +progressbar-knob-big + rotate: false + xy: 64, 145 + size: 24, 26 + orig: 24, 26 + offset: 0, 0 + index: -1 +progressbar-knob-horizontal + rotate: false + xy: 135, 323 + size: 1, 12 + orig: 1, 12 + offset: 0, 0 + index: -1 +progressbar-knob-vertical + rotate: false + xy: 101, 396 + size: 12, 1 + orig: 12, 1 + offset: 0, 0 + index: -1 +progressbar-tiled + rotate: false + xy: 135, 337 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +progressbar-vertical + rotate: false + xy: 499, 448 + size: 12, 23 + split: 0, 12, 5, 6 + pad: 0, 0, 3, 3 + orig: 12, 23 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 91, 196 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +radio-over + rotate: false + xy: 91, 174 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 54, 122 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +radio-pressed-over + rotate: false + xy: 54, 100 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +resize + rotate: false + xy: 169, 375 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +scrollpane-horizontal + rotate: false + xy: 201, 428 + size: 31, 17 + split: 11, 12, 0, 0 + pad: 0, 0, 0, 0 + orig: 31, 17 + offset: 0, 0 + index: -1 +scrollpane-knob-horizontal + rotate: false + xy: 234, 428 + size: 31, 17 + split: 6, 8, 0, 0 + pad: 0, 0, 0, 0 + orig: 31, 17 + offset: 0, 0 + index: -1 +scrollpane-knob-vertical + rotate: false + xy: 74, 69 + size: 17, 28 + split: 0, 0, 4, 7 + pad: 0, 0, 0, 0 + orig: 17, 28 + offset: 0, 0 + index: -1 +scrollpane-vertical + rotate: false + xy: 195, 393 + size: 17, 32 + split: 0, 0, 11, 13 + pad: 0, 0, 0, 0 + orig: 17, 32 + offset: 0, 0 + index: -1 +selectbox + rotate: false + xy: 427, 473 + size: 38, 38 + split: 7, 17, 15, 18 + pad: 5, 17, 4, 7 + orig: 38, 38 + offset: 0, 0 + index: -1 +selectbox-over + rotate: false + xy: 467, 473 + size: 38, 38 + split: 8, 15, 15, 18 + pad: 5, 17, 4, 7 + orig: 38, 38 + offset: 0, 0 + index: -1 +selectbox-pressed + rotate: false + xy: 115, 387 + size: 38, 38 + split: 8, 15, 15, 18 + pad: 5, 17, 4, 7 + orig: 38, 38 + offset: 0, 0 + index: -1 +selectbox-pressed-over + rotate: false + xy: 155, 387 + size: 38, 38 + split: 8, 15, 15, 18 + pad: 5, 17, 5, 7 + orig: 38, 38 + offset: 0, 0 + index: -1 +slider-bar-horizontal + rotate: false + xy: 152, 342 + size: 11, 25 + split: 10, 0, 0, 0 + pad: 0, 0, 0, 0 + orig: 11, 25 + offset: 0, 0 + index: -1 +slider-bar-vertical + rotate: false + xy: 472, 457 + size: 25, 14 + split: 0, 0, 0, 13 + pad: 0, 0, 0, 0 + orig: 25, 14 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 1, 11 + size: 38, 25 + split: 18, 18, 0, 0 + pad: 3, 0, 0, 0 + orig: 38, 25 + offset: 0, 0 + index: -1 +slider-knob-horizontal + rotate: false + xy: 87, 272 + size: 21, 25 + orig: 21, 25 + offset: 0, 0 + index: -1 +slider-knob-over-horizontal + rotate: false + xy: 87, 245 + size: 21, 25 + orig: 21, 25 + offset: 0, 0 + index: -1 +slider-knob-over-vertical + rotate: false + xy: 391, 450 + size: 25, 21 + orig: 25, 21 + offset: 0, 0 + index: -1 +slider-knob-pressed-horizontal + rotate: false + xy: 87, 218 + size: 21, 25 + orig: 21, 25 + offset: 0, 0 + index: -1 +slider-knob-pressed-vertical + rotate: false + xy: 418, 450 + size: 25, 21 + orig: 25, 21 + offset: 0, 0 + index: -1 +slider-knob-vertical + rotate: false + xy: 445, 450 + size: 25, 21 + orig: 25, 21 + offset: 0, 0 + index: -1 +slider-tick + rotate: false + xy: 76, 99 + size: 17, 25 + orig: 17, 25 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 64, 173 + size: 25, 38 + split: 0, 0, 18, 18 + pad: 0, 0, 0, 3 + orig: 25, 38 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 292, 429 + size: 3, 9 + split: 0, 0, 1, 1 + pad: 0, 0, 0, 0 + orig: 3, 9 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 54, 38 + size: 9, 3 + split: 1, 1, 1, 1 + pad: 0, 0, 0, 0 + orig: 9, 3 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 362, 444 + size: 27, 27 + split: 8, 6, 6, 7 + pad: 3, 3, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 1, 38 + size: 51, 104 + split: 10, 9, 9, 10 + pad: 10, 10, 2, 3 + orig: 51, 104 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 399 + size: 112, 112 + orig: 112, 112 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 201, 447 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 300, 448 + size: 29, 23 + orig: 29, 23 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 331, 448 + size: 29, 23 + orig: 29, 23 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 300, 445 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 144 + size: 61, 67 + split: 10, 12, 23, 13 + pad: 12, 14, 25, 7 + orig: 61, 67 + offset: 0, 0 + index: -1 +window-main + rotate: false + xy: 101, 327 + size: 15, 58 + split: 1, 1, 21, 16 + pad: -1, -1, 23, 1 + orig: 15, 58 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.json b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.json new file mode 100644 index 0000000..f0488c3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.json @@ -0,0 +1,498 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + color: { + r: 1 + g: 1 + b: 1 + a: 1 + } + selection: { + r: 0.70333326 + g: 0.70333326 + b: 0.70333326 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-c: { + name: button + color: color + } + button-arcade-c: { + name: button-arcade + color: color + } + button-arcade-pressed-c: { + name: button-arcade-pressed + color: color + } + button-close-c: { + name: button-close + color: color + } + button-close-over-c: { + name: button-close-over + color: color + } + button-close-pressed-c: { + name: button-close-pressed + color: color + } + button-maximize-c: { + name: button-maximize + color: color + } + button-maximize-over-c: { + name: button-maximize-over + color: color + } + button-maximize-pressed-c: { + name: button-maximize-pressed + color: color + } + button-minimize-c: { + name: button-minimize + color: color + } + button-minimize-over-c: { + name: button-minimize-over + color: color + } + button-minimize-pressed-c: { + name: button-minimize-pressed + color: color + } + button-over-c: { + name: button-over + color: color + } + button-pressed-c: { + name: button-pressed + color: color + } + button-pressed-over-c: { + name: button-pressed-over + color: color + } + checkbox-c: { + name: checkbox + color: color + } + checkbox-over-c: { + name: checkbox-over + color: color + } + checkbox-pressed-c: { + name: checkbox-pressed + color: color + } + checkbox-pressed-over-c: { + name: checkbox-pressed-over + color: color + } + cursor-c: { + name: cursor + color: color + } + list-c: { + name: list + color: color + } + progressbar-big-c: { + name: progressbar-big + color: color + } + progressbar-horizontal-c: { + name: progressbar-horizontal + color: color + } + progressbar-knob-horizontal-c: { + name: progressbar-knob-horizontal + color: color + } + progressbar-knob-vertical-c: { + name: progressbar-knob-vertical + color: color + } + progressbar-vertical-c: { + name: progressbar-vertical + color: color + } + radio-c: { + name: radio + color: color + } + radio-over-c: { + name: radio-over + color: color + } + radio-pressed-c: { + name: radio-pressed + color: color + } + radio-pressed-over-c: { + name: radio-pressed-over + color: color + } + selectbox-c: { + name: selectbox + color: color + } + selectbox-over-c: { + name: selectbox-over + color: color + } + selectbox-pressed-c: { + name: selectbox-pressed + color: color + } + selectbox-pressed-over-c: { + name: selectbox-pressed-over + color: color + } + slider-horizontal-c: { + name: slider-horizontal + color: color + } + slider-knob-horizontal-c: { + name: slider-knob-horizontal + color: color + } + slider-knob-over-horizontal-c: { + name: slider-knob-over-horizontal + color: color + } + slider-knob-over-vertical-c: { + name: slider-knob-over-vertical + color: color + } + slider-knob-pressed-horizontal-c: { + name: slider-knob-pressed-horizontal + color: color + } + slider-knob-pressed-vertical-c: { + name: slider-knob-pressed-vertical + color: color + } + slider-knob-vertical-c: { + name: slider-knob-vertical + color: color + } + slider-vertical-c: { + name: slider-vertical + color: color + } + splitpane-horizontal-c: { + name: splitpane-horizontal + color: color + } + splitpane-vertical-c: { + name: splitpane-vertical + color: color + } + textfield-c: { + name: textfield + color: color + } + tooltip-c: { + name: tooltip + color: color + } + touchpad-c: { + name: touchpad + color: color + } + touchpad-knob-c: { + name: touchpad-knob + color: color + } + tree-minus-c: { + name: tree-minus + color: color + } + tree-plus-c: { + name: tree-plus + color: color + } + window-c: { + name: window + color: color + } + window-main-c: { + name: window-main + color: color + } + color: { + name: white + color: color + } + scrollpane-horizontal-c: { + name: scrollpane-horizontal + color: color + } + scrollpane-knob-horizontal-c: { + name: scrollpane-knob-horizontal + color: color + } + scrollpane-knob-vertical-c: { + name: scrollpane-knob-vertical + color: color + } + scrollpane-vertical-c: { + name: scrollpane-vertical + color: color + } + slider-bar-horizontal-c: { + name: slider-bar-horizontal + color: color + } + slider-bar-vertical-c: { + name: slider-bar-vertical + color: color + } + selection: { + name: white + color: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-c + down: button-pressed-over-c + over: button-over-c + } + toggle: { + up: button-c + down: button-pressed-c + over: button-over-c + checked: button-pressed-c + checkedOver: button-pressed-over-c + } + minimize: { + up: button-minimize-c + down: button-minimize-pressed-c + over: button-minimize-over-c + } + maximize: { + up: button-maximize-c + down: button-maximize-pressed-c + over: button-maximize-over-c + } + close: { + up: button-close-c + down: button-close-pressed-c + over: button-close-over-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-pressed-c + checkboxOff: checkbox-c + checkboxOver: checkbox-over-c + font: font + fontColor: color + } + radio: { + checkboxOn: radio-pressed-c + checkboxOff: radio-c + checkboxOver: radio-over-c + font: font + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-c + down: button-pressed-over-c + over: button-over-c + } + toggle: { + up: button-c + down: button-pressed-c + over: button-over-c + checked: button-pressed-c + checkedOver: button-pressed-over-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + up: button-c + down: button-pressed-over-c + over: button-over-c + } + toggle: { + font: font + up: button-c + down: button-pressed-c + over: button-over-c + checked: button-pressed-c + checkedOver: button-pressed-over-c + } + radio: { + imageUp: radio-c + imageDown: radio-pressed-c + imageOver: radio-over-c + imageChecked: radio-pressed-c + imageCheckedOver: radio-pressed-over-c + font: font + } + checkbox: { + imageUp: checkbox-c + imageDown: checkbox-pressed-c + imageOver: checkbox-over-c + imageChecked: checkbox-pressed-c + imageCheckedOver: checkbox-pressed-over-c + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: color + fontColorUnselected: color + selection: color + background: list-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progressbar-horizontal-c + knobBefore: progressbar-knob-horizontal-c + } + default-vertical: { + background: progressbar-vertical-c + knobBefore: progressbar-knob-vertical-c + } + tiled: { + background: progressbar-horizontal-c + knobBefore: progressbar-tiled + } + tiled-big: { + background: progressbar-big-c + knobBefore: progressbar-knob-big + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollpane-horizontal-c + hScrollKnob: scrollpane-knob-horizontal-c + vScroll: scrollpane-vertical-c + vScrollKnob: scrollpane-knob-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: color + background: selectbox-c + scrollStyle: default + listStyle: default + backgroundOver: selectbox-over-c + backgroundOpen: selectbox-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-over-horizontal-c + knobDown: slider-knob-pressed-horizontal-c + background: slider-horizontal + knob: slider-knob-horizontal-c + knobBefore: slider-bar-horizontal-c + } + default-vertical: { + knobOver: slider-knob-over-vertical-c + knobDown: slider-knob-pressed-vertical-c + background: slider-vertical-c + knob: slider-knob-vertical-c + knobBefore: slider-bar-vertical-c + } + tick: { + knobOver: slider-knob-over-horizontal-c + knobDown: slider-knob-pressed-horizontal-c + background: slider-tick + knob: slider-knob-horizontal-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal-c + } + default-vertical: { + handle: splitpane-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: color + up: button-c + down: button-pressed-over-c + over: button-over-c + } + toggle: { + font: font + fontColor: color + up: button-c + down: button-pressed-c + over: button-over-c + checked: button-pressed-c + checkedOver: button-pressed-over-c + } + arcade: { + font: font + up: button-arcade-c + down: button-arcade-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: color + background: textfield-c + cursor: cursor-c + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad-c + knob: touchpad-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: tree-plus-c + minus: tree-minus-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-c + titleFont: font + titleFontColor: color + } + main: { + background: window-main-c + titleFont: font + titleFontColor: color + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.png b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.png new file mode 100644 index 0000000..b6b062b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/clean-crispy-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/font-export.fnt new file mode 100644 index 0000000..8874161 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/clean-crispy/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=98 scaleH=98 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=91 y=85 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=82 y=90 width=4 height=5 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=32 y=26 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=66 y=72 width=7 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=68 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=12 y=78 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=29 y=91 width=2 height=5 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=89 y=32 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=89 y=48 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=17 y=91 width=5 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=66 y=87 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=93 y=64 width=3 height=5 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=23 y=91 width=5 height=3 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=87 y=90 width=3 height=4 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=82 y=76 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=75 y=23 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=83 y=31 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=67 y=52 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=67 y=26 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=24 y=13 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=33 y=13 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=60 y=0 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=67 y=13 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=74 y=78 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=67 y=39 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="9" +char id=58 x=89 y=64 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=89 y=74 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=75 y=13 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=74 y=91 width=7 height=6 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=75 y=36 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=68 y=0 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=13 height=15 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=22 y=78 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=74 y=65 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=12 y=65 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=22 y=52 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=22 y=65 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=41 y=85 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=24 y=0 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=43 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=94 y=16 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=59 y=59 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=42 y=13 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=50 y=26 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=55 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=12 y=39 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=42 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=59 y=13 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=29 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=50 y=39 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=52 y=0 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=50 y=52 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=50 y=65 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=12 y=52 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=12 y=16 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=14 y=0 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=41 y=72 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=22 y=39 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=83 y=0 width=5 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=82 y=62 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=89 y=16 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=67 y=65 width=6 height=6 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=0 y=91 width=8 height=3 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=75 y=59 width=4 height=5 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=41 y=52 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=41 y=39 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=58 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=34 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=41 y=62 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=76 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=32 y=62 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=32 y=49 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=94 y=45 width=2 height=11 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=83 y=16 width=5 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=51 y=13 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=70 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=81 width=11 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="m" +char id=110 x=50 y=88 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=32 y=39 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=41 y=26 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=32 y=85 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=50 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=58 y=88 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=75 y=46 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=23 y=29 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=32 y=75 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=12 y=29 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=59 y=26 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=59 y=46 width=7 height=12 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=59 y=36 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=82 y=46 width=6 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=94 y=29 width=3 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=89 y=0 width=5 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=9 y=91 width=7 height=3 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=59 y=72 width=4 height=5 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=16 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/README.md b/src/main/resources/omni_power/gdx-skins/cloud-form/README.md new file mode 100644 index 0000000..353188b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/README.md @@ -0,0 +1,35 @@ +# Cloud Form UI + +``` +Cloud Form UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2016 Raymond Buckley + +Cloud Form UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ + +RadialDrawable.java can be used under the MIT license. +https://opensource.org/licenses/MIT + +RadialProgressBar.java can be used under the Apache 2.0 license. +Derived from ProgressBar class by mzechner and Nathan Sweet. Added RadialDrawable functionality and removed all use of Drawable knobs. +http://www.apache.org/licenses/LICENSE-2.0 + +Gravity font by Vincenzo Vuono +© Vincenzo Vuono www.vincenzovuono.com +Used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Simplistic UI in style of (corporate) desktop applications. [Example project](https://ray3k.wordpress.com/cloud-form-ui-skin-for-libgdx/) contains example implementation of a radial progress bar. + +![Cloud Form](preview.gif) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/cloud-form-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). See the quote above for more data. Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/) and [Vincenzo Vuono](http://www.vincenzovuono.com) if you use the fonts. diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/preview.gif b/src/main/resources/omni_power/gdx-skins/cloud-form/preview.gif new file mode 100644 index 0000000..3baf477 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-over-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-over-pressed.png new file mode 100644 index 0000000..bdaf9e9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-over-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-over.png new file mode 100644 index 0000000..4ee5446 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-pressed.png new file mode 100644 index 0000000..536576f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close.png new file mode 100644 index 0000000..2e610b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-over.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-over.9.png new file mode 100644 index 0000000..0aa3e05 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-over.png new file mode 100644 index 0000000..6641794 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed-over.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed-over.9.png new file mode 100644 index 0000000..55d034b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed-over.png new file mode 100644 index 0000000..202f810 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed.9.png new file mode 100644 index 0000000..d859a43 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed.png new file mode 100644 index 0000000..009f900 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu.9.png new file mode 100644 index 0000000..9679ecb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu.png new file mode 100644 index 0000000..8124d61 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-over.9.png new file mode 100644 index 0000000..5d4bda5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-over.png new file mode 100644 index 0000000..1d0ff2f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed-over.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed-over.9.png new file mode 100644 index 0000000..74f5a14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed-over.png new file mode 100644 index 0000000..be5b51d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed.9.png new file mode 100644 index 0000000..0ee9923 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed.png new file mode 100644 index 0000000..83cc4b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button.9.png new file mode 100644 index 0000000..60b74e9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button.png new file mode 100644 index 0000000..ecb178a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-over.png new file mode 100644 index 0000000..e40e9e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-pressed-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-pressed-over.png new file mode 100644 index 0000000..2a19cbd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-pressed.png new file mode 100644 index 0000000..3a011f8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox.png new file mode 100644 index 0000000..343d730 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font-export.fnt new file mode 100644 index 0000000..f1d9c20 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font-export.fnt @@ -0,0 +1,732 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=83 scaleH=84 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=78 y=13 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=45 y=79 width=4 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=10 y=69 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=13 y=0 width=8 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=0 y=52 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=20 y=33 width=8 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=23 y=44 width=2 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=73 y=39 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=75 y=0 width=3 height=12 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=18 y=79 width=5 height=4 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=29 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=20 y=44 width=2 height=4 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=22 y=10 width=5 height=2 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=29 y=38 width=2 height=2 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=67 y=27 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=28 y=54 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=67 y=57 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=45 y=28 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=37 y=38 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=31 y=0 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=37 y=59 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=45 y=49 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=38 y=10 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=45 y=38 width=7 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=48 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=77 y=65 width=2 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=78 y=43 width=2 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=12 y=13 width=6 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=10 y=79 width=7 height=4 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=61 y=10 width=6 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=63 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=20 width=10 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=20 y=23 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=53 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=20 y=13 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=19 y=69 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=46 y=10 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=45 y=69 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=0 y=62 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=11 y=20 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=78 y=33 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=61 y=17 width=5 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=10 y=59 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=53 y=41 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=10 width=11 height=9 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=10 y=49 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=10 y=39 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=45 y=59 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=41 width=9 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=22 y=0 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=28 y=44 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=19 y=49 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=29 y=10 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=28 y=64 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=12 height=9 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=19 y=59 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=28 y=74 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=40 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=73 y=13 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=67 y=37 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=70 y=0 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=72 y=67 width=4 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=0 y=80 width=7 height=1 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=24 y=79 width=2 height=2 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=60 y=54 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=37 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=60 y=46 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=29 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=45 y=20 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=67 y=17 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=53 y=30 width=6 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=56 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=77 y=73 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=73 y=26 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=54 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=78 y=23 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=10 y=31 width=9 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=53 y=70 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=37 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=37 y=48 width=7 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=37 y=69 width=7 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=72 y=74 width=4 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=60 y=30 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=67 y=47 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=53 y=51 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=60 y=70 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=72 width=9 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=60 y=62 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=53 y=59 width=6 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=60 y=38 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=73 y=52 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=80 y=53 width=2 height=13 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=67 y=67 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=37 y=80 width=5 height=3 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=50 y=79 width=4 height=4 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=31 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=628 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-3 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-2 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-3 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-2 +kerning first=70 second=65 amount=-3 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-2 +kerning first=70 second=79 amount=-2 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-3 +kerning first=76 second=67 amount=-1 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-3 +kerning first=76 second=87 amount=-3 +kerning first=76 second=89 amount=-4 +kerning first=76 second=71 amount=-2 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-2 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-3 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-1 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=89 amount=-2 +kerning first=82 second=84 amount=-2 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-2 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-2 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-3 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-1 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-2 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-3 +kerning first=89 second=67 amount=-1 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-2 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-3 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-2 +kerning first=70 second=97 amount=-2 +kerning first=70 second=101 amount=-2 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-2 +kerning first=70 second=114 amount=-2 +kerning first=70 second=116 amount=-3 +kerning first=70 second=117 amount=-2 +kerning first=70 second=121 amount=-2 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-2 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-2 +kerning first=75 second=111 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-2 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=84 second=97 amount=-4 +kerning first=84 second=99 amount=-4 +kerning first=84 second=101 amount=-4 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-4 +kerning first=84 second=114 amount=-4 +kerning first=84 second=115 amount=-4 +kerning first=84 second=117 amount=-4 +kerning first=84 second=119 amount=-4 +kerning first=84 second=121 amount=-4 +kerning first=84 second=46 amount=-3 +kerning first=84 second=44 amount=-3 +kerning first=84 second=59 amount=-3 +kerning first=84 second=58 amount=-3 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-2 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-2 +kerning first=86 second=101 amount=-2 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=86 second=46 amount=-3 +kerning first=86 second=44 amount=-3 +kerning first=86 second=59 amount=-1 +kerning first=86 second=58 amount=-1 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-2 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=88 second=121 amount=-2 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-2 +kerning first=89 second=117 amount=-2 +kerning first=89 second=118 amount=-2 +kerning first=89 second=46 amount=-3 +kerning first=89 second=44 amount=-3 +kerning first=89 second=59 amount=-2 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=46 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=102 second=101 amount=-2 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=46 amount=-3 +kerning first=102 second=44 amount=-3 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=107 second=111 amount=-2 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-2 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-3 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-2 +kerning first=111 second=44 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-2 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-2 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-3 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-2 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-2 +kerning first=116 second=44 amount=-2 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-2 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-2 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=44 amount=-2 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-2 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-3 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-2 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-2 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-3 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-2 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=87 second=101 amount=-2 +kerning first=99 second=105 amount=-1 +kerning first=115 second=115 amount=-1 +kerning first=82 second=105 amount=-1 +kerning first=112 second=101 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=108 second=116 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=114 second=105 amount=-1 +kerning first=97 second=115 amount=-1 +kerning first=115 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=111 second=100 amount=-1 +kerning first=107 second=115 amount=-2 +kerning first=77 second=117 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=98 second=111 amount=-1 +kerning first=112 second=101 amount=-1 +kerning first=114 second=117 amount=-1 +kerning first=69 second=120 amount=-1 +kerning first=120 second=112 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font-export.png new file mode 100644 index 0000000..dbddfc5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font.png new file mode 100644 index 0000000..538ed2b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/list.9.png new file mode 100644 index 0000000..c0456ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/list.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/list.png new file mode 100644 index 0000000..636b9dc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/minus.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/minus.png new file mode 100644 index 0000000..ffd2b91 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/plus.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/plus.png new file mode 100644 index 0000000..9d140be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-circle-knob.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-circle-knob.png new file mode 100644 index 0000000..8b83fbf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-circle-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-circle.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-circle.png new file mode 100644 index 0000000..04ee369 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-circle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal-knob.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal-knob.png new file mode 100644 index 0000000..a2b1cb0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal.9.png new file mode 100644 index 0000000..504c731 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..da75aaf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical-knob.png new file mode 100644 index 0000000..18fb9c4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..18c4149 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical.png new file mode 100644 index 0000000..da75aaf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-over.png new file mode 100644 index 0000000..b0ba718 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-pressed-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-pressed-over.png new file mode 100644 index 0000000..7de40ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-pressed.png new file mode 100644 index 0000000..228ec48 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio.png new file mode 100644 index 0000000..e649931 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-horizontal-knob.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-horizontal-knob.png new file mode 100644 index 0000000..49c39c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-horizontal-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..03922c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-vertical-knob.png new file mode 100644 index 0000000..8f5033a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-vertical.png new file mode 100644 index 0000000..db3ccc8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-over.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-over.9.png new file mode 100644 index 0000000..0911825 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-over.png new file mode 100644 index 0000000..aeace26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-pressed.9.png new file mode 100644 index 0000000..118b4c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-pressed.png new file mode 100644 index 0000000..47f1572 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box.9.png new file mode 100644 index 0000000..d983325 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box.png new file mode 100644 index 0000000..c7df8e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/sky.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/sky.png new file mode 100644 index 0000000..8788cdf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/sky.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob-over.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob-over.png new file mode 100644 index 0000000..63a75ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob-pressed.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob-pressed.png new file mode 100644 index 0000000..de98a81 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob.png new file mode 100644 index 0000000..48444cd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider.9.png new file mode 100644 index 0000000..010c2f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider.png new file mode 100644 index 0000000..c159f08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/splitpane-horizontal.png new file mode 100644 index 0000000..3c86984 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/splitpane-vertical.png new file mode 100644 index 0000000..8045c8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield-selected.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield-selected.9.png new file mode 100644 index 0000000..a16e0ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield-selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield-selected.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield-selected.png new file mode 100644 index 0000000..8846ac5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield.9.png new file mode 100644 index 0000000..722bc6e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield.png new file mode 100644 index 0000000..98bb7f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/title.fnt b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/title.fnt new file mode 100644 index 0000000..5f2756c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/title.fnt @@ -0,0 +1,2817 @@ +info face=title size=32 bold=0 italic=0 charset= unicode= stretchH=100 smooth=1 aa=1 padding=2,2,2,2 spacing=0,0 outline=0 +common lineHeight=35 base=25 scaleW=308 scaleH=197 pages=1 packed=0 +page id=0 file="title.png" +chars count=97 +char id=33 x=2 y=2 width=3 height=23 xoffset=2 yoffset=2 xadvance=7 page=0 chnl=15 +char id=32 x=7 y=2 width=0 height=0 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=15 +char id=34 x=9 y=2 width=5 height=5 xoffset=2 yoffset=1 xadvance=9 page=0 chnl=15 +char id=35 x=16 y=2 width=16 height=14 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=15 +char id=36 x=34 y=2 width=14 height=27 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=15 +char id=37 x=2 y=27 width=15 height=23 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=38 x=50 y=2 width=17 height=23 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=15 +char id=39 x=7 y=9 width=2 height=5 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=15 +char id=40 x=19 y=18 width=4 height=26 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=41 x=25 y=18 width=4 height=26 xoffset=2 yoffset=1 xadvance=6 page=0 chnl=15 +char id=42 x=69 y=2 width=9 height=10 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=43 x=80 y=2 width=8 height=8 xoffset=2 yoffset=12 xadvance=12 page=0 chnl=15 +char id=44 x=7 y=16 width=4 height=6 xoffset=1 yoffset=22 xadvance=6 page=0 chnl=15 +char id=45 x=90 y=2 width=7 height=2 xoffset=1 yoffset=16 xadvance=9 page=0 chnl=15 +char id=46 x=11 y=9 width=2 height=2 xoffset=1 yoffset=23 xadvance=4 page=0 chnl=15 +char id=47 x=99 y=2 width=8 height=24 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=15 +char id=48 x=50 y=27 width=17 height=24 xoffset=1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=49 x=2 y=52 width=6 height=23 xoffset=6 yoffset=2 xadvance=17 page=0 chnl=15 +char id=50 x=10 y=52 width=14 height=23 xoffset=2 yoffset=2 xadvance=17 page=0 chnl=15 +char id=51 x=26 y=46 width=13 height=24 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=52 x=69 y=14 width=16 height=24 xoffset=1 yoffset=1 xadvance=17 page=0 chnl=15 +char id=53 x=109 y=2 width=16 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=54 x=127 y=2 width=16 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=55 x=145 y=2 width=17 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=56 x=164 y=2 width=14 height=24 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=57 x=180 y=2 width=16 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=58 x=31 y=31 width=2 height=12 xoffset=2 yoffset=13 xadvance=5 page=0 chnl=15 +char id=59 x=41 y=31 width=4 height=15 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=15 +char id=60 x=87 y=12 width=8 height=10 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=15 +char id=61 x=87 y=24 width=8 height=6 xoffset=1 yoffset=14 xadvance=9 page=0 chnl=15 +char id=62 x=198 y=2 width=8 height=10 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=15 +char id=63 x=208 y=2 width=13 height=24 xoffset=1 yoffset=1 xadvance=15 page=0 chnl=15 +char id=64 x=223 y=2 width=17 height=17 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=15 +char id=65 x=242 y=2 width=19 height=24 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=66 x=223 y=21 width=15 height=23 xoffset=2 yoffset=2 xadvance=18 page=0 chnl=15 +char id=67 x=69 y=40 width=20 height=24 xoffset=2 yoffset=1 xadvance=22 page=0 chnl=15 +char id=68 x=41 y=53 width=18 height=23 xoffset=2 yoffset=2 xadvance=22 page=0 chnl=15 +char id=69 x=2 y=77 width=11 height=23 xoffset=2 yoffset=2 xadvance=15 page=0 chnl=15 +char id=70 x=15 y=77 width=10 height=23 xoffset=2 yoffset=2 xadvance=14 page=0 chnl=15 +char id=71 x=91 y=32 width=24 height=24 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=15 +char id=72 x=117 y=28 width=16 height=23 xoffset=2 yoffset=2 xadvance=20 page=0 chnl=15 +char id=73 x=27 y=72 width=2 height=23 xoffset=2 yoffset=2 xadvance=6 page=0 chnl=15 +char id=74 x=31 y=72 width=8 height=23 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=75 x=135 y=28 width=14 height=23 xoffset=2 yoffset=2 xadvance=17 page=0 chnl=15 +char id=76 x=151 y=28 width=8 height=23 xoffset=2 yoffset=2 xadvance=11 page=0 chnl=15 +char id=77 x=161 y=28 width=28 height=24 xoffset=1 yoffset=1 xadvance=29 page=0 chnl=15 +char id=78 x=117 y=53 width=19 height=24 xoffset=2 yoffset=2 xadvance=23 page=0 chnl=15 +char id=79 x=41 y=78 width=24 height=24 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=15 +char id=80 x=2 y=102 width=12 height=23 xoffset=2 yoffset=2 xadvance=16 page=0 chnl=15 +char id=81 x=67 y=66 width=24 height=27 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=15 +char id=82 x=16 y=102 width=13 height=23 xoffset=2 yoffset=2 xadvance=15 page=0 chnl=15 +char id=83 x=93 y=58 width=14 height=24 xoffset=1 yoffset=2 xadvance=16 page=0 chnl=15 +char id=84 x=138 y=53 width=12 height=23 xoffset=1 yoffset=2 xadvance=14 page=0 chnl=15 +char id=85 x=191 y=28 width=14 height=23 xoffset=2 yoffset=2 xadvance=18 page=0 chnl=15 +char id=86 x=263 y=2 width=15 height=23 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=87 x=280 y=2 width=26 height=24 xoffset=1 yoffset=1 xadvance=28 page=0 chnl=15 +char id=88 x=263 y=27 width=15 height=23 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=89 x=207 y=46 width=15 height=23 xoffset=1 yoffset=2 xadvance=16 page=0 chnl=15 +char id=90 x=152 y=54 width=16 height=23 xoffset=1 yoffset=2 xadvance=18 page=0 chnl=15 +char id=91 x=31 y=97 width=4 height=26 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=15 +char id=92 x=138 y=78 width=8 height=23 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=93 x=67 y=95 width=4 height=26 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=15 +char id=94 x=207 y=28 width=9 height=9 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=15 +char id=95 x=207 y=39 width=12 height=2 xoffset=0 yoffset=30 xadvance=11 page=0 chnl=15 +char id=96 x=61 y=53 width=5 height=5 xoffset=3 yoffset=5 xadvance=11 page=0 chnl=15 +char id=97 x=37 y=104 width=14 height=14 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=98 x=37 y=120 width=14 height=24 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=99 x=2 y=127 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=15 +char id=100 x=2 y=143 width=14 height=24 xoffset=1 yoffset=1 xadvance=17 page=0 chnl=15 +char id=101 x=15 y=127 width=14 height=14 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=102 x=18 y=143 width=7 height=24 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=15 +char id=103 x=73 y=95 width=14 height=20 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=104 x=53 y=104 width=11 height=24 xoffset=2 yoffset=1 xadvance=15 page=0 chnl=15 +char id=105 x=27 y=143 width=2 height=18 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=15 +char id=106 x=31 y=125 width=2 height=24 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=15 +char id=107 x=89 y=95 width=11 height=24 xoffset=2 yoffset=1 xadvance=13 page=0 chnl=15 +char id=108 x=73 y=117 width=2 height=24 xoffset=2 yoffset=1 xadvance=6 page=0 chnl=15 +char id=109 x=53 y=130 width=17 height=14 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=15 +char id=110 x=102 y=84 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=15 +char id=111 x=102 y=100 width=14 height=14 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=112 x=118 y=79 width=14 height=20 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=15 +char id=113 x=118 y=101 width=14 height=20 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=114 x=77 y=121 width=7 height=14 xoffset=2 yoffset=11 xadvance=10 page=0 chnl=15 +char id=115 x=86 y=121 width=9 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=116 x=97 y=121 width=7 height=19 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15 +char id=117 x=77 y=137 width=10 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=15 +char id=118 x=31 y=151 width=13 height=14 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=119 x=46 y=146 width=21 height=14 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=15 +char id=120 x=170 y=54 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=15 +char id=121 x=170 y=70 width=13 height=20 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=122 x=183 y=54 width=12 height=14 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=123 x=69 y=146 width=6 height=26 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=15 +char id=124 x=2 y=169 width=1 height=26 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=15 +char id=125 x=5 y=169 width=6 height=26 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=15 +char id=126 x=102 y=116 width=12 height=3 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=15 +char id=8226 x=93 y=84 width=6 height=6 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=15 +char id=169 x=13 y=169 width=17 height=17 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=32 x=0 y=0 width=0 height=0 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15 +kernings count=2714 +kerning first=48 second=49 amount=-5 +kerning first=48 second=50 amount=-1 +kerning first=48 second=51 amount=-1 +kerning first=48 second=52 amount=-2 +kerning first=48 second=55 amount=-1 +kerning first=48 second=65 amount=-1 +kerning first=48 second=74 amount=-1 +kerning first=48 second=84 amount=-2 +kerning first=48 second=86 amount=-2 +kerning first=48 second=87 amount=-2 +kerning first=48 second=88 amount=-1 +kerning first=48 second=89 amount=-1 +kerning first=48 second=90 amount=-2 +kerning first=48 second=93 amount=-1 +kerning first=48 second=95 amount=-12 +kerning first=48 second=96 amount=-1 +kerning first=48 second=123 amount=3 +kerning first=49 second=48 amount=-3 +kerning first=49 second=49 amount=-9 +kerning first=49 second=50 amount=-6 +kerning first=49 second=51 amount=-6 +kerning first=49 second=52 amount=-5 +kerning first=49 second=53 amount=-5 +kerning first=49 second=54 amount=-4 +kerning first=49 second=55 amount=-4 +kerning first=49 second=56 amount=-5 +kerning first=49 second=57 amount=-4 +kerning first=49 second=65 amount=-4 +kerning first=49 second=66 amount=-5 +kerning first=49 second=67 amount=-4 +kerning first=49 second=68 amount=-5 +kerning first=49 second=69 amount=-5 +kerning first=49 second=70 amount=-5 +kerning first=49 second=71 amount=-4 +kerning first=49 second=72 amount=-5 +kerning first=49 second=73 amount=-5 +kerning first=49 second=74 amount=-4 +kerning first=49 second=75 amount=-5 +kerning first=49 second=76 amount=-5 +kerning first=49 second=77 amount=-4 +kerning first=49 second=78 amount=-5 +kerning first=49 second=79 amount=-4 +kerning first=49 second=80 amount=-5 +kerning first=49 second=81 amount=-5 +kerning first=49 second=82 amount=-5 +kerning first=49 second=83 amount=-5 +kerning first=49 second=84 amount=-5 +kerning first=49 second=85 amount=-5 +kerning first=49 second=86 amount=-4 +kerning first=49 second=87 amount=-4 +kerning first=49 second=88 amount=-4 +kerning first=49 second=89 amount=-4 +kerning first=49 second=90 amount=-5 +kerning first=49 second=91 amount=-4 +kerning first=49 second=92 amount=-4 +kerning first=49 second=93 amount=-7 +kerning first=49 second=94 amount=-4 +kerning first=49 second=95 amount=-12 +kerning first=49 second=96 amount=-6 +kerning first=49 second=97 amount=-4 +kerning first=49 second=98 amount=-4 +kerning first=49 second=99 amount=-4 +kerning first=49 second=100 amount=-5 +kerning first=49 second=101 amount=-4 +kerning first=49 second=102 amount=-4 +kerning first=49 second=103 amount=-4 +kerning first=49 second=104 amount=-5 +kerning first=49 second=105 amount=-5 +kerning first=49 second=106 amount=-5 +kerning first=49 second=107 amount=-5 +kerning first=49 second=108 amount=-5 +kerning first=49 second=109 amount=-5 +kerning first=49 second=110 amount=-5 +kerning first=49 second=111 amount=-4 +kerning first=49 second=112 amount=-5 +kerning first=49 second=113 amount=-4 +kerning first=49 second=114 amount=-5 +kerning first=49 second=115 amount=-4 +kerning first=49 second=116 amount=-4 +kerning first=49 second=117 amount=-4 +kerning first=49 second=118 amount=-4 +kerning first=49 second=119 amount=-4 +kerning first=49 second=120 amount=-3 +kerning first=49 second=121 amount=-4 +kerning first=49 second=122 amount=-5 +kerning first=49 second=123 amount=-3 +kerning first=49 second=124 amount=-4 +kerning first=49 second=125 amount=-4 +kerning first=49 second=126 amount=-4 +kerning first=50 second=49 amount=-6 +kerning first=50 second=50 amount=-1 +kerning first=50 second=51 amount=-2 +kerning first=50 second=52 amount=-6 +kerning first=50 second=53 amount=-2 +kerning first=50 second=54 amount=-1 +kerning first=50 second=55 amount=-1 +kerning first=50 second=56 amount=-1 +kerning first=50 second=66 amount=-2 +kerning first=50 second=67 amount=-2 +kerning first=50 second=68 amount=-2 +kerning first=50 second=69 amount=-2 +kerning first=50 second=70 amount=-2 +kerning first=50 second=71 amount=-2 +kerning first=50 second=72 amount=-2 +kerning first=50 second=73 amount=-2 +kerning first=50 second=74 amount=-2 +kerning first=50 second=75 amount=-2 +kerning first=50 second=76 amount=-2 +kerning first=50 second=78 amount=-2 +kerning first=50 second=79 amount=-2 +kerning first=50 second=80 amount=-2 +kerning first=50 second=81 amount=-1 +kerning first=50 second=82 amount=-2 +kerning first=50 second=83 amount=-1 +kerning first=50 second=84 amount=-2 +kerning first=50 second=85 amount=-2 +kerning first=50 second=86 amount=-1 +kerning first=50 second=87 amount=-1 +kerning first=50 second=89 amount=-2 +kerning first=50 second=90 amount=-2 +kerning first=50 second=92 amount=-2 +kerning first=50 second=93 amount=-2 +kerning first=50 second=94 amount=-2 +kerning first=50 second=95 amount=-13 +kerning first=50 second=96 amount=-1 +kerning first=50 second=97 amount=-2 +kerning first=50 second=99 amount=-2 +kerning first=50 second=100 amount=-2 +kerning first=50 second=101 amount=-1 +kerning first=50 second=102 amount=-2 +kerning first=50 second=103 amount=-2 +kerning first=50 second=104 amount=-2 +kerning first=50 second=105 amount=-2 +kerning first=50 second=106 amount=-2 +kerning first=50 second=107 amount=-2 +kerning first=50 second=108 amount=-2 +kerning first=50 second=109 amount=-2 +kerning first=50 second=110 amount=-2 +kerning first=50 second=111 amount=-2 +kerning first=50 second=112 amount=-2 +kerning first=50 second=113 amount=-1 +kerning first=50 second=114 amount=-2 +kerning first=50 second=115 amount=-2 +kerning first=50 second=116 amount=-1 +kerning first=50 second=117 amount=-1 +kerning first=50 second=118 amount=-2 +kerning first=50 second=119 amount=-2 +kerning first=50 second=121 amount=-2 +kerning first=50 second=122 amount=-2 +kerning first=50 second=125 amount=-1 +kerning first=50 second=126 amount=-1 +kerning first=51 second=49 amount=-6 +kerning first=51 second=50 amount=-2 +kerning first=51 second=51 amount=-2 +kerning first=51 second=52 amount=-1 +kerning first=51 second=53 amount=-2 +kerning first=51 second=55 amount=-2 +kerning first=51 second=56 amount=-1 +kerning first=51 second=57 amount=-2 +kerning first=51 second=65 amount=-1 +kerning first=51 second=66 amount=-1 +kerning first=51 second=67 amount=-1 +kerning first=51 second=68 amount=-1 +kerning first=51 second=69 amount=-2 +kerning first=51 second=70 amount=-1 +kerning first=51 second=71 amount=-1 +kerning first=51 second=72 amount=-1 +kerning first=51 second=73 amount=-1 +kerning first=51 second=74 amount=-1 +kerning first=51 second=75 amount=-2 +kerning first=51 second=76 amount=-1 +kerning first=51 second=77 amount=-2 +kerning first=51 second=78 amount=-1 +kerning first=51 second=79 amount=-1 +kerning first=51 second=80 amount=-1 +kerning first=51 second=81 amount=-1 +kerning first=51 second=82 amount=-1 +kerning first=51 second=83 amount=-2 +kerning first=51 second=84 amount=-2 +kerning first=51 second=85 amount=-1 +kerning first=51 second=86 amount=-1 +kerning first=51 second=87 amount=-1 +kerning first=51 second=88 amount=-2 +kerning first=51 second=89 amount=-2 +kerning first=51 second=90 amount=-2 +kerning first=51 second=91 amount=-2 +kerning first=51 second=92 amount=-1 +kerning first=51 second=93 amount=-2 +kerning first=51 second=94 amount=-1 +kerning first=51 second=95 amount=-14 +kerning first=51 second=96 amount=-2 +kerning first=51 second=98 amount=-1 +kerning first=51 second=99 amount=-1 +kerning first=51 second=100 amount=-1 +kerning first=51 second=102 amount=-1 +kerning first=51 second=104 amount=-1 +kerning first=51 second=105 amount=-2 +kerning first=51 second=106 amount=-2 +kerning first=51 second=107 amount=-2 +kerning first=51 second=108 amount=-1 +kerning first=51 second=109 amount=-2 +kerning first=51 second=110 amount=-2 +kerning first=51 second=112 amount=-2 +kerning first=51 second=114 amount=-2 +kerning first=51 second=115 amount=-2 +kerning first=51 second=116 amount=-1 +kerning first=51 second=117 amount=-2 +kerning first=51 second=118 amount=-1 +kerning first=51 second=119 amount=-1 +kerning first=51 second=120 amount=-1 +kerning first=51 second=121 amount=-1 +kerning first=51 second=122 amount=-2 +kerning first=51 second=125 amount=-2 +kerning first=51 second=126 amount=-1 +kerning first=52 second=49 amount=-5 +kerning first=52 second=50 amount=-2 +kerning first=52 second=51 amount=-2 +kerning first=52 second=55 amount=-2 +kerning first=52 second=57 amount=-2 +kerning first=52 second=65 amount=-2 +kerning first=52 second=74 amount=-2 +kerning first=52 second=84 amount=-1 +kerning first=52 second=86 amount=-2 +kerning first=52 second=87 amount=-2 +kerning first=52 second=88 amount=-2 +kerning first=52 second=89 amount=-2 +kerning first=52 second=90 amount=-1 +kerning first=52 second=93 amount=-1 +kerning first=52 second=94 amount=-2 +kerning first=52 second=95 amount=-12 +kerning first=52 second=96 amount=-2 +kerning first=52 second=102 amount=-2 +kerning first=52 second=119 amount=-2 +kerning first=52 second=121 amount=-1 +kerning first=52 second=122 amount=-1 +kerning first=53 second=49 amount=-5 +kerning first=53 second=50 amount=-3 +kerning first=53 second=51 amount=-1 +kerning first=53 second=52 amount=-1 +kerning first=53 second=53 amount=-2 +kerning first=53 second=55 amount=-1 +kerning first=53 second=57 amount=-2 +kerning first=53 second=65 amount=-1 +kerning first=53 second=74 amount=-1 +kerning first=53 second=77 amount=-2 +kerning first=53 second=84 amount=-1 +kerning first=53 second=86 amount=-1 +kerning first=53 second=87 amount=-2 +kerning first=53 second=88 amount=-1 +kerning first=53 second=89 amount=-1 +kerning first=53 second=90 amount=-2 +kerning first=53 second=92 amount=-2 +kerning first=53 second=93 amount=-2 +kerning first=53 second=94 amount=-2 +kerning first=53 second=95 amount=-13 +kerning first=53 second=96 amount=-8 +kerning first=53 second=122 amount=-2 +kerning first=54 second=49 amount=-7 +kerning first=54 second=50 amount=-3 +kerning first=54 second=51 amount=-1 +kerning first=54 second=52 amount=-2 +kerning first=54 second=55 amount=-1 +kerning first=54 second=57 amount=-2 +kerning first=54 second=65 amount=-1 +kerning first=54 second=74 amount=-1 +kerning first=54 second=84 amount=-4 +kerning first=54 second=86 amount=-3 +kerning first=54 second=87 amount=-3 +kerning first=54 second=88 amount=-1 +kerning first=54 second=89 amount=-5 +kerning first=54 second=90 amount=-2 +kerning first=54 second=92 amount=-2 +kerning first=54 second=93 amount=-2 +kerning first=54 second=94 amount=-1 +kerning first=54 second=95 amount=-13 +kerning first=54 second=96 amount=-9 +kerning first=54 second=122 amount=-2 +kerning first=54 second=125 amount=-2 +kerning first=55 second=48 amount=-1 +kerning first=55 second=49 amount=-4 +kerning first=55 second=50 amount=-3 +kerning first=55 second=51 amount=-3 +kerning first=55 second=52 amount=-10 +kerning first=55 second=53 amount=-4 +kerning first=55 second=54 amount=-4 +kerning first=55 second=56 amount=-2 +kerning first=55 second=57 amount=-2 +kerning first=55 second=65 amount=-6 +kerning first=55 second=66 amount=-1 +kerning first=55 second=67 amount=-3 +kerning first=55 second=68 amount=-1 +kerning first=55 second=70 amount=-1 +kerning first=55 second=71 amount=-3 +kerning first=55 second=72 amount=-1 +kerning first=55 second=73 amount=-1 +kerning first=55 second=74 amount=-4 +kerning first=55 second=76 amount=-1 +kerning first=55 second=77 amount=-4 +kerning first=55 second=78 amount=-2 +kerning first=55 second=79 amount=-3 +kerning first=55 second=80 amount=-1 +kerning first=55 second=81 amount=-4 +kerning first=55 second=82 amount=-1 +kerning first=55 second=83 amount=-2 +kerning first=55 second=85 amount=-2 +kerning first=55 second=90 amount=-1 +kerning first=55 second=93 amount=-2 +kerning first=55 second=94 amount=-2 +kerning first=55 second=95 amount=-12 +kerning first=55 second=96 amount=-2 +kerning first=55 second=97 amount=-7 +kerning first=55 second=99 amount=-7 +kerning first=55 second=100 amount=-7 +kerning first=55 second=101 amount=-7 +kerning first=55 second=102 amount=-1 +kerning first=55 second=103 amount=-7 +kerning first=55 second=104 amount=-1 +kerning first=55 second=105 amount=-3 +kerning first=55 second=106 amount=-3 +kerning first=55 second=108 amount=-1 +kerning first=55 second=109 amount=-5 +kerning first=55 second=110 amount=-5 +kerning first=55 second=111 amount=-7 +kerning first=55 second=112 amount=-5 +kerning first=55 second=113 amount=-7 +kerning first=55 second=114 amount=-5 +kerning first=55 second=115 amount=-6 +kerning first=55 second=116 amount=-2 +kerning first=55 second=117 amount=-5 +kerning first=55 second=118 amount=-5 +kerning first=55 second=119 amount=-5 +kerning first=55 second=120 amount=-4 +kerning first=55 second=121 amount=-5 +kerning first=55 second=122 amount=-6 +kerning first=55 second=126 amount=-5 +kerning first=56 second=49 amount=-6 +kerning first=56 second=50 amount=-2 +kerning first=56 second=51 amount=-2 +kerning first=56 second=52 amount=-1 +kerning first=56 second=53 amount=-2 +kerning first=56 second=55 amount=-2 +kerning first=56 second=56 amount=-2 +kerning first=56 second=57 amount=-2 +kerning first=56 second=65 amount=-1 +kerning first=56 second=66 amount=-2 +kerning first=56 second=67 amount=-2 +kerning first=56 second=68 amount=-2 +kerning first=56 second=69 amount=-2 +kerning first=56 second=70 amount=-2 +kerning first=56 second=71 amount=-2 +kerning first=56 second=72 amount=-2 +kerning first=56 second=73 amount=-2 +kerning first=56 second=74 amount=-1 +kerning first=56 second=75 amount=-2 +kerning first=56 second=76 amount=-2 +kerning first=56 second=77 amount=-2 +kerning first=56 second=78 amount=-2 +kerning first=56 second=79 amount=-2 +kerning first=56 second=80 amount=-2 +kerning first=56 second=81 amount=-1 +kerning first=56 second=82 amount=-2 +kerning first=56 second=83 amount=-2 +kerning first=56 second=84 amount=-2 +kerning first=56 second=85 amount=-2 +kerning first=56 second=86 amount=-2 +kerning first=56 second=87 amount=-2 +kerning first=56 second=88 amount=-1 +kerning first=56 second=89 amount=-2 +kerning first=56 second=90 amount=-2 +kerning first=56 second=92 amount=-1 +kerning first=56 second=93 amount=-2 +kerning first=56 second=94 amount=-2 +kerning first=56 second=95 amount=-14 +kerning first=56 second=96 amount=-2 +kerning first=56 second=100 amount=-2 +kerning first=56 second=102 amount=-1 +kerning first=56 second=104 amount=-2 +kerning first=56 second=105 amount=-2 +kerning first=56 second=106 amount=-2 +kerning first=56 second=107 amount=-2 +kerning first=56 second=108 amount=-2 +kerning first=56 second=109 amount=-2 +kerning first=56 second=110 amount=-2 +kerning first=56 second=112 amount=-1 +kerning first=56 second=114 amount=-2 +kerning first=56 second=116 amount=-1 +kerning first=56 second=117 amount=-1 +kerning first=56 second=118 amount=-1 +kerning first=56 second=119 amount=-1 +kerning first=56 second=120 amount=-1 +kerning first=56 second=121 amount=-1 +kerning first=56 second=122 amount=-2 +kerning first=56 second=125 amount=-1 +kerning first=56 second=126 amount=-1 +kerning first=57 second=49 amount=-6 +kerning first=57 second=50 amount=-1 +kerning first=57 second=51 amount=-1 +kerning first=57 second=52 amount=-3 +kerning first=57 second=53 amount=-2 +kerning first=57 second=55 amount=-2 +kerning first=57 second=56 amount=-2 +kerning first=57 second=65 amount=-3 +kerning first=57 second=74 amount=-4 +kerning first=57 second=77 amount=-1 +kerning first=57 second=83 amount=-2 +kerning first=57 second=84 amount=-2 +kerning first=57 second=86 amount=-2 +kerning first=57 second=87 amount=-2 +kerning first=57 second=88 amount=-1 +kerning first=57 second=89 amount=-1 +kerning first=57 second=90 amount=-2 +kerning first=57 second=93 amount=-1 +kerning first=57 second=95 amount=-13 +kerning first=57 second=96 amount=-2 +kerning first=57 second=97 amount=-1 +kerning first=57 second=99 amount=-2 +kerning first=57 second=100 amount=-1 +kerning first=57 second=103 amount=-1 +kerning first=57 second=111 amount=-1 +kerning first=57 second=125 amount=-2 +kerning first=65 second=48 amount=-1 +kerning first=65 second=49 amount=-7 +kerning first=65 second=50 amount=-1 +kerning first=65 second=51 amount=-2 +kerning first=65 second=52 amount=-2 +kerning first=65 second=53 amount=-1 +kerning first=65 second=54 amount=-2 +kerning first=65 second=56 amount=-1 +kerning first=65 second=57 amount=-3 +kerning first=65 second=66 amount=-1 +kerning first=65 second=67 amount=-2 +kerning first=65 second=68 amount=-1 +kerning first=65 second=70 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=72 amount=-1 +kerning first=65 second=73 amount=-2 +kerning first=65 second=74 amount=-2 +kerning first=65 second=76 amount=-1 +kerning first=65 second=78 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=80 amount=-1 +kerning first=65 second=81 amount=-3 +kerning first=65 second=82 amount=-1 +kerning first=65 second=83 amount=-1 +kerning first=65 second=84 amount=-4 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-5 +kerning first=65 second=87 amount=-5 +kerning first=65 second=89 amount=-5 +kerning first=65 second=90 amount=-1 +kerning first=65 second=92 amount=-4 +kerning first=65 second=93 amount=-2 +kerning first=65 second=94 amount=-3 +kerning first=65 second=95 amount=-13 +kerning first=65 second=96 amount=-7 +kerning first=65 second=97 amount=-1 +kerning first=65 second=99 amount=-2 +kerning first=65 second=100 amount=-2 +kerning first=65 second=102 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=65 second=104 amount=-1 +kerning first=65 second=108 amount=-2 +kerning first=65 second=111 amount=-1 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-3 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-3 +kerning first=65 second=125 amount=-2 +kerning first=65 second=126 amount=-2 +kerning first=66 second=49 amount=-7 +kerning first=66 second=50 amount=-3 +kerning first=66 second=51 amount=-1 +kerning first=66 second=52 amount=-2 +kerning first=66 second=55 amount=-1 +kerning first=66 second=57 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=66 second=84 amount=-3 +kerning first=66 second=86 amount=-3 +kerning first=66 second=87 amount=-2 +kerning first=66 second=88 amount=-1 +kerning first=66 second=89 amount=-3 +kerning first=66 second=90 amount=-2 +kerning first=66 second=92 amount=-2 +kerning first=66 second=93 amount=-2 +kerning first=66 second=94 amount=-2 +kerning first=66 second=95 amount=-13 +kerning first=66 second=96 amount=-3 +kerning first=66 second=102 amount=-2 +kerning first=66 second=116 amount=-1 +kerning first=66 second=118 amount=-2 +kerning first=66 second=119 amount=-2 +kerning first=66 second=120 amount=-2 +kerning first=66 second=121 amount=-2 +kerning first=66 second=122 amount=-2 +kerning first=66 second=125 amount=-1 +kerning first=67 second=48 amount=-1 +kerning first=67 second=49 amount=-6 +kerning first=67 second=50 amount=-3 +kerning first=67 second=51 amount=-3 +kerning first=67 second=52 amount=-10 +kerning first=67 second=53 amount=-2 +kerning first=67 second=54 amount=-1 +kerning first=67 second=55 amount=-2 +kerning first=67 second=56 amount=-2 +kerning first=67 second=57 amount=-2 +kerning first=67 second=65 amount=-2 +kerning first=67 second=66 amount=-2 +kerning first=67 second=67 amount=-3 +kerning first=67 second=68 amount=-2 +kerning first=67 second=69 amount=-1 +kerning first=67 second=70 amount=-2 +kerning first=67 second=71 amount=-3 +kerning first=67 second=72 amount=-2 +kerning first=67 second=73 amount=-2 +kerning first=67 second=74 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=67 second=76 amount=-2 +kerning first=67 second=77 amount=-1 +kerning first=67 second=78 amount=-2 +kerning first=67 second=79 amount=-3 +kerning first=67 second=80 amount=-2 +kerning first=67 second=81 amount=-1 +kerning first=67 second=82 amount=-2 +kerning first=67 second=83 amount=-2 +kerning first=67 second=84 amount=-2 +kerning first=67 second=85 amount=-2 +kerning first=67 second=86 amount=-2 +kerning first=67 second=87 amount=-1 +kerning first=67 second=88 amount=-2 +kerning first=67 second=89 amount=-2 +kerning first=67 second=90 amount=-3 +kerning first=67 second=91 amount=-1 +kerning first=67 second=92 amount=-1 +kerning first=67 second=93 amount=-3 +kerning first=67 second=94 amount=-3 +kerning first=67 second=95 amount=-13 +kerning first=67 second=96 amount=-2 +kerning first=67 second=97 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=67 second=100 amount=-2 +kerning first=67 second=101 amount=-1 +kerning first=67 second=102 amount=-2 +kerning first=67 second=103 amount=-1 +kerning first=67 second=104 amount=-2 +kerning first=67 second=105 amount=-2 +kerning first=67 second=106 amount=-2 +kerning first=67 second=107 amount=-1 +kerning first=67 second=108 amount=-2 +kerning first=67 second=109 amount=-2 +kerning first=67 second=110 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=67 second=112 amount=-1 +kerning first=67 second=113 amount=-1 +kerning first=67 second=114 amount=-2 +kerning first=67 second=115 amount=-1 +kerning first=67 second=116 amount=-2 +kerning first=67 second=117 amount=-1 +kerning first=67 second=118 amount=-4 +kerning first=67 second=119 amount=-4 +kerning first=67 second=120 amount=-1 +kerning first=67 second=121 amount=-4 +kerning first=67 second=122 amount=-3 +kerning first=67 second=123 amount=-1 +kerning first=67 second=124 amount=-1 +kerning first=67 second=125 amount=-2 +kerning first=67 second=126 amount=-17 +kerning first=68 second=49 amount=-7 +kerning first=68 second=50 amount=-3 +kerning first=68 second=51 amount=-3 +kerning first=68 second=52 amount=-2 +kerning first=68 second=53 amount=-1 +kerning first=68 second=55 amount=-3 +kerning first=68 second=56 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=68 second=66 amount=-2 +kerning first=68 second=68 amount=-2 +kerning first=68 second=69 amount=-2 +kerning first=68 second=70 amount=-2 +kerning first=68 second=72 amount=-2 +kerning first=68 second=73 amount=-2 +kerning first=68 second=74 amount=-3 +kerning first=68 second=76 amount=-2 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-2 +kerning first=68 second=80 amount=-2 +kerning first=68 second=82 amount=-2 +kerning first=68 second=83 amount=-1 +kerning first=68 second=84 amount=-4 +kerning first=68 second=85 amount=-2 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-2 +kerning first=68 second=88 amount=-3 +kerning first=68 second=89 amount=-3 +kerning first=68 second=90 amount=-4 +kerning first=68 second=92 amount=-1 +kerning first=68 second=93 amount=-2 +kerning first=68 second=95 amount=-14 +kerning first=68 second=96 amount=-3 +kerning first=68 second=100 amount=-1 +kerning first=68 second=104 amount=-2 +kerning first=68 second=105 amount=-2 +kerning first=68 second=106 amount=-2 +kerning first=68 second=107 amount=-1 +kerning first=68 second=108 amount=-2 +kerning first=68 second=122 amount=-2 +kerning first=68 second=125 amount=-1 +kerning first=69 second=49 amount=-5 +kerning first=69 second=50 amount=-2 +kerning first=69 second=51 amount=-4 +kerning first=69 second=52 amount=-6 +kerning first=69 second=53 amount=-3 +kerning first=69 second=54 amount=-1 +kerning first=69 second=55 amount=-1 +kerning first=69 second=56 amount=-3 +kerning first=69 second=57 amount=-1 +kerning first=69 second=65 amount=-1 +kerning first=69 second=66 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=68 amount=-2 +kerning first=69 second=69 amount=-1 +kerning first=69 second=70 amount=-2 +kerning first=69 second=71 amount=-1 +kerning first=69 second=72 amount=-2 +kerning first=69 second=73 amount=-2 +kerning first=69 second=74 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=69 second=76 amount=-2 +kerning first=69 second=77 amount=-2 +kerning first=69 second=78 amount=-2 +kerning first=69 second=79 amount=-1 +kerning first=69 second=80 amount=-2 +kerning first=69 second=81 amount=-1 +kerning first=69 second=82 amount=-2 +kerning first=69 second=83 amount=-3 +kerning first=69 second=84 amount=-2 +kerning first=69 second=85 amount=-2 +kerning first=69 second=86 amount=-1 +kerning first=69 second=87 amount=-1 +kerning first=69 second=88 amount=-1 +kerning first=69 second=89 amount=-1 +kerning first=69 second=90 amount=-2 +kerning first=69 second=91 amount=-1 +kerning first=69 second=92 amount=-2 +kerning first=69 second=93 amount=-3 +kerning first=69 second=94 amount=-1 +kerning first=69 second=95 amount=-13 +kerning first=69 second=96 amount=-11 +kerning first=69 second=97 amount=-2 +kerning first=69 second=98 amount=-1 +kerning first=69 second=99 amount=-2 +kerning first=69 second=100 amount=-3 +kerning first=69 second=101 amount=-2 +kerning first=69 second=102 amount=-1 +kerning first=69 second=103 amount=-2 +kerning first=69 second=104 amount=-2 +kerning first=69 second=105 amount=-2 +kerning first=69 second=106 amount=-2 +kerning first=69 second=107 amount=-1 +kerning first=69 second=108 amount=-2 +kerning first=69 second=109 amount=-1 +kerning first=69 second=110 amount=-1 +kerning first=69 second=111 amount=-2 +kerning first=69 second=112 amount=-1 +kerning first=69 second=113 amount=-2 +kerning first=69 second=114 amount=-1 +kerning first=69 second=115 amount=-1 +kerning first=69 second=116 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-2 +kerning first=69 second=119 amount=-2 +kerning first=69 second=121 amount=-2 +kerning first=69 second=122 amount=-1 +kerning first=69 second=124 amount=-1 +kerning first=69 second=125 amount=-2 +kerning first=69 second=126 amount=-2 +kerning first=70 second=49 amount=-5 +kerning first=70 second=50 amount=-4 +kerning first=70 second=51 amount=-4 +kerning first=70 second=52 amount=-6 +kerning first=70 second=53 amount=-5 +kerning first=70 second=54 amount=-1 +kerning first=70 second=55 amount=-1 +kerning first=70 second=56 amount=-3 +kerning first=70 second=57 amount=-2 +kerning first=70 second=65 amount=-4 +kerning first=70 second=66 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=70 second=68 amount=-1 +kerning first=70 second=69 amount=-1 +kerning first=70 second=70 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=72 amount=-1 +kerning first=70 second=73 amount=-1 +kerning first=70 second=74 amount=-5 +kerning first=70 second=75 amount=-1 +kerning first=70 second=76 amount=-1 +kerning first=70 second=77 amount=-2 +kerning first=70 second=78 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=80 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=70 second=82 amount=-1 +kerning first=70 second=83 amount=-3 +kerning first=70 second=84 amount=-1 +kerning first=70 second=85 amount=-1 +kerning first=70 second=86 amount=-2 +kerning first=70 second=87 amount=-2 +kerning first=70 second=88 amount=-1 +kerning first=70 second=89 amount=-1 +kerning first=70 second=90 amount=-2 +kerning first=70 second=91 amount=-2 +kerning first=70 second=92 amount=-2 +kerning first=70 second=93 amount=-3 +kerning first=70 second=94 amount=-2 +kerning first=70 second=95 amount=-11 +kerning first=70 second=96 amount=-9 +kerning first=70 second=97 amount=-2 +kerning first=70 second=98 amount=-2 +kerning first=70 second=99 amount=-2 +kerning first=70 second=100 amount=-3 +kerning first=70 second=101 amount=-2 +kerning first=70 second=102 amount=-2 +kerning first=70 second=103 amount=-2 +kerning first=70 second=104 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=106 amount=-1 +kerning first=70 second=107 amount=-1 +kerning first=70 second=108 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=70 second=110 amount=-1 +kerning first=70 second=111 amount=-2 +kerning first=70 second=112 amount=-1 +kerning first=70 second=113 amount=-2 +kerning first=70 second=114 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=70 second=116 amount=-2 +kerning first=70 second=117 amount=-1 +kerning first=70 second=118 amount=-2 +kerning first=70 second=119 amount=-2 +kerning first=70 second=121 amount=-2 +kerning first=70 second=122 amount=-1 +kerning first=70 second=124 amount=-2 +kerning first=71 second=49 amount=-8 +kerning first=71 second=50 amount=-4 +kerning first=71 second=51 amount=-3 +kerning first=71 second=52 amount=-3 +kerning first=71 second=53 amount=-2 +kerning first=71 second=55 amount=-4 +kerning first=71 second=56 amount=-1 +kerning first=71 second=57 amount=-1 +kerning first=71 second=65 amount=-3 +kerning first=71 second=66 amount=-1 +kerning first=71 second=67 amount=-2 +kerning first=71 second=68 amount=-1 +kerning first=71 second=69 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=71 second=71 amount=-2 +kerning first=71 second=72 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=71 second=74 amount=-4 +kerning first=71 second=75 amount=-2 +kerning first=71 second=76 amount=-1 +kerning first=71 second=77 amount=-2 +kerning first=71 second=78 amount=-1 +kerning first=71 second=79 amount=-2 +kerning first=71 second=80 amount=-1 +kerning first=71 second=81 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=83 amount=-2 +kerning first=71 second=84 amount=-5 +kerning first=71 second=85 amount=-1 +kerning first=71 second=86 amount=-3 +kerning first=71 second=87 amount=-3 +kerning first=71 second=88 amount=-4 +kerning first=71 second=89 amount=-4 +kerning first=71 second=90 amount=-4 +kerning first=71 second=91 amount=-2 +kerning first=71 second=92 amount=-2 +kerning first=71 second=93 amount=-3 +kerning first=71 second=94 amount=-5 +kerning first=71 second=95 amount=-13 +kerning first=71 second=96 amount=-4 +kerning first=71 second=98 amount=-2 +kerning first=71 second=100 amount=-1 +kerning first=71 second=102 amount=-2 +kerning first=71 second=104 amount=-1 +kerning first=71 second=105 amount=-1 +kerning first=71 second=106 amount=-1 +kerning first=71 second=107 amount=-2 +kerning first=71 second=108 amount=-1 +kerning first=71 second=109 amount=-1 +kerning first=71 second=110 amount=-1 +kerning first=71 second=114 amount=-1 +kerning first=71 second=115 amount=-1 +kerning first=71 second=116 amount=-1 +kerning first=71 second=119 amount=-2 +kerning first=71 second=121 amount=-1 +kerning first=71 second=122 amount=-4 +kerning first=71 second=124 amount=-2 +kerning first=71 second=125 amount=-2 +kerning first=71 second=126 amount=-2 +kerning first=72 second=49 amount=-4 +kerning first=72 second=50 amount=-1 +kerning first=72 second=51 amount=-1 +kerning first=72 second=52 amount=-1 +kerning first=72 second=53 amount=-2 +kerning first=72 second=56 amount=-2 +kerning first=72 second=66 amount=-2 +kerning first=72 second=68 amount=-2 +kerning first=72 second=69 amount=-2 +kerning first=72 second=70 amount=-2 +kerning first=72 second=72 amount=-2 +kerning first=72 second=73 amount=-2 +kerning first=72 second=76 amount=-2 +kerning first=72 second=78 amount=-2 +kerning first=72 second=80 amount=-2 +kerning first=72 second=82 amount=-2 +kerning first=72 second=84 amount=-2 +kerning first=72 second=85 amount=-2 +kerning first=72 second=90 amount=-2 +kerning first=72 second=93 amount=-2 +kerning first=72 second=95 amount=-14 +kerning first=72 second=96 amount=-1 +kerning first=72 second=100 amount=-2 +kerning first=72 second=104 amount=-2 +kerning first=72 second=108 amount=-2 +kerning first=72 second=122 amount=-1 +kerning first=73 second=49 amount=-4 +kerning first=73 second=50 amount=-1 +kerning first=73 second=51 amount=-2 +kerning first=73 second=52 amount=-1 +kerning first=73 second=53 amount=-2 +kerning first=73 second=55 amount=-2 +kerning first=73 second=56 amount=-2 +kerning first=73 second=66 amount=-2 +kerning first=73 second=67 amount=-2 +kerning first=73 second=68 amount=-2 +kerning first=73 second=69 amount=-2 +kerning first=73 second=70 amount=-2 +kerning first=73 second=71 amount=-2 +kerning first=73 second=72 amount=-2 +kerning first=73 second=73 amount=-2 +kerning first=73 second=74 amount=-2 +kerning first=73 second=75 amount=-2 +kerning first=73 second=76 amount=-2 +kerning first=73 second=78 amount=-2 +kerning first=73 second=79 amount=-2 +kerning first=73 second=80 amount=-2 +kerning first=73 second=81 amount=-2 +kerning first=73 second=82 amount=-2 +kerning first=73 second=83 amount=-2 +kerning first=73 second=84 amount=-2 +kerning first=73 second=85 amount=-1 +kerning first=73 second=86 amount=-1 +kerning first=73 second=89 amount=-2 +kerning first=73 second=90 amount=-2 +kerning first=73 second=91 amount=-1 +kerning first=73 second=93 amount=-6 +kerning first=73 second=95 amount=-4 +kerning first=73 second=96 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=104 amount=-2 +kerning first=73 second=105 amount=-2 +kerning first=73 second=106 amount=-2 +kerning first=73 second=107 amount=-2 +kerning first=73 second=108 amount=-2 +kerning first=73 second=109 amount=-2 +kerning first=73 second=110 amount=-2 +kerning first=73 second=112 amount=-2 +kerning first=73 second=114 amount=-2 +kerning first=73 second=117 amount=-2 +kerning first=73 second=122 amount=-2 +kerning first=74 second=49 amount=-4 +kerning first=74 second=50 amount=-1 +kerning first=74 second=51 amount=-1 +kerning first=74 second=52 amount=-2 +kerning first=74 second=56 amount=-1 +kerning first=74 second=65 amount=-2 +kerning first=74 second=66 amount=-2 +kerning first=74 second=68 amount=-2 +kerning first=74 second=70 amount=-2 +kerning first=74 second=72 amount=-2 +kerning first=74 second=73 amount=-2 +kerning first=74 second=76 amount=-2 +kerning first=74 second=78 amount=-2 +kerning first=74 second=80 amount=-2 +kerning first=74 second=82 amount=-2 +kerning first=74 second=84 amount=-2 +kerning first=74 second=85 amount=-2 +kerning first=74 second=90 amount=-1 +kerning first=74 second=93 amount=-2 +kerning first=74 second=95 amount=-9 +kerning first=74 second=96 amount=-1 +kerning first=74 second=100 amount=-2 +kerning first=74 second=104 amount=-2 +kerning first=74 second=108 amount=-2 +kerning first=74 second=122 amount=-2 +kerning first=75 second=48 amount=-2 +kerning first=75 second=49 amount=-5 +kerning first=75 second=50 amount=-2 +kerning first=75 second=51 amount=-3 +kerning first=75 second=52 amount=-3 +kerning first=75 second=53 amount=-2 +kerning first=75 second=54 amount=-1 +kerning first=75 second=56 amount=-2 +kerning first=75 second=57 amount=-3 +kerning first=75 second=67 amount=-4 +kerning first=75 second=71 amount=-4 +kerning first=75 second=74 amount=-2 +kerning first=75 second=79 amount=-4 +kerning first=75 second=81 amount=-4 +kerning first=75 second=83 amount=-2 +kerning first=75 second=84 amount=-2 +kerning first=75 second=85 amount=-2 +kerning first=75 second=89 amount=-1 +kerning first=75 second=93 amount=-1 +kerning first=75 second=94 amount=-4 +kerning first=75 second=95 amount=-12 +kerning first=75 second=96 amount=-4 +kerning first=75 second=97 amount=-1 +kerning first=75 second=99 amount=-2 +kerning first=75 second=100 amount=-2 +kerning first=75 second=101 amount=-1 +kerning first=75 second=102 amount=-2 +kerning first=75 second=103 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=75 second=113 amount=-1 +kerning first=75 second=115 amount=-2 +kerning first=75 second=116 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=75 second=118 amount=-3 +kerning first=75 second=119 amount=-3 +kerning first=75 second=121 amount=-3 +kerning first=75 second=126 amount=-8 +kerning first=76 second=48 amount=-2 +kerning first=76 second=49 amount=-8 +kerning first=76 second=50 amount=-1 +kerning first=76 second=51 amount=-3 +kerning first=76 second=52 amount=-6 +kerning first=76 second=53 amount=-2 +kerning first=76 second=54 amount=-1 +kerning first=76 second=55 amount=-2 +kerning first=76 second=56 amount=-2 +kerning first=76 second=57 amount=-5 +kerning first=76 second=65 amount=-1 +kerning first=76 second=66 amount=-1 +kerning first=76 second=67 amount=-4 +kerning first=76 second=68 amount=-1 +kerning first=76 second=69 amount=-2 +kerning first=76 second=70 amount=-1 +kerning first=76 second=71 amount=-4 +kerning first=76 second=72 amount=-1 +kerning first=76 second=73 amount=-1 +kerning first=76 second=74 amount=-2 +kerning first=76 second=75 amount=-2 +kerning first=76 second=76 amount=-1 +kerning first=76 second=78 amount=-1 +kerning first=76 second=79 amount=-4 +kerning first=76 second=80 amount=-1 +kerning first=76 second=81 amount=-5 +kerning first=76 second=82 amount=-1 +kerning first=76 second=83 amount=-2 +kerning first=76 second=84 amount=-5 +kerning first=76 second=85 amount=-2 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-5 +kerning first=76 second=89 amount=-5 +kerning first=76 second=90 amount=-1 +kerning first=76 second=91 amount=-2 +kerning first=76 second=92 amount=-4 +kerning first=76 second=93 amount=-2 +kerning first=76 second=94 amount=-5 +kerning first=76 second=95 amount=-9 +kerning first=76 second=96 amount=-7 +kerning first=76 second=97 amount=-1 +kerning first=76 second=99 amount=-2 +kerning first=76 second=100 amount=-3 +kerning first=76 second=101 amount=-1 +kerning first=76 second=102 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=76 second=104 amount=-2 +kerning first=76 second=105 amount=-2 +kerning first=76 second=106 amount=-2 +kerning first=76 second=107 amount=-2 +kerning first=76 second=108 amount=-1 +kerning first=76 second=109 amount=-2 +kerning first=76 second=110 amount=-2 +kerning first=76 second=111 amount=-1 +kerning first=76 second=112 amount=-2 +kerning first=76 second=113 amount=-1 +kerning first=76 second=114 amount=-2 +kerning first=76 second=115 amount=-2 +kerning first=76 second=116 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=118 amount=-4 +kerning first=76 second=119 amount=-4 +kerning first=76 second=121 amount=-4 +kerning first=76 second=122 amount=-2 +kerning first=76 second=125 amount=-1 +kerning first=76 second=126 amount=-5 +kerning first=77 second=49 amount=-6 +kerning first=77 second=50 amount=-2 +kerning first=77 second=51 amount=-1 +kerning first=77 second=52 amount=-1 +kerning first=77 second=53 amount=-2 +kerning first=77 second=56 amount=-2 +kerning first=77 second=57 amount=-2 +kerning first=77 second=67 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=77 second=84 amount=-3 +kerning first=77 second=85 amount=-2 +kerning first=77 second=86 amount=-3 +kerning first=77 second=87 amount=-3 +kerning first=77 second=89 amount=-4 +kerning first=77 second=92 amount=-3 +kerning first=77 second=93 amount=-1 +kerning first=77 second=94 amount=-1 +kerning first=77 second=95 amount=-12 +kerning first=77 second=96 amount=-4 +kerning first=77 second=100 amount=-1 +kerning first=77 second=102 amount=-2 +kerning first=77 second=118 amount=-1 +kerning first=77 second=119 amount=-1 +kerning first=77 second=121 amount=-1 +kerning first=77 second=126 amount=-2 +kerning first=78 second=49 amount=-4 +kerning first=78 second=50 amount=-1 +kerning first=78 second=51 amount=-1 +kerning first=78 second=52 amount=-1 +kerning first=78 second=53 amount=-1 +kerning first=78 second=56 amount=-2 +kerning first=78 second=66 amount=-2 +kerning first=78 second=68 amount=-2 +kerning first=78 second=69 amount=-2 +kerning first=78 second=70 amount=-2 +kerning first=78 second=72 amount=-2 +kerning first=78 second=73 amount=-2 +kerning first=78 second=76 amount=-2 +kerning first=78 second=78 amount=-2 +kerning first=78 second=80 amount=-2 +kerning first=78 second=82 amount=-2 +kerning first=78 second=84 amount=-2 +kerning first=78 second=85 amount=-2 +kerning first=78 second=90 amount=-2 +kerning first=78 second=93 amount=-2 +kerning first=78 second=95 amount=-14 +kerning first=78 second=96 amount=-1 +kerning first=78 second=100 amount=-2 +kerning first=78 second=104 amount=-2 +kerning first=78 second=107 amount=-1 +kerning first=78 second=108 amount=-2 +kerning first=78 second=122 amount=-1 +kerning first=79 second=49 amount=-7 +kerning first=79 second=50 amount=-2 +kerning first=79 second=51 amount=-2 +kerning first=79 second=52 amount=-2 +kerning first=79 second=53 amount=-1 +kerning first=79 second=55 amount=-3 +kerning first=79 second=56 amount=-2 +kerning first=79 second=65 amount=-2 +kerning first=79 second=74 amount=-3 +kerning first=79 second=77 amount=-2 +kerning first=79 second=79 amount=-1 +kerning first=79 second=83 amount=-1 +kerning first=79 second=84 amount=-4 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-3 +kerning first=79 second=90 amount=-3 +kerning first=79 second=92 amount=-1 +kerning first=79 second=93 amount=-2 +kerning first=79 second=95 amount=-13 +kerning first=79 second=96 amount=-2 +kerning first=79 second=100 amount=-2 +kerning first=79 second=125 amount=-1 +kerning first=80 second=49 amount=-6 +kerning first=80 second=50 amount=-2 +kerning first=80 second=51 amount=-2 +kerning first=80 second=52 amount=-7 +kerning first=80 second=53 amount=-3 +kerning first=80 second=54 amount=-2 +kerning first=80 second=55 amount=-2 +kerning first=80 second=56 amount=-1 +kerning first=80 second=57 amount=-2 +kerning first=80 second=65 amount=-5 +kerning first=80 second=66 amount=-1 +kerning first=80 second=67 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=80 second=71 amount=-1 +kerning first=80 second=72 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=80 second=74 amount=-5 +kerning first=80 second=75 amount=-2 +kerning first=80 second=76 amount=-1 +kerning first=80 second=77 amount=-3 +kerning first=80 second=78 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=81 amount=-1 +kerning first=80 second=82 amount=-1 +kerning first=80 second=83 amount=-2 +kerning first=80 second=84 amount=-2 +kerning first=80 second=85 amount=-1 +kerning first=80 second=86 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=80 second=88 amount=-2 +kerning first=80 second=89 amount=-2 +kerning first=80 second=90 amount=-3 +kerning first=80 second=91 amount=-2 +kerning first=80 second=92 amount=-1 +kerning first=80 second=93 amount=-3 +kerning first=80 second=94 amount=-2 +kerning first=80 second=95 amount=-13 +kerning first=80 second=96 amount=-1 +kerning first=80 second=97 amount=-4 +kerning first=80 second=98 amount=-2 +kerning first=80 second=99 amount=-5 +kerning first=80 second=100 amount=-5 +kerning first=80 second=101 amount=-4 +kerning first=80 second=102 amount=-1 +kerning first=80 second=103 amount=-4 +kerning first=80 second=104 amount=-1 +kerning first=80 second=105 amount=-1 +kerning first=80 second=106 amount=-1 +kerning first=80 second=107 amount=-2 +kerning first=80 second=108 amount=-1 +kerning first=80 second=109 amount=-2 +kerning first=80 second=110 amount=-2 +kerning first=80 second=111 amount=-4 +kerning first=80 second=112 amount=-2 +kerning first=80 second=113 amount=-4 +kerning first=80 second=114 amount=-2 +kerning first=80 second=115 amount=-3 +kerning first=80 second=116 amount=-1 +kerning first=80 second=117 amount=-2 +kerning first=80 second=118 amount=-2 +kerning first=80 second=119 amount=-2 +kerning first=80 second=120 amount=-1 +kerning first=80 second=121 amount=-2 +kerning first=80 second=122 amount=-3 +kerning first=80 second=123 amount=-1 +kerning first=80 second=124 amount=-2 +kerning first=80 second=125 amount=-2 +kerning first=80 second=126 amount=-3 +kerning first=81 second=49 amount=-6 +kerning first=81 second=50 amount=-2 +kerning first=81 second=51 amount=-2 +kerning first=81 second=52 amount=-1 +kerning first=81 second=53 amount=-1 +kerning first=81 second=55 amount=-3 +kerning first=81 second=56 amount=-2 +kerning first=81 second=65 amount=-2 +kerning first=81 second=74 amount=-2 +kerning first=81 second=77 amount=-2 +kerning first=81 second=83 amount=-2 +kerning first=81 second=84 amount=-4 +kerning first=81 second=86 amount=-1 +kerning first=81 second=87 amount=-1 +kerning first=81 second=88 amount=-2 +kerning first=81 second=89 amount=-2 +kerning first=81 second=90 amount=-3 +kerning first=81 second=92 amount=-2 +kerning first=81 second=93 amount=-2 +kerning first=81 second=96 amount=-2 +kerning first=81 second=100 amount=-2 +kerning first=82 second=49 amount=-5 +kerning first=82 second=50 amount=-2 +kerning first=82 second=51 amount=-1 +kerning first=82 second=52 amount=-3 +kerning first=82 second=53 amount=-2 +kerning first=82 second=54 amount=-1 +kerning first=82 second=56 amount=-2 +kerning first=82 second=74 amount=-2 +kerning first=82 second=83 amount=-2 +kerning first=82 second=84 amount=-1 +kerning first=82 second=86 amount=-2 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-1 +kerning first=82 second=93 amount=-2 +kerning first=82 second=95 amount=-13 +kerning first=82 second=96 amount=-2 +kerning first=82 second=97 amount=-1 +kerning first=82 second=99 amount=-2 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-1 +kerning first=82 second=102 amount=-2 +kerning first=82 second=103 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=82 second=113 amount=-1 +kerning first=82 second=115 amount=-2 +kerning first=82 second=117 amount=-1 +kerning first=82 second=118 amount=-2 +kerning first=82 second=119 amount=-2 +kerning first=82 second=121 amount=-2 +kerning first=82 second=125 amount=-2 +kerning first=82 second=126 amount=-2 +kerning first=83 second=49 amount=-6 +kerning first=83 second=50 amount=-2 +kerning first=83 second=51 amount=-1 +kerning first=83 second=52 amount=-1 +kerning first=83 second=53 amount=-1 +kerning first=83 second=55 amount=-1 +kerning first=83 second=56 amount=-2 +kerning first=83 second=57 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=66 amount=-2 +kerning first=83 second=67 amount=-2 +kerning first=83 second=68 amount=-2 +kerning first=83 second=70 amount=-2 +kerning first=83 second=71 amount=-2 +kerning first=83 second=72 amount=-2 +kerning first=83 second=73 amount=-2 +kerning first=83 second=74 amount=-2 +kerning first=83 second=76 amount=-2 +kerning first=83 second=78 amount=-2 +kerning first=83 second=79 amount=-2 +kerning first=83 second=80 amount=-2 +kerning first=83 second=81 amount=-2 +kerning first=83 second=82 amount=-2 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-2 +kerning first=83 second=86 amount=-1 +kerning first=83 second=87 amount=-1 +kerning first=83 second=88 amount=-1 +kerning first=83 second=89 amount=-1 +kerning first=83 second=90 amount=-2 +kerning first=83 second=92 amount=-2 +kerning first=83 second=93 amount=-2 +kerning first=83 second=94 amount=-3 +kerning first=83 second=95 amount=-13 +kerning first=83 second=96 amount=-3 +kerning first=83 second=100 amount=-2 +kerning first=83 second=102 amount=-1 +kerning first=83 second=104 amount=-2 +kerning first=83 second=105 amount=-2 +kerning first=83 second=106 amount=-2 +kerning first=83 second=108 amount=-2 +kerning first=83 second=116 amount=-2 +kerning first=83 second=118 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=83 second=121 amount=-1 +kerning first=83 second=122 amount=-1 +kerning first=83 second=125 amount=-1 +kerning first=83 second=126 amount=-2 +kerning first=84 second=48 amount=-1 +kerning first=84 second=49 amount=-4 +kerning first=84 second=50 amount=-3 +kerning first=84 second=51 amount=-3 +kerning first=84 second=52 amount=-5 +kerning first=84 second=53 amount=-4 +kerning first=84 second=54 amount=-3 +kerning first=84 second=55 amount=-2 +kerning first=84 second=56 amount=-2 +kerning first=84 second=57 amount=-2 +kerning first=84 second=65 amount=-4 +kerning first=84 second=66 amount=-2 +kerning first=84 second=67 amount=-4 +kerning first=84 second=68 amount=-2 +kerning first=84 second=69 amount=-2 +kerning first=84 second=70 amount=-2 +kerning first=84 second=71 amount=-4 +kerning first=84 second=72 amount=-2 +kerning first=84 second=73 amount=-2 +kerning first=84 second=74 amount=-4 +kerning first=84 second=75 amount=-1 +kerning first=84 second=76 amount=-2 +kerning first=84 second=77 amount=-3 +kerning first=84 second=78 amount=-2 +kerning first=84 second=79 amount=-4 +kerning first=84 second=80 amount=-2 +kerning first=84 second=81 amount=-4 +kerning first=84 second=82 amount=-2 +kerning first=84 second=83 amount=-2 +kerning first=84 second=84 amount=-2 +kerning first=84 second=85 amount=-2 +kerning first=84 second=90 amount=-1 +kerning first=84 second=93 amount=-2 +kerning first=84 second=94 amount=-4 +kerning first=84 second=95 amount=-13 +kerning first=84 second=96 amount=-5 +kerning first=84 second=97 amount=-3 +kerning first=84 second=99 amount=-4 +kerning first=84 second=100 amount=-5 +kerning first=84 second=101 amount=-3 +kerning first=84 second=102 amount=-1 +kerning first=84 second=103 amount=-3 +kerning first=84 second=104 amount=-2 +kerning first=84 second=105 amount=-4 +kerning first=84 second=106 amount=-4 +kerning first=84 second=107 amount=-2 +kerning first=84 second=108 amount=-2 +kerning first=84 second=109 amount=-4 +kerning first=84 second=110 amount=-4 +kerning first=84 second=111 amount=-3 +kerning first=84 second=112 amount=-4 +kerning first=84 second=113 amount=-3 +kerning first=84 second=114 amount=-4 +kerning first=84 second=115 amount=-3 +kerning first=84 second=116 amount=-3 +kerning first=84 second=117 amount=-4 +kerning first=84 second=118 amount=-3 +kerning first=84 second=119 amount=-4 +kerning first=84 second=120 amount=-3 +kerning first=84 second=121 amount=-4 +kerning first=84 second=122 amount=-4 +kerning first=84 second=126 amount=-3 +kerning first=85 second=49 amount=-4 +kerning first=85 second=50 amount=-1 +kerning first=85 second=51 amount=-1 +kerning first=85 second=52 amount=-1 +kerning first=85 second=53 amount=-2 +kerning first=85 second=55 amount=-1 +kerning first=85 second=56 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=66 amount=-2 +kerning first=85 second=68 amount=-2 +kerning first=85 second=69 amount=-2 +kerning first=85 second=70 amount=-2 +kerning first=85 second=72 amount=-2 +kerning first=85 second=73 amount=-2 +kerning first=85 second=74 amount=-1 +kerning first=85 second=76 amount=-2 +kerning first=85 second=77 amount=-2 +kerning first=85 second=78 amount=-2 +kerning first=85 second=80 amount=-2 +kerning first=85 second=82 amount=-2 +kerning first=85 second=83 amount=-1 +kerning first=85 second=84 amount=-2 +kerning first=85 second=85 amount=-2 +kerning first=85 second=90 amount=-1 +kerning first=85 second=93 amount=-2 +kerning first=85 second=95 amount=-14 +kerning first=85 second=96 amount=-1 +kerning first=85 second=100 amount=-2 +kerning first=85 second=104 amount=-2 +kerning first=85 second=107 amount=-1 +kerning first=85 second=108 amount=-2 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=114 amount=-1 +kerning first=85 second=122 amount=-2 +kerning first=86 second=48 amount=-2 +kerning first=86 second=49 amount=-4 +kerning first=86 second=50 amount=-2 +kerning first=86 second=51 amount=-2 +kerning first=86 second=52 amount=-5 +kerning first=86 second=53 amount=-4 +kerning first=86 second=54 amount=-2 +kerning first=86 second=56 amount=-1 +kerning first=86 second=57 amount=-1 +kerning first=86 second=65 amount=-5 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=74 amount=-4 +kerning first=86 second=77 amount=-3 +kerning first=86 second=79 amount=-2 +kerning first=86 second=81 amount=-2 +kerning first=86 second=83 amount=-2 +kerning first=86 second=90 amount=-2 +kerning first=86 second=93 amount=-2 +kerning first=86 second=94 amount=-1 +kerning first=86 second=95 amount=-13 +kerning first=86 second=96 amount=-1 +kerning first=86 second=97 amount=-3 +kerning first=86 second=99 amount=-3 +kerning first=86 second=100 amount=-4 +kerning first=86 second=101 amount=-3 +kerning first=86 second=102 amount=-1 +kerning first=86 second=103 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=106 amount=-1 +kerning first=86 second=109 amount=-2 +kerning first=86 second=110 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=86 second=112 amount=-2 +kerning first=86 second=113 amount=-3 +kerning first=86 second=114 amount=-2 +kerning first=86 second=115 amount=-3 +kerning first=86 second=116 amount=-1 +kerning first=86 second=117 amount=-2 +kerning first=86 second=118 amount=-2 +kerning first=86 second=119 amount=-2 +kerning first=86 second=120 amount=-1 +kerning first=86 second=121 amount=-2 +kerning first=86 second=122 amount=-3 +kerning first=86 second=126 amount=-2 +kerning first=87 second=48 amount=-2 +kerning first=87 second=49 amount=-4 +kerning first=87 second=50 amount=-2 +kerning first=87 second=51 amount=-2 +kerning first=87 second=52 amount=-5 +kerning first=87 second=53 amount=-4 +kerning first=87 second=54 amount=-2 +kerning first=87 second=56 amount=-1 +kerning first=87 second=57 amount=-2 +kerning first=87 second=65 amount=-5 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-2 +kerning first=87 second=74 amount=-4 +kerning first=87 second=77 amount=-3 +kerning first=87 second=79 amount=-2 +kerning first=87 second=81 amount=-2 +kerning first=87 second=83 amount=-1 +kerning first=87 second=90 amount=-2 +kerning first=87 second=93 amount=-2 +kerning first=87 second=94 amount=-1 +kerning first=87 second=95 amount=-13 +kerning first=87 second=96 amount=-1 +kerning first=87 second=97 amount=-3 +kerning first=87 second=99 amount=-3 +kerning first=87 second=100 amount=-4 +kerning first=87 second=101 amount=-3 +kerning first=87 second=102 amount=-1 +kerning first=87 second=103 amount=-3 +kerning first=87 second=105 amount=-1 +kerning first=87 second=106 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=110 amount=-2 +kerning first=87 second=111 amount=-3 +kerning first=87 second=112 amount=-2 +kerning first=87 second=113 amount=-3 +kerning first=87 second=114 amount=-2 +kerning first=87 second=115 amount=-3 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-2 +kerning first=87 second=118 amount=-1 +kerning first=87 second=119 amount=-2 +kerning first=87 second=120 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=122 amount=-3 +kerning first=87 second=126 amount=-1 +kerning first=88 second=48 amount=-1 +kerning first=88 second=49 amount=-4 +kerning first=88 second=50 amount=-2 +kerning first=88 second=51 amount=-2 +kerning first=88 second=52 amount=-2 +kerning first=88 second=53 amount=-1 +kerning first=88 second=54 amount=-1 +kerning first=88 second=56 amount=-1 +kerning first=88 second=57 amount=-2 +kerning first=88 second=67 amount=-3 +kerning first=88 second=71 amount=-3 +kerning first=88 second=79 amount=-3 +kerning first=88 second=81 amount=-3 +kerning first=88 second=83 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=88 second=93 amount=-1 +kerning first=88 second=94 amount=-3 +kerning first=88 second=95 amount=-13 +kerning first=88 second=96 amount=-2 +kerning first=88 second=97 amount=-2 +kerning first=88 second=99 amount=-1 +kerning first=88 second=100 amount=-2 +kerning first=88 second=101 amount=-2 +kerning first=88 second=102 amount=-2 +kerning first=88 second=103 amount=-2 +kerning first=88 second=111 amount=-2 +kerning first=88 second=113 amount=-2 +kerning first=88 second=116 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=118 amount=-3 +kerning first=88 second=119 amount=-3 +kerning first=88 second=121 amount=-3 +kerning first=88 second=126 amount=-4 +kerning first=89 second=48 amount=-1 +kerning first=89 second=49 amount=-4 +kerning first=89 second=50 amount=-3 +kerning first=89 second=51 amount=-3 +kerning first=89 second=52 amount=-6 +kerning first=89 second=53 amount=-4 +kerning first=89 second=54 amount=-4 +kerning first=89 second=56 amount=-2 +kerning first=89 second=57 amount=-2 +kerning first=89 second=65 amount=-5 +kerning first=89 second=66 amount=-2 +kerning first=89 second=67 amount=-3 +kerning first=89 second=68 amount=-2 +kerning first=89 second=70 amount=-2 +kerning first=89 second=71 amount=-3 +kerning first=89 second=72 amount=-2 +kerning first=89 second=73 amount=-2 +kerning first=89 second=74 amount=-4 +kerning first=89 second=76 amount=-2 +kerning first=89 second=77 amount=-4 +kerning first=89 second=78 amount=-2 +kerning first=89 second=79 amount=-3 +kerning first=89 second=80 amount=-2 +kerning first=89 second=81 amount=-3 +kerning first=89 second=82 amount=-2 +kerning first=89 second=83 amount=-2 +kerning first=89 second=84 amount=-1 +kerning first=89 second=85 amount=-2 +kerning first=89 second=90 amount=-1 +kerning first=89 second=93 amount=-2 +kerning first=89 second=94 amount=-3 +kerning first=89 second=95 amount=-13 +kerning first=89 second=96 amount=-2 +kerning first=89 second=97 amount=-5 +kerning first=89 second=99 amount=-5 +kerning first=89 second=100 amount=-5 +kerning first=89 second=101 amount=-5 +kerning first=89 second=102 amount=-1 +kerning first=89 second=103 amount=-5 +kerning first=89 second=104 amount=-1 +kerning first=89 second=105 amount=-2 +kerning first=89 second=106 amount=-2 +kerning first=89 second=108 amount=-2 +kerning first=89 second=109 amount=-4 +kerning first=89 second=110 amount=-4 +kerning first=89 second=111 amount=-5 +kerning first=89 second=112 amount=-4 +kerning first=89 second=113 amount=-4 +kerning first=89 second=114 amount=-4 +kerning first=89 second=115 amount=-5 +kerning first=89 second=116 amount=-2 +kerning first=89 second=117 amount=-4 +kerning first=89 second=118 amount=-4 +kerning first=89 second=119 amount=-4 +kerning first=89 second=120 amount=-3 +kerning first=89 second=121 amount=-4 +kerning first=89 second=122 amount=-5 +kerning first=89 second=126 amount=-4 +kerning first=90 second=48 amount=-2 +kerning first=90 second=49 amount=-5 +kerning first=90 second=50 amount=-1 +kerning first=90 second=51 amount=-3 +kerning first=90 second=52 amount=-10 +kerning first=90 second=53 amount=-2 +kerning first=90 second=54 amount=-1 +kerning first=90 second=56 amount=-2 +kerning first=90 second=57 amount=-2 +kerning first=90 second=66 amount=-2 +kerning first=90 second=67 amount=-3 +kerning first=90 second=68 amount=-2 +kerning first=90 second=69 amount=-2 +kerning first=90 second=70 amount=-2 +kerning first=90 second=71 amount=-4 +kerning first=90 second=72 amount=-2 +kerning first=90 second=73 amount=-2 +kerning first=90 second=74 amount=-2 +kerning first=90 second=75 amount=-1 +kerning first=90 second=76 amount=-2 +kerning first=90 second=78 amount=-2 +kerning first=90 second=79 amount=-3 +kerning first=90 second=80 amount=-2 +kerning first=90 second=81 amount=-4 +kerning first=90 second=82 amount=-2 +kerning first=90 second=83 amount=-2 +kerning first=90 second=84 amount=-2 +kerning first=90 second=85 amount=-2 +kerning first=90 second=90 amount=-2 +kerning first=90 second=93 amount=-2 +kerning first=90 second=94 amount=-3 +kerning first=90 second=95 amount=-13 +kerning first=90 second=96 amount=-2 +kerning first=90 second=97 amount=-2 +kerning first=90 second=99 amount=-2 +kerning first=90 second=100 amount=-2 +kerning first=90 second=101 amount=-2 +kerning first=90 second=102 amount=-1 +kerning first=90 second=103 amount=-2 +kerning first=90 second=104 amount=-2 +kerning first=90 second=105 amount=-1 +kerning first=90 second=106 amount=-1 +kerning first=90 second=107 amount=-2 +kerning first=90 second=108 amount=-2 +kerning first=90 second=109 amount=-2 +kerning first=90 second=110 amount=-2 +kerning first=90 second=111 amount=-2 +kerning first=90 second=112 amount=-2 +kerning first=90 second=113 amount=-1 +kerning first=90 second=114 amount=-2 +kerning first=90 second=115 amount=-2 +kerning first=90 second=116 amount=-1 +kerning first=90 second=117 amount=-1 +kerning first=90 second=118 amount=-4 +kerning first=90 second=119 amount=-4 +kerning first=90 second=121 amount=-4 +kerning first=90 second=122 amount=-1 +kerning first=90 second=126 amount=-5 +kerning first=91 second=48 amount=-2 +kerning first=91 second=49 amount=-6 +kerning first=91 second=50 amount=-3 +kerning first=91 second=51 amount=-3 +kerning first=91 second=52 amount=-2 +kerning first=91 second=53 amount=-2 +kerning first=91 second=54 amount=-1 +kerning first=91 second=55 amount=-2 +kerning first=91 second=56 amount=-2 +kerning first=91 second=57 amount=-1 +kerning first=91 second=65 amount=-1 +kerning first=91 second=66 amount=-2 +kerning first=91 second=67 amount=-1 +kerning first=91 second=68 amount=-2 +kerning first=91 second=69 amount=-2 +kerning first=91 second=70 amount=-2 +kerning first=91 second=71 amount=-1 +kerning first=91 second=72 amount=-2 +kerning first=91 second=73 amount=-2 +kerning first=91 second=74 amount=-1 +kerning first=91 second=75 amount=-2 +kerning first=91 second=76 amount=-2 +kerning first=91 second=77 amount=-1 +kerning first=91 second=78 amount=-2 +kerning first=91 second=79 amount=-1 +kerning first=91 second=80 amount=-2 +kerning first=91 second=81 amount=-2 +kerning first=91 second=82 amount=-2 +kerning first=91 second=83 amount=-2 +kerning first=91 second=84 amount=-2 +kerning first=91 second=85 amount=-2 +kerning first=91 second=86 amount=-1 +kerning first=91 second=87 amount=-1 +kerning first=91 second=88 amount=-1 +kerning first=91 second=89 amount=-1 +kerning first=91 second=90 amount=-2 +kerning first=91 second=92 amount=-1 +kerning first=91 second=94 amount=-1 +kerning first=91 second=96 amount=-3 +kerning first=91 second=97 amount=-1 +kerning first=91 second=99 amount=-1 +kerning first=91 second=100 amount=-2 +kerning first=91 second=101 amount=-1 +kerning first=91 second=102 amount=-1 +kerning first=91 second=103 amount=-1 +kerning first=91 second=104 amount=-1 +kerning first=91 second=105 amount=-1 +kerning first=91 second=108 amount=-2 +kerning first=91 second=109 amount=-2 +kerning first=91 second=110 amount=-2 +kerning first=91 second=111 amount=-1 +kerning first=91 second=113 amount=-1 +kerning first=91 second=114 amount=-2 +kerning first=91 second=115 amount=-1 +kerning first=91 second=116 amount=-1 +kerning first=91 second=117 amount=-1 +kerning first=91 second=118 amount=-1 +kerning first=91 second=119 amount=-1 +kerning first=91 second=120 amount=-2 +kerning first=91 second=121 amount=-1 +kerning first=91 second=122 amount=-2 +kerning first=91 second=126 amount=-1 +kerning first=92 second=49 amount=-6 +kerning first=92 second=51 amount=-1 +kerning first=92 second=52 amount=-1 +kerning first=92 second=56 amount=-2 +kerning first=92 second=57 amount=-2 +kerning first=92 second=67 amount=-1 +kerning first=92 second=71 amount=-1 +kerning first=92 second=79 amount=-1 +kerning first=92 second=81 amount=-1 +kerning first=92 second=84 amount=-3 +kerning first=92 second=85 amount=-2 +kerning first=92 second=86 amount=-4 +kerning first=92 second=87 amount=-4 +kerning first=92 second=89 amount=-4 +kerning first=92 second=92 amount=-3 +kerning first=92 second=93 amount=-1 +kerning first=92 second=94 amount=-2 +kerning first=92 second=95 amount=-8 +kerning first=92 second=96 amount=-5 +kerning first=92 second=100 amount=-2 +kerning first=92 second=118 amount=-1 +kerning first=92 second=119 amount=-1 +kerning first=92 second=121 amount=-1 +kerning first=92 second=126 amount=-2 +kerning first=93 second=49 amount=-3 +kerning first=93 second=50 amount=-2 +kerning first=93 second=51 amount=-1 +kerning first=93 second=52 amount=-1 +kerning first=93 second=95 amount=-5 +kerning first=93 second=96 amount=-2 +kerning first=94 second=49 amount=-7 +kerning first=94 second=50 amount=-3 +kerning first=94 second=51 amount=-3 +kerning first=94 second=52 amount=-5 +kerning first=94 second=53 amount=-2 +kerning first=94 second=55 amount=-6 +kerning first=94 second=56 amount=-2 +kerning first=94 second=65 amount=-3 +kerning first=94 second=74 amount=-4 +kerning first=94 second=77 amount=-1 +kerning first=94 second=83 amount=-1 +kerning first=94 second=84 amount=-4 +kerning first=94 second=86 amount=-1 +kerning first=94 second=87 amount=-1 +kerning first=94 second=88 amount=-3 +kerning first=94 second=89 amount=-3 +kerning first=94 second=90 amount=-6 +kerning first=94 second=92 amount=-1 +kerning first=94 second=93 amount=-2 +kerning first=94 second=95 amount=-10 +kerning first=94 second=96 amount=-3 +kerning first=94 second=97 amount=-1 +kerning first=94 second=99 amount=-1 +kerning first=94 second=100 amount=-3 +kerning first=94 second=101 amount=-1 +kerning first=94 second=103 amount=-1 +kerning first=94 second=111 amount=-1 +kerning first=94 second=113 amount=-1 +kerning first=94 second=125 amount=-1 +kerning first=95 second=48 amount=-12 +kerning first=95 second=49 amount=-10 +kerning first=95 second=50 amount=-13 +kerning first=95 second=51 amount=-14 +kerning first=95 second=52 amount=-13 +kerning first=95 second=53 amount=-12 +kerning first=95 second=54 amount=-12 +kerning first=95 second=55 amount=-12 +kerning first=95 second=56 amount=-14 +kerning first=95 second=57 amount=-12 +kerning first=95 second=65 amount=-12 +kerning first=95 second=66 amount=-14 +kerning first=95 second=67 amount=-13 +kerning first=95 second=68 amount=-14 +kerning first=95 second=69 amount=-13 +kerning first=95 second=70 amount=-12 +kerning first=95 second=71 amount=-13 +kerning first=95 second=72 amount=-14 +kerning first=95 second=73 amount=-3 +kerning first=95 second=74 amount=-8 +kerning first=95 second=75 amount=-14 +kerning first=95 second=76 amount=-10 +kerning first=95 second=77 amount=-12 +kerning first=95 second=78 amount=-14 +kerning first=95 second=79 amount=-13 +kerning first=95 second=80 amount=-14 +kerning first=95 second=81 amount=-13 +kerning first=95 second=82 amount=-14 +kerning first=95 second=83 amount=-13 +kerning first=95 second=84 amount=-13 +kerning first=95 second=85 amount=-14 +kerning first=95 second=86 amount=-13 +kerning first=95 second=87 amount=-13 +kerning first=95 second=88 amount=-12 +kerning first=95 second=89 amount=-12 +kerning first=95 second=90 amount=-13 +kerning first=95 second=92 amount=-8 +kerning first=95 second=94 amount=-10 +kerning first=95 second=95 amount=5 +kerning first=95 second=96 amount=-8 +kerning first=95 second=97 amount=-13 +kerning first=95 second=98 amount=-13 +kerning first=95 second=99 amount=-12 +kerning first=95 second=100 amount=-13 +kerning first=95 second=101 amount=-13 +kerning first=95 second=102 amount=-8 +kerning first=95 second=104 amount=-12 +kerning first=95 second=105 amount=-4 +kerning first=95 second=107 amount=-12 +kerning first=95 second=108 amount=-3 +kerning first=95 second=109 amount=-14 +kerning first=95 second=110 amount=-12 +kerning first=95 second=111 amount=-13 +kerning first=95 second=113 amount=-12 +kerning first=95 second=114 amount=-9 +kerning first=95 second=115 amount=-10 +kerning first=95 second=116 amount=-7 +kerning first=95 second=117 amount=-11 +kerning first=95 second=118 amount=-12 +kerning first=95 second=119 amount=-12 +kerning first=95 second=120 amount=-11 +kerning first=95 second=121 amount=2 +kerning first=95 second=122 amount=-13 +kerning first=95 second=125 amount=-6 +kerning first=95 second=126 amount=-12 +kerning first=96 second=49 amount=-8 +kerning first=96 second=50 amount=-4 +kerning first=96 second=51 amount=-5 +kerning first=96 second=52 amount=-10 +kerning first=96 second=53 amount=-3 +kerning first=96 second=54 amount=-3 +kerning first=96 second=55 amount=-10 +kerning first=96 second=56 amount=-2 +kerning first=96 second=65 amount=-9 +kerning first=96 second=66 amount=-1 +kerning first=96 second=67 amount=-1 +kerning first=96 second=68 amount=-1 +kerning first=96 second=69 amount=-1 +kerning first=96 second=70 amount=-1 +kerning first=96 second=71 amount=-1 +kerning first=96 second=72 amount=-1 +kerning first=96 second=73 amount=-1 +kerning first=96 second=74 amount=-9 +kerning first=96 second=75 amount=-1 +kerning first=96 second=76 amount=-1 +kerning first=96 second=77 amount=-4 +kerning first=96 second=78 amount=-1 +kerning first=96 second=79 amount=-1 +kerning first=96 second=80 amount=-1 +kerning first=96 second=81 amount=-2 +kerning first=96 second=82 amount=-1 +kerning first=96 second=83 amount=-2 +kerning first=96 second=84 amount=-10 +kerning first=96 second=85 amount=-1 +kerning first=96 second=86 amount=-2 +kerning first=96 second=87 amount=-2 +kerning first=96 second=88 amount=-4 +kerning first=96 second=89 amount=-4 +kerning first=96 second=90 amount=-10 +kerning first=96 second=91 amount=-1 +kerning first=96 second=92 amount=-1 +kerning first=96 second=93 amount=-3 +kerning first=96 second=94 amount=-2 +kerning first=96 second=95 amount=-8 +kerning first=96 second=96 amount=-4 +kerning first=96 second=97 amount=-9 +kerning first=96 second=98 amount=-2 +kerning first=96 second=99 amount=-9 +kerning first=96 second=100 amount=-11 +kerning first=96 second=101 amount=-9 +kerning first=96 second=102 amount=-2 +kerning first=96 second=103 amount=-9 +kerning first=96 second=104 amount=-1 +kerning first=96 second=105 amount=-1 +kerning first=96 second=106 amount=-1 +kerning first=96 second=107 amount=-1 +kerning first=96 second=108 amount=-1 +kerning first=96 second=109 amount=-10 +kerning first=96 second=110 amount=-10 +kerning first=96 second=111 amount=-9 +kerning first=96 second=112 amount=-10 +kerning first=96 second=113 amount=-9 +kerning first=96 second=114 amount=-10 +kerning first=96 second=115 amount=-9 +kerning first=96 second=116 amount=-2 +kerning first=96 second=117 amount=-10 +kerning first=96 second=118 amount=-9 +kerning first=96 second=119 amount=-9 +kerning first=96 second=120 amount=-8 +kerning first=96 second=121 amount=-9 +kerning first=96 second=122 amount=-9 +kerning first=96 second=123 amount=-2 +kerning first=96 second=124 amount=-2 +kerning first=96 second=125 amount=-2 +kerning first=96 second=126 amount=-9 +kerning first=97 second=49 amount=-7 +kerning first=97 second=50 amount=-1 +kerning first=97 second=51 amount=-1 +kerning first=97 second=52 amount=-2 +kerning first=97 second=53 amount=-2 +kerning first=97 second=78 amount=-2 +kerning first=97 second=83 amount=-1 +kerning first=97 second=84 amount=-4 +kerning first=97 second=85 amount=-2 +kerning first=97 second=86 amount=-2 +kerning first=97 second=87 amount=-2 +kerning first=97 second=89 amount=-4 +kerning first=97 second=92 amount=-1 +kerning first=97 second=93 amount=-2 +kerning first=97 second=95 amount=-14 +kerning first=97 second=96 amount=-10 +kerning first=97 second=125 amount=-2 +kerning first=98 second=49 amount=-8 +kerning first=98 second=50 amount=-4 +kerning first=98 second=51 amount=-2 +kerning first=98 second=52 amount=-1 +kerning first=98 second=53 amount=-2 +kerning first=98 second=55 amount=-2 +kerning first=98 second=56 amount=-2 +kerning first=98 second=57 amount=-2 +kerning first=98 second=65 amount=-2 +kerning first=98 second=66 amount=-2 +kerning first=98 second=67 amount=-2 +kerning first=98 second=68 amount=-2 +kerning first=98 second=69 amount=-2 +kerning first=98 second=70 amount=-2 +kerning first=98 second=71 amount=-2 +kerning first=98 second=72 amount=-2 +kerning first=98 second=73 amount=-2 +kerning first=98 second=74 amount=-1 +kerning first=98 second=75 amount=-2 +kerning first=98 second=76 amount=-2 +kerning first=98 second=77 amount=-1 +kerning first=98 second=78 amount=-1 +kerning first=98 second=79 amount=-2 +kerning first=98 second=80 amount=-2 +kerning first=98 second=81 amount=-1 +kerning first=98 second=82 amount=-2 +kerning first=98 second=83 amount=-2 +kerning first=98 second=84 amount=-5 +kerning first=98 second=85 amount=-1 +kerning first=98 second=86 amount=-4 +kerning first=98 second=87 amount=-4 +kerning first=98 second=88 amount=-2 +kerning first=98 second=89 amount=-5 +kerning first=98 second=90 amount=-3 +kerning first=98 second=91 amount=-2 +kerning first=98 second=92 amount=-3 +kerning first=98 second=93 amount=-2 +kerning first=98 second=94 amount=-3 +kerning first=98 second=95 amount=-13 +kerning first=98 second=96 amount=-12 +kerning first=98 second=100 amount=-1 +kerning first=98 second=102 amount=-1 +kerning first=98 second=104 amount=-2 +kerning first=98 second=105 amount=-2 +kerning first=98 second=106 amount=-2 +kerning first=98 second=107 amount=-2 +kerning first=98 second=108 amount=-1 +kerning first=98 second=116 amount=-1 +kerning first=98 second=118 amount=-2 +kerning first=98 second=119 amount=-2 +kerning first=98 second=120 amount=-2 +kerning first=98 second=121 amount=-2 +kerning first=98 second=122 amount=-2 +kerning first=98 second=125 amount=-1 +kerning first=99 second=49 amount=-8 +kerning first=99 second=50 amount=-2 +kerning first=99 second=51 amount=-2 +kerning first=99 second=52 amount=-4 +kerning first=99 second=53 amount=-2 +kerning first=99 second=56 amount=-1 +kerning first=99 second=57 amount=-1 +kerning first=99 second=65 amount=-1 +kerning first=99 second=66 amount=-1 +kerning first=99 second=67 amount=-2 +kerning first=99 second=68 amount=-1 +kerning first=99 second=69 amount=-1 +kerning first=99 second=70 amount=-1 +kerning first=99 second=71 amount=-2 +kerning first=99 second=72 amount=-1 +kerning first=99 second=73 amount=-1 +kerning first=99 second=74 amount=-2 +kerning first=99 second=75 amount=-2 +kerning first=99 second=76 amount=-1 +kerning first=99 second=78 amount=-1 +kerning first=99 second=79 amount=-2 +kerning first=99 second=80 amount=-1 +kerning first=99 second=81 amount=-1 +kerning first=99 second=82 amount=-1 +kerning first=99 second=83 amount=-1 +kerning first=99 second=84 amount=-5 +kerning first=99 second=85 amount=-1 +kerning first=99 second=86 amount=-3 +kerning first=99 second=87 amount=-3 +kerning first=99 second=88 amount=-2 +kerning first=99 second=89 amount=-5 +kerning first=99 second=90 amount=-1 +kerning first=99 second=91 amount=-2 +kerning first=99 second=92 amount=-2 +kerning first=99 second=93 amount=-2 +kerning first=99 second=95 amount=-13 +kerning first=99 second=96 amount=-10 +kerning first=99 second=97 amount=-2 +kerning first=99 second=98 amount=-2 +kerning first=99 second=99 amount=-1 +kerning first=99 second=100 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=99 second=102 amount=-2 +kerning first=99 second=103 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=105 amount=-1 +kerning first=99 second=106 amount=-1 +kerning first=99 second=107 amount=-2 +kerning first=99 second=108 amount=-1 +kerning first=99 second=109 amount=-2 +kerning first=99 second=110 amount=-2 +kerning first=99 second=111 amount=-2 +kerning first=99 second=112 amount=-2 +kerning first=99 second=113 amount=-2 +kerning first=99 second=114 amount=-2 +kerning first=99 second=117 amount=-2 +kerning first=99 second=118 amount=-2 +kerning first=99 second=119 amount=-2 +kerning first=99 second=121 amount=-2 +kerning first=99 second=122 amount=-1 +kerning first=99 second=124 amount=-2 +kerning first=99 second=125 amount=-1 +kerning first=100 second=49 amount=-4 +kerning first=100 second=50 amount=-1 +kerning first=100 second=51 amount=-1 +kerning first=100 second=52 amount=-2 +kerning first=100 second=78 amount=-2 +kerning first=100 second=85 amount=-1 +kerning first=100 second=93 amount=-1 +kerning first=100 second=95 amount=-14 +kerning first=100 second=96 amount=-1 +kerning first=100 second=100 amount=-2 +kerning first=101 second=49 amount=-7 +kerning first=101 second=50 amount=-3 +kerning first=101 second=51 amount=-2 +kerning first=101 second=52 amount=-1 +kerning first=101 second=53 amount=-1 +kerning first=101 second=55 amount=-1 +kerning first=101 second=57 amount=-1 +kerning first=101 second=65 amount=-2 +kerning first=101 second=74 amount=-2 +kerning first=101 second=83 amount=-1 +kerning first=101 second=84 amount=-4 +kerning first=101 second=86 amount=-3 +kerning first=101 second=87 amount=-3 +kerning first=101 second=88 amount=-1 +kerning first=101 second=89 amount=-5 +kerning first=101 second=90 amount=-1 +kerning first=101 second=92 amount=-2 +kerning first=101 second=93 amount=-2 +kerning first=101 second=94 amount=-2 +kerning first=101 second=95 amount=-13 +kerning first=101 second=96 amount=-9 +kerning first=101 second=101 amount=1 +kerning first=101 second=102 amount=-2 +kerning first=101 second=116 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-2 +kerning first=101 second=120 amount=-2 +kerning first=101 second=121 amount=-2 +kerning first=101 second=122 amount=-1 +kerning first=101 second=125 amount=-1 +kerning first=102 second=49 amount=-4 +kerning first=102 second=50 amount=-3 +kerning first=102 second=51 amount=-2 +kerning first=102 second=52 amount=-3 +kerning first=102 second=53 amount=-2 +kerning first=102 second=56 amount=-1 +kerning first=102 second=65 amount=-2 +kerning first=102 second=74 amount=-2 +kerning first=102 second=77 amount=-1 +kerning first=102 second=83 amount=-2 +kerning first=102 second=90 amount=-2 +kerning first=102 second=95 amount=-7 +kerning first=102 second=96 amount=-3 +kerning first=102 second=97 amount=-2 +kerning first=102 second=99 amount=-1 +kerning first=102 second=100 amount=-2 +kerning first=102 second=101 amount=-2 +kerning first=102 second=102 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=102 second=105 amount=-2 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=113 amount=-2 +kerning first=102 second=116 amount=-1 +kerning first=103 second=49 amount=-7 +kerning first=103 second=50 amount=-1 +kerning first=103 second=51 amount=-1 +kerning first=103 second=52 amount=-2 +kerning first=103 second=53 amount=-2 +kerning first=103 second=78 amount=-2 +kerning first=103 second=81 amount=-2 +kerning first=103 second=84 amount=-4 +kerning first=103 second=85 amount=-2 +kerning first=103 second=86 amount=-2 +kerning first=103 second=87 amount=-2 +kerning first=103 second=89 amount=-4 +kerning first=103 second=92 amount=-1 +kerning first=103 second=96 amount=-10 +kerning first=104 second=49 amount=-8 +kerning first=104 second=50 amount=-1 +kerning first=104 second=51 amount=-2 +kerning first=104 second=52 amount=-1 +kerning first=104 second=53 amount=-2 +kerning first=104 second=55 amount=-2 +kerning first=104 second=56 amount=-1 +kerning first=104 second=57 amount=-1 +kerning first=104 second=65 amount=-2 +kerning first=104 second=66 amount=-1 +kerning first=104 second=67 amount=-2 +kerning first=104 second=68 amount=-1 +kerning first=104 second=69 amount=-2 +kerning first=104 second=70 amount=-1 +kerning first=104 second=71 amount=-2 +kerning first=104 second=72 amount=-1 +kerning first=104 second=73 amount=-1 +kerning first=104 second=74 amount=-2 +kerning first=104 second=75 amount=-2 +kerning first=104 second=76 amount=-1 +kerning first=104 second=78 amount=-1 +kerning first=104 second=79 amount=-2 +kerning first=104 second=80 amount=-1 +kerning first=104 second=81 amount=-1 +kerning first=104 second=82 amount=-1 +kerning first=104 second=83 amount=-2 +kerning first=104 second=84 amount=-5 +kerning first=104 second=85 amount=-1 +kerning first=104 second=86 amount=-3 +kerning first=104 second=87 amount=-3 +kerning first=104 second=88 amount=-1 +kerning first=104 second=89 amount=-6 +kerning first=104 second=90 amount=-1 +kerning first=104 second=91 amount=-2 +kerning first=104 second=92 amount=-3 +kerning first=104 second=93 amount=-1 +kerning first=104 second=94 amount=-2 +kerning first=104 second=95 amount=-12 +kerning first=104 second=96 amount=-10 +kerning first=104 second=98 amount=-2 +kerning first=104 second=100 amount=-1 +kerning first=104 second=102 amount=-1 +kerning first=104 second=104 amount=-1 +kerning first=104 second=105 amount=-2 +kerning first=104 second=106 amount=-2 +kerning first=104 second=107 amount=-2 +kerning first=104 second=108 amount=-1 +kerning first=104 second=116 amount=-2 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-2 +kerning first=104 second=124 amount=-1 +kerning first=105 second=49 amount=-10 +kerning first=105 second=50 amount=-1 +kerning first=105 second=51 amount=-2 +kerning first=105 second=52 amount=-1 +kerning first=105 second=53 amount=-2 +kerning first=105 second=56 amount=-2 +kerning first=105 second=66 amount=-2 +kerning first=105 second=68 amount=-2 +kerning first=105 second=70 amount=-2 +kerning first=105 second=72 amount=-2 +kerning first=105 second=73 amount=-2 +kerning first=105 second=76 amount=-2 +kerning first=105 second=78 amount=-2 +kerning first=105 second=80 amount=-2 +kerning first=105 second=82 amount=-2 +kerning first=105 second=83 amount=-2 +kerning first=105 second=84 amount=-6 +kerning first=105 second=85 amount=-2 +kerning first=105 second=86 amount=-1 +kerning first=105 second=87 amount=-1 +kerning first=105 second=89 amount=-6 +kerning first=105 second=90 amount=-2 +kerning first=105 second=92 amount=-2 +kerning first=105 second=93 amount=-6 +kerning first=105 second=95 amount=-4 +kerning first=105 second=96 amount=-2 +kerning first=105 second=100 amount=-2 +kerning first=105 second=104 amount=-1 +kerning first=105 second=108 amount=-2 +kerning first=105 second=109 amount=-2 +kerning first=105 second=110 amount=-2 +kerning first=105 second=112 amount=-1 +kerning first=105 second=114 amount=-2 +kerning first=105 second=122 amount=-2 +kerning first=105 second=125 amount=-5 +kerning first=106 second=49 amount=-10 +kerning first=106 second=50 amount=-1 +kerning first=106 second=51 amount=-2 +kerning first=106 second=52 amount=-1 +kerning first=106 second=53 amount=-2 +kerning first=106 second=56 amount=-2 +kerning first=106 second=66 amount=-2 +kerning first=106 second=68 amount=-2 +kerning first=106 second=70 amount=-2 +kerning first=106 second=72 amount=-2 +kerning first=106 second=73 amount=-2 +kerning first=106 second=76 amount=-2 +kerning first=106 second=78 amount=-2 +kerning first=106 second=80 amount=-2 +kerning first=106 second=81 amount=-2 +kerning first=106 second=82 amount=-2 +kerning first=106 second=83 amount=-2 +kerning first=106 second=84 amount=-6 +kerning first=106 second=85 amount=-2 +kerning first=106 second=86 amount=-1 +kerning first=106 second=87 amount=-1 +kerning first=106 second=89 amount=-6 +kerning first=106 second=90 amount=-2 +kerning first=106 second=92 amount=-2 +kerning first=106 second=93 amount=-2 +kerning first=106 second=96 amount=-2 +kerning first=106 second=100 amount=-2 +kerning first=106 second=104 amount=-2 +kerning first=106 second=108 amount=-2 +kerning first=106 second=109 amount=-2 +kerning first=106 second=110 amount=-2 +kerning first=106 second=112 amount=-1 +kerning first=106 second=114 amount=-2 +kerning first=106 second=122 amount=-2 +kerning first=107 second=49 amount=-7 +kerning first=107 second=50 amount=-1 +kerning first=107 second=51 amount=-3 +kerning first=107 second=52 amount=-4 +kerning first=107 second=53 amount=-2 +kerning first=107 second=54 amount=-2 +kerning first=107 second=56 amount=-2 +kerning first=107 second=57 amount=-1 +kerning first=107 second=67 amount=-1 +kerning first=107 second=71 amount=-1 +kerning first=107 second=74 amount=-2 +kerning first=107 second=79 amount=-1 +kerning first=107 second=81 amount=-1 +kerning first=107 second=83 amount=-2 +kerning first=107 second=84 amount=-4 +kerning first=107 second=85 amount=-1 +kerning first=107 second=86 amount=-3 +kerning first=107 second=87 amount=-3 +kerning first=107 second=89 amount=-5 +kerning first=107 second=92 amount=-2 +kerning first=107 second=93 amount=-2 +kerning first=107 second=94 amount=-1 +kerning first=107 second=95 amount=-11 +kerning first=107 second=96 amount=-9 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-3 +kerning first=107 second=101 amount=-1 +kerning first=107 second=102 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=107 second=116 amount=-2 +kerning first=107 second=117 amount=-2 +kerning first=107 second=118 amount=-2 +kerning first=107 second=119 amount=-2 +kerning first=107 second=121 amount=-2 +kerning first=107 second=125 amount=-2 +kerning first=107 second=126 amount=-2 +kerning first=108 second=49 amount=-4 +kerning first=108 second=50 amount=-1 +kerning first=108 second=51 amount=-2 +kerning first=108 second=52 amount=-1 +kerning first=108 second=53 amount=-2 +kerning first=108 second=55 amount=-2 +kerning first=108 second=56 amount=-2 +kerning first=108 second=65 amount=-1 +kerning first=108 second=66 amount=-2 +kerning first=108 second=67 amount=-2 +kerning first=108 second=68 amount=-2 +kerning first=108 second=69 amount=-2 +kerning first=108 second=70 amount=-2 +kerning first=108 second=71 amount=-2 +kerning first=108 second=72 amount=-2 +kerning first=108 second=73 amount=-2 +kerning first=108 second=74 amount=-2 +kerning first=108 second=75 amount=-2 +kerning first=108 second=76 amount=-2 +kerning first=108 second=78 amount=-2 +kerning first=108 second=79 amount=-2 +kerning first=108 second=80 amount=-2 +kerning first=108 second=81 amount=-2 +kerning first=108 second=82 amount=-2 +kerning first=108 second=83 amount=-2 +kerning first=108 second=84 amount=-2 +kerning first=108 second=85 amount=-1 +kerning first=108 second=86 amount=-1 +kerning first=108 second=89 amount=-2 +kerning first=108 second=90 amount=-2 +kerning first=108 second=91 amount=-1 +kerning first=108 second=93 amount=-1 +kerning first=108 second=95 amount=-4 +kerning first=108 second=96 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=104 amount=-2 +kerning first=108 second=105 amount=-2 +kerning first=108 second=106 amount=-2 +kerning first=108 second=107 amount=-2 +kerning first=108 second=108 amount=-2 +kerning first=108 second=109 amount=-2 +kerning first=108 second=110 amount=-2 +kerning first=108 second=112 amount=-2 +kerning first=108 second=114 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=108 second=122 amount=-2 +kerning first=109 second=49 amount=-7 +kerning first=109 second=50 amount=-1 +kerning first=109 second=51 amount=-2 +kerning first=109 second=52 amount=-2 +kerning first=109 second=53 amount=-2 +kerning first=109 second=56 amount=-2 +kerning first=109 second=57 amount=-1 +kerning first=109 second=66 amount=-2 +kerning first=109 second=68 amount=-2 +kerning first=109 second=69 amount=-2 +kerning first=109 second=70 amount=-2 +kerning first=109 second=72 amount=-2 +kerning first=109 second=73 amount=-2 +kerning first=109 second=75 amount=-1 +kerning first=109 second=76 amount=-2 +kerning first=109 second=78 amount=-2 +kerning first=109 second=80 amount=-2 +kerning first=109 second=82 amount=-2 +kerning first=109 second=83 amount=-2 +kerning first=109 second=84 amount=-4 +kerning first=109 second=85 amount=-2 +kerning first=109 second=86 amount=-3 +kerning first=109 second=87 amount=-3 +kerning first=109 second=89 amount=-5 +kerning first=109 second=92 amount=-2 +kerning first=109 second=93 amount=-2 +kerning first=109 second=94 amount=-2 +kerning first=109 second=95 amount=-14 +kerning first=109 second=96 amount=-10 +kerning first=109 second=102 amount=-1 +kerning first=109 second=104 amount=-2 +kerning first=109 second=105 amount=-2 +kerning first=109 second=106 amount=-2 +kerning first=109 second=107 amount=-1 +kerning first=109 second=108 amount=-2 +kerning first=109 second=109 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=114 amount=-1 +kerning first=109 second=118 amount=-2 +kerning first=109 second=119 amount=-2 +kerning first=109 second=121 amount=-2 +kerning first=109 second=122 amount=-2 +kerning first=109 second=125 amount=-1 +kerning first=110 second=49 amount=-7 +kerning first=110 second=50 amount=-1 +kerning first=110 second=51 amount=-2 +kerning first=110 second=52 amount=-2 +kerning first=110 second=53 amount=-2 +kerning first=110 second=56 amount=-2 +kerning first=110 second=57 amount=-1 +kerning first=110 second=66 amount=-2 +kerning first=110 second=68 amount=-2 +kerning first=110 second=69 amount=-2 +kerning first=110 second=70 amount=-2 +kerning first=110 second=72 amount=-2 +kerning first=110 second=73 amount=-2 +kerning first=110 second=75 amount=-1 +kerning first=110 second=76 amount=-2 +kerning first=110 second=78 amount=-2 +kerning first=110 second=80 amount=-2 +kerning first=110 second=82 amount=-2 +kerning first=110 second=83 amount=-2 +kerning first=110 second=84 amount=-4 +kerning first=110 second=85 amount=-2 +kerning first=110 second=86 amount=-3 +kerning first=110 second=87 amount=-3 +kerning first=110 second=89 amount=-5 +kerning first=110 second=92 amount=-3 +kerning first=110 second=93 amount=-2 +kerning first=110 second=94 amount=-1 +kerning first=110 second=95 amount=-12 +kerning first=110 second=96 amount=-10 +kerning first=110 second=102 amount=-2 +kerning first=110 second=104 amount=-2 +kerning first=110 second=105 amount=-2 +kerning first=110 second=106 amount=-2 +kerning first=110 second=107 amount=-1 +kerning first=110 second=108 amount=-2 +kerning first=110 second=109 amount=-1 +kerning first=110 second=110 amount=-1 +kerning first=110 second=114 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=110 second=121 amount=-2 +kerning first=110 second=122 amount=-2 +kerning first=110 second=125 amount=-1 +kerning first=111 second=49 amount=-7 +kerning first=111 second=50 amount=-3 +kerning first=111 second=51 amount=-1 +kerning first=111 second=53 amount=-1 +kerning first=111 second=55 amount=-2 +kerning first=111 second=57 amount=-1 +kerning first=111 second=65 amount=-2 +kerning first=111 second=74 amount=-2 +kerning first=111 second=84 amount=-4 +kerning first=111 second=86 amount=-3 +kerning first=111 second=87 amount=-3 +kerning first=111 second=88 amount=-1 +kerning first=111 second=89 amount=-5 +kerning first=111 second=90 amount=-1 +kerning first=111 second=92 amount=-2 +kerning first=111 second=93 amount=-1 +kerning first=111 second=94 amount=-1 +kerning first=111 second=95 amount=-13 +kerning first=111 second=96 amount=-9 +kerning first=111 second=102 amount=-2 +kerning first=111 second=111 amount=1 +kerning first=111 second=118 amount=-2 +kerning first=111 second=119 amount=-2 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-2 +kerning first=111 second=122 amount=-1 +kerning first=111 second=125 amount=-2 +kerning first=112 second=49 amount=-6 +kerning first=112 second=50 amount=-2 +kerning first=112 second=51 amount=-2 +kerning first=112 second=55 amount=-2 +kerning first=112 second=57 amount=-1 +kerning first=112 second=81 amount=-2 +kerning first=112 second=84 amount=-3 +kerning first=112 second=86 amount=-3 +kerning first=112 second=87 amount=-3 +kerning first=112 second=88 amount=-2 +kerning first=112 second=89 amount=-4 +kerning first=112 second=90 amount=-1 +kerning first=112 second=92 amount=-2 +kerning first=112 second=93 amount=-1 +kerning first=112 second=94 amount=-1 +kerning first=112 second=95 amount=-9 +kerning first=112 second=96 amount=-9 +kerning first=112 second=118 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=112 second=122 amount=-1 +kerning first=112 second=125 amount=-2 +kerning first=113 second=49 amount=-7 +kerning first=113 second=50 amount=-2 +kerning first=113 second=51 amount=-1 +kerning first=113 second=84 amount=-4 +kerning first=113 second=86 amount=-2 +kerning first=113 second=87 amount=-2 +kerning first=113 second=89 amount=-4 +kerning first=113 second=92 amount=-1 +kerning first=113 second=96 amount=-10 +kerning first=114 second=49 amount=-7 +kerning first=114 second=50 amount=-5 +kerning first=114 second=51 amount=-5 +kerning first=114 second=52 amount=-4 +kerning first=114 second=53 amount=-5 +kerning first=114 second=55 amount=-4 +kerning first=114 second=56 amount=-2 +kerning first=114 second=65 amount=-3 +kerning first=114 second=74 amount=-4 +kerning first=114 second=77 amount=-1 +kerning first=114 second=83 amount=-4 +kerning first=114 second=84 amount=-4 +kerning first=114 second=85 amount=-1 +kerning first=114 second=86 amount=-2 +kerning first=114 second=87 amount=-2 +kerning first=114 second=88 amount=-4 +kerning first=114 second=89 amount=-5 +kerning first=114 second=90 amount=-4 +kerning first=114 second=92 amount=-2 +kerning first=114 second=93 amount=-2 +kerning first=114 second=95 amount=-8 +kerning first=114 second=96 amount=-9 +kerning first=114 second=97 amount=-1 +kerning first=114 second=99 amount=-1 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=111 amount=-2 +kerning first=114 second=113 amount=-2 +kerning first=114 second=115 amount=-2 +kerning first=114 second=122 amount=-2 +kerning first=114 second=125 amount=-1 +kerning first=115 second=49 amount=-6 +kerning first=115 second=50 amount=-1 +kerning first=115 second=51 amount=-2 +kerning first=115 second=57 amount=-1 +kerning first=115 second=84 amount=-3 +kerning first=115 second=86 amount=-2 +kerning first=115 second=87 amount=-2 +kerning first=115 second=89 amount=-4 +kerning first=115 second=92 amount=-2 +kerning first=115 second=93 amount=-1 +kerning first=115 second=95 amount=-10 +kerning first=115 second=96 amount=-9 +kerning first=115 second=122 amount=-2 +kerning first=115 second=125 amount=-2 +kerning first=116 second=49 amount=-7 +kerning first=116 second=50 amount=-3 +kerning first=116 second=51 amount=-3 +kerning first=116 second=52 amount=-2 +kerning first=116 second=53 amount=-2 +kerning first=116 second=55 amount=-2 +kerning first=116 second=56 amount=-1 +kerning first=116 second=65 amount=-1 +kerning first=116 second=74 amount=-2 +kerning first=116 second=77 amount=-1 +kerning first=116 second=83 amount=-2 +kerning first=116 second=84 amount=-4 +kerning first=116 second=86 amount=-2 +kerning first=116 second=87 amount=-1 +kerning first=116 second=88 amount=-1 +kerning first=116 second=89 amount=-3 +kerning first=116 second=90 amount=-2 +kerning first=116 second=92 amount=-1 +kerning first=116 second=93 amount=-1 +kerning first=116 second=95 amount=-7 +kerning first=116 second=96 amount=-3 +kerning first=116 second=97 amount=-2 +kerning first=116 second=99 amount=-2 +kerning first=116 second=100 amount=-1 +kerning first=116 second=103 amount=-2 +kerning first=116 second=111 amount=-2 +kerning first=116 second=125 amount=-2 +kerning first=117 second=49 amount=-7 +kerning first=117 second=50 amount=-2 +kerning first=117 second=51 amount=-1 +kerning first=117 second=52 amount=-2 +kerning first=117 second=53 amount=-2 +kerning first=117 second=55 amount=-2 +kerning first=117 second=56 amount=-2 +kerning first=117 second=65 amount=-2 +kerning first=117 second=66 amount=-2 +kerning first=117 second=68 amount=-2 +kerning first=117 second=70 amount=-2 +kerning first=117 second=72 amount=-2 +kerning first=117 second=73 amount=-2 +kerning first=117 second=74 amount=-2 +kerning first=117 second=76 amount=-2 +kerning first=117 second=78 amount=-2 +kerning first=117 second=80 amount=-2 +kerning first=117 second=82 amount=-2 +kerning first=117 second=83 amount=-2 +kerning first=117 second=84 amount=-4 +kerning first=117 second=85 amount=-2 +kerning first=117 second=86 amount=-2 +kerning first=117 second=87 amount=-2 +kerning first=117 second=88 amount=-1 +kerning first=117 second=89 amount=-4 +kerning first=117 second=90 amount=-1 +kerning first=117 second=92 amount=-2 +kerning first=117 second=93 amount=-2 +kerning first=117 second=95 amount=-12 +kerning first=117 second=96 amount=-10 +kerning first=117 second=104 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=117 second=106 amount=-2 +kerning first=117 second=108 amount=-2 +kerning first=117 second=122 amount=-2 +kerning first=117 second=125 amount=-1 +kerning first=118 second=49 amount=-6 +kerning first=118 second=50 amount=-5 +kerning first=118 second=51 amount=-3 +kerning first=118 second=52 amount=-3 +kerning first=118 second=53 amount=-3 +kerning first=118 second=55 amount=-3 +kerning first=118 second=56 amount=-1 +kerning first=118 second=65 amount=-2 +kerning first=118 second=74 amount=-3 +kerning first=118 second=77 amount=-1 +kerning first=118 second=83 amount=-2 +kerning first=118 second=84 amount=-3 +kerning first=118 second=86 amount=-1 +kerning first=118 second=87 amount=-1 +kerning first=118 second=88 amount=-3 +kerning first=118 second=89 amount=-3 +kerning first=118 second=90 amount=-4 +kerning first=118 second=92 amount=-1 +kerning first=118 second=93 amount=-1 +kerning first=118 second=95 amount=-12 +kerning first=118 second=96 amount=-8 +kerning first=118 second=99 amount=-2 +kerning first=118 second=100 amount=-2 +kerning first=118 second=103 amount=-1 +kerning first=118 second=125 amount=-2 +kerning first=119 second=46 amount=-3 +kerning first=119 second=49 amount=-7 +kerning first=119 second=50 amount=-5 +kerning first=119 second=51 amount=-4 +kerning first=119 second=52 amount=-3 +kerning first=119 second=53 amount=-3 +kerning first=119 second=55 amount=-3 +kerning first=119 second=56 amount=-1 +kerning first=119 second=65 amount=-3 +kerning first=119 second=74 amount=-3 +kerning first=119 second=77 amount=-1 +kerning first=119 second=83 amount=-2 +kerning first=119 second=84 amount=-4 +kerning first=119 second=86 amount=-2 +kerning first=119 second=87 amount=-2 +kerning first=119 second=88 amount=-3 +kerning first=119 second=89 amount=-4 +kerning first=119 second=90 amount=-4 +kerning first=119 second=92 amount=-1 +kerning first=119 second=93 amount=-1 +kerning first=119 second=95 amount=-13 +kerning first=119 second=96 amount=-9 +kerning first=119 second=97 amount=-1 +kerning first=119 second=99 amount=-2 +kerning first=119 second=100 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=111 amount=-1 +kerning first=119 second=125 amount=-2 +kerning first=120 second=49 amount=-6 +kerning first=120 second=51 amount=-2 +kerning first=120 second=52 amount=-1 +kerning first=120 second=53 amount=-1 +kerning first=120 second=56 amount=-1 +kerning first=120 second=83 amount=-1 +kerning first=120 second=84 amount=-3 +kerning first=120 second=86 amount=-1 +kerning first=120 second=87 amount=-1 +kerning first=120 second=89 amount=-3 +kerning first=120 second=92 amount=-2 +kerning first=120 second=93 amount=-1 +kerning first=120 second=95 amount=-11 +kerning first=120 second=96 amount=-8 +kerning first=120 second=97 amount=-2 +kerning first=120 second=99 amount=-2 +kerning first=120 second=100 amount=-2 +kerning first=120 second=103 amount=-2 +kerning first=120 second=111 amount=-2 +kerning first=121 second=49 amount=-6 +kerning first=121 second=50 amount=-5 +kerning first=121 second=51 amount=-4 +kerning first=121 second=52 amount=-3 +kerning first=121 second=53 amount=-3 +kerning first=121 second=55 amount=-3 +kerning first=121 second=56 amount=-1 +kerning first=121 second=65 amount=-2 +kerning first=121 second=74 amount=-3 +kerning first=121 second=77 amount=-1 +kerning first=121 second=83 amount=-2 +kerning first=121 second=84 amount=-4 +kerning first=121 second=86 amount=-2 +kerning first=121 second=87 amount=-2 +kerning first=121 second=88 amount=-3 +kerning first=121 second=89 amount=-4 +kerning first=121 second=90 amount=-4 +kerning first=121 second=92 amount=-1 +kerning first=121 second=93 amount=-1 +kerning first=121 second=95 amount=-5 +kerning first=121 second=96 amount=-9 +kerning first=121 second=97 amount=-2 +kerning first=121 second=99 amount=-2 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-1 +kerning first=121 second=103 amount=-2 +kerning first=121 second=111 amount=-2 +kerning first=121 second=113 amount=-1 +kerning first=121 second=125 amount=-2 +kerning first=122 second=49 amount=-7 +kerning first=122 second=50 amount=-1 +kerning first=122 second=51 amount=-3 +kerning first=122 second=52 amount=-5 +kerning first=122 second=53 amount=-2 +kerning first=122 second=56 amount=-1 +kerning first=122 second=73 amount=-1 +kerning first=122 second=78 amount=-1 +kerning first=122 second=83 amount=-2 +kerning first=122 second=84 amount=-4 +kerning first=122 second=85 amount=-2 +kerning first=122 second=86 amount=-2 +kerning first=122 second=87 amount=-2 +kerning first=122 second=89 amount=-4 +kerning first=122 second=92 amount=-1 +kerning first=122 second=93 amount=-2 +kerning first=122 second=95 amount=-13 +kerning first=122 second=96 amount=-9 +kerning first=122 second=97 amount=-1 +kerning first=122 second=99 amount=-1 +kerning first=122 second=100 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=122 second=103 amount=-1 +kerning first=122 second=108 amount=-1 +kerning first=122 second=111 amount=-1 +kerning first=122 second=113 amount=-1 +kerning first=122 second=125 amount=-2 +kerning first=123 second=49 amount=-4 +kerning first=123 second=50 amount=-2 +kerning first=123 second=51 amount=-3 +kerning first=123 second=52 amount=-2 +kerning first=123 second=53 amount=-1 +kerning first=123 second=54 amount=-2 +kerning first=123 second=56 amount=-1 +kerning first=123 second=57 amount=-1 +kerning first=123 second=65 amount=-2 +kerning first=123 second=67 amount=-1 +kerning first=123 second=71 amount=-1 +kerning first=123 second=74 amount=-2 +kerning first=123 second=79 amount=-1 +kerning first=123 second=81 amount=-2 +kerning first=123 second=83 amount=-1 +kerning first=123 second=94 amount=-1 +kerning first=123 second=95 amount=-6 +kerning first=123 second=96 amount=-2 +kerning first=123 second=97 amount=-2 +kerning first=123 second=99 amount=-1 +kerning first=123 second=100 amount=-2 +kerning first=123 second=101 amount=-2 +kerning first=123 second=102 amount=-2 +kerning first=123 second=105 amount=-1 +kerning first=123 second=109 amount=-1 +kerning first=123 second=110 amount=-1 +kerning first=123 second=111 amount=-2 +kerning first=123 second=113 amount=-2 +kerning first=123 second=114 amount=-1 +kerning first=123 second=115 amount=-2 +kerning first=123 second=116 amount=-2 +kerning first=123 second=117 amount=-1 +kerning first=123 second=118 amount=-2 +kerning first=123 second=119 amount=-1 +kerning first=123 second=121 amount=-2 +kerning first=123 second=122 amount=-1 +kerning first=123 second=126 amount=-1 +kerning first=124 second=49 amount=-3 +kerning first=124 second=50 amount=-2 +kerning first=124 second=51 amount=-1 +kerning first=124 second=52 amount=-2 +kerning first=124 second=96 amount=-2 +kerning first=125 second=49 amount=-4 +kerning first=125 second=50 amount=-1 +kerning first=125 second=51 amount=-1 +kerning first=125 second=52 amount=-2 +kerning first=125 second=90 amount=-1 +kerning first=125 second=93 amount=-1 +kerning first=125 second=96 amount=-1 +kerning first=125 second=123 amount=3 +kerning first=126 second=49 amount=-6 +kerning first=126 second=50 amount=-8 +kerning first=126 second=51 amount=-5 +kerning first=126 second=52 amount=-3 +kerning first=126 second=53 amount=-14 +kerning first=126 second=55 amount=-5 +kerning first=126 second=56 amount=-1 +kerning first=126 second=65 amount=-2 +kerning first=126 second=74 amount=-4 +kerning first=126 second=77 amount=-2 +kerning first=126 second=83 amount=-4 +kerning first=126 second=84 amount=-3 +kerning first=126 second=86 amount=-2 +kerning first=126 second=87 amount=-2 +kerning first=126 second=88 amount=-4 +kerning first=126 second=89 amount=-4 +kerning first=126 second=90 amount=-5 +kerning first=126 second=92 amount=-1 +kerning first=126 second=93 amount=-1 +kerning first=126 second=95 amount=-13 +kerning first=126 second=96 amount=-9 +kerning first=126 second=125 amount=-1 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/title.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/title.png new file mode 100644 index 0000000..a7c7974 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/white.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/window.9.png new file mode 100644 index 0000000..69b1b41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/raw/window.png b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/window.png new file mode 100644 index 0000000..d5c362e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.atlas b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.atlas new file mode 100644 index 0000000..e308b30 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.atlas @@ -0,0 +1,385 @@ + +cloud-form-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 311, 264 + size: 67, 29 + split: 7, 7, 6, 8 + pad: 7, 7, 4, 6 + orig: 67, 29 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 499, 498 + size: 12, 13 + orig: 12, 13 + offset: 0, 0 + index: -1 +button-close-over + rotate: false + xy: 16, 1 + size: 12, 13 + orig: 12, 13 + offset: 0, 0 + index: -1 +button-close-over-pressed + rotate: false + xy: 30, 1 + size: 12, 13 + orig: 12, 13 + offset: 0, 0 + index: -1 +button-close-pressed + rotate: false + xy: 44, 1 + size: 12, 13 + orig: 12, 13 + offset: 0, 0 + index: -1 +button-menu + rotate: false + xy: 456, 330 + size: 9, 15 + split: 4, 0, 0, 0 + pad: 6, 2, 2, 2 + orig: 9, 15 + offset: 0, 0 + index: -1 +button-menu-over + rotate: false + xy: 395, 278 + size: 9, 15 + split: 4, 0, 0, 0 + pad: 6, 2, 2, 2 + orig: 9, 15 + offset: 0, 0 + index: -1 +button-menu-pressed + rotate: false + xy: 380, 237 + size: 9, 15 + split: 4, 0, 0, 0 + pad: 6, 2, 2, 2 + orig: 9, 15 + offset: 0, 0 + index: -1 +button-menu-pressed-over + rotate: false + xy: 472, 434 + size: 9, 15 + split: 4, 0, 0, 0 + pad: 6, 2, 2, 2 + orig: 9, 15 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 81, 65 + size: 67, 29 + split: 7, 7, 6, 8 + pad: 7, 7, 4, 6 + orig: 67, 29 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 387, 316 + size: 67, 29 + split: 7, 7, 8, 6 + pad: 7, 7, 6, 4 + orig: 67, 29 + offset: 0, 0 + index: -1 +button-pressed-over + rotate: false + xy: 311, 233 + size: 67, 29 + split: 7, 7, 8, 6 + pad: 7, 7, 6, 4 + orig: 67, 29 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 1, 3 + size: 13, 11 + orig: 13, 11 + offset: 0, 0 + index: -1 +checkbox-over + rotate: false + xy: 380, 282 + size: 13, 11 + orig: 13, 11 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 472, 479 + size: 13, 11 + orig: 13, 11 + offset: 0, 0 + index: -1 +checkbox-pressed-over + rotate: false + xy: 81, 31 + size: 13, 11 + orig: 13, 11 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 387, 427 + size: 83, 84 + orig: 83, 84 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 387, 295 + size: 19, 19 + split: 6, 6, 7, 6 + pad: 6, 6, 6, 6 + orig: 19, 19 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 96, 37 + size: 8, 5 + orig: 8, 5 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 108, 46 + size: 8, 5 + orig: 8, 5 + offset: 0, 0 + index: -1 +progress-bar-circle + rotate: false + xy: 1, 16 + size: 78, 78 + orig: 78, 78 + offset: 0, 0 + index: -1 +progress-bar-circle-knob + rotate: false + xy: 387, 347 + size: 78, 78 + orig: 78, 78 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 123, 55 + size: 8, 8 + split: 2, 2, 1, 2 + pad: 2, 2, 0, 0 + orig: 8, 8 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 123, 55 + size: 8, 8 + split: 2, 2, 2, 2 + pad: 0, 0, 2, 2 + orig: 8, 8 + offset: 0, 0 + index: -1 +progress-bar-horizontal-knob + rotate: false + xy: 326, 189 + size: 1, 8 + orig: 1, 8 + offset: 0, 0 + index: -1 +progress-bar-vertical-knob + rotate: false + xy: 177, 81 + size: 8, 1 + orig: 8, 1 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 108, 53 + size: 13, 10 + orig: 13, 10 + offset: 0, 0 + index: -1 +radio-over + rotate: false + xy: 177, 84 + size: 13, 10 + orig: 13, 10 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 311, 187 + size: 13, 10 + orig: 13, 10 + offset: 0, 0 + index: -1 +radio-pressed-over + rotate: false + xy: 335, 221 + size: 13, 10 + orig: 13, 10 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 58, 2 + size: 5, 12 + orig: 5, 12 + offset: 0, 0 + index: -1 +scrollbar-horizontal-knob + rotate: false + xy: 487, 478 + size: 1, 12 + orig: 1, 12 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 499, 491 + size: 12, 5 + orig: 12, 5 + offset: 0, 0 + index: -1 +scrollbar-vertical-knob + rotate: false + xy: 150, 72 + size: 12, 1 + orig: 12, 1 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 472, 492 + size: 25, 19 + split: 4, 13, 8, 8 + pad: 3, 15, 3, 3 + orig: 25, 19 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 81, 44 + size: 25, 19 + split: 4, 13, 8, 8 + pad: 3, 15, 3, 3 + orig: 25, 19 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 150, 75 + size: 25, 19 + split: 4, 13, 8, 8 + pad: 3, 15, 3, 3 + orig: 25, 19 + offset: 0, 0 + index: -1 +sky + rotate: false + xy: 1, 295 + size: 384, 216 + orig: 384, 216 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 408, 302 + size: 12, 12 + split: 4, 4, 4, 4 + pad: 0, 0, 0, 0 + orig: 12, 12 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 81, 17 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +slider-knob-over + rotate: false + xy: 311, 173 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +slider-knob-pressed + rotate: false + xy: 335, 207 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 467, 424 + size: 2, 1 + orig: 2, 1 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 350, 229 + size: 1, 2 + orig: 1, 2 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 380, 254 + size: 13, 26 + split: 1, 1, 1, 1 + pad: 3, 3, 3, 3 + orig: 13, 26 + offset: 0, 0 + index: -1 +textfield-selected + rotate: false + xy: 472, 451 + size: 13, 26 + split: 1, 1, 1, 1 + pad: 3, 3, 3, 3 + orig: 13, 26 + offset: 0, 0 + index: -1 +title + rotate: false + xy: 1, 96 + size: 308, 197 + orig: 308, 197 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 192, 93 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 311, 199 + size: 22, 32 + split: 1, 1, 16, 1 + pad: 3, 3, 16, 1 + orig: 22, 32 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.json b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.json new file mode 100644 index 0000000..7cc3de7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.json @@ -0,0 +1,266 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: title.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + background: { + name: white + color: { + r: 1 + g: 1 + b: 1 + a: 0.7733333 + } + } + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } + highlight: { + name: white + color: { + r: 0.67058825 + g: 0.92156863 + b: 1 + a: 1 + } + } + selected: { + name: white + color: { + r: 0.23137255 + g: 0.49803922 + b: 1 + a: 1 + } + } + menu-bg: { + name: white + color: { + r: 0.9411765 + g: 0.9411765 + b: 0.9411765 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } + close: { + up: button-close + down: button-close-over-pressed + over: button-close-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-pressed + checkboxOff: checkbox + checkboxOver: checkbox-over + font: font + fontColor: black + } + radio: { + checkboxOn: radio-pressed + checkboxOff: radio + checkboxOver: radio-over + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-over + } + checkbox: { + imageUp: checkbox + imageDown: checkbox-pressed + imageOver: checkbox-over + imageChecked: checkbox-pressed + imageCheckedOver: checkbox-pressed-over + font: font + fontColor: black + } + radio: { + imageUp: radio + imageDown: radio + imageOver: radio-over + imageChecked: radio-pressed + imageCheckedOver: radio-pressed-over + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + title: { + font: title + fontColor: black + } + white: { + font: font + fontColor: white + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: black + fontColorUnselected: black + selection: button-menu-over + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-horizontal + knobBefore: progress-bar-horizontal-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollbar-horizontal + hScrollKnob: scrollbar-horizontal-knob + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box + scrollStyle: default + listStyle: default + backgroundOver: select-box-over + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-over + knobDown: slider-knob-pressed + background: slider + knob: slider-knob + } + default-vertical: { + knobOver: slider-knob-over + knobDown: slider-knob-pressed + background: slider + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-over + } + menu: { + font: font + fontColor: black + up: button-menu + down: button-menu-over + over: button-menu-over + checked: button-menu-pressed + checkedOver: button-menu-pressed-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + focusedBackground: textfield-selected + cursor: black + selection: highlight + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: button + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: progress-bar-circle-knob + knob: radio + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: white + } + dialog: { + background: window + titleFont: font + titleFontColor: white + stageBackground: background + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.png b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.png new file mode 100644 index 0000000..4195eb4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/cloud-form-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/font-export.fnt new file mode 100644 index 0000000..f1d9c20 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/font-export.fnt @@ -0,0 +1,732 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=83 scaleH=84 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=78 y=13 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=45 y=79 width=4 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=10 y=69 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=13 y=0 width=8 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=0 y=52 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=20 y=33 width=8 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=23 y=44 width=2 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=73 y=39 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=75 y=0 width=3 height=12 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=18 y=79 width=5 height=4 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=29 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=20 y=44 width=2 height=4 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=22 y=10 width=5 height=2 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=29 y=38 width=2 height=2 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=67 y=27 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=28 y=54 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=67 y=57 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=45 y=28 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=37 y=38 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=31 y=0 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=37 y=59 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=45 y=49 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=38 y=10 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=45 y=38 width=7 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=48 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=77 y=65 width=2 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=78 y=43 width=2 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=12 y=13 width=6 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=10 y=79 width=7 height=4 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=61 y=10 width=6 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=63 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=20 width=10 height=10 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=20 y=23 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=53 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=20 y=13 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=19 y=69 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=46 y=10 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=45 y=69 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=0 y=62 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=11 y=20 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=78 y=33 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=61 y=17 width=5 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=10 y=59 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=53 y=41 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=10 width=11 height=9 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=10 y=49 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=10 y=39 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=45 y=59 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=41 width=9 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=22 y=0 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=28 y=44 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=19 y=49 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=29 y=10 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=28 y=64 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=12 height=9 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=19 y=59 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=28 y=74 width=8 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=40 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=73 y=13 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=67 y=37 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=70 y=0 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=72 y=67 width=4 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=0 y=80 width=7 height=1 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=24 y=79 width=2 height=2 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=60 y=54 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=37 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=60 y=46 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=29 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=45 y=20 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=67 y=17 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=53 y=30 width=6 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=56 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=77 y=73 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=73 y=26 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=54 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=78 y=23 width=2 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=10 y=31 width=9 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=53 y=70 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=37 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=37 y=48 width=7 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=37 y=69 width=7 height=10 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=72 y=74 width=4 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=60 y=30 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=67 y=47 width=5 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=53 y=51 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=60 y=70 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=72 width=9 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=60 y=62 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=53 y=59 width=6 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=60 y=38 width=6 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=73 y=52 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=80 y=53 width=2 height=13 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=67 y=67 width=4 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=37 y=80 width=5 height=3 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=50 y=79 width=4 height=4 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=31 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=628 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-3 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-2 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-3 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-2 +kerning first=70 second=65 amount=-3 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-2 +kerning first=70 second=79 amount=-2 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-3 +kerning first=76 second=67 amount=-1 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-3 +kerning first=76 second=87 amount=-3 +kerning first=76 second=89 amount=-4 +kerning first=76 second=71 amount=-2 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-2 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-3 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-1 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=89 amount=-2 +kerning first=82 second=84 amount=-2 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-2 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-2 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-3 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-1 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-2 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-3 +kerning first=89 second=67 amount=-1 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-2 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-3 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-2 +kerning first=70 second=97 amount=-2 +kerning first=70 second=101 amount=-2 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-2 +kerning first=70 second=114 amount=-2 +kerning first=70 second=116 amount=-3 +kerning first=70 second=117 amount=-2 +kerning first=70 second=121 amount=-2 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-2 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-2 +kerning first=75 second=111 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-2 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=84 second=97 amount=-4 +kerning first=84 second=99 amount=-4 +kerning first=84 second=101 amount=-4 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-4 +kerning first=84 second=114 amount=-4 +kerning first=84 second=115 amount=-4 +kerning first=84 second=117 amount=-4 +kerning first=84 second=119 amount=-4 +kerning first=84 second=121 amount=-4 +kerning first=84 second=46 amount=-3 +kerning first=84 second=44 amount=-3 +kerning first=84 second=59 amount=-3 +kerning first=84 second=58 amount=-3 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-2 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-2 +kerning first=86 second=101 amount=-2 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=86 second=46 amount=-3 +kerning first=86 second=44 amount=-3 +kerning first=86 second=59 amount=-1 +kerning first=86 second=58 amount=-1 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-2 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=88 second=121 amount=-2 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-2 +kerning first=89 second=117 amount=-2 +kerning first=89 second=118 amount=-2 +kerning first=89 second=46 amount=-3 +kerning first=89 second=44 amount=-3 +kerning first=89 second=59 amount=-2 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=46 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=102 second=101 amount=-2 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=46 amount=-3 +kerning first=102 second=44 amount=-3 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=107 second=111 amount=-2 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-2 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-3 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-2 +kerning first=111 second=44 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-2 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-2 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-3 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-2 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-2 +kerning first=116 second=44 amount=-2 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-2 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-2 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=44 amount=-2 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-2 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-3 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-2 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-2 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-3 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-2 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=87 second=101 amount=-2 +kerning first=99 second=105 amount=-1 +kerning first=115 second=115 amount=-1 +kerning first=82 second=105 amount=-1 +kerning first=112 second=101 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=108 second=116 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=114 second=105 amount=-1 +kerning first=97 second=115 amount=-1 +kerning first=115 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=111 second=100 amount=-1 +kerning first=107 second=115 amount=-2 +kerning first=77 second=117 amount=-1 +kerning first=65 second=115 amount=-1 +kerning first=98 second=111 amount=-1 +kerning first=112 second=101 amount=-1 +kerning first=114 second=117 amount=-1 +kerning first=69 second=120 amount=-1 +kerning first=120 second=112 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/cloud-form/skin/title.fnt b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/title.fnt new file mode 100644 index 0000000..5f2756c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/cloud-form/skin/title.fnt @@ -0,0 +1,2817 @@ +info face=title size=32 bold=0 italic=0 charset= unicode= stretchH=100 smooth=1 aa=1 padding=2,2,2,2 spacing=0,0 outline=0 +common lineHeight=35 base=25 scaleW=308 scaleH=197 pages=1 packed=0 +page id=0 file="title.png" +chars count=97 +char id=33 x=2 y=2 width=3 height=23 xoffset=2 yoffset=2 xadvance=7 page=0 chnl=15 +char id=32 x=7 y=2 width=0 height=0 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=15 +char id=34 x=9 y=2 width=5 height=5 xoffset=2 yoffset=1 xadvance=9 page=0 chnl=15 +char id=35 x=16 y=2 width=16 height=14 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=15 +char id=36 x=34 y=2 width=14 height=27 xoffset=1 yoffset=0 xadvance=15 page=0 chnl=15 +char id=37 x=2 y=27 width=15 height=23 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=38 x=50 y=2 width=17 height=23 xoffset=1 yoffset=2 xadvance=19 page=0 chnl=15 +char id=39 x=7 y=9 width=2 height=5 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=15 +char id=40 x=19 y=18 width=4 height=26 xoffset=1 yoffset=1 xadvance=6 page=0 chnl=15 +char id=41 x=25 y=18 width=4 height=26 xoffset=2 yoffset=1 xadvance=6 page=0 chnl=15 +char id=42 x=69 y=2 width=9 height=10 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=15 +char id=43 x=80 y=2 width=8 height=8 xoffset=2 yoffset=12 xadvance=12 page=0 chnl=15 +char id=44 x=7 y=16 width=4 height=6 xoffset=1 yoffset=22 xadvance=6 page=0 chnl=15 +char id=45 x=90 y=2 width=7 height=2 xoffset=1 yoffset=16 xadvance=9 page=0 chnl=15 +char id=46 x=11 y=9 width=2 height=2 xoffset=1 yoffset=23 xadvance=4 page=0 chnl=15 +char id=47 x=99 y=2 width=8 height=24 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=15 +char id=48 x=50 y=27 width=17 height=24 xoffset=1 yoffset=1 xadvance=18 page=0 chnl=15 +char id=49 x=2 y=52 width=6 height=23 xoffset=6 yoffset=2 xadvance=17 page=0 chnl=15 +char id=50 x=10 y=52 width=14 height=23 xoffset=2 yoffset=2 xadvance=17 page=0 chnl=15 +char id=51 x=26 y=46 width=13 height=24 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=52 x=69 y=14 width=16 height=24 xoffset=1 yoffset=1 xadvance=17 page=0 chnl=15 +char id=53 x=109 y=2 width=16 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=54 x=127 y=2 width=16 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=55 x=145 y=2 width=17 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=56 x=164 y=2 width=14 height=24 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=57 x=180 y=2 width=16 height=24 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=58 x=31 y=31 width=2 height=12 xoffset=2 yoffset=13 xadvance=5 page=0 chnl=15 +char id=59 x=41 y=31 width=4 height=15 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=15 +char id=60 x=87 y=12 width=8 height=10 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=15 +char id=61 x=87 y=24 width=8 height=6 xoffset=1 yoffset=14 xadvance=9 page=0 chnl=15 +char id=62 x=198 y=2 width=8 height=10 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=15 +char id=63 x=208 y=2 width=13 height=24 xoffset=1 yoffset=1 xadvance=15 page=0 chnl=15 +char id=64 x=223 y=2 width=17 height=17 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=15 +char id=65 x=242 y=2 width=19 height=24 xoffset=1 yoffset=1 xadvance=20 page=0 chnl=15 +char id=66 x=223 y=21 width=15 height=23 xoffset=2 yoffset=2 xadvance=18 page=0 chnl=15 +char id=67 x=69 y=40 width=20 height=24 xoffset=2 yoffset=1 xadvance=22 page=0 chnl=15 +char id=68 x=41 y=53 width=18 height=23 xoffset=2 yoffset=2 xadvance=22 page=0 chnl=15 +char id=69 x=2 y=77 width=11 height=23 xoffset=2 yoffset=2 xadvance=15 page=0 chnl=15 +char id=70 x=15 y=77 width=10 height=23 xoffset=2 yoffset=2 xadvance=14 page=0 chnl=15 +char id=71 x=91 y=32 width=24 height=24 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=15 +char id=72 x=117 y=28 width=16 height=23 xoffset=2 yoffset=2 xadvance=20 page=0 chnl=15 +char id=73 x=27 y=72 width=2 height=23 xoffset=2 yoffset=2 xadvance=6 page=0 chnl=15 +char id=74 x=31 y=72 width=8 height=23 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=15 +char id=75 x=135 y=28 width=14 height=23 xoffset=2 yoffset=2 xadvance=17 page=0 chnl=15 +char id=76 x=151 y=28 width=8 height=23 xoffset=2 yoffset=2 xadvance=11 page=0 chnl=15 +char id=77 x=161 y=28 width=28 height=24 xoffset=1 yoffset=1 xadvance=29 page=0 chnl=15 +char id=78 x=117 y=53 width=19 height=24 xoffset=2 yoffset=2 xadvance=23 page=0 chnl=15 +char id=79 x=41 y=78 width=24 height=24 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=15 +char id=80 x=2 y=102 width=12 height=23 xoffset=2 yoffset=2 xadvance=16 page=0 chnl=15 +char id=81 x=67 y=66 width=24 height=27 xoffset=2 yoffset=1 xadvance=26 page=0 chnl=15 +char id=82 x=16 y=102 width=13 height=23 xoffset=2 yoffset=2 xadvance=15 page=0 chnl=15 +char id=83 x=93 y=58 width=14 height=24 xoffset=1 yoffset=2 xadvance=16 page=0 chnl=15 +char id=84 x=138 y=53 width=12 height=23 xoffset=1 yoffset=2 xadvance=14 page=0 chnl=15 +char id=85 x=191 y=28 width=14 height=23 xoffset=2 yoffset=2 xadvance=18 page=0 chnl=15 +char id=86 x=263 y=2 width=15 height=23 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=87 x=280 y=2 width=26 height=24 xoffset=1 yoffset=1 xadvance=28 page=0 chnl=15 +char id=88 x=263 y=27 width=15 height=23 xoffset=1 yoffset=2 xadvance=17 page=0 chnl=15 +char id=89 x=207 y=46 width=15 height=23 xoffset=1 yoffset=2 xadvance=16 page=0 chnl=15 +char id=90 x=152 y=54 width=16 height=23 xoffset=1 yoffset=2 xadvance=18 page=0 chnl=15 +char id=91 x=31 y=97 width=4 height=26 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=15 +char id=92 x=138 y=78 width=8 height=23 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=15 +char id=93 x=67 y=95 width=4 height=26 xoffset=2 yoffset=0 xadvance=7 page=0 chnl=15 +char id=94 x=207 y=28 width=9 height=9 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=15 +char id=95 x=207 y=39 width=12 height=2 xoffset=0 yoffset=30 xadvance=11 page=0 chnl=15 +char id=96 x=61 y=53 width=5 height=5 xoffset=3 yoffset=5 xadvance=11 page=0 chnl=15 +char id=97 x=37 y=104 width=14 height=14 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=98 x=37 y=120 width=14 height=24 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=99 x=2 y=127 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=15 +char id=100 x=2 y=143 width=14 height=24 xoffset=1 yoffset=1 xadvance=17 page=0 chnl=15 +char id=101 x=15 y=127 width=14 height=14 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=102 x=18 y=143 width=7 height=24 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=15 +char id=103 x=73 y=95 width=14 height=20 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=104 x=53 y=104 width=11 height=24 xoffset=2 yoffset=1 xadvance=15 page=0 chnl=15 +char id=105 x=27 y=143 width=2 height=18 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=15 +char id=106 x=31 y=125 width=2 height=24 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=15 +char id=107 x=89 y=95 width=11 height=24 xoffset=2 yoffset=1 xadvance=13 page=0 chnl=15 +char id=108 x=73 y=117 width=2 height=24 xoffset=2 yoffset=1 xadvance=6 page=0 chnl=15 +char id=109 x=53 y=130 width=17 height=14 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=15 +char id=110 x=102 y=84 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=15 +char id=111 x=102 y=100 width=14 height=14 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=112 x=118 y=79 width=14 height=20 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=15 +char id=113 x=118 y=101 width=14 height=20 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=114 x=77 y=121 width=7 height=14 xoffset=2 yoffset=11 xadvance=10 page=0 chnl=15 +char id=115 x=86 y=121 width=9 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=116 x=97 y=121 width=7 height=19 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=15 +char id=117 x=77 y=137 width=10 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=15 +char id=118 x=31 y=151 width=13 height=14 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=119 x=46 y=146 width=21 height=14 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=15 +char id=120 x=170 y=54 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=15 +char id=121 x=170 y=70 width=13 height=20 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=122 x=183 y=54 width=12 height=14 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=123 x=69 y=146 width=6 height=26 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=15 +char id=124 x=2 y=169 width=1 height=26 xoffset=2 yoffset=0 xadvance=4 page=0 chnl=15 +char id=125 x=5 y=169 width=6 height=26 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=15 +char id=126 x=102 y=116 width=12 height=3 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=15 +char id=8226 x=93 y=84 width=6 height=6 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=15 +char id=169 x=13 y=169 width=17 height=17 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=15 +char id=32 x=0 y=0 width=0 height=0 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=15 +kernings count=2714 +kerning first=48 second=49 amount=-5 +kerning first=48 second=50 amount=-1 +kerning first=48 second=51 amount=-1 +kerning first=48 second=52 amount=-2 +kerning first=48 second=55 amount=-1 +kerning first=48 second=65 amount=-1 +kerning first=48 second=74 amount=-1 +kerning first=48 second=84 amount=-2 +kerning first=48 second=86 amount=-2 +kerning first=48 second=87 amount=-2 +kerning first=48 second=88 amount=-1 +kerning first=48 second=89 amount=-1 +kerning first=48 second=90 amount=-2 +kerning first=48 second=93 amount=-1 +kerning first=48 second=95 amount=-12 +kerning first=48 second=96 amount=-1 +kerning first=48 second=123 amount=3 +kerning first=49 second=48 amount=-3 +kerning first=49 second=49 amount=-9 +kerning first=49 second=50 amount=-6 +kerning first=49 second=51 amount=-6 +kerning first=49 second=52 amount=-5 +kerning first=49 second=53 amount=-5 +kerning first=49 second=54 amount=-4 +kerning first=49 second=55 amount=-4 +kerning first=49 second=56 amount=-5 +kerning first=49 second=57 amount=-4 +kerning first=49 second=65 amount=-4 +kerning first=49 second=66 amount=-5 +kerning first=49 second=67 amount=-4 +kerning first=49 second=68 amount=-5 +kerning first=49 second=69 amount=-5 +kerning first=49 second=70 amount=-5 +kerning first=49 second=71 amount=-4 +kerning first=49 second=72 amount=-5 +kerning first=49 second=73 amount=-5 +kerning first=49 second=74 amount=-4 +kerning first=49 second=75 amount=-5 +kerning first=49 second=76 amount=-5 +kerning first=49 second=77 amount=-4 +kerning first=49 second=78 amount=-5 +kerning first=49 second=79 amount=-4 +kerning first=49 second=80 amount=-5 +kerning first=49 second=81 amount=-5 +kerning first=49 second=82 amount=-5 +kerning first=49 second=83 amount=-5 +kerning first=49 second=84 amount=-5 +kerning first=49 second=85 amount=-5 +kerning first=49 second=86 amount=-4 +kerning first=49 second=87 amount=-4 +kerning first=49 second=88 amount=-4 +kerning first=49 second=89 amount=-4 +kerning first=49 second=90 amount=-5 +kerning first=49 second=91 amount=-4 +kerning first=49 second=92 amount=-4 +kerning first=49 second=93 amount=-7 +kerning first=49 second=94 amount=-4 +kerning first=49 second=95 amount=-12 +kerning first=49 second=96 amount=-6 +kerning first=49 second=97 amount=-4 +kerning first=49 second=98 amount=-4 +kerning first=49 second=99 amount=-4 +kerning first=49 second=100 amount=-5 +kerning first=49 second=101 amount=-4 +kerning first=49 second=102 amount=-4 +kerning first=49 second=103 amount=-4 +kerning first=49 second=104 amount=-5 +kerning first=49 second=105 amount=-5 +kerning first=49 second=106 amount=-5 +kerning first=49 second=107 amount=-5 +kerning first=49 second=108 amount=-5 +kerning first=49 second=109 amount=-5 +kerning first=49 second=110 amount=-5 +kerning first=49 second=111 amount=-4 +kerning first=49 second=112 amount=-5 +kerning first=49 second=113 amount=-4 +kerning first=49 second=114 amount=-5 +kerning first=49 second=115 amount=-4 +kerning first=49 second=116 amount=-4 +kerning first=49 second=117 amount=-4 +kerning first=49 second=118 amount=-4 +kerning first=49 second=119 amount=-4 +kerning first=49 second=120 amount=-3 +kerning first=49 second=121 amount=-4 +kerning first=49 second=122 amount=-5 +kerning first=49 second=123 amount=-3 +kerning first=49 second=124 amount=-4 +kerning first=49 second=125 amount=-4 +kerning first=49 second=126 amount=-4 +kerning first=50 second=49 amount=-6 +kerning first=50 second=50 amount=-1 +kerning first=50 second=51 amount=-2 +kerning first=50 second=52 amount=-6 +kerning first=50 second=53 amount=-2 +kerning first=50 second=54 amount=-1 +kerning first=50 second=55 amount=-1 +kerning first=50 second=56 amount=-1 +kerning first=50 second=66 amount=-2 +kerning first=50 second=67 amount=-2 +kerning first=50 second=68 amount=-2 +kerning first=50 second=69 amount=-2 +kerning first=50 second=70 amount=-2 +kerning first=50 second=71 amount=-2 +kerning first=50 second=72 amount=-2 +kerning first=50 second=73 amount=-2 +kerning first=50 second=74 amount=-2 +kerning first=50 second=75 amount=-2 +kerning first=50 second=76 amount=-2 +kerning first=50 second=78 amount=-2 +kerning first=50 second=79 amount=-2 +kerning first=50 second=80 amount=-2 +kerning first=50 second=81 amount=-1 +kerning first=50 second=82 amount=-2 +kerning first=50 second=83 amount=-1 +kerning first=50 second=84 amount=-2 +kerning first=50 second=85 amount=-2 +kerning first=50 second=86 amount=-1 +kerning first=50 second=87 amount=-1 +kerning first=50 second=89 amount=-2 +kerning first=50 second=90 amount=-2 +kerning first=50 second=92 amount=-2 +kerning first=50 second=93 amount=-2 +kerning first=50 second=94 amount=-2 +kerning first=50 second=95 amount=-13 +kerning first=50 second=96 amount=-1 +kerning first=50 second=97 amount=-2 +kerning first=50 second=99 amount=-2 +kerning first=50 second=100 amount=-2 +kerning first=50 second=101 amount=-1 +kerning first=50 second=102 amount=-2 +kerning first=50 second=103 amount=-2 +kerning first=50 second=104 amount=-2 +kerning first=50 second=105 amount=-2 +kerning first=50 second=106 amount=-2 +kerning first=50 second=107 amount=-2 +kerning first=50 second=108 amount=-2 +kerning first=50 second=109 amount=-2 +kerning first=50 second=110 amount=-2 +kerning first=50 second=111 amount=-2 +kerning first=50 second=112 amount=-2 +kerning first=50 second=113 amount=-1 +kerning first=50 second=114 amount=-2 +kerning first=50 second=115 amount=-2 +kerning first=50 second=116 amount=-1 +kerning first=50 second=117 amount=-1 +kerning first=50 second=118 amount=-2 +kerning first=50 second=119 amount=-2 +kerning first=50 second=121 amount=-2 +kerning first=50 second=122 amount=-2 +kerning first=50 second=125 amount=-1 +kerning first=50 second=126 amount=-1 +kerning first=51 second=49 amount=-6 +kerning first=51 second=50 amount=-2 +kerning first=51 second=51 amount=-2 +kerning first=51 second=52 amount=-1 +kerning first=51 second=53 amount=-2 +kerning first=51 second=55 amount=-2 +kerning first=51 second=56 amount=-1 +kerning first=51 second=57 amount=-2 +kerning first=51 second=65 amount=-1 +kerning first=51 second=66 amount=-1 +kerning first=51 second=67 amount=-1 +kerning first=51 second=68 amount=-1 +kerning first=51 second=69 amount=-2 +kerning first=51 second=70 amount=-1 +kerning first=51 second=71 amount=-1 +kerning first=51 second=72 amount=-1 +kerning first=51 second=73 amount=-1 +kerning first=51 second=74 amount=-1 +kerning first=51 second=75 amount=-2 +kerning first=51 second=76 amount=-1 +kerning first=51 second=77 amount=-2 +kerning first=51 second=78 amount=-1 +kerning first=51 second=79 amount=-1 +kerning first=51 second=80 amount=-1 +kerning first=51 second=81 amount=-1 +kerning first=51 second=82 amount=-1 +kerning first=51 second=83 amount=-2 +kerning first=51 second=84 amount=-2 +kerning first=51 second=85 amount=-1 +kerning first=51 second=86 amount=-1 +kerning first=51 second=87 amount=-1 +kerning first=51 second=88 amount=-2 +kerning first=51 second=89 amount=-2 +kerning first=51 second=90 amount=-2 +kerning first=51 second=91 amount=-2 +kerning first=51 second=92 amount=-1 +kerning first=51 second=93 amount=-2 +kerning first=51 second=94 amount=-1 +kerning first=51 second=95 amount=-14 +kerning first=51 second=96 amount=-2 +kerning first=51 second=98 amount=-1 +kerning first=51 second=99 amount=-1 +kerning first=51 second=100 amount=-1 +kerning first=51 second=102 amount=-1 +kerning first=51 second=104 amount=-1 +kerning first=51 second=105 amount=-2 +kerning first=51 second=106 amount=-2 +kerning first=51 second=107 amount=-2 +kerning first=51 second=108 amount=-1 +kerning first=51 second=109 amount=-2 +kerning first=51 second=110 amount=-2 +kerning first=51 second=112 amount=-2 +kerning first=51 second=114 amount=-2 +kerning first=51 second=115 amount=-2 +kerning first=51 second=116 amount=-1 +kerning first=51 second=117 amount=-2 +kerning first=51 second=118 amount=-1 +kerning first=51 second=119 amount=-1 +kerning first=51 second=120 amount=-1 +kerning first=51 second=121 amount=-1 +kerning first=51 second=122 amount=-2 +kerning first=51 second=125 amount=-2 +kerning first=51 second=126 amount=-1 +kerning first=52 second=49 amount=-5 +kerning first=52 second=50 amount=-2 +kerning first=52 second=51 amount=-2 +kerning first=52 second=55 amount=-2 +kerning first=52 second=57 amount=-2 +kerning first=52 second=65 amount=-2 +kerning first=52 second=74 amount=-2 +kerning first=52 second=84 amount=-1 +kerning first=52 second=86 amount=-2 +kerning first=52 second=87 amount=-2 +kerning first=52 second=88 amount=-2 +kerning first=52 second=89 amount=-2 +kerning first=52 second=90 amount=-1 +kerning first=52 second=93 amount=-1 +kerning first=52 second=94 amount=-2 +kerning first=52 second=95 amount=-12 +kerning first=52 second=96 amount=-2 +kerning first=52 second=102 amount=-2 +kerning first=52 second=119 amount=-2 +kerning first=52 second=121 amount=-1 +kerning first=52 second=122 amount=-1 +kerning first=53 second=49 amount=-5 +kerning first=53 second=50 amount=-3 +kerning first=53 second=51 amount=-1 +kerning first=53 second=52 amount=-1 +kerning first=53 second=53 amount=-2 +kerning first=53 second=55 amount=-1 +kerning first=53 second=57 amount=-2 +kerning first=53 second=65 amount=-1 +kerning first=53 second=74 amount=-1 +kerning first=53 second=77 amount=-2 +kerning first=53 second=84 amount=-1 +kerning first=53 second=86 amount=-1 +kerning first=53 second=87 amount=-2 +kerning first=53 second=88 amount=-1 +kerning first=53 second=89 amount=-1 +kerning first=53 second=90 amount=-2 +kerning first=53 second=92 amount=-2 +kerning first=53 second=93 amount=-2 +kerning first=53 second=94 amount=-2 +kerning first=53 second=95 amount=-13 +kerning first=53 second=96 amount=-8 +kerning first=53 second=122 amount=-2 +kerning first=54 second=49 amount=-7 +kerning first=54 second=50 amount=-3 +kerning first=54 second=51 amount=-1 +kerning first=54 second=52 amount=-2 +kerning first=54 second=55 amount=-1 +kerning first=54 second=57 amount=-2 +kerning first=54 second=65 amount=-1 +kerning first=54 second=74 amount=-1 +kerning first=54 second=84 amount=-4 +kerning first=54 second=86 amount=-3 +kerning first=54 second=87 amount=-3 +kerning first=54 second=88 amount=-1 +kerning first=54 second=89 amount=-5 +kerning first=54 second=90 amount=-2 +kerning first=54 second=92 amount=-2 +kerning first=54 second=93 amount=-2 +kerning first=54 second=94 amount=-1 +kerning first=54 second=95 amount=-13 +kerning first=54 second=96 amount=-9 +kerning first=54 second=122 amount=-2 +kerning first=54 second=125 amount=-2 +kerning first=55 second=48 amount=-1 +kerning first=55 second=49 amount=-4 +kerning first=55 second=50 amount=-3 +kerning first=55 second=51 amount=-3 +kerning first=55 second=52 amount=-10 +kerning first=55 second=53 amount=-4 +kerning first=55 second=54 amount=-4 +kerning first=55 second=56 amount=-2 +kerning first=55 second=57 amount=-2 +kerning first=55 second=65 amount=-6 +kerning first=55 second=66 amount=-1 +kerning first=55 second=67 amount=-3 +kerning first=55 second=68 amount=-1 +kerning first=55 second=70 amount=-1 +kerning first=55 second=71 amount=-3 +kerning first=55 second=72 amount=-1 +kerning first=55 second=73 amount=-1 +kerning first=55 second=74 amount=-4 +kerning first=55 second=76 amount=-1 +kerning first=55 second=77 amount=-4 +kerning first=55 second=78 amount=-2 +kerning first=55 second=79 amount=-3 +kerning first=55 second=80 amount=-1 +kerning first=55 second=81 amount=-4 +kerning first=55 second=82 amount=-1 +kerning first=55 second=83 amount=-2 +kerning first=55 second=85 amount=-2 +kerning first=55 second=90 amount=-1 +kerning first=55 second=93 amount=-2 +kerning first=55 second=94 amount=-2 +kerning first=55 second=95 amount=-12 +kerning first=55 second=96 amount=-2 +kerning first=55 second=97 amount=-7 +kerning first=55 second=99 amount=-7 +kerning first=55 second=100 amount=-7 +kerning first=55 second=101 amount=-7 +kerning first=55 second=102 amount=-1 +kerning first=55 second=103 amount=-7 +kerning first=55 second=104 amount=-1 +kerning first=55 second=105 amount=-3 +kerning first=55 second=106 amount=-3 +kerning first=55 second=108 amount=-1 +kerning first=55 second=109 amount=-5 +kerning first=55 second=110 amount=-5 +kerning first=55 second=111 amount=-7 +kerning first=55 second=112 amount=-5 +kerning first=55 second=113 amount=-7 +kerning first=55 second=114 amount=-5 +kerning first=55 second=115 amount=-6 +kerning first=55 second=116 amount=-2 +kerning first=55 second=117 amount=-5 +kerning first=55 second=118 amount=-5 +kerning first=55 second=119 amount=-5 +kerning first=55 second=120 amount=-4 +kerning first=55 second=121 amount=-5 +kerning first=55 second=122 amount=-6 +kerning first=55 second=126 amount=-5 +kerning first=56 second=49 amount=-6 +kerning first=56 second=50 amount=-2 +kerning first=56 second=51 amount=-2 +kerning first=56 second=52 amount=-1 +kerning first=56 second=53 amount=-2 +kerning first=56 second=55 amount=-2 +kerning first=56 second=56 amount=-2 +kerning first=56 second=57 amount=-2 +kerning first=56 second=65 amount=-1 +kerning first=56 second=66 amount=-2 +kerning first=56 second=67 amount=-2 +kerning first=56 second=68 amount=-2 +kerning first=56 second=69 amount=-2 +kerning first=56 second=70 amount=-2 +kerning first=56 second=71 amount=-2 +kerning first=56 second=72 amount=-2 +kerning first=56 second=73 amount=-2 +kerning first=56 second=74 amount=-1 +kerning first=56 second=75 amount=-2 +kerning first=56 second=76 amount=-2 +kerning first=56 second=77 amount=-2 +kerning first=56 second=78 amount=-2 +kerning first=56 second=79 amount=-2 +kerning first=56 second=80 amount=-2 +kerning first=56 second=81 amount=-1 +kerning first=56 second=82 amount=-2 +kerning first=56 second=83 amount=-2 +kerning first=56 second=84 amount=-2 +kerning first=56 second=85 amount=-2 +kerning first=56 second=86 amount=-2 +kerning first=56 second=87 amount=-2 +kerning first=56 second=88 amount=-1 +kerning first=56 second=89 amount=-2 +kerning first=56 second=90 amount=-2 +kerning first=56 second=92 amount=-1 +kerning first=56 second=93 amount=-2 +kerning first=56 second=94 amount=-2 +kerning first=56 second=95 amount=-14 +kerning first=56 second=96 amount=-2 +kerning first=56 second=100 amount=-2 +kerning first=56 second=102 amount=-1 +kerning first=56 second=104 amount=-2 +kerning first=56 second=105 amount=-2 +kerning first=56 second=106 amount=-2 +kerning first=56 second=107 amount=-2 +kerning first=56 second=108 amount=-2 +kerning first=56 second=109 amount=-2 +kerning first=56 second=110 amount=-2 +kerning first=56 second=112 amount=-1 +kerning first=56 second=114 amount=-2 +kerning first=56 second=116 amount=-1 +kerning first=56 second=117 amount=-1 +kerning first=56 second=118 amount=-1 +kerning first=56 second=119 amount=-1 +kerning first=56 second=120 amount=-1 +kerning first=56 second=121 amount=-1 +kerning first=56 second=122 amount=-2 +kerning first=56 second=125 amount=-1 +kerning first=56 second=126 amount=-1 +kerning first=57 second=49 amount=-6 +kerning first=57 second=50 amount=-1 +kerning first=57 second=51 amount=-1 +kerning first=57 second=52 amount=-3 +kerning first=57 second=53 amount=-2 +kerning first=57 second=55 amount=-2 +kerning first=57 second=56 amount=-2 +kerning first=57 second=65 amount=-3 +kerning first=57 second=74 amount=-4 +kerning first=57 second=77 amount=-1 +kerning first=57 second=83 amount=-2 +kerning first=57 second=84 amount=-2 +kerning first=57 second=86 amount=-2 +kerning first=57 second=87 amount=-2 +kerning first=57 second=88 amount=-1 +kerning first=57 second=89 amount=-1 +kerning first=57 second=90 amount=-2 +kerning first=57 second=93 amount=-1 +kerning first=57 second=95 amount=-13 +kerning first=57 second=96 amount=-2 +kerning first=57 second=97 amount=-1 +kerning first=57 second=99 amount=-2 +kerning first=57 second=100 amount=-1 +kerning first=57 second=103 amount=-1 +kerning first=57 second=111 amount=-1 +kerning first=57 second=125 amount=-2 +kerning first=65 second=48 amount=-1 +kerning first=65 second=49 amount=-7 +kerning first=65 second=50 amount=-1 +kerning first=65 second=51 amount=-2 +kerning first=65 second=52 amount=-2 +kerning first=65 second=53 amount=-1 +kerning first=65 second=54 amount=-2 +kerning first=65 second=56 amount=-1 +kerning first=65 second=57 amount=-3 +kerning first=65 second=66 amount=-1 +kerning first=65 second=67 amount=-2 +kerning first=65 second=68 amount=-1 +kerning first=65 second=70 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=72 amount=-1 +kerning first=65 second=73 amount=-2 +kerning first=65 second=74 amount=-2 +kerning first=65 second=76 amount=-1 +kerning first=65 second=78 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=80 amount=-1 +kerning first=65 second=81 amount=-3 +kerning first=65 second=82 amount=-1 +kerning first=65 second=83 amount=-1 +kerning first=65 second=84 amount=-4 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-5 +kerning first=65 second=87 amount=-5 +kerning first=65 second=89 amount=-5 +kerning first=65 second=90 amount=-1 +kerning first=65 second=92 amount=-4 +kerning first=65 second=93 amount=-2 +kerning first=65 second=94 amount=-3 +kerning first=65 second=95 amount=-13 +kerning first=65 second=96 amount=-7 +kerning first=65 second=97 amount=-1 +kerning first=65 second=99 amount=-2 +kerning first=65 second=100 amount=-2 +kerning first=65 second=102 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=65 second=104 amount=-1 +kerning first=65 second=108 amount=-2 +kerning first=65 second=111 amount=-1 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-3 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-3 +kerning first=65 second=125 amount=-2 +kerning first=65 second=126 amount=-2 +kerning first=66 second=49 amount=-7 +kerning first=66 second=50 amount=-3 +kerning first=66 second=51 amount=-1 +kerning first=66 second=52 amount=-2 +kerning first=66 second=55 amount=-1 +kerning first=66 second=57 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=66 second=74 amount=-1 +kerning first=66 second=84 amount=-3 +kerning first=66 second=86 amount=-3 +kerning first=66 second=87 amount=-2 +kerning first=66 second=88 amount=-1 +kerning first=66 second=89 amount=-3 +kerning first=66 second=90 amount=-2 +kerning first=66 second=92 amount=-2 +kerning first=66 second=93 amount=-2 +kerning first=66 second=94 amount=-2 +kerning first=66 second=95 amount=-13 +kerning first=66 second=96 amount=-3 +kerning first=66 second=102 amount=-2 +kerning first=66 second=116 amount=-1 +kerning first=66 second=118 amount=-2 +kerning first=66 second=119 amount=-2 +kerning first=66 second=120 amount=-2 +kerning first=66 second=121 amount=-2 +kerning first=66 second=122 amount=-2 +kerning first=66 second=125 amount=-1 +kerning first=67 second=48 amount=-1 +kerning first=67 second=49 amount=-6 +kerning first=67 second=50 amount=-3 +kerning first=67 second=51 amount=-3 +kerning first=67 second=52 amount=-10 +kerning first=67 second=53 amount=-2 +kerning first=67 second=54 amount=-1 +kerning first=67 second=55 amount=-2 +kerning first=67 second=56 amount=-2 +kerning first=67 second=57 amount=-2 +kerning first=67 second=65 amount=-2 +kerning first=67 second=66 amount=-2 +kerning first=67 second=67 amount=-3 +kerning first=67 second=68 amount=-2 +kerning first=67 second=69 amount=-1 +kerning first=67 second=70 amount=-2 +kerning first=67 second=71 amount=-3 +kerning first=67 second=72 amount=-2 +kerning first=67 second=73 amount=-2 +kerning first=67 second=74 amount=-1 +kerning first=67 second=75 amount=-1 +kerning first=67 second=76 amount=-2 +kerning first=67 second=77 amount=-1 +kerning first=67 second=78 amount=-2 +kerning first=67 second=79 amount=-3 +kerning first=67 second=80 amount=-2 +kerning first=67 second=81 amount=-1 +kerning first=67 second=82 amount=-2 +kerning first=67 second=83 amount=-2 +kerning first=67 second=84 amount=-2 +kerning first=67 second=85 amount=-2 +kerning first=67 second=86 amount=-2 +kerning first=67 second=87 amount=-1 +kerning first=67 second=88 amount=-2 +kerning first=67 second=89 amount=-2 +kerning first=67 second=90 amount=-3 +kerning first=67 second=91 amount=-1 +kerning first=67 second=92 amount=-1 +kerning first=67 second=93 amount=-3 +kerning first=67 second=94 amount=-3 +kerning first=67 second=95 amount=-13 +kerning first=67 second=96 amount=-2 +kerning first=67 second=97 amount=-1 +kerning first=67 second=98 amount=-1 +kerning first=67 second=99 amount=-1 +kerning first=67 second=100 amount=-2 +kerning first=67 second=101 amount=-1 +kerning first=67 second=102 amount=-2 +kerning first=67 second=103 amount=-1 +kerning first=67 second=104 amount=-2 +kerning first=67 second=105 amount=-2 +kerning first=67 second=106 amount=-2 +kerning first=67 second=107 amount=-1 +kerning first=67 second=108 amount=-2 +kerning first=67 second=109 amount=-2 +kerning first=67 second=110 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=67 second=112 amount=-1 +kerning first=67 second=113 amount=-1 +kerning first=67 second=114 amount=-2 +kerning first=67 second=115 amount=-1 +kerning first=67 second=116 amount=-2 +kerning first=67 second=117 amount=-1 +kerning first=67 second=118 amount=-4 +kerning first=67 second=119 amount=-4 +kerning first=67 second=120 amount=-1 +kerning first=67 second=121 amount=-4 +kerning first=67 second=122 amount=-3 +kerning first=67 second=123 amount=-1 +kerning first=67 second=124 amount=-1 +kerning first=67 second=125 amount=-2 +kerning first=67 second=126 amount=-17 +kerning first=68 second=49 amount=-7 +kerning first=68 second=50 amount=-3 +kerning first=68 second=51 amount=-3 +kerning first=68 second=52 amount=-2 +kerning first=68 second=53 amount=-1 +kerning first=68 second=55 amount=-3 +kerning first=68 second=56 amount=-1 +kerning first=68 second=65 amount=-2 +kerning first=68 second=66 amount=-2 +kerning first=68 second=68 amount=-2 +kerning first=68 second=69 amount=-2 +kerning first=68 second=70 amount=-2 +kerning first=68 second=72 amount=-2 +kerning first=68 second=73 amount=-2 +kerning first=68 second=74 amount=-3 +kerning first=68 second=76 amount=-2 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-2 +kerning first=68 second=80 amount=-2 +kerning first=68 second=82 amount=-2 +kerning first=68 second=83 amount=-1 +kerning first=68 second=84 amount=-4 +kerning first=68 second=85 amount=-2 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-2 +kerning first=68 second=88 amount=-3 +kerning first=68 second=89 amount=-3 +kerning first=68 second=90 amount=-4 +kerning first=68 second=92 amount=-1 +kerning first=68 second=93 amount=-2 +kerning first=68 second=95 amount=-14 +kerning first=68 second=96 amount=-3 +kerning first=68 second=100 amount=-1 +kerning first=68 second=104 amount=-2 +kerning first=68 second=105 amount=-2 +kerning first=68 second=106 amount=-2 +kerning first=68 second=107 amount=-1 +kerning first=68 second=108 amount=-2 +kerning first=68 second=122 amount=-2 +kerning first=68 second=125 amount=-1 +kerning first=69 second=49 amount=-5 +kerning first=69 second=50 amount=-2 +kerning first=69 second=51 amount=-4 +kerning first=69 second=52 amount=-6 +kerning first=69 second=53 amount=-3 +kerning first=69 second=54 amount=-1 +kerning first=69 second=55 amount=-1 +kerning first=69 second=56 amount=-3 +kerning first=69 second=57 amount=-1 +kerning first=69 second=65 amount=-1 +kerning first=69 second=66 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=68 amount=-2 +kerning first=69 second=69 amount=-1 +kerning first=69 second=70 amount=-2 +kerning first=69 second=71 amount=-1 +kerning first=69 second=72 amount=-2 +kerning first=69 second=73 amount=-2 +kerning first=69 second=74 amount=-1 +kerning first=69 second=75 amount=-1 +kerning first=69 second=76 amount=-2 +kerning first=69 second=77 amount=-2 +kerning first=69 second=78 amount=-2 +kerning first=69 second=79 amount=-1 +kerning first=69 second=80 amount=-2 +kerning first=69 second=81 amount=-1 +kerning first=69 second=82 amount=-2 +kerning first=69 second=83 amount=-3 +kerning first=69 second=84 amount=-2 +kerning first=69 second=85 amount=-2 +kerning first=69 second=86 amount=-1 +kerning first=69 second=87 amount=-1 +kerning first=69 second=88 amount=-1 +kerning first=69 second=89 amount=-1 +kerning first=69 second=90 amount=-2 +kerning first=69 second=91 amount=-1 +kerning first=69 second=92 amount=-2 +kerning first=69 second=93 amount=-3 +kerning first=69 second=94 amount=-1 +kerning first=69 second=95 amount=-13 +kerning first=69 second=96 amount=-11 +kerning first=69 second=97 amount=-2 +kerning first=69 second=98 amount=-1 +kerning first=69 second=99 amount=-2 +kerning first=69 second=100 amount=-3 +kerning first=69 second=101 amount=-2 +kerning first=69 second=102 amount=-1 +kerning first=69 second=103 amount=-2 +kerning first=69 second=104 amount=-2 +kerning first=69 second=105 amount=-2 +kerning first=69 second=106 amount=-2 +kerning first=69 second=107 amount=-1 +kerning first=69 second=108 amount=-2 +kerning first=69 second=109 amount=-1 +kerning first=69 second=110 amount=-1 +kerning first=69 second=111 amount=-2 +kerning first=69 second=112 amount=-1 +kerning first=69 second=113 amount=-2 +kerning first=69 second=114 amount=-1 +kerning first=69 second=115 amount=-1 +kerning first=69 second=116 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-2 +kerning first=69 second=119 amount=-2 +kerning first=69 second=121 amount=-2 +kerning first=69 second=122 amount=-1 +kerning first=69 second=124 amount=-1 +kerning first=69 second=125 amount=-2 +kerning first=69 second=126 amount=-2 +kerning first=70 second=49 amount=-5 +kerning first=70 second=50 amount=-4 +kerning first=70 second=51 amount=-4 +kerning first=70 second=52 amount=-6 +kerning first=70 second=53 amount=-5 +kerning first=70 second=54 amount=-1 +kerning first=70 second=55 amount=-1 +kerning first=70 second=56 amount=-3 +kerning first=70 second=57 amount=-2 +kerning first=70 second=65 amount=-4 +kerning first=70 second=66 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=70 second=68 amount=-1 +kerning first=70 second=69 amount=-1 +kerning first=70 second=70 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=72 amount=-1 +kerning first=70 second=73 amount=-1 +kerning first=70 second=74 amount=-5 +kerning first=70 second=75 amount=-1 +kerning first=70 second=76 amount=-1 +kerning first=70 second=77 amount=-2 +kerning first=70 second=78 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=80 amount=-1 +kerning first=70 second=81 amount=-1 +kerning first=70 second=82 amount=-1 +kerning first=70 second=83 amount=-3 +kerning first=70 second=84 amount=-1 +kerning first=70 second=85 amount=-1 +kerning first=70 second=86 amount=-2 +kerning first=70 second=87 amount=-2 +kerning first=70 second=88 amount=-1 +kerning first=70 second=89 amount=-1 +kerning first=70 second=90 amount=-2 +kerning first=70 second=91 amount=-2 +kerning first=70 second=92 amount=-2 +kerning first=70 second=93 amount=-3 +kerning first=70 second=94 amount=-2 +kerning first=70 second=95 amount=-11 +kerning first=70 second=96 amount=-9 +kerning first=70 second=97 amount=-2 +kerning first=70 second=98 amount=-2 +kerning first=70 second=99 amount=-2 +kerning first=70 second=100 amount=-3 +kerning first=70 second=101 amount=-2 +kerning first=70 second=102 amount=-2 +kerning first=70 second=103 amount=-2 +kerning first=70 second=104 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=106 amount=-1 +kerning first=70 second=107 amount=-1 +kerning first=70 second=108 amount=-1 +kerning first=70 second=109 amount=-1 +kerning first=70 second=110 amount=-1 +kerning first=70 second=111 amount=-2 +kerning first=70 second=112 amount=-1 +kerning first=70 second=113 amount=-2 +kerning first=70 second=114 amount=-1 +kerning first=70 second=115 amount=-1 +kerning first=70 second=116 amount=-2 +kerning first=70 second=117 amount=-1 +kerning first=70 second=118 amount=-2 +kerning first=70 second=119 amount=-2 +kerning first=70 second=121 amount=-2 +kerning first=70 second=122 amount=-1 +kerning first=70 second=124 amount=-2 +kerning first=71 second=49 amount=-8 +kerning first=71 second=50 amount=-4 +kerning first=71 second=51 amount=-3 +kerning first=71 second=52 amount=-3 +kerning first=71 second=53 amount=-2 +kerning first=71 second=55 amount=-4 +kerning first=71 second=56 amount=-1 +kerning first=71 second=57 amount=-1 +kerning first=71 second=65 amount=-3 +kerning first=71 second=66 amount=-1 +kerning first=71 second=67 amount=-2 +kerning first=71 second=68 amount=-1 +kerning first=71 second=69 amount=-1 +kerning first=71 second=70 amount=-1 +kerning first=71 second=71 amount=-2 +kerning first=71 second=72 amount=-1 +kerning first=71 second=73 amount=-1 +kerning first=71 second=74 amount=-4 +kerning first=71 second=75 amount=-2 +kerning first=71 second=76 amount=-1 +kerning first=71 second=77 amount=-2 +kerning first=71 second=78 amount=-1 +kerning first=71 second=79 amount=-2 +kerning first=71 second=80 amount=-1 +kerning first=71 second=81 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=83 amount=-2 +kerning first=71 second=84 amount=-5 +kerning first=71 second=85 amount=-1 +kerning first=71 second=86 amount=-3 +kerning first=71 second=87 amount=-3 +kerning first=71 second=88 amount=-4 +kerning first=71 second=89 amount=-4 +kerning first=71 second=90 amount=-4 +kerning first=71 second=91 amount=-2 +kerning first=71 second=92 amount=-2 +kerning first=71 second=93 amount=-3 +kerning first=71 second=94 amount=-5 +kerning first=71 second=95 amount=-13 +kerning first=71 second=96 amount=-4 +kerning first=71 second=98 amount=-2 +kerning first=71 second=100 amount=-1 +kerning first=71 second=102 amount=-2 +kerning first=71 second=104 amount=-1 +kerning first=71 second=105 amount=-1 +kerning first=71 second=106 amount=-1 +kerning first=71 second=107 amount=-2 +kerning first=71 second=108 amount=-1 +kerning first=71 second=109 amount=-1 +kerning first=71 second=110 amount=-1 +kerning first=71 second=114 amount=-1 +kerning first=71 second=115 amount=-1 +kerning first=71 second=116 amount=-1 +kerning first=71 second=119 amount=-2 +kerning first=71 second=121 amount=-1 +kerning first=71 second=122 amount=-4 +kerning first=71 second=124 amount=-2 +kerning first=71 second=125 amount=-2 +kerning first=71 second=126 amount=-2 +kerning first=72 second=49 amount=-4 +kerning first=72 second=50 amount=-1 +kerning first=72 second=51 amount=-1 +kerning first=72 second=52 amount=-1 +kerning first=72 second=53 amount=-2 +kerning first=72 second=56 amount=-2 +kerning first=72 second=66 amount=-2 +kerning first=72 second=68 amount=-2 +kerning first=72 second=69 amount=-2 +kerning first=72 second=70 amount=-2 +kerning first=72 second=72 amount=-2 +kerning first=72 second=73 amount=-2 +kerning first=72 second=76 amount=-2 +kerning first=72 second=78 amount=-2 +kerning first=72 second=80 amount=-2 +kerning first=72 second=82 amount=-2 +kerning first=72 second=84 amount=-2 +kerning first=72 second=85 amount=-2 +kerning first=72 second=90 amount=-2 +kerning first=72 second=93 amount=-2 +kerning first=72 second=95 amount=-14 +kerning first=72 second=96 amount=-1 +kerning first=72 second=100 amount=-2 +kerning first=72 second=104 amount=-2 +kerning first=72 second=108 amount=-2 +kerning first=72 second=122 amount=-1 +kerning first=73 second=49 amount=-4 +kerning first=73 second=50 amount=-1 +kerning first=73 second=51 amount=-2 +kerning first=73 second=52 amount=-1 +kerning first=73 second=53 amount=-2 +kerning first=73 second=55 amount=-2 +kerning first=73 second=56 amount=-2 +kerning first=73 second=66 amount=-2 +kerning first=73 second=67 amount=-2 +kerning first=73 second=68 amount=-2 +kerning first=73 second=69 amount=-2 +kerning first=73 second=70 amount=-2 +kerning first=73 second=71 amount=-2 +kerning first=73 second=72 amount=-2 +kerning first=73 second=73 amount=-2 +kerning first=73 second=74 amount=-2 +kerning first=73 second=75 amount=-2 +kerning first=73 second=76 amount=-2 +kerning first=73 second=78 amount=-2 +kerning first=73 second=79 amount=-2 +kerning first=73 second=80 amount=-2 +kerning first=73 second=81 amount=-2 +kerning first=73 second=82 amount=-2 +kerning first=73 second=83 amount=-2 +kerning first=73 second=84 amount=-2 +kerning first=73 second=85 amount=-1 +kerning first=73 second=86 amount=-1 +kerning first=73 second=89 amount=-2 +kerning first=73 second=90 amount=-2 +kerning first=73 second=91 amount=-1 +kerning first=73 second=93 amount=-6 +kerning first=73 second=95 amount=-4 +kerning first=73 second=96 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=104 amount=-2 +kerning first=73 second=105 amount=-2 +kerning first=73 second=106 amount=-2 +kerning first=73 second=107 amount=-2 +kerning first=73 second=108 amount=-2 +kerning first=73 second=109 amount=-2 +kerning first=73 second=110 amount=-2 +kerning first=73 second=112 amount=-2 +kerning first=73 second=114 amount=-2 +kerning first=73 second=117 amount=-2 +kerning first=73 second=122 amount=-2 +kerning first=74 second=49 amount=-4 +kerning first=74 second=50 amount=-1 +kerning first=74 second=51 amount=-1 +kerning first=74 second=52 amount=-2 +kerning first=74 second=56 amount=-1 +kerning first=74 second=65 amount=-2 +kerning first=74 second=66 amount=-2 +kerning first=74 second=68 amount=-2 +kerning first=74 second=70 amount=-2 +kerning first=74 second=72 amount=-2 +kerning first=74 second=73 amount=-2 +kerning first=74 second=76 amount=-2 +kerning first=74 second=78 amount=-2 +kerning first=74 second=80 amount=-2 +kerning first=74 second=82 amount=-2 +kerning first=74 second=84 amount=-2 +kerning first=74 second=85 amount=-2 +kerning first=74 second=90 amount=-1 +kerning first=74 second=93 amount=-2 +kerning first=74 second=95 amount=-9 +kerning first=74 second=96 amount=-1 +kerning first=74 second=100 amount=-2 +kerning first=74 second=104 amount=-2 +kerning first=74 second=108 amount=-2 +kerning first=74 second=122 amount=-2 +kerning first=75 second=48 amount=-2 +kerning first=75 second=49 amount=-5 +kerning first=75 second=50 amount=-2 +kerning first=75 second=51 amount=-3 +kerning first=75 second=52 amount=-3 +kerning first=75 second=53 amount=-2 +kerning first=75 second=54 amount=-1 +kerning first=75 second=56 amount=-2 +kerning first=75 second=57 amount=-3 +kerning first=75 second=67 amount=-4 +kerning first=75 second=71 amount=-4 +kerning first=75 second=74 amount=-2 +kerning first=75 second=79 amount=-4 +kerning first=75 second=81 amount=-4 +kerning first=75 second=83 amount=-2 +kerning first=75 second=84 amount=-2 +kerning first=75 second=85 amount=-2 +kerning first=75 second=89 amount=-1 +kerning first=75 second=93 amount=-1 +kerning first=75 second=94 amount=-4 +kerning first=75 second=95 amount=-12 +kerning first=75 second=96 amount=-4 +kerning first=75 second=97 amount=-1 +kerning first=75 second=99 amount=-2 +kerning first=75 second=100 amount=-2 +kerning first=75 second=101 amount=-1 +kerning first=75 second=102 amount=-2 +kerning first=75 second=103 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=75 second=113 amount=-1 +kerning first=75 second=115 amount=-2 +kerning first=75 second=116 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=75 second=118 amount=-3 +kerning first=75 second=119 amount=-3 +kerning first=75 second=121 amount=-3 +kerning first=75 second=126 amount=-8 +kerning first=76 second=48 amount=-2 +kerning first=76 second=49 amount=-8 +kerning first=76 second=50 amount=-1 +kerning first=76 second=51 amount=-3 +kerning first=76 second=52 amount=-6 +kerning first=76 second=53 amount=-2 +kerning first=76 second=54 amount=-1 +kerning first=76 second=55 amount=-2 +kerning first=76 second=56 amount=-2 +kerning first=76 second=57 amount=-5 +kerning first=76 second=65 amount=-1 +kerning first=76 second=66 amount=-1 +kerning first=76 second=67 amount=-4 +kerning first=76 second=68 amount=-1 +kerning first=76 second=69 amount=-2 +kerning first=76 second=70 amount=-1 +kerning first=76 second=71 amount=-4 +kerning first=76 second=72 amount=-1 +kerning first=76 second=73 amount=-1 +kerning first=76 second=74 amount=-2 +kerning first=76 second=75 amount=-2 +kerning first=76 second=76 amount=-1 +kerning first=76 second=78 amount=-1 +kerning first=76 second=79 amount=-4 +kerning first=76 second=80 amount=-1 +kerning first=76 second=81 amount=-5 +kerning first=76 second=82 amount=-1 +kerning first=76 second=83 amount=-2 +kerning first=76 second=84 amount=-5 +kerning first=76 second=85 amount=-2 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-5 +kerning first=76 second=89 amount=-5 +kerning first=76 second=90 amount=-1 +kerning first=76 second=91 amount=-2 +kerning first=76 second=92 amount=-4 +kerning first=76 second=93 amount=-2 +kerning first=76 second=94 amount=-5 +kerning first=76 second=95 amount=-9 +kerning first=76 second=96 amount=-7 +kerning first=76 second=97 amount=-1 +kerning first=76 second=99 amount=-2 +kerning first=76 second=100 amount=-3 +kerning first=76 second=101 amount=-1 +kerning first=76 second=102 amount=-1 +kerning first=76 second=103 amount=-1 +kerning first=76 second=104 amount=-2 +kerning first=76 second=105 amount=-2 +kerning first=76 second=106 amount=-2 +kerning first=76 second=107 amount=-2 +kerning first=76 second=108 amount=-1 +kerning first=76 second=109 amount=-2 +kerning first=76 second=110 amount=-2 +kerning first=76 second=111 amount=-1 +kerning first=76 second=112 amount=-2 +kerning first=76 second=113 amount=-1 +kerning first=76 second=114 amount=-2 +kerning first=76 second=115 amount=-2 +kerning first=76 second=116 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=118 amount=-4 +kerning first=76 second=119 amount=-4 +kerning first=76 second=121 amount=-4 +kerning first=76 second=122 amount=-2 +kerning first=76 second=125 amount=-1 +kerning first=76 second=126 amount=-5 +kerning first=77 second=49 amount=-6 +kerning first=77 second=50 amount=-2 +kerning first=77 second=51 amount=-1 +kerning first=77 second=52 amount=-1 +kerning first=77 second=53 amount=-2 +kerning first=77 second=56 amount=-2 +kerning first=77 second=57 amount=-2 +kerning first=77 second=67 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=77 second=81 amount=-1 +kerning first=77 second=83 amount=-1 +kerning first=77 second=84 amount=-3 +kerning first=77 second=85 amount=-2 +kerning first=77 second=86 amount=-3 +kerning first=77 second=87 amount=-3 +kerning first=77 second=89 amount=-4 +kerning first=77 second=92 amount=-3 +kerning first=77 second=93 amount=-1 +kerning first=77 second=94 amount=-1 +kerning first=77 second=95 amount=-12 +kerning first=77 second=96 amount=-4 +kerning first=77 second=100 amount=-1 +kerning first=77 second=102 amount=-2 +kerning first=77 second=118 amount=-1 +kerning first=77 second=119 amount=-1 +kerning first=77 second=121 amount=-1 +kerning first=77 second=126 amount=-2 +kerning first=78 second=49 amount=-4 +kerning first=78 second=50 amount=-1 +kerning first=78 second=51 amount=-1 +kerning first=78 second=52 amount=-1 +kerning first=78 second=53 amount=-1 +kerning first=78 second=56 amount=-2 +kerning first=78 second=66 amount=-2 +kerning first=78 second=68 amount=-2 +kerning first=78 second=69 amount=-2 +kerning first=78 second=70 amount=-2 +kerning first=78 second=72 amount=-2 +kerning first=78 second=73 amount=-2 +kerning first=78 second=76 amount=-2 +kerning first=78 second=78 amount=-2 +kerning first=78 second=80 amount=-2 +kerning first=78 second=82 amount=-2 +kerning first=78 second=84 amount=-2 +kerning first=78 second=85 amount=-2 +kerning first=78 second=90 amount=-2 +kerning first=78 second=93 amount=-2 +kerning first=78 second=95 amount=-14 +kerning first=78 second=96 amount=-1 +kerning first=78 second=100 amount=-2 +kerning first=78 second=104 amount=-2 +kerning first=78 second=107 amount=-1 +kerning first=78 second=108 amount=-2 +kerning first=78 second=122 amount=-1 +kerning first=79 second=49 amount=-7 +kerning first=79 second=50 amount=-2 +kerning first=79 second=51 amount=-2 +kerning first=79 second=52 amount=-2 +kerning first=79 second=53 amount=-1 +kerning first=79 second=55 amount=-3 +kerning first=79 second=56 amount=-2 +kerning first=79 second=65 amount=-2 +kerning first=79 second=74 amount=-3 +kerning first=79 second=77 amount=-2 +kerning first=79 second=79 amount=-1 +kerning first=79 second=83 amount=-1 +kerning first=79 second=84 amount=-4 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-3 +kerning first=79 second=90 amount=-3 +kerning first=79 second=92 amount=-1 +kerning first=79 second=93 amount=-2 +kerning first=79 second=95 amount=-13 +kerning first=79 second=96 amount=-2 +kerning first=79 second=100 amount=-2 +kerning first=79 second=125 amount=-1 +kerning first=80 second=49 amount=-6 +kerning first=80 second=50 amount=-2 +kerning first=80 second=51 amount=-2 +kerning first=80 second=52 amount=-7 +kerning first=80 second=53 amount=-3 +kerning first=80 second=54 amount=-2 +kerning first=80 second=55 amount=-2 +kerning first=80 second=56 amount=-1 +kerning first=80 second=57 amount=-2 +kerning first=80 second=65 amount=-5 +kerning first=80 second=66 amount=-1 +kerning first=80 second=67 amount=-1 +kerning first=80 second=68 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=70 amount=-1 +kerning first=80 second=71 amount=-1 +kerning first=80 second=72 amount=-1 +kerning first=80 second=73 amount=-1 +kerning first=80 second=74 amount=-5 +kerning first=80 second=75 amount=-2 +kerning first=80 second=76 amount=-1 +kerning first=80 second=77 amount=-3 +kerning first=80 second=78 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=81 amount=-1 +kerning first=80 second=82 amount=-1 +kerning first=80 second=83 amount=-2 +kerning first=80 second=84 amount=-2 +kerning first=80 second=85 amount=-1 +kerning first=80 second=86 amount=-1 +kerning first=80 second=87 amount=-1 +kerning first=80 second=88 amount=-2 +kerning first=80 second=89 amount=-2 +kerning first=80 second=90 amount=-3 +kerning first=80 second=91 amount=-2 +kerning first=80 second=92 amount=-1 +kerning first=80 second=93 amount=-3 +kerning first=80 second=94 amount=-2 +kerning first=80 second=95 amount=-13 +kerning first=80 second=96 amount=-1 +kerning first=80 second=97 amount=-4 +kerning first=80 second=98 amount=-2 +kerning first=80 second=99 amount=-5 +kerning first=80 second=100 amount=-5 +kerning first=80 second=101 amount=-4 +kerning first=80 second=102 amount=-1 +kerning first=80 second=103 amount=-4 +kerning first=80 second=104 amount=-1 +kerning first=80 second=105 amount=-1 +kerning first=80 second=106 amount=-1 +kerning first=80 second=107 amount=-2 +kerning first=80 second=108 amount=-1 +kerning first=80 second=109 amount=-2 +kerning first=80 second=110 amount=-2 +kerning first=80 second=111 amount=-4 +kerning first=80 second=112 amount=-2 +kerning first=80 second=113 amount=-4 +kerning first=80 second=114 amount=-2 +kerning first=80 second=115 amount=-3 +kerning first=80 second=116 amount=-1 +kerning first=80 second=117 amount=-2 +kerning first=80 second=118 amount=-2 +kerning first=80 second=119 amount=-2 +kerning first=80 second=120 amount=-1 +kerning first=80 second=121 amount=-2 +kerning first=80 second=122 amount=-3 +kerning first=80 second=123 amount=-1 +kerning first=80 second=124 amount=-2 +kerning first=80 second=125 amount=-2 +kerning first=80 second=126 amount=-3 +kerning first=81 second=49 amount=-6 +kerning first=81 second=50 amount=-2 +kerning first=81 second=51 amount=-2 +kerning first=81 second=52 amount=-1 +kerning first=81 second=53 amount=-1 +kerning first=81 second=55 amount=-3 +kerning first=81 second=56 amount=-2 +kerning first=81 second=65 amount=-2 +kerning first=81 second=74 amount=-2 +kerning first=81 second=77 amount=-2 +kerning first=81 second=83 amount=-2 +kerning first=81 second=84 amount=-4 +kerning first=81 second=86 amount=-1 +kerning first=81 second=87 amount=-1 +kerning first=81 second=88 amount=-2 +kerning first=81 second=89 amount=-2 +kerning first=81 second=90 amount=-3 +kerning first=81 second=92 amount=-2 +kerning first=81 second=93 amount=-2 +kerning first=81 second=96 amount=-2 +kerning first=81 second=100 amount=-2 +kerning first=82 second=49 amount=-5 +kerning first=82 second=50 amount=-2 +kerning first=82 second=51 amount=-1 +kerning first=82 second=52 amount=-3 +kerning first=82 second=53 amount=-2 +kerning first=82 second=54 amount=-1 +kerning first=82 second=56 amount=-2 +kerning first=82 second=74 amount=-2 +kerning first=82 second=83 amount=-2 +kerning first=82 second=84 amount=-1 +kerning first=82 second=86 amount=-2 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-1 +kerning first=82 second=93 amount=-2 +kerning first=82 second=95 amount=-13 +kerning first=82 second=96 amount=-2 +kerning first=82 second=97 amount=-1 +kerning first=82 second=99 amount=-2 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-1 +kerning first=82 second=102 amount=-2 +kerning first=82 second=103 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=82 second=113 amount=-1 +kerning first=82 second=115 amount=-2 +kerning first=82 second=117 amount=-1 +kerning first=82 second=118 amount=-2 +kerning first=82 second=119 amount=-2 +kerning first=82 second=121 amount=-2 +kerning first=82 second=125 amount=-2 +kerning first=82 second=126 amount=-2 +kerning first=83 second=49 amount=-6 +kerning first=83 second=50 amount=-2 +kerning first=83 second=51 amount=-1 +kerning first=83 second=52 amount=-1 +kerning first=83 second=53 amount=-1 +kerning first=83 second=55 amount=-1 +kerning first=83 second=56 amount=-2 +kerning first=83 second=57 amount=-1 +kerning first=83 second=65 amount=-1 +kerning first=83 second=66 amount=-2 +kerning first=83 second=67 amount=-2 +kerning first=83 second=68 amount=-2 +kerning first=83 second=70 amount=-2 +kerning first=83 second=71 amount=-2 +kerning first=83 second=72 amount=-2 +kerning first=83 second=73 amount=-2 +kerning first=83 second=74 amount=-2 +kerning first=83 second=76 amount=-2 +kerning first=83 second=78 amount=-2 +kerning first=83 second=79 amount=-2 +kerning first=83 second=80 amount=-2 +kerning first=83 second=81 amount=-2 +kerning first=83 second=82 amount=-2 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-2 +kerning first=83 second=86 amount=-1 +kerning first=83 second=87 amount=-1 +kerning first=83 second=88 amount=-1 +kerning first=83 second=89 amount=-1 +kerning first=83 second=90 amount=-2 +kerning first=83 second=92 amount=-2 +kerning first=83 second=93 amount=-2 +kerning first=83 second=94 amount=-3 +kerning first=83 second=95 amount=-13 +kerning first=83 second=96 amount=-3 +kerning first=83 second=100 amount=-2 +kerning first=83 second=102 amount=-1 +kerning first=83 second=104 amount=-2 +kerning first=83 second=105 amount=-2 +kerning first=83 second=106 amount=-2 +kerning first=83 second=108 amount=-2 +kerning first=83 second=116 amount=-2 +kerning first=83 second=118 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=83 second=121 amount=-1 +kerning first=83 second=122 amount=-1 +kerning first=83 second=125 amount=-1 +kerning first=83 second=126 amount=-2 +kerning first=84 second=48 amount=-1 +kerning first=84 second=49 amount=-4 +kerning first=84 second=50 amount=-3 +kerning first=84 second=51 amount=-3 +kerning first=84 second=52 amount=-5 +kerning first=84 second=53 amount=-4 +kerning first=84 second=54 amount=-3 +kerning first=84 second=55 amount=-2 +kerning first=84 second=56 amount=-2 +kerning first=84 second=57 amount=-2 +kerning first=84 second=65 amount=-4 +kerning first=84 second=66 amount=-2 +kerning first=84 second=67 amount=-4 +kerning first=84 second=68 amount=-2 +kerning first=84 second=69 amount=-2 +kerning first=84 second=70 amount=-2 +kerning first=84 second=71 amount=-4 +kerning first=84 second=72 amount=-2 +kerning first=84 second=73 amount=-2 +kerning first=84 second=74 amount=-4 +kerning first=84 second=75 amount=-1 +kerning first=84 second=76 amount=-2 +kerning first=84 second=77 amount=-3 +kerning first=84 second=78 amount=-2 +kerning first=84 second=79 amount=-4 +kerning first=84 second=80 amount=-2 +kerning first=84 second=81 amount=-4 +kerning first=84 second=82 amount=-2 +kerning first=84 second=83 amount=-2 +kerning first=84 second=84 amount=-2 +kerning first=84 second=85 amount=-2 +kerning first=84 second=90 amount=-1 +kerning first=84 second=93 amount=-2 +kerning first=84 second=94 amount=-4 +kerning first=84 second=95 amount=-13 +kerning first=84 second=96 amount=-5 +kerning first=84 second=97 amount=-3 +kerning first=84 second=99 amount=-4 +kerning first=84 second=100 amount=-5 +kerning first=84 second=101 amount=-3 +kerning first=84 second=102 amount=-1 +kerning first=84 second=103 amount=-3 +kerning first=84 second=104 amount=-2 +kerning first=84 second=105 amount=-4 +kerning first=84 second=106 amount=-4 +kerning first=84 second=107 amount=-2 +kerning first=84 second=108 amount=-2 +kerning first=84 second=109 amount=-4 +kerning first=84 second=110 amount=-4 +kerning first=84 second=111 amount=-3 +kerning first=84 second=112 amount=-4 +kerning first=84 second=113 amount=-3 +kerning first=84 second=114 amount=-4 +kerning first=84 second=115 amount=-3 +kerning first=84 second=116 amount=-3 +kerning first=84 second=117 amount=-4 +kerning first=84 second=118 amount=-3 +kerning first=84 second=119 amount=-4 +kerning first=84 second=120 amount=-3 +kerning first=84 second=121 amount=-4 +kerning first=84 second=122 amount=-4 +kerning first=84 second=126 amount=-3 +kerning first=85 second=49 amount=-4 +kerning first=85 second=50 amount=-1 +kerning first=85 second=51 amount=-1 +kerning first=85 second=52 amount=-1 +kerning first=85 second=53 amount=-2 +kerning first=85 second=55 amount=-1 +kerning first=85 second=56 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=66 amount=-2 +kerning first=85 second=68 amount=-2 +kerning first=85 second=69 amount=-2 +kerning first=85 second=70 amount=-2 +kerning first=85 second=72 amount=-2 +kerning first=85 second=73 amount=-2 +kerning first=85 second=74 amount=-1 +kerning first=85 second=76 amount=-2 +kerning first=85 second=77 amount=-2 +kerning first=85 second=78 amount=-2 +kerning first=85 second=80 amount=-2 +kerning first=85 second=82 amount=-2 +kerning first=85 second=83 amount=-1 +kerning first=85 second=84 amount=-2 +kerning first=85 second=85 amount=-2 +kerning first=85 second=90 amount=-1 +kerning first=85 second=93 amount=-2 +kerning first=85 second=95 amount=-14 +kerning first=85 second=96 amount=-1 +kerning first=85 second=100 amount=-2 +kerning first=85 second=104 amount=-2 +kerning first=85 second=107 amount=-1 +kerning first=85 second=108 amount=-2 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=114 amount=-1 +kerning first=85 second=122 amount=-2 +kerning first=86 second=48 amount=-2 +kerning first=86 second=49 amount=-4 +kerning first=86 second=50 amount=-2 +kerning first=86 second=51 amount=-2 +kerning first=86 second=52 amount=-5 +kerning first=86 second=53 amount=-4 +kerning first=86 second=54 amount=-2 +kerning first=86 second=56 amount=-1 +kerning first=86 second=57 amount=-1 +kerning first=86 second=65 amount=-5 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=74 amount=-4 +kerning first=86 second=77 amount=-3 +kerning first=86 second=79 amount=-2 +kerning first=86 second=81 amount=-2 +kerning first=86 second=83 amount=-2 +kerning first=86 second=90 amount=-2 +kerning first=86 second=93 amount=-2 +kerning first=86 second=94 amount=-1 +kerning first=86 second=95 amount=-13 +kerning first=86 second=96 amount=-1 +kerning first=86 second=97 amount=-3 +kerning first=86 second=99 amount=-3 +kerning first=86 second=100 amount=-4 +kerning first=86 second=101 amount=-3 +kerning first=86 second=102 amount=-1 +kerning first=86 second=103 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=106 amount=-1 +kerning first=86 second=109 amount=-2 +kerning first=86 second=110 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=86 second=112 amount=-2 +kerning first=86 second=113 amount=-3 +kerning first=86 second=114 amount=-2 +kerning first=86 second=115 amount=-3 +kerning first=86 second=116 amount=-1 +kerning first=86 second=117 amount=-2 +kerning first=86 second=118 amount=-2 +kerning first=86 second=119 amount=-2 +kerning first=86 second=120 amount=-1 +kerning first=86 second=121 amount=-2 +kerning first=86 second=122 amount=-3 +kerning first=86 second=126 amount=-2 +kerning first=87 second=48 amount=-2 +kerning first=87 second=49 amount=-4 +kerning first=87 second=50 amount=-2 +kerning first=87 second=51 amount=-2 +kerning first=87 second=52 amount=-5 +kerning first=87 second=53 amount=-4 +kerning first=87 second=54 amount=-2 +kerning first=87 second=56 amount=-1 +kerning first=87 second=57 amount=-2 +kerning first=87 second=65 amount=-5 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-2 +kerning first=87 second=74 amount=-4 +kerning first=87 second=77 amount=-3 +kerning first=87 second=79 amount=-2 +kerning first=87 second=81 amount=-2 +kerning first=87 second=83 amount=-1 +kerning first=87 second=90 amount=-2 +kerning first=87 second=93 amount=-2 +kerning first=87 second=94 amount=-1 +kerning first=87 second=95 amount=-13 +kerning first=87 second=96 amount=-1 +kerning first=87 second=97 amount=-3 +kerning first=87 second=99 amount=-3 +kerning first=87 second=100 amount=-4 +kerning first=87 second=101 amount=-3 +kerning first=87 second=102 amount=-1 +kerning first=87 second=103 amount=-3 +kerning first=87 second=105 amount=-1 +kerning first=87 second=106 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=110 amount=-2 +kerning first=87 second=111 amount=-3 +kerning first=87 second=112 amount=-2 +kerning first=87 second=113 amount=-3 +kerning first=87 second=114 amount=-2 +kerning first=87 second=115 amount=-3 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-2 +kerning first=87 second=118 amount=-1 +kerning first=87 second=119 amount=-2 +kerning first=87 second=120 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=122 amount=-3 +kerning first=87 second=126 amount=-1 +kerning first=88 second=48 amount=-1 +kerning first=88 second=49 amount=-4 +kerning first=88 second=50 amount=-2 +kerning first=88 second=51 amount=-2 +kerning first=88 second=52 amount=-2 +kerning first=88 second=53 amount=-1 +kerning first=88 second=54 amount=-1 +kerning first=88 second=56 amount=-1 +kerning first=88 second=57 amount=-2 +kerning first=88 second=67 amount=-3 +kerning first=88 second=71 amount=-3 +kerning first=88 second=79 amount=-3 +kerning first=88 second=81 amount=-3 +kerning first=88 second=83 amount=-1 +kerning first=88 second=85 amount=-1 +kerning first=88 second=93 amount=-1 +kerning first=88 second=94 amount=-3 +kerning first=88 second=95 amount=-13 +kerning first=88 second=96 amount=-2 +kerning first=88 second=97 amount=-2 +kerning first=88 second=99 amount=-1 +kerning first=88 second=100 amount=-2 +kerning first=88 second=101 amount=-2 +kerning first=88 second=102 amount=-2 +kerning first=88 second=103 amount=-2 +kerning first=88 second=111 amount=-2 +kerning first=88 second=113 amount=-2 +kerning first=88 second=116 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=118 amount=-3 +kerning first=88 second=119 amount=-3 +kerning first=88 second=121 amount=-3 +kerning first=88 second=126 amount=-4 +kerning first=89 second=48 amount=-1 +kerning first=89 second=49 amount=-4 +kerning first=89 second=50 amount=-3 +kerning first=89 second=51 amount=-3 +kerning first=89 second=52 amount=-6 +kerning first=89 second=53 amount=-4 +kerning first=89 second=54 amount=-4 +kerning first=89 second=56 amount=-2 +kerning first=89 second=57 amount=-2 +kerning first=89 second=65 amount=-5 +kerning first=89 second=66 amount=-2 +kerning first=89 second=67 amount=-3 +kerning first=89 second=68 amount=-2 +kerning first=89 second=70 amount=-2 +kerning first=89 second=71 amount=-3 +kerning first=89 second=72 amount=-2 +kerning first=89 second=73 amount=-2 +kerning first=89 second=74 amount=-4 +kerning first=89 second=76 amount=-2 +kerning first=89 second=77 amount=-4 +kerning first=89 second=78 amount=-2 +kerning first=89 second=79 amount=-3 +kerning first=89 second=80 amount=-2 +kerning first=89 second=81 amount=-3 +kerning first=89 second=82 amount=-2 +kerning first=89 second=83 amount=-2 +kerning first=89 second=84 amount=-1 +kerning first=89 second=85 amount=-2 +kerning first=89 second=90 amount=-1 +kerning first=89 second=93 amount=-2 +kerning first=89 second=94 amount=-3 +kerning first=89 second=95 amount=-13 +kerning first=89 second=96 amount=-2 +kerning first=89 second=97 amount=-5 +kerning first=89 second=99 amount=-5 +kerning first=89 second=100 amount=-5 +kerning first=89 second=101 amount=-5 +kerning first=89 second=102 amount=-1 +kerning first=89 second=103 amount=-5 +kerning first=89 second=104 amount=-1 +kerning first=89 second=105 amount=-2 +kerning first=89 second=106 amount=-2 +kerning first=89 second=108 amount=-2 +kerning first=89 second=109 amount=-4 +kerning first=89 second=110 amount=-4 +kerning first=89 second=111 amount=-5 +kerning first=89 second=112 amount=-4 +kerning first=89 second=113 amount=-4 +kerning first=89 second=114 amount=-4 +kerning first=89 second=115 amount=-5 +kerning first=89 second=116 amount=-2 +kerning first=89 second=117 amount=-4 +kerning first=89 second=118 amount=-4 +kerning first=89 second=119 amount=-4 +kerning first=89 second=120 amount=-3 +kerning first=89 second=121 amount=-4 +kerning first=89 second=122 amount=-5 +kerning first=89 second=126 amount=-4 +kerning first=90 second=48 amount=-2 +kerning first=90 second=49 amount=-5 +kerning first=90 second=50 amount=-1 +kerning first=90 second=51 amount=-3 +kerning first=90 second=52 amount=-10 +kerning first=90 second=53 amount=-2 +kerning first=90 second=54 amount=-1 +kerning first=90 second=56 amount=-2 +kerning first=90 second=57 amount=-2 +kerning first=90 second=66 amount=-2 +kerning first=90 second=67 amount=-3 +kerning first=90 second=68 amount=-2 +kerning first=90 second=69 amount=-2 +kerning first=90 second=70 amount=-2 +kerning first=90 second=71 amount=-4 +kerning first=90 second=72 amount=-2 +kerning first=90 second=73 amount=-2 +kerning first=90 second=74 amount=-2 +kerning first=90 second=75 amount=-1 +kerning first=90 second=76 amount=-2 +kerning first=90 second=78 amount=-2 +kerning first=90 second=79 amount=-3 +kerning first=90 second=80 amount=-2 +kerning first=90 second=81 amount=-4 +kerning first=90 second=82 amount=-2 +kerning first=90 second=83 amount=-2 +kerning first=90 second=84 amount=-2 +kerning first=90 second=85 amount=-2 +kerning first=90 second=90 amount=-2 +kerning first=90 second=93 amount=-2 +kerning first=90 second=94 amount=-3 +kerning first=90 second=95 amount=-13 +kerning first=90 second=96 amount=-2 +kerning first=90 second=97 amount=-2 +kerning first=90 second=99 amount=-2 +kerning first=90 second=100 amount=-2 +kerning first=90 second=101 amount=-2 +kerning first=90 second=102 amount=-1 +kerning first=90 second=103 amount=-2 +kerning first=90 second=104 amount=-2 +kerning first=90 second=105 amount=-1 +kerning first=90 second=106 amount=-1 +kerning first=90 second=107 amount=-2 +kerning first=90 second=108 amount=-2 +kerning first=90 second=109 amount=-2 +kerning first=90 second=110 amount=-2 +kerning first=90 second=111 amount=-2 +kerning first=90 second=112 amount=-2 +kerning first=90 second=113 amount=-1 +kerning first=90 second=114 amount=-2 +kerning first=90 second=115 amount=-2 +kerning first=90 second=116 amount=-1 +kerning first=90 second=117 amount=-1 +kerning first=90 second=118 amount=-4 +kerning first=90 second=119 amount=-4 +kerning first=90 second=121 amount=-4 +kerning first=90 second=122 amount=-1 +kerning first=90 second=126 amount=-5 +kerning first=91 second=48 amount=-2 +kerning first=91 second=49 amount=-6 +kerning first=91 second=50 amount=-3 +kerning first=91 second=51 amount=-3 +kerning first=91 second=52 amount=-2 +kerning first=91 second=53 amount=-2 +kerning first=91 second=54 amount=-1 +kerning first=91 second=55 amount=-2 +kerning first=91 second=56 amount=-2 +kerning first=91 second=57 amount=-1 +kerning first=91 second=65 amount=-1 +kerning first=91 second=66 amount=-2 +kerning first=91 second=67 amount=-1 +kerning first=91 second=68 amount=-2 +kerning first=91 second=69 amount=-2 +kerning first=91 second=70 amount=-2 +kerning first=91 second=71 amount=-1 +kerning first=91 second=72 amount=-2 +kerning first=91 second=73 amount=-2 +kerning first=91 second=74 amount=-1 +kerning first=91 second=75 amount=-2 +kerning first=91 second=76 amount=-2 +kerning first=91 second=77 amount=-1 +kerning first=91 second=78 amount=-2 +kerning first=91 second=79 amount=-1 +kerning first=91 second=80 amount=-2 +kerning first=91 second=81 amount=-2 +kerning first=91 second=82 amount=-2 +kerning first=91 second=83 amount=-2 +kerning first=91 second=84 amount=-2 +kerning first=91 second=85 amount=-2 +kerning first=91 second=86 amount=-1 +kerning first=91 second=87 amount=-1 +kerning first=91 second=88 amount=-1 +kerning first=91 second=89 amount=-1 +kerning first=91 second=90 amount=-2 +kerning first=91 second=92 amount=-1 +kerning first=91 second=94 amount=-1 +kerning first=91 second=96 amount=-3 +kerning first=91 second=97 amount=-1 +kerning first=91 second=99 amount=-1 +kerning first=91 second=100 amount=-2 +kerning first=91 second=101 amount=-1 +kerning first=91 second=102 amount=-1 +kerning first=91 second=103 amount=-1 +kerning first=91 second=104 amount=-1 +kerning first=91 second=105 amount=-1 +kerning first=91 second=108 amount=-2 +kerning first=91 second=109 amount=-2 +kerning first=91 second=110 amount=-2 +kerning first=91 second=111 amount=-1 +kerning first=91 second=113 amount=-1 +kerning first=91 second=114 amount=-2 +kerning first=91 second=115 amount=-1 +kerning first=91 second=116 amount=-1 +kerning first=91 second=117 amount=-1 +kerning first=91 second=118 amount=-1 +kerning first=91 second=119 amount=-1 +kerning first=91 second=120 amount=-2 +kerning first=91 second=121 amount=-1 +kerning first=91 second=122 amount=-2 +kerning first=91 second=126 amount=-1 +kerning first=92 second=49 amount=-6 +kerning first=92 second=51 amount=-1 +kerning first=92 second=52 amount=-1 +kerning first=92 second=56 amount=-2 +kerning first=92 second=57 amount=-2 +kerning first=92 second=67 amount=-1 +kerning first=92 second=71 amount=-1 +kerning first=92 second=79 amount=-1 +kerning first=92 second=81 amount=-1 +kerning first=92 second=84 amount=-3 +kerning first=92 second=85 amount=-2 +kerning first=92 second=86 amount=-4 +kerning first=92 second=87 amount=-4 +kerning first=92 second=89 amount=-4 +kerning first=92 second=92 amount=-3 +kerning first=92 second=93 amount=-1 +kerning first=92 second=94 amount=-2 +kerning first=92 second=95 amount=-8 +kerning first=92 second=96 amount=-5 +kerning first=92 second=100 amount=-2 +kerning first=92 second=118 amount=-1 +kerning first=92 second=119 amount=-1 +kerning first=92 second=121 amount=-1 +kerning first=92 second=126 amount=-2 +kerning first=93 second=49 amount=-3 +kerning first=93 second=50 amount=-2 +kerning first=93 second=51 amount=-1 +kerning first=93 second=52 amount=-1 +kerning first=93 second=95 amount=-5 +kerning first=93 second=96 amount=-2 +kerning first=94 second=49 amount=-7 +kerning first=94 second=50 amount=-3 +kerning first=94 second=51 amount=-3 +kerning first=94 second=52 amount=-5 +kerning first=94 second=53 amount=-2 +kerning first=94 second=55 amount=-6 +kerning first=94 second=56 amount=-2 +kerning first=94 second=65 amount=-3 +kerning first=94 second=74 amount=-4 +kerning first=94 second=77 amount=-1 +kerning first=94 second=83 amount=-1 +kerning first=94 second=84 amount=-4 +kerning first=94 second=86 amount=-1 +kerning first=94 second=87 amount=-1 +kerning first=94 second=88 amount=-3 +kerning first=94 second=89 amount=-3 +kerning first=94 second=90 amount=-6 +kerning first=94 second=92 amount=-1 +kerning first=94 second=93 amount=-2 +kerning first=94 second=95 amount=-10 +kerning first=94 second=96 amount=-3 +kerning first=94 second=97 amount=-1 +kerning first=94 second=99 amount=-1 +kerning first=94 second=100 amount=-3 +kerning first=94 second=101 amount=-1 +kerning first=94 second=103 amount=-1 +kerning first=94 second=111 amount=-1 +kerning first=94 second=113 amount=-1 +kerning first=94 second=125 amount=-1 +kerning first=95 second=48 amount=-12 +kerning first=95 second=49 amount=-10 +kerning first=95 second=50 amount=-13 +kerning first=95 second=51 amount=-14 +kerning first=95 second=52 amount=-13 +kerning first=95 second=53 amount=-12 +kerning first=95 second=54 amount=-12 +kerning first=95 second=55 amount=-12 +kerning first=95 second=56 amount=-14 +kerning first=95 second=57 amount=-12 +kerning first=95 second=65 amount=-12 +kerning first=95 second=66 amount=-14 +kerning first=95 second=67 amount=-13 +kerning first=95 second=68 amount=-14 +kerning first=95 second=69 amount=-13 +kerning first=95 second=70 amount=-12 +kerning first=95 second=71 amount=-13 +kerning first=95 second=72 amount=-14 +kerning first=95 second=73 amount=-3 +kerning first=95 second=74 amount=-8 +kerning first=95 second=75 amount=-14 +kerning first=95 second=76 amount=-10 +kerning first=95 second=77 amount=-12 +kerning first=95 second=78 amount=-14 +kerning first=95 second=79 amount=-13 +kerning first=95 second=80 amount=-14 +kerning first=95 second=81 amount=-13 +kerning first=95 second=82 amount=-14 +kerning first=95 second=83 amount=-13 +kerning first=95 second=84 amount=-13 +kerning first=95 second=85 amount=-14 +kerning first=95 second=86 amount=-13 +kerning first=95 second=87 amount=-13 +kerning first=95 second=88 amount=-12 +kerning first=95 second=89 amount=-12 +kerning first=95 second=90 amount=-13 +kerning first=95 second=92 amount=-8 +kerning first=95 second=94 amount=-10 +kerning first=95 second=95 amount=5 +kerning first=95 second=96 amount=-8 +kerning first=95 second=97 amount=-13 +kerning first=95 second=98 amount=-13 +kerning first=95 second=99 amount=-12 +kerning first=95 second=100 amount=-13 +kerning first=95 second=101 amount=-13 +kerning first=95 second=102 amount=-8 +kerning first=95 second=104 amount=-12 +kerning first=95 second=105 amount=-4 +kerning first=95 second=107 amount=-12 +kerning first=95 second=108 amount=-3 +kerning first=95 second=109 amount=-14 +kerning first=95 second=110 amount=-12 +kerning first=95 second=111 amount=-13 +kerning first=95 second=113 amount=-12 +kerning first=95 second=114 amount=-9 +kerning first=95 second=115 amount=-10 +kerning first=95 second=116 amount=-7 +kerning first=95 second=117 amount=-11 +kerning first=95 second=118 amount=-12 +kerning first=95 second=119 amount=-12 +kerning first=95 second=120 amount=-11 +kerning first=95 second=121 amount=2 +kerning first=95 second=122 amount=-13 +kerning first=95 second=125 amount=-6 +kerning first=95 second=126 amount=-12 +kerning first=96 second=49 amount=-8 +kerning first=96 second=50 amount=-4 +kerning first=96 second=51 amount=-5 +kerning first=96 second=52 amount=-10 +kerning first=96 second=53 amount=-3 +kerning first=96 second=54 amount=-3 +kerning first=96 second=55 amount=-10 +kerning first=96 second=56 amount=-2 +kerning first=96 second=65 amount=-9 +kerning first=96 second=66 amount=-1 +kerning first=96 second=67 amount=-1 +kerning first=96 second=68 amount=-1 +kerning first=96 second=69 amount=-1 +kerning first=96 second=70 amount=-1 +kerning first=96 second=71 amount=-1 +kerning first=96 second=72 amount=-1 +kerning first=96 second=73 amount=-1 +kerning first=96 second=74 amount=-9 +kerning first=96 second=75 amount=-1 +kerning first=96 second=76 amount=-1 +kerning first=96 second=77 amount=-4 +kerning first=96 second=78 amount=-1 +kerning first=96 second=79 amount=-1 +kerning first=96 second=80 amount=-1 +kerning first=96 second=81 amount=-2 +kerning first=96 second=82 amount=-1 +kerning first=96 second=83 amount=-2 +kerning first=96 second=84 amount=-10 +kerning first=96 second=85 amount=-1 +kerning first=96 second=86 amount=-2 +kerning first=96 second=87 amount=-2 +kerning first=96 second=88 amount=-4 +kerning first=96 second=89 amount=-4 +kerning first=96 second=90 amount=-10 +kerning first=96 second=91 amount=-1 +kerning first=96 second=92 amount=-1 +kerning first=96 second=93 amount=-3 +kerning first=96 second=94 amount=-2 +kerning first=96 second=95 amount=-8 +kerning first=96 second=96 amount=-4 +kerning first=96 second=97 amount=-9 +kerning first=96 second=98 amount=-2 +kerning first=96 second=99 amount=-9 +kerning first=96 second=100 amount=-11 +kerning first=96 second=101 amount=-9 +kerning first=96 second=102 amount=-2 +kerning first=96 second=103 amount=-9 +kerning first=96 second=104 amount=-1 +kerning first=96 second=105 amount=-1 +kerning first=96 second=106 amount=-1 +kerning first=96 second=107 amount=-1 +kerning first=96 second=108 amount=-1 +kerning first=96 second=109 amount=-10 +kerning first=96 second=110 amount=-10 +kerning first=96 second=111 amount=-9 +kerning first=96 second=112 amount=-10 +kerning first=96 second=113 amount=-9 +kerning first=96 second=114 amount=-10 +kerning first=96 second=115 amount=-9 +kerning first=96 second=116 amount=-2 +kerning first=96 second=117 amount=-10 +kerning first=96 second=118 amount=-9 +kerning first=96 second=119 amount=-9 +kerning first=96 second=120 amount=-8 +kerning first=96 second=121 amount=-9 +kerning first=96 second=122 amount=-9 +kerning first=96 second=123 amount=-2 +kerning first=96 second=124 amount=-2 +kerning first=96 second=125 amount=-2 +kerning first=96 second=126 amount=-9 +kerning first=97 second=49 amount=-7 +kerning first=97 second=50 amount=-1 +kerning first=97 second=51 amount=-1 +kerning first=97 second=52 amount=-2 +kerning first=97 second=53 amount=-2 +kerning first=97 second=78 amount=-2 +kerning first=97 second=83 amount=-1 +kerning first=97 second=84 amount=-4 +kerning first=97 second=85 amount=-2 +kerning first=97 second=86 amount=-2 +kerning first=97 second=87 amount=-2 +kerning first=97 second=89 amount=-4 +kerning first=97 second=92 amount=-1 +kerning first=97 second=93 amount=-2 +kerning first=97 second=95 amount=-14 +kerning first=97 second=96 amount=-10 +kerning first=97 second=125 amount=-2 +kerning first=98 second=49 amount=-8 +kerning first=98 second=50 amount=-4 +kerning first=98 second=51 amount=-2 +kerning first=98 second=52 amount=-1 +kerning first=98 second=53 amount=-2 +kerning first=98 second=55 amount=-2 +kerning first=98 second=56 amount=-2 +kerning first=98 second=57 amount=-2 +kerning first=98 second=65 amount=-2 +kerning first=98 second=66 amount=-2 +kerning first=98 second=67 amount=-2 +kerning first=98 second=68 amount=-2 +kerning first=98 second=69 amount=-2 +kerning first=98 second=70 amount=-2 +kerning first=98 second=71 amount=-2 +kerning first=98 second=72 amount=-2 +kerning first=98 second=73 amount=-2 +kerning first=98 second=74 amount=-1 +kerning first=98 second=75 amount=-2 +kerning first=98 second=76 amount=-2 +kerning first=98 second=77 amount=-1 +kerning first=98 second=78 amount=-1 +kerning first=98 second=79 amount=-2 +kerning first=98 second=80 amount=-2 +kerning first=98 second=81 amount=-1 +kerning first=98 second=82 amount=-2 +kerning first=98 second=83 amount=-2 +kerning first=98 second=84 amount=-5 +kerning first=98 second=85 amount=-1 +kerning first=98 second=86 amount=-4 +kerning first=98 second=87 amount=-4 +kerning first=98 second=88 amount=-2 +kerning first=98 second=89 amount=-5 +kerning first=98 second=90 amount=-3 +kerning first=98 second=91 amount=-2 +kerning first=98 second=92 amount=-3 +kerning first=98 second=93 amount=-2 +kerning first=98 second=94 amount=-3 +kerning first=98 second=95 amount=-13 +kerning first=98 second=96 amount=-12 +kerning first=98 second=100 amount=-1 +kerning first=98 second=102 amount=-1 +kerning first=98 second=104 amount=-2 +kerning first=98 second=105 amount=-2 +kerning first=98 second=106 amount=-2 +kerning first=98 second=107 amount=-2 +kerning first=98 second=108 amount=-1 +kerning first=98 second=116 amount=-1 +kerning first=98 second=118 amount=-2 +kerning first=98 second=119 amount=-2 +kerning first=98 second=120 amount=-2 +kerning first=98 second=121 amount=-2 +kerning first=98 second=122 amount=-2 +kerning first=98 second=125 amount=-1 +kerning first=99 second=49 amount=-8 +kerning first=99 second=50 amount=-2 +kerning first=99 second=51 amount=-2 +kerning first=99 second=52 amount=-4 +kerning first=99 second=53 amount=-2 +kerning first=99 second=56 amount=-1 +kerning first=99 second=57 amount=-1 +kerning first=99 second=65 amount=-1 +kerning first=99 second=66 amount=-1 +kerning first=99 second=67 amount=-2 +kerning first=99 second=68 amount=-1 +kerning first=99 second=69 amount=-1 +kerning first=99 second=70 amount=-1 +kerning first=99 second=71 amount=-2 +kerning first=99 second=72 amount=-1 +kerning first=99 second=73 amount=-1 +kerning first=99 second=74 amount=-2 +kerning first=99 second=75 amount=-2 +kerning first=99 second=76 amount=-1 +kerning first=99 second=78 amount=-1 +kerning first=99 second=79 amount=-2 +kerning first=99 second=80 amount=-1 +kerning first=99 second=81 amount=-1 +kerning first=99 second=82 amount=-1 +kerning first=99 second=83 amount=-1 +kerning first=99 second=84 amount=-5 +kerning first=99 second=85 amount=-1 +kerning first=99 second=86 amount=-3 +kerning first=99 second=87 amount=-3 +kerning first=99 second=88 amount=-2 +kerning first=99 second=89 amount=-5 +kerning first=99 second=90 amount=-1 +kerning first=99 second=91 amount=-2 +kerning first=99 second=92 amount=-2 +kerning first=99 second=93 amount=-2 +kerning first=99 second=95 amount=-13 +kerning first=99 second=96 amount=-10 +kerning first=99 second=97 amount=-2 +kerning first=99 second=98 amount=-2 +kerning first=99 second=99 amount=-1 +kerning first=99 second=100 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=99 second=102 amount=-2 +kerning first=99 second=103 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=105 amount=-1 +kerning first=99 second=106 amount=-1 +kerning first=99 second=107 amount=-2 +kerning first=99 second=108 amount=-1 +kerning first=99 second=109 amount=-2 +kerning first=99 second=110 amount=-2 +kerning first=99 second=111 amount=-2 +kerning first=99 second=112 amount=-2 +kerning first=99 second=113 amount=-2 +kerning first=99 second=114 amount=-2 +kerning first=99 second=117 amount=-2 +kerning first=99 second=118 amount=-2 +kerning first=99 second=119 amount=-2 +kerning first=99 second=121 amount=-2 +kerning first=99 second=122 amount=-1 +kerning first=99 second=124 amount=-2 +kerning first=99 second=125 amount=-1 +kerning first=100 second=49 amount=-4 +kerning first=100 second=50 amount=-1 +kerning first=100 second=51 amount=-1 +kerning first=100 second=52 amount=-2 +kerning first=100 second=78 amount=-2 +kerning first=100 second=85 amount=-1 +kerning first=100 second=93 amount=-1 +kerning first=100 second=95 amount=-14 +kerning first=100 second=96 amount=-1 +kerning first=100 second=100 amount=-2 +kerning first=101 second=49 amount=-7 +kerning first=101 second=50 amount=-3 +kerning first=101 second=51 amount=-2 +kerning first=101 second=52 amount=-1 +kerning first=101 second=53 amount=-1 +kerning first=101 second=55 amount=-1 +kerning first=101 second=57 amount=-1 +kerning first=101 second=65 amount=-2 +kerning first=101 second=74 amount=-2 +kerning first=101 second=83 amount=-1 +kerning first=101 second=84 amount=-4 +kerning first=101 second=86 amount=-3 +kerning first=101 second=87 amount=-3 +kerning first=101 second=88 amount=-1 +kerning first=101 second=89 amount=-5 +kerning first=101 second=90 amount=-1 +kerning first=101 second=92 amount=-2 +kerning first=101 second=93 amount=-2 +kerning first=101 second=94 amount=-2 +kerning first=101 second=95 amount=-13 +kerning first=101 second=96 amount=-9 +kerning first=101 second=101 amount=1 +kerning first=101 second=102 amount=-2 +kerning first=101 second=116 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-2 +kerning first=101 second=120 amount=-2 +kerning first=101 second=121 amount=-2 +kerning first=101 second=122 amount=-1 +kerning first=101 second=125 amount=-1 +kerning first=102 second=49 amount=-4 +kerning first=102 second=50 amount=-3 +kerning first=102 second=51 amount=-2 +kerning first=102 second=52 amount=-3 +kerning first=102 second=53 amount=-2 +kerning first=102 second=56 amount=-1 +kerning first=102 second=65 amount=-2 +kerning first=102 second=74 amount=-2 +kerning first=102 second=77 amount=-1 +kerning first=102 second=83 amount=-2 +kerning first=102 second=90 amount=-2 +kerning first=102 second=95 amount=-7 +kerning first=102 second=96 amount=-3 +kerning first=102 second=97 amount=-2 +kerning first=102 second=99 amount=-1 +kerning first=102 second=100 amount=-2 +kerning first=102 second=101 amount=-2 +kerning first=102 second=102 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=102 second=105 amount=-2 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=113 amount=-2 +kerning first=102 second=116 amount=-1 +kerning first=103 second=49 amount=-7 +kerning first=103 second=50 amount=-1 +kerning first=103 second=51 amount=-1 +kerning first=103 second=52 amount=-2 +kerning first=103 second=53 amount=-2 +kerning first=103 second=78 amount=-2 +kerning first=103 second=81 amount=-2 +kerning first=103 second=84 amount=-4 +kerning first=103 second=85 amount=-2 +kerning first=103 second=86 amount=-2 +kerning first=103 second=87 amount=-2 +kerning first=103 second=89 amount=-4 +kerning first=103 second=92 amount=-1 +kerning first=103 second=96 amount=-10 +kerning first=104 second=49 amount=-8 +kerning first=104 second=50 amount=-1 +kerning first=104 second=51 amount=-2 +kerning first=104 second=52 amount=-1 +kerning first=104 second=53 amount=-2 +kerning first=104 second=55 amount=-2 +kerning first=104 second=56 amount=-1 +kerning first=104 second=57 amount=-1 +kerning first=104 second=65 amount=-2 +kerning first=104 second=66 amount=-1 +kerning first=104 second=67 amount=-2 +kerning first=104 second=68 amount=-1 +kerning first=104 second=69 amount=-2 +kerning first=104 second=70 amount=-1 +kerning first=104 second=71 amount=-2 +kerning first=104 second=72 amount=-1 +kerning first=104 second=73 amount=-1 +kerning first=104 second=74 amount=-2 +kerning first=104 second=75 amount=-2 +kerning first=104 second=76 amount=-1 +kerning first=104 second=78 amount=-1 +kerning first=104 second=79 amount=-2 +kerning first=104 second=80 amount=-1 +kerning first=104 second=81 amount=-1 +kerning first=104 second=82 amount=-1 +kerning first=104 second=83 amount=-2 +kerning first=104 second=84 amount=-5 +kerning first=104 second=85 amount=-1 +kerning first=104 second=86 amount=-3 +kerning first=104 second=87 amount=-3 +kerning first=104 second=88 amount=-1 +kerning first=104 second=89 amount=-6 +kerning first=104 second=90 amount=-1 +kerning first=104 second=91 amount=-2 +kerning first=104 second=92 amount=-3 +kerning first=104 second=93 amount=-1 +kerning first=104 second=94 amount=-2 +kerning first=104 second=95 amount=-12 +kerning first=104 second=96 amount=-10 +kerning first=104 second=98 amount=-2 +kerning first=104 second=100 amount=-1 +kerning first=104 second=102 amount=-1 +kerning first=104 second=104 amount=-1 +kerning first=104 second=105 amount=-2 +kerning first=104 second=106 amount=-2 +kerning first=104 second=107 amount=-2 +kerning first=104 second=108 amount=-1 +kerning first=104 second=116 amount=-2 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-2 +kerning first=104 second=124 amount=-1 +kerning first=105 second=49 amount=-10 +kerning first=105 second=50 amount=-1 +kerning first=105 second=51 amount=-2 +kerning first=105 second=52 amount=-1 +kerning first=105 second=53 amount=-2 +kerning first=105 second=56 amount=-2 +kerning first=105 second=66 amount=-2 +kerning first=105 second=68 amount=-2 +kerning first=105 second=70 amount=-2 +kerning first=105 second=72 amount=-2 +kerning first=105 second=73 amount=-2 +kerning first=105 second=76 amount=-2 +kerning first=105 second=78 amount=-2 +kerning first=105 second=80 amount=-2 +kerning first=105 second=82 amount=-2 +kerning first=105 second=83 amount=-2 +kerning first=105 second=84 amount=-6 +kerning first=105 second=85 amount=-2 +kerning first=105 second=86 amount=-1 +kerning first=105 second=87 amount=-1 +kerning first=105 second=89 amount=-6 +kerning first=105 second=90 amount=-2 +kerning first=105 second=92 amount=-2 +kerning first=105 second=93 amount=-6 +kerning first=105 second=95 amount=-4 +kerning first=105 second=96 amount=-2 +kerning first=105 second=100 amount=-2 +kerning first=105 second=104 amount=-1 +kerning first=105 second=108 amount=-2 +kerning first=105 second=109 amount=-2 +kerning first=105 second=110 amount=-2 +kerning first=105 second=112 amount=-1 +kerning first=105 second=114 amount=-2 +kerning first=105 second=122 amount=-2 +kerning first=105 second=125 amount=-5 +kerning first=106 second=49 amount=-10 +kerning first=106 second=50 amount=-1 +kerning first=106 second=51 amount=-2 +kerning first=106 second=52 amount=-1 +kerning first=106 second=53 amount=-2 +kerning first=106 second=56 amount=-2 +kerning first=106 second=66 amount=-2 +kerning first=106 second=68 amount=-2 +kerning first=106 second=70 amount=-2 +kerning first=106 second=72 amount=-2 +kerning first=106 second=73 amount=-2 +kerning first=106 second=76 amount=-2 +kerning first=106 second=78 amount=-2 +kerning first=106 second=80 amount=-2 +kerning first=106 second=81 amount=-2 +kerning first=106 second=82 amount=-2 +kerning first=106 second=83 amount=-2 +kerning first=106 second=84 amount=-6 +kerning first=106 second=85 amount=-2 +kerning first=106 second=86 amount=-1 +kerning first=106 second=87 amount=-1 +kerning first=106 second=89 amount=-6 +kerning first=106 second=90 amount=-2 +kerning first=106 second=92 amount=-2 +kerning first=106 second=93 amount=-2 +kerning first=106 second=96 amount=-2 +kerning first=106 second=100 amount=-2 +kerning first=106 second=104 amount=-2 +kerning first=106 second=108 amount=-2 +kerning first=106 second=109 amount=-2 +kerning first=106 second=110 amount=-2 +kerning first=106 second=112 amount=-1 +kerning first=106 second=114 amount=-2 +kerning first=106 second=122 amount=-2 +kerning first=107 second=49 amount=-7 +kerning first=107 second=50 amount=-1 +kerning first=107 second=51 amount=-3 +kerning first=107 second=52 amount=-4 +kerning first=107 second=53 amount=-2 +kerning first=107 second=54 amount=-2 +kerning first=107 second=56 amount=-2 +kerning first=107 second=57 amount=-1 +kerning first=107 second=67 amount=-1 +kerning first=107 second=71 amount=-1 +kerning first=107 second=74 amount=-2 +kerning first=107 second=79 amount=-1 +kerning first=107 second=81 amount=-1 +kerning first=107 second=83 amount=-2 +kerning first=107 second=84 amount=-4 +kerning first=107 second=85 amount=-1 +kerning first=107 second=86 amount=-3 +kerning first=107 second=87 amount=-3 +kerning first=107 second=89 amount=-5 +kerning first=107 second=92 amount=-2 +kerning first=107 second=93 amount=-2 +kerning first=107 second=94 amount=-1 +kerning first=107 second=95 amount=-11 +kerning first=107 second=96 amount=-9 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-3 +kerning first=107 second=101 amount=-1 +kerning first=107 second=102 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=107 second=116 amount=-2 +kerning first=107 second=117 amount=-2 +kerning first=107 second=118 amount=-2 +kerning first=107 second=119 amount=-2 +kerning first=107 second=121 amount=-2 +kerning first=107 second=125 amount=-2 +kerning first=107 second=126 amount=-2 +kerning first=108 second=49 amount=-4 +kerning first=108 second=50 amount=-1 +kerning first=108 second=51 amount=-2 +kerning first=108 second=52 amount=-1 +kerning first=108 second=53 amount=-2 +kerning first=108 second=55 amount=-2 +kerning first=108 second=56 amount=-2 +kerning first=108 second=65 amount=-1 +kerning first=108 second=66 amount=-2 +kerning first=108 second=67 amount=-2 +kerning first=108 second=68 amount=-2 +kerning first=108 second=69 amount=-2 +kerning first=108 second=70 amount=-2 +kerning first=108 second=71 amount=-2 +kerning first=108 second=72 amount=-2 +kerning first=108 second=73 amount=-2 +kerning first=108 second=74 amount=-2 +kerning first=108 second=75 amount=-2 +kerning first=108 second=76 amount=-2 +kerning first=108 second=78 amount=-2 +kerning first=108 second=79 amount=-2 +kerning first=108 second=80 amount=-2 +kerning first=108 second=81 amount=-2 +kerning first=108 second=82 amount=-2 +kerning first=108 second=83 amount=-2 +kerning first=108 second=84 amount=-2 +kerning first=108 second=85 amount=-1 +kerning first=108 second=86 amount=-1 +kerning first=108 second=89 amount=-2 +kerning first=108 second=90 amount=-2 +kerning first=108 second=91 amount=-1 +kerning first=108 second=93 amount=-1 +kerning first=108 second=95 amount=-4 +kerning first=108 second=96 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=104 amount=-2 +kerning first=108 second=105 amount=-2 +kerning first=108 second=106 amount=-2 +kerning first=108 second=107 amount=-2 +kerning first=108 second=108 amount=-2 +kerning first=108 second=109 amount=-2 +kerning first=108 second=110 amount=-2 +kerning first=108 second=112 amount=-2 +kerning first=108 second=114 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=108 second=122 amount=-2 +kerning first=109 second=49 amount=-7 +kerning first=109 second=50 amount=-1 +kerning first=109 second=51 amount=-2 +kerning first=109 second=52 amount=-2 +kerning first=109 second=53 amount=-2 +kerning first=109 second=56 amount=-2 +kerning first=109 second=57 amount=-1 +kerning first=109 second=66 amount=-2 +kerning first=109 second=68 amount=-2 +kerning first=109 second=69 amount=-2 +kerning first=109 second=70 amount=-2 +kerning first=109 second=72 amount=-2 +kerning first=109 second=73 amount=-2 +kerning first=109 second=75 amount=-1 +kerning first=109 second=76 amount=-2 +kerning first=109 second=78 amount=-2 +kerning first=109 second=80 amount=-2 +kerning first=109 second=82 amount=-2 +kerning first=109 second=83 amount=-2 +kerning first=109 second=84 amount=-4 +kerning first=109 second=85 amount=-2 +kerning first=109 second=86 amount=-3 +kerning first=109 second=87 amount=-3 +kerning first=109 second=89 amount=-5 +kerning first=109 second=92 amount=-2 +kerning first=109 second=93 amount=-2 +kerning first=109 second=94 amount=-2 +kerning first=109 second=95 amount=-14 +kerning first=109 second=96 amount=-10 +kerning first=109 second=102 amount=-1 +kerning first=109 second=104 amount=-2 +kerning first=109 second=105 amount=-2 +kerning first=109 second=106 amount=-2 +kerning first=109 second=107 amount=-1 +kerning first=109 second=108 amount=-2 +kerning first=109 second=109 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=114 amount=-1 +kerning first=109 second=118 amount=-2 +kerning first=109 second=119 amount=-2 +kerning first=109 second=121 amount=-2 +kerning first=109 second=122 amount=-2 +kerning first=109 second=125 amount=-1 +kerning first=110 second=49 amount=-7 +kerning first=110 second=50 amount=-1 +kerning first=110 second=51 amount=-2 +kerning first=110 second=52 amount=-2 +kerning first=110 second=53 amount=-2 +kerning first=110 second=56 amount=-2 +kerning first=110 second=57 amount=-1 +kerning first=110 second=66 amount=-2 +kerning first=110 second=68 amount=-2 +kerning first=110 second=69 amount=-2 +kerning first=110 second=70 amount=-2 +kerning first=110 second=72 amount=-2 +kerning first=110 second=73 amount=-2 +kerning first=110 second=75 amount=-1 +kerning first=110 second=76 amount=-2 +kerning first=110 second=78 amount=-2 +kerning first=110 second=80 amount=-2 +kerning first=110 second=82 amount=-2 +kerning first=110 second=83 amount=-2 +kerning first=110 second=84 amount=-4 +kerning first=110 second=85 amount=-2 +kerning first=110 second=86 amount=-3 +kerning first=110 second=87 amount=-3 +kerning first=110 second=89 amount=-5 +kerning first=110 second=92 amount=-3 +kerning first=110 second=93 amount=-2 +kerning first=110 second=94 amount=-1 +kerning first=110 second=95 amount=-12 +kerning first=110 second=96 amount=-10 +kerning first=110 second=102 amount=-2 +kerning first=110 second=104 amount=-2 +kerning first=110 second=105 amount=-2 +kerning first=110 second=106 amount=-2 +kerning first=110 second=107 amount=-1 +kerning first=110 second=108 amount=-2 +kerning first=110 second=109 amount=-1 +kerning first=110 second=110 amount=-1 +kerning first=110 second=114 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=110 second=121 amount=-2 +kerning first=110 second=122 amount=-2 +kerning first=110 second=125 amount=-1 +kerning first=111 second=49 amount=-7 +kerning first=111 second=50 amount=-3 +kerning first=111 second=51 amount=-1 +kerning first=111 second=53 amount=-1 +kerning first=111 second=55 amount=-2 +kerning first=111 second=57 amount=-1 +kerning first=111 second=65 amount=-2 +kerning first=111 second=74 amount=-2 +kerning first=111 second=84 amount=-4 +kerning first=111 second=86 amount=-3 +kerning first=111 second=87 amount=-3 +kerning first=111 second=88 amount=-1 +kerning first=111 second=89 amount=-5 +kerning first=111 second=90 amount=-1 +kerning first=111 second=92 amount=-2 +kerning first=111 second=93 amount=-1 +kerning first=111 second=94 amount=-1 +kerning first=111 second=95 amount=-13 +kerning first=111 second=96 amount=-9 +kerning first=111 second=102 amount=-2 +kerning first=111 second=111 amount=1 +kerning first=111 second=118 amount=-2 +kerning first=111 second=119 amount=-2 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-2 +kerning first=111 second=122 amount=-1 +kerning first=111 second=125 amount=-2 +kerning first=112 second=49 amount=-6 +kerning first=112 second=50 amount=-2 +kerning first=112 second=51 amount=-2 +kerning first=112 second=55 amount=-2 +kerning first=112 second=57 amount=-1 +kerning first=112 second=81 amount=-2 +kerning first=112 second=84 amount=-3 +kerning first=112 second=86 amount=-3 +kerning first=112 second=87 amount=-3 +kerning first=112 second=88 amount=-2 +kerning first=112 second=89 amount=-4 +kerning first=112 second=90 amount=-1 +kerning first=112 second=92 amount=-2 +kerning first=112 second=93 amount=-1 +kerning first=112 second=94 amount=-1 +kerning first=112 second=95 amount=-9 +kerning first=112 second=96 amount=-9 +kerning first=112 second=118 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=112 second=122 amount=-1 +kerning first=112 second=125 amount=-2 +kerning first=113 second=49 amount=-7 +kerning first=113 second=50 amount=-2 +kerning first=113 second=51 amount=-1 +kerning first=113 second=84 amount=-4 +kerning first=113 second=86 amount=-2 +kerning first=113 second=87 amount=-2 +kerning first=113 second=89 amount=-4 +kerning first=113 second=92 amount=-1 +kerning first=113 second=96 amount=-10 +kerning first=114 second=49 amount=-7 +kerning first=114 second=50 amount=-5 +kerning first=114 second=51 amount=-5 +kerning first=114 second=52 amount=-4 +kerning first=114 second=53 amount=-5 +kerning first=114 second=55 amount=-4 +kerning first=114 second=56 amount=-2 +kerning first=114 second=65 amount=-3 +kerning first=114 second=74 amount=-4 +kerning first=114 second=77 amount=-1 +kerning first=114 second=83 amount=-4 +kerning first=114 second=84 amount=-4 +kerning first=114 second=85 amount=-1 +kerning first=114 second=86 amount=-2 +kerning first=114 second=87 amount=-2 +kerning first=114 second=88 amount=-4 +kerning first=114 second=89 amount=-5 +kerning first=114 second=90 amount=-4 +kerning first=114 second=92 amount=-2 +kerning first=114 second=93 amount=-2 +kerning first=114 second=95 amount=-8 +kerning first=114 second=96 amount=-9 +kerning first=114 second=97 amount=-1 +kerning first=114 second=99 amount=-1 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=111 amount=-2 +kerning first=114 second=113 amount=-2 +kerning first=114 second=115 amount=-2 +kerning first=114 second=122 amount=-2 +kerning first=114 second=125 amount=-1 +kerning first=115 second=49 amount=-6 +kerning first=115 second=50 amount=-1 +kerning first=115 second=51 amount=-2 +kerning first=115 second=57 amount=-1 +kerning first=115 second=84 amount=-3 +kerning first=115 second=86 amount=-2 +kerning first=115 second=87 amount=-2 +kerning first=115 second=89 amount=-4 +kerning first=115 second=92 amount=-2 +kerning first=115 second=93 amount=-1 +kerning first=115 second=95 amount=-10 +kerning first=115 second=96 amount=-9 +kerning first=115 second=122 amount=-2 +kerning first=115 second=125 amount=-2 +kerning first=116 second=49 amount=-7 +kerning first=116 second=50 amount=-3 +kerning first=116 second=51 amount=-3 +kerning first=116 second=52 amount=-2 +kerning first=116 second=53 amount=-2 +kerning first=116 second=55 amount=-2 +kerning first=116 second=56 amount=-1 +kerning first=116 second=65 amount=-1 +kerning first=116 second=74 amount=-2 +kerning first=116 second=77 amount=-1 +kerning first=116 second=83 amount=-2 +kerning first=116 second=84 amount=-4 +kerning first=116 second=86 amount=-2 +kerning first=116 second=87 amount=-1 +kerning first=116 second=88 amount=-1 +kerning first=116 second=89 amount=-3 +kerning first=116 second=90 amount=-2 +kerning first=116 second=92 amount=-1 +kerning first=116 second=93 amount=-1 +kerning first=116 second=95 amount=-7 +kerning first=116 second=96 amount=-3 +kerning first=116 second=97 amount=-2 +kerning first=116 second=99 amount=-2 +kerning first=116 second=100 amount=-1 +kerning first=116 second=103 amount=-2 +kerning first=116 second=111 amount=-2 +kerning first=116 second=125 amount=-2 +kerning first=117 second=49 amount=-7 +kerning first=117 second=50 amount=-2 +kerning first=117 second=51 amount=-1 +kerning first=117 second=52 amount=-2 +kerning first=117 second=53 amount=-2 +kerning first=117 second=55 amount=-2 +kerning first=117 second=56 amount=-2 +kerning first=117 second=65 amount=-2 +kerning first=117 second=66 amount=-2 +kerning first=117 second=68 amount=-2 +kerning first=117 second=70 amount=-2 +kerning first=117 second=72 amount=-2 +kerning first=117 second=73 amount=-2 +kerning first=117 second=74 amount=-2 +kerning first=117 second=76 amount=-2 +kerning first=117 second=78 amount=-2 +kerning first=117 second=80 amount=-2 +kerning first=117 second=82 amount=-2 +kerning first=117 second=83 amount=-2 +kerning first=117 second=84 amount=-4 +kerning first=117 second=85 amount=-2 +kerning first=117 second=86 amount=-2 +kerning first=117 second=87 amount=-2 +kerning first=117 second=88 amount=-1 +kerning first=117 second=89 amount=-4 +kerning first=117 second=90 amount=-1 +kerning first=117 second=92 amount=-2 +kerning first=117 second=93 amount=-2 +kerning first=117 second=95 amount=-12 +kerning first=117 second=96 amount=-10 +kerning first=117 second=104 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=117 second=106 amount=-2 +kerning first=117 second=108 amount=-2 +kerning first=117 second=122 amount=-2 +kerning first=117 second=125 amount=-1 +kerning first=118 second=49 amount=-6 +kerning first=118 second=50 amount=-5 +kerning first=118 second=51 amount=-3 +kerning first=118 second=52 amount=-3 +kerning first=118 second=53 amount=-3 +kerning first=118 second=55 amount=-3 +kerning first=118 second=56 amount=-1 +kerning first=118 second=65 amount=-2 +kerning first=118 second=74 amount=-3 +kerning first=118 second=77 amount=-1 +kerning first=118 second=83 amount=-2 +kerning first=118 second=84 amount=-3 +kerning first=118 second=86 amount=-1 +kerning first=118 second=87 amount=-1 +kerning first=118 second=88 amount=-3 +kerning first=118 second=89 amount=-3 +kerning first=118 second=90 amount=-4 +kerning first=118 second=92 amount=-1 +kerning first=118 second=93 amount=-1 +kerning first=118 second=95 amount=-12 +kerning first=118 second=96 amount=-8 +kerning first=118 second=99 amount=-2 +kerning first=118 second=100 amount=-2 +kerning first=118 second=103 amount=-1 +kerning first=118 second=125 amount=-2 +kerning first=119 second=46 amount=-3 +kerning first=119 second=49 amount=-7 +kerning first=119 second=50 amount=-5 +kerning first=119 second=51 amount=-4 +kerning first=119 second=52 amount=-3 +kerning first=119 second=53 amount=-3 +kerning first=119 second=55 amount=-3 +kerning first=119 second=56 amount=-1 +kerning first=119 second=65 amount=-3 +kerning first=119 second=74 amount=-3 +kerning first=119 second=77 amount=-1 +kerning first=119 second=83 amount=-2 +kerning first=119 second=84 amount=-4 +kerning first=119 second=86 amount=-2 +kerning first=119 second=87 amount=-2 +kerning first=119 second=88 amount=-3 +kerning first=119 second=89 amount=-4 +kerning first=119 second=90 amount=-4 +kerning first=119 second=92 amount=-1 +kerning first=119 second=93 amount=-1 +kerning first=119 second=95 amount=-13 +kerning first=119 second=96 amount=-9 +kerning first=119 second=97 amount=-1 +kerning first=119 second=99 amount=-2 +kerning first=119 second=100 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=111 amount=-1 +kerning first=119 second=125 amount=-2 +kerning first=120 second=49 amount=-6 +kerning first=120 second=51 amount=-2 +kerning first=120 second=52 amount=-1 +kerning first=120 second=53 amount=-1 +kerning first=120 second=56 amount=-1 +kerning first=120 second=83 amount=-1 +kerning first=120 second=84 amount=-3 +kerning first=120 second=86 amount=-1 +kerning first=120 second=87 amount=-1 +kerning first=120 second=89 amount=-3 +kerning first=120 second=92 amount=-2 +kerning first=120 second=93 amount=-1 +kerning first=120 second=95 amount=-11 +kerning first=120 second=96 amount=-8 +kerning first=120 second=97 amount=-2 +kerning first=120 second=99 amount=-2 +kerning first=120 second=100 amount=-2 +kerning first=120 second=103 amount=-2 +kerning first=120 second=111 amount=-2 +kerning first=121 second=49 amount=-6 +kerning first=121 second=50 amount=-5 +kerning first=121 second=51 amount=-4 +kerning first=121 second=52 amount=-3 +kerning first=121 second=53 amount=-3 +kerning first=121 second=55 amount=-3 +kerning first=121 second=56 amount=-1 +kerning first=121 second=65 amount=-2 +kerning first=121 second=74 amount=-3 +kerning first=121 second=77 amount=-1 +kerning first=121 second=83 amount=-2 +kerning first=121 second=84 amount=-4 +kerning first=121 second=86 amount=-2 +kerning first=121 second=87 amount=-2 +kerning first=121 second=88 amount=-3 +kerning first=121 second=89 amount=-4 +kerning first=121 second=90 amount=-4 +kerning first=121 second=92 amount=-1 +kerning first=121 second=93 amount=-1 +kerning first=121 second=95 amount=-5 +kerning first=121 second=96 amount=-9 +kerning first=121 second=97 amount=-2 +kerning first=121 second=99 amount=-2 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-1 +kerning first=121 second=103 amount=-2 +kerning first=121 second=111 amount=-2 +kerning first=121 second=113 amount=-1 +kerning first=121 second=125 amount=-2 +kerning first=122 second=49 amount=-7 +kerning first=122 second=50 amount=-1 +kerning first=122 second=51 amount=-3 +kerning first=122 second=52 amount=-5 +kerning first=122 second=53 amount=-2 +kerning first=122 second=56 amount=-1 +kerning first=122 second=73 amount=-1 +kerning first=122 second=78 amount=-1 +kerning first=122 second=83 amount=-2 +kerning first=122 second=84 amount=-4 +kerning first=122 second=85 amount=-2 +kerning first=122 second=86 amount=-2 +kerning first=122 second=87 amount=-2 +kerning first=122 second=89 amount=-4 +kerning first=122 second=92 amount=-1 +kerning first=122 second=93 amount=-2 +kerning first=122 second=95 amount=-13 +kerning first=122 second=96 amount=-9 +kerning first=122 second=97 amount=-1 +kerning first=122 second=99 amount=-1 +kerning first=122 second=100 amount=-1 +kerning first=122 second=101 amount=-1 +kerning first=122 second=103 amount=-1 +kerning first=122 second=108 amount=-1 +kerning first=122 second=111 amount=-1 +kerning first=122 second=113 amount=-1 +kerning first=122 second=125 amount=-2 +kerning first=123 second=49 amount=-4 +kerning first=123 second=50 amount=-2 +kerning first=123 second=51 amount=-3 +kerning first=123 second=52 amount=-2 +kerning first=123 second=53 amount=-1 +kerning first=123 second=54 amount=-2 +kerning first=123 second=56 amount=-1 +kerning first=123 second=57 amount=-1 +kerning first=123 second=65 amount=-2 +kerning first=123 second=67 amount=-1 +kerning first=123 second=71 amount=-1 +kerning first=123 second=74 amount=-2 +kerning first=123 second=79 amount=-1 +kerning first=123 second=81 amount=-2 +kerning first=123 second=83 amount=-1 +kerning first=123 second=94 amount=-1 +kerning first=123 second=95 amount=-6 +kerning first=123 second=96 amount=-2 +kerning first=123 second=97 amount=-2 +kerning first=123 second=99 amount=-1 +kerning first=123 second=100 amount=-2 +kerning first=123 second=101 amount=-2 +kerning first=123 second=102 amount=-2 +kerning first=123 second=105 amount=-1 +kerning first=123 second=109 amount=-1 +kerning first=123 second=110 amount=-1 +kerning first=123 second=111 amount=-2 +kerning first=123 second=113 amount=-2 +kerning first=123 second=114 amount=-1 +kerning first=123 second=115 amount=-2 +kerning first=123 second=116 amount=-2 +kerning first=123 second=117 amount=-1 +kerning first=123 second=118 amount=-2 +kerning first=123 second=119 amount=-1 +kerning first=123 second=121 amount=-2 +kerning first=123 second=122 amount=-1 +kerning first=123 second=126 amount=-1 +kerning first=124 second=49 amount=-3 +kerning first=124 second=50 amount=-2 +kerning first=124 second=51 amount=-1 +kerning first=124 second=52 amount=-2 +kerning first=124 second=96 amount=-2 +kerning first=125 second=49 amount=-4 +kerning first=125 second=50 amount=-1 +kerning first=125 second=51 amount=-1 +kerning first=125 second=52 amount=-2 +kerning first=125 second=90 amount=-1 +kerning first=125 second=93 amount=-1 +kerning first=125 second=96 amount=-1 +kerning first=125 second=123 amount=3 +kerning first=126 second=49 amount=-6 +kerning first=126 second=50 amount=-8 +kerning first=126 second=51 amount=-5 +kerning first=126 second=52 amount=-3 +kerning first=126 second=53 amount=-14 +kerning first=126 second=55 amount=-5 +kerning first=126 second=56 amount=-1 +kerning first=126 second=65 amount=-2 +kerning first=126 second=74 amount=-4 +kerning first=126 second=77 amount=-2 +kerning first=126 second=83 amount=-4 +kerning first=126 second=84 amount=-3 +kerning first=126 second=86 amount=-2 +kerning first=126 second=87 amount=-2 +kerning first=126 second=88 amount=-4 +kerning first=126 second=89 amount=-4 +kerning first=126 second=90 amount=-5 +kerning first=126 second=92 amount=-1 +kerning first=126 second=93 amount=-1 +kerning first=126 second=95 amount=-13 +kerning first=126 second=96 amount=-9 +kerning first=126 second=125 amount=-1 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/comic/README.md b/src/main/resources/omni_power/gdx-skins/comic/README.md new file mode 100644 index 0000000..2608f71 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/README.md @@ -0,0 +1,22 @@ +# Comic UI + +``` +Comic UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Comic UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Simplistic comic-inspired UI. + +![Comic](preview.gif) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/comic-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/comic/preview.gif b/src/main/resources/omni_power/gdx-skins/comic/preview.gif new file mode 100644 index 0000000..75744a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/Crimson-Roach.png b/src/main/resources/omni_power/gdx-skins/comic/raw/Crimson-Roach.png new file mode 100644 index 0000000..591a007 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/Crimson-Roach.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-left.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-left.9.png new file mode 100644 index 0000000..18af18f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-left.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-left.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-left.png new file mode 100644 index 0000000..ca3c6e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-right.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-right.9.png new file mode 100644 index 0000000..e478eb8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-right.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-right.png new file mode 100644 index 0000000..3f1aede Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-lower-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-left.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-left.9.png new file mode 100644 index 0000000..dc0b5ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-left.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-left.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-left.png new file mode 100644 index 0000000..d6219d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-right.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-right.9.png new file mode 100644 index 0000000..6bb6ecb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-right.png b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-right.png new file mode 100644 index 0000000..6f53e2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/bubble-top-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/button-highlighted.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/button-highlighted.9.png new file mode 100644 index 0000000..e32d2cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/button-highlighted.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/button-highlighted.png b/src/main/resources/omni_power/gdx-skins/comic/raw/button-highlighted.png new file mode 100644 index 0000000..22149d2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/button-highlighted.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/button-pressed.9.png new file mode 100644 index 0000000..0553c5d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/comic/raw/button-pressed.png new file mode 100644 index 0000000..bcc8767 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/button.9.png new file mode 100644 index 0000000..a1c9590 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/button.png b/src/main/resources/omni_power/gdx-skins/comic/raw/button.png new file mode 100644 index 0000000..7af8af5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/comic/raw/checkbox-on.png new file mode 100644 index 0000000..a5d1cf7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/comic/raw/checkbox.png new file mode 100644 index 0000000..51109c4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/cursor.9.png new file mode 100644 index 0000000..7cf6c24 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/comic/raw/cursor.png new file mode 100644 index 0000000..d1e417e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/comic/raw/font-button-export.fnt new file mode 100644 index 0000000..f3b66dd --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/raw/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=29 base=29 scaleW=181 scaleH=184 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=170 y=153 width=6 height=23 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="!" +char id=34 x=77 y=173 width=9 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=24 y=48 width=19 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=114 y=20 width=15 height=27 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="$" +char id=37 x=42 y=142 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="%" +char id=38 x=44 y=47 width=18 height=23 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="&" +char id=39 x=36 y=174 width=4 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=159 y=32 width=10 height=31 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=159 y=118 width=10 height=30 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=80 y=95 width=16 height=17 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0 letter="*" +char id=43 x=42 y=166 width=17 height=17 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="+" +char id=44 x=14 y=172 width=6 height=8 xoffset=0 yoffset=24 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=0 y=172 width=13 height=4 xoffset=0 yoffset=17 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=36 y=167 width=5 height=6 xoffset=0 yoffset=23 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=145 y=88 width=12 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=145 y=69 width=12 height=18 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=171 y=100 width=5 height=17 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=145 y=32 width=13 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="2" +char id=51 x=130 y=93 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="3" +char id=52 x=81 y=47 width=16 height=18 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=131 y=0 width=13 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="5" +char id=54 x=145 y=50 width=13 height=18 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=145 y=111 width=12 height=17 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="7" +char id=56 x=158 y=100 width=12 height=17 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=130 y=111 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=170 y=137 width=6 height=15 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=":" +char id=59 x=170 y=118 width=7 height=18 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=63 y=95 width=14 height=15 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=60 y=173 width=16 height=10 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=21 y=167 width=14 height=16 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=144 y=129 width=14 height=23 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=25 height=23 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="@" +char id=65 x=21 y=143 width=20 height=23 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=46 y=24 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="B" +char id=67 x=63 y=71 width=17 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="C" +char id=68 x=43 y=111 width=18 height=23 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=97 y=159 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=97 y=136 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=0 y=99 width=22 height=23 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="G" +char id=72 x=46 y=0 width=18 height=23 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="H" +char id=73 x=171 y=57 width=6 height=22 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=97 y=112 width=16 height=23 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=114 y=128 width=15 height=22 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="K" +char id=76 x=144 y=153 width=13 height=22 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=0 y=48 width=23 height=22 xoffset=0 yoffset=7 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=23 y=71 width=19 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="N" +char id=79 x=23 y=94 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="O" +char id=80 x=97 y=89 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=0 y=143 width=20 height=24 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=81 y=66 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="R" +char id=83 x=26 y=0 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="S" +char id=84 x=65 y=0 width=17 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="T" +char id=85 x=65 y=24 width=17 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="U" +char id=86 x=83 y=0 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=24 width=25 height=23 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="W" +char id=88 x=63 y=47 width=17 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="X" +char id=89 x=26 y=24 width=19 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="Y" +char id=90 x=23 y=118 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="Z" +char id=91 x=158 y=69 width=12 height=30 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=170 y=32 width=10 height=24 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="\" +char id=93 x=159 y=0 width=11 height=31 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="]" +char id=94 x=114 y=176 width=11 height=7 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=168 width=18 height=3 xoffset=0 yoffset=29 xadvance=20 page=0 chnl=0 letter="_" +char id=96 x=87 y=173 width=8 height=8 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="`" +char id=97 x=62 y=152 width=17 height=19 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="a" +char id=98 x=100 y=0 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=98 y=43 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=98 y=63 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=100 y=20 width=13 height=18 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="e" +char id=102 x=130 y=20 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=43 y=91 width=19 height=19 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="g" +char id=104 x=114 y=68 width=15 height=20 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="h" +char id=105 x=171 y=80 width=5 height=19 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=130 y=40 width=14 height=20 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="j" +char id=107 x=130 y=129 width=13 height=19 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=158 y=153 width=11 height=19 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="l" +char id=109 x=43 y=71 width=19 height=19 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="m" +char id=110 x=80 y=153 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="n" +char id=111 x=80 y=113 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="o" +char id=112 x=114 y=151 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="p" +char id=113 x=62 y=131 width=17 height=20 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="q" +char id=114 x=129 y=151 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="r" +char id=115 x=80 y=133 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=116 y=0 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=114 y=48 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=114 y=89 width=15 height=18 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=123 width=21 height=19 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="w" +char id=120 x=114 y=108 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=62 y=111 width=17 height=19 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=83 y=23 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="z" +char id=123 x=145 y=0 width=13 height=31 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=171 y=0 width=6 height=30 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=130 y=61 width=14 height=31 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="}" +char id=126 x=0 y=177 width=12 height=5 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=126 y=171 width=8 height=8 xoffset=0 yoffset=15 xadvance=10 page=0 chnl=0 letter="•" +char id=169 x=0 y=71 width=22 height=27 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-button-export.png b/src/main/resources/omni_power/gdx-skins/comic/raw/font-button-export.png new file mode 100644 index 0000000..fbbdd8b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/font-button-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-button.png b/src/main/resources/omni_power/gdx-skins/comic/raw/font-button.png new file mode 100644 index 0000000..e962741 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/font-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/comic/raw/font-export.fnt new file mode 100644 index 0000000..4472dd0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=87 scaleH=87 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=81 y=47 width=3 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=38 y=72 width=4 height=4 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=29 y=67 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=52 y=70 width=7 height=12 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=29 y=56 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="%" +char id=38 x=31 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=77 y=0 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=74 y=68 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=76 y=8 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=20 y=78 width=7 height=8 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=47 y=22 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=74 y=82 width=4 height=4 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=69 y=38 width=5 height=2 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=50 y=83 width=3 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=75 y=38 width=5 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=75 y=49 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="0" +char id=49 x=82 y=9 width=2 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="1" +char id=50 x=67 y=68 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=68 y=60 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=28 y=78 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=69 y=16 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=63 y=0 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=61 y=60 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=70 y=0 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=69 y=8 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=84 y=78 width=2 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=81 y=58 width=3 height=8 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=68 y=52 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="<" +char id=61 x=36 y=81 width=7 height=4 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=68 y=44 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=67 y=76 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=11 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=20 y=55 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="A" +char id=66 x=30 y=33 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=10 y=67 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=22 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=47 y=11 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=29 y=45 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=0 y=44 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=12 y=11 width=9 height=11 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=81 y=22 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=22 y=11 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=48 y=0 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=62 y=9 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=0 y=22 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=0 y=66 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=55 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="O" +char id=80 x=54 y=40 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=33 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=13 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=20 y=66 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=21 y=34 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=11 y=33 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=21 y=23 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=12 height=10 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=40 y=0 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=11 y=44 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=30 y=22 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=75 y=24 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=80 y=67 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="\" +char id=93 x=69 y=24 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=62 y=44 width=5 height=4 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=36 y=78 width=7 height=2 xoffset=0 yoffset=11 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=79 y=82 width=4 height=4 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=38 y=44 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=46 y=60 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=46 y=50 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=39 y=21 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=38 y=54 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=56 y=0 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=31 y=11 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=21 y=45 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=82 y=0 width=3 height=8 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=60 y=78 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=61 y=51 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=75 y=58 width=5 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=10 y=78 width=9 height=8 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=44 y=72 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=46 y=40 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=39 y=31 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=39 y=11 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=54 y=51 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=12 y=23 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=55 y=25 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=54 y=60 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=60 y=69 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=0 y=77 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=62 y=34 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=38 y=63 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=47 y=30 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=62 y=20 width=6 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=81 y=33 width=3 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=55 y=11 width=6 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=44 y=83 width=5 height=3 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="~" +char id=8226 x=55 y=35 width=4 height=4 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=10 y=55 width=9 height=11 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/comic/raw/font-export.png new file mode 100644 index 0000000..c34dea9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/comic/raw/font-title-export.fnt new file mode 100644 index 0000000..ffb224c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/raw/font-title-export.fnt @@ -0,0 +1,627 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=62 base=62 scaleW=320 scaleH=329 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=270 y=180 width=13 height=45 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=0 letter="!" +char id=34 x=36 y=195 width=17 height=16 xoffset=0 yoffset=17 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=0 y=152 width=39 height=42 xoffset=0 yoffset=15 xadvance=42 page=0 chnl=0 letter="#" +char id=36 x=50 y=54 width=29 height=57 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="$" +char id=37 x=0 y=103 width=49 height=48 xoffset=0 yoffset=14 xadvance=52 page=0 chnl=0 letter="%" +char id=38 x=80 y=45 width=25 height=45 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="&" +char id=39 x=54 y=190 width=11 height=16 xoffset=0 yoffset=17 xadvance=14 page=0 chnl=0 letter="'" +char id=40 x=292 y=45 width=14 height=59 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="(" +char id=41 x=305 y=105 width=14 height=59 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter=")" +char id=42 x=0 y=301 width=27 height=26 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="*" +char id=43 x=0 y=225 width=33 height=32 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="+" +char id=44 x=50 y=127 width=11 height=16 xoffset=0 yoffset=51 xadvance=14 page=0 chnl=0 letter="," +char id=45 x=163 y=317 width=15 height=11 xoffset=0 yoffset=32 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=36 y=212 width=10 height=12 xoffset=0 yoffset=51 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=287 y=135 width=17 height=58 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="/" +char id=48 x=190 y=90 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=305 y=165 width=13 height=45 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=0 letter="1" +char id=50 x=254 y=45 width=19 height=44 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="2" +char id=51 x=186 y=181 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="3" +char id=52 x=129 y=45 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="4" +char id=53 x=196 y=0 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=164 y=180 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=250 y=135 width=18 height=44 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="7" +char id=56 x=185 y=270 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="8" +char id=57 x=186 y=135 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="9" +char id=58 x=71 y=157 width=10 height=30 xoffset=0 yoffset=33 xadvance=13 page=0 chnl=0 letter=":" +char id=59 x=66 y=236 width=11 height=34 xoffset=0 yoffset=33 xadvance=14 page=0 chnl=0 letter=";" +char id=60 x=34 y=279 width=30 height=37 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=0 y=258 width=33 height=20 xoffset=0 yoffset=31 xadvance=36 page=0 chnl=0 letter="=" +char id=62 x=40 y=152 width=30 height=37 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter=">" +char id=63 x=229 y=136 width=20 height=45 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=52 height=53 xoffset=0 yoffset=14 xadvance=55 page=0 chnl=0 letter="@" +char id=65 x=117 y=281 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="A" +char id=66 x=233 y=45 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="B" +char id=67 x=174 y=0 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="C" +char id=68 x=229 y=91 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="D" +char id=69 x=279 y=0 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="E" +char id=70 x=270 y=90 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="F" +char id=71 x=174 y=45 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="G" +char id=72 x=212 y=46 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="H" +char id=73 x=297 y=0 width=10 height=44 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=118 y=182 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="J" +char id=75 x=122 y=90 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="K" +char id=76 x=269 y=284 width=18 height=44 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="L" +char id=77 x=53 y=0 width=27 height=44 xoffset=0 yoffset=18 xadvance=30 page=0 chnl=0 letter="M" +char id=78 x=164 y=225 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="N" +char id=79 x=168 y=90 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=207 y=227 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="P" +char id=81 x=94 y=157 width=23 height=45 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="Q" +char id=82 x=145 y=90 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="R" +char id=83 x=207 y=272 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="S" +char id=84 x=218 y=0 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="T" +char id=85 x=141 y=181 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="U" +char id=86 x=140 y=272 width=22 height=45 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="V" +char id=87 x=66 y=190 width=27 height=45 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 letter="W" +char id=88 x=81 y=0 width=24 height=44 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 letter="X" +char id=89 x=141 y=226 width=22 height=45 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="Y" +char id=90 x=250 y=90 width=19 height=44 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="Z" +char id=91 x=288 y=194 width=16 height=56 xoffset=0 yoffset=15 xadvance=19 page=0 chnl=0 letter="[" +char id=92 x=34 y=225 width=31 height=53 xoffset=0 yoffset=15 xadvance=34 page=0 chnl=0 letter="\" +char id=93 x=288 y=251 width=16 height=56 xoffset=0 yoffset=15 xadvance=19 page=0 chnl=0 letter="]" +char id=94 x=0 y=195 width=35 height=29 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="^" +char id=95 x=0 y=293 width=29 height=7 xoffset=0 yoffset=63 xadvance=32 page=0 chnl=0 letter="_" +char id=96 x=50 y=112 width=14 height=14 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="`" +char id=97 x=129 y=0 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="a" +char id=98 x=208 y=180 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="b" +char id=99 x=152 y=0 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="c" +char id=100 x=208 y=135 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="d" +char id=101 x=274 y=45 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="e" +char id=102 x=269 y=135 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=152 y=45 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="g" +char id=104 x=228 y=270 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="h" +char id=105 x=305 y=211 width=10 height=44 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter="i" +char id=106 x=118 y=137 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="j" +char id=107 x=118 y=227 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="k" +char id=108 x=260 y=0 width=18 height=44 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="l" +char id=109 x=71 y=112 width=27 height=44 xoffset=0 yoffset=18 xadvance=30 page=0 chnl=0 letter="m" +char id=110 x=164 y=135 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=163 y=272 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="o" +char id=112 x=228 y=225 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="p" +char id=113 x=93 y=281 width=23 height=45 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="q" +char id=114 x=106 y=45 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="r" +char id=115 x=249 y=182 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="s" +char id=116 x=239 y=0 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="t" +char id=117 x=106 y=0 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="u" +char id=118 x=99 y=91 width=22 height=45 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=65 y=279 width=27 height=45 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 letter="w" +char id=120 x=93 y=236 width=24 height=44 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 letter="x" +char id=121 x=141 y=135 width=22 height=45 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="y" +char id=122 x=249 y=284 width=19 height=44 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=249 y=227 width=19 height=56 xoffset=0 yoffset=15 xadvance=22 page=0 chnl=0 letter="{" +char id=124 x=305 y=256 width=9 height=65 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="|" +char id=125 x=269 y=227 width=18 height=56 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 letter="}" +char id=126 x=0 y=279 width=33 height=13 xoffset=0 yoffset=35 xadvance=36 page=0 chnl=0 letter="~" +char id=8226 x=186 y=227 width=20 height=19 xoffset=0 yoffset=30 xadvance=23 page=0 chnl=0 letter="•" +char id=169 x=0 y=54 width=49 height=48 xoffset=0 yoffset=14 xadvance=52 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=120 page=0 chnl=0 letter=" " + +kernings count=523 +kerning first=65 second=39 amount=-6 +kerning first=65 second=67 amount=-3 +kerning first=65 second=71 amount=-3 +kerning first=65 second=79 amount=-3 +kerning first=65 second=81 amount=-3 +kerning first=65 second=84 amount=-6 +kerning first=65 second=85 amount=-3 +kerning first=65 second=86 amount=-6 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-8 +kerning first=66 second=65 amount=-2 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-3 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-4 +kerning first=67 second=65 amount=-3 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-3 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-3 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-4 +kerning first=69 second=67 amount=-2 +kerning first=69 second=79 amount=-2 +kerning first=70 second=65 amount=-5 +kerning first=70 second=67 amount=-2 +kerning first=70 second=71 amount=-2 +kerning first=70 second=79 amount=-2 +kerning first=70 second=46 amount=-7 +kerning first=70 second=44 amount=-8 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-3 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-4 +kerning first=76 second=39 amount=-9 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-6 +kerning first=76 second=86 amount=-6 +kerning first=76 second=87 amount=-2 +kerning first=76 second=89 amount=-8 +kerning first=76 second=71 amount=-2 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=77 second=79 amount=-2 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-2 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-3 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-4 +kerning first=79 second=89 amount=-4 +kerning first=80 second=65 amount=-4 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-3 +kerning first=80 second=46 amount=-11 +kerning first=80 second=44 amount=-12 +kerning first=80 second=59 amount=-1 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-3 +kerning first=82 second=67 amount=-3 +kerning first=82 second=71 amount=-3 +kerning first=82 second=89 amount=-6 +kerning first=82 second=84 amount=-4 +kerning first=82 second=85 amount=-3 +kerning first=82 second=86 amount=-5 +kerning first=82 second=87 amount=-3 +kerning first=82 second=89 amount=-6 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-5 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-3 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-2 +kerning first=86 second=65 amount=-6 +kerning first=86 second=67 amount=-3 +kerning first=86 second=71 amount=-3 +kerning first=86 second=79 amount=-3 +kerning first=86 second=83 amount=-3 +kerning first=87 second=65 amount=-5 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-6 +kerning first=89 second=67 amount=-3 +kerning first=89 second=79 amount=-3 +kerning first=89 second=83 amount=-3 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-3 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-3 +kerning first=65 second=111 amount=-3 +kerning first=65 second=112 amount=-2 +kerning first=65 second=113 amount=-3 +kerning first=65 second=116 amount=-6 +kerning first=65 second=117 amount=-3 +kerning first=65 second=118 amount=-6 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-8 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-4 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-2 +kerning first=67 second=97 amount=-3 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-2 +kerning first=67 second=44 amount=-3 +kerning first=68 second=97 amount=-3 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-3 +kerning first=69 second=117 amount=-2 +kerning first=69 second=118 amount=-2 +kerning first=70 second=97 amount=-5 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-2 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-2 +kerning first=70 second=121 amount=-3 +kerning first=70 second=46 amount=-7 +kerning first=70 second=44 amount=-8 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-2 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-3 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-3 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-3 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-4 +kerning first=75 second=117 amount=-4 +kerning first=76 second=117 amount=-2 +kerning first=76 second=121 amount=-8 +kerning first=77 second=97 amount=-2 +kerning first=77 second=99 amount=-2 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-2 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-2 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-3 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-2 +kerning first=79 second=44 amount=-3 +kerning first=80 second=97 amount=-4 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-3 +kerning first=82 second=101 amount=-3 +kerning first=82 second=111 amount=-3 +kerning first=82 second=116 amount=-4 +kerning first=82 second=117 amount=-3 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-5 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-1 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-2 +kerning first=84 second=117 amount=-2 +kerning first=84 second=119 amount=-1 +kerning first=84 second=121 amount=-3 +kerning first=84 second=46 amount=-6 +kerning first=84 second=44 amount=-7 +kerning first=84 second=59 amount=-6 +kerning first=84 second=58 amount=-6 +kerning first=85 second=97 amount=-3 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-2 +kerning first=85 second=46 amount=-2 +kerning first=85 second=44 amount=-3 +kerning first=86 second=97 amount=-6 +kerning first=86 second=101 amount=-2 +kerning first=86 second=105 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-3 +kerning first=86 second=46 amount=-6 +kerning first=86 second=44 amount=-7 +kerning first=86 second=59 amount=-4 +kerning first=86 second=58 amount=-4 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-2 +kerning first=87 second=109 amount=-3 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-4 +kerning first=87 second=46 amount=-4 +kerning first=87 second=44 amount=-5 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-4 +kerning first=88 second=101 amount=-3 +kerning first=88 second=111 amount=-4 +kerning first=88 second=117 amount=-4 +kerning first=88 second=121 amount=-6 +kerning first=89 second=100 amount=-2 +kerning first=89 second=101 amount=-2 +kerning first=89 second=105 amount=-2 +kerning first=89 second=112 amount=-2 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-3 +kerning first=89 second=46 amount=-6 +kerning first=89 second=44 amount=-7 +kerning first=89 second=59 amount=-4 +kerning first=89 second=58 amount=-4 +kerning first=97 second=99 amount=-3 +kerning first=97 second=100 amount=-2 +kerning first=97 second=101 amount=-2 +kerning first=97 second=103 amount=-3 +kerning first=97 second=112 amount=-2 +kerning first=97 second=102 amount=-2 +kerning first=97 second=116 amount=-6 +kerning first=97 second=117 amount=-3 +kerning first=97 second=118 amount=-6 +kerning first=97 second=119 amount=-3 +kerning first=97 second=121 amount=-8 +kerning first=97 second=112 amount=-2 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-4 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-3 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-3 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-2 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-3 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-4 +kerning first=100 second=46 amount=-2 +kerning first=100 second=44 amount=-3 +kerning first=101 second=97 amount=-2 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-3 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-5 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-7 +kerning first=102 second=44 amount=-8 +kerning first=103 second=97 amount=-3 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-2 +kerning first=103 second=44 amount=-3 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-3 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-2 +kerning first=106 second=97 amount=-3 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=106 second=44 amount=-3 +kerning first=107 second=97 amount=-4 +kerning first=107 second=99 amount=-4 +kerning first=107 second=100 amount=-3 +kerning first=107 second=101 amount=-3 +kerning first=107 second=103 amount=-4 +kerning first=107 second=111 amount=-4 +kerning first=108 second=97 amount=-2 +kerning first=108 second=99 amount=-2 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-2 +kerning first=108 second=111 amount=-2 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=108 second=118 amount=-6 +kerning first=108 second=119 amount=-2 +kerning first=108 second=121 amount=-8 +kerning first=109 second=97 amount=-2 +kerning first=109 second=99 amount=-2 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-2 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-2 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-2 +kerning first=109 second=117 amount=-2 +kerning first=109 second=118 amount=-3 +kerning first=109 second=121 amount=-4 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-3 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-3 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-4 +kerning first=111 second=121 amount=-4 +kerning first=111 second=46 amount=-2 +kerning first=111 second=44 amount=-3 +kerning first=112 second=97 amount=-4 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-11 +kerning first=112 second=44 amount=-12 +kerning first=113 second=117 amount=-3 +kerning first=116 second=46 amount=-6 +kerning first=114 second=97 amount=-4 +kerning first=114 second=100 amount=-3 +kerning first=114 second=101 amount=-3 +kerning first=114 second=103 amount=-3 +kerning first=114 second=107 amount=-3 +kerning first=114 second=108 amount=-3 +kerning first=114 second=109 amount=-3 +kerning first=114 second=110 amount=-3 +kerning first=114 second=111 amount=-3 +kerning first=114 second=113 amount=-3 +kerning first=114 second=114 amount=-3 +kerning first=114 second=116 amount=-4 +kerning first=114 second=118 amount=-5 +kerning first=114 second=121 amount=-6 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-2 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-2 +kerning first=116 second=100 amount=-1 +kerning first=116 second=97 amount=-5 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-2 +kerning first=116 second=46 amount=-6 +kerning first=116 second=44 amount=-7 +kerning first=117 second=97 amount=-3 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-2 +kerning first=117 second=118 amount=-3 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-4 +kerning first=118 second=97 amount=-6 +kerning first=118 second=98 amount=-2 +kerning first=118 second=99 amount=-3 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-3 +kerning first=118 second=111 amount=-3 +kerning first=118 second=118 amount=-3 +kerning first=118 second=121 amount=-4 +kerning first=118 second=46 amount=-6 +kerning first=118 second=44 amount=-7 +kerning first=119 second=97 amount=-5 +kerning first=119 second=120 amount=-4 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-2 +kerning first=119 second=111 amount=-2 +kerning first=119 second=46 amount=-4 +kerning first=119 second=44 amount=-5 +kerning first=120 second=97 amount=-4 +kerning first=120 second=101 amount=-3 +kerning first=120 second=111 amount=-4 +kerning first=121 second=46 amount=-6 +kerning first=121 second=44 amount=-7 +kerning first=121 second=97 amount=-6 +kerning first=121 second=99 amount=-3 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-3 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-2 +kerning first=112 second=115 amount=-2 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/comic/raw/font-title-export.png new file mode 100644 index 0000000..28a04fb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/comic/raw/font-title.png new file mode 100644 index 0000000..c9dd993 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/font.png b/src/main/resources/omni_power/gdx-skins/comic/raw/font.png new file mode 100644 index 0000000..e614b37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/half-tone-box.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/half-tone-box.9.png new file mode 100644 index 0000000..7dda8aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/half-tone-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/half-tone-box.png b/src/main/resources/omni_power/gdx-skins/comic/raw/half-tone-box.png new file mode 100644 index 0000000..8e83a41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/half-tone-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/minus.png b/src/main/resources/omni_power/gdx-skins/comic/raw/minus.png new file mode 100644 index 0000000..aba1e89 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/narration-box.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/narration-box.9.png new file mode 100644 index 0000000..78c19f6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/narration-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/narration-box.png b/src/main/resources/omni_power/gdx-skins/comic/raw/narration-box.png new file mode 100644 index 0000000..be71e1b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/narration-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/plus.png b/src/main/resources/omni_power/gdx-skins/comic/raw/plus.png new file mode 100644 index 0000000..ee15499 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar-knob.png b/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar-knob.png new file mode 100644 index 0000000..2b3c281 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar.9.png new file mode 100644 index 0000000..3612116 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar.png new file mode 100644 index 0000000..c2e3266 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/comic/raw/radio-on.png new file mode 100644 index 0000000..5e2e6b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/radio.png b/src/main/resources/omni_power/gdx-skins/comic/raw/radio.png new file mode 100644 index 0000000..2d01766 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/comic/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..5a2e646 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/comic/raw/scrollbar-vertical.png new file mode 100644 index 0000000..37dac1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-list.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-list.9.png new file mode 100644 index 0000000..217ecb9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-list.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-list.png new file mode 100644 index 0000000..2623e18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-open.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-open.9.png new file mode 100644 index 0000000..10f8c21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-open.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-open.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-open.png new file mode 100644 index 0000000..76df213 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big-open.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big.9.png new file mode 100644 index 0000000..a2bcec6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big.png new file mode 100644 index 0000000..5f8e5b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-big.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-list.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-list.9.png new file mode 100644 index 0000000..db8f91c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-list.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-list.png new file mode 100644 index 0000000..351dacd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-open.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-open.9.png new file mode 100644 index 0000000..e716407 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-open.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-open.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-open.png new file mode 100644 index 0000000..37dd464 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box-open.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box.9.png new file mode 100644 index 0000000..2a21648 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box.png new file mode 100644 index 0000000..fc1de64 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/comic/raw/slider-knob.png new file mode 100644 index 0000000..35b9e02 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/slider.9.png new file mode 100644 index 0000000..f172689 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/slider.png b/src/main/resources/omni_power/gdx-skins/comic/raw/slider.png new file mode 100644 index 0000000..400fd39 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/splitpane.png b/src/main/resources/omni_power/gdx-skins/comic/raw/splitpane.png new file mode 100644 index 0000000..518e305 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/splitpane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/text-field.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/text-field.9.png new file mode 100644 index 0000000..e136821 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/text-field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/text-field.png b/src/main/resources/omni_power/gdx-skins/comic/raw/text-field.png new file mode 100644 index 0000000..d4061be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/text-field.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/white.png b/src/main/resources/omni_power/gdx-skins/comic/raw/white.png new file mode 100644 index 0000000..9432d30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/window-no-padding.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/window-no-padding.9.png new file mode 100644 index 0000000..bb9d27e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/window-no-padding.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/comic/raw/window.9.png new file mode 100644 index 0000000..87594f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/raw/window.png b/src/main/resources/omni_power/gdx-skins/comic/raw/window.png new file mode 100644 index 0000000..1390072 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.atlas b/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.atlas new file mode 100644 index 0000000..aa4e9ef --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.atlas @@ -0,0 +1,305 @@ + +comic-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +Crimson-Roach + rotate: false + xy: 1, 192 + size: 690, 831 + orig: 690, 831 + offset: 0, 0 + index: -1 +bubble-lower-left + rotate: false + xy: 207, 8 + size: 203, 148 + split: 34, 165, 33, 82 + pad: 12, 14, 20, 69 + orig: 203, 148 + offset: 0, 0 + index: -1 +bubble-lower-right + rotate: false + xy: 412, 43 + size: 203, 147 + split: 163, 36, 33, 81 + pad: 14, 12, 20, 68 + orig: 203, 147 + offset: 0, 0 + index: -1 +bubble-top-left + rotate: false + xy: 617, 43 + size: 203, 147 + split: 31, 165, 79, 35 + pad: 12, 14, 66, 22 + orig: 203, 147 + offset: 0, 0 + index: -1 +bubble-top-right + rotate: false + xy: 693, 489 + size: 203, 148 + split: 164, 31, 79, 36 + pad: 12, 14, 66, 23 + orig: 203, 148 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 846, 210 + size: 150, 50 + split: 0, 0, 0, 1 + pad: 35, 37, 8, 7 + orig: 150, 50 + offset: 0, 0 + index: -1 +button-highlighted + rotate: false + xy: 846, 159 + size: 150, 49 + split: 1, 0, 1, 0 + pad: 35, 37, 8, 6 + orig: 150, 49 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 822, 108 + size: 150, 49 + split: 1, 0, 1, 0 + pad: 35, 37, 8, 6 + orig: 150, 49 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 1, 4 + size: 32, 26 + orig: 32, 26 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 35, 4 + size: 32, 26 + orig: 32, 26 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 135, 3 + size: 4, 27 + split: 0, 0, 0, 0 + orig: 4, 27 + offset: 0, 0 + index: -1 +font-button-export + rotate: false + xy: 822, 303 + size: 181, 184 + orig: 181, 184 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 898, 550 + size: 87, 87 + orig: 87, 87 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 693, 694 + size: 320, 329 + orig: 320, 329 + offset: 0, 0 + index: -1 +half-tone-box + rotate: false + xy: 822, 46 + size: 128, 60 + split: 3, 107, 3, 3 + pad: 5, 5, 5, 5 + orig: 128, 60 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 995, 666 + size: 26, 26 + orig: 26, 26 + offset: 0, 0 + index: -1 +narration-box + rotate: false + xy: 987, 620 + size: 16, 16 + split: 3, 3, 3, 3 + pad: 5, 5, 5, 5 + orig: 16, 16 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 995, 638 + size: 26, 26 + orig: 26, 26 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 693, 639 + size: 300, 53 + split: 10, 9, 11, 9 + pad: 10, 8, 0, 0 + orig: 300, 53 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 1021, 179 + size: 1, 53 + orig: 1, 53 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 69, 4 + size: 31, 26 + orig: 31, 26 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 102, 4 + size: 31, 26 + orig: 31, 26 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 952, 83 + size: 67, 23 + orig: 67, 23 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 998, 234 + size: 23, 67 + orig: 23, 67 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 566, 16 + size: 152, 25 + split: 4, 19, 6, 17 + pad: 4, 24, 6, 6 + orig: 152, 25 + offset: 0, 0 + index: -1 +select-box-big + rotate: false + xy: 720, 2 + size: 152, 39 + split: 4, 28, 6, 31 + pad: 8, 32, 7, 6 + orig: 152, 39 + offset: 0, 0 + index: -1 +select-box-big-list + rotate: false + xy: 693, 206 + size: 151, 54 + split: 4, 5, 0, 5 + pad: 6, 7, 2, 7 + orig: 151, 54 + offset: 0, 0 + index: -1 +select-box-big-open + rotate: false + xy: 822, 262 + size: 152, 39 + split: 4, 28, 6, 31 + pad: 8, 32, 7, 6 + orig: 152, 39 + offset: 0, 0 + index: -1 +select-box-list + rotate: false + xy: 1, 32 + size: 152, 60 + split: 4, 6, 0, 6 + pad: 6, 8, 2, 8 + orig: 152, 60 + offset: 0, 0 + index: -1 +select-box-open + rotate: false + xy: 412, 16 + size: 152, 25 + split: 4, 19, 6, 17 + pad: 4, 24, 6, 6 + orig: 152, 25 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 1, 158 + size: 358, 32 + split: 155, 155, 14, 14 + pad: 0, 0, 0, 0 + orig: 358, 32 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 361, 158 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 693, 194 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +text-field + rotate: false + xy: 1, 94 + size: 204, 62 + split: 10, 70, 13, 19 + pad: 11, 26, 12, 22 + orig: 204, 62 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1005, 620 + size: 16, 16 + split: 3, 3, 3, 3 + pad: 5, 5, 5, 5 + orig: 16, 16 + offset: 0, 0 + index: -1 +window-no-padding + rotate: false + xy: 1005, 620 + size: 16, 16 + split: 3, 3, 3, 3 + orig: 16, 16 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.json b/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.json new file mode 100644 index 0000000..0de586c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.json @@ -0,0 +1,216 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + button: { + file: font-button-export.fnt + } + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + gray: { + r: 0.7466668 + g: 0.7466668 + b: 0.7466668 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + cyan: { + name: white + color: { + r: 0.30333334 + g: 0.96412176 + b: 1 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-highlighted + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox + font: button + fontColor: black + } + radio: { + checkboxOn: radio-on + checkboxOff: radio + font: button + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + over: button-highlighted + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + narration: { + font: font + fontColor: black + background: narration-box + } + big: { + font: button + fontColor: black + } + title: { + font: title + fontColor: white + } + alt: { + font: font + fontColor: black + background: window + } + half-tone: { + font: button + fontColor: black + background: half-tone-box + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: black + fontColorUnselected: black + selection: cyan + } + select-box: { + font: font + fontColorSelected: black + fontColorUnselected: black + selection: cyan + background: select-box-list + } + select-box-big: { + font: button + fontColorSelected: black + fontColorUnselected: black + selection: cyan + background: select-box-big-list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-knob + } + default-vertical: { + background: progress-bar + knobBefore: progress-bar-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } + select-box: { + background: select-box-list + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box + scrollStyle: default + listStyle: select-box + backgroundOpen: select-box-open + } + big: { + font: button + fontColor: black + background: select-box-big + scrollStyle: default + listStyle: select-box-big + backgroundOpen: select-box-big-open + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider + knob: slider-knob + } + default-vertical: { + background: slider + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: button + fontColor: black + up: button + down: button-pressed + over: button-highlighted + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: text-field + cursor: cursor + selection: cyan + messageFontColor: gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: alt + } + alt: { + label: narration + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: cyan + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + } + alt: { + background: narration-box + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.png b/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.png new file mode 100644 index 0000000..f7362b4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/comic/skin/comic-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/comic/skin/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/comic/skin/font-button-export.fnt new file mode 100644 index 0000000..f3b66dd --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/skin/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=29 base=29 scaleW=181 scaleH=184 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=170 y=153 width=6 height=23 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="!" +char id=34 x=77 y=173 width=9 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=24 y=48 width=19 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=114 y=20 width=15 height=27 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="$" +char id=37 x=42 y=142 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="%" +char id=38 x=44 y=47 width=18 height=23 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="&" +char id=39 x=36 y=174 width=4 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=159 y=32 width=10 height=31 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=159 y=118 width=10 height=30 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=80 y=95 width=16 height=17 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0 letter="*" +char id=43 x=42 y=166 width=17 height=17 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="+" +char id=44 x=14 y=172 width=6 height=8 xoffset=0 yoffset=24 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=0 y=172 width=13 height=4 xoffset=0 yoffset=17 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=36 y=167 width=5 height=6 xoffset=0 yoffset=23 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=145 y=88 width=12 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=145 y=69 width=12 height=18 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=171 y=100 width=5 height=17 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=145 y=32 width=13 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="2" +char id=51 x=130 y=93 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="3" +char id=52 x=81 y=47 width=16 height=18 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=131 y=0 width=13 height=17 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="5" +char id=54 x=145 y=50 width=13 height=18 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=145 y=111 width=12 height=17 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="7" +char id=56 x=158 y=100 width=12 height=17 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=130 y=111 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=170 y=137 width=6 height=15 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=":" +char id=59 x=170 y=118 width=7 height=18 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=63 y=95 width=14 height=15 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=60 y=173 width=16 height=10 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=21 y=167 width=14 height=16 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=144 y=129 width=14 height=23 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=25 height=23 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="@" +char id=65 x=21 y=143 width=20 height=23 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=46 y=24 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="B" +char id=67 x=63 y=71 width=17 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="C" +char id=68 x=43 y=111 width=18 height=23 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=97 y=159 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=97 y=136 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=0 y=99 width=22 height=23 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="G" +char id=72 x=46 y=0 width=18 height=23 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="H" +char id=73 x=171 y=57 width=6 height=22 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=97 y=112 width=16 height=23 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=114 y=128 width=15 height=22 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="K" +char id=76 x=144 y=153 width=13 height=22 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=0 y=48 width=23 height=22 xoffset=0 yoffset=7 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=23 y=71 width=19 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="N" +char id=79 x=23 y=94 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="O" +char id=80 x=97 y=89 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=0 y=143 width=20 height=24 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=81 y=66 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="R" +char id=83 x=26 y=0 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="S" +char id=84 x=65 y=0 width=17 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="T" +char id=85 x=65 y=24 width=17 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="U" +char id=86 x=83 y=0 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=24 width=25 height=23 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="W" +char id=88 x=63 y=47 width=17 height=23 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="X" +char id=89 x=26 y=24 width=19 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="Y" +char id=90 x=23 y=118 width=19 height=23 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="Z" +char id=91 x=158 y=69 width=12 height=30 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=170 y=32 width=10 height=24 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="\" +char id=93 x=159 y=0 width=11 height=31 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="]" +char id=94 x=114 y=176 width=11 height=7 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=168 width=18 height=3 xoffset=0 yoffset=29 xadvance=20 page=0 chnl=0 letter="_" +char id=96 x=87 y=173 width=8 height=8 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="`" +char id=97 x=62 y=152 width=17 height=19 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="a" +char id=98 x=100 y=0 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=98 y=43 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=98 y=63 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=100 y=20 width=13 height=18 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="e" +char id=102 x=130 y=20 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=43 y=91 width=19 height=19 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="g" +char id=104 x=114 y=68 width=15 height=20 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="h" +char id=105 x=171 y=80 width=5 height=19 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=130 y=40 width=14 height=20 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="j" +char id=107 x=130 y=129 width=13 height=19 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=158 y=153 width=11 height=19 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="l" +char id=109 x=43 y=71 width=19 height=19 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="m" +char id=110 x=80 y=153 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="n" +char id=111 x=80 y=113 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="o" +char id=112 x=114 y=151 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="p" +char id=113 x=62 y=131 width=17 height=20 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="q" +char id=114 x=129 y=151 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="r" +char id=115 x=80 y=133 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=116 y=0 width=14 height=19 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=114 y=48 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=114 y=89 width=15 height=18 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=123 width=21 height=19 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="w" +char id=120 x=114 y=108 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=62 y=111 width=17 height=19 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=83 y=23 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="z" +char id=123 x=145 y=0 width=13 height=31 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=171 y=0 width=6 height=30 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=130 y=61 width=14 height=31 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="}" +char id=126 x=0 y=177 width=12 height=5 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=126 y=171 width=8 height=8 xoffset=0 yoffset=15 xadvance=10 page=0 chnl=0 letter="•" +char id=169 x=0 y=71 width=22 height=27 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/comic/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/comic/skin/font-export.fnt new file mode 100644 index 0000000..4472dd0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=87 scaleH=87 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=81 y=47 width=3 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=38 y=72 width=4 height=4 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=29 y=67 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=52 y=70 width=7 height=12 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=29 y=56 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="%" +char id=38 x=31 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=77 y=0 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=74 y=68 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=76 y=8 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=20 y=78 width=7 height=8 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=47 y=22 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=74 y=82 width=4 height=4 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=69 y=38 width=5 height=2 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=50 y=83 width=3 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=75 y=38 width=5 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=75 y=49 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="0" +char id=49 x=82 y=9 width=2 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="1" +char id=50 x=67 y=68 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=68 y=60 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=28 y=78 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=69 y=16 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=63 y=0 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=61 y=60 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=70 y=0 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=69 y=8 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=84 y=78 width=2 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=81 y=58 width=3 height=8 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=68 y=52 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="<" +char id=61 x=36 y=81 width=7 height=4 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=68 y=44 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=67 y=76 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=11 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=20 y=55 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="A" +char id=66 x=30 y=33 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=10 y=67 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=22 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=47 y=11 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=29 y=45 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=0 y=44 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=12 y=11 width=9 height=11 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=81 y=22 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=22 y=11 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=48 y=0 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=62 y=9 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=0 y=22 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=0 y=66 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=55 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="O" +char id=80 x=54 y=40 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=33 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=13 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=20 y=66 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=21 y=34 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=11 y=33 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=21 y=23 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=12 height=10 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=40 y=0 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=11 y=44 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=30 y=22 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=75 y=24 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=80 y=67 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="\" +char id=93 x=69 y=24 width=5 height=13 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=62 y=44 width=5 height=4 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=36 y=78 width=7 height=2 xoffset=0 yoffset=11 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=79 y=82 width=4 height=4 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=38 y=44 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=46 y=60 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=46 y=50 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=39 y=21 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=38 y=54 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=56 y=0 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=31 y=11 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=21 y=45 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=82 y=0 width=3 height=8 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=60 y=78 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=61 y=51 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=75 y=58 width=5 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=10 y=78 width=9 height=8 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=44 y=72 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=46 y=40 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=39 y=31 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=39 y=11 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=54 y=51 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=12 y=23 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=55 y=25 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=54 y=60 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=60 y=69 width=6 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=0 y=77 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=62 y=34 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=38 y=63 width=7 height=8 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=47 y=30 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=62 y=20 width=6 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=81 y=33 width=3 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=55 y=11 width=6 height=13 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=44 y=83 width=5 height=3 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="~" +char id=8226 x=55 y=35 width=4 height=4 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=10 y=55 width=9 height=11 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/comic/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/comic/skin/font-title-export.fnt new file mode 100644 index 0000000..ffb224c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/comic/skin/font-title-export.fnt @@ -0,0 +1,627 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=62 base=62 scaleW=320 scaleH=329 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=270 y=180 width=13 height=45 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=0 letter="!" +char id=34 x=36 y=195 width=17 height=16 xoffset=0 yoffset=17 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=0 y=152 width=39 height=42 xoffset=0 yoffset=15 xadvance=42 page=0 chnl=0 letter="#" +char id=36 x=50 y=54 width=29 height=57 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="$" +char id=37 x=0 y=103 width=49 height=48 xoffset=0 yoffset=14 xadvance=52 page=0 chnl=0 letter="%" +char id=38 x=80 y=45 width=25 height=45 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="&" +char id=39 x=54 y=190 width=11 height=16 xoffset=0 yoffset=17 xadvance=14 page=0 chnl=0 letter="'" +char id=40 x=292 y=45 width=14 height=59 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="(" +char id=41 x=305 y=105 width=14 height=59 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter=")" +char id=42 x=0 y=301 width=27 height=26 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="*" +char id=43 x=0 y=225 width=33 height=32 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="+" +char id=44 x=50 y=127 width=11 height=16 xoffset=0 yoffset=51 xadvance=14 page=0 chnl=0 letter="," +char id=45 x=163 y=317 width=15 height=11 xoffset=0 yoffset=32 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=36 y=212 width=10 height=12 xoffset=0 yoffset=51 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=287 y=135 width=17 height=58 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="/" +char id=48 x=190 y=90 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=305 y=165 width=13 height=45 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=0 letter="1" +char id=50 x=254 y=45 width=19 height=44 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="2" +char id=51 x=186 y=181 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="3" +char id=52 x=129 y=45 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="4" +char id=53 x=196 y=0 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=164 y=180 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=250 y=135 width=18 height=44 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="7" +char id=56 x=185 y=270 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="8" +char id=57 x=186 y=135 width=21 height=45 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="9" +char id=58 x=71 y=157 width=10 height=30 xoffset=0 yoffset=33 xadvance=13 page=0 chnl=0 letter=":" +char id=59 x=66 y=236 width=11 height=34 xoffset=0 yoffset=33 xadvance=14 page=0 chnl=0 letter=";" +char id=60 x=34 y=279 width=30 height=37 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=0 y=258 width=33 height=20 xoffset=0 yoffset=31 xadvance=36 page=0 chnl=0 letter="=" +char id=62 x=40 y=152 width=30 height=37 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter=">" +char id=63 x=229 y=136 width=20 height=45 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=52 height=53 xoffset=0 yoffset=14 xadvance=55 page=0 chnl=0 letter="@" +char id=65 x=117 y=281 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="A" +char id=66 x=233 y=45 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="B" +char id=67 x=174 y=0 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="C" +char id=68 x=229 y=91 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="D" +char id=69 x=279 y=0 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="E" +char id=70 x=270 y=90 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="F" +char id=71 x=174 y=45 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="G" +char id=72 x=212 y=46 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="H" +char id=73 x=297 y=0 width=10 height=44 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=118 y=182 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="J" +char id=75 x=122 y=90 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="K" +char id=76 x=269 y=284 width=18 height=44 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="L" +char id=77 x=53 y=0 width=27 height=44 xoffset=0 yoffset=18 xadvance=30 page=0 chnl=0 letter="M" +char id=78 x=164 y=225 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="N" +char id=79 x=168 y=90 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=207 y=227 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="P" +char id=81 x=94 y=157 width=23 height=45 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="Q" +char id=82 x=145 y=90 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="R" +char id=83 x=207 y=272 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="S" +char id=84 x=218 y=0 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="T" +char id=85 x=141 y=181 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="U" +char id=86 x=140 y=272 width=22 height=45 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="V" +char id=87 x=66 y=190 width=27 height=45 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 letter="W" +char id=88 x=81 y=0 width=24 height=44 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 letter="X" +char id=89 x=141 y=226 width=22 height=45 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="Y" +char id=90 x=250 y=90 width=19 height=44 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="Z" +char id=91 x=288 y=194 width=16 height=56 xoffset=0 yoffset=15 xadvance=19 page=0 chnl=0 letter="[" +char id=92 x=34 y=225 width=31 height=53 xoffset=0 yoffset=15 xadvance=34 page=0 chnl=0 letter="\" +char id=93 x=288 y=251 width=16 height=56 xoffset=0 yoffset=15 xadvance=19 page=0 chnl=0 letter="]" +char id=94 x=0 y=195 width=35 height=29 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="^" +char id=95 x=0 y=293 width=29 height=7 xoffset=0 yoffset=63 xadvance=32 page=0 chnl=0 letter="_" +char id=96 x=50 y=112 width=14 height=14 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="`" +char id=97 x=129 y=0 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="a" +char id=98 x=208 y=180 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="b" +char id=99 x=152 y=0 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="c" +char id=100 x=208 y=135 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="d" +char id=101 x=274 y=45 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="e" +char id=102 x=269 y=135 width=17 height=44 xoffset=0 yoffset=18 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=152 y=45 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="g" +char id=104 x=228 y=270 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="h" +char id=105 x=305 y=211 width=10 height=44 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter="i" +char id=106 x=118 y=137 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="j" +char id=107 x=118 y=227 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="k" +char id=108 x=260 y=0 width=18 height=44 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="l" +char id=109 x=71 y=112 width=27 height=44 xoffset=0 yoffset=18 xadvance=30 page=0 chnl=0 letter="m" +char id=110 x=164 y=135 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=163 y=272 width=21 height=44 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="o" +char id=112 x=228 y=225 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="p" +char id=113 x=93 y=281 width=23 height=45 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="q" +char id=114 x=106 y=45 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="r" +char id=115 x=249 y=182 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="s" +char id=116 x=239 y=0 width=20 height=44 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="t" +char id=117 x=106 y=0 width=22 height=44 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="u" +char id=118 x=99 y=91 width=22 height=45 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=65 y=279 width=27 height=45 xoffset=0 yoffset=17 xadvance=30 page=0 chnl=0 letter="w" +char id=120 x=93 y=236 width=24 height=44 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 letter="x" +char id=121 x=141 y=135 width=22 height=45 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="y" +char id=122 x=249 y=284 width=19 height=44 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=249 y=227 width=19 height=56 xoffset=0 yoffset=15 xadvance=22 page=0 chnl=0 letter="{" +char id=124 x=305 y=256 width=9 height=65 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="|" +char id=125 x=269 y=227 width=18 height=56 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 letter="}" +char id=126 x=0 y=279 width=33 height=13 xoffset=0 yoffset=35 xadvance=36 page=0 chnl=0 letter="~" +char id=8226 x=186 y=227 width=20 height=19 xoffset=0 yoffset=30 xadvance=23 page=0 chnl=0 letter="•" +char id=169 x=0 y=54 width=49 height=48 xoffset=0 yoffset=14 xadvance=52 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=120 page=0 chnl=0 letter=" " + +kernings count=523 +kerning first=65 second=39 amount=-6 +kerning first=65 second=67 amount=-3 +kerning first=65 second=71 amount=-3 +kerning first=65 second=79 amount=-3 +kerning first=65 second=81 amount=-3 +kerning first=65 second=84 amount=-6 +kerning first=65 second=85 amount=-3 +kerning first=65 second=86 amount=-6 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-8 +kerning first=66 second=65 amount=-2 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-3 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-4 +kerning first=67 second=65 amount=-3 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-3 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-3 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-4 +kerning first=69 second=67 amount=-2 +kerning first=69 second=79 amount=-2 +kerning first=70 second=65 amount=-5 +kerning first=70 second=67 amount=-2 +kerning first=70 second=71 amount=-2 +kerning first=70 second=79 amount=-2 +kerning first=70 second=46 amount=-7 +kerning first=70 second=44 amount=-8 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-3 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-4 +kerning first=76 second=39 amount=-9 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-6 +kerning first=76 second=86 amount=-6 +kerning first=76 second=87 amount=-2 +kerning first=76 second=89 amount=-8 +kerning first=76 second=71 amount=-2 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=77 second=79 amount=-2 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-2 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-3 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-4 +kerning first=79 second=89 amount=-4 +kerning first=80 second=65 amount=-4 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-3 +kerning first=80 second=46 amount=-11 +kerning first=80 second=44 amount=-12 +kerning first=80 second=59 amount=-1 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-3 +kerning first=82 second=67 amount=-3 +kerning first=82 second=71 amount=-3 +kerning first=82 second=89 amount=-6 +kerning first=82 second=84 amount=-4 +kerning first=82 second=85 amount=-3 +kerning first=82 second=86 amount=-5 +kerning first=82 second=87 amount=-3 +kerning first=82 second=89 amount=-6 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-5 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-3 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-2 +kerning first=86 second=65 amount=-6 +kerning first=86 second=67 amount=-3 +kerning first=86 second=71 amount=-3 +kerning first=86 second=79 amount=-3 +kerning first=86 second=83 amount=-3 +kerning first=87 second=65 amount=-5 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-6 +kerning first=89 second=67 amount=-3 +kerning first=89 second=79 amount=-3 +kerning first=89 second=83 amount=-3 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-3 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-3 +kerning first=65 second=111 amount=-3 +kerning first=65 second=112 amount=-2 +kerning first=65 second=113 amount=-3 +kerning first=65 second=116 amount=-6 +kerning first=65 second=117 amount=-3 +kerning first=65 second=118 amount=-6 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-8 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-4 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-2 +kerning first=67 second=97 amount=-3 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-2 +kerning first=67 second=44 amount=-3 +kerning first=68 second=97 amount=-3 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-3 +kerning first=69 second=117 amount=-2 +kerning first=69 second=118 amount=-2 +kerning first=70 second=97 amount=-5 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-2 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-2 +kerning first=70 second=121 amount=-3 +kerning first=70 second=46 amount=-7 +kerning first=70 second=44 amount=-8 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-2 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-3 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-3 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-3 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-4 +kerning first=75 second=117 amount=-4 +kerning first=76 second=117 amount=-2 +kerning first=76 second=121 amount=-8 +kerning first=77 second=97 amount=-2 +kerning first=77 second=99 amount=-2 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-2 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-2 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-3 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-2 +kerning first=79 second=44 amount=-3 +kerning first=80 second=97 amount=-4 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-3 +kerning first=82 second=101 amount=-3 +kerning first=82 second=111 amount=-3 +kerning first=82 second=116 amount=-4 +kerning first=82 second=117 amount=-3 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-5 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-1 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-2 +kerning first=84 second=117 amount=-2 +kerning first=84 second=119 amount=-1 +kerning first=84 second=121 amount=-3 +kerning first=84 second=46 amount=-6 +kerning first=84 second=44 amount=-7 +kerning first=84 second=59 amount=-6 +kerning first=84 second=58 amount=-6 +kerning first=85 second=97 amount=-3 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-2 +kerning first=85 second=46 amount=-2 +kerning first=85 second=44 amount=-3 +kerning first=86 second=97 amount=-6 +kerning first=86 second=101 amount=-2 +kerning first=86 second=105 amount=-2 +kerning first=86 second=111 amount=-3 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-3 +kerning first=86 second=46 amount=-6 +kerning first=86 second=44 amount=-7 +kerning first=86 second=59 amount=-4 +kerning first=86 second=58 amount=-4 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-2 +kerning first=87 second=109 amount=-3 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-4 +kerning first=87 second=46 amount=-4 +kerning first=87 second=44 amount=-5 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-4 +kerning first=88 second=101 amount=-3 +kerning first=88 second=111 amount=-4 +kerning first=88 second=117 amount=-4 +kerning first=88 second=121 amount=-6 +kerning first=89 second=100 amount=-2 +kerning first=89 second=101 amount=-2 +kerning first=89 second=105 amount=-2 +kerning first=89 second=112 amount=-2 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-3 +kerning first=89 second=46 amount=-6 +kerning first=89 second=44 amount=-7 +kerning first=89 second=59 amount=-4 +kerning first=89 second=58 amount=-4 +kerning first=97 second=99 amount=-3 +kerning first=97 second=100 amount=-2 +kerning first=97 second=101 amount=-2 +kerning first=97 second=103 amount=-3 +kerning first=97 second=112 amount=-2 +kerning first=97 second=102 amount=-2 +kerning first=97 second=116 amount=-6 +kerning first=97 second=117 amount=-3 +kerning first=97 second=118 amount=-6 +kerning first=97 second=119 amount=-3 +kerning first=97 second=121 amount=-8 +kerning first=97 second=112 amount=-2 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-4 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-3 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-3 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-2 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-3 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-4 +kerning first=100 second=46 amount=-2 +kerning first=100 second=44 amount=-3 +kerning first=101 second=97 amount=-2 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-3 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-5 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-7 +kerning first=102 second=44 amount=-8 +kerning first=103 second=97 amount=-3 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-2 +kerning first=103 second=44 amount=-3 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-3 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-2 +kerning first=106 second=97 amount=-3 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=106 second=44 amount=-3 +kerning first=107 second=97 amount=-4 +kerning first=107 second=99 amount=-4 +kerning first=107 second=100 amount=-3 +kerning first=107 second=101 amount=-3 +kerning first=107 second=103 amount=-4 +kerning first=107 second=111 amount=-4 +kerning first=108 second=97 amount=-2 +kerning first=108 second=99 amount=-2 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-2 +kerning first=108 second=111 amount=-2 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=108 second=118 amount=-6 +kerning first=108 second=119 amount=-2 +kerning first=108 second=121 amount=-8 +kerning first=109 second=97 amount=-2 +kerning first=109 second=99 amount=-2 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-2 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-2 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-2 +kerning first=109 second=117 amount=-2 +kerning first=109 second=118 amount=-3 +kerning first=109 second=121 amount=-4 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-3 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-1 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-3 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-4 +kerning first=111 second=121 amount=-4 +kerning first=111 second=46 amount=-2 +kerning first=111 second=44 amount=-3 +kerning first=112 second=97 amount=-4 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-11 +kerning first=112 second=44 amount=-12 +kerning first=113 second=117 amount=-3 +kerning first=116 second=46 amount=-6 +kerning first=114 second=97 amount=-4 +kerning first=114 second=100 amount=-3 +kerning first=114 second=101 amount=-3 +kerning first=114 second=103 amount=-3 +kerning first=114 second=107 amount=-3 +kerning first=114 second=108 amount=-3 +kerning first=114 second=109 amount=-3 +kerning first=114 second=110 amount=-3 +kerning first=114 second=111 amount=-3 +kerning first=114 second=113 amount=-3 +kerning first=114 second=114 amount=-3 +kerning first=114 second=116 amount=-4 +kerning first=114 second=118 amount=-5 +kerning first=114 second=121 amount=-6 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-2 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-2 +kerning first=116 second=100 amount=-1 +kerning first=116 second=97 amount=-5 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-2 +kerning first=116 second=46 amount=-6 +kerning first=116 second=44 amount=-7 +kerning first=117 second=97 amount=-3 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-2 +kerning first=117 second=118 amount=-3 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-4 +kerning first=118 second=97 amount=-6 +kerning first=118 second=98 amount=-2 +kerning first=118 second=99 amount=-3 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-3 +kerning first=118 second=111 amount=-3 +kerning first=118 second=118 amount=-3 +kerning first=118 second=121 amount=-4 +kerning first=118 second=46 amount=-6 +kerning first=118 second=44 amount=-7 +kerning first=119 second=97 amount=-5 +kerning first=119 second=120 amount=-4 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-2 +kerning first=119 second=111 amount=-2 +kerning first=119 second=46 amount=-4 +kerning first=119 second=44 amount=-5 +kerning first=120 second=97 amount=-4 +kerning first=120 second=101 amount=-3 +kerning first=120 second=111 amount=-4 +kerning first=121 second=46 amount=-6 +kerning first=121 second=44 amount=-7 +kerning first=121 second=97 amount=-6 +kerning first=121 second=99 amount=-3 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-3 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-2 +kerning first=112 second=115 amount=-2 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/README.md b/src/main/resources/omni_power/gdx-skins/commodore64/README.md new file mode 100644 index 0000000..1f41646 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/commodore64/README.md @@ -0,0 +1,22 @@ +# Commodore 64 UI + +``` +Commodore 64 UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.com for games, tutorials, and much more! + +Commodore 64 UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Retro! + +![Commodore64](preview.gif) + +### Style guide + +![Guide](style-guide.png) + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=21597). diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/preview.gif b/src/main/resources/omni_power/gdx-skins/commodore64/preview.gif new file mode 100644 index 0000000..7e2824e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/README.md b/src/main/resources/omni_power/gdx-skins/commodore64/raw/README.md new file mode 100644 index 0000000..7ace26f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/commodore64/raw/README.md @@ -0,0 +1 @@ +Raw assets were extracted using [Skin Composer](https://github.com/raeleus/skin-composer). diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/blue.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/blue.png new file mode 100644 index 0000000..af2941f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/blue.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/button-down.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/button-down.9.png new file mode 100644 index 0000000..684e70c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/button.9.png new file mode 100644 index 0000000..9e6ac7f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/check-box-off.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/check-box-off.png new file mode 100644 index 0000000..ca450d2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/check-box-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/check-box.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/check-box.png new file mode 100644 index 0000000..6a50547 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/check-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/commodore-64.fnt b/src/main/resources/omni_power/gdx-skins/commodore64/raw/commodore-64.fnt new file mode 100644 index 0000000..6da4461 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/commodore64/raw/commodore-64.fnt @@ -0,0 +1,101 @@ +info face="Commodore 64 Pixelized" size=20 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=-2,-2 +common lineHeight=20 base=18 scaleW=512 scaleH=64 pages=1 packed=0 +page id=0 file="commodore-64.png" +chars count=96 +char id=10 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=33 x=502 y=0 width=6 height=16 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=34 x=188 y=34 width=14 height=6 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=35 x=248 y=18 width=18 height=16 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=36 x=220 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=37 x=234 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=38 x=266 y=18 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=39 x=142 y=34 width=10 height=8 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=40 x=90 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=41 x=100 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=42 x=114 y=34 width=18 height=12 xoffset=-1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=43 x=100 y=34 width=14 height=12 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=44 x=152 y=34 width=8 height=8 xoffset=3 yoffset=13 xadvance=16 page=0 chnl=0 +char id=45 x=208 y=34 width=14 height=4 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=46 x=202 y=34 width=6 height=6 xoffset=5 yoffset=13 xadvance=16 page=0 chnl=0 +char id=47 x=392 y=18 width=16 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=48 x=56 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=49 x=430 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=50 x=444 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=51 x=458 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=52 x=472 y=0 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=53 x=488 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=54 x=0 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=55 x=14 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=56 x=28 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=57 x=42 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=58 x=84 y=18 width=6 height=16 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=59 x=0 y=0 width=8 height=18 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=60 x=158 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=61 x=160 y=34 width=14 height=8 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=62 x=172 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=63 x=70 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=64 x=192 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=65 x=8 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=66 x=22 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=67 x=36 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=68 x=50 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=69 x=64 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=70 x=78 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=71 x=92 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=72 x=106 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=73 x=120 y=0 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=74 x=130 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=75 x=144 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=76 x=158 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=77 x=172 y=0 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=78 x=188 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=79 x=202 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=80 x=216 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=81 x=230 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=82 x=244 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=83 x=258 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=84 x=272 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=85 x=286 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=86 x=300 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=87 x=314 y=0 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=88 x=330 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=89 x=344 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=90 x=358 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=91 x=110 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=92 x=408 y=18 width=16 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=93 x=120 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=94 x=206 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=95 x=222 y=34 width=18 height=4 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=96 x=132 y=34 width=10 height=8 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=97 x=424 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=98 x=282 y=18 width=14 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=99 x=438 y=18 width=12 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=100 x=296 y=18 width=14 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=101 x=450 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=102 x=310 y=18 width=12 height=14 xoffset=3 yoffset=5 xadvance=16 page=0 chnl=0 +char id=103 x=322 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=104 x=372 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=105 x=386 y=0 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=106 x=396 y=0 width=10 height=16 xoffset=3 yoffset=5 xadvance=16 page=0 chnl=0 +char id=107 x=406 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=108 x=420 y=0 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=109 x=464 y=18 width=16 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=110 x=480 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=111 x=494 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=112 x=336 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=113 x=350 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=114 x=0 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=115 x=14 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=116 x=364 y=18 width=14 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=117 x=28 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=118 x=42 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=119 x=56 y=34 width=16 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=120 x=72 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=121 x=378 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=122 x=86 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=123 x=130 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=124 x=186 y=18 width=6 height=16 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=125 x=144 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=126 x=174 y=34 width=14 height=8 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/commodore-64.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/commodore-64.png new file mode 100644 index 0000000..98529ec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/commodore-64.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/cursor-black.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/cursor-black.9.png new file mode 100644 index 0000000..d826965 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/cursor-black.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/cursor.9.png new file mode 100644 index 0000000..ebe4168 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/dialog.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/dialog.9.png new file mode 100644 index 0000000..7f48b71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/dialog.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/grey.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/grey.png new file mode 100644 index 0000000..46aeb82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/grey.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/horizontal-split-pane.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/horizontal-split-pane.9.png new file mode 100644 index 0000000..57be9aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/horizontal-split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/light-blue.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/light-blue.png new file mode 100644 index 0000000..36152cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/light-blue.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/list.9.png new file mode 100644 index 0000000..141e2c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/minus.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/minus.png new file mode 100644 index 0000000..e7a63f7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/music-off.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/music-off.png new file mode 100644 index 0000000..4959914 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/music-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/music.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/music.png new file mode 100644 index 0000000..fc8757f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/music.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/plus.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/plus.png new file mode 100644 index 0000000..47361cd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/progress-bar-knob.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/progress-bar-knob.9.png new file mode 100644 index 0000000..4829e12 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/progress-bar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/progress-bar.9.png new file mode 100644 index 0000000..6b22704 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button-off.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button-off.png new file mode 100644 index 0000000..b4254f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button.9.png new file mode 100644 index 0000000..0a1a14e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button.png new file mode 100644 index 0000000..f7ede10 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/radio-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar-horizontal-knob.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar-horizontal-knob.9.png new file mode 100644 index 0000000..4a1103e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar-horizontal-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar-vertical-knob.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar-vertical-knob.9.png new file mode 100644 index 0000000..612430e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar-vertical-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar.9.png new file mode 100644 index 0000000..cbc6bef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/scroll-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/slider-knob.png new file mode 100644 index 0000000..ee3eb6e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/slider.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/slider.png new file mode 100644 index 0000000..43c8e97 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/sound-off.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/sound-off.png new file mode 100644 index 0000000..81322d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/sound-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/sound.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/sound.png new file mode 100644 index 0000000..fb2e2b4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/sound.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/touchpad-knob.png new file mode 100644 index 0000000..91f8348 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/touchpad.png new file mode 100644 index 0000000..e2df616 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/vertical-split-pane.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/vertical-split-pane.9.png new file mode 100644 index 0000000..25c0fd4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/vertical-split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/white.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/white.png new file mode 100644 index 0000000..e0cff3b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/commodore64/raw/window.9.png new file mode 100644 index 0000000..9301908 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/skin/commodore-64.fnt b/src/main/resources/omni_power/gdx-skins/commodore64/skin/commodore-64.fnt new file mode 100644 index 0000000..6da4461 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/commodore64/skin/commodore-64.fnt @@ -0,0 +1,101 @@ +info face="Commodore 64 Pixelized" size=20 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,1,1,1 spacing=-2,-2 +common lineHeight=20 base=18 scaleW=512 scaleH=64 pages=1 packed=0 +page id=0 file="commodore-64.png" +chars count=96 +char id=10 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=0 page=0 chnl=0 +char id=32 x=0 y=0 width=0 height=0 xoffset=-1 yoffset=17 xadvance=16 page=0 chnl=0 +char id=33 x=502 y=0 width=6 height=16 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=34 x=188 y=34 width=14 height=6 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=35 x=248 y=18 width=18 height=16 xoffset=-1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=36 x=220 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=37 x=234 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=38 x=266 y=18 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=39 x=142 y=34 width=10 height=8 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=40 x=90 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=41 x=100 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=42 x=114 y=34 width=18 height=12 xoffset=-1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=43 x=100 y=34 width=14 height=12 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=44 x=152 y=34 width=8 height=8 xoffset=3 yoffset=13 xadvance=16 page=0 chnl=0 +char id=45 x=208 y=34 width=14 height=4 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=46 x=202 y=34 width=6 height=6 xoffset=5 yoffset=13 xadvance=16 page=0 chnl=0 +char id=47 x=392 y=18 width=16 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=48 x=56 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=49 x=430 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=50 x=444 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=51 x=458 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=52 x=472 y=0 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=53 x=488 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=54 x=0 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=55 x=14 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=56 x=28 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=57 x=42 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=58 x=84 y=18 width=6 height=16 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=59 x=0 y=0 width=8 height=18 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=60 x=158 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=61 x=160 y=34 width=14 height=8 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=62 x=172 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=63 x=70 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=64 x=192 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=65 x=8 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=66 x=22 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=67 x=36 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=68 x=50 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=69 x=64 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=70 x=78 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=71 x=92 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=72 x=106 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=73 x=120 y=0 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=74 x=130 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=75 x=144 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=76 x=158 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=77 x=172 y=0 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=78 x=188 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=79 x=202 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=80 x=216 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=81 x=230 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=82 x=244 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=83 x=258 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=84 x=272 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=85 x=286 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=86 x=300 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=87 x=314 y=0 width=16 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=88 x=330 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=89 x=344 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=90 x=358 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=91 x=110 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=92 x=408 y=18 width=16 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=93 x=120 y=18 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=94 x=206 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=95 x=222 y=34 width=18 height=4 xoffset=-1 yoffset=15 xadvance=16 page=0 chnl=0 +char id=96 x=132 y=34 width=10 height=8 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=97 x=424 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=98 x=282 y=18 width=14 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=99 x=438 y=18 width=12 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=100 x=296 y=18 width=14 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=101 x=450 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=102 x=310 y=18 width=12 height=14 xoffset=3 yoffset=5 xadvance=16 page=0 chnl=0 +char id=103 x=322 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=104 x=372 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=105 x=386 y=0 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=106 x=396 y=0 width=10 height=16 xoffset=3 yoffset=5 xadvance=16 page=0 chnl=0 +char id=107 x=406 y=0 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=108 x=420 y=0 width=10 height=16 xoffset=3 yoffset=3 xadvance=16 page=0 chnl=0 +char id=109 x=464 y=18 width=16 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=110 x=480 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=111 x=494 y=18 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=112 x=336 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=113 x=350 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=114 x=0 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=115 x=14 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=116 x=364 y=18 width=14 height=14 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=117 x=28 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=118 x=42 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=119 x=56 y=34 width=16 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=120 x=72 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=121 x=378 y=18 width=14 height=14 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=122 x=86 y=34 width=14 height=12 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=123 x=130 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=124 x=186 y=18 width=6 height=16 xoffset=5 yoffset=3 xadvance=16 page=0 chnl=0 +char id=125 x=144 y=18 width=14 height=16 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +char id=126 x=174 y=34 width=14 height=8 xoffset=1 yoffset=3 xadvance=16 page=0 chnl=0 +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.atlas new file mode 100644 index 0000000..6a90b2e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.atlas @@ -0,0 +1,274 @@ + +uiskin.png +size: 860,229 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +blue + rotate: false + xy: 106, 137 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 715, 139 + size: 36, 24 + split: 18, 17, 11, 12 + pad: 14, 14, 4, 4 + orig: 36, 24 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 106, 140 + size: 36, 24 + split: 18, 17, 12, 11 + pad: 14, 14, 4, 4 + orig: 36, 24 + offset: 0, 0 + index: -1 +check-box + rotate: false + xy: 162, 152 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +check-box-off + rotate: false + xy: 715, 109 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +commodore-64 + rotate: false + xy: 1, 165 + size: 512, 64 + orig: 512, 64 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 143, 148 + size: 18, 16 + split: 9, 8, 7, 8 + pad: 2, 0, 0, 0 + orig: 18, 16 + offset: 0, 0 + index: -1 +cursor-black + rotate: false + xy: 1, 14 + size: 18, 16 + split: 9, 8, 7, 8 + pad: 2, 0, 0, 0 + orig: 18, 16 + offset: 0, 0 + index: -1 +dialog + rotate: false + xy: 1, 31 + size: 38, 38 + split: 19, 18, 18, 19 + pad: 13, 13, 24, 13 + orig: 38, 38 + offset: 0, 0 + index: -1 +grey + rotate: false + xy: 752, 161 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +horizontal-split-pane + rotate: false + xy: 732, 128 + size: 14, 10 + split: 6, 6, 0, 0 + pad: 0, 0, 0, 0 + orig: 14, 10 + offset: 0, 0 + index: -1 +light-blue + rotate: false + xy: 143, 145 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 821, 215 + size: 22, 14 + split: 0, 21, 0, 13 + pad: 0, 17, 0, 2 + orig: 22, 14 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 78, 117 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +music + rotate: false + xy: 715, 164 + size: 46, 32 + orig: 46, 32 + offset: 0, 0 + index: -1 +music-off + rotate: false + xy: 774, 197 + size: 46, 32 + orig: 46, 32 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 821, 200 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 777, 180 + size: 16, 16 + split: 7, 8, 7, 8 + pad: 2, 2, 2, 2 + orig: 16, 16 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 715, 122 + size: 16, 16 + split: 4, 4, 4, 4 + pad: 0, 0, 0, 0 + orig: 16, 16 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 844, 217 + size: 16, 12 + orig: 16, 12 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 844, 217 + size: 16, 12 + split: 14, 0, 5, 5 + pad: 13, 0, 0, 0 + orig: 16, 12 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 1, 1 + size: 16, 12 + orig: 16, 12 + offset: 0, 0 + index: -1 +scroll-bar + rotate: false + xy: 20, 16 + size: 14, 14 + split: 6, 6, 6, 6 + pad: 0, 0, 0, 0 + orig: 14, 14 + offset: 0, 0 + index: -1 +scroll-bar-horizontal-knob + rotate: false + xy: 47, 117 + size: 30, 14 + split: 15, 14, 7, 6 + pad: 0, 0, 0, 0 + orig: 30, 14 + offset: 0, 0 + index: -1 +scroll-bar-vertical-knob + rotate: false + xy: 762, 166 + size: 14, 30 + split: 7, 6, 16, 13 + pad: 0, 0, 0, 0 + orig: 14, 30 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 40, 65 + size: 4, 4 + orig: 4, 4 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 777, 167 + size: 10, 12 + orig: 10, 12 + offset: 0, 0 + index: -1 +sound + rotate: false + xy: 715, 197 + size: 58, 32 + orig: 58, 32 + offset: 0, 0 + index: -1 +sound-off + rotate: false + xy: 47, 132 + size: 58, 32 + orig: 58, 32 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 514, 29 + size: 200, 200 + orig: 200, 200 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 1, 70 + size: 44, 44 + orig: 44, 44 + offset: 0, 0 + index: -1 +vertical-split-pane + rotate: false + xy: 794, 182 + size: 10, 14 + split: 0, 0, 6, 6 + pad: 0, 1, 0, 0 + orig: 10, 14 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 93, 129 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 115 + size: 45, 49 + split: 20, 20, 22, 22 + pad: 22, 22, 24, 24 + orig: 45, 49 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.json b/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.json new file mode 100644 index 0000000..3f8904c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.json @@ -0,0 +1,172 @@ +{ +com.badlogic.gdx.graphics.Color: { + green: { g: 1, a: 1 }, + light_grey: { r: 0.8, g: 0.8, b: 0.8, a: 1 }, + white: { r: 1, g: 1, b: 1, a: 1 }, + red: { r: 1, a: 1 }, + light_blue: { r: 0.64705884, g: 0.64705884, b: 1, a: 1 }, + grey: { r: 0.7, g: 0.7, b: 0.7, a: 1 }, + dark_grey: { r: 0.4, g: 0.4, b: 0.4, a: 1 }, + blue: { r: 0.25882354, g: 0.25882354, b: 0.90588236, a: 1 }, + black: { a: 1 } +}, +com.badlogic.gdx.graphics.g2d.BitmapFont: { + commodore-64: { file: commodore-64.fnt } +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { + name: white, + color: { a: 1, b: 0.2, g: 0.2, r: 0.2 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: progress-bar, knobBefore: progress-bar-knob } + default-vertical: { background: progress-bar, knobBefore: progress-bar-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + downFontColor: { a: 1, b: 0.90588236, g: 0.25882354, r: 0.25882354 }, + disabledFontColor: { a: 1, b: 0.8, g: 0.8, r: 0.8 }, + up: button, + down: button-down + }, + toggle: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + downFontColor: { a: 1, b: 0.90588236, g: 0.25882354, r: 0.25882354 }, + checkedFontColor: { a: 1, b: 0.90588236, g: 0.25882354, r: 0.25882354 }, + up: button, + down: button-down, + checked: button-down + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: button, down: button-down } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: vertical-split-pane }, + default-horizontal: { handle: horizontal-split-pane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpad-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: button, down: button-down }, + music: { up: music-off, down: music, checked: music }, + sound: { up: sound-off, down: sound, checked: sound }, + toggle: { up: button, down: button-down, checked: button-down } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window, + titleFont: commodore-64, + titleFontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 } + }, + dialog: { + background: dialog, + titleFont: commodore-64, + titleFontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 } + }, + dialog-modal: { + background: dialog, + titleFont: commodore-64, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 }, + stageBackground: blue + } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: commodore-64, + fontColor: { a: 1 }, + background: white, + cursor: cursor-black, + selection: light-blue, + messageFont: commodore-64, + messageFontColor: { a: 1, b: 0.8, g: 0.8, r: 0.8 } + }, + nobg: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + cursor: cursor, + selection: white, + messageFont: commodore-64, + messageFontColor: { a: 1, b: 0.8, g: 0.8, r: 0.8 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: blue, + hScroll: scroll-bar, + hScrollKnob: scroll-bar-horizontal-knob, + vScroll: scroll-bar, + vScrollKnob: scroll-bar-vertical-knob + } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + optional: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + default: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 } + }, + error: { + font: commodore-64, + fontColor: { a: 1, b: 0.4, g: 0.4, r: 0.4 } + }, + title: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + background: button + } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: commodore-64, + fontColorSelected: { a: 1, b: 0.90588236, g: 0.25882354, r: 0.25882354 }, + fontColorUnselected: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + selection: white + }, + dimmed: { + font: commodore-64, + fontColorSelected: { a: 1, b: 0.90588236, g: 0.25882354, r: 0.25882354 }, + fontColorUnselected: { a: 1, b: 0.90588236, g: 0.25882354, r: 0.25882354 }, + selection: light-blue, + background: white + } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-box, + checkboxOff: check-box-off, + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 } + }, + radio: { + checkboxOn: radio-button, + checkboxOff: radio-button-off, + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + checkedFontColor: { a: 1, b: 1, g: 1, r: 1 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { plus: plus, minus: minus, selection: progress-bar } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-vertical: { background: slider, knob: slider-knob }, + default-horizontal: { background: slider, knob: slider-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: commodore-64, + fontColor: { a: 1, b: 1, g: 0.64705884, r: 0.64705884 }, + background: list, + scrollStyle: default, + listStyle: dimmed + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.png b/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.png new file mode 100644 index 0000000..04554a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/skin/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/commodore64/style-guide.png b/src/main/resources/omni_power/gdx-skins/commodore64/style-guide.png new file mode 100644 index 0000000..7f37514 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/commodore64/style-guide.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/README.md b/src/main/resources/omni_power/gdx-skins/craftacular/README.md new file mode 100644 index 0000000..edc56ce --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/README.md @@ -0,0 +1,24 @@ +# Craftacular UI + +``` +Craftacular UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Craftacular UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. For all those of you who want (*or need*) to make a Minecraft-ish GUI. + +![Craftacular](preview.png) + +![Craftacular](preview.gif) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/craftacular-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/preview.gif b/src/main/resources/omni_power/gdx-skins/craftacular/preview.gif new file mode 100644 index 0000000..4b62cf4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/preview.png b/src/main/resources/omni_power/gdx-skins/craftacular/preview.png new file mode 100644 index 0000000..0ec0403 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/armor-bg.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/armor-bg.png new file mode 100644 index 0000000..2f3f6c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/armor-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/armor.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/armor.png new file mode 100644 index 0000000..8547500 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/armor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/button-disabled.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/button-disabled.9.png new file mode 100644 index 0000000..cee3a2d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/button-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/button-hover.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/button-hover.9.png new file mode 100644 index 0000000..4584d9e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/button-hover.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/button.9.png new file mode 100644 index 0000000..b1e422c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/cell.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/cell.9.png new file mode 100644 index 0000000..17980a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/cell.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/craftacular-mockup.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/craftacular-mockup.png new file mode 100644 index 0000000..ee33e61 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/craftacular-mockup.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/cursor.9.png new file mode 100644 index 0000000..f3e6c7d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/dirt.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/dirt.png new file mode 100644 index 0000000..9235d83 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/dirt.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-bold-export.fnt b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-bold-export.fnt new file mode 100644 index 0000000..26b6abc --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-bold-export.fnt @@ -0,0 +1,104 @@ +info face="font-bold-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=35 base=35 scaleW=224 scaleH=227 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-bold-export.png" +chars count=98 +char id=33 x=212 y=0 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="!" +char id=34 x=121 y=211 width=19 height=14 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter=""" +char id=35 x=78 y=54 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="#" +char id=36 x=163 y=153 width=19 height=29 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="$" +char id=37 x=0 y=135 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="%" +char id=38 x=56 y=0 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=184 y=80 width=8 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="'" +char id=40 x=183 y=172 width=16 height=26 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="(" +char id=41 x=183 y=145 width=16 height=26 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter=")" +char id=42 x=184 y=46 width=15 height=14 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="*" +char id=43 x=164 y=76 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="+" +char id=44 x=81 y=216 width=8 height=10 xoffset=0 yoffset=28 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=164 y=95 width=13 height=7 xoffset=0 yoffset=22 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=72 y=216 width=8 height=7 xoffset=0 yoffset=28 xadvance=10 page=0 chnl=0 letter="." +char id=47 x=163 y=103 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="/" +char id=48 x=125 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="0" +char id=49 x=183 y=199 width=16 height=26 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="1" +char id=50 x=163 y=183 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="2" +char id=51 x=143 y=162 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="3" +char id=52 x=80 y=0 width=22 height=26 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=52 y=162 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="5" +char id=54 x=100 y=157 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="6" +char id=55 x=165 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="7" +char id=56 x=122 y=157 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=145 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="9" +char id=58 x=201 y=112 width=9 height=21 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter=":" +char id=59 x=211 y=112 width=8 height=24 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=184 y=27 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="<" +char id=61 x=163 y=210 width=19 height=15 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="=" +char id=62 x=184 y=61 width=15 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter=">" +char id=63 x=124 y=27 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=31 height=31 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter="@" +char id=65 x=100 y=184 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="A" +char id=66 x=28 y=135 width=24 height=26 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="B" +char id=67 x=0 y=189 width=25 height=26 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="C" +char id=68 x=53 y=81 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="D" +char id=69 x=28 y=108 width=24 height=26 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="E" +char id=70 x=103 y=0 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="F" +char id=71 x=28 y=54 width=25 height=26 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="G" +char id=72 x=53 y=108 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="H" +char id=73 x=199 y=0 width=12 height=26 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="I" +char id=74 x=183 y=95 width=17 height=26 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="J" +char id=75 x=100 y=130 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="K" +char id=76 x=102 y=54 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="L" +char id=77 x=53 y=135 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=32 y=0 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="N" +char id=79 x=0 y=108 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="O" +char id=80 x=76 y=162 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="P" +char id=81 x=0 y=81 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="Q" +char id=82 x=0 y=162 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="R" +char id=83 x=102 y=27 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="S" +char id=84 x=76 y=189 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="T" +char id=85 x=101 y=81 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="U" +char id=86 x=28 y=81 width=24 height=26 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="V" +char id=87 x=77 y=81 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=52 y=189 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="X" +char id=89 x=32 y=27 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="Y" +char id=90 x=56 y=27 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="Z" +char id=91 x=201 y=80 width=12 height=31 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=122 y=130 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=200 y=179 width=12 height=31 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=100 y=211 width=20 height=14 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=50 y=216 width=21 height=6 xoffset=0 yoffset=29 xadvance=23 page=0 chnl=0 letter="_" +char id=96 x=77 y=152 width=10 height=9 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=77 y=130 width=22 height=21 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="a" +char id=98 x=54 y=54 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="b" +char id=99 x=77 y=108 width=22 height=21 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="c" +char id=100 x=145 y=27 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="d" +char id=101 x=122 y=108 width=20 height=21 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=143 y=135 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="f" +char id=103 x=143 y=106 width=19 height=28 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="g" +char id=104 x=122 y=184 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="h" +char id=105 x=213 y=179 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="i" +char id=106 x=165 y=27 width=18 height=25 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="j" +char id=107 x=144 y=76 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="k" +char id=108 x=214 y=137 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="l" +char id=109 x=0 y=32 width=31 height=21 xoffset=0 yoffset=14 xadvance=33 page=0 chnl=0 letter="m" +char id=110 x=100 y=108 width=21 height=21 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="n" +char id=111 x=124 y=54 width=20 height=21 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="o" +char id=112 x=80 y=27 width=21 height=26 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="p" +char id=113 x=143 y=189 width=19 height=26 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="q" +char id=114 x=165 y=53 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="r" +char id=115 x=183 y=122 width=17 height=22 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="s" +char id=116 x=185 y=0 width=13 height=24 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=145 y=54 width=19 height=21 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="u" +char id=118 x=26 y=209 width=23 height=17 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=26 y=189 width=25 height=19 xoffset=0 yoffset=16 xadvance=27 page=0 chnl=0 letter="w" +char id=120 x=28 y=162 width=23 height=22 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="x" +char id=121 x=123 y=81 width=20 height=24 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="y" +char id=122 x=163 y=130 width=19 height=22 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="z" +char id=123 x=200 y=145 width=13 height=33 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=215 y=27 width=8 height=33 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="|" +char id=125 x=200 y=46 width=14 height=33 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="}" +char id=126 x=0 y=216 width=23 height=7 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="~" +char id=8226 x=141 y=216 width=11 height=10 xoffset=0 yoffset=20 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=54 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=104 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-bold-export.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-bold-export.png new file mode 100644 index 0000000..4698b2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-bold-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-export.fnt new file mode 100644 index 0000000..3b3fb85 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=205 scaleH=205 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=196 y=31 width=7 height=23 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=26 y=154 width=18 height=13 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=51 y=24 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="#" +char id=36 x=114 y=19 width=18 height=27 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="$" +char id=37 x=0 y=121 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="%" +char id=38 x=49 y=66 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="&" +char id=39 x=132 y=195 width=8 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="'" +char id=40 x=170 y=107 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=170 y=83 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=153 y=0 width=14 height=13 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="*" +char id=43 x=71 y=120 width=18 height=17 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="+" +char id=44 x=168 y=188 width=8 height=10 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=22 y=198 width=13 height=6 xoffset=0 yoffset=20 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=36 y=198 width=7 height=6 xoffset=0 yoffset=25 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=114 y=47 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="/" +char id=48 x=132 y=171 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="0" +char id=49 x=169 y=164 width=15 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="1" +char id=50 x=133 y=43 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="2" +char id=51 x=133 y=67 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="3" +char id=52 x=93 y=72 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="4" +char id=53 x=71 y=96 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="5" +char id=54 x=73 y=24 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="6" +char id=55 x=151 y=115 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="7" +char id=56 x=152 y=38 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="8" +char id=57 x=133 y=19 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="9" +char id=58 x=186 y=61 width=7 height=18 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=186 y=137 width=8 height=22 xoffset=0 yoffset=13 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=170 y=18 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=134 y=0 width=18 height=13 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="=" +char id=62 x=170 y=0 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=151 y=91 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=28 height=29 xoffset=0 yoffset=8 xadvance=30 page=0 chnl=0 letter="@" +char id=65 x=94 y=24 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=51 y=0 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="B" +char id=67 x=24 y=169 width=23 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="C" +char id=68 x=49 y=114 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="D" +char id=69 x=49 y=90 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="E" +char id=70 x=113 y=72 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="F" +char id=71 x=0 y=169 width=23 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="G" +char id=72 x=48 y=162 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="H" +char id=73 x=185 y=113 width=10 height=23 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="I" +char id=74 x=152 y=62 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=92 y=120 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=92 y=169 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="L" +char id=77 x=26 y=66 width=22 height=23 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="M" +char id=78 x=29 y=21 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="N" +char id=79 x=0 y=97 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="O" +char id=80 x=48 y=138 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="P" +char id=81 x=0 y=73 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="Q" +char id=82 x=0 y=145 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="R" +char id=83 x=93 y=48 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="S" +char id=84 x=26 y=90 width=22 height=23 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="T" +char id=85 x=93 y=96 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="U" +char id=86 x=70 y=162 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="V" +char id=87 x=71 y=48 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="W" +char id=88 x=26 y=114 width=22 height=23 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="X" +char id=89 x=71 y=72 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="Y" +char id=90 x=73 y=0 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="Z" +char id=91 x=185 y=31 width=10 height=29 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="[" +char id=92 x=132 y=96 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="\" +char id=93 x=185 y=83 width=11 height=29 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="]" +char id=94 x=50 y=48 width=18 height=13 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="^" +char id=95 x=22 y=193 width=19 height=4 xoffset=0 yoffset=27 xadvance=21 page=0 chnl=0 letter="_" +char id=96 x=88 y=193 width=9 height=8 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="`" +char id=97 x=48 y=186 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="a" +char id=98 x=70 y=138 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="b" +char id=99 x=68 y=186 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="c" +char id=100 x=151 y=162 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="d" +char id=101 x=113 y=115 width=18 height=18 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="e" +char id=102 x=113 y=134 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=132 y=120 width=18 height=25 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="g" +char id=104 x=152 y=14 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="h" +char id=105 x=196 y=113 width=7 height=23 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="i" +char id=106 x=169 y=139 width=16 height=24 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="j" +char id=107 x=113 y=158 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="k" +char id=108 x=195 y=137 width=8 height=23 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="l" +char id=109 x=0 y=30 width=28 height=18 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0 letter="m" +char id=110 x=95 y=0 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="n" +char id=111 x=113 y=96 width=18 height=18 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="o" +char id=112 x=92 y=144 width=20 height=24 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="p" +char id=113 x=132 y=146 width=18 height=24 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="q" +char id=114 x=151 y=186 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="r" +char id=115 x=169 y=62 width=16 height=20 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=170 y=36 width=13 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=115 y=0 width=18 height=18 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="u" +char id=118 x=26 y=138 width=21 height=15 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="v" +char id=119 x=26 y=49 width=23 height=16 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="w" +char id=120 x=29 y=0 width=21 height=20 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="x" +char id=121 x=151 y=139 width=17 height=22 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=113 y=182 width=18 height=20 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="z" +char id=123 x=185 y=0 width=13 height=30 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=197 y=55 width=7 height=30 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=185 y=164 width=12 height=30 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=0 y=193 width=21 height=7 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="~" +char id=8226 x=98 y=193 width=9 height=9 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=0 letter="•" +char id=169 x=0 y=49 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=96 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-export.png new file mode 100644 index 0000000..8d53f99 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-title-export.fnt new file mode 100644 index 0000000..3806db7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=111 base=111 scaleW=647 scaleH=647 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=585 y=96 width=31 height=83 xoffset=0 yoffset=28 xadvance=37 page=0 chnl=0 letter="!" +char id=34 x=245 y=413 width=58 height=48 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter=""" +char id=35 x=0 y=313 width=73 height=83 xoffset=0 yoffset=28 xadvance=79 page=0 chnl=0 letter="#" +char id=36 x=578 y=504 width=37 height=73 xoffset=0 yoffset=43 xadvance=43 page=0 chnl=0 letter="$" +char id=37 x=0 y=481 width=61 height=67 xoffset=0 yoffset=47 xadvance=67 page=0 chnl=0 letter="%" +char id=38 x=60 y=549 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="&" +char id=39 x=578 y=578 width=30 height=48 xoffset=0 yoffset=28 xadvance=36 page=0 chnl=0 letter="'" +char id=40 x=579 y=321 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="(" +char id=41 x=579 y=237 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter=")" +char id=42 x=363 y=336 width=34 height=51 xoffset=0 yoffset=44 xadvance=40 page=0 chnl=0 letter="*" +char id=43 x=141 y=89 width=46 height=56 xoffset=0 yoffset=55 xadvance=52 page=0 chnl=0 letter="+" +char id=44 x=416 y=420 width=30 height=48 xoffset=0 yoffset=75 xadvance=36 page=0 chnl=0 letter="," +char id=45 x=311 y=252 width=37 height=36 xoffset=0 yoffset=52 xadvance=43 page=0 chnl=0 letter="-" +char id=46 x=585 y=180 width=30 height=36 xoffset=0 yoffset=75 xadvance=36 page=0 chnl=0 letter="." +char id=47 x=540 y=252 width=38 height=68 xoffset=0 yoffset=46 xadvance=44 page=0 chnl=0 letter="/" +char id=48 x=0 y=549 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="0" +char id=49 x=578 y=420 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="1" +char id=50 x=66 y=397 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="2" +char id=51 x=297 y=554 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="3" +char id=52 x=74 y=313 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="4" +char id=53 x=298 y=462 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="5" +char id=54 x=80 y=229 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="6" +char id=55 x=304 y=305 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="7" +char id=56 x=120 y=481 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="8" +char id=57 x=311 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="9" +char id=58 x=398 y=336 width=17 height=49 xoffset=0 yoffset=59 xadvance=23 page=0 chnl=0 letter=":" +char id=59 x=617 y=217 width=22 height=60 xoffset=0 yoffset=59 xadvance=28 page=0 chnl=0 letter=";" +char id=60 x=357 y=473 width=42 height=60 xoffset=0 yoffset=53 xadvance=48 page=0 chnl=0 letter="<" +char id=61 x=357 y=389 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="=" +char id=62 x=304 y=389 width=42 height=60 xoffset=0 yoffset=53 xadvance=48 page=0 chnl=0 letter=">" +char id=63 x=126 y=397 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="?" +char id=64 x=62 y=481 width=56 height=62 xoffset=0 yoffset=51 xadvance=62 page=0 chnl=0 letter="@" +char id=65 x=415 y=557 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="A" +char id=66 x=429 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="B" +char id=67 x=435 y=0 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="C" +char id=68 x=435 y=84 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="D" +char id=69 x=475 y=336 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="E" +char id=70 x=481 y=252 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="F" +char id=71 x=376 y=84 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="G" +char id=72 x=488 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="H" +char id=73 x=616 y=489 width=30 height=83 xoffset=0 yoffset=28 xadvance=36 page=0 chnl=0 letter="I" +char id=74 x=494 y=0 width=51 height=83 xoffset=0 yoffset=28 xadvance=57 page=0 chnl=0 letter="J" +char id=75 x=474 y=420 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="K" +char id=76 x=494 y=84 width=51 height=83 xoffset=0 yoffset=28 xadvance=57 page=0 chnl=0 letter="L" +char id=77 x=0 y=145 width=80 height=83 xoffset=0 yoffset=28 xadvance=86 page=0 chnl=0 letter="M" +char id=78 x=0 y=397 width=65 height=83 xoffset=0 yoffset=28 xadvance=71 page=0 chnl=0 letter="N" +char id=79 x=422 y=252 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="O" +char id=80 x=416 y=336 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="P" +char id=81 x=258 y=72 width=58 height=95 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="Q" +char id=82 x=415 y=473 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="R" +char id=83 x=474 y=504 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="S" +char id=84 x=376 y=0 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="T" +char id=85 x=370 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="U" +char id=86 x=363 y=252 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="V" +char id=87 x=0 y=229 width=79 height=83 xoffset=0 yoffset=28 xadvance=85 page=0 chnl=0 letter="W" +char id=88 x=356 y=546 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="X" +char id=89 x=317 y=84 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="Y" +char id=90 x=317 y=0 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="Z" +char id=91 x=546 y=69 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="[" +char id=92 x=546 y=0 width=38 height=68 xoffset=0 yoffset=45 xadvance=44 page=0 chnl=0 letter="\" +char id=93 x=547 y=153 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="]" +char id=94 x=140 y=245 width=49 height=53 xoffset=0 yoffset=47 xadvance=55 page=0 chnl=0 letter="^" +char id=95 x=193 y=329 width=45 height=27 xoffset=0 yoffset=91 xadvance=51 page=0 chnl=0 letter="_" +char id=96 x=616 y=180 width=24 height=36 xoffset=0 yoffset=32 xadvance=30 page=0 chnl=0 letter="`" +char id=97 x=252 y=233 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="a" +char id=98 x=245 y=329 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="b" +char id=99 x=238 y=565 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="c" +char id=100 x=239 y=470 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="d" +char id=101 x=205 y=0 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="e" +char id=102 x=533 y=420 width=44 height=83 xoffset=0 yoffset=28 xadvance=50 page=0 chnl=0 letter="f" +char id=103 x=81 y=72 width=59 height=83 xoffset=0 yoffset=40 xadvance=65 page=0 chnl=0 letter="g" +char id=104 x=193 y=245 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="h" +char id=105 x=585 y=0 width=31 height=95 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="i" +char id=106 x=533 y=504 width=44 height=107 xoffset=0 yoffset=16 xadvance=50 page=0 chnl=0 letter="j" +char id=107 x=180 y=481 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="k" +char id=108 x=616 y=405 width=30 height=83 xoffset=0 yoffset=28 xadvance=36 page=0 chnl=0 letter="l" +char id=109 x=0 y=0 width=86 height=71 xoffset=0 yoffset=40 xadvance=92 page=0 chnl=0 letter="m" +char id=110 x=199 y=89 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="n" +char id=111 x=87 y=0 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="o" +char id=112 x=146 y=0 width=58 height=88 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="p" +char id=113 x=140 y=156 width=58 height=88 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="q" +char id=114 x=264 y=0 width=51 height=71 xoffset=0 yoffset=40 xadvance=57 page=0 chnl=0 letter="r" +char id=115 x=199 y=161 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="s" +char id=116 x=534 y=336 width=44 height=83 xoffset=0 yoffset=28 xadvance=50 page=0 chnl=0 letter="t" +char id=117 x=120 y=565 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="u" +char id=118 x=81 y=156 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="v" +char id=119 x=0 y=72 width=80 height=72 xoffset=0 yoffset=39 xadvance=86 page=0 chnl=0 letter="w" +char id=120 x=134 y=313 width=58 height=72 xoffset=0 yoffset=39 xadvance=64 page=0 chnl=0 letter="x" +char id=121 x=186 y=386 width=58 height=83 xoffset=0 yoffset=39 xadvance=64 page=0 chnl=0 letter="y" +char id=122 x=179 y=565 width=58 height=72 xoffset=0 yoffset=39 xadvance=64 page=0 chnl=0 letter="z" +char id=123 x=617 y=0 width=26 height=72 xoffset=0 yoffset=45 xadvance=32 page=0 chnl=0 letter="{" +char id=124 x=617 y=278 width=14 height=85 xoffset=0 yoffset=41 xadvance=20 page=0 chnl=0 letter="|" +char id=125 x=616 y=573 width=26 height=72 xoffset=0 yoffset=45 xadvance=32 page=0 chnl=0 letter="}" +char id=126 x=258 y=168 width=45 height=34 xoffset=0 yoffset=64 xadvance=51 page=0 chnl=0 letter="~" +char id=8226 x=447 y=420 width=24 height=33 xoffset=0 yoffset=64 xadvance=30 page=0 chnl=0 letter="•" +char id=169 x=474 y=588 width=53 height=58 xoffset=0 yoffset=47 xadvance=59 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=35 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=280 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-title-export.png new file mode 100644 index 0000000..f051fc5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/heart-bg.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/heart-bg.png new file mode 100644 index 0000000..c8447c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/heart-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/heart.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/heart.png new file mode 100644 index 0000000..04d9d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/heart.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/meat-bg.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/meat-bg.png new file mode 100644 index 0000000..d04505e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/meat-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/meat.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/meat.png new file mode 100644 index 0000000..c93237a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/meat.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-bg.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-bg.9.png new file mode 100644 index 0000000..57a633f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-horizontal.9.png new file mode 100644 index 0000000..f57bbf5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-knob-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-knob-horizontal.9.png new file mode 100644 index 0000000..fa8b70f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-knob-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-knob-vertical.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-knob-vertical.9.png new file mode 100644 index 0000000..5efca20 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-knob-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-vertical.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-vertical.9.png new file mode 100644 index 0000000..3043790 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/scroll-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/slider-knob.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/slider-knob.9.png new file mode 100644 index 0000000..4c6e15d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/slider-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/slider.9.png new file mode 100644 index 0000000..51b0a6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/text-field.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/text-field.9.png new file mode 100644 index 0000000..197d3ba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/text-field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/tooltip.9.png new file mode 100644 index 0000000..4aca03a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/underline.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/underline.9.png new file mode 100644 index 0000000..3971ec0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/underline.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/white.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/white.png new file mode 100644 index 0000000..39c2d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/window.9.png new file mode 100644 index 0000000..c33a01d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/xp-bg.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/xp-bg.png new file mode 100644 index 0000000..1448d38 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/xp-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/raw/xp.png b/src/main/resources/omni_power/gdx-skins/craftacular/raw/xp.png new file mode 100644 index 0000000..d074446 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/raw/xp.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.atlas b/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.atlas new file mode 100644 index 0000000..cfc3d6f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.atlas @@ -0,0 +1,243 @@ + +craftacular-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +armor + rotate: false + xy: 977, 893 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +armor-bg + rotate: false + xy: 857, 544 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 1, 309 + size: 372, 65 + split: 7, 7, 7, 11 + pad: 8, 8, 8, 12 + orig: 372, 65 + offset: 0, 0 + index: -1 +button-disabled + rotate: false + xy: 650, 958 + size: 372, 65 + split: 7, 7, 7, 11 + pad: 8, 8, 8, 12 + orig: 372, 65 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 650, 958 + size: 372, 65 + split: 7, 7, 7, 11 + pad: 0, 0, 3, 3 + orig: 372, 65 + offset: 0, 0 + index: -1 +button-hover + rotate: false + xy: 1, 242 + size: 372, 65 + split: 7, 7, 7, 11 + pad: 8, 8, 8, 12 + orig: 372, 65 + offset: 0, 0 + index: -1 +cell + rotate: false + xy: 523, 295 + size: 11, 11 + split: 4, 4, 4, 4 + orig: 11, 11 + offset: 0, 0 + index: -1 +craftacular-mockup + rotate: false + xy: 650, 631 + size: 325, 325 + orig: 325, 325 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 886, 623 + size: 18, 6 + split: 0, 17, 0, 5 + orig: 18, 6 + offset: 0, 0 + index: -1 +dirt + rotate: false + xy: 227, 94 + size: 146, 146 + orig: 146, 146 + offset: 0, 0 + index: -1 +font-bold-export + rotate: false + xy: 1, 13 + size: 224, 227 + orig: 224, 227 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 650, 424 + size: 205, 205 + orig: 205, 205 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 376 + size: 647, 647 + orig: 647, 647 + offset: 0, 0 + index: -1 +heart + rotate: false + xy: 650, 379 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +heart-bg + rotate: false + xy: 675, 404 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +meat + rotate: false + xy: 227, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +meat-bg + rotate: false + xy: 375, 140 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +scroll-bg + rotate: false + xy: 375, 171 + size: 146, 146 + split: 0, 0, 14, 14 + pad: 0, 0, 0, 1 + orig: 146, 146 + offset: 0, 0 + index: -1 +scroll-horizontal + rotate: false + xy: 1022, 931 + size: 1, 22 + split: 0, 0, 0, 0 + orig: 1, 22 + offset: 0, 0 + index: -1 +scroll-knob-horizontal + rotate: false + xy: 977, 869 + size: 5, 22 + split: 0, 4, 0, 4 + pad: 1, 0, 0, 0 + orig: 5, 22 + offset: 0, 0 + index: -1 +scroll-knob-vertical + rotate: false + xy: 1, 6 + size: 22, 5 + split: 0, 4, 0, 4 + pad: 0, 0, 0, 0 + orig: 22, 5 + offset: 0, 0 + index: -1 +scroll-vertical + rotate: false + xy: 227, 91 + size: 22, 1 + split: 0, 0, 0, 0 + orig: 22, 1 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 857, 564 + size: 27, 65 + split: 7, 7, 7, 11 + orig: 27, 65 + offset: 0, 0 + index: -1 +text-field + rotate: false + xy: 375, 319 + size: 268, 55 + split: 3, 3, 3, 3 + pad: 4, 4, 4, 4 + orig: 268, 55 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 650, 399 + size: 23, 23 + split: 8, 8, 9, 8 + pad: 7, 7, 8, 7 + orig: 23, 23 + offset: 0, 0 + index: -1 +underline + rotate: false + xy: 398, 162 + size: 5, 7 + split: 2, 2, 0, 6 + pad: 0, 0, 0, 6 + orig: 5, 7 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1022, 955 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 977, 913 + size: 43, 43 + split: 16, 16, 16, 16 + pad: 13, 13, 13, 13 + orig: 43, 43 + offset: 0, 0 + index: -1 +xp + rotate: false + xy: 375, 160 + size: 21, 9 + orig: 21, 9 + offset: 0, 0 + index: -1 +xp-bg + rotate: false + xy: 523, 308 + size: 21, 9 + orig: 21, 9 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.json b/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.json new file mode 100644 index 0000000..b9267d5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.json @@ -0,0 +1,160 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + bold: { + file: font-bold-export.fnt + } + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + gray: { + r: 0.55 + g: 0.55 + b: 0.55 + a: 1 + } + green: { + r: 0.03529522 + g: 0.77666664 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + gray: { + name: white + color: { + r: 0.73666674 + g: 0.73666674 + b: 0.73666674 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + over: button-hover + disabled: button-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + over: button-hover + disabled: button-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + up: button + over: button-hover + disabled: button-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + dim: { + font: font + fontColor: gray + } + bold: { + font: bold + background: underline + } + title: { + font: title + } + xp: { + font: bold + fontColor: green + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: slider + knobBefore: slider-knob + } + default-vertical: { + background: slider + knob: slider-knob + } + hunger: { + background: meat-bg + knobAfter: meat + } + health: { + background: heart-bg + knobBefore: heart + } + xp: { + background: xp-bg + knobBefore: xp + } + armor: { + background: armor-bg + knobBefore: armor + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: scroll-bg + hScroll: scroll-horizontal + hScrollKnob: scroll-knob-horizontal + vScroll: scroll-vertical + vScrollKnob: scroll-knob-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider + knob: slider-knob + } + default-vertical: { + background: slider + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + up: button + over: button-hover + disabled: button-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: white + background: text-field + cursor: cursor + selection: gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.png b/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.png new file mode 100644 index 0000000..323bff5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/craftacular/skin/craftacular-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-bold-export.fnt b/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-bold-export.fnt new file mode 100644 index 0000000..26b6abc --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-bold-export.fnt @@ -0,0 +1,104 @@ +info face="font-bold-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=35 base=35 scaleW=224 scaleH=227 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-bold-export.png" +chars count=98 +char id=33 x=212 y=0 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="!" +char id=34 x=121 y=211 width=19 height=14 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter=""" +char id=35 x=78 y=54 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="#" +char id=36 x=163 y=153 width=19 height=29 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="$" +char id=37 x=0 y=135 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="%" +char id=38 x=56 y=0 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=184 y=80 width=8 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="'" +char id=40 x=183 y=172 width=16 height=26 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="(" +char id=41 x=183 y=145 width=16 height=26 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter=")" +char id=42 x=184 y=46 width=15 height=14 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="*" +char id=43 x=164 y=76 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="+" +char id=44 x=81 y=216 width=8 height=10 xoffset=0 yoffset=28 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=164 y=95 width=13 height=7 xoffset=0 yoffset=22 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=72 y=216 width=8 height=7 xoffset=0 yoffset=28 xadvance=10 page=0 chnl=0 letter="." +char id=47 x=163 y=103 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="/" +char id=48 x=125 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="0" +char id=49 x=183 y=199 width=16 height=26 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="1" +char id=50 x=163 y=183 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="2" +char id=51 x=143 y=162 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="3" +char id=52 x=80 y=0 width=22 height=26 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=52 y=162 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="5" +char id=54 x=100 y=157 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="6" +char id=55 x=165 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="7" +char id=56 x=122 y=157 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=145 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="9" +char id=58 x=201 y=112 width=9 height=21 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter=":" +char id=59 x=211 y=112 width=8 height=24 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=184 y=27 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="<" +char id=61 x=163 y=210 width=19 height=15 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="=" +char id=62 x=184 y=61 width=15 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter=">" +char id=63 x=124 y=27 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=31 height=31 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter="@" +char id=65 x=100 y=184 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="A" +char id=66 x=28 y=135 width=24 height=26 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="B" +char id=67 x=0 y=189 width=25 height=26 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="C" +char id=68 x=53 y=81 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="D" +char id=69 x=28 y=108 width=24 height=26 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="E" +char id=70 x=103 y=0 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="F" +char id=71 x=28 y=54 width=25 height=26 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="G" +char id=72 x=53 y=108 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="H" +char id=73 x=199 y=0 width=12 height=26 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="I" +char id=74 x=183 y=95 width=17 height=26 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="J" +char id=75 x=100 y=130 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="K" +char id=76 x=102 y=54 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="L" +char id=77 x=53 y=135 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=32 y=0 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="N" +char id=79 x=0 y=108 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="O" +char id=80 x=76 y=162 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="P" +char id=81 x=0 y=81 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="Q" +char id=82 x=0 y=162 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="R" +char id=83 x=102 y=27 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="S" +char id=84 x=76 y=189 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="T" +char id=85 x=101 y=81 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="U" +char id=86 x=28 y=81 width=24 height=26 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="V" +char id=87 x=77 y=81 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=52 y=189 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="X" +char id=89 x=32 y=27 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="Y" +char id=90 x=56 y=27 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="Z" +char id=91 x=201 y=80 width=12 height=31 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=122 y=130 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=200 y=179 width=12 height=31 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=100 y=211 width=20 height=14 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=50 y=216 width=21 height=6 xoffset=0 yoffset=29 xadvance=23 page=0 chnl=0 letter="_" +char id=96 x=77 y=152 width=10 height=9 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=77 y=130 width=22 height=21 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="a" +char id=98 x=54 y=54 width=23 height=26 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="b" +char id=99 x=77 y=108 width=22 height=21 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="c" +char id=100 x=145 y=27 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="d" +char id=101 x=122 y=108 width=20 height=21 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=143 y=135 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="f" +char id=103 x=143 y=106 width=19 height=28 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="g" +char id=104 x=122 y=184 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="h" +char id=105 x=213 y=179 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="i" +char id=106 x=165 y=27 width=18 height=25 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="j" +char id=107 x=144 y=76 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="k" +char id=108 x=214 y=137 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="l" +char id=109 x=0 y=32 width=31 height=21 xoffset=0 yoffset=14 xadvance=33 page=0 chnl=0 letter="m" +char id=110 x=100 y=108 width=21 height=21 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="n" +char id=111 x=124 y=54 width=20 height=21 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="o" +char id=112 x=80 y=27 width=21 height=26 xoffset=0 yoffset=14 xadvance=23 page=0 chnl=0 letter="p" +char id=113 x=143 y=189 width=19 height=26 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="q" +char id=114 x=165 y=53 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="r" +char id=115 x=183 y=122 width=17 height=22 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="s" +char id=116 x=185 y=0 width=13 height=24 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=145 y=54 width=19 height=21 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="u" +char id=118 x=26 y=209 width=23 height=17 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=26 y=189 width=25 height=19 xoffset=0 yoffset=16 xadvance=27 page=0 chnl=0 letter="w" +char id=120 x=28 y=162 width=23 height=22 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="x" +char id=121 x=123 y=81 width=20 height=24 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="y" +char id=122 x=163 y=130 width=19 height=22 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="z" +char id=123 x=200 y=145 width=13 height=33 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=215 y=27 width=8 height=33 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="|" +char id=125 x=200 y=46 width=14 height=33 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="}" +char id=126 x=0 y=216 width=23 height=7 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="~" +char id=8226 x=141 y=216 width=11 height=10 xoffset=0 yoffset=20 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=54 width=27 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=104 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-export.fnt new file mode 100644 index 0000000..3b3fb85 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=205 scaleH=205 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=196 y=31 width=7 height=23 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=26 y=154 width=18 height=13 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=51 y=24 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="#" +char id=36 x=114 y=19 width=18 height=27 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="$" +char id=37 x=0 y=121 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="%" +char id=38 x=49 y=66 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="&" +char id=39 x=132 y=195 width=8 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="'" +char id=40 x=170 y=107 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=170 y=83 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=153 y=0 width=14 height=13 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="*" +char id=43 x=71 y=120 width=18 height=17 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="+" +char id=44 x=168 y=188 width=8 height=10 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=22 y=198 width=13 height=6 xoffset=0 yoffset=20 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=36 y=198 width=7 height=6 xoffset=0 yoffset=25 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=114 y=47 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="/" +char id=48 x=132 y=171 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="0" +char id=49 x=169 y=164 width=15 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="1" +char id=50 x=133 y=43 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="2" +char id=51 x=133 y=67 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="3" +char id=52 x=93 y=72 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="4" +char id=53 x=71 y=96 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="5" +char id=54 x=73 y=24 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="6" +char id=55 x=151 y=115 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="7" +char id=56 x=152 y=38 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="8" +char id=57 x=133 y=19 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="9" +char id=58 x=186 y=61 width=7 height=18 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=186 y=137 width=8 height=22 xoffset=0 yoffset=13 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=170 y=18 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=134 y=0 width=18 height=13 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="=" +char id=62 x=170 y=0 width=14 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=151 y=91 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=28 height=29 xoffset=0 yoffset=8 xadvance=30 page=0 chnl=0 letter="@" +char id=65 x=94 y=24 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=51 y=0 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="B" +char id=67 x=24 y=169 width=23 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="C" +char id=68 x=49 y=114 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="D" +char id=69 x=49 y=90 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="E" +char id=70 x=113 y=72 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="F" +char id=71 x=0 y=169 width=23 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="G" +char id=72 x=48 y=162 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="H" +char id=73 x=185 y=113 width=10 height=23 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="I" +char id=74 x=152 y=62 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=92 y=120 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=92 y=169 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="L" +char id=77 x=26 y=66 width=22 height=23 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="M" +char id=78 x=29 y=21 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="N" +char id=79 x=0 y=97 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="O" +char id=80 x=48 y=138 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="P" +char id=81 x=0 y=73 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="Q" +char id=82 x=0 y=145 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="R" +char id=83 x=93 y=48 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="S" +char id=84 x=26 y=90 width=22 height=23 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="T" +char id=85 x=93 y=96 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="U" +char id=86 x=70 y=162 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="V" +char id=87 x=71 y=48 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="W" +char id=88 x=26 y=114 width=22 height=23 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="X" +char id=89 x=71 y=72 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="Y" +char id=90 x=73 y=0 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="Z" +char id=91 x=185 y=31 width=10 height=29 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="[" +char id=92 x=132 y=96 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="\" +char id=93 x=185 y=83 width=11 height=29 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="]" +char id=94 x=50 y=48 width=18 height=13 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="^" +char id=95 x=22 y=193 width=19 height=4 xoffset=0 yoffset=27 xadvance=21 page=0 chnl=0 letter="_" +char id=96 x=88 y=193 width=9 height=8 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="`" +char id=97 x=48 y=186 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="a" +char id=98 x=70 y=138 width=21 height=23 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="b" +char id=99 x=68 y=186 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="c" +char id=100 x=151 y=162 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="d" +char id=101 x=113 y=115 width=18 height=18 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="e" +char id=102 x=113 y=134 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=132 y=120 width=18 height=25 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="g" +char id=104 x=152 y=14 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="h" +char id=105 x=196 y=113 width=7 height=23 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="i" +char id=106 x=169 y=139 width=16 height=24 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="j" +char id=107 x=113 y=158 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="k" +char id=108 x=195 y=137 width=8 height=23 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="l" +char id=109 x=0 y=30 width=28 height=18 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0 letter="m" +char id=110 x=95 y=0 width=19 height=18 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="n" +char id=111 x=113 y=96 width=18 height=18 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="o" +char id=112 x=92 y=144 width=20 height=24 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="p" +char id=113 x=132 y=146 width=18 height=24 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="q" +char id=114 x=151 y=186 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="r" +char id=115 x=169 y=62 width=16 height=20 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=170 y=36 width=13 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=115 y=0 width=18 height=18 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="u" +char id=118 x=26 y=138 width=21 height=15 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="v" +char id=119 x=26 y=49 width=23 height=16 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="w" +char id=120 x=29 y=0 width=21 height=20 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="x" +char id=121 x=151 y=139 width=17 height=22 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=113 y=182 width=18 height=20 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="z" +char id=123 x=185 y=0 width=13 height=30 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=197 y=55 width=7 height=30 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=185 y=164 width=12 height=30 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=0 y=193 width=21 height=7 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="~" +char id=8226 x=98 y=193 width=9 height=9 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=0 letter="•" +char id=169 x=0 y=49 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=96 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-title-export.fnt new file mode 100644 index 0000000..3806db7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/craftacular/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=111 base=111 scaleW=647 scaleH=647 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=585 y=96 width=31 height=83 xoffset=0 yoffset=28 xadvance=37 page=0 chnl=0 letter="!" +char id=34 x=245 y=413 width=58 height=48 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter=""" +char id=35 x=0 y=313 width=73 height=83 xoffset=0 yoffset=28 xadvance=79 page=0 chnl=0 letter="#" +char id=36 x=578 y=504 width=37 height=73 xoffset=0 yoffset=43 xadvance=43 page=0 chnl=0 letter="$" +char id=37 x=0 y=481 width=61 height=67 xoffset=0 yoffset=47 xadvance=67 page=0 chnl=0 letter="%" +char id=38 x=60 y=549 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="&" +char id=39 x=578 y=578 width=30 height=48 xoffset=0 yoffset=28 xadvance=36 page=0 chnl=0 letter="'" +char id=40 x=579 y=321 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="(" +char id=41 x=579 y=237 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter=")" +char id=42 x=363 y=336 width=34 height=51 xoffset=0 yoffset=44 xadvance=40 page=0 chnl=0 letter="*" +char id=43 x=141 y=89 width=46 height=56 xoffset=0 yoffset=55 xadvance=52 page=0 chnl=0 letter="+" +char id=44 x=416 y=420 width=30 height=48 xoffset=0 yoffset=75 xadvance=36 page=0 chnl=0 letter="," +char id=45 x=311 y=252 width=37 height=36 xoffset=0 yoffset=52 xadvance=43 page=0 chnl=0 letter="-" +char id=46 x=585 y=180 width=30 height=36 xoffset=0 yoffset=75 xadvance=36 page=0 chnl=0 letter="." +char id=47 x=540 y=252 width=38 height=68 xoffset=0 yoffset=46 xadvance=44 page=0 chnl=0 letter="/" +char id=48 x=0 y=549 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="0" +char id=49 x=578 y=420 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="1" +char id=50 x=66 y=397 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="2" +char id=51 x=297 y=554 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="3" +char id=52 x=74 y=313 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="4" +char id=53 x=298 y=462 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="5" +char id=54 x=80 y=229 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="6" +char id=55 x=304 y=305 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="7" +char id=56 x=120 y=481 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="8" +char id=57 x=311 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="9" +char id=58 x=398 y=336 width=17 height=49 xoffset=0 yoffset=59 xadvance=23 page=0 chnl=0 letter=":" +char id=59 x=617 y=217 width=22 height=60 xoffset=0 yoffset=59 xadvance=28 page=0 chnl=0 letter=";" +char id=60 x=357 y=473 width=42 height=60 xoffset=0 yoffset=53 xadvance=48 page=0 chnl=0 letter="<" +char id=61 x=357 y=389 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="=" +char id=62 x=304 y=389 width=42 height=60 xoffset=0 yoffset=53 xadvance=48 page=0 chnl=0 letter=">" +char id=63 x=126 y=397 width=59 height=83 xoffset=0 yoffset=28 xadvance=65 page=0 chnl=0 letter="?" +char id=64 x=62 y=481 width=56 height=62 xoffset=0 yoffset=51 xadvance=62 page=0 chnl=0 letter="@" +char id=65 x=415 y=557 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="A" +char id=66 x=429 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="B" +char id=67 x=435 y=0 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="C" +char id=68 x=435 y=84 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="D" +char id=69 x=475 y=336 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="E" +char id=70 x=481 y=252 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="F" +char id=71 x=376 y=84 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="G" +char id=72 x=488 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="H" +char id=73 x=616 y=489 width=30 height=83 xoffset=0 yoffset=28 xadvance=36 page=0 chnl=0 letter="I" +char id=74 x=494 y=0 width=51 height=83 xoffset=0 yoffset=28 xadvance=57 page=0 chnl=0 letter="J" +char id=75 x=474 y=420 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="K" +char id=76 x=494 y=84 width=51 height=83 xoffset=0 yoffset=28 xadvance=57 page=0 chnl=0 letter="L" +char id=77 x=0 y=145 width=80 height=83 xoffset=0 yoffset=28 xadvance=86 page=0 chnl=0 letter="M" +char id=78 x=0 y=397 width=65 height=83 xoffset=0 yoffset=28 xadvance=71 page=0 chnl=0 letter="N" +char id=79 x=422 y=252 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="O" +char id=80 x=416 y=336 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="P" +char id=81 x=258 y=72 width=58 height=95 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="Q" +char id=82 x=415 y=473 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="R" +char id=83 x=474 y=504 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="S" +char id=84 x=376 y=0 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="T" +char id=85 x=370 y=168 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="U" +char id=86 x=363 y=252 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="V" +char id=87 x=0 y=229 width=79 height=83 xoffset=0 yoffset=28 xadvance=85 page=0 chnl=0 letter="W" +char id=88 x=356 y=546 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="X" +char id=89 x=317 y=84 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="Y" +char id=90 x=317 y=0 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="Z" +char id=91 x=546 y=69 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="[" +char id=92 x=546 y=0 width=38 height=68 xoffset=0 yoffset=45 xadvance=44 page=0 chnl=0 letter="\" +char id=93 x=547 y=153 width=37 height=83 xoffset=0 yoffset=28 xadvance=43 page=0 chnl=0 letter="]" +char id=94 x=140 y=245 width=49 height=53 xoffset=0 yoffset=47 xadvance=55 page=0 chnl=0 letter="^" +char id=95 x=193 y=329 width=45 height=27 xoffset=0 yoffset=91 xadvance=51 page=0 chnl=0 letter="_" +char id=96 x=616 y=180 width=24 height=36 xoffset=0 yoffset=32 xadvance=30 page=0 chnl=0 letter="`" +char id=97 x=252 y=233 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="a" +char id=98 x=245 y=329 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="b" +char id=99 x=238 y=565 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="c" +char id=100 x=239 y=470 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="d" +char id=101 x=205 y=0 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="e" +char id=102 x=533 y=420 width=44 height=83 xoffset=0 yoffset=28 xadvance=50 page=0 chnl=0 letter="f" +char id=103 x=81 y=72 width=59 height=83 xoffset=0 yoffset=40 xadvance=65 page=0 chnl=0 letter="g" +char id=104 x=193 y=245 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="h" +char id=105 x=585 y=0 width=31 height=95 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="i" +char id=106 x=533 y=504 width=44 height=107 xoffset=0 yoffset=16 xadvance=50 page=0 chnl=0 letter="j" +char id=107 x=180 y=481 width=58 height=83 xoffset=0 yoffset=28 xadvance=64 page=0 chnl=0 letter="k" +char id=108 x=616 y=405 width=30 height=83 xoffset=0 yoffset=28 xadvance=36 page=0 chnl=0 letter="l" +char id=109 x=0 y=0 width=86 height=71 xoffset=0 yoffset=40 xadvance=92 page=0 chnl=0 letter="m" +char id=110 x=199 y=89 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="n" +char id=111 x=87 y=0 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="o" +char id=112 x=146 y=0 width=58 height=88 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="p" +char id=113 x=140 y=156 width=58 height=88 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="q" +char id=114 x=264 y=0 width=51 height=71 xoffset=0 yoffset=40 xadvance=57 page=0 chnl=0 letter="r" +char id=115 x=199 y=161 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="s" +char id=116 x=534 y=336 width=44 height=83 xoffset=0 yoffset=28 xadvance=50 page=0 chnl=0 letter="t" +char id=117 x=120 y=565 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="u" +char id=118 x=81 y=156 width=58 height=71 xoffset=0 yoffset=40 xadvance=64 page=0 chnl=0 letter="v" +char id=119 x=0 y=72 width=80 height=72 xoffset=0 yoffset=39 xadvance=86 page=0 chnl=0 letter="w" +char id=120 x=134 y=313 width=58 height=72 xoffset=0 yoffset=39 xadvance=64 page=0 chnl=0 letter="x" +char id=121 x=186 y=386 width=58 height=83 xoffset=0 yoffset=39 xadvance=64 page=0 chnl=0 letter="y" +char id=122 x=179 y=565 width=58 height=72 xoffset=0 yoffset=39 xadvance=64 page=0 chnl=0 letter="z" +char id=123 x=617 y=0 width=26 height=72 xoffset=0 yoffset=45 xadvance=32 page=0 chnl=0 letter="{" +char id=124 x=617 y=278 width=14 height=85 xoffset=0 yoffset=41 xadvance=20 page=0 chnl=0 letter="|" +char id=125 x=616 y=573 width=26 height=72 xoffset=0 yoffset=45 xadvance=32 page=0 chnl=0 letter="}" +char id=126 x=258 y=168 width=45 height=34 xoffset=0 yoffset=64 xadvance=51 page=0 chnl=0 letter="~" +char id=8226 x=447 y=420 width=24 height=33 xoffset=0 yoffset=64 xadvance=30 page=0 chnl=0 letter="•" +char id=169 x=474 y=588 width=53 height=58 xoffset=0 yoffset=47 xadvance=59 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=35 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=280 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/default/README.md b/src/main/resources/omni_power/gdx-skins/default/README.md new file mode 100644 index 0000000..f1d4e4a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/default/README.md @@ -0,0 +1,17 @@ +# LibGDX default skin + +The one, the only, [*the default one*](https://github.com/libgdx/libgdx/tree/master/tests/gdx-tests-android/assets/data). + +Majority of LibGDX devs started with this skin, as it's easy to find with ~~Goog~~ your search engine of choice. And, well, it *works*. + +Supports most of the **Scene2D** widgets (including the newest tooltips), with notable exceptions being the image buttons. Features no additional icons, so if you want fancy controls for turning music on and off, you might want to [modify it](https://github.com/libgdx/libgdx/tree/master/tests/gdx-tests-android/assets-raw/skin). + +![Default](preview.png) + +Preview taken from [LibGDX skins](https://github.com/libgdx/libgdx-skins): + +![Default](preview-large.png) + +### License + +Seems to be the same as the whole **LibGDX** framework. But then again - in commercial products, you might want to try out something fancier. diff --git a/src/main/resources/omni_power/gdx-skins/default/preview-large.png b/src/main/resources/omni_power/gdx-skins/default/preview-large.png new file mode 100644 index 0000000..2aa158e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/preview-large.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/preview.png b/src/main/resources/omni_power/gdx-skins/default/preview.png new file mode 100644 index 0000000..15bae49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/check-off.png b/src/main/resources/omni_power/gdx-skins/default/raw/check-off.png new file mode 100644 index 0000000..14b6512 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/check-on.png b/src/main/resources/omni_power/gdx-skins/default/raw/check-on.png new file mode 100644 index 0000000..5d21b76 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/cursor.9.png new file mode 100644 index 0000000..aeed93c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-pane-noborder.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-pane-noborder.9.png new file mode 100644 index 0000000..d2c3e66 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-pane-noborder.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-pane.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-pane.9.png new file mode 100644 index 0000000..6b3f904 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-rect-down.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-rect-down.9.png new file mode 100644 index 0000000..81a63e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-rect-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-rect-pad.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-rect-pad.9.png new file mode 100644 index 0000000..6b3f904 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-rect-pad.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-rect.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-rect.9.png new file mode 100644 index 0000000..f1f5363 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-rect.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-round-down.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-round-down.9.png new file mode 100644 index 0000000..e017404 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-round-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-round-large.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-round-large.9.png new file mode 100644 index 0000000..ffc12fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-round-large.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-round.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-round.9.png new file mode 100644 index 0000000..adf9568 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-round.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-scroll.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-scroll.9.png new file mode 100644 index 0000000..832c1a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-select-selection.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-select-selection.9.png new file mode 100644 index 0000000..4649412 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-select-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-select.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-select.9.png new file mode 100644 index 0000000..38b951a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-select.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-slider-knob.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-slider-knob.png new file mode 100644 index 0000000..e03d374 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-slider.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-slider.9.png new file mode 100644 index 0000000..5d7a781 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-splitpane-vertical.9.png new file mode 100644 index 0000000..f6cffa3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-splitpane.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-splitpane.9.png new file mode 100644 index 0000000..bd72370 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-splitpane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default-window.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/default-window.9.png new file mode 100644 index 0000000..0db9e67 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default-window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/default.png b/src/main/resources/omni_power/gdx-skins/default/raw/default.png new file mode 100644 index 0000000..e203acc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/default.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/pack.json b/src/main/resources/omni_power/gdx-skins/default/raw/pack.json new file mode 100644 index 0000000..c699c33 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/default/raw/pack.json @@ -0,0 +1,5 @@ +{ +duplicatePadding: false, +paddingX: 1, +paddingY: 1 +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/selection.png b/src/main/resources/omni_power/gdx-skins/default/raw/selection.png new file mode 100644 index 0000000..d2533cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/default/raw/textfield.9.png new file mode 100644 index 0000000..cb8ad31 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/default/raw/tree-minus.png new file mode 100644 index 0000000..f8e4079 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/default/raw/tree-plus.png new file mode 100644 index 0000000..85d23cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/raw/white.png b/src/main/resources/omni_power/gdx-skins/default/raw/white.png new file mode 100644 index 0000000..5c94704 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/default/skin/default.fnt b/src/main/resources/omni_power/gdx-skins/default/skin/default.fnt new file mode 100644 index 0000000..f99f782 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/default/skin/default.fnt @@ -0,0 +1,102 @@ +info face="Droid Sans" size=17 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=20 base=18 scaleW=256 scaleH=128 pages=1 packed=0 +page id=0 file="default.png" +chars count=96 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=124 x=0 y=0 width=6 height=20 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=106 x=6 y=0 width=9 height=20 xoffset=-4 yoffset=3 xadvance=4 page=0 chnl=0 +char id=81 x=15 y=0 width=15 height=19 xoffset=-2 yoffset=3 xadvance=12 page=0 chnl=0 +char id=74 x=30 y=0 width=11 height=19 xoffset=-5 yoffset=3 xadvance=4 page=0 chnl=0 +char id=125 x=41 y=0 width=10 height=18 xoffset=-3 yoffset=3 xadvance=6 page=0 chnl=0 +char id=123 x=51 y=0 width=10 height=18 xoffset=-3 yoffset=3 xadvance=6 page=0 chnl=0 +char id=93 x=61 y=0 width=8 height=18 xoffset=-3 yoffset=3 xadvance=5 page=0 chnl=0 +char id=91 x=69 y=0 width=8 height=18 xoffset=-2 yoffset=3 xadvance=5 page=0 chnl=0 +char id=41 x=77 y=0 width=9 height=18 xoffset=-3 yoffset=3 xadvance=5 page=0 chnl=0 +char id=40 x=86 y=0 width=9 height=18 xoffset=-3 yoffset=3 xadvance=5 page=0 chnl=0 +char id=64 x=95 y=0 width=18 height=17 xoffset=-3 yoffset=3 xadvance=14 page=0 chnl=0 +char id=121 x=113 y=0 width=13 height=17 xoffset=-3 yoffset=6 xadvance=8 page=0 chnl=0 +char id=113 x=126 y=0 width=13 height=17 xoffset=-3 yoffset=6 xadvance=9 page=0 chnl=0 +char id=112 x=139 y=0 width=13 height=17 xoffset=-2 yoffset=6 xadvance=9 page=0 chnl=0 +char id=103 x=152 y=0 width=13 height=17 xoffset=-3 yoffset=6 xadvance=8 page=0 chnl=0 +char id=38 x=165 y=0 width=16 height=16 xoffset=-3 yoffset=3 xadvance=11 page=0 chnl=0 +char id=37 x=181 y=0 width=18 height=16 xoffset=-3 yoffset=3 xadvance=14 page=0 chnl=0 +char id=36 x=199 y=0 width=12 height=16 xoffset=-2 yoffset=3 xadvance=9 page=0 chnl=0 +char id=63 x=211 y=0 width=11 height=16 xoffset=-3 yoffset=3 xadvance=7 page=0 chnl=0 +char id=33 x=222 y=0 width=7 height=16 xoffset=-2 yoffset=3 xadvance=4 page=0 chnl=0 +char id=48 x=229 y=0 width=13 height=16 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=57 x=242 y=0 width=13 height=16 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=56 x=0 y=20 width=13 height=16 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=54 x=13 y=20 width=13 height=16 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=53 x=26 y=20 width=12 height=16 xoffset=-2 yoffset=3 xadvance=9 page=0 chnl=0 +char id=51 x=38 y=20 width=13 height=16 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=100 x=51 y=20 width=13 height=16 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=98 x=64 y=20 width=13 height=16 xoffset=-2 yoffset=3 xadvance=9 page=0 chnl=0 +char id=85 x=77 y=20 width=14 height=16 xoffset=-2 yoffset=3 xadvance=11 page=0 chnl=0 +char id=83 x=91 y=20 width=13 height=16 xoffset=-3 yoffset=3 xadvance=8 page=0 chnl=0 +char id=79 x=104 y=20 width=15 height=16 xoffset=-2 yoffset=3 xadvance=12 page=0 chnl=0 +char id=71 x=119 y=20 width=14 height=16 xoffset=-2 yoffset=3 xadvance=11 page=0 chnl=0 +char id=67 x=133 y=20 width=13 height=16 xoffset=-2 yoffset=3 xadvance=10 page=0 chnl=0 +char id=127 x=146 y=20 width=12 height=15 xoffset=-2 yoffset=3 xadvance=10 page=0 chnl=0 +char id=35 x=158 y=20 width=15 height=15 xoffset=-3 yoffset=3 xadvance=10 page=0 chnl=0 +char id=92 x=173 y=20 width=11 height=15 xoffset=-3 yoffset=3 xadvance=6 page=0 chnl=0 +char id=47 x=184 y=20 width=11 height=15 xoffset=-3 yoffset=3 xadvance=6 page=0 chnl=0 +char id=59 x=195 y=20 width=8 height=15 xoffset=-3 yoffset=6 xadvance=4 page=0 chnl=0 +char id=55 x=203 y=20 width=13 height=15 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=52 x=216 y=20 width=14 height=15 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=50 x=230 y=20 width=13 height=15 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=49 x=243 y=20 width=9 height=15 xoffset=-2 yoffset=3 xadvance=9 page=0 chnl=0 +char id=116 x=0 y=36 width=10 height=15 xoffset=-3 yoffset=4 xadvance=5 page=0 chnl=0 +char id=108 x=10 y=36 width=6 height=15 xoffset=-2 yoffset=3 xadvance=4 page=0 chnl=0 +char id=107 x=16 y=36 width=12 height=15 xoffset=-2 yoffset=3 xadvance=8 page=0 chnl=0 +char id=105 x=28 y=36 width=7 height=15 xoffset=-2 yoffset=3 xadvance=4 page=0 chnl=0 +char id=104 x=35 y=36 width=12 height=15 xoffset=-2 yoffset=3 xadvance=10 page=0 chnl=0 +char id=102 x=47 y=36 width=11 height=15 xoffset=-3 yoffset=3 xadvance=5 page=0 chnl=0 +char id=90 x=58 y=36 width=13 height=15 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=89 x=71 y=36 width=13 height=15 xoffset=-3 yoffset=3 xadvance=8 page=0 chnl=0 +char id=88 x=84 y=36 width=14 height=15 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=87 x=98 y=36 width=19 height=15 xoffset=-3 yoffset=3 xadvance=15 page=0 chnl=0 +char id=86 x=117 y=36 width=14 height=15 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=84 x=131 y=36 width=13 height=15 xoffset=-3 yoffset=3 xadvance=8 page=0 chnl=0 +char id=82 x=144 y=36 width=13 height=15 xoffset=-2 yoffset=3 xadvance=10 page=0 chnl=0 +char id=80 x=157 y=36 width=12 height=15 xoffset=-2 yoffset=3 xadvance=9 page=0 chnl=0 +char id=78 x=169 y=36 width=14 height=15 xoffset=-2 yoffset=3 xadvance=12 page=0 chnl=0 +char id=77 x=183 y=36 width=17 height=15 xoffset=-2 yoffset=3 xadvance=14 page=0 chnl=0 +char id=76 x=200 y=36 width=11 height=15 xoffset=-2 yoffset=3 xadvance=8 page=0 chnl=0 +char id=75 x=211 y=36 width=13 height=15 xoffset=-2 yoffset=3 xadvance=9 page=0 chnl=0 +char id=73 x=224 y=36 width=10 height=15 xoffset=-3 yoffset=3 xadvance=5 page=0 chnl=0 +char id=72 x=234 y=36 width=14 height=15 xoffset=-2 yoffset=3 xadvance=11 page=0 chnl=0 +char id=70 x=0 y=51 width=11 height=15 xoffset=-2 yoffset=3 xadvance=8 page=0 chnl=0 +char id=69 x=11 y=51 width=11 height=15 xoffset=-2 yoffset=3 xadvance=8 page=0 chnl=0 +char id=68 x=22 y=51 width=14 height=15 xoffset=-2 yoffset=3 xadvance=11 page=0 chnl=0 +char id=66 x=36 y=51 width=13 height=15 xoffset=-2 yoffset=3 xadvance=10 page=0 chnl=0 +char id=65 x=49 y=51 width=15 height=15 xoffset=-3 yoffset=3 xadvance=10 page=0 chnl=0 +char id=58 x=64 y=51 width=7 height=13 xoffset=-2 yoffset=6 xadvance=4 page=0 chnl=0 +char id=117 x=71 y=51 width=12 height=13 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 +char id=115 x=83 y=51 width=11 height=13 xoffset=-3 yoffset=6 xadvance=7 page=0 chnl=0 +char id=111 x=94 y=51 width=13 height=13 xoffset=-3 yoffset=6 xadvance=9 page=0 chnl=0 +char id=101 x=107 y=51 width=13 height=13 xoffset=-3 yoffset=6 xadvance=9 page=0 chnl=0 +char id=99 x=120 y=51 width=12 height=13 xoffset=-3 yoffset=6 xadvance=7 page=0 chnl=0 +char id=97 x=132 y=51 width=12 height=13 xoffset=-3 yoffset=6 xadvance=9 page=0 chnl=0 +char id=60 x=144 y=51 width=13 height=12 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 +char id=122 x=157 y=51 width=11 height=12 xoffset=-3 yoffset=6 xadvance=7 page=0 chnl=0 +char id=120 x=168 y=51 width=13 height=12 xoffset=-3 yoffset=6 xadvance=8 page=0 chnl=0 +char id=119 x=181 y=51 width=17 height=12 xoffset=-3 yoffset=6 xadvance=12 page=0 chnl=0 +char id=118 x=198 y=51 width=13 height=12 xoffset=-3 yoffset=6 xadvance=8 page=0 chnl=0 +char id=114 x=211 y=51 width=10 height=12 xoffset=-2 yoffset=6 xadvance=6 page=0 chnl=0 +char id=110 x=221 y=51 width=12 height=12 xoffset=-2 yoffset=6 xadvance=10 page=0 chnl=0 +char id=109 x=233 y=51 width=17 height=12 xoffset=-2 yoffset=6 xadvance=15 page=0 chnl=0 +char id=94 x=0 y=66 width=13 height=11 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=62 x=13 y=66 width=13 height=11 xoffset=-3 yoffset=5 xadvance=9 page=0 chnl=0 +char id=42 x=26 y=66 width=13 height=10 xoffset=-3 yoffset=3 xadvance=9 page=0 chnl=0 +char id=43 x=39 y=66 width=13 height=10 xoffset=-3 yoffset=6 xadvance=9 page=0 chnl=0 +char id=61 x=52 y=66 width=13 height=8 xoffset=-3 yoffset=7 xadvance=9 page=0 chnl=0 +char id=39 x=65 y=66 width=6 height=8 xoffset=-2 yoffset=3 xadvance=3 page=0 chnl=0 +char id=34 x=71 y=66 width=9 height=8 xoffset=-2 yoffset=3 xadvance=6 page=0 chnl=0 +char id=44 x=80 y=66 width=8 height=7 xoffset=-3 yoffset=14 xadvance=4 page=0 chnl=0 +char id=126 x=88 y=66 width=13 height=6 xoffset=-3 yoffset=8 xadvance=9 page=0 chnl=0 +char id=46 x=101 y=66 width=7 height=6 xoffset=-2 yoffset=13 xadvance=4 page=0 chnl=0 +char id=96 x=108 y=66 width=8 height=6 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=45 x=116 y=66 width=9 height=5 xoffset=-3 yoffset=10 xadvance=5 page=0 chnl=0 +char id=95 x=125 y=66 width=13 height=4 xoffset=-4 yoffset=17 xadvance=6 page=0 chnl=0 +kernings count=-1 + diff --git a/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.atlas new file mode 100644 index 0000000..e51dee1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.atlas @@ -0,0 +1,201 @@ + +uiskin.png +size: 256,128 +format: RGBA8888 +filter: Linear,Linear +repeat: none +check-off + rotate: false + xy: 11, 5 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 11, 5 + size: 14, 14 + split: 3, 3, 3, 3 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-on + rotate: false + xy: 125, 35 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 23, 1 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default + rotate: false + xy: 1, 50 + size: 254, 77 + orig: 254, 77 + offset: 0, 0 + index: -1 +default-pane + rotate: false + xy: 11, 1 + size: 5, 3 + split: 1, 1, 1, 1 + orig: 5, 3 + offset: 0, 0 + index: -1 +default-rect-pad + rotate: false + xy: 11, 1 + size: 5, 3 + split: 1, 1, 1, 1 + orig: 5, 3 + offset: 0, 0 + index: -1 +default-pane-noborder + rotate: false + xy: 170, 44 + size: 1, 1 + split: 0, 0, 0, 0 + orig: 1, 1 + offset: 0, 0 + index: -1 +default-rect + rotate: false + xy: 38, 25 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default-rect-down + rotate: false + xy: 170, 46 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default-round + rotate: false + xy: 112, 29 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +default-round-down + rotate: false + xy: 99, 29 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +default-round-large + rotate: false + xy: 57, 29 + size: 20, 20 + split: 5, 5, 5, 4 + orig: 20, 20 + offset: 0, 0 + index: -1 +default-scroll + rotate: false + xy: 78, 29 + size: 20, 20 + split: 2, 2, 2, 2 + orig: 20, 20 + offset: 0, 0 + index: -1 +default-select + rotate: false + xy: 29, 29 + size: 27, 20 + split: 4, 14, 4, 4 + orig: 27, 20 + offset: 0, 0 + index: -1 +default-select-selection + rotate: false + xy: 26, 16 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default-slider + rotate: false + xy: 29, 20 + size: 8, 8 + split: 2, 2, 2, 2 + orig: 8, 8 + offset: 0, 0 + index: -1 +default-slider-knob + rotate: false + xy: 1, 1 + size: 9, 18 + orig: 9, 18 + offset: 0, 0 + index: -1 +default-splitpane + rotate: false + xy: 17, 1 + size: 5, 3 + split: 0, 5, 0, 0 + orig: 5, 3 + offset: 0, 0 + index: -1 +default-splitpane-vertical + rotate: false + xy: 125, 29 + size: 3, 5 + split: 0, 0, 0, 5 + orig: 3, 5 + offset: 0, 0 + index: -1 +default-window + rotate: false + xy: 1, 20 + size: 27, 29 + split: 4, 3, 20, 3 + orig: 27, 29 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 174, 48 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 140, 35 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 155, 35 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 129, 31 + size: 3, 3 + orig: 3, 3 + offset: 0, 0 + index: -1 + diff --git a/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.json b/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.json new file mode 100644 index 0000000..bce7b4f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.json @@ -0,0 +1,71 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { default-font: { file: default.fnt } }, +com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white, color: { r: 0, g: 0, b: 0, a: 0.45 } }, +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { down: default-round-down, up: default-round }, + toggle: { down: default-round-down, checked: default-round-down, up: default-round } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { down: default-round-down, up: default-round, font: default-font, fontColor: white }, + toggle: { down: default-round-down, up: default-round, checked: default-round-down, font: default-font, fontColor: white, downFontColor: red } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: default-scroll, hScrollKnob: default-round-large, background: default-rect, hScroll: default-scroll, vScrollKnob: default-round-large } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: default-font, fontColor: white, background: default-select, + scrollStyle: default, + listStyle: { font: default-font, selection: default-select-selection } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: default-splitpane-vertical }, + default-horizontal: { handle: default-splitpane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: default-window, titleFontColor: white }, + dialog: { titleFont: default-font, background: default-window, titleFontColor: white, stageBackground: dialogDim } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: default-slider, knob: default-slider-knob }, + default-vertical: { background: default-slider, knob: default-round-large } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: default-slider, knob: default-slider-knob }, + default-vertical: { background: default-slider, knob: default-round-large } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: white } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: selection, background: textfield, font: default-font, fontColor: white, cursor: cursor } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: white, selection: selection, fontColorSelected: white, font: default-font } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: default-pane, knob: default-round-large } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree-minus, plus: tree-plus, selection: default-select-selection } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: { font: default-font, fontColor: white }, + background: default-pane, wrapWidth: 150 + } +}, +} + diff --git a/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.png b/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.png new file mode 100644 index 0000000..c1e5f1a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/default/skin/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/README.md b/src/main/resources/omni_power/gdx-skins/expee/README.md new file mode 100644 index 0000000..af93f2c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/README.md @@ -0,0 +1,26 @@ +# Expee UI + +``` +Expee UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Expee UI can be used under the CC BY license. +https://creativecommons.org/licenses/by-sa/2.0/ + +Rolling_Hills_-_geograph.org.uk_-_434125.jpg by Stuart Brabbs: +http://www.geograph.org.uk/profile/14097 +Used under the Creative Commons Attribution-Share Alike 2.0 Generic license. +``` + +Features styles of most common **Scene2D** widgets. Citing the author: + +> Relive the silver age of computing when operating systems were real operating systems! This skin has been inspired by the Windows XP OS. I created the images myself and they are not ripped from the source. This could be used as a fake desktop in a computer simulation or the base for something more advanced. + +![Expee](preview.png) + +You can find an example project [here](https://ray3k.wordpress.com/artwork/expee-ui-skin-for-scene2d-ui/). + +### License +[CC BY-SA 2.0](https://creativecommons.org/licenses/by-sa/2.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=22887). diff --git a/src/main/resources/omni_power/gdx-skins/expee/preview.png b/src/main/resources/omni_power/gdx-skins/expee/preview.png new file mode 100644 index 0000000..77ebadd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/README.md b/src/main/resources/omni_power/gdx-skins/expee/raw/README.md new file mode 100644 index 0000000..7ace26f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/raw/README.md @@ -0,0 +1 @@ +Raw assets were extracted using [Skin Composer](https://github.com/raeleus/skin-composer). diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-disabled.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-disabled.9.png new file mode 100644 index 0000000..9a52e73 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-down.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-down.9.png new file mode 100644 index 0000000..d06062b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-over.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-over.9.png new file mode 100644 index 0000000..b001d30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-back.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back.9.png new file mode 100644 index 0000000..9c83552 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-back.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-close-over.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-close-over.png new file mode 100644 index 0000000..65b4a8d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-close-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-close-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-close-pressed.png new file mode 100644 index 0000000..b389c2b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-close-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-close.png new file mode 100644 index 0000000..3e97cdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-disabled.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-disabled.9.png new file mode 100644 index 0000000..7c4a784 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-down.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-down.9.png new file mode 100644 index 0000000..f0d80fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-over.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-over.9.png new file mode 100644 index 0000000..ac90873 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward.9.png new file mode 100644 index 0000000..39408ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-forward.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-go-down.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-go-down.png new file mode 100644 index 0000000..3148c24 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-go-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-go-over.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-go-over.png new file mode 100644 index 0000000..88546ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-go-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-go.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-go.png new file mode 100644 index 0000000..6e4876a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-go.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-hover.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-hover.9.png new file mode 100644 index 0000000..947c1c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-hover.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-log-hover.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-log-hover.9.png new file mode 100644 index 0000000..811b165 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-log-hover.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-log-pressed.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-log-pressed.9.png new file mode 100644 index 0000000..63f23c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-log-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-log.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-log.9.png new file mode 100644 index 0000000..2ea1f64 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-log.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-off-hover.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-off-hover.9.png new file mode 100644 index 0000000..59ddf14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-off-hover.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-off-pressed.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-off-pressed.9.png new file mode 100644 index 0000000..80b07dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-off-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-off.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-off.9.png new file mode 100644 index 0000000..4f8f4ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-off.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-pressed.9.png new file mode 100644 index 0000000..9643b00 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-down-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-down-pressed.png new file mode 100644 index 0000000..37b9463 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-down-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-down.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-down.png new file mode 100644 index 0000000..d264f2b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-left-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-left-pressed.png new file mode 100644 index 0000000..b57cf41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-left-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-left.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-left.png new file mode 100644 index 0000000..067196b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-right-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-right-pressed.png new file mode 100644 index 0000000..54e7f2b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-right-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-right.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-right.png new file mode 100644 index 0000000..aad061d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-up-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-up-pressed.png new file mode 100644 index 0000000..44e089d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-up-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-up.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-up.png new file mode 100644 index 0000000..85f1a71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button-scroll-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/button.9.png new file mode 100644 index 0000000..f2a422c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-disabled.png b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-disabled.png new file mode 100644 index 0000000..d17e177 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-hover.png b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-hover.png new file mode 100644 index 0000000..81c8a42 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-hover.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-pressed-hover.png b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-pressed-hover.png new file mode 100644 index 0000000..aaf2c61 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-pressed-hover.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-pressed.png new file mode 100644 index 0000000..6992fa5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox.png new file mode 100644 index 0000000..44dc367 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/expee/raw/cursor.png new file mode 100644 index 0000000..01b045b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/dialog.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/dialog.9.png new file mode 100644 index 0000000..26deae3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/dialog.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/expee-icon.png b/src/main/resources/omni_power/gdx-skins/expee/raw/expee-icon.png new file mode 100644 index 0000000..6ec7da3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/expee-icon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/explorer-icon.png b/src/main/resources/omni_power/gdx-skins/expee/raw/explorer-icon.png new file mode 100644 index 0000000..41c8114 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/explorer-icon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/expee/raw/font-export.fnt new file mode 100644 index 0000000..4653b3b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=77 scaleH=78 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=75 y=0 width=1 height=9 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 letter="!" +char id=34 x=60 y=74 width=3 height=3 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=""" +char id=35 x=12 y=10 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="#" +char id=36 x=54 y=41 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=11 height=9 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=19 y=30 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="&" +char id=39 x=58 y=23 width=1 height=3 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0 letter="'" +char id=40 x=71 y=26 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=71 y=13 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=34 y=30 width=5 height=5 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=18 y=40 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=55 y=23 width=2 height=4 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=20 y=18 width=3 height=1 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter="-" +char id=46 x=3 y=75 width=1 height=2 xoffset=0 yoffset=10 xadvance=2 page=0 chnl=0 letter="." +char id=47 x=66 y=42 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="/" +char id=48 x=28 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="0" +char id=49 x=60 y=64 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=34 y=20 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=47 y=30 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=48 y=20 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="4" +char id=53 x=48 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=40 y=60 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=40 y=30 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=40 y=50 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=34 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=73 y=68 width=1 height=7 xoffset=0 yoffset=5 xadvance=2 page=0 chnl=0 letter=":" +char id=59 x=70 y=68 width=2 height=9 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=";" +char id=60 x=40 y=70 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="<" +char id=61 x=33 y=70 width=6 height=3 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="=" +char id=62 x=47 y=60 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=60 y=31 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="?" +char id=64 x=0 y=31 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=10 y=42 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="A" +char id=66 x=41 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="B" +char id=67 x=47 y=50 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="C" +char id=68 x=11 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=47 y=68 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=49 y=0 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=11 y=30 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=12 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=66 y=55 width=3 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=66 y=24 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=40 y=40 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="K" +char id=76 x=55 y=0 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=9 y=58 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="M" +char id=78 x=19 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="N" +char id=79 x=9 y=68 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="O" +char id=80 x=47 y=40 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=0 y=58 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Q" +char id=82 x=42 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="R" +char id=83 x=41 y=20 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=18 y=48 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=20 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=18 y=68 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="V" +char id=87 x=0 y=10 width=11 height=9 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=33 y=60 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="X" +char id=89 x=18 y=58 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=35 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="Z" +char id=91 x=71 y=0 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=66 y=0 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="\" +char id=93 x=70 y=55 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=0 y=70 width=7 height=4 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=10 y=56 width=7 height=1 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=0 y=75 width=2 height=2 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="`" +char id=97 x=54 y=70 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="a" +char id=98 x=27 y=20 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=54 y=54 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="c" +char id=100 x=26 y=66 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=26 y=58 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=66 y=13 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=33 y=50 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=33 y=39 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=75 y=10 width=1 height=9 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 letter="i" +char id=106 x=71 y=39 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=54 y=30 width=5 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=74 y=51 width=1 height=10 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0 letter="l" +char id=109 x=0 y=42 width=9 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=20 y=10 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=26 y=50 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=27 y=10 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=26 y=40 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=66 y=65 width=3 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="r" +char id=115 x=61 y=0 width=4 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="s" +char id=116 x=61 y=8 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=27 y=31 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=54 y=62 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="v" +char id=119 x=0 y=50 width=9 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=60 y=23 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="x" +char id=121 x=60 y=54 width=5 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="y" +char id=122 x=66 y=34 width=4 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="z" +char id=123 x=55 y=10 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=75 y=62 width=1 height=12 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0 letter="|" +char id=125 x=60 y=41 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=10 y=52 width=7 height=3 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=61 y=18 width=4 height=4 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=20 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=24 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/expee/raw/font-export.png new file mode 100644 index 0000000..7a80d04 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/expee/raw/font-title-export.fnt new file mode 100644 index 0000000..8d2d06f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=94 scaleH=96 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=87 y=48 width=3 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=40 y=59 width=5 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=13 y=0 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=64 y=51 width=7 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=13 width=12 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=0 y=67 width=10 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=90 y=85 width=3 height=5 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=87 y=0 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=80 y=25 width=6 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=56 y=88 width=7 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=12 y=48 width=9 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=64 y=88 width=4 height=5 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=32 y=47 width=5 height=3 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=32 y=51 width=3 height=3 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=74 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=72 y=47 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=80 y=49 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=66 y=0 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=66 y=22 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=31 y=55 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=72 y=73 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=32 y=35 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=32 y=12 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=64 y=65 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=65 y=35 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=87 y=25 width=3 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=86 y=74 width=5 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=23 y=12 width=8 height=9 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=20 y=88 width=9 height=5 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=39 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=79 y=85 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=45 width=11 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=22 y=33 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=66 y=11 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=41 y=11 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=21 y=58 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=64 y=77 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=72 y=85 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=11 y=58 width=9 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=39 y=66 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=81 y=14 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=74 y=13 width=6 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=41 y=0 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=58 y=24 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=85 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="M" +char id=78 x=41 y=34 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=12 y=36 width=9 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=50 y=21 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=10 y=79 width=9 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=41 y=23 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=58 y=12 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=13 y=11 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=40 y=47 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=13 y=22 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=25 width=12 height=10 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=22 y=44 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=20 y=70 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=49 y=45 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=81 y=0 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=56 y=56 width=7 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="\" +char id=93 x=86 y=60 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=20 y=81 width=9 height=6 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=22 y=55 width=8 height=2 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=57 y=51 width=4 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=50 y=0 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=32 y=23 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=56 y=78 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=32 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=48 y=59 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=80 y=60 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=30 y=69 width=8 height=11 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=48 y=69 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=87 y=14 width=3 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=80 y=71 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=50 y=10 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=86 y=85 width=3 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=36 width=11 height=8 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=11 y=70 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=23 y=22 width=8 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=23 y=0 width=8 height=11 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=30 y=81 width=8 height=11 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=74 y=25 width=5 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=80 y=39 width=6 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=73 y=34 width=6 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=50 y=32 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=56 y=69 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=58 width=10 height=8 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=39 y=87 width=8 height=8 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=58 y=0 width=7 height=11 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=57 y=42 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=48 y=80 width=7 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=87 y=34 width=3 height=13 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=72 y=59 width=7 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=0 y=79 width=9 height=5 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=58 y=35 width=5 height=5 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=12 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/expee/raw/font-title-export.png new file mode 100644 index 0000000..b529f63 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/label-drive.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/label-drive.9.png new file mode 100644 index 0000000..37d5648 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/label-drive.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/label-file.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/label-file.9.png new file mode 100644 index 0000000..48a589f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/label-file.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/label-folder.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/label-folder.9.png new file mode 100644 index 0000000..45b81c4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/label-folder.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/list-selection.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/list-selection.9.png new file mode 100644 index 0000000..c7cd463 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/list-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/list.9.png new file mode 100644 index 0000000..2958300 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar-knob.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar-knob.9.png new file mode 100644 index 0000000..d66c6bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar.9.png new file mode 100644 index 0000000..942423d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_0.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_0.png new file mode 100644 index 0000000..80a7815 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_0.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_1.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_1.png new file mode 100644 index 0000000..ce43e43 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_10.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_10.png new file mode 100644 index 0000000..bc71b88 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_10.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_11.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_11.png new file mode 100644 index 0000000..8c59e00 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_11.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_12.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_12.png new file mode 100644 index 0000000..6fa0872 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_12.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_13.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_13.png new file mode 100644 index 0000000..68e9fc7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_13.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_14.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_14.png new file mode 100644 index 0000000..525ddc7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_14.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_2.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_2.png new file mode 100644 index 0000000..1543b49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_3.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_3.png new file mode 100644 index 0000000..d57ef59 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_4.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_4.png new file mode 100644 index 0000000..f48edb8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_4.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_5.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_5.png new file mode 100644 index 0000000..38abed7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_5.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_6.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_6.png new file mode 100644 index 0000000..8f46bf4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_6.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_7.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_7.png new file mode 100644 index 0000000..a843e41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_7.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_8.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_8.png new file mode 100644 index 0000000..9a618b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_8.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_9.png new file mode 100644 index 0000000..86c7384 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-bar_9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/loading-window.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-window.9.png new file mode 100644 index 0000000..303ebca Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/loading-window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/logo.png b/src/main/resources/omni_power/gdx-skins/expee/raw/logo.png new file mode 100644 index 0000000..d41b3ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/logo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/minus.png b/src/main/resources/omni_power/gdx-skins/expee/raw/minus.png new file mode 100644 index 0000000..49d6dee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/pane-large.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/pane-large.9.png new file mode 100644 index 0000000..fb958a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/pane-large.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/pane.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/pane.9.png new file mode 100644 index 0000000..71abc8b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/panel.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/panel.9.png new file mode 100644 index 0000000..9703f2c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/panel.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/plus.png b/src/main/resources/omni_power/gdx-skins/expee/raw/plus.png new file mode 100644 index 0000000..f1c7521 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/programs-pressed.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/programs-pressed.9.png new file mode 100644 index 0000000..ee45b49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/programs-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/programs.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/programs.9.png new file mode 100644 index 0000000..7014f38 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/programs.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/progressbar-knob.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/progressbar-knob.9.png new file mode 100644 index 0000000..03eba0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/progressbar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/progressbar.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/progressbar.9.png new file mode 100644 index 0000000..81d05a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/progressbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/radio-disabled.png b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-disabled.png new file mode 100644 index 0000000..942f999 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/radio-hover.png b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-hover.png new file mode 100644 index 0000000..7dc40b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-hover.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/radio-pressed-hover.png b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-pressed-hover.png new file mode 100644 index 0000000..f4e115e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-pressed-hover.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-pressed.png new file mode 100644 index 0000000..5ba8118 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/radio.png b/src/main/resources/omni_power/gdx-skins/expee/raw/radio.png new file mode 100644 index 0000000..165e4f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-background-h.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-background-h.9.png new file mode 100644 index 0000000..cdb64fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-background-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-background-v.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-background-v.9.png new file mode 100644 index 0000000..4dee824 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-background-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-corner.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-corner.9.png new file mode 100644 index 0000000..f0a7875 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/scroll-corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/scrollbar-knob-h.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/scrollbar-knob-h.9.png new file mode 100644 index 0000000..7335621 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/scrollbar-knob-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/scrollbar-knob-v.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/scrollbar-knob-v.9.png new file mode 100644 index 0000000..4ea8c4e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/scrollbar-knob-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/select-box.9.png new file mode 100644 index 0000000..4080c91 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/expee/raw/slider-knob.png new file mode 100644 index 0000000..b224bec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/slider.9.png new file mode 100644 index 0000000..0eb4ef6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/expee/raw/splitpane-horizontal.png new file mode 100644 index 0000000..f2040d9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/expee/raw/splitpane-vertical.png new file mode 100644 index 0000000..2c57a80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu-bottom.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu-bottom.9.png new file mode 100644 index 0000000..6b95319 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu-bottom.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu-right.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu-right.9.png new file mode 100644 index 0000000..030be5b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu.9.png new file mode 100644 index 0000000..23e16a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/start-menu.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/start-pressed.png b/src/main/resources/omni_power/gdx-skins/expee/raw/start-pressed.png new file mode 100644 index 0000000..9f0b49c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/start-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/start.png b/src/main/resources/omni_power/gdx-skins/expee/raw/start.png new file mode 100644 index 0000000..e304803 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/start.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/taskbar.png b/src/main/resources/omni_power/gdx-skins/expee/raw/taskbar.png new file mode 100644 index 0000000..0177314 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/taskbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/textfield.9.png new file mode 100644 index 0000000..5aedd70 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/tooltip.9.png new file mode 100644 index 0000000..c53f548 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/expee/raw/touchpad-knob.png new file mode 100644 index 0000000..a594b67 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/touchpad.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/touchpad.9.png new file mode 100644 index 0000000..077ec21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/touchpad.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/tray.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/tray.9.png new file mode 100644 index 0000000..7b0a02d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/tray.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/wallpaper.png b/src/main/resources/omni_power/gdx-skins/expee/raw/wallpaper.png new file mode 100644 index 0000000..ad8df17 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/wallpaper.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/white.png b/src/main/resources/omni_power/gdx-skins/expee/raw/white.png new file mode 100644 index 0000000..39c2d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/expee/raw/window.9.png new file mode 100644 index 0000000..122d518 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.atlas b/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.atlas new file mode 100644 index 0000000..18e19cb --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.atlas @@ -0,0 +1,824 @@ + +expee-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 336, 22 + size: 18, 18 + split: 3, 3, 3, 3 + orig: 18, 18 + offset: 0, 0 + index: -1 +button-back + rotate: false + xy: 477, 373 + size: 43, 36 + split: 29, 13, 4, 31 + pad: 29, 13, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-back-disabled + rotate: false + xy: 891, 881 + size: 43, 36 + split: 29, 13, 4, 31 + pad: 29, 13, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-back-down + rotate: false + xy: 963, 953 + size: 43, 36 + split: 29, 13, 5, 30 + pad: 29, 13, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-back-over + rotate: false + xy: 477, 335 + size: 43, 36 + split: 29, 13, 4, 31 + pad: 29, 13, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 304, 1 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +button-close-over + rotate: false + xy: 325, 1 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +button-close-pressed + rotate: false + xy: 698, 567 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +button-forward + rotate: false + xy: 522, 373 + size: 43, 36 + split: 28, 8, 0, 31 + pad: 30, 10, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-forward-disabled + rotate: false + xy: 891, 843 + size: 43, 36 + split: 28, 8, 0, 31 + pad: 30, 10, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-forward-down + rotate: false + xy: 477, 297 + size: 43, 36 + split: 29, 13, 5, 30 + pad: 29, 13, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-forward-over + rotate: false + xy: 522, 335 + size: 43, 36 + split: 28, 13, 4, 31 + pad: 28, 13, 5, 7 + orig: 43, 36 + offset: 0, 0 + index: -1 +button-go + rotate: false + xy: 249, 15 + size: 53, 25 + orig: 53, 25 + offset: 0, 0 + index: -1 +button-go-down + rotate: false + xy: 746, 595 + size: 52, 25 + orig: 52, 25 + offset: 0, 0 + index: -1 +button-go-over + rotate: false + xy: 643, 561 + size: 53, 25 + orig: 53, 25 + offset: 0, 0 + index: -1 +button-hover + rotate: false + xy: 719, 568 + size: 18, 18 + split: 7, 6, 6, 5 + pad: 3, 3, 3, 3 + orig: 18, 18 + offset: 0, 0 + index: -1 +button-log + rotate: false + xy: 384, 82 + size: 31, 29 + split: 25, 0, 0, 26 + pad: 28, 0, 0, 0 + orig: 31, 29 + offset: 0, 0 + index: -1 +button-log-hover + rotate: false + xy: 522, 304 + size: 31, 29 + split: 25, 0, 0, 26 + pad: 28, 0, 0, 0 + orig: 31, 29 + offset: 0, 0 + index: -1 +button-log-pressed + rotate: false + xy: 477, 219 + size: 31, 29 + split: 26, 0, 0, 25 + pad: 28, 0, 0, 0 + orig: 31, 29 + offset: 0, 0 + index: -1 +button-off + rotate: false + xy: 963, 922 + size: 31, 29 + split: 25, 0, 0, 26 + pad: 28, 0, 0, 0 + orig: 31, 29 + offset: 0, 0 + index: -1 +button-off-hover + rotate: false + xy: 891, 723 + size: 31, 29 + split: 25, 0, 0, 26 + pad: 28, 0, 0, 0 + orig: 31, 29 + offset: 0, 0 + index: -1 +button-off-pressed + rotate: false + xy: 417, 82 + size: 31, 29 + split: 26, 0, 0, 25 + pad: 28, 0, 0, 0 + orig: 31, 29 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 936, 882 + size: 18, 18 + split: 3, 3, 4, 3 + pad: 3, 3, 3, 3 + orig: 18, 18 + offset: 0, 0 + index: -1 +button-scroll-down + rotate: false + xy: 891, 623 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-down-pressed + rotate: false + xy: 433, 65 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-left + rotate: false + xy: 859, 605 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-left-pressed + rotate: false + xy: 356, 28 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-right + rotate: false + xy: 463, 176 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-right-pressed + rotate: false + xy: 463, 159 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-up + rotate: false + xy: 463, 142 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +button-scroll-up-pressed + rotate: false + xy: 463, 125 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 821, 607 + size: 17, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +checkbox-disabled + rotate: false + xy: 573, 442 + size: 17, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +checkbox-hover + rotate: false + xy: 936, 867 + size: 17, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 891, 673 + size: 17, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +checkbox-pressed-hover + rotate: false + xy: 840, 607 + size: 17, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 352, 42 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +dialog + rotate: false + xy: 891, 754 + size: 39, 45 + split: 9, 9, 30, 3 + pad: 5, 5, 30, 5 + orig: 39, 45 + offset: 0, 0 + index: -1 +expee-icon + rotate: false + xy: 598, 520 + size: 32, 21 + orig: 32, 21 + offset: 0, 0 + index: -1 +explorer-icon + rotate: false + xy: 891, 688 + size: 18, 16 + orig: 18, 16 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 384, 113 + size: 77, 78 + orig: 77, 78 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 477, 411 + size: 94, 96 + orig: 94, 96 + offset: 0, 0 + index: -1 +label-drive + rotate: false + xy: 643, 546 + size: 20, 13 + split: 16, 0, 12, 0 + pad: 19, 0, 0, 0 + orig: 20, 13 + offset: 0, 0 + index: -1 +label-file + rotate: false + xy: 573, 457 + size: 19, 16 + split: 12, 0, 15, 0 + pad: 18, 0, 0, 0 + orig: 19, 16 + offset: 0, 0 + index: -1 +label-folder + rotate: false + xy: 665, 546 + size: 19, 13 + split: 15, 0, 12, 0 + pad: 18, 0, 0, 0 + orig: 19, 13 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 555, 327 + size: 6, 6 + split: 1, 1, 1, 1 + orig: 6, 6 + offset: 0, 0 + index: -1 +list-selection + rotate: false + xy: 746, 588 + size: 5, 5 + split: 0, 0, 0, 0 + pad: 1, 1, 1, 1 + orig: 5, 5 + offset: 0, 0 + index: -1 +loading-bar_0 + rotate: false + xy: 643, 994 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_1 + rotate: false + xy: 1, 45 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_10 + rotate: false + xy: 643, 746 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_11 + rotate: false + xy: 643, 715 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_12 + rotate: false + xy: 643, 684 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_13 + rotate: false + xy: 643, 653 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_14 + rotate: false + xy: 643, 622 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_2 + rotate: false + xy: 643, 963 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_3 + rotate: false + xy: 1, 14 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_4 + rotate: false + xy: 643, 932 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_5 + rotate: false + xy: 643, 901 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_6 + rotate: false + xy: 643, 870 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_7 + rotate: false + xy: 643, 839 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_8 + rotate: false + xy: 643, 808 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar_9 + rotate: false + xy: 643, 777 + size: 246, 29 + orig: 246, 29 + offset: 0, 0 + index: -1 +loading-bar + rotate: false + xy: 352, 45 + size: 30, 29 + split: 7, 7, 7, 6 + pad: 4, 4, 4, 3 + orig: 30, 29 + offset: 0, 0 + index: -1 +loading-bar-knob + rotate: false + xy: 518, 277 + size: 1, 18 + split: 0, 0, 7, 10 + pad: 0, 0, 0, 0 + orig: 1, 18 + offset: 0, 0 + index: -1 +loading-window + rotate: false + xy: 632, 533 + size: 8, 8 + split: 0, 0, 0, 0 + pad: 0, 0, 7, 0 + orig: 8, 8 + offset: 0, 0 + index: -1 +logo + rotate: false + xy: 1, 193 + size: 474, 348 + orig: 474, 348 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 598, 509 + size: 12, 9 + orig: 12, 9 + offset: 0, 0 + index: -1 +pane + rotate: false + xy: 996, 927 + size: 11, 24 + split: 5, 0, 19, 3 + pad: 7, 0, 2, 5 + orig: 11, 24 + offset: 0, 0 + index: -1 +pane-large + rotate: false + xy: 1012, 984 + size: 11, 39 + split: 4, 0, 34, 3 + pad: 6, 0, 1, 4 + orig: 11, 39 + offset: 0, 0 + index: -1 +panel + rotate: false + xy: 573, 406 + size: 16, 16 + split: 4, 4, 4, 3 + pad: 3, 3, 3, 3 + orig: 16, 16 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 597, 498 + size: 12, 9 + orig: 12, 9 + offset: 0, 0 + index: -1 +programs + rotate: false + xy: 891, 991 + size: 119, 32 + split: 0, 52, 0, 29 + pad: 34, 59, 0, 0 + orig: 119, 32 + offset: 0, 0 + index: -1 +programs-pressed + rotate: false + xy: 477, 509 + size: 119, 32 + split: 1, 52, 0, 29 + pad: 34, 59, 0, 0 + orig: 119, 32 + offset: 0, 0 + index: -1 +progressbar + rotate: false + xy: 1, 1 + size: 19, 11 + split: 4, 4, 4, 4 + pad: 4, 4, 2, 2 + orig: 19, 11 + offset: 0, 0 + index: -1 +progressbar-knob + rotate: false + xy: 932, 793 + size: 1, 6 + split: 0, 0, 2, 3 + pad: 0, 0, 0, 0 + orig: 1, 6 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 800, 605 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +radio-disabled + rotate: false + xy: 936, 902 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +radio-hover + rotate: false + xy: 477, 202 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 891, 706 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +radio-pressed-hover + rotate: false + xy: 412, 65 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +scroll-background-h + rotate: false + xy: 567, 355 + size: 14, 16 + split: 0, 0, 14, 1 + pad: 0, 0, 0, 0 + orig: 14, 16 + offset: 0, 0 + index: -1 +scroll-background-v + rotate: false + xy: 877, 606 + size: 16, 14 + split: 14, 1, 0, 0 + pad: 0, 0, 0, 0 + orig: 16, 14 + offset: 0, 0 + index: -1 +scroll-corner + rotate: false + xy: 895, 606 + size: 16, 15 + split: 0, 11, 0, 11 + pad: 0, 0, 0, 0 + orig: 16, 15 + offset: 0, 0 + index: -1 +scrollbar-knob-h + rotate: false + xy: 573, 424 + size: 17, 16 + split: 3, 3, 2, 3 + orig: 17, 16 + offset: 0, 0 + index: -1 +scrollbar-knob-v + rotate: false + xy: 450, 94 + size: 16, 17 + split: 3, 3, 2, 3 + orig: 16, 17 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 304, 22 + size: 30, 18 + split: 1, 14, 1, 16 + pad: 2, 15, 2, 2 + orig: 30, 18 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 567, 373 + size: 16, 31 + split: 5, 4, 15, 15 + pad: 0, 0, 0, 0 + orig: 16, 31 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 891, 640 + size: 17, 31 + orig: 17, 31 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 963, 919 + size: 3, 1 + orig: 3, 1 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 567, 406 + size: 1, 3 + orig: 1, 3 + offset: 0, 0 + index: -1 +start + rotate: false + xy: 249, 42 + size: 101, 32 + orig: 101, 32 + offset: 0, 0 + index: -1 +start-menu + rotate: false + xy: 1, 120 + size: 381, 71 + split: 6, 9, 69, 0 + pad: 2, 2, 69, 0 + orig: 381, 71 + offset: 0, 0 + index: -1 +start-menu-bottom + rotate: false + xy: 1, 76 + size: 381, 42 + split: 1, 1, 3, 1 + pad: 1, 1, -1, -1 + orig: 381, 42 + offset: 0, 0 + index: -1 +start-menu-right + rotate: false + xy: 522, 300 + size: 3, 2 + split: 1, 0, 0, 0 + orig: 3, 2 + offset: 0, 0 + index: -1 +start-pressed + rotate: false + xy: 643, 588 + size: 101, 32 + orig: 101, 32 + offset: 0, 0 + index: -1 +taskbar + rotate: false + xy: 1008, 957 + size: 1, 32 + orig: 1, 32 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 384, 54 + size: 26, 26 + split: 4, 4, 4, 4 + orig: 26, 26 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 891, 801 + size: 42, 40 + split: 16, 18, 16, 18 + pad: 10, 12, 9, 12 + orig: 42, 40 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 891, 919 + size: 70, 70 + split: 34, 33, 34, 33 + pad: 1, 0, 0, 0 + orig: 70, 70 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 936, 849 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +tray + rotate: false + xy: 573, 475 + size: 22, 32 + split: 21, 0, 5, 26 + pad: 21, 0, 0, 0 + orig: 22, 32 + offset: 0, 0 + index: -1 +wallpaper + rotate: false + xy: 1, 543 + size: 640, 480 + orig: 640, 480 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 570, 408 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 477, 250 + size: 39, 45 + split: 9, 9, 30, 3 + pad: 5, 5, 30, 5 + orig: 39, 45 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.json b/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.json new file mode 100644 index 0000000..49891ad --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.json @@ -0,0 +1,264 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + gray: { + r: 0.6166667 + g: 0.6166667 + b: 0.6166667 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-hover + } + back: { + up: button-back + down: button-back-down + over: button-back-over + disabled: button-back-disabled + } + forward: { + up: button-forward + down: button-forward-down + over: button-forward-over + disabled: button-forward-disabled + } + go: { + up: button-go + down: button-go-down + over: button-go-over + } + scroll-left: { + up: button-scroll-left + down: button-scroll-left-pressed + } + scroll-right: { + up: button-scroll-right + down: button-scroll-right-pressed + } + scroll-up: { + up: button-scroll-up + down: button-scroll-up-pressed + } + scroll-down: { + up: button-scroll-down + down: button-scroll-down-pressed + } + close: { + up: button-close + down: button-close-pressed + over: button-close-over + } + start: { + up: start + down: start-pressed + checked: start-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-pressed + checkboxOff: checkbox + checkboxOver: checkbox-hover + font: font + fontColor: black + } + radio: { + checkboxOn: radio-pressed + checkboxOff: radio + checkboxOver: radio-hover + checkboxOnDisabled: radio-disabled + checkboxOffDisabled: radio-disabled + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + title: { + font: title + fontColor: white + } + file: { + font: font + fontColor: black + background: label-file + } + folder: { + font: font + fontColor: black + background: label-folder + } + drive: { + font: font + fontColor: black + background: label-drive + } + address-bar: { + font: font + fontColor: gray + } + white: { + font: font + fontColor: white + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: list-selection + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + corner: scroll-corner + hScroll: scroll-background-h + hScrollKnob: scrollbar-knob-h + vScroll: scroll-background-v + vScrollKnob: scrollbar-knob-v + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box + scrollStyle: default + listStyle: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-hover + } + back: { + font: font + fontColor: black + disabledFontColor: gray + up: button-back + down: button-back-down + over: button-back-over + disabled: button-back-disabled + } + shutdown: { + font: font + fontColor: white + up: button-off + down: button-off-pressed + over: button-off-hover + } + logoff: { + font: font + fontColor: white + up: button-log + down: button-log-pressed + over: button-log-hover + } + programs: { + font: font + fontColor: black + downFontColor: white + overFontColor: white + up: programs + down: programs-pressed + over: programs-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + cursor: cursor + selection: list-selection + messageFont: font + messageFontColor: gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: list-selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: title + titleFontColor: white + } + loading: { + background: loading-window + titleFont: title + } + dialog: { + background: dialog + titleFont: title + titleFontColor: white + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.png b/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.png new file mode 100644 index 0000000..84520ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/expee/skin/expee-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/expee/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/expee/skin/font-export.fnt new file mode 100644 index 0000000..4653b3b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=77 scaleH=78 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=75 y=0 width=1 height=9 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 letter="!" +char id=34 x=60 y=74 width=3 height=3 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=""" +char id=35 x=12 y=10 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="#" +char id=36 x=54 y=41 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=11 height=9 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=19 y=30 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="&" +char id=39 x=58 y=23 width=1 height=3 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0 letter="'" +char id=40 x=71 y=26 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=71 y=13 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=34 y=30 width=5 height=5 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=18 y=40 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=55 y=23 width=2 height=4 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=20 y=18 width=3 height=1 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter="-" +char id=46 x=3 y=75 width=1 height=2 xoffset=0 yoffset=10 xadvance=2 page=0 chnl=0 letter="." +char id=47 x=66 y=42 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="/" +char id=48 x=28 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="0" +char id=49 x=60 y=64 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=34 y=20 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=47 y=30 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=48 y=20 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="4" +char id=53 x=48 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=40 y=60 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=40 y=30 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=40 y=50 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=34 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=73 y=68 width=1 height=7 xoffset=0 yoffset=5 xadvance=2 page=0 chnl=0 letter=":" +char id=59 x=70 y=68 width=2 height=9 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=";" +char id=60 x=40 y=70 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="<" +char id=61 x=33 y=70 width=6 height=3 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="=" +char id=62 x=47 y=60 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=60 y=31 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="?" +char id=64 x=0 y=31 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=10 y=42 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="A" +char id=66 x=41 y=10 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="B" +char id=67 x=47 y=50 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="C" +char id=68 x=11 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=47 y=68 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=49 y=0 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=11 y=30 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=12 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=66 y=55 width=3 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=66 y=24 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=40 y=40 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="K" +char id=76 x=55 y=0 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=9 y=58 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="M" +char id=78 x=19 y=20 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="N" +char id=79 x=9 y=68 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="O" +char id=80 x=47 y=40 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=0 y=58 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Q" +char id=82 x=42 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="R" +char id=83 x=41 y=20 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=18 y=48 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=20 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=18 y=68 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="V" +char id=87 x=0 y=10 width=11 height=9 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=33 y=60 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="X" +char id=89 x=18 y=58 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=35 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="Z" +char id=91 x=71 y=0 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=66 y=0 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="\" +char id=93 x=70 y=55 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=0 y=70 width=7 height=4 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=10 y=56 width=7 height=1 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=0 y=75 width=2 height=2 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="`" +char id=97 x=54 y=70 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="a" +char id=98 x=27 y=20 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=54 y=54 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="c" +char id=100 x=26 y=66 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=26 y=58 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=66 y=13 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=33 y=50 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=33 y=39 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=75 y=10 width=1 height=9 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 letter="i" +char id=106 x=71 y=39 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=54 y=30 width=5 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=74 y=51 width=1 height=10 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0 letter="l" +char id=109 x=0 y=42 width=9 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=20 y=10 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=26 y=50 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=27 y=10 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=26 y=40 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=66 y=65 width=3 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="r" +char id=115 x=61 y=0 width=4 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="s" +char id=116 x=61 y=8 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=27 y=31 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=54 y=62 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="v" +char id=119 x=0 y=50 width=9 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=60 y=23 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="x" +char id=121 x=60 y=54 width=5 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="y" +char id=122 x=66 y=34 width=4 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="z" +char id=123 x=55 y=10 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=75 y=62 width=1 height=12 xoffset=0 yoffset=2 xadvance=2 page=0 chnl=0 letter="|" +char id=125 x=60 y=41 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=10 y=52 width=7 height=3 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=61 y=18 width=4 height=4 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=20 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=3 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=24 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/expee/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/expee/skin/font-title-export.fnt new file mode 100644 index 0000000..8d2d06f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/expee/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=94 scaleH=96 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=87 y=48 width=3 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=40 y=59 width=5 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=13 y=0 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=64 y=51 width=7 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=13 width=12 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=0 y=67 width=10 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=90 y=85 width=3 height=5 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=87 y=0 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=80 y=25 width=6 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=56 y=88 width=7 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=12 y=48 width=9 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=64 y=88 width=4 height=5 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=32 y=47 width=5 height=3 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=32 y=51 width=3 height=3 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=74 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=72 y=47 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=80 y=49 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=66 y=0 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=66 y=22 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=31 y=55 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=72 y=73 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=32 y=35 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=32 y=12 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=64 y=65 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=65 y=35 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=87 y=25 width=3 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=86 y=74 width=5 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=23 y=12 width=8 height=9 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=20 y=88 width=9 height=5 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=39 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=79 y=85 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=45 width=11 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=22 y=33 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=66 y=11 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=41 y=11 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=21 y=58 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=64 y=77 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=72 y=85 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=11 y=58 width=9 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=39 y=66 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=81 y=14 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=74 y=13 width=6 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=41 y=0 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=58 y=24 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=85 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="M" +char id=78 x=41 y=34 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=12 y=36 width=9 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=50 y=21 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=10 y=79 width=9 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=41 y=23 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=58 y=12 width=7 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=13 y=11 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=40 y=47 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=13 y=22 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=25 width=12 height=10 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=22 y=44 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=20 y=70 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=49 y=45 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=81 y=0 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=56 y=56 width=7 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="\" +char id=93 x=86 y=60 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=20 y=81 width=9 height=6 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=22 y=55 width=8 height=2 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=57 y=51 width=4 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=50 y=0 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=32 y=23 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=56 y=78 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=32 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=48 y=59 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=80 y=60 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=30 y=69 width=8 height=11 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=48 y=69 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=87 y=14 width=3 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=80 y=71 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=50 y=10 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=86 y=85 width=3 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=36 width=11 height=8 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=11 y=70 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=23 y=22 width=8 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=23 y=0 width=8 height=11 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=30 y=81 width=8 height=11 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=74 y=25 width=5 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=80 y=39 width=6 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=73 y=34 width=6 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=50 y=32 width=7 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=56 y=69 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=58 width=10 height=8 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=39 y=87 width=8 height=8 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=58 y=0 width=7 height=11 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=57 y=42 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=48 y=80 width=7 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=87 y=34 width=3 height=13 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=72 y=59 width=7 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=0 y=79 width=9 height=5 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=58 y=35 width=5 height=5 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=12 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/README.md b/src/main/resources/omni_power/gdx-skins/extras/README.md new file mode 100644 index 0000000..1ae8f7f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/README.md @@ -0,0 +1,3 @@ +# Extras + +This directory contains assets that are not complete **Scene2D** skins, but might be still useful for your UI. diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/Audiowide.txt b/src/main/resources/omni_power/gdx-skins/extras/chronos/Audiowide.txt new file mode 100644 index 0000000..2e4a018 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/Audiowide.txt @@ -0,0 +1,92 @@ +Copyright (c) 2012, Brian J. Bonislawsky DBA Astigmatic (AOETI) (astigma@astigmatic.com), with Reserved Font Names "Audiowide" +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/NunitoSans.txt b/src/main/resources/omni_power/gdx-skins/extras/chronos/NunitoSans.txt new file mode 100644 index 0000000..b1551e4 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/NunitoSans.txt @@ -0,0 +1,92 @@ +Copyright 2016 The Nunito Project Authors (contact@sansoxygen.com), +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/PoiretOne.txt b/src/main/resources/omni_power/gdx-skins/extras/chronos/PoiretOne.txt new file mode 100644 index 0000000..22d8c37 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/PoiretOne.txt @@ -0,0 +1,92 @@ +Copyright (c) 2011, Denis Masharov (denis.masharov@gmail.com) +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/README.md b/src/main/resources/omni_power/gdx-skins/extras/chronos/README.md new file mode 100644 index 0000000..1436e62 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/README.md @@ -0,0 +1,23 @@ +# Chronos UI + +``` +Chronos UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2017 Raymond Buckley + +Level Plane UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of a custom clock widget. Made as a prove of concept for support of custom widgets in [Skin Composer](https://github.com/raeleus/skin-composer). + +![Chronos](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/chronos-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the font licenses (TXT files) in the directory. diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/preview.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/preview.png new file mode 100644 index 0000000..ac0f0d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/bg.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/bg.png new file mode 100644 index 0000000..b10ffa1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-bg.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-bg.png new file mode 100644 index 0000000..0d9f96a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font-export.fnt b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font-export.fnt new file mode 100644 index 0000000..2cf6f89 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font-export.fnt @@ -0,0 +1,104 @@ +info face="classic-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=120 scaleH=120 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="classic-font-export.png" +chars count=98 +char id=33 x=113 y=76 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=87 y=72 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=30 y=28 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=41 y=71 width=11 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=14 width=16 height=14 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="%" +char id=38 x=15 y=56 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="&" +char id=39 x=88 y=14 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=107 y=0 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=106 y=92 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=87 y=33 width=9 height=8 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=64 y=84 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=112 y=109 width=5 height=7 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=54 y=64 width=7 height=5 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=106 y=109 width=5 height=5 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=106 y=28 width=8 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=53 y=104 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=88 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=76 y=27 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="2" +char id=51 x=77 y=8 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="3" +char id=52 x=31 y=14 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=76 y=41 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="5" +char id=54 x=65 y=41 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="6" +char id=55 x=65 y=66 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=66 y=13 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=86 y=94 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=107 y=17 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=114 y=58 width=5 height=12 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=76 y=55 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=67 y=0 width=10 height=7 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=75 y=108 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=86 y=80 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=40 width=15 height=15 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=0 y=56 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="A" +char id=66 x=32 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=41 y=88 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=29 y=57 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=76 y=66 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="E" +char id=70 x=75 y=94 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=42 y=42 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=43 y=14 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=113 y=90 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=97 y=84 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=29 y=43 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=75 y=80 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=0 y=95 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=53 y=70 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="N" +char id=79 x=17 y=14 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=42 y=56 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=28 y=84 width=12 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=42 y=28 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=44 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=19 y=0 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=28 y=101 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=0 y=70 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=18 height=13 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="W" +char id=88 x=15 y=70 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=16 y=29 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=54 y=28 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=106 y=76 width=6 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=87 y=42 width=9 height=15 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=106 y=44 width=7 height=15 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=54 y=53 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=24 y=115 width=10 height=4 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=78 y=0 width=7 height=6 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=64 y=109 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="a" +char id=98 x=65 y=27 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=16 y=43 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=53 y=84 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=86 y=108 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=87 y=58 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="f" +char id=103 x=41 y=102 width=11 height=13 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="g" +char id=104 x=97 y=14 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=98 y=0 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=106 y=60 width=7 height=15 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=64 y=95 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="k" +char id=108 x=114 y=44 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=0 y=84 width=14 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=96 y=108 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=0 y=109 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=29 y=71 width=11 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="p" +char id=113 x=56 y=0 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=97 y=57 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=87 y=22 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="s" +char id=116 x=97 y=28 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=54 y=42 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=12 y=109 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=29 width=15 height=10 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="w" +char id=120 x=15 y=84 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=55 y=14 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=65 y=55 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="z" +char id=123 x=97 y=68 width=8 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=114 y=0 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=97 y=41 width=8 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=53 y=98 width=10 height=5 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=97 y=98 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=14 y=95 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font-export.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font-export.png new file mode 100644 index 0000000..7de816a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font.png new file mode 100644 index 0000000..601cf55 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-hour.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-hour.png new file mode 100644 index 0000000..241de3b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-hour.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-minute.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-minute.png new file mode 100644 index 0000000..eae454a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-minute.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-second.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-second.png new file mode 100644 index 0000000..160e5e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/classic-second.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-bg.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-bg.png new file mode 100644 index 0000000..d26bf33 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font-export.fnt b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font-export.fnt new file mode 100644 index 0000000..4080068 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font-export.fnt @@ -0,0 +1,104 @@ +info face="simple-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=95 scaleH=95 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="simple-font-export.png" +chars count=98 +char id=33 x=88 y=82 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=41 y=87 width=3 height=4 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=""" +char id=35 x=24 y=78 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=62 y=74 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=13 y=52 width=11 height=12 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=13 y=78 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=83 y=85 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=88 y=28 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=78 y=19 width=5 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=78 y=13 width=5 height=5 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=62 y=89 width=5 height=5 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="+" +char id=44 x=20 y=91 width=2 height=3 xoffset=0 yoffset=13 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=8 y=91 width=6 height=1 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=41 y=92 width=2 height=2 xoffset=0 yoffset=13 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=14 y=13 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=0 y=26 width=13 height=12 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=88 y=69 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=25 y=26 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=54 y=13 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=54 y=26 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=27 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=35 y=13 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=45 y=55 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=26 y=39 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=35 y=61 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=92 y=69 width=2 height=6 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=89 y=15 width=2 height=7 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter=";" +char id=60 x=77 y=88 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="<" +char id=61 x=77 y=83 width=5 height=4 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="=" +char id=62 x=35 y=87 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=54 y=39 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=65 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=13 y=65 width=11 height=12 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=71 y=13 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="B" +char id=67 x=16 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=63 y=44 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=77 y=35 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="E" +char id=70 x=71 y=35 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=35 y=74 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=25 y=13 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=92 y=76 width=1 height=12 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 letter="I" +char id=74 x=62 y=61 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=45 y=81 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=78 y=0 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=78 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=25 y=61 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=52 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=77 y=70 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="P" +char id=81 x=0 y=39 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=70 y=70 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="R" +char id=83 x=63 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=71 y=0 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=63 y=13 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=13 y=39 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=12 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=54 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=45 y=68 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=54 y=61 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=89 y=0 width=3 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=35 y=26 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=89 y=43 width=3 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=63 y=57 width=6 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=68 y=92 width=5 height=2 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter="_" +char id=96 x=15 y=91 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=45 y=46 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=45 y=33 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=63 y=35 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=45 y=9 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=37 y=0 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=84 y=47 width=4 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=36 y=39 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=70 y=57 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=89 y=58 width=3 height=10 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=83 y=34 width=4 height=12 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=78 y=48 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=84 y=0 width=4 height=12 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=25 y=52 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=46 y=0 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=54 y=52 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=45 y=22 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=36 y=50 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=78 y=61 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=71 y=48 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=84 y=58 width=4 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=63 y=26 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=54 y=85 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=14 y=26 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=71 y=26 width=6 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=54 y=74 width=7 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=70 y=83 width=6 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=84 y=13 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=92 y=15 width=2 height=12 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=83 y=70 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=0 y=91 width=7 height=2 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=74 y=92 width=2 height=2 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter="•" +char id=169 x=0 y=13 width=13 height=12 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font-export.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font-export.png new file mode 100644 index 0000000..e0ce8c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font.png new file mode 100644 index 0000000..2b57669 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-hour.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-hour.png new file mode 100644 index 0000000..ae4b7d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-hour.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-minute.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-minute.png new file mode 100644 index 0000000..acd0100 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-minute.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-second.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-second.png new file mode 100644 index 0000000..cb95382 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/simple-second.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-bg.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-bg.png new file mode 100644 index 0000000..c28e03a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font-export.fnt b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font-export.fnt new file mode 100644 index 0000000..7f131a1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font-export.fnt @@ -0,0 +1,104 @@ +info face="stylish-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=117 scaleH=119 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="stylish-font-export.png" +chars count=98 +char id=33 x=108 y=29 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=99 y=68 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=42 y=56 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=89 y=102 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=53 width=14 height=12 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=89 y=11 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=76 y=113 width=3 height=5 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=100 y=17 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=100 y=0 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=98 y=82 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=98 y=92 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=60 y=112 width=4 height=5 xoffset=0 yoffset=13 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=39 y=112 width=8 height=3 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=43 y=24 width=3 height=3 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=89 y=49 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=0 y=66 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="0" +char id=49 x=107 y=102 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=29 y=56 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=55 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=54 y=98 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=42 y=69 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=55 y=40 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="6" +char id=55 x=89 y=24 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=66 y=69 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=42 y=42 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=112 y=42 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=112 y=52 width=3 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=89 y=92 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=66 y=111 width=9 height=7 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=29 y=84 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=54 y=85 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=89 y=38 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=29 y=70 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=29 y=28 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="B" +char id=67 x=66 y=97 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=17 y=0 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=67 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=54 y=56 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=15 y=52 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="G" +char id=72 x=15 y=38 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=108 y=15 width=4 height=13 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=66 y=83 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=14 y=94 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="K" +char id=76 x=28 y=94 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=14 width=15 height=13 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=15 y=80 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=94 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=15 y=66 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="P" +char id=81 x=0 y=38 width=14 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=41 y=98 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="R" +char id=83 x=41 y=84 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=30 y=14 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=42 y=28 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=0 y=80 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=16 height=13 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=16 y=14 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=30 y=0 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Y" +char id=90 x=29 y=42 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=107 y=85 width=6 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=67 y=14 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=107 y=68 width=6 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=98 y=74 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=16 y=33 width=10 height=3 xoffset=0 yoffset=16 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=48 y=112 width=6 height=4 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=27 y=108 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=67 y=28 width=10 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=89 y=63 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=55 y=14 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="d" +char id=101 x=67 y=43 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=98 y=102 width=8 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=78 y=14 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=66 y=54 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=113 y=102 width=3 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=89 y=74 width=8 height=17 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=54 y=70 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=108 y=0 width=5 height=14 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=0 y=108 width=13 height=10 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=78 y=78 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="n" +char id=111 x=55 y=29 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=78 y=89 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=43 y=0 width=11 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="q" +char id=114 x=90 y=0 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=78 y=102 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=78 y=53 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=78 y=67 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=43 y=13 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=28 width=15 height=9 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="w" +char id=120 x=14 y=108 width=12 height=10 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="x" +char id=121 x=78 y=39 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=78 y=28 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="z" +char id=123 x=100 y=51 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=108 y=42 width=3 height=16 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=100 y=34 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=16 y=28 width=10 height=4 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=55 y=112 width=4 height=4 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=79 y=0 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font-export.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font-export.png new file mode 100644 index 0000000..21b47e4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font.png new file mode 100644 index 0000000..c9f9036 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-hour.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-hour.png new file mode 100644 index 0000000..6b9ce65 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-hour.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-minute.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-minute.png new file mode 100644 index 0000000..2c629fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-minute.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-second.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-second.png new file mode 100644 index 0000000..4ced78e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/raw/stylish-second.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.atlas b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.atlas new file mode 100644 index 0000000..24a0951 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.atlas @@ -0,0 +1,118 @@ + +chronos-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bg + rotate: false + xy: 1, 188 + size: 300, 300 + orig: 300, 300 + offset: 0, 0 + index: -1 +classic-bg + rotate: false + xy: 303, 341 + size: 147, 147 + orig: 147, 147 + offset: 0, 0 + index: -1 +classic-font-export + rotate: false + xy: 303, 219 + size: 120, 120 + orig: 120, 120 + offset: 0, 0 + index: -1 +classic-hour + rotate: false + xy: 466, 391 + size: 11, 97 + orig: 11, 97 + offset: 0, 0 + index: -1 +classic-minute + rotate: false + xy: 450, 214 + size: 8, 125 + orig: 8, 125 + offset: 0, 0 + index: -1 +classic-second + rotate: false + xy: 428, 78 + size: 3, 136 + orig: 3, 136 + offset: 0, 0 + index: -1 +simple-bg + rotate: false + xy: 150, 47 + size: 139, 139 + orig: 139, 139 + offset: 0, 0 + index: -1 +simple-font-export + rotate: false + xy: 291, 1 + size: 95, 95 + orig: 95, 95 + offset: 0, 0 + index: -1 +simple-hour + rotate: false + xy: 388, 19 + size: 4, 77 + orig: 4, 77 + offset: 0, 0 + index: -1 +simple-minute + rotate: false + xy: 422, 101 + size: 4, 113 + orig: 4, 113 + offset: 0, 0 + index: -1 +simple-second + rotate: false + xy: 433, 95 + size: 3, 119 + orig: 3, 119 + offset: 0, 0 + index: -1 +stylish-bg + rotate: false + xy: 1, 39 + size: 147, 147 + orig: 147, 147 + offset: 0, 0 + index: -1 +stylish-font-export + rotate: false + xy: 303, 98 + size: 117, 119 + orig: 117, 119 + offset: 0, 0 + index: -1 +stylish-hour + rotate: false + xy: 452, 387 + size: 12, 101 + orig: 12, 101 + offset: 0, 0 + index: -1 +stylish-minute + rotate: false + xy: 425, 216 + size: 12, 123 + orig: 12, 123 + offset: 0, 0 + index: -1 +stylish-second + rotate: false + xy: 439, 206 + size: 9, 133 + orig: 9, 133 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.json b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.json new file mode 100644 index 0000000..d1d5adf --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.json @@ -0,0 +1,65 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + classic: { + file: classic-font-export.fnt + } + simple: { + file: simple-font-export.fnt + } + stylish: { + file: stylish-font-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + red: { + r: 1 + g: 0 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.ray3k.chronosui.ClockWidget$ClockWidgetStyle: { + default: { + bg: simple-bg + minuteHand: simple-minute + secondHand: simple-second + hourHand: simple-hour + font: simple + fontColor: black + titleAbove: false + name: Default + } + classic: { + bg: classic-bg + minuteHand: classic-minute + secondHand: classic-second + hourHand: classic-hour + font: classic + fontColor: white + titleAbove: false + name: Classic + } + stylish: { + bg: stylish-bg + minuteHand: stylish-minute + secondHand: stylish-second + hourHand: stylish-hour + font: stylish + fontColor: red + titleAbove: true + name: Stylish + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.png b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.png new file mode 100644 index 0000000..6de89d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/chronos-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/classic-font-export.fnt b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/classic-font-export.fnt new file mode 100644 index 0000000..2cf6f89 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/classic-font-export.fnt @@ -0,0 +1,104 @@ +info face="classic-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=120 scaleH=120 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="classic-font-export.png" +chars count=98 +char id=33 x=113 y=76 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=87 y=72 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=30 y=28 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=41 y=71 width=11 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=14 width=16 height=14 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="%" +char id=38 x=15 y=56 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="&" +char id=39 x=88 y=14 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=107 y=0 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=106 y=92 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=87 y=33 width=9 height=8 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=64 y=84 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=112 y=109 width=5 height=7 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=54 y=64 width=7 height=5 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=106 y=109 width=5 height=5 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=106 y=28 width=8 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=53 y=104 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=88 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=76 y=27 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="2" +char id=51 x=77 y=8 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="3" +char id=52 x=31 y=14 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=76 y=41 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="5" +char id=54 x=65 y=41 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="6" +char id=55 x=65 y=66 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=66 y=13 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=86 y=94 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=107 y=17 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=114 y=58 width=5 height=12 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=76 y=55 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=67 y=0 width=10 height=7 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=75 y=108 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=86 y=80 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=40 width=15 height=15 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=0 y=56 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="A" +char id=66 x=32 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=41 y=88 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=29 y=57 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=76 y=66 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="E" +char id=70 x=75 y=94 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=42 y=42 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=43 y=14 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=113 y=90 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=97 y=84 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=29 y=43 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=75 y=80 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=0 y=95 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=53 y=70 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="N" +char id=79 x=17 y=14 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=42 y=56 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=28 y=84 width=12 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=42 y=28 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=44 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=19 y=0 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=28 y=101 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=0 y=70 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=18 height=13 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="W" +char id=88 x=15 y=70 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=16 y=29 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=54 y=28 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=106 y=76 width=6 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=87 y=42 width=9 height=15 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=106 y=44 width=7 height=15 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=54 y=53 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=24 y=115 width=10 height=4 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=78 y=0 width=7 height=6 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=64 y=109 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="a" +char id=98 x=65 y=27 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=16 y=43 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=53 y=84 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=86 y=108 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=87 y=58 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="f" +char id=103 x=41 y=102 width=11 height=13 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="g" +char id=104 x=97 y=14 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=98 y=0 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=106 y=60 width=7 height=15 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=64 y=95 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="k" +char id=108 x=114 y=44 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=0 y=84 width=14 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=96 y=108 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=0 y=109 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=29 y=71 width=11 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="p" +char id=113 x=56 y=0 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=97 y=57 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=87 y=22 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="s" +char id=116 x=97 y=28 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=54 y=42 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=12 y=109 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=29 width=15 height=10 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="w" +char id=120 x=15 y=84 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=55 y=14 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=65 y=55 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="z" +char id=123 x=97 y=68 width=8 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=114 y=0 width=4 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=97 y=41 width=8 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=53 y=98 width=10 height=5 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=97 y=98 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=14 y=95 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/simple-font-export.fnt b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/simple-font-export.fnt new file mode 100644 index 0000000..4080068 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/simple-font-export.fnt @@ -0,0 +1,104 @@ +info face="simple-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=95 scaleH=95 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="simple-font-export.png" +chars count=98 +char id=33 x=88 y=82 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=41 y=87 width=3 height=4 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=""" +char id=35 x=24 y=78 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=62 y=74 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=13 y=52 width=11 height=12 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=13 y=78 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=83 y=85 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=88 y=28 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=78 y=19 width=5 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=78 y=13 width=5 height=5 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=62 y=89 width=5 height=5 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="+" +char id=44 x=20 y=91 width=2 height=3 xoffset=0 yoffset=13 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=8 y=91 width=6 height=1 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=41 y=92 width=2 height=2 xoffset=0 yoffset=13 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=14 y=13 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=0 y=26 width=13 height=12 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=88 y=69 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=25 y=26 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=54 y=13 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=54 y=26 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=27 y=0 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=35 y=13 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=45 y=55 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=26 y=39 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=35 y=61 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=92 y=69 width=2 height=6 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=89 y=15 width=2 height=7 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter=";" +char id=60 x=77 y=88 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="<" +char id=61 x=77 y=83 width=5 height=4 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="=" +char id=62 x=35 y=87 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=54 y=39 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=65 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=13 y=65 width=11 height=12 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=71 y=13 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="B" +char id=67 x=16 y=0 width=10 height=12 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=63 y=44 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=77 y=35 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="E" +char id=70 x=71 y=35 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=35 y=74 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=25 y=13 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=92 y=76 width=1 height=12 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 letter="I" +char id=74 x=62 y=61 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=45 y=81 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=78 y=0 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=78 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=25 y=61 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=52 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=77 y=70 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="P" +char id=81 x=0 y=39 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=70 y=70 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="R" +char id=83 x=63 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=71 y=0 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=63 y=13 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=13 y=39 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=12 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=54 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=45 y=68 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=54 y=61 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=89 y=0 width=3 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=35 y=26 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=89 y=43 width=3 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=63 y=57 width=6 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=68 y=92 width=5 height=2 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter="_" +char id=96 x=15 y=91 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=45 y=46 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=45 y=33 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=63 y=35 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=45 y=9 width=8 height=12 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=37 y=0 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=84 y=47 width=4 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=36 y=39 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=70 y=57 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=89 y=58 width=3 height=10 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=83 y=34 width=4 height=12 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=78 y=48 width=5 height=12 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=84 y=0 width=4 height=12 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=25 y=52 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=46 y=0 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=54 y=52 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=45 y=22 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=36 y=50 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=78 y=61 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=71 y=48 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=84 y=58 width=4 height=10 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=63 y=26 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=54 y=85 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=14 y=26 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=71 y=26 width=6 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=54 y=74 width=7 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=70 y=83 width=6 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=84 y=13 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=92 y=15 width=2 height=12 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=83 y=70 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=0 y=91 width=7 height=2 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=74 y=92 width=2 height=2 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter="•" +char id=169 x=0 y=13 width=13 height=12 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/stylish-font-export.fnt b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/stylish-font-export.fnt new file mode 100644 index 0000000..7f131a1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/chronos/skin/stylish-font-export.fnt @@ -0,0 +1,104 @@ +info face="stylish-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=117 scaleH=119 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="stylish-font-export.png" +chars count=98 +char id=33 x=108 y=29 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=99 y=68 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=42 y=56 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=89 y=102 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=53 width=14 height=12 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=89 y=11 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=76 y=113 width=3 height=5 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=100 y=17 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=100 y=0 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=98 y=82 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=98 y=92 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=60 y=112 width=4 height=5 xoffset=0 yoffset=13 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=39 y=112 width=8 height=3 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=43 y=24 width=3 height=3 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=89 y=49 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=0 y=66 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="0" +char id=49 x=107 y=102 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=29 y=56 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=55 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=54 y=98 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=42 y=69 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=55 y=40 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="6" +char id=55 x=89 y=24 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=66 y=69 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=42 y=42 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=112 y=42 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=112 y=52 width=3 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=89 y=92 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=66 y=111 width=9 height=7 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=29 y=84 width=8 height=9 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=54 y=85 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=89 y=38 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=29 y=70 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=29 y=28 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="B" +char id=67 x=66 y=97 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=17 y=0 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=67 y=0 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=54 y=56 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=15 y=52 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="G" +char id=72 x=15 y=38 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=108 y=15 width=4 height=13 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=66 y=83 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=14 y=94 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="K" +char id=76 x=28 y=94 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=14 width=15 height=13 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=15 y=80 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=94 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=15 y=66 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="P" +char id=81 x=0 y=38 width=14 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=41 y=98 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="R" +char id=83 x=41 y=84 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=30 y=14 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=42 y=28 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=0 y=80 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=16 height=13 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=16 y=14 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=30 y=0 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Y" +char id=90 x=29 y=42 width=12 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=107 y=85 width=6 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=67 y=14 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=107 y=68 width=6 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=98 y=74 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=16 y=33 width=10 height=3 xoffset=0 yoffset=16 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=48 y=112 width=6 height=4 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=27 y=108 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=67 y=28 width=10 height=14 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=89 y=63 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=55 y=14 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="d" +char id=101 x=67 y=43 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=98 y=102 width=8 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=78 y=14 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=66 y=54 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=113 y=102 width=3 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=89 y=74 width=8 height=17 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=54 y=70 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=108 y=0 width=5 height=14 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=0 y=108 width=13 height=10 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=78 y=78 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="n" +char id=111 x=55 y=29 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=78 y=89 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=43 y=0 width=11 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="q" +char id=114 x=90 y=0 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=78 y=102 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=78 y=53 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=78 y=67 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=43 y=13 width=11 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=28 width=15 height=9 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="w" +char id=120 x=14 y=108 width=12 height=10 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="x" +char id=121 x=78 y=39 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=78 y=28 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="z" +char id=123 x=100 y=51 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=108 y=42 width=3 height=16 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=100 y=34 width=7 height=16 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=16 y=28 width=10 height=4 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=55 y=112 width=4 height=4 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=79 y=0 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/README.md b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/README.md new file mode 100644 index 0000000..904a53a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/README.md @@ -0,0 +1,10 @@ +# Kenney assets + +This directory includes some UI assets created by the famous [Kenney](http://kenney.nl/), modified to match LibGDX needs. Note that it does **not** contain a JSON file with predefined style descriptions - but the included atlases might be useful nonetheless, as you can check available drawables' names in `.atlas` files and construct styles at runtime. + +![Kenney](preview.png) + +This is basically a collection of texture atlases. + +### License +[CC0](https://creativecommons.org/publicdomain/zero/1.0/). [Kenney](http://kenney.nl/) is the original author of the assets, while [Haedri](http://www.microbasic.net/2014/05/free-cc0-ui-elements-to-be-used-in-your-libgdx-games/) prepared the atlases. diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/preview.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/preview.png new file mode 100644 index 0000000..55f3b08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-blue.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-blue.atlas new file mode 100644 index 0000000..6297a1d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-blue.atlas @@ -0,0 +1,365 @@ + +ui-blue.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 576, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 620, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 1014, 118 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 1014, 108 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 1014, 98 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 664, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 698, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 732, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 766, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 800, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 834, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 868, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 902, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 936, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 970, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 376, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 416, 58 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 484, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 508, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 532, 70 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 566, 70 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 410, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 450, 60 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 580, 82 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 1004, 94 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 444, 30 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-blue.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-blue.png new file mode 100644 index 0000000..5bf6df5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-blue.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-commons.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-commons.atlas new file mode 100644 index 0000000..4c29a35 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-commons.atlas @@ -0,0 +1,84 @@ + +ui-commons.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +icon_closewindow + rotate: false + xy: 2, 2 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-10 + rotate: false + xy: 36, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-20 + rotate: false + xy: 70, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-30 + rotate: false + xy: 104, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-40 + rotate: false + xy: 138, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-50 + rotate: false + xy: 172, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-60 + rotate: false + xy: 206, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-70 + rotate: false + xy: 240, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-80 + rotate: false + xy: 274, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 +transparent-black-90 + rotate: false + xy: 308, 2 + size: 32, 32 + split: 1, 1, 1, 1 + orig: 32, 32 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-commons.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-commons.png new file mode 100644 index 0000000..6ab611d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-commons.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-gray.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-gray.atlas new file mode 100644 index 0000000..42ae423 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-gray.atlas @@ -0,0 +1,365 @@ + +ui-gray.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 576, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 620, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 1014, 118 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 1014, 108 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 1014, 98 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 664, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 698, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 732, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 766, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 800, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 834, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 868, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 902, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 936, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 970, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 376, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 416, 58 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 484, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 508, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 532, 70 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 566, 70 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 410, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 450, 60 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 580, 82 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 1004, 94 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 444, 30 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-gray.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-gray.png new file mode 100644 index 0000000..d4adfb3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-gray.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-green.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-green.atlas new file mode 100644 index 0000000..c0fa7bb --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-green.atlas @@ -0,0 +1,365 @@ + +ui-green.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 576, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 620, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 1014, 118 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 1014, 108 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 1014, 98 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 664, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 698, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 732, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 766, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 800, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 834, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 868, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 902, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 936, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 970, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 376, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 416, 58 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 484, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 508, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 532, 70 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 566, 70 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 410, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 450, 60 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 580, 82 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 1004, 94 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 444, 30 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-green.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-green.png new file mode 100644 index 0000000..8fa4ea3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-green.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-orange.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-orange.atlas new file mode 100644 index 0000000..c31468d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-orange.atlas @@ -0,0 +1,365 @@ + +ui-orange.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 576, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 620, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 1014, 118 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 1014, 108 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 1014, 98 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 664, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 698, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 732, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 766, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 800, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 834, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 868, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 902, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 936, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 970, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 376, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 416, 58 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 484, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 508, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 532, 70 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 566, 70 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 410, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 450, 60 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 580, 82 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 1004, 94 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 444, 30 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-orange.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-orange.png new file mode 100644 index 0000000..4c4ffd7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-orange.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-red.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-red.atlas new file mode 100644 index 0000000..0cc0280 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-red.atlas @@ -0,0 +1,365 @@ + +ui-red.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 576, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 620, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 1014, 118 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 1014, 108 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 1014, 98 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 664, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 698, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 732, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 766, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 800, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 834, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 868, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 902, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 936, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 970, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 376, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 416, 58 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 484, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 508, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 532, 70 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 566, 70 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 410, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 450, 60 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 580, 82 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 1004, 94 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 444, 30 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-red.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-red.png new file mode 100644 index 0000000..30e923b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-red.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-white.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-white.atlas new file mode 100644 index 0000000..3c16f4b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-white.atlas @@ -0,0 +1,365 @@ + +ui-white.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 138, 2 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 148, 2 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 158, 2 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 576, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 610, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 644, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 678, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 712, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 746, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 780, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 814, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 848, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 882, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 916, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 950, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 984, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 416, 58 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 376, 24 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 400, 34 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 434, 34 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 138, 12 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 440, 58 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 1018, 100 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-white.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-white.png new file mode 100644 index 0000000..4723895 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-yellow.atlas b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-yellow.atlas new file mode 100644 index 0000000..7401c17 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-yellow.atlas @@ -0,0 +1,365 @@ + +ui-yellow.png +format: RGBA8888 +filter: Linear,Linear +repeat: none +button_01 + rotate: false + xy: 444, 94 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_02 + rotate: false + xy: 306, 58 + size: 64, 32 + split: 6, 6, 6, 6 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_03 + rotate: false + xy: 174, 25 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_04 + rotate: false + xy: 240, 55 + size: 64, 35 + split: 6, 6, 6, 9 + orig: 64, 35 + offset: 0, 0 + index: -1 +button_05 + rotate: false + xy: 510, 94 + size: 64, 32 + split: 9, 9, 9, 9 + orig: 64, 32 + offset: 0, 0 + index: -1 +button_06 + rotate: false + xy: 2, 18 + size: 64, 40 + split: 17, 17, 17, 17 + pad: 8, 8, 6, 6 + orig: 64, 40 + offset: 0, 0 + index: -1 +button_cross + rotate: false + xy: 68, 26 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +checkbox_cross + rotate: false + xy: 372, 58 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_off + rotate: false + xy: 576, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +checkbox_on + rotate: false + xy: 620, 94 + size: 42, 32 + orig: 42, 32 + offset: 0, 0 + index: -1 +color_basetext + rotate: false + xy: 1014, 118 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_lightwidgettext + rotate: false + xy: 1014, 108 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +color_widgettext + rotate: false + xy: 1014, 98 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 +combobox_button + rotate: false + xy: 664, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_down + rotate: false + xy: 698, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_left + rotate: false + xy: 732, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_right + rotate: false + xy: 766, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_arrow_up + rotate: false + xy: 800, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_back + rotate: false + xy: 834, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_check + rotate: false + xy: 868, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_circle + rotate: false + xy: 902, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_cross + rotate: false + xy: 936, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_music + rotate: false + xy: 970, 94 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_pause + rotate: false + xy: 240, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_play + rotate: false + xy: 274, 21 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_off + rotate: false + xy: 308, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_sound_on + rotate: false + xy: 342, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_star + rotate: false + xy: 376, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +icon_tools + rotate: false + xy: 416, 58 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +knob_01 + rotate: false + xy: 484, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_02 + rotate: false + xy: 68, 2 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_03 + rotate: false + xy: 508, 60 + size: 22, 32 + orig: 22, 32 + offset: 0, 0 + index: -1 +knob_04 + rotate: false + xy: 532, 70 + size: 32, 22 + orig: 32, 22 + offset: 0, 0 + index: -1 +knob_05 + rotate: false + xy: 566, 70 + size: 12, 22 + split: 5, 5, 6, 6 + orig: 12, 22 + offset: 0, 0 + index: -1 +knob_06 + rotate: false + xy: 114, 10 + size: 22, 12 + split: 6, 6, 5, 5 + orig: 22, 12 + offset: 0, 0 + index: -1 +radiobox_off + rotate: false + xy: 410, 24 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +radiobox_on + rotate: false + xy: 450, 60 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scroll_back_hor + rotate: false + xy: 580, 82 + size: 20, 10 + split: 4, 4, 3, 3 + orig: 20, 10 + offset: 0, 0 + index: -1 +scroll_back_ver + rotate: false + xy: 102, 2 + size: 10, 20 + split: 3, 3, 4, 4 + orig: 10, 20 + offset: 0, 0 + index: -1 +selectbox_01 + rotate: false + xy: 240, 92 + size: 66, 34 + split: 7, 30, 9, 21 + pad: 7, 30, 6, 8 + orig: 66, 34 + offset: 0, 0 + index: -1 +slider_back_hor + rotate: false + xy: 2, 8 + size: 32, 8 + split: 8, 8, 3, 3 + orig: 32, 8 + offset: 0, 0 + index: -1 +slider_back_ver + rotate: false + xy: 1004, 94 + size: 8, 32 + split: 3, 3, 8, 8 + orig: 8, 32 + offset: 0, 0 + index: -1 +textbox_01 + rotate: false + xy: 308, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_02 + rotate: false + xy: 376, 92 + size: 66, 34 + split: 7, 7, 7, 7 + orig: 66, 34 + offset: 0, 0 + index: -1 +textbox_cursor_02 + rotate: false + xy: 444, 30 + size: 2, 26 + split: 0, 1, 0, 0 + orig: 2, 26 + offset: 0, 0 + index: -1 +window_01 + rotate: false + xy: 108, 24 + size: 64, 102 + split: 6, 6, 46, 6 + pad: 4, 4, 4, 62 + orig: 64, 102 + offset: 0, 0 + index: -1 +window_02 + rotate: false + xy: 2, 60 + size: 104, 66 + split: 49, 49, 34, 11 + pad: 49, 49, 4, 38 + orig: 104, 66 + offset: 0, 0 + index: -1 +window_03 + rotate: false + xy: 174, 62 + size: 64, 64 + split: 17, 16, 42, 17 + pad: 4, 4, 4, 28 + orig: 64, 64 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-yellow.png b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-yellow.png new file mode 100644 index 0000000..a377a5f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/extras/kenney-atlas/skin/ui-yellow.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/README.md b/src/main/resources/omni_power/gdx-skins/flat-earth/README.md new file mode 100644 index 0000000..6c94e0f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/README.md @@ -0,0 +1,22 @@ +# Flat Earth UI + +``` +Flat Earth UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Flat Earth UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Flat design GUI recolorable through JSON color parameters. + +![Flat Earth](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/flat-earth-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/preview.png b/src/main/resources/omni_power/gdx-skins/flat-earth/preview.png new file mode 100644 index 0000000..58cedd8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-close.png new file mode 100644 index 0000000..07558e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-pressed.9.png new file mode 100644 index 0000000..250583b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-pressed.png new file mode 100644 index 0000000..0356db8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button.9.png new file mode 100644 index 0000000..0de6851 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button.png new file mode 100644 index 0000000..8bdcfe3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/checkbox-pressed.png new file mode 100644 index 0000000..dcf21bf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/checkbox.png new file mode 100644 index 0000000..2c79dec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/earth.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/earth.png new file mode 100644 index 0000000..f52661f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/earth.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button-export.fnt new file mode 100644 index 0000000..53ec0d0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button-export.fnt @@ -0,0 +1,733 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=23 base=23 scaleW=139 scaleH=139 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=134 y=101 width=3 height=19 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=120 y=127 width=5 height=5 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=22 y=21 width=14 height=12 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=90 y=79 width=11 height=22 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="$" +char id=37 x=65 y=73 width=12 height=19 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=37 y=61 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=126 y=127 width=2 height=4 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=130 y=0 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=129 y=101 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=102 y=129 width=8 height=9 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=65 y=93 width=8 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=123 y=133 width=4 height=5 xoffset=0 yoffset=20 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=42 y=135 width=6 height=3 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=49 y=135 width=3 height=3 xoffset=0 yoffset=20 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=122 y=0 width=7 height=20 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=23 y=0 width=14 height=20 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="0" +char id=49 x=129 y=81 width=5 height=19 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=79 y=0 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="2" +char id=51 x=91 y=0 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="3" +char id=52 x=37 y=41 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="4" +char id=53 x=51 y=81 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=36 y=82 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="6" +char id=55 x=37 y=21 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="7" +char id=56 x=90 y=102 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=34 y=112 width=14 height=20 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="9" +char id=58 x=74 y=62 width=3 height=10 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=129 y=123 width=3 height=12 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=36 y=102 width=7 height=9 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=34 y=133 width=7 height=5 xoffset=0 yoffset=13 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=66 y=62 width=7 height=8 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=79 y=21 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=20 y=82 width=15 height=14 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="@" +char id=65 x=17 y=118 width=16 height=20 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=63 y=101 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=20 y=61 width=16 height=20 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=0 letter="C" +char id=68 x=21 y=40 width=15 height=19 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=103 y=20 width=10 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="E" +char id=70 x=113 y=74 width=9 height=19 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=0 y=40 width=20 height=20 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 letter="G" +char id=72 x=52 y=13 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="H" +char id=73 x=135 y=63 width=2 height=19 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=122 y=107 width=6 height=19 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=77 y=93 width=12 height=19 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=114 y=0 width=7 height=19 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=22 height=20 xoffset=0 yoffset=3 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=0 y=118 width=16 height=19 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=0 y=84 width=19 height=20 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=0 letter="O" +char id=80 x=103 y=0 width=10 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=0 y=61 width=19 height=22 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=91 y=38 width=11 height=19 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="R" +char id=83 x=77 y=113 width=12 height=20 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="S" +char id=84 x=102 y=75 width=10 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=79 y=42 width=11 height=19 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="U" +char id=86 x=49 y=102 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="V" +char id=87 x=0 y=21 width=21 height=18 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="W" +char id=88 x=52 y=53 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="X" +char id=89 x=66 y=42 width=12 height=19 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="Y" +char id=90 x=52 y=33 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=130 y=44 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=114 y=20 width=7 height=19 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=130 y=22 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=103 y=66 width=7 height=8 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=18 y=112 width=11 height=2 xoffset=0 yoffset=26 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=111 y=133 width=5 height=5 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=78 y=79 width=11 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=66 y=21 width=12 height=20 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="b" +char id=99 x=103 y=40 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=66 y=0 width=12 height=20 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=53 y=0 width=12 height=12 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="e" +char id=102 x=123 y=43 width=6 height=20 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=91 y=21 width=11 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=102 y=95 width=10 height=20 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=133 y=123 width=3 height=15 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=135 y=0 width=3 height=19 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=113 y=40 width=9 height=20 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=135 y=42 width=2 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=38 y=0 width=14 height=12 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="m" +char id=110 x=113 y=94 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=49 y=122 width=12 height=12 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=62 y=122 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=78 y=62 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="q" +char id=114 x=113 y=120 width=6 height=12 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=113 y=107 width=8 height=12 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=123 y=64 width=6 height=16 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=103 y=53 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=90 y=123 width=11 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=105 width=17 height=12 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=113 y=61 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=91 y=58 width=11 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=102 y=116 width=10 height=12 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="z" +char id=123 x=123 y=21 width=6 height=21 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=135 y=20 width=2 height=21 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=123 y=81 width=5 height=21 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=22 y=34 width=10 height=4 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="~" +char id=8226 x=117 y=133 width=5 height=5 xoffset=0 yoffset=11 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=20 y=97 width=15 height=14 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=629 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-3 +kerning first=65 second=71 amount=-4 +kerning first=65 second=79 amount=-3 +kerning first=65 second=81 amount=-3 +kerning first=65 second=84 amount=-4 +kerning first=65 second=85 amount=-3 +kerning first=65 second=86 amount=-7 +kerning first=65 second=87 amount=-6 +kerning first=65 second=89 amount=-6 +kerning first=66 second=65 amount=-3 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-5 +kerning first=66 second=87 amount=-4 +kerning first=66 second=89 amount=-5 +kerning first=67 second=65 amount=-2 +kerning first=67 second=79 amount=-3 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-3 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-2 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-4 +kerning first=68 second=87 amount=-3 +kerning first=68 second=89 amount=-4 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-5 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-4 +kerning first=70 second=44 amount=-5 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-5 +kerning first=76 second=39 amount=-3 +kerning first=76 second=67 amount=-4 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-6 +kerning first=76 second=87 amount=-6 +kerning first=76 second=89 amount=-6 +kerning first=76 second=71 amount=-4 +kerning first=76 second=79 amount=-4 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=77 second=79 amount=-2 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-2 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-4 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-3 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-4 +kerning first=79 second=89 amount=-4 +kerning first=80 second=65 amount=-6 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-2 +kerning first=80 second=46 amount=-4 +kerning first=80 second=44 amount=-5 +kerning first=80 second=59 amount=-4 +kerning first=80 second=58 amount=-4 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-3 +kerning first=82 second=89 amount=-3 +kerning first=82 second=84 amount=-4 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-3 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-3 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-3 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-5 +kerning first=84 second=67 amount=-5 +kerning first=84 second=79 amount=-5 +kerning first=85 second=65 amount=-2 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-6 +kerning first=86 second=67 amount=-3 +kerning first=86 second=71 amount=-3 +kerning first=86 second=79 amount=-3 +kerning first=86 second=83 amount=-3 +kerning first=87 second=65 amount=-6 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-3 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-6 +kerning first=89 second=67 amount=-4 +kerning first=89 second=79 amount=-4 +kerning first=89 second=83 amount=-3 +kerning first=90 second=79 amount=-4 +kerning first=65 second=99 amount=-3 +kerning first=65 second=100 amount=-3 +kerning first=65 second=101 amount=-3 +kerning first=65 second=103 amount=-3 +kerning first=65 second=111 amount=-3 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-3 +kerning first=65 second=116 amount=-3 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-5 +kerning first=65 second=119 amount=-5 +kerning first=65 second=121 amount=-5 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-2 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-3 +kerning first=66 second=46 amount=-4 +kerning first=66 second=44 amount=-5 +kerning first=67 second=97 amount=-2 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-2 +kerning first=67 second=44 amount=-3 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-4 +kerning first=68 second=44 amount=-5 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-4 +kerning first=70 second=101 amount=-4 +kerning first=70 second=105 amount=-2 +kerning first=70 second=111 amount=-4 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-4 +kerning first=70 second=44 amount=-5 +kerning first=70 second=59 amount=-4 +kerning first=70 second=58 amount=-4 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-3 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-5 +kerning first=77 second=97 amount=-2 +kerning first=77 second=99 amount=-2 +kerning first=77 second=100 amount=-2 +kerning first=77 second=101 amount=-2 +kerning first=77 second=111 amount=-2 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-4 +kerning first=79 second=44 amount=-5 +kerning first=80 second=97 amount=-5 +kerning first=80 second=101 amount=-5 +kerning first=80 second=111 amount=-5 +kerning first=82 second=100 amount=-4 +kerning first=82 second=101 amount=-3 +kerning first=82 second=111 amount=-3 +kerning first=82 second=116 amount=-3 +kerning first=82 second=117 amount=-2 +kerning first=83 second=105 amount=-2 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-3 +kerning first=83 second=44 amount=-4 +kerning first=84 second=97 amount=-5 +kerning first=84 second=99 amount=-5 +kerning first=84 second=101 amount=-5 +kerning first=84 second=105 amount=-4 +kerning first=84 second=111 amount=-5 +kerning first=84 second=114 amount=-5 +kerning first=84 second=115 amount=-5 +kerning first=84 second=117 amount=-5 +kerning first=84 second=119 amount=-5 +kerning first=84 second=121 amount=-5 +kerning first=84 second=46 amount=-4 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-4 +kerning first=84 second=58 amount=-4 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-3 +kerning first=85 second=44 amount=-4 +kerning first=86 second=97 amount=-5 +kerning first=86 second=101 amount=-5 +kerning first=86 second=105 amount=-2 +kerning first=86 second=111 amount=-5 +kerning first=86 second=114 amount=-3 +kerning first=86 second=117 amount=-3 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-5 +kerning first=86 second=59 amount=-4 +kerning first=86 second=58 amount=-4 +kerning first=87 second=100 amount=-5 +kerning first=87 second=105 amount=-2 +kerning first=87 second=109 amount=-3 +kerning first=87 second=114 amount=-3 +kerning first=87 second=116 amount=-3 +kerning first=87 second=117 amount=-3 +kerning first=87 second=121 amount=-3 +kerning first=87 second=46 amount=-4 +kerning first=87 second=44 amount=-5 +kerning first=87 second=59 amount=-4 +kerning first=87 second=58 amount=-4 +kerning first=88 second=97 amount=-3 +kerning first=88 second=101 amount=-3 +kerning first=88 second=111 amount=-3 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-5 +kerning first=89 second=100 amount=-6 +kerning first=89 second=101 amount=-6 +kerning first=89 second=105 amount=-3 +kerning first=89 second=112 amount=-5 +kerning first=89 second=117 amount=-5 +kerning first=89 second=118 amount=-5 +kerning first=89 second=46 amount=-4 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-4 +kerning first=89 second=58 amount=-4 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-3 +kerning first=98 second=46 amount=-4 +kerning first=98 second=44 amount=-5 +kerning first=99 second=97 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-2 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-2 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-3 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-3 +kerning first=101 second=119 amount=-3 +kerning first=101 second=121 amount=-3 +kerning first=101 second=46 amount=-4 +kerning first=101 second=44 amount=-5 +kerning first=102 second=97 amount=-3 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-2 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-3 +kerning first=102 second=46 amount=-3 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-3 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-3 +kerning first=104 second=119 amount=-3 +kerning first=104 second=121 amount=-3 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-3 +kerning first=107 second=99 amount=-3 +kerning first=107 second=100 amount=-4 +kerning first=107 second=101 amount=-3 +kerning first=107 second=103 amount=-3 +kerning first=107 second=111 amount=-3 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-3 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-3 +kerning first=109 second=121 amount=-3 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-3 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-3 +kerning first=110 second=119 amount=-3 +kerning first=110 second=121 amount=-3 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-2 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-3 +kerning first=111 second=119 amount=-3 +kerning first=111 second=120 amount=-3 +kerning first=111 second=121 amount=-3 +kerning first=111 second=46 amount=-4 +kerning first=111 second=44 amount=-5 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-2 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-3 +kerning first=112 second=44 amount=-4 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-3 +kerning first=114 second=97 amount=-3 +kerning first=114 second=100 amount=-3 +kerning first=114 second=101 amount=-3 +kerning first=114 second=103 amount=-3 +kerning first=114 second=107 amount=-2 +kerning first=114 second=108 amount=-2 +kerning first=114 second=109 amount=-2 +kerning first=114 second=110 amount=-2 +kerning first=114 second=111 amount=-3 +kerning first=114 second=113 amount=-3 +kerning first=114 second=114 amount=-2 +kerning first=114 second=116 amount=-2 +kerning first=114 second=118 amount=-2 +kerning first=114 second=121 amount=-2 +kerning first=114 second=46 amount=-5 +kerning first=114 second=44 amount=-6 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-3 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-2 +kerning first=115 second=44 amount=-3 +kerning first=116 second=100 amount=-3 +kerning first=116 second=97 amount=-3 +kerning first=116 second=101 amount=-3 +kerning first=116 second=111 amount=-3 +kerning first=116 second=46 amount=-3 +kerning first=116 second=44 amount=-4 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-3 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-3 +kerning first=118 second=100 amount=-3 +kerning first=118 second=101 amount=-3 +kerning first=118 second=103 amount=-3 +kerning first=118 second=111 amount=-3 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-4 +kerning first=118 second=44 amount=-5 +kerning first=119 second=97 amount=-2 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-3 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-2 +kerning first=119 second=46 amount=-4 +kerning first=119 second=44 amount=-5 +kerning first=120 second=97 amount=-3 +kerning first=120 second=101 amount=-3 +kerning first=120 second=111 amount=-3 +kerning first=121 second=46 amount=-4 +kerning first=121 second=44 amount=-5 +kerning first=121 second=97 amount=-3 +kerning first=121 second=99 amount=-3 +kerning first=121 second=100 amount=-3 +kerning first=121 second=101 amount=-3 +kerning first=121 second=111 amount=-3 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-3 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-2 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-2 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-2 +kerning first=102 second=103 amount=-3 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=101 second=115 amount=-2 +kerning first=101 second=102 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-2 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-2 +kerning first=88 second=89 amount=-2 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-3 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-3 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-2 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-6 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-2 +kerning first=116 second=115 amount=-3 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-2 +kerning first=111 second=116 amount=-3 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-3 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-3 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-2 +kerning first=98 second=106 amount=-2 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-4 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-3 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-2 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-2 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=87 second=101 amount=-4 +kerning first=99 second=105 amount=-2 +kerning first=115 second=115 amount=-1 +kerning first=82 second=105 amount=-2 +kerning first=112 second=101 amount=-1 +kerning first=114 second=116 amount=-2 +kerning first=116 second=116 amount=-1 +kerning first=108 second=116 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=114 second=105 amount=-3 +kerning first=97 second=115 amount=-1 +kerning first=115 second=101 amount=-1 +kerning first=101 second=115 amount=-2 +kerning first=111 second=100 amount=-1 +kerning first=107 second=115 amount=-2 +kerning first=77 second=117 amount=-1 +kerning first=65 second=115 amount=-2 +kerning first=98 second=111 amount=-1 +kerning first=112 second=101 amount=-1 +kerning first=114 second=117 amount=-2 +kerning first=69 second=120 amount=-1 +kerning first=120 second=112 amount=-1 +kerning first=117 second=98 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button-export.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button-export.png new file mode 100644 index 0000000..3818266 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button.png new file mode 100644 index 0000000..956fe87 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-export.fnt new file mode 100644 index 0000000..3ff94ca --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=88 scaleH=88 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=77 y=0 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=71 y=83 width=3 height=4 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=""" +char id=35 x=12 y=49 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=46 y=74 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=33 y=13 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="%" +char id=38 x=12 y=26 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=66 y=57 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=81 y=19 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=84 y=45 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter=")" +char id=42 x=63 y=51 width=5 height=5 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=76 y=32 width=4 height=5 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="+" +char id=44 x=63 y=57 width=2 height=4 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=39 y=74 width=4 height=2 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=67 y=85 width=3 height=2 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=70 y=26 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=21 y=49 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=80 y=72 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=39 y=39 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=34 y=0 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=21 y=62 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=25 y=0 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=31 y=26 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=22 y=26 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=40 y=26 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=24 y=13 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=84 y=70 width=2 height=7 xoffset=0 yoffset=7 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=81 y=0 width=3 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=76 y=26 width=4 height=5 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="<" +char id=61 x=55 y=70 width=5 height=3 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="=" +char id=62 x=64 y=13 width=5 height=5 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=63 y=38 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=11 y=79 width=9 height=8 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="@" +char id=65 x=11 y=66 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=48 y=23 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=0 y=74 width=10 height=12 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=15 y=0 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=64 y=0 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=69 y=51 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=0 y=53 width=11 height=12 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=30 y=39 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=85 y=26 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=75 y=71 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=47 y=61 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=69 y=64 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=14 height=12 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=14 y=13 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=40 width=11 height=12 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=55 y=36 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=26 width=11 height=13 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=56 y=23 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="R" +char id=83 x=55 y=49 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=62 y=62 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=54 y=74 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=21 y=74 width=8 height=11 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=13 width=13 height=12 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=30 y=52 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=47 y=48 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=30 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=80 y=46 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=70 y=13 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="\" +char id=93 x=80 y=59 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=69 y=77 width=5 height=5 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=21 y=86 width=7 height=1 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=62 y=84 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=22 y=39 width=7 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=39 y=52 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=63 y=29 width=6 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=49 y=10 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=47 y=39 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=76 y=13 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=41 y=13 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=57 y=0 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=81 y=9 width=3 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=84 y=58 width=2 height=11 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="j" +char id=107 x=71 y=0 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=85 y=0 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=12 y=58 width=8 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="m" +char id=110 x=50 y=0 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=39 y=65 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=38 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=30 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=76 y=38 width=4 height=7 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="r" +char id=115 x=70 y=39 width=5 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=75 y=60 width=4 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=63 y=21 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=55 y=62 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=0 y=66 width=10 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=57 y=13 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=42 y=0 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=62 y=75 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=81 y=32 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="{" +char id=124 x=85 y=13 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=75 y=47 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=41 y=23 width=6 height=2 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=70 y=47 width=4 height=3 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=12 y=39 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-export.png new file mode 100644 index 0000000..e8ef3be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title-export.fnt new file mode 100644 index 0000000..9ba707e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=37 base=37 scaleW=247 scaleH=249 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=223 y=112 width=10 height=27 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="!" +char id=34 x=142 y=234 width=20 height=14 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter=""" +char id=35 x=117 y=54 width=25 height=27 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="#" +char id=36 x=68 y=28 width=26 height=34 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0 letter="$" +char id=37 x=90 y=131 width=26 height=27 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=0 letter="%" +char id=38 x=166 y=48 width=20 height=18 xoffset=0 yoffset=19 xadvance=23 page=0 chnl=0 letter="&" +char id=39 x=206 y=235 width=12 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="'" +char id=40 x=235 y=0 width=11 height=43 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="(" +char id=41 x=223 y=26 width=11 height=43 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=206 y=192 width=16 height=15 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=153 y=0 width=20 height=18 xoffset=0 yoffset=19 xadvance=23 page=0 chnl=0 letter="+" +char id=44 x=163 y=234 width=12 height=14 xoffset=0 yoffset=30 xadvance=15 page=0 chnl=0 letter="," +char id=45 x=0 y=231 width=15 height=5 xoffset=0 yoffset=25 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=176 y=234 width=10 height=9 xoffset=0 yoffset=28 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=188 y=150 width=18 height=41 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="/" +char id=48 x=142 y=182 width=23 height=25 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="0" +char id=49 x=207 y=123 width=15 height=25 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="1" +char id=50 x=142 y=208 width=22 height=25 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="2" +char id=51 x=165 y=208 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="3" +char id=52 x=166 y=149 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=166 y=122 width=21 height=26 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=166 y=175 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=143 y=70 width=22 height=25 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="7" +char id=56 x=165 y=96 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="8" +char id=57 x=146 y=21 width=21 height=26 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="9" +char id=58 x=234 y=112 width=10 height=19 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter=":" +char id=59 x=213 y=0 width=13 height=25 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=0 letter=";" +char id=60 x=187 y=71 width=20 height=23 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="<" +char id=61 x=174 y=0 width=20 height=15 xoffset=0 yoffset=20 xadvance=23 page=0 chnl=0 letter="=" +char id=62 x=168 y=19 width=20 height=23 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter=">" +char id=63 x=187 y=43 width=20 height=27 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="?" +char id=64 x=103 y=0 width=25 height=23 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="@" +char id=65 x=31 y=148 width=30 height=27 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="A" +char id=66 x=62 y=185 width=27 height=26 xoffset=0 yoffset=11 xadvance=30 page=0 chnl=0 letter="B" +char id=67 x=62 y=212 width=27 height=27 xoffset=0 yoffset=10 xadvance=30 page=0 chnl=0 letter="C" +char id=68 x=90 y=215 width=25 height=26 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="D" +char id=69 x=117 y=157 width=24 height=26 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0 letter="E" +char id=70 x=117 y=184 width=24 height=26 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0 letter="F" +char id=71 x=62 y=74 width=28 height=27 xoffset=0 yoffset=10 xadvance=31 page=0 chnl=0 letter="G" +char id=72 x=0 y=204 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="H" +char id=73 x=206 y=208 width=15 height=26 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="I" +char id=74 x=188 y=95 width=18 height=34 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 letter="J" +char id=75 x=0 y=177 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="K" +char id=76 x=121 y=24 width=24 height=26 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0 letter="L" +char id=77 x=0 y=66 width=37 height=26 xoffset=0 yoffset=11 xadvance=40 page=0 chnl=0 letter="M" +char id=78 x=0 y=150 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="N" +char id=79 x=62 y=102 width=28 height=28 xoffset=0 yoffset=10 xadvance=31 page=0 chnl=0 letter="O" +char id=80 x=90 y=188 width=26 height=26 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=0 letter="P" +char id=81 x=0 y=121 width=30 height=28 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="Q" +char id=82 x=46 y=0 width=29 height=27 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="R" +char id=83 x=90 y=159 width=26 height=28 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 letter="S" +char id=84 x=76 y=0 width=26 height=26 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=0 y=93 width=31 height=27 xoffset=0 yoffset=11 xadvance=34 page=0 chnl=0 letter="U" +char id=86 x=31 y=121 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="V" +char id=87 x=0 y=20 width=40 height=26 xoffset=0 yoffset=11 xadvance=43 page=0 chnl=0 letter="W" +char id=88 x=62 y=158 width=27 height=26 xoffset=0 yoffset=11 xadvance=30 page=0 chnl=0 letter="X" +char id=89 x=62 y=131 width=27 height=26 xoffset=0 yoffset=11 xadvance=30 page=0 chnl=0 letter="Y" +char id=90 x=38 y=47 width=29 height=26 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter="Z" +char id=91 x=222 y=149 width=13 height=41 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="[" +char id=92 x=187 y=201 width=18 height=41 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="\" +char id=93 x=223 y=191 width=13 height=41 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="]" +char id=94 x=117 y=137 width=24 height=19 xoffset=0 yoffset=19 xadvance=27 page=0 chnl=0 letter="^" +char id=95 x=0 y=243 width=22 height=5 xoffset=0 yoffset=32 xadvance=25 page=0 chnl=0 letter="_" +char id=96 x=227 y=0 width=7 height=6 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="`" +char id=97 x=129 y=0 width=23 height=20 xoffset=0 yoffset=17 xadvance=26 page=0 chnl=0 letter="a" +char id=98 x=117 y=82 width=25 height=26 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="b" +char id=99 x=166 y=67 width=20 height=19 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="c" +char id=100 x=95 y=27 width=25 height=26 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="d" +char id=101 x=143 y=116 width=21 height=19 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="e" +char id=102 x=195 y=0 width=17 height=27 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=117 y=109 width=25 height=27 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="g" +char id=104 x=31 y=196 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="h" +char id=105 x=207 y=149 width=14 height=30 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="i" +char id=106 x=208 y=55 width=14 height=39 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="j" +char id=107 x=32 y=93 width=29 height=26 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter="k" +char id=108 x=208 y=28 width=14 height=26 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="l" +char id=109 x=0 y=0 width=45 height=19 xoffset=0 yoffset=18 xadvance=48 page=0 chnl=0 letter="m" +char id=110 x=31 y=176 width=30 height=19 xoffset=0 yoffset=18 xadvance=33 page=0 chnl=0 letter="n" +char id=111 x=142 y=137 width=23 height=19 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="o" +char id=112 x=91 y=63 width=25 height=27 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="p" +char id=113 x=91 y=91 width=25 height=27 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="q" +char id=114 x=188 y=130 width=18 height=19 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="r" +char id=115 x=143 y=96 width=21 height=19 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=207 y=95 width=15 height=27 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="t" +char id=117 x=31 y=223 width=28 height=19 xoffset=0 yoffset=19 xadvance=31 page=0 chnl=0 letter="u" +char id=118 x=41 y=28 width=25 height=18 xoffset=0 yoffset=19 xadvance=28 page=0 chnl=0 letter="v" +char id=119 x=0 y=47 width=37 height=18 xoffset=0 yoffset=19 xadvance=40 page=0 chnl=0 letter="w" +char id=120 x=38 y=74 width=23 height=18 xoffset=0 yoffset=19 xadvance=26 page=0 chnl=0 letter="x" +char id=121 x=116 y=215 width=25 height=28 xoffset=0 yoffset=19 xadvance=28 page=0 chnl=0 letter="y" +char id=122 x=143 y=51 width=22 height=18 xoffset=0 yoffset=19 xadvance=25 page=0 chnl=0 letter="z" +char id=123 x=235 y=44 width=11 height=41 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=236 y=132 width=7 height=41 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="|" +char id=125 x=223 y=70 width=11 height=41 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=166 y=201 width=20 height=6 xoffset=0 yoffset=23 xadvance=23 page=0 chnl=0 letter="~" +char id=8226 x=16 y=231 width=12 height=9 xoffset=0 yoffset=19 xadvance=15 page=0 chnl=0 letter="•" +char id=169 x=142 y=157 width=23 height=24 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=120 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title-export.png new file mode 100644 index 0000000..7a70ea3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title.png new file mode 100644 index 0000000..b48e541 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font.png new file mode 100644 index 0000000..f8b712b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/list.9.png new file mode 100644 index 0000000..7316973 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/list.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/list.png new file mode 100644 index 0000000..23752aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/radio-pressed.png new file mode 100644 index 0000000..d1a1040 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/scrollbar-android.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/scrollbar-android.png new file mode 100644 index 0000000..3387063 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/scrollbar-android.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/scrollbar.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/scrollbar.png new file mode 100644 index 0000000..51da88f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/scrollbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box-pressed.9.png new file mode 100644 index 0000000..56d5486 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box-pressed.png new file mode 100644 index 0000000..05107de Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box.9.png new file mode 100644 index 0000000..91a0d79 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box.png new file mode 100644 index 0000000..66fcf8a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-fancy-knob.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-fancy-knob.png new file mode 100644 index 0000000..676e886 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-fancy-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-fancy.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-fancy.png new file mode 100644 index 0000000..7306e9f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-fancy.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-horizontal.9.png new file mode 100644 index 0000000..e86bbdc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-horizontal.png new file mode 100644 index 0000000..1862726 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-knob.png new file mode 100644 index 0000000..043c2f6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-vertical.9.png new file mode 100644 index 0000000..348efb5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-vertical.png new file mode 100644 index 0000000..17c493f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-horizontal.9.png new file mode 100644 index 0000000..136ea87 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-horizontal.png new file mode 100644 index 0000000..4327e84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-vertical.9.png new file mode 100644 index 0000000..1aa0834 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-vertical.png new file mode 100644 index 0000000..203fb4a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/textfield.9.png new file mode 100644 index 0000000..4e0501d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/textfield.png new file mode 100644 index 0000000..71b08f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tooltip.9.png new file mode 100644 index 0000000..cfca3cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tooltip.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tooltip.png new file mode 100644 index 0000000..19f691a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tooltip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/touchpad-knob.png new file mode 100644 index 0000000..c9bf7a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/touchpad.png new file mode 100644 index 0000000..7fed5b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tree-minus.png new file mode 100644 index 0000000..392f0d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tree-plus.png new file mode 100644 index 0000000..fd4a4fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/white.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/window.9.png new file mode 100644 index 0000000..6880ee0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/raw/window.png b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/window.png new file mode 100644 index 0000000..81c7ebe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.atlas b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.atlas new file mode 100644 index 0000000..7e40e00 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.atlas @@ -0,0 +1,240 @@ + +flat-earth-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 91, 136 + size: 56, 42 + split: 18, 18, 0, 0 + pad: 13, 14, 3, 2 + orig: 56, 42 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 222, 326 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 91, 92 + size: 56, 42 + split: 18, 18, 0, 0 + pad: 13, 14, 3, 2 + orig: 56, 42 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 183, 304 + size: 29, 24 + orig: 29, 24 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 183, 278 + size: 29, 24 + orig: 29, 24 + offset: 0, 0 + index: -1 +earth + rotate: false + xy: 1, 321 + size: 178, 164 + orig: 178, 164 + offset: 0, 0 + index: -1 +font-button-export + rotate: false + xy: 1, 180 + size: 139, 139 + orig: 139, 139 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 90 + size: 88, 88 + orig: 88, 88 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 264, 262 + size: 247, 249 + orig: 247, 249 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 142, 280 + size: 39, 39 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 39, 39 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 183, 252 + size: 29, 24 + orig: 29, 24 + offset: 0, 0 + index: -1 +scrollbar + rotate: false + xy: 161, 182 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +scrollbar-android + rotate: false + xy: 1, 1 + size: 3, 3 + orig: 3, 3 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 181, 330 + size: 39, 20 + split: 4, 15, 4, 4 + pad: 2, 16, 2, 2 + orig: 39, 20 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 142, 258 + size: 39, 20 + split: 4, 15, 4, 4 + pad: 2, 16, 2, 2 + orig: 39, 20 + offset: 0, 0 + index: -1 +slider-fancy + rotate: false + xy: 1, 500 + size: 261, 11 + orig: 261, 11 + offset: 0, 0 + index: -1 +slider-fancy-knob + rotate: false + xy: 1, 487 + size: 261, 11 + orig: 261, 11 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 142, 181 + size: 17, 11 + split: 4, 4, 0, 0 + pad: 0, 0, 0, 0 + orig: 17, 11 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 214, 267 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 247, 399 + size: 11, 17 + split: 0, 0, 4, 4 + pad: 0, 0, 0, 0 + orig: 11, 17 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 85, 77 + size: 4, 11 + split: 1, 1, 1, 1 + pad: 0, 0, 0, 0 + orig: 4, 11 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 214, 261 + size: 11, 4 + split: 1, 1, 1, 1 + pad: 0, 0, 0, 0 + orig: 11, 4 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 142, 226 + size: 30, 30 + split: 4, 4, 4, 4 + pad: 4, 4, 1, 1 + orig: 30, 30 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 181, 352 + size: 64, 64 + split: 13, 13, 12, 12 + pad: 10, 10, 10, 10 + orig: 64, 64 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 6 + size: 82, 82 + orig: 82, 82 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 142, 194 + size: 30, 30 + orig: 30, 30 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 214, 307 + size: 22, 17 + orig: 22, 17 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 214, 287 + size: 21, 18 + orig: 21, 18 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 91, 89 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 181, 418 + size: 76, 67 + split: 2, 2, 32, 2 + pad: 2, 2, 34, 2 + orig: 76, 67 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.json b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.json new file mode 100644 index 0000000..0870da8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.json @@ -0,0 +1,451 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + button: { + file: font-button-export.fnt + } + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + color: { + r: 0.3372549 + g: 0.8 + b: 0.44705883 + a: 1 + } + gray: { + r: 0.5 + g: 0.5 + b: 0.5 + a: 1 + } + highlight: { + r: 0.42156863 + g: 1 + b: 0.5552286 + a: 1 + } + pressed: { + r: 0.2529412 + g: 0.6 + b: 0.33313715 + a: 1 + } + selection: { + r: 0.22745098 + g: 0.59607846 + b: 0.85882354 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } + window: { + r: 0.76862746 + g: 0.4509804 + b: 0 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-c: { + name: button + color: color + } + button-close-c: { + name: button-close + color: color + } + button-pressed-c: { + name: button-pressed + color: color + } + button-h: { + name: button + color: highlight + } + checkbox-c: { + name: checkbox + color: color + } + checkbox-pressed-c: { + name: checkbox-pressed + color: color + } + list-c: { + name: list + color: color + } + radio-pressed-c: { + name: radio-pressed + color: color + } + scrollbar-c: { + name: scrollbar + color: color + } + scrollbar-android-c: { + name: scrollbar-android + color: color + } + select-box-c: { + name: select-box + color: color + } + select-box-pressed-c: { + name: select-box-pressed + color: color + } + slider-horizontal-c: { + name: slider-horizontal + color: color + } + slider-knob-c: { + name: slider-knob + color: color + } + slider-vertical-c: { + name: slider-vertical + color: color + } + splitpane-horizontal-c: { + name: splitpane-horizontal + color: color + } + splitpane-vertical-c: { + name: splitpane-vertical + color: color + } + textfield-c: { + name: textfield + color: color + } + tooltip-c: { + name: tooltip + color: color + } + touchpad-c: { + name: touchpad + color: color + } + touchpad-knob-c: { + name: touchpad-knob + color: color + } + tree-minus-c: { + name: tree-minus + color: color + } + tree-plus-c: { + name: tree-plus + color: color + } + color: { + name: white + color: color + } + window-c: { + name: window + color: color + } + selection: { + name: white + color: selection + } + slider-horizontal-s: { + name: slider-horizontal + color: selection + } + slider-vertical-s: { + name: slider-vertical + color: selection + } + select-box-pressed-h: { + name: select-box-pressed + color: highlight + } + select-box-h: { + name: select-box + color: highlight + } + slider-knob-h: { + name: slider-knob + color: highlight + } + slider-horizontal-p: { + name: slider-horizontal + color: pressed + } + slider-vertical-p: { + name: slider-vertical + color: pressed + } + black: { + name: white + color: black + } + button-close-p: { + name: button-close + color: pressed + } + button-close-h: { + name: button-close + color: highlight + } + button-close-s: { + name: button-close + color: selection + } + window-w: { + name: window + color: window + } + button-p: { + name: button + color: pressed + } + slider-fancy-p: { + name: slider-fancy + color: pressed + } + checkbox-h: { + name: checkbox + color: highlight + } + checkbox-pressed-h: { + name: checkbox-pressed + color: highlight + } + checkbox-p: { + name: checkbox + color: pressed + } + checkbox-pressed-p: { + name: checkbox-pressed + color: pressed + } + radio-pressed-h: { + name: radio-pressed + color: highlight + } + radio-pressed-p: { + name: radio-pressed + color: pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-c + down: button-p + over: button-h + } + close: { + up: button-close-c + down: button-close-p + over: button-close-h + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-pressed-c + checkboxOff: checkbox-c + font: button + fontColor: color + downFontColor: pressed + overFontColor: highlight + } + radio: { + checkboxOn: radio-pressed-c + checkboxOff: checkbox-c + font: button + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-c + down: button-p + over: button-h + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: button + fontColor: white + downFontColor: white + overFontColor: gray + up: button-c + down: button-p + over: button-h + } + check: { + imageUp: checkbox-c + imageDown: checkbox-pressed-p + imageOver: checkbox-h + imageChecked: checkbox-pressed-c + imageCheckedOver: checkbox-pressed-h + font: button + fontColor: color + downFontColor: pressed + overFontColor: highlight + } + radio: { + imageUp: checkbox-c + imageDown: radio-pressed-p + imageOver: checkbox-h + imageChecked: radio-pressed-c + imageCheckedOver: radio-pressed-h + font: button + fontColor: color + downFontColor: pressed + overFontColor: highlight + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: color + } + button: { + font: button + fontColor: color + } + title: { + font: title + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: white + selection: selection + background: list-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: slider-horizontal-c + knobBefore: slider-horizontal-s + } + default-vertical: { + background: slider-vertical-c + knobBefore: slider-vertical-s + } + fancy: { + background: slider-fancy-p + knobBefore: slider-fancy-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-c + vScrollKnob: scrollbar-c + } + android: { + hScrollKnob: scrollbar-android-c + vScrollKnob: scrollbar-android-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box-c + scrollStyle: default + listStyle: default + backgroundOver: select-box-h + backgroundOpen: select-box-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-h + knobDown: slider-knob-h + background: slider-horizontal-p + knob: slider-knob-c + knobBefore: slider-horizontal-s + } + default-vertical: { + knobOver: slider-knob-h + knobDown: slider-knob-h + background: slider-vertical-p + knob: slider-knob-c + knobBefore: slider-vertical-s + } + fancy: { + knobOver: slider-knob-h + knobDown: slider-knob-h + background: slider-fancy-p + knob: slider-knob-c + knobBefore: slider-fancy-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal-c + } + default-vertical: { + handle: splitpane-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: button + fontColor: white + downFontColor: white + overFontColor: gray + up: button-c + down: button-p + over: button-h + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: white + background: textfield-c + cursor: white + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad-c + knob: touchpad-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: tree-plus-c + minus: tree-minus-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-w + titleFont: font + titleFontColor: white + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.png b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.png new file mode 100644 index 0000000..768035a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/flat-earth-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-button-export.fnt new file mode 100644 index 0000000..53ec0d0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-button-export.fnt @@ -0,0 +1,733 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=23 base=23 scaleW=139 scaleH=139 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=134 y=101 width=3 height=19 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=120 y=127 width=5 height=5 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=22 y=21 width=14 height=12 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=90 y=79 width=11 height=22 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="$" +char id=37 x=65 y=73 width=12 height=19 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=37 y=61 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=126 y=127 width=2 height=4 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=130 y=0 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=129 y=101 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=102 y=129 width=8 height=9 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=65 y=93 width=8 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=123 y=133 width=4 height=5 xoffset=0 yoffset=20 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=42 y=135 width=6 height=3 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=49 y=135 width=3 height=3 xoffset=0 yoffset=20 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=122 y=0 width=7 height=20 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=23 y=0 width=14 height=20 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="0" +char id=49 x=129 y=81 width=5 height=19 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=79 y=0 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="2" +char id=51 x=91 y=0 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="3" +char id=52 x=37 y=41 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="4" +char id=53 x=51 y=81 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=36 y=82 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="6" +char id=55 x=37 y=21 width=14 height=19 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="7" +char id=56 x=90 y=102 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=34 y=112 width=14 height=20 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="9" +char id=58 x=74 y=62 width=3 height=10 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=129 y=123 width=3 height=12 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=36 y=102 width=7 height=9 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=34 y=133 width=7 height=5 xoffset=0 yoffset=13 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=66 y=62 width=7 height=8 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=79 y=21 width=11 height=20 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=20 y=82 width=15 height=14 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="@" +char id=65 x=17 y=118 width=16 height=20 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=63 y=101 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=20 y=61 width=16 height=20 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=0 letter="C" +char id=68 x=21 y=40 width=15 height=19 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=103 y=20 width=10 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="E" +char id=70 x=113 y=74 width=9 height=19 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=0 y=40 width=20 height=20 xoffset=0 yoffset=3 xadvance=23 page=0 chnl=0 letter="G" +char id=72 x=52 y=13 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="H" +char id=73 x=135 y=63 width=2 height=19 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=122 y=107 width=6 height=19 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=77 y=93 width=12 height=19 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=114 y=0 width=7 height=19 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=22 height=20 xoffset=0 yoffset=3 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=0 y=118 width=16 height=19 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=0 y=84 width=19 height=20 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=0 letter="O" +char id=80 x=103 y=0 width=10 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=0 y=61 width=19 height=22 xoffset=0 yoffset=3 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=91 y=38 width=11 height=19 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="R" +char id=83 x=77 y=113 width=12 height=20 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="S" +char id=84 x=102 y=75 width=10 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=79 y=42 width=11 height=19 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="U" +char id=86 x=49 y=102 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="V" +char id=87 x=0 y=21 width=21 height=18 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="W" +char id=88 x=52 y=53 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="X" +char id=89 x=66 y=42 width=12 height=19 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="Y" +char id=90 x=52 y=33 width=13 height=19 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=130 y=44 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=114 y=20 width=7 height=19 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=130 y=22 width=4 height=21 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=103 y=66 width=7 height=8 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=18 y=112 width=11 height=2 xoffset=0 yoffset=26 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=111 y=133 width=5 height=5 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=78 y=79 width=11 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=66 y=21 width=12 height=20 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="b" +char id=99 x=103 y=40 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=66 y=0 width=12 height=20 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=53 y=0 width=12 height=12 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="e" +char id=102 x=123 y=43 width=6 height=20 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=91 y=21 width=11 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=102 y=95 width=10 height=20 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=133 y=123 width=3 height=15 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=135 y=0 width=3 height=19 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=113 y=40 width=9 height=20 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=135 y=42 width=2 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=38 y=0 width=14 height=12 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="m" +char id=110 x=113 y=94 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=49 y=122 width=12 height=12 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=62 y=122 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=78 y=62 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="q" +char id=114 x=113 y=120 width=6 height=12 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=113 y=107 width=8 height=12 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=123 y=64 width=6 height=16 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=103 y=53 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=90 y=123 width=11 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=105 width=17 height=12 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=113 y=61 width=9 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=91 y=58 width=11 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=102 y=116 width=10 height=12 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="z" +char id=123 x=123 y=21 width=6 height=21 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=135 y=20 width=2 height=21 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=123 y=81 width=5 height=21 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=22 y=34 width=10 height=4 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="~" +char id=8226 x=117 y=133 width=5 height=5 xoffset=0 yoffset=11 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=20 y=97 width=15 height=14 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=629 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-3 +kerning first=65 second=71 amount=-4 +kerning first=65 second=79 amount=-3 +kerning first=65 second=81 amount=-3 +kerning first=65 second=84 amount=-4 +kerning first=65 second=85 amount=-3 +kerning first=65 second=86 amount=-7 +kerning first=65 second=87 amount=-6 +kerning first=65 second=89 amount=-6 +kerning first=66 second=65 amount=-3 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-5 +kerning first=66 second=87 amount=-4 +kerning first=66 second=89 amount=-5 +kerning first=67 second=65 amount=-2 +kerning first=67 second=79 amount=-3 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-3 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-2 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-4 +kerning first=68 second=87 amount=-3 +kerning first=68 second=89 amount=-4 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-5 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-4 +kerning first=70 second=44 amount=-5 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-5 +kerning first=76 second=39 amount=-3 +kerning first=76 second=67 amount=-4 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-6 +kerning first=76 second=87 amount=-6 +kerning first=76 second=89 amount=-6 +kerning first=76 second=71 amount=-4 +kerning first=76 second=79 amount=-4 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=77 second=79 amount=-2 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-2 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-4 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-3 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-4 +kerning first=79 second=89 amount=-4 +kerning first=80 second=65 amount=-6 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-2 +kerning first=80 second=46 amount=-4 +kerning first=80 second=44 amount=-5 +kerning first=80 second=59 amount=-4 +kerning first=80 second=58 amount=-4 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-3 +kerning first=82 second=89 amount=-3 +kerning first=82 second=84 amount=-4 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-3 +kerning first=82 second=87 amount=-2 +kerning first=82 second=89 amount=-3 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-3 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-5 +kerning first=84 second=67 amount=-5 +kerning first=84 second=79 amount=-5 +kerning first=85 second=65 amount=-2 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-6 +kerning first=86 second=67 amount=-3 +kerning first=86 second=71 amount=-3 +kerning first=86 second=79 amount=-3 +kerning first=86 second=83 amount=-3 +kerning first=87 second=65 amount=-6 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-3 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-6 +kerning first=89 second=67 amount=-4 +kerning first=89 second=79 amount=-4 +kerning first=89 second=83 amount=-3 +kerning first=90 second=79 amount=-4 +kerning first=65 second=99 amount=-3 +kerning first=65 second=100 amount=-3 +kerning first=65 second=101 amount=-3 +kerning first=65 second=103 amount=-3 +kerning first=65 second=111 amount=-3 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-3 +kerning first=65 second=116 amount=-3 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-5 +kerning first=65 second=119 amount=-5 +kerning first=65 second=121 amount=-5 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-2 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-3 +kerning first=66 second=46 amount=-4 +kerning first=66 second=44 amount=-5 +kerning first=67 second=97 amount=-2 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-2 +kerning first=67 second=44 amount=-3 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-4 +kerning first=68 second=44 amount=-5 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-4 +kerning first=70 second=101 amount=-4 +kerning first=70 second=105 amount=-2 +kerning first=70 second=111 amount=-4 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-4 +kerning first=70 second=44 amount=-5 +kerning first=70 second=59 amount=-4 +kerning first=70 second=58 amount=-4 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-3 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-5 +kerning first=77 second=97 amount=-2 +kerning first=77 second=99 amount=-2 +kerning first=77 second=100 amount=-2 +kerning first=77 second=101 amount=-2 +kerning first=77 second=111 amount=-2 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-4 +kerning first=79 second=44 amount=-5 +kerning first=80 second=97 amount=-5 +kerning first=80 second=101 amount=-5 +kerning first=80 second=111 amount=-5 +kerning first=82 second=100 amount=-4 +kerning first=82 second=101 amount=-3 +kerning first=82 second=111 amount=-3 +kerning first=82 second=116 amount=-3 +kerning first=82 second=117 amount=-2 +kerning first=83 second=105 amount=-2 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-3 +kerning first=83 second=44 amount=-4 +kerning first=84 second=97 amount=-5 +kerning first=84 second=99 amount=-5 +kerning first=84 second=101 amount=-5 +kerning first=84 second=105 amount=-4 +kerning first=84 second=111 amount=-5 +kerning first=84 second=114 amount=-5 +kerning first=84 second=115 amount=-5 +kerning first=84 second=117 amount=-5 +kerning first=84 second=119 amount=-5 +kerning first=84 second=121 amount=-5 +kerning first=84 second=46 amount=-4 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-4 +kerning first=84 second=58 amount=-4 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-3 +kerning first=85 second=44 amount=-4 +kerning first=86 second=97 amount=-5 +kerning first=86 second=101 amount=-5 +kerning first=86 second=105 amount=-2 +kerning first=86 second=111 amount=-5 +kerning first=86 second=114 amount=-3 +kerning first=86 second=117 amount=-3 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-5 +kerning first=86 second=59 amount=-4 +kerning first=86 second=58 amount=-4 +kerning first=87 second=100 amount=-5 +kerning first=87 second=105 amount=-2 +kerning first=87 second=109 amount=-3 +kerning first=87 second=114 amount=-3 +kerning first=87 second=116 amount=-3 +kerning first=87 second=117 amount=-3 +kerning first=87 second=121 amount=-3 +kerning first=87 second=46 amount=-4 +kerning first=87 second=44 amount=-5 +kerning first=87 second=59 amount=-4 +kerning first=87 second=58 amount=-4 +kerning first=88 second=97 amount=-3 +kerning first=88 second=101 amount=-3 +kerning first=88 second=111 amount=-3 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-5 +kerning first=89 second=100 amount=-6 +kerning first=89 second=101 amount=-6 +kerning first=89 second=105 amount=-3 +kerning first=89 second=112 amount=-5 +kerning first=89 second=117 amount=-5 +kerning first=89 second=118 amount=-5 +kerning first=89 second=46 amount=-4 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-4 +kerning first=89 second=58 amount=-4 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-3 +kerning first=98 second=46 amount=-4 +kerning first=98 second=44 amount=-5 +kerning first=99 second=97 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-2 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-2 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-3 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-3 +kerning first=101 second=119 amount=-3 +kerning first=101 second=121 amount=-3 +kerning first=101 second=46 amount=-4 +kerning first=101 second=44 amount=-5 +kerning first=102 second=97 amount=-3 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-2 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-3 +kerning first=102 second=46 amount=-3 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-3 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-3 +kerning first=104 second=119 amount=-3 +kerning first=104 second=121 amount=-3 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-3 +kerning first=107 second=99 amount=-3 +kerning first=107 second=100 amount=-4 +kerning first=107 second=101 amount=-3 +kerning first=107 second=103 amount=-3 +kerning first=107 second=111 amount=-3 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-3 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-3 +kerning first=109 second=121 amount=-3 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-3 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-3 +kerning first=110 second=119 amount=-3 +kerning first=110 second=121 amount=-3 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-2 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-3 +kerning first=111 second=119 amount=-3 +kerning first=111 second=120 amount=-3 +kerning first=111 second=121 amount=-3 +kerning first=111 second=46 amount=-4 +kerning first=111 second=44 amount=-5 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-2 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-3 +kerning first=112 second=44 amount=-4 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-3 +kerning first=114 second=97 amount=-3 +kerning first=114 second=100 amount=-3 +kerning first=114 second=101 amount=-3 +kerning first=114 second=103 amount=-3 +kerning first=114 second=107 amount=-2 +kerning first=114 second=108 amount=-2 +kerning first=114 second=109 amount=-2 +kerning first=114 second=110 amount=-2 +kerning first=114 second=111 amount=-3 +kerning first=114 second=113 amount=-3 +kerning first=114 second=114 amount=-2 +kerning first=114 second=116 amount=-2 +kerning first=114 second=118 amount=-2 +kerning first=114 second=121 amount=-2 +kerning first=114 second=46 amount=-5 +kerning first=114 second=44 amount=-6 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-3 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-2 +kerning first=115 second=44 amount=-3 +kerning first=116 second=100 amount=-3 +kerning first=116 second=97 amount=-3 +kerning first=116 second=101 amount=-3 +kerning first=116 second=111 amount=-3 +kerning first=116 second=46 amount=-3 +kerning first=116 second=44 amount=-4 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-3 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-3 +kerning first=118 second=100 amount=-3 +kerning first=118 second=101 amount=-3 +kerning first=118 second=103 amount=-3 +kerning first=118 second=111 amount=-3 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-4 +kerning first=118 second=44 amount=-5 +kerning first=119 second=97 amount=-2 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-3 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-2 +kerning first=119 second=46 amount=-4 +kerning first=119 second=44 amount=-5 +kerning first=120 second=97 amount=-3 +kerning first=120 second=101 amount=-3 +kerning first=120 second=111 amount=-3 +kerning first=121 second=46 amount=-4 +kerning first=121 second=44 amount=-5 +kerning first=121 second=97 amount=-3 +kerning first=121 second=99 amount=-3 +kerning first=121 second=100 amount=-3 +kerning first=121 second=101 amount=-3 +kerning first=121 second=111 amount=-3 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-3 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-2 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-2 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-2 +kerning first=102 second=103 amount=-3 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=101 second=115 amount=-2 +kerning first=101 second=102 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-2 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-2 +kerning first=88 second=89 amount=-2 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-3 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-3 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-2 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-6 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-2 +kerning first=116 second=115 amount=-3 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-2 +kerning first=111 second=116 amount=-3 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-3 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-3 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-2 +kerning first=98 second=106 amount=-2 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-4 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-3 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-2 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-2 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 +kerning first=87 second=101 amount=-4 +kerning first=99 second=105 amount=-2 +kerning first=115 second=115 amount=-1 +kerning first=82 second=105 amount=-2 +kerning first=112 second=101 amount=-1 +kerning first=114 second=116 amount=-2 +kerning first=116 second=116 amount=-1 +kerning first=108 second=116 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=114 second=105 amount=-3 +kerning first=97 second=115 amount=-1 +kerning first=115 second=101 amount=-1 +kerning first=101 second=115 amount=-2 +kerning first=111 second=100 amount=-1 +kerning first=107 second=115 amount=-2 +kerning first=77 second=117 amount=-1 +kerning first=65 second=115 amount=-2 +kerning first=98 second=111 amount=-1 +kerning first=112 second=101 amount=-1 +kerning first=114 second=117 amount=-2 +kerning first=69 second=120 amount=-1 +kerning first=120 second=112 amount=-1 +kerning first=117 second=98 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-export.fnt new file mode 100644 index 0000000..3ff94ca --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=88 scaleH=88 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=77 y=0 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=71 y=83 width=3 height=4 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter=""" +char id=35 x=12 y=49 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=46 y=74 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=33 y=13 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="%" +char id=38 x=12 y=26 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=66 y=57 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=81 y=19 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=84 y=45 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter=")" +char id=42 x=63 y=51 width=5 height=5 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=76 y=32 width=4 height=5 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="+" +char id=44 x=63 y=57 width=2 height=4 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=39 y=74 width=4 height=2 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=67 y=85 width=3 height=2 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=70 y=26 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=21 y=49 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=80 y=72 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=39 y=39 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=34 y=0 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=21 y=62 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=25 y=0 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=31 y=26 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=22 y=26 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=40 y=26 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=24 y=13 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=84 y=70 width=2 height=7 xoffset=0 yoffset=7 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=81 y=0 width=3 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=76 y=26 width=4 height=5 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="<" +char id=61 x=55 y=70 width=5 height=3 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="=" +char id=62 x=64 y=13 width=5 height=5 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=63 y=38 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=11 y=79 width=9 height=8 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="@" +char id=65 x=11 y=66 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=48 y=23 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=0 y=74 width=10 height=12 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=15 y=0 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=64 y=0 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=69 y=51 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=0 y=53 width=11 height=12 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=30 y=39 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=85 y=26 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=75 y=71 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=47 y=61 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=69 y=64 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=14 height=12 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=14 y=13 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=40 width=11 height=12 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=55 y=36 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=26 width=11 height=13 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=56 y=23 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="R" +char id=83 x=55 y=49 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=62 y=62 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=54 y=74 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=21 y=74 width=8 height=11 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=13 width=13 height=12 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=30 y=52 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=47 y=48 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=30 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=80 y=46 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=70 y=13 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="\" +char id=93 x=80 y=59 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=69 y=77 width=5 height=5 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=21 y=86 width=7 height=1 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=62 y=84 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=22 y=39 width=7 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=39 y=52 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=63 y=29 width=6 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=49 y=10 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=47 y=39 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=76 y=13 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=41 y=13 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=57 y=0 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=81 y=9 width=3 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=84 y=58 width=2 height=11 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="j" +char id=107 x=71 y=0 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=85 y=0 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=12 y=58 width=8 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="m" +char id=110 x=50 y=0 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=39 y=65 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=38 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=30 y=78 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=76 y=38 width=4 height=7 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="r" +char id=115 x=70 y=39 width=5 height=7 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=75 y=60 width=4 height=10 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=63 y=21 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=55 y=62 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=0 y=66 width=10 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=57 y=13 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=42 y=0 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=62 y=75 width=6 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=81 y=32 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="{" +char id=124 x=85 y=13 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=75 y=47 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=41 y=23 width=6 height=2 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=70 y=47 width=4 height=3 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=12 y=39 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-title-export.fnt new file mode 100644 index 0000000..9ba707e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat-earth/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=37 base=37 scaleW=247 scaleH=249 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=223 y=112 width=10 height=27 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="!" +char id=34 x=142 y=234 width=20 height=14 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter=""" +char id=35 x=117 y=54 width=25 height=27 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="#" +char id=36 x=68 y=28 width=26 height=34 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0 letter="$" +char id=37 x=90 y=131 width=26 height=27 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=0 letter="%" +char id=38 x=166 y=48 width=20 height=18 xoffset=0 yoffset=19 xadvance=23 page=0 chnl=0 letter="&" +char id=39 x=206 y=235 width=12 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="'" +char id=40 x=235 y=0 width=11 height=43 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="(" +char id=41 x=223 y=26 width=11 height=43 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=206 y=192 width=16 height=15 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=153 y=0 width=20 height=18 xoffset=0 yoffset=19 xadvance=23 page=0 chnl=0 letter="+" +char id=44 x=163 y=234 width=12 height=14 xoffset=0 yoffset=30 xadvance=15 page=0 chnl=0 letter="," +char id=45 x=0 y=231 width=15 height=5 xoffset=0 yoffset=25 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=176 y=234 width=10 height=9 xoffset=0 yoffset=28 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=188 y=150 width=18 height=41 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="/" +char id=48 x=142 y=182 width=23 height=25 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="0" +char id=49 x=207 y=123 width=15 height=25 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="1" +char id=50 x=142 y=208 width=22 height=25 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="2" +char id=51 x=165 y=208 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="3" +char id=52 x=166 y=149 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=166 y=122 width=21 height=26 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=166 y=175 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=143 y=70 width=22 height=25 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="7" +char id=56 x=165 y=96 width=21 height=25 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="8" +char id=57 x=146 y=21 width=21 height=26 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="9" +char id=58 x=234 y=112 width=10 height=19 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter=":" +char id=59 x=213 y=0 width=13 height=25 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=0 letter=";" +char id=60 x=187 y=71 width=20 height=23 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="<" +char id=61 x=174 y=0 width=20 height=15 xoffset=0 yoffset=20 xadvance=23 page=0 chnl=0 letter="=" +char id=62 x=168 y=19 width=20 height=23 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter=">" +char id=63 x=187 y=43 width=20 height=27 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="?" +char id=64 x=103 y=0 width=25 height=23 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="@" +char id=65 x=31 y=148 width=30 height=27 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="A" +char id=66 x=62 y=185 width=27 height=26 xoffset=0 yoffset=11 xadvance=30 page=0 chnl=0 letter="B" +char id=67 x=62 y=212 width=27 height=27 xoffset=0 yoffset=10 xadvance=30 page=0 chnl=0 letter="C" +char id=68 x=90 y=215 width=25 height=26 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="D" +char id=69 x=117 y=157 width=24 height=26 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0 letter="E" +char id=70 x=117 y=184 width=24 height=26 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0 letter="F" +char id=71 x=62 y=74 width=28 height=27 xoffset=0 yoffset=10 xadvance=31 page=0 chnl=0 letter="G" +char id=72 x=0 y=204 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="H" +char id=73 x=206 y=208 width=15 height=26 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="I" +char id=74 x=188 y=95 width=18 height=34 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 letter="J" +char id=75 x=0 y=177 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="K" +char id=76 x=121 y=24 width=24 height=26 xoffset=0 yoffset=11 xadvance=27 page=0 chnl=0 letter="L" +char id=77 x=0 y=66 width=37 height=26 xoffset=0 yoffset=11 xadvance=40 page=0 chnl=0 letter="M" +char id=78 x=0 y=150 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="N" +char id=79 x=62 y=102 width=28 height=28 xoffset=0 yoffset=10 xadvance=31 page=0 chnl=0 letter="O" +char id=80 x=90 y=188 width=26 height=26 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=0 letter="P" +char id=81 x=0 y=121 width=30 height=28 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="Q" +char id=82 x=46 y=0 width=29 height=27 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="R" +char id=83 x=90 y=159 width=26 height=28 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 letter="S" +char id=84 x=76 y=0 width=26 height=26 xoffset=0 yoffset=11 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=0 y=93 width=31 height=27 xoffset=0 yoffset=11 xadvance=34 page=0 chnl=0 letter="U" +char id=86 x=31 y=121 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="V" +char id=87 x=0 y=20 width=40 height=26 xoffset=0 yoffset=11 xadvance=43 page=0 chnl=0 letter="W" +char id=88 x=62 y=158 width=27 height=26 xoffset=0 yoffset=11 xadvance=30 page=0 chnl=0 letter="X" +char id=89 x=62 y=131 width=27 height=26 xoffset=0 yoffset=11 xadvance=30 page=0 chnl=0 letter="Y" +char id=90 x=38 y=47 width=29 height=26 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter="Z" +char id=91 x=222 y=149 width=13 height=41 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="[" +char id=92 x=187 y=201 width=18 height=41 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="\" +char id=93 x=223 y=191 width=13 height=41 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="]" +char id=94 x=117 y=137 width=24 height=19 xoffset=0 yoffset=19 xadvance=27 page=0 chnl=0 letter="^" +char id=95 x=0 y=243 width=22 height=5 xoffset=0 yoffset=32 xadvance=25 page=0 chnl=0 letter="_" +char id=96 x=227 y=0 width=7 height=6 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="`" +char id=97 x=129 y=0 width=23 height=20 xoffset=0 yoffset=17 xadvance=26 page=0 chnl=0 letter="a" +char id=98 x=117 y=82 width=25 height=26 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="b" +char id=99 x=166 y=67 width=20 height=19 xoffset=0 yoffset=18 xadvance=23 page=0 chnl=0 letter="c" +char id=100 x=95 y=27 width=25 height=26 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="d" +char id=101 x=143 y=116 width=21 height=19 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="e" +char id=102 x=195 y=0 width=17 height=27 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=117 y=109 width=25 height=27 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="g" +char id=104 x=31 y=196 width=30 height=26 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="h" +char id=105 x=207 y=149 width=14 height=30 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="i" +char id=106 x=208 y=55 width=14 height=39 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="j" +char id=107 x=32 y=93 width=29 height=26 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter="k" +char id=108 x=208 y=28 width=14 height=26 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="l" +char id=109 x=0 y=0 width=45 height=19 xoffset=0 yoffset=18 xadvance=48 page=0 chnl=0 letter="m" +char id=110 x=31 y=176 width=30 height=19 xoffset=0 yoffset=18 xadvance=33 page=0 chnl=0 letter="n" +char id=111 x=142 y=137 width=23 height=19 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="o" +char id=112 x=91 y=63 width=25 height=27 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="p" +char id=113 x=91 y=91 width=25 height=27 xoffset=0 yoffset=18 xadvance=28 page=0 chnl=0 letter="q" +char id=114 x=188 y=130 width=18 height=19 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="r" +char id=115 x=143 y=96 width=21 height=19 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=207 y=95 width=15 height=27 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="t" +char id=117 x=31 y=223 width=28 height=19 xoffset=0 yoffset=19 xadvance=31 page=0 chnl=0 letter="u" +char id=118 x=41 y=28 width=25 height=18 xoffset=0 yoffset=19 xadvance=28 page=0 chnl=0 letter="v" +char id=119 x=0 y=47 width=37 height=18 xoffset=0 yoffset=19 xadvance=40 page=0 chnl=0 letter="w" +char id=120 x=38 y=74 width=23 height=18 xoffset=0 yoffset=19 xadvance=26 page=0 chnl=0 letter="x" +char id=121 x=116 y=215 width=25 height=28 xoffset=0 yoffset=19 xadvance=28 page=0 chnl=0 letter="y" +char id=122 x=143 y=51 width=22 height=18 xoffset=0 yoffset=19 xadvance=25 page=0 chnl=0 letter="z" +char id=123 x=235 y=44 width=11 height=41 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=236 y=132 width=7 height=41 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="|" +char id=125 x=223 y=70 width=11 height=41 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=166 y=201 width=20 height=6 xoffset=0 yoffset=23 xadvance=23 page=0 chnl=0 letter="~" +char id=8226 x=16 y=231 width=12 height=9 xoffset=0 yoffset=19 xadvance=15 page=0 chnl=0 letter="•" +char id=169 x=142 y=157 width=23 height=24 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=120 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/flat/README.md b/src/main/resources/omni_power/gdx-skins/flat/README.md new file mode 100644 index 0000000..1375fb0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/README.md @@ -0,0 +1,58 @@ +# Flat Theme + +Conceptually, this skin is very similar to [Kenney pixel theme](../kenney-pixel) - instead of providing assets with a specific fixed palette, it contains *only* white drawables that you can tint however you like at runtime thanks to `TintedDrawable` utility. + +![Flat](preview-dark.png) + +To modify the theme, you just have to change `Color` values in `skin.json`: +``` + com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + gray: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + black: { r: 0, g: 0, b: 0, a: 1 }, + + up: { r: 0.6, g: 0.6, b: 0.6, a: 1 }, + over: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + down: { r: 0, g: 0.3, b: 0.5, a: 1 }, + checked: { r: 0, g: 0.3, b: 0.5, a: 1 }, + checkedOver: { r: 0, g: 0.4, b: 0.6, a: 1 }, + disabled: { r: 0.1, g: 0.1, b: 0.1, a: 1 }, + background: { r: 0.8, g: 0.8, b: 0.8, a: 1 }, + selection: { r: 0, g: 0.3, b: 0.5, a: 1 }, + semiTransparent: { r: 0, g: 0, b: 0, a: 0.6 }, + + font: down + fontOver: down + fontDown: gray + fontChecked: checkedOver + fontCheckedOver: checked + fontDisabled: gray + } +``` + +You can also change `TintedDrawable` settings if you want more control. + +This is very convenient, as you can quickly try out different GUI themes without actually changing a single image. + +![Flat](preview-light.png) + +Basically, this is *the ultimate prototyping skin*. + +### Notes + +- All default **Scene2D** actors are supported. +- This will **NOT** work on the Android by default, as Android does not support classpath fonts loading. If you target Android, copy `arial-15.fnt` and `arial-15.png` from `com.badlogic.gdx.utils` package (in the main LibGDX jar) to `com/badlogic/gdx/utils` folder in your `assets` directory. +- Being a simple skin, it features only ***14*** images. By modifying even a single drawable, you're likely to affect multiple widgets. +- This skin aims to limit nine-patch usage. Only 3 images are nine-patches: select box background and 2 alternative window backgrounds. While it should make rendering faster (which is not significant, unless you draw thousands of buttons), it does require you to set some paddings manually. In particular, you might want to use `#pad(float)` method on text buttons and `#padTop(float)` on windows with default styles. It was a conscious decision: rather than forcing a particular padding, you're free to customize your core widgets however you like. +- Additional GUI icons are not provided. However, you can use the [raw assets](raw) to add your custom icons and repack the atlas. +- All images use a single color: white. When two colors are *needed* to display the widget's state (for example: a checked check box), it is achieved using transparency. You have to keep that in mind and choose colors with enough contrast between them if you want to use check boxes and select boxes. +- A custom font is **not** included. While the images scale rather nicely, the default **LibGDX** font might look off when scaled. Providing a custom font should be the first thing you'd generally want to do if you plan on using this skin as your base. +- Most actors with optional backgrounds (like `Tree`, `ScrollPane`, `List`) feature at least two styles: `default` (without any background) and `background`. Default `Window` style has no top padding - it should be set manually if you want to use a window with title and to make it draggable. `Window` features tree additional styles: `resize` (features icon in bottom right row), `border` (uses transparency to fake a border) and `dialog` (hides stage underneath it with semi-transparent drawable). +- Previews were created using [LML](https://github.com/czyzby/gdx-lml/tree/master/lml). In [raw assets folder](raw/extras) you can find the LML template used to create the previews, as well as the settings of the lighter theme. +- Thanks to the fact that drawables are created at runtime, this skin allows you to prepare very responsive widgets that change their look when hovered, clicked, checked, disabled and so on. Many skin creators do not bother with preparing so many images; in this case, it was just a matter of a few JSON lines, so it required much less work. +- *Do not expect miracles.* This simple tinting mechanism is unable to create truly multi-color widgets, for example. To fully customize your theme, you might need to modify the assets manually in an image editor at some point. + +### License + +[CC0](https://creativecommons.org/publicdomain/zero/1.0/). You can use it without credit, although you can mention that the skin was created by **MJ** (or **Czyzby**). Posting a link to [gdx-lml](https://github.com/czyzby/gdx-lml) would also be nice. + diff --git a/src/main/resources/omni_power/gdx-skins/flat/preview-dark.png b/src/main/resources/omni_power/gdx-skins/flat/preview-dark.png new file mode 100644 index 0000000..bf249aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/preview-dark.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/preview-light.png b/src/main/resources/omni_power/gdx-skins/flat/preview-light.png new file mode 100644 index 0000000..2136999 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/preview-light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/check-on.png b/src/main/resources/omni_power/gdx-skins/flat/raw/check-on.png new file mode 100644 index 0000000..61da427 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/check.png b/src/main/resources/omni_power/gdx-skins/flat/raw/check.png new file mode 100644 index 0000000..114da22 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/check.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/dot.png b/src/main/resources/omni_power/gdx-skins/flat/raw/dot.png new file mode 100644 index 0000000..7820e94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/dot.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/extras/README.md b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/README.md new file mode 100644 index 0000000..15ed291 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/README.md @@ -0,0 +1,3 @@ +- `light.json`: light version of the skin (a proof of concept used in the preview). +- `macros.lml`: simple [LML macros](https://github.com/czyzby/gdx-lml/tree/master/lml) that aim to make it easier to customize awkward button and window paddings. +- `preview.lml`: [LML template](https://github.com/czyzby/gdx-lml/tree/master/lml) of most widgets, used to create the preview. diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/extras/light.json b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/light.json new file mode 100644 index 0000000..77251e1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/light.json @@ -0,0 +1,170 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default: { file: com/badlogic/gdx/utils/arial-15.fnt } + }, + com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + gray: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + black: { r: 0, g: 0, b: 0, a: 1 }, + + up: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + over: { r: 0.4, g: 0.4, b: 0.4, a: 1 }, + down: { r: 0.3, g: 0, b: 0.6, a: 1 }, + checked: { r: 0.3, g: 0, b: 0.6, a: 1 }, + checkedOver: { r: 0.4, g: 0, b: 0.7, a: 1 }, + disabled: { r: 0.4, g: 0.4, b: 0.4, a: 1 }, + background: { r: 0.7, g: 0.7, b: 0.7, a: 1 }, + selection: { r: 0.3, g: 0, b: 0.6, a: 1 }, + semiTransparent: { r: 0, g: 0, b: 0, a: 0.6 }, + + font: black + fontOver: black + fontDown: gray + fontChecked: black + fontCheckedOver: black + fontDisabled: gray + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + buttonUp: { name: rect, color: up }, + buttonOver: { name: rect, color: over }, + buttonDown: { name: rect, color: down }, + buttonDisabled: { name: rect, color: disabled }, + buttonChecked: { name: rect, color: checked }, + buttonCheckedOver: { name: rect, color: checkedOver }, + checkBoxOn: { name: check-on, color: up }, + checkBoxOff: { name: check, color: up }, + checkBoxOver: { name: check, color: over }, + checkBoxOnDisabled: { name: check-on, color: disabled }, + checkBoxOffDisabled: { name: check, color: disabled }, + icon: { name: check-on, color: font }, + selection: { name: dot, color: selection }, + list: { name: rect, color: background }, + progressHorizontal: { name: line-v, color: up }, + progressHorizontalKnob: { name: line-v, color: down }, + progressHorizontalDisabled: { name: line-v, color: disabled }, + progressHorizontalKnobDisabled: { name: line-v, color: disabled }, + progressVertical: { name: line-h, color: up }, + progressVerticalKnob: { name: line-h, color: down }, + progressVerticalDisabled: { name: line-h, color: disabled }, + progressVerticalKnobDisabled: { name: line-h, color: disabled }, + scrollHorizontal: { name: line-v, color: up }, + scrollVertical: { name: line-h, color: up }, + scrollKnob: { name: knob-v, color: down }, + scrollKnobVertical: { name: knob-h, color: down }, + scrollPane: { name: rect, color: background }, + selectBox: { name: select, color: up }, + selectOver: { name: select, color: over }, + selectDown: { name: select, color: over }, + selectDisabled: { name: select, color: disabled }, + selectList: { name: rect, color: over }, + splitPane: { name: square, color: down }, + sliderHorizontal: { name: square, color: up }, + sliderKnob: { name: rect, color: up }, + sliderKnobOver: { name: rect, color: over }, + sliderKnobDown: { name: rect, color: down }, + sliderKnobDisabled: { name: rect, color: disabled }, + sliderVertical: { name: square, color: up }, + sliderVerticalKnob: { name: rect, color: up }, + sliderVerticalKnobOver: { name: rect, color: over }, + sliderVerticalKnobDown: { name: rect, color: down }, + sliderVerticalKnobDisabled: { name: rect, color: disabled }, + textField: { name: rect, color: up }, + textFieldDown: { name: rect, color: over }, + textFieldDisabled: { name: rect, color: disabled }, + textFieldCursor: { name: dot, color: font }, + tooltip: { name: rect, color: up }, + touchpad: { name: rect, color: over }, + touchpadKnob: { name: check-on, color: down }, + tree: { name: rect, color: background }, + treeOver: { name: dot, color: over }, + treeMinus: { name: tree-minus, color: up }, + treePlus: { name: tree-plus, color: up }, + window: { name: rect, color: background }, + windowResize: { name: window-resize, color: background }, + windowBorder: { name: window-border, color: background }, + alpha: { name: dot, color: semiTransparent } + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, disabled: buttonDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { checkboxOn: checkBoxOn, checkboxOff: checkBoxOff, checkboxOver: checkBoxOver, checkboxOnDisabled: checkBoxOnDisabled, + checkboxOffDisabled: checkBoxOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, imageUp: icon } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1, imageUp: icon } + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default, fontColor: font }, + white: { font: default, fontColor: white } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default }, + background: { background: list, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + }, + com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: progressHorizontal, knobBefore: progressHorizontalKnob, + disabledBackground: progressHorizontalDisabled, disabledKnobBefore: progressHorizontalKnobDisabled }, + default-vertical: { background: progressVertical, knobBefore: progressVerticalKnob, + disabledBackground: progressVerticalDisabled, disabledKnobBefore: progressVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { hScrollKnob: scrollKnob, vScrollKnob: scrollKnobVertical, hScroll: scrollHorizontal, vScroll: scrollVertical }, + clean: { hScrollKnob: scrollKnob, vScrollKnob: scrollKnobVertical }, + background: { background: scrollPane, hScrollKnob: scrollKnob, vScrollKnob: scrollKnobVertical, hScroll: scrollHorizontal, vScroll: scrollVertical } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { font: default, fontColor: font, disabledFontColor: fontDisabled, background: selectBox, backgroundOver: selectOver, + backgroundOpen: selectDown, backgroundDisabled: selectDisabled, scrollStyle: default, listStyle: + { background: selectList, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: sliderHorizontal, knob: sliderKnob, knobOver: sliderKnobOver, knobDown: sliderKnobDown, + disabledKnob: sliderKnobDisabled }, + default-vertical: { background: sliderVertical, knob: sliderVerticalKnob, knobOver: sliderVerticalKnobOver, + knobDown: sliderVerticalKnobDown, disabledKnob: sliderVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitPane }, + default-horizontal: { handle: splitPane } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, + disabled: buttonDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: + fontDisabled, checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, pressedOffsetY: -1, pressedOffsetX: 1 }, + text: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: disabled, + pressedOffsetY: -1, pressedOffsetX: 1 }, + textToggle: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: + disabled, checkedFontColor: font, checkedOverFontColor: fontOver, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { font: default, messageFont: default, fontColor: font, focusedFontColor: fontOver, disabledFontColor: fontDisabled, + messageFontColor: fontDown, background: textField, focusedBackground: textFieldDown, disabledBackground: textFieldDisabled, + cursor: textFieldCursor, selection: selection } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { label: default, background: tooltip } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpadKnob } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: treeMinus, plus: treePlus, selection: selection, over: treeOver }, + background: { background: tree, minus: treeMinus, plus: treePlus, selection: selection, over: treeOver } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default, background: window, titleFontColor: fontDisabled }, + resize: { titleFont: default, background: windowResize, titleFontColor: fontDisabled }, + border: { titleFont: default, background: windowBorder, titleFontColor: fontDisabled }, + dialog: { titleFont: default, background: window, titleFontColor: fontDisabled, stageBackground: alpha } + } +} diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/extras/macros.lml b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/macros.lml new file mode 100644 index 0000000..0a8eb0d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/macros.lml @@ -0,0 +1,25 @@ + +<:macro alias="button" replace="content" padTop="4" padBottom="4" padLeft="8" padRight="8" onChange="close" id="null" style="default"> + {content} + + + + +<:macro alias="window" replace="content" padTop="24" id="null" title="" oneColumn="false" titleAlign="center"> + + {content} + + + + diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/extras/preview.lml b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/preview.lml new file mode 100644 index 0000000..ffae722 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/raw/extras/preview.lml @@ -0,0 +1,59 @@ + + + + Label +
+ + Text button + Checked + Text only + Text only checked +
+ + Check box + Checked +
+ + + + <:loop times=7> + list{loop:index} + + + + +
+ + This is my + Select box + +
+ + Awaiting input... +
+ + + + + + + +
+ + + + + +
+
diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/knob-h.png b/src/main/resources/omni_power/gdx-skins/flat/raw/knob-h.png new file mode 100644 index 0000000..9cf04db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/knob-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/knob-v.png b/src/main/resources/omni_power/gdx-skins/flat/raw/knob-v.png new file mode 100644 index 0000000..c5004de Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/knob-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/line-h.png b/src/main/resources/omni_power/gdx-skins/flat/raw/line-h.png new file mode 100644 index 0000000..2aa9875 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/line-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/line-v.png b/src/main/resources/omni_power/gdx-skins/flat/raw/line-v.png new file mode 100644 index 0000000..dc8b565 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/line-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/pack.json b/src/main/resources/omni_power/gdx-skins/flat/raw/pack.json new file mode 100644 index 0000000..92820d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/raw/pack.json @@ -0,0 +1,7 @@ +{ + duplicatePadding: false, + paddingX: 1, + paddingY: 1, + stripWhitespaceX: true, + stripWhitespaceY: true +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/rect.png b/src/main/resources/omni_power/gdx-skins/flat/raw/rect.png new file mode 100644 index 0000000..8482577 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/rect.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/select.9.png b/src/main/resources/omni_power/gdx-skins/flat/raw/select.9.png new file mode 100644 index 0000000..907ed13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/select.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/square.png b/src/main/resources/omni_power/gdx-skins/flat/raw/square.png new file mode 100644 index 0000000..51ebc9b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/square.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/flat/raw/tree-minus.png new file mode 100644 index 0000000..1cce436 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/flat/raw/tree-plus.png new file mode 100644 index 0000000..3e085a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/window-border.9.png b/src/main/resources/omni_power/gdx-skins/flat/raw/window-border.9.png new file mode 100644 index 0000000..604e12c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/window-border.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/raw/window-resize.9.png b/src/main/resources/omni_power/gdx-skins/flat/raw/window-resize.9.png new file mode 100644 index 0000000..4f873c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/raw/window-resize.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/flat/skin/skin.atlas b/src/main/resources/omni_power/gdx-skins/flat/skin/skin.atlas new file mode 100644 index 0000000..319dae6 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/skin/skin.atlas @@ -0,0 +1,107 @@ + +skin.png +size: 32,128 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +check + rotate: false + xy: 15, 76 + size: 16, 16 + orig: 24, 24 + offset: 4, 4 + index: -1 +check-on + rotate: false + xy: 15, 59 + size: 16, 16 + orig: 24, 24 + offset: 4, 4 + index: -1 +dot + rotate: false + xy: 30, 105 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +knob-h + rotate: false + xy: 14, 50 + size: 10, 1 + orig: 24, 1 + offset: 7, 0 + index: -1 +knob-v + rotate: false + xy: 30, 107 + size: 1, 10 + orig: 1, 24 + offset: 0, 7 + index: -1 +line-h + rotate: false + xy: 7, 18 + size: 24, 1 + orig: 24, 1 + offset: 0, 0 + index: -1 +line-v + rotate: false + xy: 28, 93 + size: 1, 24 + orig: 1, 24 + offset: 0, 0 + index: -1 +rect + rotate: false + xy: 1, 33 + size: 12, 24 + orig: 12, 24 + offset: 0, 0 + index: -1 +select + rotate: false + xy: 1, 93 + size: 26, 24 + split: 4, 15, 0, 24 + orig: 26, 24 + offset: 0, 0 + index: -1 +square + rotate: false + xy: 1, 1 + size: 4, 4 + orig: 4, 4 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 15, 52 + size: 12, 6 + orig: 16, 16 + offset: 2, 4 + index: -1 +tree-plus + rotate: false + xy: 7, 20 + size: 6, 12 + orig: 16, 16 + offset: 6, 2 + index: -1 +window-border + rotate: false + xy: 1, 6 + size: 5, 26 + split: 2, 2, 23, 2 + orig: 5, 26 + offset: 0, 0 + index: -1 +window-resize + rotate: false + xy: 1, 58 + size: 13, 34 + split: 2, 10, 23, 10 + orig: 13, 34 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/flat/skin/skin.json b/src/main/resources/omni_power/gdx-skins/flat/skin/skin.json new file mode 100644 index 0000000..8c438a7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/flat/skin/skin.json @@ -0,0 +1,170 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default: { file: "com/badlogic/gdx/utils/arial-15.fnt" } + }, + com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + gray: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + black: { r: 0, g: 0, b: 0, a: 1 }, + + up: { r: 0.1, g: 0.1, b: 0.1, a: 1 }, + over: { r: 0.3, g: 0.3, b: 0.3, a: 1 }, + down: { r: 0.3, g: 0, b: 0, a: 1 }, + checked: { r: 0.3, g: 0, b: 0, a: 1 }, + checkedOver: { r: 0.4, g: 0, b: 0, a: 1 }, + disabled: { r: 0.4, g: 0.4, b: 0.4, a: 1 }, + background: { r: 0.2, g: 0.2, b: 0.2, a: 1 }, + selection: { r: 0.3, g: 0, b: 0, a: 1 }, + semiTransparent: { r: 0, g: 0, b: 0, a: 0.6 }, + + font: white, + fontOver: white, + fontDown: gray, + fontChecked: white, + fontCheckedOver: white, + fontDisabled: gray + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + buttonUp: { name: rect, color: up }, + buttonOver: { name: rect, color: over }, + buttonDown: { name: rect, color: down }, + buttonDisabled: { name: rect, color: disabled }, + buttonChecked: { name: rect, color: checked }, + buttonCheckedOver: { name: rect, color: checkedOver }, + checkBoxOn: { name: check-on, color: up }, + checkBoxOff: { name: check, color: up }, + checkBoxOver: { name: check, color: over }, + checkBoxOnDisabled: { name: check-on, color: disabled }, + checkBoxOffDisabled: { name: check, color: disabled }, + icon: { name: check-on, color: font }, + selection: { name: dot, color: selection }, + list: { name: rect, color: background }, + progressHorizontal: { name: line-v, color: up }, + progressHorizontalKnob: { name: line-v, color: down }, + progressHorizontalDisabled: { name: line-v, color: disabled }, + progressHorizontalKnobDisabled: { name: line-v, color: disabled }, + progressVertical: { name: line-h, color: up }, + progressVerticalKnob: { name: line-h, color: down }, + progressVerticalDisabled: { name: line-h, color: disabled }, + progressVerticalKnobDisabled: { name: line-h, color: disabled }, + scrollHorizontal: { name: line-v, color: up }, + scrollVertical: { name: line-h, color: up }, + scrollKnob: { name: knob-v, color: down }, + scrollKnobVertical: { name: knob-h, color: down }, + scrollPane: { name: rect, color: background }, + selectBox: { name: select, color: up }, + selectOver: { name: select, color: over }, + selectDown: { name: select, color: over }, + selectDisabled: { name: select, color: disabled }, + selectList: { name: rect, color: over }, + splitPane: { name: square, color: down }, + sliderHorizontal: { name: square, color: up }, + sliderKnob: { name: rect, color: up }, + sliderKnobOver: { name: rect, color: over }, + sliderKnobDown: { name: rect, color: down }, + sliderKnobDisabled: { name: rect, color: disabled }, + sliderVertical: { name: square, color: up }, + sliderVerticalKnob: { name: rect, color: up }, + sliderVerticalKnobOver: { name: rect, color: over }, + sliderVerticalKnobDown: { name: rect, color: down }, + sliderVerticalKnobDisabled: { name: rect, color: disabled }, + textField: { name: rect, color: up }, + textFieldDown: { name: rect, color: over }, + textFieldDisabled: { name: rect, color: disabled }, + textFieldCursor: { name: dot, color: font }, + tooltip: { name: rect, color: up }, + touchpad: { name: rect, color: over }, + touchpadKnob: { name: check-on, color: down }, + tree: { name: rect, color: background }, + treeOver: { name: dot, color: over }, + treeMinus: { name: tree-minus, color: up }, + treePlus: { name: tree-plus, color: up }, + window: { name: rect, color: background }, + windowResize: { name: window-resize, color: background }, + windowBorder: { name: window-border, color: background }, + alpha: { name: dot, color: semiTransparent } + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, disabled: buttonDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { checkboxOn: checkBoxOn, checkboxOff: checkBoxOff, checkboxOver: checkBoxOver, checkboxOnDisabled: checkBoxOnDisabled, + checkboxOffDisabled: checkBoxOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, imageUp: icon } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1, imageUp: icon } + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default, fontColor: font }, + white: { font: default, fontColor: white } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default }, + background: { background: list, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + }, + com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: progressHorizontal, knobBefore: progressHorizontalKnob, + disabledBackground: progressHorizontalDisabled, disabledKnobBefore: progressHorizontalKnobDisabled }, + default-vertical: { background: progressVertical, knobBefore: progressVerticalKnob, + disabledBackground: progressVerticalDisabled, disabledKnobBefore: progressVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { hScrollKnob: scrollKnob, vScrollKnob: scrollKnobVertical, hScroll: scrollHorizontal, vScroll: scrollVertical }, + clean: { hScrollKnob: scrollKnob, vScrollKnob: scrollKnobVertical }, + background: { background: scrollPane, hScrollKnob: scrollKnob, vScrollKnob: scrollKnobVertical, hScroll: scrollHorizontal, vScroll: scrollVertical } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { font: default, fontColor: font, disabledFontColor: fontDisabled, background: selectBox, backgroundOver: selectOver, + backgroundOpen: selectDown, backgroundDisabled: selectDisabled, scrollStyle: default, listStyle: + { background: selectList, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: sliderHorizontal, knob: sliderKnob, knobOver: sliderKnobOver, knobDown: sliderKnobDown, + disabledKnob: sliderKnobDisabled }, + default-vertical: { background: sliderVertical, knob: sliderVerticalKnob, knobOver: sliderVerticalKnobOver, + knobDown: sliderVerticalKnobDown, disabledKnob: sliderVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitPane }, + default-horizontal: { handle: splitPane } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, + disabled: buttonDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: + fontDisabled, checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, pressedOffsetY: -1, pressedOffsetX: 1 }, + text: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: disabled, + pressedOffsetY: -1, pressedOffsetX: 1 }, + textToggle: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: + disabled, checkedFontColor: font, checkedOverFontColor: fontOver, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { font: default, messageFont: default, fontColor: font, focusedFontColor: fontOver, disabledFontColor: fontDisabled, + messageFontColor: fontDown, background: textField, focusedBackground: textFieldDown, disabledBackground: textFieldDisabled, + cursor: textFieldCursor, selection: selection } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { label: default, background: tooltip } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpadKnob } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: treeMinus, plus: treePlus, selection: selection, over: treeOver }, + background: { background: tree, minus: treeMinus, plus: treePlus, selection: selection, over: treeOver } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default, background: window, titleFontColor: fontDisabled }, + resize: { titleFont: default, background: windowResize, titleFontColor: fontDisabled }, + border: { titleFont: default, background: windowBorder, titleFontColor: fontDisabled }, + dialog: { titleFont: default, background: window, titleFontColor: fontDisabled, stageBackground: alpha } + } +} diff --git a/src/main/resources/omni_power/gdx-skins/flat/skin/skin.png b/src/main/resources/omni_power/gdx-skins/flat/skin/skin.png new file mode 100644 index 0000000..ff6efb7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/flat/skin/skin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/README.md b/src/main/resources/omni_power/gdx-skins/freezing/README.md new file mode 100644 index 0000000..2e2730f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/README.md @@ -0,0 +1,22 @@ +# Freezing UI + +``` +Freezing UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Freezing UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Winter themed. + +![Freezing](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/freezing-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/freezing/preview.png b/src/main/resources/omni_power/gdx-skins/freezing/preview.png new file mode 100644 index 0000000..36f3a7b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/button-down.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/button-down.9.png new file mode 100644 index 0000000..c721092 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/button-down.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/button-down.png new file mode 100644 index 0000000..b55b9b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/button-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/button.9.png new file mode 100644 index 0000000..4deb4ec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/button.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/button.png new file mode 100644 index 0000000..2f2d27a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/checkbox copy.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/checkbox copy.png new file mode 100644 index 0000000..d37b2a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/checkbox copy.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/checkbox.png new file mode 100644 index 0000000..75757a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button-export.fnt new file mode 100644 index 0000000..eebd8ab --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=27 base=27 scaleW=165 scaleH=167 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=155 y=92 width=5 height=21 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=40 y=87 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=56 y=67 width=15 height=20 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=143 y=47 width=12 height=31 xoffset=0 yoffset=1 xadvance=14 page=0 chnl=0 letter="$" +char id=37 x=0 y=113 width=20 height=20 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=56 y=45 width=15 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=14 y=149 width=4 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=143 y=135 width=7 height=22 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=144 y=24 width=7 height=22 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=130 y=159 width=6 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=39 y=141 width=16 height=15 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=137 y=159 width=5 height=7 xoffset=0 yoffset=27 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=30 y=158 width=10 height=4 xoffset=0 yoffset=15 xadvance=12 page=0 chnl=0 letter="-" +char id=46 x=49 y=162 width=5 height=4 xoffset=0 yoffset=23 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=131 y=24 width=12 height=22 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=73 y=0 width=14 height=22 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=72 y=48 width=15 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="1" +char id=50 x=72 y=132 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=116 y=112 width=13 height=19 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=21 y=113 width=17 height=19 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="4" +char id=53 x=56 y=143 width=15 height=19 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="5" +char id=54 x=87 y=139 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="6" +char id=55 x=103 y=0 width=13 height=21 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="7" +char id=56 x=40 y=48 width=15 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="8" +char id=57 x=88 y=0 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=158 y=133 width=4 height=13 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=154 y=116 width=5 height=16 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=143 y=79 width=12 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="<" +char id=61 x=0 y=149 width=13 height=7 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=0 letter="=" +char id=62 x=72 y=154 width=12 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter=">" +char id=63 x=143 y=116 width=10 height=18 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=0 y=73 width=21 height=23 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="@" +char id=65 x=56 y=102 width=15 height=24 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="A" +char id=66 x=131 y=47 width=11 height=23 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="B" +char id=67 x=88 y=22 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="C" +char id=68 x=117 y=48 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=117 y=0 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=117 y=24 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="F" +char id=71 x=20 y=134 width=18 height=23 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=41 y=21 width=15 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=143 y=92 width=11 height=23 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=131 y=0 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="J" +char id=75 x=39 y=117 width=16 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=130 y=135 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="L" +char id=77 x=0 y=25 width=23 height=23 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=72 y=24 width=15 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=57 y=0 width=15 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="O" +char id=80 x=102 y=136 width=13 height=23 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="P" +char id=81 x=24 y=0 width=16 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=88 y=46 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="R" +char id=83 x=102 y=112 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="S" +char id=84 x=130 y=111 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="T" +char id=85 x=102 y=88 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="U" +char id=86 x=130 y=72 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="V" +char id=87 x=0 y=49 width=21 height=23 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 letter="W" +char id=88 x=24 y=24 width=16 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=87 y=115 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=87 y=91 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=151 y=135 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=117 y=89 width=12 height=22 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="\" +char id=93 x=152 y=0 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=18 y=158 width=11 height=8 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=158 width=17 height=2 xoffset=0 yoffset=31 xadvance=19 page=0 chnl=0 letter="_" +char id=96 x=49 y=157 width=6 height=4 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=117 y=72 width=12 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=72 y=70 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=103 y=58 width=12 height=11 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="c" +char id=100 x=39 y=95 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="d" +char id=101 x=72 y=115 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=22 y=71 width=17 height=23 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="f" +char id=103 x=87 y=70 width=14 height=20 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="g" +char id=104 x=116 y=132 width=13 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="h" +char id=105 x=156 y=67 width=4 height=18 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=159 y=0 width=4 height=25 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=103 y=22 width=13 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=156 y=44 width=5 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=97 width=21 height=15 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=40 y=71 width=15 height=15 xoffset=0 yoffset=12 xadvance=17 page=0 chnl=0 letter="n" +char id=111 x=116 y=153 width=13 height=13 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=41 y=0 width=15 height=20 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=22 y=49 width=17 height=21 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="q" +char id=114 x=103 y=43 width=13 height=14 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="r" +char id=115 x=102 y=70 width=14 height=17 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="s" +char id=116 x=57 y=24 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=56 y=88 width=15 height=13 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=56 y=127 width=15 height=15 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=134 width=19 height=14 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="w" +char id=120 x=22 y=95 width=16 height=15 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="x" +char id=121 x=72 y=92 width=14 height=22 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="y" +char id=122 x=130 y=96 width=12 height=14 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="z" +char id=123 x=144 y=0 width=7 height=23 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=161 y=67 width=3 height=24 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=152 y=21 width=6 height=22 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=0 y=161 width=12 height=4 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=41 y=157 width=7 height=6 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=23 height=24 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button-export.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button-export.png new file mode 100644 index 0000000..3dba5bf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button.png new file mode 100644 index 0000000..82ba316 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-export.fnt new file mode 100644 index 0000000..4731438 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=104 scaleH=104 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=91 y=61 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=56 y=51 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=36 y=12 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=83 y=0 width=7 height=19 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=29 width=13 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=45 y=76 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=62 y=51 width=2 height=4 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=91 y=0 width=5 height=13 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=91 y=14 width=5 height=13 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=91 y=28 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=14 y=68 width=10 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=20 y=97 width=3 height=4 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=12 y=97 width=7 height=2 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=14 y=78 width=4 height=2 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=90 y=76 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=65 y=71 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=45 y=89 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=46 y=14 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=65 y=44 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=0 y=81 width=11 height=11 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=36 y=24 width=9 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=46 y=43 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=74 y=74 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=15 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=36 y=49 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=97 y=0 width=3 height=8 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=97 y=9 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=74 y=42 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=46 y=56 width=8 height=5 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=83 y=57 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=83 y=76 width=6 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=52 width=13 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=55 y=56 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=82 y=88 width=7 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=74 y=28 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=65 y=29 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=35 y=81 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=74 y=0 width=8 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=12 y=81 width=11 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=15 y=14 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=83 y=29 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=83 y=43 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=14 y=53 width=10 height=14 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=65 y=85 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=14 width=14 height=14 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=65 y=56 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=25 y=42 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=74 y=88 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=14 y=39 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=46 y=28 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=65 y=0 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=56 y=37 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=56 y=23 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=65 y=14 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=66 width=13 height=14 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=25 y=56 width=10 height=14 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=55 y=71 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=46 y=0 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=96 y=60 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=90 y=90 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=96 y=33 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=25 y=71 width=7 height=5 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=12 y=95 width=10 height=1 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=26 y=24 width=3 height=3 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=83 y=66 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=45 y=62 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=35 y=96 width=8 height=7 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=36 y=36 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=56 y=13 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=25 y=28 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=36 y=0 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=74 y=15 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=97 y=20 width=3 height=10 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=98 y=73 width=3 height=15 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=56 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=91 y=47 width=4 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=42 width=13 height=9 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=26 y=0 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=55 y=95 width=8 height=8 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=24 y=91 width=10 height=12 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=24 y=78 width=10 height=12 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=36 y=62 width=8 height=8 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=74 y=63 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=74 y=51 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=55 y=86 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=35 y=71 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=93 width=11 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=14 y=29 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=26 y=10 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=83 y=20 width=7 height=8 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=91 y=33 width=4 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=101 y=0 width=2 height=15 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=96 y=46 width=4 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=12 y=100 width=7 height=2 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=64 y=100 width=4 height=3 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=14 height=13 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-export.png new file mode 100644 index 0000000..17e1564 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title-export.fnt new file mode 100644 index 0000000..dfe4f16 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=42 base=42 scaleW=251 scaleH=251 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=232 y=67 width=9 height=31 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="!" +char id=34 x=164 y=238 width=12 height=12 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter=""" +char id=35 x=82 y=198 width=22 height=30 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="#" +char id=36 x=193 y=86 width=19 height=45 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="$" +char id=37 x=0 y=142 width=30 height=29 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter="%" +char id=38 x=82 y=94 width=23 height=32 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=205 y=36 width=7 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="'" +char id=40 x=229 y=0 width=13 height=32 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="(" +char id=41 x=214 y=0 width=14 height=32 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=151 y=238 width=12 height=12 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="*" +char id=43 x=82 y=127 width=23 height=22 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="+" +char id=44 x=194 y=36 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=58 y=135 width=16 height=7 xoffset=0 yoffset=23 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=106 y=139 width=10 height=9 xoffset=0 yoffset=32 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=151 y=132 width=20 height=34 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=128 y=211 width=22 height=33 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=58 y=103 width=23 height=31 xoffset=0 yoffset=10 xadvance=25 page=0 chnl=0 letter="1" +char id=50 x=105 y=186 width=22 height=32 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="2" +char id=51 x=172 y=203 width=20 height=31 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="3" +char id=52 x=31 y=144 width=25 height=29 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="4" +char id=53 x=105 y=219 width=22 height=29 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=130 y=36 width=21 height=31 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="6" +char id=55 x=151 y=68 width=21 height=31 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="7" +char id=56 x=61 y=36 width=23 height=33 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="8" +char id=57 x=108 y=36 width=21 height=32 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="9" +char id=58 x=231 y=165 width=8 height=20 xoffset=0 yoffset=21 xadvance=10 page=0 chnl=0 letter=":" +char id=59 x=224 y=225 width=9 height=24 xoffset=0 yoffset=21 xadvance=11 page=0 chnl=0 letter=";" +char id=60 x=193 y=228 width=19 height=20 xoffset=0 yoffset=16 xadvance=21 page=0 chnl=0 letter="<" +char id=61 x=31 y=180 width=20 height=13 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0 letter="=" +char id=62 x=174 y=0 width=19 height=20 xoffset=0 yoffset=16 xadvance=21 page=0 chnl=0 letter=">" +char id=63 x=213 y=191 width=16 height=27 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="?" +char id=64 x=0 y=108 width=30 height=33 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=0 letter="@" +char id=65 x=128 y=139 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="A" +char id=66 x=213 y=119 width=17 height=35 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="B" +char id=67 x=172 y=132 width=20 height=34 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=193 y=50 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="D" +char id=69 x=172 y=167 width=20 height=35 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="E" +char id=70 x=173 y=50 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="F" +char id=71 x=29 y=196 width=27 height=35 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0 letter="G" +char id=72 x=61 y=0 width=23 height=35 xoffset=0 yoffset=7 xadvance=25 page=0 chnl=0 letter="H" +char id=73 x=213 y=155 width=17 height=35 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="I" +char id=74 x=213 y=36 width=18 height=35 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="J" +char id=75 x=57 y=144 width=24 height=35 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="K" +char id=76 x=151 y=202 width=20 height=35 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=35 height=35 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter="M" +char id=78 x=105 y=150 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="N" +char id=79 x=106 y=103 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=173 y=86 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="P" +char id=81 x=36 y=0 width=24 height=35 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="Q" +char id=82 x=108 y=0 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="R" +char id=83 x=193 y=168 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="S" +char id=84 x=193 y=132 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="T" +char id=85 x=85 y=0 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="U" +char id=86 x=194 y=0 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="V" +char id=87 x=0 y=72 width=31 height=35 xoffset=0 yoffset=7 xadvance=33 page=0 chnl=0 letter="W" +char id=88 x=31 y=108 width=26 height=35 xoffset=0 yoffset=7 xadvance=28 page=0 chnl=0 letter="X" +char id=89 x=57 y=180 width=24 height=35 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="Y" +char id=90 x=128 y=175 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="Z" +char id=91 x=231 y=133 width=9 height=31 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="[" +char id=92 x=151 y=167 width=20 height=34 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=213 y=219 width=10 height=31 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="]" +char id=94 x=28 y=232 width=20 height=12 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=0 y=242 width=25 height=7 xoffset=0 yoffset=43 xadvance=27 page=0 chnl=0 letter="_" +char id=96 x=117 y=139 width=10 height=8 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=213 y=72 width=18 height=26 xoffset=0 yoffset=16 xadvance=20 page=0 chnl=0 letter="a" +char id=98 x=85 y=36 width=22 height=32 xoffset=0 yoffset=10 xadvance=24 page=0 chnl=0 letter="b" +char id=99 x=213 y=99 width=17 height=19 xoffset=0 yoffset=22 xadvance=19 page=0 chnl=0 letter="c" +char id=100 x=57 y=216 width=24 height=32 xoffset=0 yoffset=10 xadvance=26 page=0 chnl=0 letter="d" +char id=101 x=152 y=31 width=20 height=25 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=35 y=36 width=25 height=34 xoffset=0 yoffset=7 xadvance=27 page=0 chnl=0 letter="f" +char id=103 x=129 y=69 width=21 height=30 xoffset=0 yoffset=20 xadvance=23 page=0 chnl=0 letter="g" +char id=104 x=129 y=100 width=21 height=30 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="h" +char id=105 x=242 y=171 width=8 height=28 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="i" +char id=106 x=241 y=133 width=8 height=37 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=131 y=0 width=21 height=30 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="k" +char id=108 x=232 y=33 width=9 height=33 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=0 y=172 width=30 height=23 xoffset=0 yoffset=18 xadvance=32 page=0 chnl=0 letter="m" +char id=110 x=82 y=150 width=22 height=24 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=82 y=229 width=19 height=21 xoffset=0 yoffset=20 xadvance=21 page=0 chnl=0 letter="o" +char id=112 x=58 y=71 width=23 height=31 xoffset=0 yoffset=20 xadvance=25 page=0 chnl=0 letter="p" +char id=113 x=32 y=72 width=25 height=32 xoffset=0 yoffset=19 xadvance=27 page=0 chnl=0 letter="q" +char id=114 x=153 y=0 width=20 height=22 xoffset=0 yoffset=19 xadvance=22 page=0 chnl=0 letter="r" +char id=115 x=173 y=23 width=20 height=26 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="s" +char id=116 x=151 y=100 width=21 height=31 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="t" +char id=117 x=82 y=175 width=22 height=22 xoffset=0 yoffset=19 xadvance=24 page=0 chnl=0 letter="u" +char id=118 x=82 y=70 width=23 height=23 xoffset=0 yoffset=19 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=0 y=196 width=28 height=22 xoffset=0 yoffset=19 xadvance=30 page=0 chnl=0 letter="w" +char id=120 x=0 y=219 width=27 height=22 xoffset=0 yoffset=19 xadvance=29 page=0 chnl=0 letter="x" +char id=121 x=106 y=69 width=22 height=33 xoffset=0 yoffset=21 xadvance=24 page=0 chnl=0 letter="y" +char id=122 x=193 y=204 width=19 height=23 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="z" +char id=123 x=230 y=191 width=11 height=33 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="{" +char id=124 x=242 y=200 width=6 height=35 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=231 y=99 width=11 height=33 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="}" +char id=126 x=129 y=131 width=18 height=7 xoffset=0 yoffset=23 xadvance=20 page=0 chnl=0 letter="~" +char id=8226 x=177 y=235 width=11 height=11 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=36 width=34 height=35 xoffset=0 yoffset=7 xadvance=36 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=104 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title-export.png new file mode 100644 index 0000000..7f08e67 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title.png new file mode 100644 index 0000000..e2f7082 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/font.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/font.png new file mode 100644 index 0000000..0f36742 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/list.9.png new file mode 100644 index 0000000..8d58e92 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/list.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/list.png new file mode 100644 index 0000000..81f07e4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/progress-bar-knob.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/progress-bar-knob.png new file mode 100644 index 0000000..d251173 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/progress-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/progress-bar.png new file mode 100644 index 0000000..08f6c0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-horizontal.9.png new file mode 100644 index 0000000..f0e3371 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..06ddf98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..46a003c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-vertical.png new file mode 100644 index 0000000..060b0ab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box-pressed.9.png new file mode 100644 index 0000000..73b0945 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box-pressed.png new file mode 100644 index 0000000..2d41e9b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box.9.png new file mode 100644 index 0000000..9666e26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box.png new file mode 100644 index 0000000..20f6606 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-horizontal.9.png new file mode 100644 index 0000000..dc6486d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-horizontal.png new file mode 100644 index 0000000..f66c1e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-knob.png new file mode 100644 index 0000000..3811a92 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-vertical.9.png new file mode 100644 index 0000000..717ef95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-vertical.png new file mode 100644 index 0000000..4442af1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-horizontal.9.png new file mode 100644 index 0000000..e77e636 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-horizontal.png new file mode 100644 index 0000000..b9e0b83 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-vertical.9.png new file mode 100644 index 0000000..5a193a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-vertical.png new file mode 100644 index 0000000..2e15fd6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/textfield.9.png new file mode 100644 index 0000000..7adfbcb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/textfield.png new file mode 100644 index 0000000..ac9aeee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/touchpad-knob.png new file mode 100644 index 0000000..8b7d43a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/touchpad.png new file mode 100644 index 0000000..efbf7ba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/tree-minus.png new file mode 100644 index 0000000..b5409f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/tree-plus.png new file mode 100644 index 0000000..6b93bad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/white.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/window.9.png new file mode 100644 index 0000000..03e5f78 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/raw/window.png b/src/main/resources/omni_power/gdx-skins/freezing/raw/window.png new file mode 100644 index 0000000..8da29e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/freezing/skin/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/freezing/skin/font-button-export.fnt new file mode 100644 index 0000000..eebd8ab --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/skin/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=27 base=27 scaleW=165 scaleH=167 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=155 y=92 width=5 height=21 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=40 y=87 width=7 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=56 y=67 width=15 height=20 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=143 y=47 width=12 height=31 xoffset=0 yoffset=1 xadvance=14 page=0 chnl=0 letter="$" +char id=37 x=0 y=113 width=20 height=20 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=56 y=45 width=15 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=14 y=149 width=4 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=143 y=135 width=7 height=22 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=144 y=24 width=7 height=22 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=130 y=159 width=6 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=39 y=141 width=16 height=15 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=137 y=159 width=5 height=7 xoffset=0 yoffset=27 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=30 y=158 width=10 height=4 xoffset=0 yoffset=15 xadvance=12 page=0 chnl=0 letter="-" +char id=46 x=49 y=162 width=5 height=4 xoffset=0 yoffset=23 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=131 y=24 width=12 height=22 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=73 y=0 width=14 height=22 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=72 y=48 width=15 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="1" +char id=50 x=72 y=132 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=116 y=112 width=13 height=19 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=21 y=113 width=17 height=19 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="4" +char id=53 x=56 y=143 width=15 height=19 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="5" +char id=54 x=87 y=139 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="6" +char id=55 x=103 y=0 width=13 height=21 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="7" +char id=56 x=40 y=48 width=15 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="8" +char id=57 x=88 y=0 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=158 y=133 width=4 height=13 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=154 y=116 width=5 height=16 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=143 y=79 width=12 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="<" +char id=61 x=0 y=149 width=13 height=7 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=0 letter="=" +char id=62 x=72 y=154 width=12 height=12 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter=">" +char id=63 x=143 y=116 width=10 height=18 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=0 y=73 width=21 height=23 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="@" +char id=65 x=56 y=102 width=15 height=24 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="A" +char id=66 x=131 y=47 width=11 height=23 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="B" +char id=67 x=88 y=22 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="C" +char id=68 x=117 y=48 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=117 y=0 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=117 y=24 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="F" +char id=71 x=20 y=134 width=18 height=23 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=41 y=21 width=15 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=143 y=92 width=11 height=23 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=131 y=0 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="J" +char id=75 x=39 y=117 width=16 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=130 y=135 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="L" +char id=77 x=0 y=25 width=23 height=23 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=72 y=24 width=15 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=57 y=0 width=15 height=23 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="O" +char id=80 x=102 y=136 width=13 height=23 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="P" +char id=81 x=24 y=0 width=16 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=88 y=46 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="R" +char id=83 x=102 y=112 width=13 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="S" +char id=84 x=130 y=111 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="T" +char id=85 x=102 y=88 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="U" +char id=86 x=130 y=72 width=12 height=23 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="V" +char id=87 x=0 y=49 width=21 height=23 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 letter="W" +char id=88 x=24 y=24 width=16 height=23 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=87 y=115 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=87 y=91 width=14 height=23 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=151 y=135 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=117 y=89 width=12 height=22 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="\" +char id=93 x=152 y=0 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=18 y=158 width=11 height=8 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=158 width=17 height=2 xoffset=0 yoffset=31 xadvance=19 page=0 chnl=0 letter="_" +char id=96 x=49 y=157 width=6 height=4 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=117 y=72 width=12 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=72 y=70 width=14 height=21 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=103 y=58 width=12 height=11 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="c" +char id=100 x=39 y=95 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="d" +char id=101 x=72 y=115 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=22 y=71 width=17 height=23 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="f" +char id=103 x=87 y=70 width=14 height=20 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="g" +char id=104 x=116 y=132 width=13 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="h" +char id=105 x=156 y=67 width=4 height=18 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=159 y=0 width=4 height=25 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=103 y=22 width=13 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=156 y=44 width=5 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=97 width=21 height=15 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=40 y=71 width=15 height=15 xoffset=0 yoffset=12 xadvance=17 page=0 chnl=0 letter="n" +char id=111 x=116 y=153 width=13 height=13 xoffset=0 yoffset=14 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=41 y=0 width=15 height=20 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=22 y=49 width=17 height=21 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="q" +char id=114 x=103 y=43 width=13 height=14 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="r" +char id=115 x=102 y=70 width=14 height=17 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="s" +char id=116 x=57 y=24 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=56 y=88 width=15 height=13 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=56 y=127 width=15 height=15 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=134 width=19 height=14 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="w" +char id=120 x=22 y=95 width=16 height=15 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="x" +char id=121 x=72 y=92 width=14 height=22 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="y" +char id=122 x=130 y=96 width=12 height=14 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="z" +char id=123 x=144 y=0 width=7 height=23 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=161 y=67 width=3 height=24 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=152 y=21 width=6 height=22 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=0 y=161 width=12 height=4 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=41 y=157 width=7 height=6 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=23 height=24 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/freezing/skin/font-export.fnt new file mode 100644 index 0000000..4731438 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=104 scaleH=104 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=91 y=61 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=56 y=51 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=36 y=12 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=83 y=0 width=7 height=19 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=29 width=13 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=45 y=76 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=62 y=51 width=2 height=4 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=91 y=0 width=5 height=13 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=91 y=14 width=5 height=13 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=91 y=28 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=14 y=68 width=10 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=20 y=97 width=3 height=4 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=12 y=97 width=7 height=2 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=14 y=78 width=4 height=2 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=90 y=76 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=65 y=71 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=45 y=89 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=46 y=14 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=65 y=44 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=0 y=81 width=11 height=11 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=36 y=24 width=9 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=46 y=43 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=74 y=74 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=15 y=0 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=36 y=49 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=97 y=0 width=3 height=8 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=97 y=9 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=74 y=42 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=46 y=56 width=8 height=5 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=83 y=57 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=83 y=76 width=6 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=52 width=13 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=55 y=56 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=82 y=88 width=7 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=74 y=28 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=65 y=29 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=35 y=81 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=74 y=0 width=8 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=12 y=81 width=11 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=15 y=14 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=83 y=29 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=83 y=43 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=14 y=53 width=10 height=14 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=65 y=85 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=14 width=14 height=14 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=65 y=56 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=25 y=42 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=74 y=88 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=14 y=39 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=46 y=28 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=65 y=0 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=56 y=37 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=56 y=23 width=8 height=13 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=65 y=14 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=66 width=13 height=14 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=25 y=56 width=10 height=14 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=55 y=71 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=46 y=0 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=96 y=60 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=90 y=90 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=96 y=33 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=25 y=71 width=7 height=5 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=12 y=95 width=10 height=1 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=26 y=24 width=3 height=3 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=83 y=66 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=45 y=62 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=35 y=96 width=8 height=7 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=36 y=36 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=56 y=13 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=25 y=28 width=10 height=13 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=36 y=0 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=74 y=15 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=97 y=20 width=3 height=10 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=98 y=73 width=3 height=15 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=56 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=91 y=47 width=4 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=42 width=13 height=9 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=26 y=0 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=55 y=95 width=8 height=8 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=24 y=91 width=10 height=12 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=24 y=78 width=10 height=12 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=36 y=62 width=8 height=8 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="r" +char id=115 x=74 y=63 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=74 y=51 width=8 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=55 y=86 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=35 y=71 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=93 width=11 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=14 y=29 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=26 y=10 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=83 y=20 width=7 height=8 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=91 y=33 width=4 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=101 y=0 width=2 height=15 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=96 y=46 width=4 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=12 y=100 width=7 height=2 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=64 y=100 width=4 height=3 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=14 height=13 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/freezing/skin/font-title-export.fnt new file mode 100644 index 0000000..dfe4f16 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=42 base=42 scaleW=251 scaleH=251 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=232 y=67 width=9 height=31 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="!" +char id=34 x=164 y=238 width=12 height=12 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter=""" +char id=35 x=82 y=198 width=22 height=30 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="#" +char id=36 x=193 y=86 width=19 height=45 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="$" +char id=37 x=0 y=142 width=30 height=29 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter="%" +char id=38 x=82 y=94 width=23 height=32 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=205 y=36 width=7 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="'" +char id=40 x=229 y=0 width=13 height=32 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="(" +char id=41 x=214 y=0 width=14 height=32 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=151 y=238 width=12 height=12 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="*" +char id=43 x=82 y=127 width=23 height=22 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="+" +char id=44 x=194 y=36 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=58 y=135 width=16 height=7 xoffset=0 yoffset=23 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=106 y=139 width=10 height=9 xoffset=0 yoffset=32 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=151 y=132 width=20 height=34 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=128 y=211 width=22 height=33 xoffset=0 yoffset=8 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=58 y=103 width=23 height=31 xoffset=0 yoffset=10 xadvance=25 page=0 chnl=0 letter="1" +char id=50 x=105 y=186 width=22 height=32 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="2" +char id=51 x=172 y=203 width=20 height=31 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="3" +char id=52 x=31 y=144 width=25 height=29 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="4" +char id=53 x=105 y=219 width=22 height=29 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=130 y=36 width=21 height=31 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="6" +char id=55 x=151 y=68 width=21 height=31 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="7" +char id=56 x=61 y=36 width=23 height=33 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="8" +char id=57 x=108 y=36 width=21 height=32 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="9" +char id=58 x=231 y=165 width=8 height=20 xoffset=0 yoffset=21 xadvance=10 page=0 chnl=0 letter=":" +char id=59 x=224 y=225 width=9 height=24 xoffset=0 yoffset=21 xadvance=11 page=0 chnl=0 letter=";" +char id=60 x=193 y=228 width=19 height=20 xoffset=0 yoffset=16 xadvance=21 page=0 chnl=0 letter="<" +char id=61 x=31 y=180 width=20 height=13 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0 letter="=" +char id=62 x=174 y=0 width=19 height=20 xoffset=0 yoffset=16 xadvance=21 page=0 chnl=0 letter=">" +char id=63 x=213 y=191 width=16 height=27 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="?" +char id=64 x=0 y=108 width=30 height=33 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=0 letter="@" +char id=65 x=128 y=139 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="A" +char id=66 x=213 y=119 width=17 height=35 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="B" +char id=67 x=172 y=132 width=20 height=34 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=193 y=50 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="D" +char id=69 x=172 y=167 width=20 height=35 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="E" +char id=70 x=173 y=50 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="F" +char id=71 x=29 y=196 width=27 height=35 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0 letter="G" +char id=72 x=61 y=0 width=23 height=35 xoffset=0 yoffset=7 xadvance=25 page=0 chnl=0 letter="H" +char id=73 x=213 y=155 width=17 height=35 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="I" +char id=74 x=213 y=36 width=18 height=35 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="J" +char id=75 x=57 y=144 width=24 height=35 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="K" +char id=76 x=151 y=202 width=20 height=35 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=35 height=35 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter="M" +char id=78 x=105 y=150 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="N" +char id=79 x=106 y=103 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=173 y=86 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="P" +char id=81 x=36 y=0 width=24 height=35 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="Q" +char id=82 x=108 y=0 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="R" +char id=83 x=193 y=168 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="S" +char id=84 x=193 y=132 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="T" +char id=85 x=85 y=0 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="U" +char id=86 x=194 y=0 width=19 height=35 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="V" +char id=87 x=0 y=72 width=31 height=35 xoffset=0 yoffset=7 xadvance=33 page=0 chnl=0 letter="W" +char id=88 x=31 y=108 width=26 height=35 xoffset=0 yoffset=7 xadvance=28 page=0 chnl=0 letter="X" +char id=89 x=57 y=180 width=24 height=35 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 letter="Y" +char id=90 x=128 y=175 width=22 height=35 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="Z" +char id=91 x=231 y=133 width=9 height=31 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="[" +char id=92 x=151 y=167 width=20 height=34 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=213 y=219 width=10 height=31 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="]" +char id=94 x=28 y=232 width=20 height=12 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=0 y=242 width=25 height=7 xoffset=0 yoffset=43 xadvance=27 page=0 chnl=0 letter="_" +char id=96 x=117 y=139 width=10 height=8 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=213 y=72 width=18 height=26 xoffset=0 yoffset=16 xadvance=20 page=0 chnl=0 letter="a" +char id=98 x=85 y=36 width=22 height=32 xoffset=0 yoffset=10 xadvance=24 page=0 chnl=0 letter="b" +char id=99 x=213 y=99 width=17 height=19 xoffset=0 yoffset=22 xadvance=19 page=0 chnl=0 letter="c" +char id=100 x=57 y=216 width=24 height=32 xoffset=0 yoffset=10 xadvance=26 page=0 chnl=0 letter="d" +char id=101 x=152 y=31 width=20 height=25 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=35 y=36 width=25 height=34 xoffset=0 yoffset=7 xadvance=27 page=0 chnl=0 letter="f" +char id=103 x=129 y=69 width=21 height=30 xoffset=0 yoffset=20 xadvance=23 page=0 chnl=0 letter="g" +char id=104 x=129 y=100 width=21 height=30 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="h" +char id=105 x=242 y=171 width=8 height=28 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="i" +char id=106 x=241 y=133 width=8 height=37 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=131 y=0 width=21 height=30 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="k" +char id=108 x=232 y=33 width=9 height=33 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=0 y=172 width=30 height=23 xoffset=0 yoffset=18 xadvance=32 page=0 chnl=0 letter="m" +char id=110 x=82 y=150 width=22 height=24 xoffset=0 yoffset=18 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=82 y=229 width=19 height=21 xoffset=0 yoffset=20 xadvance=21 page=0 chnl=0 letter="o" +char id=112 x=58 y=71 width=23 height=31 xoffset=0 yoffset=20 xadvance=25 page=0 chnl=0 letter="p" +char id=113 x=32 y=72 width=25 height=32 xoffset=0 yoffset=19 xadvance=27 page=0 chnl=0 letter="q" +char id=114 x=153 y=0 width=20 height=22 xoffset=0 yoffset=19 xadvance=22 page=0 chnl=0 letter="r" +char id=115 x=173 y=23 width=20 height=26 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="s" +char id=116 x=151 y=100 width=21 height=31 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="t" +char id=117 x=82 y=175 width=22 height=22 xoffset=0 yoffset=19 xadvance=24 page=0 chnl=0 letter="u" +char id=118 x=82 y=70 width=23 height=23 xoffset=0 yoffset=19 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=0 y=196 width=28 height=22 xoffset=0 yoffset=19 xadvance=30 page=0 chnl=0 letter="w" +char id=120 x=0 y=219 width=27 height=22 xoffset=0 yoffset=19 xadvance=29 page=0 chnl=0 letter="x" +char id=121 x=106 y=69 width=22 height=33 xoffset=0 yoffset=21 xadvance=24 page=0 chnl=0 letter="y" +char id=122 x=193 y=204 width=19 height=23 xoffset=0 yoffset=18 xadvance=21 page=0 chnl=0 letter="z" +char id=123 x=230 y=191 width=11 height=33 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="{" +char id=124 x=242 y=200 width=6 height=35 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=231 y=99 width=11 height=33 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="}" +char id=126 x=129 y=131 width=18 height=7 xoffset=0 yoffset=23 xadvance=20 page=0 chnl=0 letter="~" +char id=8226 x=177 y=235 width=11 height=11 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=36 width=34 height=35 xoffset=0 yoffset=7 xadvance=36 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=104 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.atlas b/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.atlas new file mode 100644 index 0000000..4a1d5c8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.atlas @@ -0,0 +1,214 @@ + +freezing-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 566, 957 + size: 156, 59 + split: 0, 0, 0, 0 + pad: 10, 12, 9, 15 + orig: 156, 59 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 338, 895 + size: 156, 59 + split: 0, 0, 0, 0 + pad: 10, 12, 12, 12 + orig: 156, 59 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 864, 991 + size: 36, 25 + orig: 36, 25 + offset: 0, 0 + index: -1 +checkbox copy + rotate: false + xy: 297, 829 + size: 36, 25 + orig: 36, 25 + offset: 0, 0 + index: -1 +font-button-export + rotate: false + xy: 1, 111 + size: 165, 167 + orig: 165, 167 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 168, 174 + size: 104, 104 + orig: 104, 104 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 280 + size: 251, 251 + orig: 251, 251 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 168, 100 + size: 95, 72 + split: 10, 74, 15, 51 + pad: 12, 16, 15, 14 + orig: 95, 72 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 1, 937 + size: 335, 79 + orig: 335, 79 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 1, 856 + size: 335, 79 + orig: 335, 79 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 1, 26 + size: 97, 43 + split: 49, 42, 0, 0 + pad: 0, 0, 0, 0 + orig: 97, 43 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 297, 781 + size: 22, 46 + split: 0, 0, 20, 21 + pad: 0, 0, 0, 0 + orig: 22, 46 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 1, 71 + size: 138, 38 + split: 54, 49, 0, 0 + pad: 14, 31, 10, 5 + orig: 138, 38 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 724, 978 + size: 138, 38 + split: 54, 49, 0, 0 + pad: 14, 31, 10, 5 + orig: 138, 38 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 724, 963 + size: 14, 13 + split: 1, 1, 0, 0 + pad: 0, 0, 0, 0 + orig: 14, 13 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 141, 96 + size: 13, 13 + orig: 13, 13 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 391, 879 + size: 13, 14 + split: 0, 0, 1, 1 + pad: 0, 0, 0, 0 + orig: 13, 14 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 496, 896 + size: 12, 44 + split: 0, 0, 7, 8 + pad: 0, 0, 0, 0 + orig: 12, 44 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 496, 942 + size: 44, 12 + split: 11, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 44, 12 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 338, 864 + size: 51, 29 + split: 6, 27, 5, 16 + pad: 4, 4, 3, 3 + orig: 51, 29 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 533 + size: 294, 321 + orig: 294, 321 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 254, 490 + size: 35, 41 + orig: 35, 41 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 100, 46 + size: 16, 23 + orig: 16, 23 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 1, 1 + size: 16, 23 + orig: 16, 23 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 265, 171 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 338, 956 + size: 226, 60 + split: 109, 111, 28, 10 + pad: 12, 12, 28, 10 + orig: 226, 60 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.json b/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.json new file mode 100644 index 0000000..1b72c22 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.json @@ -0,0 +1,216 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + button: { + file: font-button-export.fnt + } + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + button: { + r: 0.019607844 + g: 0.22352941 + b: 0.3372549 + a: 1 + } + dialog: { + r: 1 + g: 1 + b: 1 + a: 0.6 + } + progress-bar: { + r: 0 + g: 0.07094407 + b: 1 + a: 1 + } + selection: { + r: 0 + g: 0.72911096 + b: 1 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + slider-horizontal-p: { + name: slider-horizontal + color: progress-bar + } + slider-vertical-p: { + name: slider-vertical + color: progress-bar + } + selection: { + name: white + color: selection + } + black: { + name: white + color: black + } + dialog: { + name: white + color: dialog + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox copy + checkboxOff: checkbox + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: button + fontColor: button + up: button + down: button-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: white + } + button: { + font: button + fontColor: white + } + title: { + font: title + } + dark: { + font: font + fontColor: button + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: white + selection: selection + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: slider-horizontal + knobBefore: slider-horizontal-p + } + default-vertical: { + background: slider-vertical + knobBefore: slider-vertical-p + } + fancy: { + background: progress-bar + knobBefore: progress-bar-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: default + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider-horizontal + knob: slider-knob + } + default-vertical: { + background: slider-vertical + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: button + fontColor: button + up: button + down: button-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: button + background: textfield + cursor: black + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: tree-plus + minus: tree-minus + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: button + } + dialog: { + background: window + titleFont: font + titleFontColor: button + stageBackground: dialog + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.png b/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.png new file mode 100644 index 0000000..1e8407a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/freezing/skin/freezing-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/README.md b/src/main/resources/omni_power/gdx-skins/gdx-holo/README.md new file mode 100644 index 0000000..c172b37 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/README.md @@ -0,0 +1,12 @@ +# [Android Holo Theme](https://github.com/nooone/gdx-holo) + +This is an [alternative](../holo) skin based on the Android Holo theme. Simplistic and elegant. + +![Holo](preview.png) + +Seems to support all LibGDX widgets, including the new text tooltip. [Raw](raw) assets include a [USL](https://github.com/kotcrab/vis-editor/wiki/USL) skin file, which can be used to generate a standard JSON skin definition. You can check for updates in its [repository](https://github.com/nooone/gdx-holo). + +### License + +Give credit to [Daniel Holderbaum](https://github.com/nooone). + diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/preview.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/preview.png new file mode 100644 index 0000000..6fb3e66 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_disabled_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_disabled_focused_holo_light.png new file mode 100644 index 0000000..421fecf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_disabled_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_disabled_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_disabled_holo_light.png new file mode 100644 index 0000000..1854971 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_disabled_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_focused_holo_light.png new file mode 100644 index 0000000..a532259 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_holo_light.png new file mode 100644 index 0000000..ee82e14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_pressed_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_pressed_holo_light.png new file mode 100644 index 0000000..7fe6eb0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_off_pressed_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_disabled_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_disabled_focused_holo_light.png new file mode 100644 index 0000000..5b2ebe4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_disabled_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_disabled_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_disabled_holo_light.png new file mode 100644 index 0000000..d18697a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_disabled_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_focused_holo_light.png new file mode 100644 index 0000000..bcf286e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_holo_light.png new file mode 100644 index 0000000..3043509 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_pressed_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_pressed_holo_light.png new file mode 100644 index 0000000..c2387cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_check_on_pressed_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_disabled_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_disabled_focused_holo_light.9.png new file mode 100644 index 0000000..4454269 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_disabled_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_disabled_holo_light.9.png new file mode 100644 index 0000000..939e325 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_focused_holo_light.9.png new file mode 100644 index 0000000..5e09ba4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_normal_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_normal_holo_light.9.png new file mode 100644 index 0000000..4b47516 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_normal_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_pressed_holo_light.9.png new file mode 100644 index 0000000..d938a7e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_colored_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_disabled_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_disabled_focused_holo_light.9.png new file mode 100644 index 0000000..14aa0cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_disabled_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_disabled_holo_light.9.png new file mode 100644 index 0000000..ab62c32 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_focused_holo_light.9.png new file mode 100644 index 0000000..6212ad6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_normal_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_normal_holo_light.9.png new file mode 100644 index 0000000..b70c8a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_normal_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_pressed_holo_light.9.png new file mode 100644 index 0000000..66e3d51 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_default_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_disabled_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_disabled_focused_holo_light.png new file mode 100644 index 0000000..89bee24 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_disabled_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_disabled_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_disabled_holo_light.png new file mode 100644 index 0000000..42bcc78 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_disabled_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_focused_holo_light.png new file mode 100644 index 0000000..553d857 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_holo_light.png new file mode 100644 index 0000000..84e03cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_pressed_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_pressed_holo_light.png new file mode 100644 index 0000000..0aae7c1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_off_pressed_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_disabled_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_disabled_focused_holo_light.png new file mode 100644 index 0000000..79ebc6d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_disabled_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_disabled_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_disabled_holo_light.png new file mode 100644 index 0000000..cd1fdd0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_disabled_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_focused_holo_light.png new file mode 100644 index 0000000..9428741 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_holo_light.png new file mode 100644 index 0000000..b04d546 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_pressed_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_pressed_holo_light.png new file mode 100644 index 0000000..446d273 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_radio_on_pressed_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_focused_holo_light.png new file mode 100644 index 0000000..66d7e30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_normal_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_normal_holo_light.png new file mode 100644 index 0000000..c66a154 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_normal_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_pressed_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_pressed_holo_light.png new file mode 100644 index 0000000..323b8be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_off_pressed_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_focused_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_focused_holo_light.png new file mode 100644 index 0000000..de073a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_focused_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_normal_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_normal_holo_light.png new file mode 100644 index 0000000..04ef5af Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_normal_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_pressed_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_pressed_holo_light.png new file mode 100644 index 0000000..fc2396b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_rating_star_on_pressed_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_disabled_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_disabled_focused_holo_light.9.png new file mode 100644 index 0000000..4663ba5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_disabled_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_disabled_holo_light.9.png new file mode 100644 index 0000000..2d63a29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_focused_holo_light.9.png new file mode 100644 index 0000000..1cd910a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_normal_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_normal_holo_light.9.png new file mode 100644 index 0000000..43ca95d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_normal_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_pressed_holo_light.9.png new file mode 100644 index 0000000..086f7a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_off_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_disabled_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_disabled_focused_holo_light.9.png new file mode 100644 index 0000000..cbff9db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_disabled_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_disabled_holo_light.9.png new file mode 100644 index 0000000..74455c4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_focused_holo_light.9.png new file mode 100644 index 0000000..ab890f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_normal_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_normal_holo_light.9.png new file mode 100644 index 0000000..95c183c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_normal_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_pressed_holo_light.9.png new file mode 100644 index 0000000..35ce085 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_btn_toggle_on_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo.png new file mode 100644 index 0000000..5fc1027 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo_h.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo_h.9.png new file mode 100644 index 0000000..9c31b95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo_h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo_v.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo_v.9.png new file mode 100644 index 0000000..767f86e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_default_holo_v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo.png new file mode 100644 index 0000000..5872722 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo_h.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo_h.9.png new file mode 100644 index 0000000..42e901b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo_h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo_v.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo_v.9.png new file mode 100644 index 0000000..2908654 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_fastscroll_thumb_pressed_holo_v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_ic_navigation_drawer.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_ic_navigation_drawer.png new file mode 100644 index 0000000..2fa68a9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_ic_navigation_drawer.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_activated_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_activated_holo.9.png new file mode 100644 index 0000000..75a48c4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_activated_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_focused_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_focused_holo.9.png new file mode 100644 index 0000000..ad6e8b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_focused_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_longpressed_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_longpressed_holo.9.png new file mode 100644 index 0000000..2b1738d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_longpressed_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_pressed_holo_light.9.png new file mode 100644 index 0000000..5942166 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_selector_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_selector_disabled_holo_light.9.png new file mode 100644 index 0000000..3ef729c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_list_selector_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_bg_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_bg_holo_light.9.png new file mode 100644 index 0000000..69347d3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_bg_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_primary_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_primary_holo_light.9.png new file mode 100644 index 0000000..a0852a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_primary_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_secondary_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_secondary_holo_light.9.png new file mode 100644 index 0000000..a80f8e1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_secondary_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_vertical_bg_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_vertical_bg_holo_light.9.png new file mode 100644 index 0000000..0689001 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_vertical_bg_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_vertical_primary_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_vertical_primary_holo_light.9.png new file mode 100644 index 0000000..97149b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progress_vertical_primary_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo1.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo1.png new file mode 100644 index 0000000..6fb3dd8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo2.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo2.png new file mode 100644 index 0000000..3603f06 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo3.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo3.png new file mode 100644 index 0000000..7d96a40 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo4.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo4.png new file mode 100644 index 0000000..aa21bba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo4.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo5.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo5.png new file mode 100644 index 0000000..48901a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo5.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo6.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo6.png new file mode 100644 index 0000000..6d95e94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo6.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo7.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo7.png new file mode 100644 index 0000000..d1425fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo7.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo8.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo8.png new file mode 100644 index 0000000..96e640e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_progressbar_indeterminate_holo8.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_half_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_half_holo_light.png new file mode 100644 index 0000000..23bbe02 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_half_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_off_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_off_holo_light.png new file mode 100644 index 0000000..de56636 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_off_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_on_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_on_holo_light.png new file mode 100644 index 0000000..1a0d3df Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_big_on_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_half_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_half_holo_light.png new file mode 100644 index 0000000..450ba92 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_half_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_off_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_off_holo_light.png new file mode 100644 index 0000000..c818f80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_off_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_on_holo_light.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_on_holo_light.png new file mode 100644 index 0000000..384360a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_rate_star_small_on_holo_light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_disabled_holo.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_disabled_holo.png new file mode 100644 index 0000000..e4dd7aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_disabled_holo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_focused_holo.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_focused_holo.png new file mode 100644 index 0000000..4d8ebda Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_focused_holo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_normal_holo.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_normal_holo.png new file mode 100644 index 0000000..eacbd88 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_normal_holo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_pressed_holo.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_pressed_holo.png new file mode 100644 index 0000000..363475e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_control_pressed_holo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_primary_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_primary_holo.9.png new file mode 100644 index 0000000..5455517 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_primary_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_secondary_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_secondary_holo.9.png new file mode 100644 index 0000000..bf44b82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_secondary_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_track_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_track_holo_light.9.png new file mode 100644 index 0000000..7412549 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_scrubber_track_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_slider_knob.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_slider_knob.png new file mode 100644 index 0000000..d53ef7b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_slider_knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_disabled_holo_light.9.png new file mode 100644 index 0000000..2e99c41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_focused_holo_light.9.png new file mode 100644 index 0000000..290d099 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_normal_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_normal_holo_light.9.png new file mode 100644 index 0000000..c7549f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_normal_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_pressed_holo_light.9.png new file mode 100644 index 0000000..719d89e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_colored_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_default_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_default_holo_light.9.png new file mode 100644 index 0000000..51b2d7d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_default_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_disabled_holo_light.9.png new file mode 100644 index 0000000..27d7b19 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_focused_holo_light.9.png new file mode 100644 index 0000000..38febb3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_pressed_holo_light.9.png new file mode 100644 index 0000000..6b121e8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_spinner_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_disabled_holo_light.9.png new file mode 100644 index 0000000..10edd8b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_focused_holo_light.9.png new file mode 100644 index 0000000..fc54d0b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_holo_light.9.png new file mode 100644 index 0000000..c04b327 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_bg_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_activated_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_activated_holo_light.9.png new file mode 100644 index 0000000..c4b8549 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_activated_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_disabled_holo_light.9.png new file mode 100644 index 0000000..9f3d8be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_holo_light.9.png new file mode 100644 index 0000000..ecca7cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_pressed_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_pressed_holo_light.9.png new file mode 100644 index 0000000..c533321 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_switch_thumb_pressed_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_focused_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_focused_holo.9.png new file mode 100644 index 0000000..ed6bbd3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_focused_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_holo.9.png new file mode 100644 index 0000000..1a33031 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_pressed_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_pressed_holo.9.png new file mode 100644 index 0000000..80e8fb3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_selected_pressed_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_focused_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_focused_holo.9.png new file mode 100644 index 0000000..1bb85b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_focused_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_holo.9.png new file mode 100644 index 0000000..7303f9d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_pressed_holo.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_pressed_holo.9.png new file mode 100644 index 0000000..33f8cd6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_tab_unselected_pressed_holo.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_left.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_left.png new file mode 100644 index 0000000..7f09e36 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_middle.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_middle.png new file mode 100644 index 0000000..35464b9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_middle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_right.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_right.png new file mode 100644 index 0000000..eb82abc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_text_select_handle_right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_default_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_default_holo_light.9.png new file mode 100644 index 0000000..ea9e296 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_default_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_disabled_holo_light.9.png new file mode 100644 index 0000000..aa8e486 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_focused_holo_light.9.png new file mode 100644 index 0000000..fe5bbbb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textarea_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_activated_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_activated_holo_light.9.png new file mode 100644 index 0000000..4de52e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_activated_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_default_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_default_holo_light.9.png new file mode 100644 index 0000000..afa46b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_default_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_disabled_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_disabled_focused_holo_light.9.png new file mode 100644 index 0000000..a22fa1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_disabled_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_disabled_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_disabled_holo_light.9.png new file mode 100644 index 0000000..77bcfdd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_disabled_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_focused_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_focused_holo_light.9.png new file mode 100644 index 0000000..243e2c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/apptheme_textfield_focused_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/card.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/card.9.png new file mode 100644 index 0000000..a22ee3d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/card.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/cursor.9.png new file mode 100644 index 0000000..3945fdf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default-splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default-splitpane-vertical.9.png new file mode 100644 index 0000000..f6cffa3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default-splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default-splitpane.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default-splitpane.9.png new file mode 100644 index 0000000..bd72370 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default-splitpane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default.fnt b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default.fnt new file mode 100644 index 0000000..fb65f3a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default.fnt @@ -0,0 +1,195 @@ +info face="Roboto Regular" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="regular_ascii_18.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=254 x=0 y=0 width=10 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=93 x=10 y=0 width=5 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=91 x=15 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=40 x=20 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=106 x=26 y=0 width=6 height=20 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=255 x=32 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=42 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=52 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=167 x=63 y=0 width=12 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=64 x=75 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=41 x=92 y=0 width=6 height=19 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=221 x=98 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=110 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=121 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=132 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=143 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=154 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=166 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=178 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=190 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=202 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=214 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=226 y=0 width=8 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=234 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=241 y=0 width=6 height=18 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=247 y=0 width=6 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=253 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=202 x=264 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=201 x=275 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=200 x=286 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=197 x=297 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=196 x=310 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=195 x=323 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=194 x=336 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=193 x=349 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=192 x=362 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=36 x=375 y=0 width=10 height=18 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=385 y=0 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=123 x=392 y=0 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=166 x=399 y=0 width=4 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=403 y=0 width=3 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=231 x=406 y=0 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=223 x=416 y=0 width=10 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=216 x=426 y=0 width=12 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=181 x=438 y=0 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=447 y=0 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=92 x=457 y=0 width=9 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=466 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=121 x=474 y=0 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=484 y=0 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=494 y=0 width=10 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=504 y=0 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=107 x=0 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=10 y=20 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=104 x=14 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=24 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=102 x=34 y=20 width=8 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=100 x=42 y=20 width=10 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=52 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=62 y=20 width=12 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=74 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=83 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=92 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=101 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=110 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=121 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=132 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=143 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=154 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=165 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=174 y=20 width=8 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=238 x=182 y=20 width=7 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=237 x=189 y=20 width=5 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=236 x=194 y=20 width=6 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=235 x=200 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=234 x=210 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=233 x=220 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=232 x=230 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=229 x=240 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=250 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=260 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=270 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=280 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=290 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=300 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=310 y=20 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=323 y=20 width=19 height=15 xoffset=-1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=191 x=342 y=20 width=9 height=15 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=182 x=351 y=20 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=165 x=360 y=20 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=372 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=161 x=383 y=20 width=4 height=15 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=38 x=387 y=20 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=399 y=20 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=411 y=20 width=14 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 +char id=63 x=425 y=20 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=33 x=434 y=20 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=48 x=438 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=448 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=459 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=469 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=479 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=51 x=490 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=500 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=90 x=0 y=36 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=11 y=36 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=23 y=36 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=35 y=36 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=52 y=36 width=13 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=65 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=76 y=36 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=88 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=100 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=79 x=111 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=78 x=123 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=135 y=36 width=15 height=15 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=76 x=150 y=36 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=75 x=160 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=74 x=172 y=36 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=182 y=36 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=186 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=198 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=209 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=220 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=68 x=231 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=243 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=66 x=254 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=65 x=265 y=36 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=240 x=278 y=36 width=11 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=190 x=289 y=36 width=17 height=14 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 +char id=189 x=306 y=36 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=188 x=320 y=36 width=14 height=14 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=174 x=334 y=36 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=169 x=349 y=36 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=164 x=364 y=36 width=14 height=14 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=59 x=378 y=36 width=5 height=14 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=57 x=383 y=36 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=394 y=36 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=49 x=405 y=36 width=6 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=411 y=36 width=7 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=83 x=418 y=36 width=12 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=248 x=430 y=36 width=11 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=177 x=441 y=36 width=10 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=247 x=451 y=36 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=230 x=462 y=36 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=58 x=478 y=36 width=4 height=12 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0 +char id=122 x=482 y=36 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=492 y=36 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=0 y=51 width=15 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=15 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=25 y=51 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=34 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=44 y=51 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=50 y=51 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=61 y=51 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=70 y=51 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=99 x=85 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=97 x=95 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=42 x=105 y=51 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=43 x=114 y=51 width=11 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=101 x=125 y=51 width=10 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=62 x=135 y=51 width=9 height=10 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=144 y=51 width=9 height=10 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=215 x=153 y=51 width=10 height=9 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=187 x=163 y=51 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=186 x=172 y=51 width=8 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=171 x=180 y=51 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=170 x=189 y=51 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=94 x=196 y=51 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=185 x=204 y=51 width=5 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=179 x=209 y=51 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=178 x=217 y=51 width=7 height=8 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=176 x=224 y=51 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=39 x=230 y=51 width=4 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=234 y=51 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=184 x=241 y=51 width=4 height=6 xoffset=1 yoffset=18 xadvance=4 page=0 chnl=0 +char id=172 x=245 y=51 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=254 y=51 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=263 y=51 width=4 height=6 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=126 x=267 y=51 width=12 height=5 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=183 x=279 y=51 width=4 height=4 xoffset=1 yoffset=11 xadvance=5 page=0 chnl=0 +char id=180 x=283 y=51 width=5 height=4 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=168 x=288 y=51 width=8 height=4 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=46 x=296 y=51 width=4 height=4 xoffset=1 yoffset=16 xadvance=5 page=0 chnl=0 +char id=96 x=300 y=51 width=6 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=175 x=306 y=51 width=8 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=173 x=314 y=51 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=95 x=320 y=51 width=10 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 +char id=45 x=330 y=51 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +kernings count=-1 diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default.png new file mode 100644 index 0000000..e338bfd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/default.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/dialog_holo_light.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/dialog_holo_light.9.png new file mode 100644 index 0000000..08197e8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/dialog_holo_light.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/holoskin.usl b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/holoskin.usl new file mode 100644 index 0000000..99a7edf --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/holoskin.usl @@ -0,0 +1,109 @@ +#com.badlogic.gdx.graphics.g2d.BitmapFont: { default-font: { file: default.fnt } } + +#com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 } + white: { a: 1, b: 1, g: 1, r: 1 } + red: { a: 1, b: 0, g: 0, r: 1 } + black: { a: 1, b: 0, g: 0, r: 0 } + grey: { a: 1, b: 0.5, g: 0.5, r: 0.5 } + default: { a: 1, b: 0, g: 0, r: 0 } + inverse: { a: 1, b: 1, g: 1, r: 1 } + ui: { a: 1, b: 0.9, g: 0.71, r: 0.2 } +} + +package com.badlogic.gdx.scenes.scene2d.ui { + #Skin$TintedDrawable: { + dialogDim: { name: white, color: { r: 0, g: 0, b: 0, a: 0.45 } } + lightGrey: { name: white, color: { r: 0.9, g: 0.9, b: 0.9, a: 1 } } + darkGrey: { name: white, color: { r: 0.8, g: 0.8, b: 0.8, a: 1 } } + } + + #Button$ButtonStyle: { + default: { down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light } + colored: { down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light } + toggle: { down: apptheme_btn_toggle_off_pressed_holo_light, up: apptheme_btn_toggle_off_normal_holo_light, over: apptheme_btn_toggle_off_focused_holo_light, disabled: apptheme_btn_toggle_off_disabled_holo_light, checked: apptheme_btn_toggle_on_normal_holo_light, checkedOver: apptheme_btn_toggle_on_focused_holo_light } + } + + #TextButton$TextButtonStyle: { + default: { down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } + colored: { down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } + toggle: { down: apptheme_btn_toggle_off_pressed_holo_light, up: apptheme_btn_toggle_off_normal_holo_light, over: apptheme_btn_toggle_off_focused_holo_light, disabled: apptheme_btn_toggle_off_disabled_holo_light, checked: apptheme_btn_toggle_on_normal_holo_light, checkedOver: apptheme_btn_toggle_on_focused_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } + } + + #ImageButton$ImageButtonStyle: { + default: { down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light } + colored: { down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light } + } + + #ImageTextButton$ImageTextButtonStyle: { + default: { down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } + colored: { down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } + } + + #ScrollPane$ScrollPaneStyle: { + default: { hScrollKnob: apptheme_fastscroll_thumb_default_holo_h, vScrollKnob: apptheme_fastscroll_thumb_default_holo_v } + } + + #List$ListStyle: { + default: { background: white, fontColorUnselected: default, selection: apptheme_list_activated_holo, fontColorSelected: inverse, font: default-font } + } + + #SelectBox$SelectBoxStyle: { + default: { + font: default-font, fontColor: default, background: apptheme_spinner_default_holo_light, backgroundOver: apptheme_spinner_pressed_holo_light, backgroundOpen: apptheme_spinner_focused_holo_light, backgroundDisabled: apptheme_spinner_disabled_holo_light, + scrollStyle: default, + listStyle: default + } + } + + #SplitPane$SplitPaneStyle: { + default-vertical: { handle: default-splitpane-vertical } + default-horizontal: { handle: default-splitpane } + } + + #Window$WindowStyle: { + default: { titleFont: default-font, background: dialog_holo_light, titleFontColor: ui } + dialog inherits default: { stageBackground: dialogDim } + } + + #Slider$SliderStyle: { + default-horizontal: { background: apptheme_progress_bg_holo_light, knobBefore: apptheme_progress_primary_holo_light, knob: apptheme_fastscroll_thumb_pressed_holo_h } + default-vertical: { background: apptheme_progress_vertical_bg_holo_light, knobBefore: apptheme_progress_vertical_primary_holo_light, knob: apptheme_fastscroll_thumb_pressed_holo_v } + } + + #Label$LabelStyle: { + default: { font: default-font, fontColor: default } + } + + #TextField$TextFieldStyle: { + default: { selection: apptheme_list_activated_holo, background: apptheme_textfield_default_holo_light, focusedBackground: apptheme_textfield_focused_holo_light, disabledBackground: apptheme_textfield_disabled_holo_light, font: default-font, fontColor: default, disabledFontColor: grey, cursor: cursor } + area: { selection: apptheme_list_activated_holo, background: apptheme_textarea_default_holo_light, focusedBackground: apptheme_textarea_focused_holo_light, disabledBackground: apptheme_textarea_disabled_holo_light, font: default-font, fontColor: default, disabledFontColor: grey, cursor: cursor } + } + + #CheckBox$CheckBoxStyle: { + default: { checkboxOn: apptheme_btn_check_on_holo_light, checkboxOff: apptheme_btn_check_off_holo_light, checkboxOnDisabled: apptheme_btn_check_on_disabled_holo_light, checkboxOffDisabled: apptheme_btn_check_off_disabled_holo_light, font: default-font, fontColor: default } + radio: { checkboxOn: apptheme_btn_radio_on_holo_light, checkboxOff: apptheme_btn_radio_off_holo_light, checkboxOnDisabled: apptheme_btn_radio_on_disabled_holo_light, checkboxOffDisabled: apptheme_btn_radio_off_disabled_holo_light, font: default-font, fontColor: default } + switch: { checkboxOn: apptheme_btn_radio_on_holo_light, checkboxOff: apptheme_btn_radio_off_holo_light, checkboxOnDisabled: apptheme_btn_radio_on_disabled_holo_light, checkboxOffDisabled: apptheme_btn_radio_off_disabled_holo_light, font: default-font, fontColor: default } + } + + #ProgressBar$ProgressBarStyle: { + default-horizontal: { background: apptheme_progress_bg_holo_light, knobBefore: apptheme_progress_primary_holo_light } + default-vertical: { background: apptheme_progress_vertical_bg_holo_light, knobBefore: apptheme_progress_vertical_primary_holo_light } + } + + #Touchpad$TouchpadStyle: { + default: { knob: apptheme_scrubber_control_pressed_holo } + } + + #Tree$TreeStyle: { + default: { minus: tree-minus, plus: tree-plus, selection: apptheme_list_activated_holo } + } + + #TextTooltip$TextTooltipStyle: { + default: { + label: { font: default-font, fontColor: default } + background: tooltip, wrapWidth: 150 + } + } + +} diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/pack.json b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/pack.json new file mode 100644 index 0000000..c699c33 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/pack.json @@ -0,0 +1,5 @@ +{ +duplicatePadding: false, +paddingX: 1, +paddingY: 1 +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/selection.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/selection.png new file mode 100644 index 0000000..d2533cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tooltip.9.png new file mode 100644 index 0000000..aca1a0d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tree-minus.png new file mode 100644 index 0000000..f8e4079 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tree-plus.png new file mode 100644 index 0000000..85d23cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/white.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/white.png new file mode 100644 index 0000000..5c94704 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/default.fnt b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/default.fnt new file mode 100644 index 0000000..fb65f3a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/default.fnt @@ -0,0 +1,195 @@ +info face="Roboto Regular" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=512 scaleH=512 pages=1 packed=0 +page id=0 file="regular_ascii_18.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=254 x=0 y=0 width=10 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=93 x=10 y=0 width=5 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=91 x=15 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=40 x=20 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=106 x=26 y=0 width=6 height=20 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=255 x=32 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=42 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=52 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=167 x=63 y=0 width=12 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=64 x=75 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=41 x=92 y=0 width=6 height=19 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=221 x=98 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=110 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=121 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=132 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=143 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=154 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=166 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=178 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=190 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=202 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=214 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=226 y=0 width=8 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=234 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=241 y=0 width=6 height=18 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=247 y=0 width=6 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=253 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=202 x=264 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=201 x=275 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=200 x=286 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=197 x=297 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=196 x=310 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=195 x=323 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=194 x=336 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=193 x=349 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=192 x=362 y=0 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=36 x=375 y=0 width=10 height=18 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=385 y=0 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=123 x=392 y=0 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=166 x=399 y=0 width=4 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=403 y=0 width=3 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=231 x=406 y=0 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=223 x=416 y=0 width=10 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=216 x=426 y=0 width=12 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=181 x=438 y=0 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=447 y=0 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=92 x=457 y=0 width=9 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=466 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=121 x=474 y=0 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=484 y=0 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=494 y=0 width=10 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=504 y=0 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=107 x=0 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=10 y=20 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=104 x=14 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=24 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=102 x=34 y=20 width=8 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=100 x=42 y=20 width=10 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=52 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=62 y=20 width=12 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=74 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=83 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=92 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=101 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=110 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=121 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=132 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=143 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=154 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=165 y=20 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=174 y=20 width=8 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=238 x=182 y=20 width=7 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=237 x=189 y=20 width=5 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=236 x=194 y=20 width=6 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=235 x=200 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=234 x=210 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=233 x=220 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=232 x=230 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=229 x=240 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=250 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=260 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=270 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=280 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=290 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=300 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=310 y=20 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=323 y=20 width=19 height=15 xoffset=-1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=191 x=342 y=20 width=9 height=15 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=182 x=351 y=20 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=165 x=360 y=20 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=372 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=161 x=383 y=20 width=4 height=15 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=38 x=387 y=20 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=399 y=20 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=411 y=20 width=14 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 +char id=63 x=425 y=20 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=33 x=434 y=20 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=48 x=438 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=448 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=459 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=469 y=20 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=479 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=51 x=490 y=20 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=500 y=20 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=90 x=0 y=36 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=11 y=36 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=23 y=36 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=35 y=36 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=52 y=36 width=13 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=65 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=76 y=36 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=88 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=100 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=79 x=111 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=78 x=123 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=135 y=36 width=15 height=15 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=76 x=150 y=36 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=75 x=160 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=74 x=172 y=36 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=182 y=36 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=186 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=198 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=209 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=220 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=68 x=231 y=36 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=243 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=66 x=254 y=36 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=65 x=265 y=36 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=240 x=278 y=36 width=11 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=190 x=289 y=36 width=17 height=14 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 +char id=189 x=306 y=36 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=188 x=320 y=36 width=14 height=14 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=174 x=334 y=36 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=169 x=349 y=36 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=164 x=364 y=36 width=14 height=14 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=59 x=378 y=36 width=5 height=14 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=57 x=383 y=36 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=394 y=36 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=49 x=405 y=36 width=6 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=411 y=36 width=7 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=83 x=418 y=36 width=12 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=248 x=430 y=36 width=11 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=177 x=441 y=36 width=10 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=247 x=451 y=36 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=230 x=462 y=36 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=58 x=478 y=36 width=4 height=12 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0 +char id=122 x=482 y=36 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=492 y=36 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=0 y=51 width=15 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=15 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=25 y=51 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=34 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=44 y=51 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=50 y=51 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=61 y=51 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=70 y=51 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=99 x=85 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=97 x=95 y=51 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=42 x=105 y=51 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=43 x=114 y=51 width=11 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=101 x=125 y=51 width=10 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=62 x=135 y=51 width=9 height=10 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=144 y=51 width=9 height=10 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=215 x=153 y=51 width=10 height=9 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=187 x=163 y=51 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=186 x=172 y=51 width=8 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=171 x=180 y=51 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=170 x=189 y=51 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=94 x=196 y=51 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=185 x=204 y=51 width=5 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=179 x=209 y=51 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=178 x=217 y=51 width=7 height=8 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=176 x=224 y=51 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=39 x=230 y=51 width=4 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=234 y=51 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=184 x=241 y=51 width=4 height=6 xoffset=1 yoffset=18 xadvance=4 page=0 chnl=0 +char id=172 x=245 y=51 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=254 y=51 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=263 y=51 width=4 height=6 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=126 x=267 y=51 width=12 height=5 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=183 x=279 y=51 width=4 height=4 xoffset=1 yoffset=11 xadvance=5 page=0 chnl=0 +char id=180 x=283 y=51 width=5 height=4 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=168 x=288 y=51 width=8 height=4 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=46 x=296 y=51 width=4 height=4 xoffset=1 yoffset=16 xadvance=5 page=0 chnl=0 +char id=96 x=300 y=51 width=6 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=175 x=306 y=51 width=8 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=173 x=314 y=51 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=95 x=320 y=51 width=10 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 +char id=45 x=330 y=51 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +kernings count=-1 diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.atlas new file mode 100644 index 0000000..bd7c52b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.atlas @@ -0,0 +1,1040 @@ + +uiskin.png +size: 1024,1024 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +apptheme_btn_check_off_disabled_focused_holo_light + rotate: false + xy: 514, 582 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_off_disabled_holo_light + rotate: false + xy: 514, 533 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_off_focused_holo_light + rotate: false + xy: 529, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_off_holo_light + rotate: false + xy: 578, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_off_pressed_holo_light + rotate: false + xy: 627, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_on_disabled_focused_holo_light + rotate: false + xy: 676, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_on_disabled_holo_light + rotate: false + xy: 725, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_on_focused_holo_light + rotate: false + xy: 774, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_on_holo_light + rotate: false + xy: 823, 257 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_check_on_pressed_holo_light + rotate: false + xy: 626, 882 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_colored_disabled_focused_holo_light + rotate: false + xy: 872, 257 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_default_disabled_focused_holo_light + rotate: false + xy: 872, 257 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_colored_disabled_holo_light + rotate: false + xy: 488, 214 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_default_disabled_holo_light + rotate: false + xy: 488, 214 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_colored_focused_holo_light + rotate: false + xy: 586, 807 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_default_focused_holo_light + rotate: false + xy: 586, 807 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_colored_normal_holo_light + rotate: false + xy: 582, 758 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_colored_pressed_holo_light + rotate: false + xy: 675, 831 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_default_normal_holo_light + rotate: false + xy: 755, 897 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_default_pressed_holo_light + rotate: false + xy: 715, 846 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_off_disabled_focused_holo_light + rotate: false + xy: 975, 927 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_off_disabled_holo_light + rotate: false + xy: 292, 214 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_off_focused_holo_light + rotate: false + xy: 341, 214 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_off_holo_light + rotate: false + xy: 390, 214 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_off_pressed_holo_light + rotate: false + xy: 439, 214 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_on_disabled_focused_holo_light + rotate: false + xy: 528, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_on_disabled_holo_light + rotate: false + xy: 577, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_on_focused_holo_light + rotate: false + xy: 626, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_on_holo_light + rotate: false + xy: 675, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_radio_on_pressed_holo_light + rotate: false + xy: 724, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_btn_rating_star_off_focused_holo_light + rotate: false + xy: 73, 233 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +apptheme_btn_rating_star_off_normal_holo_light + rotate: false + xy: 698, 946 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +apptheme_btn_rating_star_off_pressed_holo_light + rotate: false + xy: 146, 233 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +apptheme_btn_rating_star_on_focused_holo_light + rotate: false + xy: 771, 946 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +apptheme_btn_rating_star_on_normal_holo_light + rotate: false + xy: 219, 233 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +apptheme_btn_rating_star_on_pressed_holo_light + rotate: false + xy: 844, 946 + size: 72, 72 + orig: 72, 72 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_off_disabled_focused_holo_light + rotate: false + xy: 795, 897 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_off_disabled_holo_light + rotate: false + xy: 755, 848 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_off_focused_holo_light + rotate: false + xy: 835, 897 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 14, 10 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_off_normal_holo_light + rotate: false + xy: 795, 848 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_off_pressed_holo_light + rotate: false + xy: 875, 897 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_on_disabled_focused_holo_light + rotate: false + xy: 835, 848 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_on_disabled_holo_light + rotate: false + xy: 875, 848 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 10, 14 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_on_focused_holo_light + rotate: false + xy: 622, 748 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_on_normal_holo_light + rotate: false + xy: 672, 782 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_btn_toggle_on_pressed_holo_light + rotate: false + xy: 662, 733 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_fastscroll_thumb_default_holo + rotate: false + xy: 1, 136 + size: 45, 81 + orig: 45, 81 + offset: 0, 0 + index: -1 +apptheme_fastscroll_thumb_default_holo_h + rotate: false + xy: 1, 5 + size: 47, 11 + split: 3, 3, 3, 3 + pad: 1, 1, 1, 1 + orig: 47, 11 + offset: 0, 0 + index: -1 +apptheme_fastscroll_thumb_default_holo_v + rotate: false + xy: 273, 185 + size: 11, 47 + split: 3, 3, 3, 3 + pad: 1, 1, 1, 1 + orig: 11, 47 + offset: 0, 0 + index: -1 +apptheme_fastscroll_thumb_pressed_holo + rotate: false + xy: 514, 737 + size: 45, 81 + orig: 45, 81 + offset: 0, 0 + index: -1 +apptheme_fastscroll_thumb_pressed_holo_h + rotate: false + xy: 917, 954 + size: 57, 21 + split: 8, 8, 8, 8 + pad: 6, 6, 6, 6 + orig: 57, 21 + offset: 0, 0 + index: -1 +apptheme_fastscroll_thumb_pressed_holo_v + rotate: false + xy: 560, 761 + size: 21, 57 + split: 8, 8, 8, 8 + pad: 6, 6, 6, 6 + orig: 21, 57 + offset: 0, 0 + index: -1 +apptheme_ic_navigation_drawer + rotate: false + xy: 108, 110 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +apptheme_list_activated_holo + rotate: false + xy: 662, 787 + size: 9, 9 + split: 3, 3, 3, 3 + pad: 0, 0, 0, 0 + orig: 9, 9 + offset: 0, 0 + index: -1 +apptheme_list_focused_holo + rotate: false + xy: 47, 144 + size: 9, 9 + split: 3, 3, 3, 3 + pad: 0, 0, 0, 0 + orig: 9, 9 + offset: 0, 0 + index: -1 +apptheme_list_longpressed_holo + rotate: false + xy: 82, 99 + size: 9, 9 + split: 3, 3, 3, 3 + pad: 0, 0, 0, 0 + orig: 9, 9 + offset: 0, 0 + index: -1 +apptheme_list_pressed_holo_light + rotate: false + xy: 730, 836 + size: 9, 9 + split: 3, 3, 3, 3 + pad: 0, 0, 0, 0 + orig: 9, 9 + offset: 0, 0 + index: -1 +apptheme_list_selector_disabled_holo_light + rotate: false + xy: 47, 154 + size: 21, 63 + split: 11, 9, 30, 32 + pad: 0, 0, 0, 0 + orig: 21, 63 + offset: 0, 0 + index: -1 +apptheme_progress_bg_holo_light + rotate: false + xy: 285, 208 + size: 6, 24 + split: 0, 0, 0, 21 + pad: 0, 0, 0, 0 + orig: 6, 24 + offset: 0, 0 + index: -1 +apptheme_progress_primary_holo_light + rotate: false + xy: 514, 508 + size: 33, 24 + split: 0, 30, 0, 21 + pad: 0, 0, 0, 0 + orig: 33, 24 + offset: 0, 0 + index: -1 +apptheme_progress_secondary_holo_light + rotate: false + xy: 267, 159 + size: 6, 24 + split: 0, 0, 0, 21 + pad: 0, 0, 0, 0 + orig: 6, 24 + offset: 0, 0 + index: -1 +apptheme_progress_vertical_bg_holo_light + rotate: false + xy: 917, 947 + size: 24, 6 + split: 10, 10, 0, 0 + orig: 24, 6 + offset: 0, 0 + index: -1 +apptheme_progress_vertical_primary_holo_light + rotate: false + xy: 996, 985 + size: 24, 33 + split: 11, 12, 30, 0 + pad: 9, 11, 0, 0 + orig: 24, 33 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo1 + rotate: false + xy: 1, 481 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo2 + rotate: false + xy: 1, 456 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo3 + rotate: false + xy: 1, 431 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo4 + rotate: false + xy: 1, 406 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo5 + rotate: false + xy: 1, 381 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo6 + rotate: false + xy: 1, 356 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo7 + rotate: false + xy: 1, 331 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_progressbar_indeterminate_holo8 + rotate: false + xy: 1, 306 + size: 909, 24 + orig: 909, 24 + offset: 0, 0 + index: -1 +apptheme_rate_star_big_half_holo_light + rotate: false + xy: 1, 17 + size: 52, 52 + orig: 52, 52 + offset: 0, 0 + index: -1 +apptheme_rate_star_big_off_holo_light + rotate: false + xy: 514, 684 + size: 52, 52 + orig: 52, 52 + offset: 0, 0 + index: -1 +apptheme_rate_star_big_on_holo_light + rotate: false + xy: 514, 631 + size: 52, 52 + orig: 52, 52 + offset: 0, 0 + index: -1 +apptheme_rate_star_small_half_holo_light + rotate: false + xy: 133, 110 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +apptheme_rate_star_small_off_holo_light + rotate: false + xy: 158, 110 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +apptheme_rate_star_small_on_holo_light + rotate: false + xy: 183, 110 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +apptheme_scrubber_control_disabled_holo + rotate: false + xy: 773, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_scrubber_control_focused_holo + rotate: false + xy: 822, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_scrubber_control_normal_holo + rotate: false + xy: 871, 208 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_scrubber_control_pressed_holo + rotate: false + xy: 626, 833 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +apptheme_scrubber_primary_holo + rotate: false + xy: 560, 742 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +apptheme_scrubber_secondary_holo + rotate: false + xy: 51, 73 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +apptheme_scrubber_track_holo_light + rotate: false + xy: 548, 514 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +apptheme_slider_knob + rotate: false + xy: 1, 70 + size: 49, 65 + orig: 49, 65 + offset: 0, 0 + index: -1 +apptheme_spinner_colored_disabled_holo_light + rotate: false + xy: 702, 733 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_disabled_holo_light + rotate: false + xy: 702, 733 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_colored_focused_holo_light + rotate: false + xy: 712, 782 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_colored_normal_holo_light + rotate: false + xy: 736, 733 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_colored_pressed_holo_light + rotate: false + xy: 69, 135 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_default_holo_light + rotate: false + xy: 103, 135 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_focused_holo_light + rotate: false + xy: 137, 135 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_spinner_pressed_holo_light + rotate: false + xy: 171, 135 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +apptheme_switch_bg_disabled_holo_light + rotate: false + xy: 205, 141 + size: 30, 42 + split: 14, 15, 21, 20 + pad: 3, 3, 3, 3 + orig: 30, 42 + offset: 0, 0 + index: -1 +apptheme_switch_bg_focused_holo_light + rotate: false + xy: 236, 141 + size: 30, 42 + split: 14, 15, 21, 20 + pad: 3, 3, 3, 3 + orig: 30, 42 + offset: 0, 0 + index: -1 +apptheme_switch_bg_holo_light + rotate: false + xy: 51, 92 + size: 30, 42 + split: 14, 15, 21, 20 + pad: 3, 3, 3, 3 + orig: 30, 42 + offset: 0, 0 + index: -1 +apptheme_switch_thumb_activated_holo_light + rotate: false + xy: 292, 263 + size: 78, 42 + split: 36, 36, 3, 3 + pad: 21, 21, 3, 3 + orig: 78, 42 + offset: 0, 0 + index: -1 +apptheme_switch_thumb_disabled_holo_light + rotate: false + xy: 917, 976 + size: 78, 42 + split: 36, 36, 3, 3 + pad: 21, 21, 3, 3 + orig: 78, 42 + offset: 0, 0 + index: -1 +apptheme_switch_thumb_holo_light + rotate: false + xy: 371, 263 + size: 78, 42 + split: 36, 36, 3, 3 + pad: 21, 21, 3, 3 + orig: 78, 42 + offset: 0, 0 + index: -1 +apptheme_switch_thumb_pressed_holo_light + rotate: false + xy: 450, 263 + size: 78, 42 + split: 36, 36, 3, 3 + pad: 21, 21, 3, 3 + orig: 78, 42 + offset: 0, 0 + index: -1 +apptheme_tab_selected_focused_holo + rotate: false + xy: 69, 205 + size: 3, 12 + split: 0, 0, 0, 9 + pad: 0, 0, 0, 0 + orig: 3, 12 + offset: 0, 0 + index: -1 +apptheme_tab_selected_holo + rotate: false + xy: 69, 192 + size: 3, 12 + split: 0, 0, 0, 9 + pad: 0, 0, 0, 0 + orig: 3, 12 + offset: 0, 0 + index: -1 +apptheme_tab_selected_pressed_holo + rotate: false + xy: 285, 195 + size: 3, 12 + split: 0, 0, 0, 9 + pad: 0, 0, 0, 0 + orig: 3, 12 + offset: 0, 0 + index: -1 +apptheme_tab_unselected_focused_holo + rotate: false + xy: 582, 812 + size: 3, 6 + split: 0, 0, 0, 3 + pad: 0, 0, 0, 0 + orig: 3, 6 + offset: 0, 0 + index: -1 +apptheme_tab_unselected_holo + rotate: false + xy: 622, 800 + size: 3, 6 + split: 0, 0, 0, 3 + pad: 0, 0, 0, 0 + orig: 3, 6 + offset: 0, 0 + index: -1 +apptheme_tab_unselected_pressed_holo + rotate: false + xy: 69, 185 + size: 3, 6 + split: 0, 0, 0, 3 + pad: 0, 0, 0, 0 + orig: 3, 6 + offset: 0, 0 + index: -1 +apptheme_text_select_handle_left + rotate: false + xy: 1, 218 + size: 71, 87 + orig: 71, 87 + offset: 0, 0 + index: -1 +apptheme_text_select_handle_middle + rotate: false + xy: 514, 819 + size: 71, 87 + orig: 71, 87 + offset: 0, 0 + index: -1 +apptheme_text_select_handle_right + rotate: false + xy: 626, 931 + size: 71, 87 + orig: 71, 87 + offset: 0, 0 + index: -1 +apptheme_textarea_default_holo_light + rotate: false + xy: 586, 856 + size: 39, 50 + split: 18, 18, 32, 15 + pad: 18, 18, 12, 12 + orig: 39, 50 + offset: 0, 0 + index: -1 +apptheme_textarea_disabled_holo_light + rotate: false + xy: 675, 880 + size: 39, 50 + split: 18, 18, 32, 15 + pad: 18, 18, 12, 12 + orig: 39, 50 + offset: 0, 0 + index: -1 +apptheme_textarea_focused_holo_light + rotate: false + xy: 715, 895 + size: 39, 50 + split: 18, 18, 32, 15 + pad: 18, 18, 12, 12 + orig: 39, 50 + offset: 0, 0 + index: -1 +apptheme_textfield_activated_holo_light + rotate: false + xy: 73, 184 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_textfield_default_holo_light + rotate: false + xy: 113, 184 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_textfield_disabled_focused_holo_light + rotate: false + xy: 153, 184 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_textfield_disabled_holo_light + rotate: false + xy: 193, 184 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +apptheme_textfield_focused_holo_light + rotate: false + xy: 233, 184 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +card + rotate: false + xy: 626, 797 + size: 45, 35 + split: 7, 7, 8, 8 + orig: 45, 35 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 582, 808 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default + rotate: false + xy: 1, 506 + size: 512, 512 + orig: 512, 512 + offset: 0, 0 + index: -1 +default-splitpane + rotate: false + xy: 576, 757 + size: 5, 3 + split: 0, 5, 0, 0 + orig: 5, 3 + offset: 0, 0 + index: -1 +default-splitpane-vertical + rotate: false + xy: 205, 135 + size: 3, 5 + split: 0, 0, 0, 5 + orig: 3, 5 + offset: 0, 0 + index: -1 +dialog_holo_light + rotate: false + xy: 514, 907 + size: 111, 111 + split: 18, 18, 75, 19 + pad: 18, 18, 77, 19 + orig: 111, 111 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 672, 831 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 82, 109 + size: 25, 25 + split: 12, 12, 12, 12 + orig: 25, 25 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 698, 931 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 715, 831 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1, 1 + size: 3, 3 + orig: 3, 3 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.json b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.json new file mode 100644 index 0000000..246f24f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.json @@ -0,0 +1,87 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: default.fnt } +}, +com.badlogic.gdx.graphics.Color: { + green: {a: 1, b: 0, g: 1, r: 0 }, + white: {a: 1, b: 1, g: 1, r: 1 }, + red: {a: 1, b: 0, g: 0, r: 1 }, + black: {a: 1, b: 0, g: 0, r: 0 }, + grey: {a: 1, b: 0.5, g: 0.5, r: 0.5 }, + default: {a: 1, b: 0, g: 0, r: 0 }, + inverse: {a: 1, b: 1, g: 1, r: 1 }, + ui: {a: 1, b: 0.9, g: 0.71, r: 0.2 } +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: {name: white, color: {r: 0, g: 0, b: 0, a: 0.45} }, + lightGrey: {name: white, color: {r: 0.9, g: 0.9, b: 0.9, a: 1} }, + darkGrey: {name: white, color: {r: 0.8, g: 0.8, b: 0.8, a: 1} } +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: {down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light }, + colored: {down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light }, + toggle: {down: apptheme_btn_toggle_off_pressed_holo_light, up: apptheme_btn_toggle_off_normal_holo_light, over: apptheme_btn_toggle_off_focused_holo_light, disabled: apptheme_btn_toggle_off_disabled_holo_light, checked: apptheme_btn_toggle_on_normal_holo_light, checkedOver: apptheme_btn_toggle_on_focused_holo_light } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: {down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey }, + colored: {down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey }, + toggle: {down: apptheme_btn_toggle_off_pressed_holo_light, up: apptheme_btn_toggle_off_normal_holo_light, over: apptheme_btn_toggle_off_focused_holo_light, disabled: apptheme_btn_toggle_off_disabled_holo_light, checked: apptheme_btn_toggle_on_normal_holo_light, checkedOver: apptheme_btn_toggle_on_focused_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: {down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light }, + colored: {down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light } +}, +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: {down: apptheme_btn_default_pressed_holo_light, up: apptheme_btn_default_normal_holo_light, disabled: apptheme_btn_default_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey }, + colored: {down: apptheme_btn_colored_pressed_holo_light, up: apptheme_btn_colored_normal_holo_light, disabled: apptheme_btn_colored_disabled_holo_light, font: default-font, fontColor: default, downFontColor: inverse, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: {hScrollKnob: apptheme_fastscroll_thumb_default_holo_h, vScrollKnob: apptheme_fastscroll_thumb_default_holo_v } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: {background: white, fontColorUnselected: default, selection: apptheme_list_activated_holo, fontColorSelected: inverse, font: default-font } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: {font: default-font, fontColor: default, background: apptheme_spinner_default_holo_light, backgroundOver: apptheme_spinner_pressed_holo_light, backgroundOpen: apptheme_spinner_focused_holo_light, backgroundDisabled: apptheme_spinner_disabled_holo_light, scrollStyle: default, listStyle: default + } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: {handle: default-splitpane-vertical }, + default-horizontal: {handle: default-splitpane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: {titleFont: default-font, background: dialog_holo_light, titleFontColor: ui }, + dialog: {stageBackground: dialogDim, titleFont: default-font, background: dialog_holo_light, titleFontColor: ui } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: {background: apptheme_progress_bg_holo_light, knobBefore: apptheme_progress_primary_holo_light, knob: apptheme_fastscroll_thumb_pressed_holo_h }, + default-vertical: {background: apptheme_progress_vertical_bg_holo_light, knobBefore: apptheme_progress_vertical_primary_holo_light, knob: apptheme_fastscroll_thumb_pressed_holo_v } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: {font: default-font, fontColor: default } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: {selection: apptheme_list_activated_holo, background: apptheme_textfield_default_holo_light, focusedBackground: apptheme_textfield_focused_holo_light, disabledBackground: apptheme_textfield_disabled_holo_light, font: default-font, fontColor: default, disabledFontColor: grey, cursor: cursor }, + area: {selection: apptheme_list_activated_holo, background: apptheme_textarea_default_holo_light, focusedBackground: apptheme_textarea_focused_holo_light, disabledBackground: apptheme_textarea_disabled_holo_light, font: default-font, fontColor: default, disabledFontColor: grey, cursor: cursor } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: {checkboxOn: apptheme_btn_check_on_holo_light, checkboxOff: apptheme_btn_check_off_holo_light, checkboxOnDisabled: apptheme_btn_check_on_disabled_holo_light, checkboxOffDisabled: apptheme_btn_check_off_disabled_holo_light, font: default-font, fontColor: default }, + radio: {checkboxOn: apptheme_btn_radio_on_holo_light, checkboxOff: apptheme_btn_radio_off_holo_light, checkboxOnDisabled: apptheme_btn_radio_on_disabled_holo_light, checkboxOffDisabled: apptheme_btn_radio_off_disabled_holo_light, font: default-font, fontColor: default }, + switch: {checkboxOn: apptheme_btn_radio_on_holo_light, checkboxOff: apptheme_btn_radio_off_holo_light, checkboxOnDisabled: apptheme_btn_radio_on_disabled_holo_light, checkboxOffDisabled: apptheme_btn_radio_off_disabled_holo_light, font: default-font, fontColor: default } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: {background: apptheme_progress_bg_holo_light, knobBefore: apptheme_progress_primary_holo_light }, + default-vertical: {background: apptheme_progress_vertical_bg_holo_light, knobBefore: apptheme_progress_vertical_primary_holo_light } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: {knob: apptheme_scrubber_control_pressed_holo } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: {minus: tree-minus, plus: tree-plus, selection: apptheme_list_activated_holo } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: {label: {font: default-font, fontColor: default}, background: tooltip, wrapWidth: 150 + } +} + +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.png b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.png new file mode 100644 index 0000000..b1f5fd2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/gdx-holo/skin/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/README.md b/src/main/resources/omni_power/gdx-skins/glassy/README.md new file mode 100644 index 0000000..ebc2995 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/README.md @@ -0,0 +1,22 @@ +# Glassy UI + +``` +Glassy UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Glassy UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Elegant, glossy look. + +![Glassy](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/artwork/glassy-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/glassy/preview.png b/src/main/resources/omni_power/gdx-skins/glassy/preview.png new file mode 100644 index 0000000..406699d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/button-down.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/button-down.9.png new file mode 100644 index 0000000..17d8a2b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/button-small-down.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/button-small-down.9.png new file mode 100644 index 0000000..08c8b37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/button-small-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/button-small.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/button-small.9.png new file mode 100644 index 0000000..e29875a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/button-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/button.9.png new file mode 100644 index 0000000..de04df2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/checkbox-off.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/checkbox-off.png new file mode 100644 index 0000000..0d09021 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/checkbox-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/checkbox.png new file mode 100644 index 0000000..a9ff5e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/font-big-export.fnt b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-big-export.fnt new file mode 100644 index 0000000..e4a3779 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-big-export.fnt @@ -0,0 +1,104 @@ +info face="font-big-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=60 base=60 scaleW=341 scaleH=350 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-big-export.png" +chars count=98 +char id=33 x=332 y=299 width=8 height=46 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter="!" +char id=34 x=235 y=326 width=16 height=14 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=126 y=0 width=33 height=45 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="#" +char id=36 x=224 y=92 width=29 height=57 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=0 letter="$" +char id=37 x=47 y=255 width=43 height=49 xoffset=0 yoffset=13 xadvance=46 page=0 chnl=0 letter="%" +char id=38 x=51 y=90 width=39 height=44 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="&" +char id=39 x=252 y=334 width=4 height=14 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=321 y=0 width=11 height=58 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="(" +char id=41 x=320 y=288 width=11 height=58 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=193 y=324 width=21 height=21 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="*" +char id=43 x=160 y=135 width=31 height=30 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="+" +char id=44 x=81 y=135 width=9 height=14 xoffset=0 yoffset=50 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=235 y=321 width=17 height=4 xoffset=0 yoffset=36 xadvance=20 page=0 chnl=0 letter="-" +char id=46 x=235 y=341 width=7 height=8 xoffset=0 yoffset=52 xadvance=10 page=0 chnl=0 letter="." +char id=47 x=280 y=137 width=23 height=51 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="/" +char id=48 x=193 y=0 width=30 height=45 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="0" +char id=49 x=306 y=230 width=11 height=44 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=193 y=233 width=30 height=44 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="2" +char id=51 x=193 y=46 width=29 height=45 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="3" +char id=52 x=192 y=135 width=31 height=44 xoffset=0 yoffset=15 xadvance=34 page=0 chnl=0 letter="4" +char id=53 x=223 y=46 width=29 height=45 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="5" +char id=54 x=253 y=196 width=27 height=45 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="6" +char id=55 x=224 y=0 width=28 height=45 xoffset=0 yoffset=15 xadvance=31 page=0 chnl=0 letter="7" +char id=56 x=193 y=278 width=30 height=45 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="8" +char id=57 x=253 y=46 width=27 height=45 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="9" +char id=58 x=330 y=216 width=8 height=35 xoffset=0 yoffset=25 xadvance=11 page=0 chnl=0 letter=":" +char id=59 x=323 y=176 width=9 height=39 xoffset=0 yoffset=25 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=128 y=209 width=31 height=32 xoffset=0 yoffset=21 xadvance=34 page=0 chnl=0 letter="<" +char id=61 x=192 y=214 width=30 height=18 xoffset=0 yoffset=28 xadvance=33 page=0 chnl=0 letter="=" +char id=62 x=160 y=209 width=31 height=32 xoffset=0 yoffset=21 xadvance=34 page=0 chnl=0 letter=">" +char id=63 x=253 y=242 width=26 height=46 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="?" +char id=64 x=47 y=207 width=45 height=47 xoffset=0 yoffset=13 xadvance=48 page=0 chnl=0 letter="@" +char id=65 x=47 y=305 width=42 height=44 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="A" +char id=66 x=160 y=294 width=32 height=44 xoffset=0 yoffset=15 xadvance=35 page=0 chnl=0 letter="B" +char id=67 x=48 y=159 width=42 height=45 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="C" +char id=68 x=53 y=0 width=37 height=44 xoffset=0 yoffset=15 xadvance=40 page=0 chnl=0 letter="D" +char id=69 x=254 y=126 width=25 height=44 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="E" +char id=70 x=279 y=289 width=25 height=44 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="F" +char id=71 x=0 y=255 width=46 height=45 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="G" +char id=72 x=160 y=45 width=32 height=44 xoffset=0 yoffset=16 xadvance=35 page=0 chnl=0 letter="H" +char id=73 x=334 y=104 width=5 height=44 xoffset=0 yoffset=16 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=305 y=288 width=14 height=57 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="J" +char id=75 x=160 y=90 width=32 height=44 xoffset=0 yoffset=16 xadvance=35 page=0 chnl=0 letter="K" +char id=76 x=281 y=189 width=22 height=44 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=0 y=45 width=50 height=44 xoffset=0 yoffset=16 xadvance=53 page=0 chnl=0 letter="M" +char id=78 x=90 y=305 width=35 height=44 xoffset=0 yoffset=16 xadvance=38 page=0 chnl=0 letter="N" +char id=79 x=0 y=301 width=46 height=45 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="O" +char id=80 x=224 y=231 width=28 height=44 xoffset=0 yoffset=15 xadvance=31 page=0 chnl=0 letter="P" +char id=81 x=0 y=207 width=46 height=47 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="Q" +char id=82 x=224 y=276 width=28 height=44 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="R" +char id=83 x=280 y=242 width=25 height=45 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="S" +char id=84 x=280 y=92 width=24 height=44 xoffset=0 yoffset=16 xadvance=27 page=0 chnl=0 letter="T" +char id=85 x=126 y=46 width=33 height=45 xoffset=0 yoffset=15 xadvance=36 page=0 chnl=0 letter="U" +char id=86 x=51 y=45 width=39 height=44 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=52 height=44 xoffset=0 yoffset=16 xadvance=55 page=0 chnl=0 letter="W" +char id=88 x=126 y=128 width=33 height=44 xoffset=0 yoffset=16 xadvance=36 page=0 chnl=0 letter="X" +char id=89 x=160 y=0 width=32 height=44 xoffset=0 yoffset=16 xadvance=35 page=0 chnl=0 letter="Y" +char id=90 x=253 y=289 width=25 height=44 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="Z" +char id=91 x=321 y=59 width=11 height=57 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=126 y=294 width=33 height=51 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="\" +char id=93 x=318 y=230 width=11 height=57 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=91 y=36 width=34 height=33 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="^" +char id=95 x=49 y=135 width=31 height=4 xoffset=0 yoffset=55 xadvance=34 page=0 chnl=0 letter="_" +char id=96 x=160 y=339 width=13 height=10 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="`" +char id=97 x=91 y=117 width=34 height=35 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="a" +char id=98 x=126 y=247 width=34 height=46 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="b" +char id=99 x=126 y=92 width=33 height=35 xoffset=0 yoffset=25 xadvance=36 page=0 chnl=0 letter="c" +char id=100 x=93 y=200 width=34 height=46 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="d" +char id=101 x=128 y=173 width=33 height=35 xoffset=0 yoffset=25 xadvance=36 page=0 chnl=0 letter="e" +char id=102 x=305 y=58 width=15 height=46 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="f" +char id=103 x=91 y=153 width=34 height=46 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="g" +char id=104 x=224 y=150 width=29 height=45 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="h" +char id=105 x=332 y=252 width=8 height=46 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter="i" +char id=106 x=323 y=117 width=10 height=58 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="j" +char id=107 x=253 y=0 width=27 height=45 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="k" +char id=108 x=333 y=0 width=5 height=45 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=124 width=48 height=34 xoffset=0 yoffset=26 xadvance=51 page=0 chnl=0 letter="m" +char id=110 x=224 y=196 width=28 height=34 xoffset=0 yoffset=26 xadvance=31 page=0 chnl=0 letter="n" +char id=111 x=91 y=0 width=34 height=35 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="o" +char id=112 x=91 y=255 width=34 height=46 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="p" +char id=113 x=91 y=70 width=34 height=46 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="q" +char id=114 x=304 y=195 width=16 height=34 xoffset=0 yoffset=26 xadvance=19 page=0 chnl=0 letter="r" +char id=115 x=281 y=0 width=20 height=35 xoffset=0 yoffset=25 xadvance=23 page=0 chnl=0 letter="s" +char id=116 x=281 y=36 width=16 height=46 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="t" +char id=117 x=193 y=92 width=29 height=34 xoffset=0 yoffset=26 xadvance=32 page=0 chnl=0 letter="u" +char id=118 x=192 y=180 width=31 height=33 xoffset=0 yoffset=27 xadvance=34 page=0 chnl=0 letter="v" +char id=119 x=0 y=90 width=50 height=33 xoffset=0 yoffset=27 xadvance=53 page=0 chnl=0 letter="w" +char id=120 x=162 y=166 width=29 height=33 xoffset=0 yoffset=27 xadvance=32 page=0 chnl=0 letter="x" +char id=121 x=161 y=242 width=31 height=45 xoffset=0 yoffset=26 xadvance=34 page=0 chnl=0 letter="y" +char id=122 x=254 y=92 width=25 height=33 xoffset=0 yoffset=27 xadvance=28 page=0 chnl=0 letter="z" +char id=123 x=302 y=0 width=18 height=57 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 letter="{" +char id=124 x=333 y=46 width=5 height=57 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=304 y=137 width=18 height=57 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 letter="}" +char id=126 x=49 y=140 width=31 height=10 xoffset=0 yoffset=32 xadvance=34 page=0 chnl=0 letter="~" +char id=8226 x=215 y=324 width=19 height=19 xoffset=0 yoffset=34 xadvance=22 page=0 chnl=0 letter="•" +char id=169 x=0 y=159 width=47 height=47 xoffset=0 yoffset=13 xadvance=50 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=144 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/font-big-export.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-big-export.png new file mode 100644 index 0000000..6c02886 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-big-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-export.fnt new file mode 100644 index 0000000..da78a49 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=19 base=19 scaleW=116 scaleH=117 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=102 y=60 width=3 height=14 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=74 y=108 width=5 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=30 y=89 width=11 height=15 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=64 y=30 width=9 height=18 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=16 y=57 width=13 height=16 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=29 y=74 width=12 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=71 y=49 width=2 height=4 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=108 y=81 width=4 height=18 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=108 y=0 width=4 height=18 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=64 y=90 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=53 y=71 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=75 y=69 width=4 height=4 xoffset=0 yoffset=16 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=42 y=102 width=6 height=2 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=75 y=74 width=3 height=3 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=93 y=75 width=7 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=65 y=0 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=102 y=45 width=4 height=14 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=63 y=56 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="2" +char id=51 x=75 y=0 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=74 y=93 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=84 y=15 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=84 y=90 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=74 y=30 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=42 y=87 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=93 y=45 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=108 y=32 width=2 height=11 xoffset=0 yoffset=8 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=108 y=19 width=3 height=12 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=53 y=30 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=64 y=71 width=10 height=6 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=52 y=102 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=93 y=60 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=15 y=101 width=14 height=15 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=16 y=27 width=13 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=30 y=0 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=16 y=42 width=13 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=17 y=0 width=12 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=84 y=75 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=93 y=30 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=0 y=59 width=15 height=14 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="G" +char id=72 x=63 y=98 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=108 y=100 width=2 height=14 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=102 y=27 width=5 height=17 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=54 y=0 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=93 y=91 width=7 height=14 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=74 width=15 height=14 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=30 y=30 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="N" +char id=79 x=0 y=101 width=14 height=14 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="O" +char id=80 x=74 y=15 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=43 width=15 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="Q" +char id=82 x=74 y=78 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=84 y=60 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=84 y=45 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=42 y=0 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="U" +char id=86 x=16 y=74 width=12 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=16 height=14 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=42 y=72 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=53 y=41 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=85 y=0 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=107 y=45 width=4 height=17 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=53 y=82 width=10 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=108 y=63 width=4 height=17 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=52 y=60 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=30 y=110 width=10 height=2 xoffset=0 yoffset=17 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=53 y=98 width=5 height=3 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=16 y=89 width=11 height=11 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=30 y=15 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="b" +char id=99 x=41 y=60 width=10 height=11 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=42 y=45 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=41 y=105 width=10 height=11 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=94 y=12 width=6 height=14 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=42 y=30 width=10 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=64 y=15 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=113 y=56 width=2 height=14 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=112 y=19 width=3 height=18 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=84 y=30 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=111 y=100 width=2 height=14 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=15 width=16 height=11 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="m" +char id=110 x=74 y=45 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=17 y=15 width=11 height=11 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=42 y=15 width=10 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=30 y=45 width=11 height=14 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="q" +char id=114 x=94 y=0 width=6 height=11 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=101 y=0 width=6 height=11 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=101 y=12 width=5 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=74 y=57 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=30 y=60 width=10 height=11 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=0 y=89 width=15 height=11 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="w" +char id=120 x=64 y=78 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=53 y=15 width=10 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=84 y=105 width=8 height=11 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=101 y=94 width=6 height=18 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=112 y=38 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=101 y=75 width=6 height=18 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=30 y=105 width=10 height=4 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=64 y=49 width=6 height=6 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=27 width=15 height=15 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-export.png new file mode 100644 index 0000000..550674e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-scroll-bar.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-scroll-bar.9.png new file mode 100644 index 0000000..230e861 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-scroll-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-scroll-knob.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-scroll-knob.9.png new file mode 100644 index 0000000..c177cdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-scroll-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-split-pane.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-split-pane.9.png new file mode 100644 index 0000000..a435149 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/horizontal-split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/list.9.png new file mode 100644 index 0000000..2f65d48 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/minus.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/minus.png new file mode 100644 index 0000000..88a17d8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/plus.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/plus.png new file mode 100644 index 0000000..809efd0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-knob-vertical.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-knob-vertical.9.png new file mode 100644 index 0000000..00612ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-knob-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-knob.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-knob.9.png new file mode 100644 index 0000000..fe6d89d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..8a45008 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar.9.png new file mode 100644 index 0000000..6cbd50c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/radio-button-off.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/radio-button-off.png new file mode 100644 index 0000000..7c22189 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/radio-button-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/radio-button.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/radio-button.png new file mode 100644 index 0000000..3f19999 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/radio-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/select-box-down.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/select-box-down.9.png new file mode 100644 index 0000000..e4ed9e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/select-box-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/select-box.9.png new file mode 100644 index 0000000..a290627 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/slider-knob.png new file mode 100644 index 0000000..32d4853 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/slider-vertical.9.png new file mode 100644 index 0000000..535d826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/slider.9.png new file mode 100644 index 0000000..5abe385 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/textfield.9.png new file mode 100644 index 0000000..1adac30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-scroll-bar.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-scroll-bar.9.png new file mode 100644 index 0000000..b424aa5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-scroll-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-scroll-knob.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-scroll-knob.9.png new file mode 100644 index 0000000..6b66152 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-scroll-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-split-pane.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-split-pane.9.png new file mode 100644 index 0000000..08e807b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/vertical-split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/white.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/white.png new file mode 100644 index 0000000..39c2d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/glassy/raw/window.9.png new file mode 100644 index 0000000..0a12565 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/glassy/skin/font-big-export.fnt b/src/main/resources/omni_power/gdx-skins/glassy/skin/font-big-export.fnt new file mode 100644 index 0000000..e4a3779 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/skin/font-big-export.fnt @@ -0,0 +1,104 @@ +info face="font-big-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=60 base=60 scaleW=341 scaleH=350 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-big-export.png" +chars count=98 +char id=33 x=332 y=299 width=8 height=46 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter="!" +char id=34 x=235 y=326 width=16 height=14 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=126 y=0 width=33 height=45 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="#" +char id=36 x=224 y=92 width=29 height=57 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=0 letter="$" +char id=37 x=47 y=255 width=43 height=49 xoffset=0 yoffset=13 xadvance=46 page=0 chnl=0 letter="%" +char id=38 x=51 y=90 width=39 height=44 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="&" +char id=39 x=252 y=334 width=4 height=14 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=321 y=0 width=11 height=58 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="(" +char id=41 x=320 y=288 width=11 height=58 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=193 y=324 width=21 height=21 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="*" +char id=43 x=160 y=135 width=31 height=30 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="+" +char id=44 x=81 y=135 width=9 height=14 xoffset=0 yoffset=50 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=235 y=321 width=17 height=4 xoffset=0 yoffset=36 xadvance=20 page=0 chnl=0 letter="-" +char id=46 x=235 y=341 width=7 height=8 xoffset=0 yoffset=52 xadvance=10 page=0 chnl=0 letter="." +char id=47 x=280 y=137 width=23 height=51 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="/" +char id=48 x=193 y=0 width=30 height=45 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="0" +char id=49 x=306 y=230 width=11 height=44 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=193 y=233 width=30 height=44 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="2" +char id=51 x=193 y=46 width=29 height=45 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="3" +char id=52 x=192 y=135 width=31 height=44 xoffset=0 yoffset=15 xadvance=34 page=0 chnl=0 letter="4" +char id=53 x=223 y=46 width=29 height=45 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="5" +char id=54 x=253 y=196 width=27 height=45 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="6" +char id=55 x=224 y=0 width=28 height=45 xoffset=0 yoffset=15 xadvance=31 page=0 chnl=0 letter="7" +char id=56 x=193 y=278 width=30 height=45 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="8" +char id=57 x=253 y=46 width=27 height=45 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="9" +char id=58 x=330 y=216 width=8 height=35 xoffset=0 yoffset=25 xadvance=11 page=0 chnl=0 letter=":" +char id=59 x=323 y=176 width=9 height=39 xoffset=0 yoffset=25 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=128 y=209 width=31 height=32 xoffset=0 yoffset=21 xadvance=34 page=0 chnl=0 letter="<" +char id=61 x=192 y=214 width=30 height=18 xoffset=0 yoffset=28 xadvance=33 page=0 chnl=0 letter="=" +char id=62 x=160 y=209 width=31 height=32 xoffset=0 yoffset=21 xadvance=34 page=0 chnl=0 letter=">" +char id=63 x=253 y=242 width=26 height=46 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="?" +char id=64 x=47 y=207 width=45 height=47 xoffset=0 yoffset=13 xadvance=48 page=0 chnl=0 letter="@" +char id=65 x=47 y=305 width=42 height=44 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="A" +char id=66 x=160 y=294 width=32 height=44 xoffset=0 yoffset=15 xadvance=35 page=0 chnl=0 letter="B" +char id=67 x=48 y=159 width=42 height=45 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="C" +char id=68 x=53 y=0 width=37 height=44 xoffset=0 yoffset=15 xadvance=40 page=0 chnl=0 letter="D" +char id=69 x=254 y=126 width=25 height=44 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="E" +char id=70 x=279 y=289 width=25 height=44 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="F" +char id=71 x=0 y=255 width=46 height=45 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="G" +char id=72 x=160 y=45 width=32 height=44 xoffset=0 yoffset=16 xadvance=35 page=0 chnl=0 letter="H" +char id=73 x=334 y=104 width=5 height=44 xoffset=0 yoffset=16 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=305 y=288 width=14 height=57 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="J" +char id=75 x=160 y=90 width=32 height=44 xoffset=0 yoffset=16 xadvance=35 page=0 chnl=0 letter="K" +char id=76 x=281 y=189 width=22 height=44 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=0 y=45 width=50 height=44 xoffset=0 yoffset=16 xadvance=53 page=0 chnl=0 letter="M" +char id=78 x=90 y=305 width=35 height=44 xoffset=0 yoffset=16 xadvance=38 page=0 chnl=0 letter="N" +char id=79 x=0 y=301 width=46 height=45 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="O" +char id=80 x=224 y=231 width=28 height=44 xoffset=0 yoffset=15 xadvance=31 page=0 chnl=0 letter="P" +char id=81 x=0 y=207 width=46 height=47 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="Q" +char id=82 x=224 y=276 width=28 height=44 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="R" +char id=83 x=280 y=242 width=25 height=45 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="S" +char id=84 x=280 y=92 width=24 height=44 xoffset=0 yoffset=16 xadvance=27 page=0 chnl=0 letter="T" +char id=85 x=126 y=46 width=33 height=45 xoffset=0 yoffset=15 xadvance=36 page=0 chnl=0 letter="U" +char id=86 x=51 y=45 width=39 height=44 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=52 height=44 xoffset=0 yoffset=16 xadvance=55 page=0 chnl=0 letter="W" +char id=88 x=126 y=128 width=33 height=44 xoffset=0 yoffset=16 xadvance=36 page=0 chnl=0 letter="X" +char id=89 x=160 y=0 width=32 height=44 xoffset=0 yoffset=16 xadvance=35 page=0 chnl=0 letter="Y" +char id=90 x=253 y=289 width=25 height=44 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="Z" +char id=91 x=321 y=59 width=11 height=57 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=126 y=294 width=33 height=51 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="\" +char id=93 x=318 y=230 width=11 height=57 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=91 y=36 width=34 height=33 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="^" +char id=95 x=49 y=135 width=31 height=4 xoffset=0 yoffset=55 xadvance=34 page=0 chnl=0 letter="_" +char id=96 x=160 y=339 width=13 height=10 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="`" +char id=97 x=91 y=117 width=34 height=35 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="a" +char id=98 x=126 y=247 width=34 height=46 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="b" +char id=99 x=126 y=92 width=33 height=35 xoffset=0 yoffset=25 xadvance=36 page=0 chnl=0 letter="c" +char id=100 x=93 y=200 width=34 height=46 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="d" +char id=101 x=128 y=173 width=33 height=35 xoffset=0 yoffset=25 xadvance=36 page=0 chnl=0 letter="e" +char id=102 x=305 y=58 width=15 height=46 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="f" +char id=103 x=91 y=153 width=34 height=46 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="g" +char id=104 x=224 y=150 width=29 height=45 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="h" +char id=105 x=332 y=252 width=8 height=46 xoffset=0 yoffset=14 xadvance=11 page=0 chnl=0 letter="i" +char id=106 x=323 y=117 width=10 height=58 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="j" +char id=107 x=253 y=0 width=27 height=45 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="k" +char id=108 x=333 y=0 width=5 height=45 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=124 width=48 height=34 xoffset=0 yoffset=26 xadvance=51 page=0 chnl=0 letter="m" +char id=110 x=224 y=196 width=28 height=34 xoffset=0 yoffset=26 xadvance=31 page=0 chnl=0 letter="n" +char id=111 x=91 y=0 width=34 height=35 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="o" +char id=112 x=91 y=255 width=34 height=46 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="p" +char id=113 x=91 y=70 width=34 height=46 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="q" +char id=114 x=304 y=195 width=16 height=34 xoffset=0 yoffset=26 xadvance=19 page=0 chnl=0 letter="r" +char id=115 x=281 y=0 width=20 height=35 xoffset=0 yoffset=25 xadvance=23 page=0 chnl=0 letter="s" +char id=116 x=281 y=36 width=16 height=46 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="t" +char id=117 x=193 y=92 width=29 height=34 xoffset=0 yoffset=26 xadvance=32 page=0 chnl=0 letter="u" +char id=118 x=192 y=180 width=31 height=33 xoffset=0 yoffset=27 xadvance=34 page=0 chnl=0 letter="v" +char id=119 x=0 y=90 width=50 height=33 xoffset=0 yoffset=27 xadvance=53 page=0 chnl=0 letter="w" +char id=120 x=162 y=166 width=29 height=33 xoffset=0 yoffset=27 xadvance=32 page=0 chnl=0 letter="x" +char id=121 x=161 y=242 width=31 height=45 xoffset=0 yoffset=26 xadvance=34 page=0 chnl=0 letter="y" +char id=122 x=254 y=92 width=25 height=33 xoffset=0 yoffset=27 xadvance=28 page=0 chnl=0 letter="z" +char id=123 x=302 y=0 width=18 height=57 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 letter="{" +char id=124 x=333 y=46 width=5 height=57 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=304 y=137 width=18 height=57 xoffset=0 yoffset=15 xadvance=21 page=0 chnl=0 letter="}" +char id=126 x=49 y=140 width=31 height=10 xoffset=0 yoffset=32 xadvance=34 page=0 chnl=0 letter="~" +char id=8226 x=215 y=324 width=19 height=19 xoffset=0 yoffset=34 xadvance=22 page=0 chnl=0 letter="•" +char id=169 x=0 y=159 width=47 height=47 xoffset=0 yoffset=13 xadvance=50 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=144 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/glassy/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/glassy/skin/font-export.fnt new file mode 100644 index 0000000..da78a49 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=19 base=19 scaleW=116 scaleH=117 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=102 y=60 width=3 height=14 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=74 y=108 width=5 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=30 y=89 width=11 height=15 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=64 y=30 width=9 height=18 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=16 y=57 width=13 height=16 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=29 y=74 width=12 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=71 y=49 width=2 height=4 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=108 y=81 width=4 height=18 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=108 y=0 width=4 height=18 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=64 y=90 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=53 y=71 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=75 y=69 width=4 height=4 xoffset=0 yoffset=16 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=42 y=102 width=6 height=2 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=75 y=74 width=3 height=3 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=93 y=75 width=7 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=65 y=0 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=102 y=45 width=4 height=14 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=63 y=56 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="2" +char id=51 x=75 y=0 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=74 y=93 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=84 y=15 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=84 y=90 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=74 y=30 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=42 y=87 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=93 y=45 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=108 y=32 width=2 height=11 xoffset=0 yoffset=8 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=108 y=19 width=3 height=12 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=53 y=30 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=64 y=71 width=10 height=6 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=52 y=102 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=93 y=60 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=15 y=101 width=14 height=15 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=16 y=27 width=13 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=30 y=0 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=16 y=42 width=13 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=17 y=0 width=12 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=84 y=75 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=93 y=30 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=0 y=59 width=15 height=14 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="G" +char id=72 x=63 y=98 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=108 y=100 width=2 height=14 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=102 y=27 width=5 height=17 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=54 y=0 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=93 y=91 width=7 height=14 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=74 width=15 height=14 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=30 y=30 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="N" +char id=79 x=0 y=101 width=14 height=14 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="O" +char id=80 x=74 y=15 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=43 width=15 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="Q" +char id=82 x=74 y=78 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=84 y=60 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=84 y=45 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=42 y=0 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="U" +char id=86 x=16 y=74 width=12 height=14 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=16 height=14 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=42 y=72 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=53 y=41 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=85 y=0 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=107 y=45 width=4 height=17 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=53 y=82 width=10 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=108 y=63 width=4 height=17 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=52 y=60 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=30 y=110 width=10 height=2 xoffset=0 yoffset=17 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=53 y=98 width=5 height=3 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=16 y=89 width=11 height=11 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=30 y=15 width=11 height=14 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="b" +char id=99 x=41 y=60 width=10 height=11 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=42 y=45 width=10 height=14 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=41 y=105 width=10 height=11 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=94 y=12 width=6 height=14 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=42 y=30 width=10 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=64 y=15 width=9 height=14 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=113 y=56 width=2 height=14 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=112 y=19 width=3 height=18 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=84 y=30 width=8 height=14 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=111 y=100 width=2 height=14 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=15 width=16 height=11 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="m" +char id=110 x=74 y=45 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=17 y=15 width=11 height=11 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=42 y=15 width=10 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=30 y=45 width=11 height=14 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="q" +char id=114 x=94 y=0 width=6 height=11 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=101 y=0 width=6 height=11 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=101 y=12 width=5 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=74 y=57 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=30 y=60 width=10 height=11 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=0 y=89 width=15 height=11 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="w" +char id=120 x=64 y=78 width=9 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=53 y=15 width=10 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=84 y=105 width=8 height=11 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=101 y=94 width=6 height=18 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=112 y=38 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=101 y=75 width=6 height=18 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=30 y=105 width=10 height=4 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=64 y=49 width=6 height=6 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=27 width=15 height=15 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.atlas b/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.atlas new file mode 100644 index 0000000..0ecdc04 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.atlas @@ -0,0 +1,263 @@ + +glassy-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 1, 508 + size: 297, 106 + split: 49, 48, 52, 51 + pad: 28, 27, 7, 7 + orig: 297, 106 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 344, 860 + size: 297, 106 + split: 49, 48, 52, 51 + pad: 28, 27, 7, 7 + orig: 297, 106 + offset: 0, 0 + index: -1 +button-small + rotate: false + xy: 1, 460 + size: 130, 46 + split: 21, 21, 22, 20 + orig: 130, 46 + offset: 0, 0 + index: -1 +button-small-down + rotate: false + xy: 344, 812 + size: 130, 46 + split: 21, 21, 22, 20 + orig: 130, 46 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 66, 319 + size: 25, 20 + orig: 25, 20 + offset: 0, 0 + index: -1 +checkbox-off + rotate: false + xy: 643, 923 + size: 25, 20 + orig: 25, 20 + offset: 0, 0 + index: -1 +font-big-export + rotate: false + xy: 1, 616 + size: 341, 350 + orig: 341, 350 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 341 + size: 116, 117 + orig: 116, 117 + offset: 0, 0 + index: -1 +horizontal-scroll-bar + rotate: false + xy: 643, 945 + size: 52, 21 + split: 14, 14, 9, 9 + pad: 8, 8, 5, 5 + orig: 52, 21 + offset: 0, 0 + index: -1 +horizontal-scroll-knob + rotate: false + xy: 133, 485 + size: 52, 21 + split: 14, 14, 10, 9 + pad: 0, 0, 0, 0 + orig: 52, 21 + offset: 0, 0 + index: -1 +horizontal-split-pane + rotate: false + xy: 119, 453 + size: 5, 5 + split: 2, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 5, 5 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 35, 50 + size: 16, 15 + split: 4, 4, 4, 4 + pad: 4, 4, 2, 2 + orig: 16, 15 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 697, 946 + size: 25, 20 + orig: 25, 20 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 133, 463 + size: 25, 20 + orig: 25, 20 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 300, 548 + size: 22, 32 + split: 7, 6, 6, 6 + pad: 3, 3, 3, 3 + orig: 22, 32 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 344, 732 + size: 1, 22 + split: 0, 0, 0, 21 + pad: 0, 0, 0, 0 + orig: 1, 22 + offset: 0, 0 + index: -1 +progress-bar-knob-vertical + rotate: false + xy: 476, 823 + size: 22, 1 + split: 0, 21, 0, 0 + pad: 0, 0, 0, 0 + orig: 22, 1 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 1, 43 + size: 32, 22 + split: 6, 6, 7, 6 + pad: 3, 3, 3, 3 + orig: 32, 22 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 187, 486 + size: 25, 20 + orig: 25, 20 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 344, 756 + size: 25, 20 + orig: 25, 20 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 344, 778 + size: 47, 32 + split: 4, 35, 28, 3 + pad: 7, 36, 3, 3 + orig: 47, 32 + offset: 0, 0 + index: -1 +select-box-down + rotate: false + xy: 476, 826 + size: 47, 32 + split: 4, 35, 28, 3 + pad: 3, 36, 3, 3 + orig: 47, 32 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 393, 778 + size: 25, 32 + split: 5, 5, 15, 14 + pad: 0, 0, 0, 0 + orig: 25, 32 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 300, 582 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 525, 826 + size: 25, 32 + split: 11, 11, 9, 7 + pad: 0, 0, 1, 0 + orig: 25, 32 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 1, 1 + size: 22, 40 + split: 6, 6, 5, 5 + pad: 8, 8, 7, 7 + orig: 22, 40 + offset: 0, 0 + index: -1 +vertical-scroll-bar + rotate: false + xy: 66, 265 + size: 21, 52 + split: 9, 9, 14, 14 + pad: 5, 5, 8, 8 + orig: 21, 52 + offset: 0, 0 + index: -1 +vertical-scroll-knob + rotate: false + xy: 643, 869 + size: 21, 52 + split: 10, 9, 14, 14 + pad: 0, 0, 0, 0 + orig: 21, 52 + offset: 0, 0 + index: -1 +vertical-split-pane + rotate: false + xy: 334, 609 + size: 5, 5 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 5 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 93, 338 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 67 + size: 63, 272 + split: 10, 10, 30, 0 + pad: 5, 5, 32, 24 + orig: 63, 272 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.json b/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.json new file mode 100644 index 0000000..2eaad5f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.json @@ -0,0 +1,213 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + font-big: { + file: font-big-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + cyan: { + r: 0 + g: 1 + b: 0.99166656 + a: 1 + } + dark-cyan: { + r: 0 + g: 0.39373153 + b: 0.4333333 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + pale-blue: { + name: white + color: { + r: 0.48342222 + g: 0.76367503 + b: 0.99333334 + a: 1 + } + } + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-down + } + small: { + up: button-small + down: button-small-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox + checkboxOff: checkbox-off + font: font + fontColor: white + } + radio: { + checkboxOn: radio-button + checkboxOff: radio-button-off + font: font + fontColor: white + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font-big + up: button + down: button-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + big: { + font: font-big + } + black: { + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: dark-cyan + selection: pale-blue + background: list + } + plain: { + font: font + fontColorSelected: white + fontColorUnselected: dark-cyan + selection: pale-blue + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-knob-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: horizontal-scroll-bar + hScrollKnob: horizontal-scroll-knob + vScroll: vertical-scroll-bar + vScrollKnob: vertical-scroll-knob + } + scroll: { + background: list + hScroll: horizontal-scroll-bar + hScrollKnob: horizontal-scroll-knob + vScroll: vertical-scroll-bar + vScrollKnob: vertical-scroll-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: dark-cyan + background: select-box + scrollStyle: scroll + listStyle: plain + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider + knob: slider-knob + } + default-vertical: { + background: slider-vertical + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: horizontal-split-pane + } + default-vertical: { + handle: vertical-split-pane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font-big + up: button + down: button-down + } + small: { + font: font + up: button-small + down: button-small-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + cursor: black + selection: pale-blue + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: black + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: pale-blue + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: black + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.png b/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.png new file mode 100644 index 0000000..b4c04a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/glassy/skin/glassy-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/README.md b/src/main/resources/omni_power/gdx-skins/golden-spiral/README.md new file mode 100644 index 0000000..41266a1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/README.md @@ -0,0 +1,24 @@ +# Golden Spiral UI + +``` +Golden Spiral UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Golden Spiral UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Steampunk-themed. + +![Golden Spiral](preview.gif) + +![Golden Spiral](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/golden-spiral-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/preview.gif b/src/main/resources/omni_power/gdx-skins/golden-spiral/preview.gif new file mode 100644 index 0000000..7a9951f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/preview.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/preview.png new file mode 100644 index 0000000..3546f17 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-over.9.png new file mode 100644 index 0000000..ba77870 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-over.png new file mode 100644 index 0000000..276341c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-pressed.9.png new file mode 100644 index 0000000..ecc09ad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-pressed.png new file mode 100644 index 0000000..9dc2bee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button.9.png new file mode 100644 index 0000000..f084529 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button.png new file mode 100644 index 0000000..bbf043f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off-over.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off-over.png new file mode 100644 index 0000000..9237e4c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off-pressed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off-pressed.png new file mode 100644 index 0000000..34ee6ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off.png new file mode 100644 index 0000000..dc96de5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on-over.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on-over.png new file mode 100644 index 0000000..7fe361d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on-pressed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on-pressed.png new file mode 100644 index 0000000..cde0fe4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on.png new file mode 100644 index 0000000..eba4ad5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor-primed.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor-primed.9.png new file mode 100644 index 0000000..14cc41a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor-primed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor-primed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor-primed.png new file mode 100644 index 0000000..294efd9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor-primed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor.9.png new file mode 100644 index 0000000..8211469 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor.png new file mode 100644 index 0000000..131ad93 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-export.fnt new file mode 100644 index 0000000..a7ce9d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-export.fnt @@ -0,0 +1,165 @@ +info face=font-export size=35 bold=0 italic=0 charset= unicode= stretchH=100 smooth=1 aa=1 padding=2,2,2,2 spacing=0,0 outline=0 +common lineHeight=52 base=35 scaleW=216 scaleH=256 pages=1 packed=0 +page id=0 file="font-export.png" +chars count=96 +char id=33 x=2 y=2 width=13 height=18 xoffset=3 yoffset=12 xadvance=8 page=0 chnl=15 +char id=34 x=2 y=22 width=10 height=10 xoffset=5 yoffset=10 xadvance=8 page=0 chnl=15 +char id=35 x=2 y=34 width=16 height=20 xoffset=2 yoffset=10 xadvance=10 page=0 chnl=15 +char id=36 x=17 y=2 width=18 height=26 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=15 +char id=37 x=2 y=56 width=18 height=19 xoffset=3 yoffset=11 xadvance=16 page=0 chnl=15 +char id=38 x=20 y=30 width=20 height=19 xoffset=3 yoffset=11 xadvance=18 page=0 chnl=15 +char id=39 x=37 y=2 width=8 height=10 xoffset=5 yoffset=10 xadvance=6 page=0 chnl=15 +char id=40 x=2 y=77 width=16 height=24 xoffset=3 yoffset=9 xadvance=8 page=0 chnl=15 +char id=41 x=2 y=103 width=16 height=24 xoffset=-1 yoffset=9 xadvance=8 page=0 chnl=15 +char id=42 x=37 y=14 width=13 height=11 xoffset=3 yoffset=11 xadvance=8 page=0 chnl=15 +char id=43 x=2 y=129 width=14 height=12 xoffset=2 yoffset=16 xadvance=12 page=0 chnl=15 +char id=44 x=47 y=2 width=7 height=10 xoffset=0 yoffset=25 xadvance=6 page=0 chnl=15 +char id=45 x=2 y=143 width=10 height=4 xoffset=3 yoffset=20 xadvance=9 page=0 chnl=15 +char id=46 x=2 y=149 width=5 height=6 xoffset=2 yoffset=24 xadvance=6 page=0 chnl=15 +char id=47 x=2 y=157 width=15 height=24 xoffset=2 yoffset=7 xadvance=9 page=0 chnl=15 +char id=48 x=18 y=129 width=16 height=19 xoffset=3 yoffset=11 xadvance=13 page=0 chnl=15 +char id=49 x=20 y=77 width=17 height=20 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=15 +char id=50 x=22 y=51 width=18 height=21 xoffset=-1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=51 x=20 y=99 width=17 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=15 +char id=52 x=2 y=183 width=16 height=20 xoffset=3 yoffset=11 xadvance=12 page=0 chnl=15 +char id=53 x=19 y=150 width=20 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=15 +char id=54 x=36 y=120 width=19 height=20 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=55 x=39 y=74 width=19 height=20 xoffset=2 yoffset=11 xadvance=11 page=0 chnl=15 +char id=56 x=39 y=96 width=18 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=15 +char id=57 x=42 y=27 width=17 height=19 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=58 x=52 y=14 width=9 height=11 xoffset=2 yoffset=18 xadvance=7 page=0 chnl=15 +char id=59 x=42 y=48 width=10 height=15 xoffset=0 yoffset=19 xadvance=8 page=0 chnl=15 +char id=60 x=54 y=48 width=10 height=13 xoffset=3 yoffset=16 xadvance=9 page=0 chnl=15 +char id=61 x=20 y=120 width=14 height=6 xoffset=3 yoffset=18 xadvance=14 page=0 chnl=15 +char id=62 x=61 y=27 width=11 height=13 xoffset=1 yoffset=16 xadvance=9 page=0 chnl=15 +char id=63 x=63 y=2 width=14 height=19 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=15 +char id=64 x=2 y=205 width=19 height=18 xoffset=3 yoffset=12 xadvance=16 page=0 chnl=15 +char id=65 x=2 y=225 width=25 height=19 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=66 x=20 y=171 width=19 height=21 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=67 x=23 y=194 width=18 height=19 xoffset=3 yoffset=11 xadvance=15 page=0 chnl=15 +char id=68 x=29 y=215 width=23 height=22 xoffset=2 yoffset=8 xadvance=21 page=0 chnl=15 +char id=69 x=41 y=142 width=18 height=19 xoffset=3 yoffset=11 xadvance=15 page=0 chnl=15 +char id=70 x=57 y=117 width=21 height=23 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=15 +char id=71 x=43 y=163 width=26 height=33 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=15 +char id=72 x=61 y=142 width=23 height=19 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=73 x=60 y=63 width=19 height=21 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=15 +char id=74 x=74 y=23 width=26 height=35 xoffset=-6 yoffset=9 xadvance=12 page=0 chnl=15 +char id=75 x=60 y=86 width=22 height=22 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=15 +char id=76 x=81 y=60 width=24 height=24 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=15 +char id=77 x=80 y=110 width=28 height=24 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=15 +char id=78 x=79 y=2 width=23 height=19 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=15 +char id=79 x=84 y=86 width=19 height=19 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=15 +char id=80 x=105 y=86 width=20 height=19 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=81 x=102 y=23 width=24 height=25 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=15 +char id=82 x=107 y=50 width=20 height=24 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=83 x=104 y=2 width=18 height=19 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=15 +char id=84 x=128 y=2 width=20 height=23 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=15 +char id=85 x=128 y=27 width=21 height=19 xoffset=4 yoffset=11 xadvance=18 page=0 chnl=15 +char id=86 x=150 y=2 width=21 height=20 xoffset=3 yoffset=11 xadvance=15 page=0 chnl=15 +char id=87 x=54 y=198 width=24 height=20 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=88 x=71 y=163 width=25 height=21 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=89 x=80 y=186 width=29 height=36 xoffset=-5 yoffset=11 xadvance=18 page=0 chnl=15 +char id=90 x=54 y=220 width=23 height=22 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=91 x=86 y=136 width=19 height=24 xoffset=1 yoffset=9 xadvance=9 page=0 chnl=15 +char id=92 x=79 y=224 width=11 height=25 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=15 +char id=93 x=92 y=224 width=19 height=24 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=15 +char id=94 x=29 y=244 width=11 height=9 xoffset=4 yoffset=11 xadvance=9 page=0 chnl=15 +char id=95 x=92 y=250 width=15 height=4 xoffset=-1 yoffset=27 xadvance=11 page=0 chnl=15 +char id=96 x=66 y=42 width=6 height=8 xoffset=5 yoffset=13 xadvance=4 page=0 chnl=15 +char id=97 x=98 y=162 width=16 height=12 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=15 +char id=98 x=111 y=176 width=19 height=29 xoffset=2 yoffset=1 xadvance=12 page=0 chnl=15 +char id=99 x=111 y=207 width=14 height=12 xoffset=1 yoffset=18 xadvance=8 page=0 chnl=15 +char id=100 x=113 y=221 width=23 height=27 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=15 +char id=101 x=127 y=207 width=14 height=12 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=15 +char id=102 x=110 y=107 width=39 height=51 xoffset=-15 yoffset=0 xadvance=7 page=0 chnl=15 +char id=103 x=138 y=221 width=28 height=30 xoffset=-14 yoffset=18 xadvance=10 page=0 chnl=15 +char id=104 x=127 y=76 width=20 height=28 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=15 +char id=105 x=129 y=48 width=11 height=16 xoffset=2 yoffset=14 xadvance=7 page=0 chnl=15 +char id=106 x=132 y=160 width=31 height=34 xoffset=-18 yoffset=14 xadvance=6 page=0 chnl=15 +char id=107 x=149 y=48 width=21 height=29 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=15 +char id=108 x=151 y=79 width=19 height=29 xoffset=2 yoffset=1 xadvance=8 page=0 chnl=15 +char id=109 x=151 y=24 width=21 height=18 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=15 +char id=110 x=173 y=2 width=17 height=12 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=15 +char id=111 x=116 y=160 width=14 height=13 xoffset=1 yoffset=17 xadvance=9 page=0 chnl=15 +char id=112 x=151 y=110 width=27 height=30 xoffset=-11 yoffset=18 xadvance=9 page=0 chnl=15 +char id=113 x=172 y=44 width=22 height=29 xoffset=-4 yoffset=18 xadvance=11 page=0 chnl=15 +char id=114 x=151 y=142 width=13 height=12 xoffset=1 yoffset=18 xadvance=8 page=0 chnl=15 +char id=115 x=143 y=196 width=12 height=12 xoffset=0 yoffset=18 xadvance=9 page=0 chnl=15 +char id=116 x=157 y=196 width=13 height=18 xoffset=2 yoffset=12 xadvance=8 page=0 chnl=15 +char id=117 x=174 y=16 width=16 height=12 xoffset=1 yoffset=19 xadvance=11 page=0 chnl=15 +char id=118 x=172 y=75 width=14 height=14 xoffset=2 yoffset=16 xadvance=7 page=0 chnl=15 +char id=119 x=174 y=30 width=18 height=12 xoffset=1 yoffset=18 xadvance=13 page=0 chnl=15 +char id=120 x=192 y=2 width=20 height=19 xoffset=-6 yoffset=18 xadvance=8 page=0 chnl=15 +char id=121 x=168 y=216 width=27 height=29 xoffset=-10 yoffset=19 xadvance=11 page=0 chnl=15 +char id=122 x=165 y=156 width=24 height=24 xoffset=-9 yoffset=19 xadvance=8 page=0 chnl=15 +char id=123 x=172 y=182 width=18 height=24 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=15 +char id=124 x=142 y=48 width=5 height=22 xoffset=5 yoffset=9 xadvance=9 page=0 chnl=15 +char id=125 x=180 y=91 width=18 height=24 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=15 +char id=126 x=143 y=210 width=12 height=6 xoffset=3 yoffset=19 xadvance=11 page=0 chnl=15 +char id=8226 x=132 y=196 width=9 height=9 xoffset=3 yoffset=18 xadvance=9 page=0 chnl=15 +char id=169 x=194 y=23 width=20 height=19 xoffset=4 yoffset=11 xadvance=19 page=0 chnl=15 +char id=32 x=0 y=0 width=0 height=0 xoffset=4 yoffset=11 xadvance=7 page=0 chnl=15 +kernings count=63 +kerning first=48 second=44 amount=-2 +kerning first=80 second=44 amount=-6 +kerning first=80 second=45 amount=-2 +kerning first=80 second=65 amount=-2 +kerning first=80 second=66 amount=-1 +kerning first=80 second=79 amount=1 +kerning first=80 second=97 amount=-2 +kerning first=80 second=100 amount=-2 +kerning first=82 second=97 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=84 second=38 amount=-1 +kerning first=84 second=44 amount=-3 +kerning first=84 second=45 amount=-3 +kerning first=84 second=65 amount=-2 +kerning first=84 second=66 amount=-1 +kerning first=84 second=79 amount=0 +kerning first=84 second=97 amount=-2 +kerning first=84 second=100 amount=-2 +kerning first=86 second=38 amount=-2 +kerning first=86 second=40 amount=-2 +kerning first=86 second=44 amount=-5 +kerning first=86 second=45 amount=-4 +kerning first=86 second=46 amount=-5 +kerning first=86 second=48 amount=-2 +kerning first=86 second=54 amount=-2 +kerning first=86 second=56 amount=-2 +kerning first=86 second=58 amount=-4 +kerning first=86 second=59 amount=-4 +kerning first=86 second=60 amount=-4 +kerning first=86 second=61 amount=-4 +kerning first=86 second=62 amount=-4 +kerning first=86 second=64 amount=-2 +kerning first=86 second=65 amount=-3 +kerning first=86 second=66 amount=-2 +kerning first=86 second=67 amount=-2 +kerning first=86 second=69 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-1 +kerning first=86 second=80 amount=-2 +kerning first=86 second=82 amount=-2 +kerning first=86 second=83 amount=-2 +kerning first=86 second=95 amount=-5 +kerning first=86 second=97 amount=-3 +kerning first=86 second=99 amount=-3 +kerning first=86 second=100 amount=-3 +kerning first=86 second=101 amount=-3 +kerning first=86 second=103 amount=-3 +kerning first=86 second=105 amount=-3 +kerning first=86 second=106 amount=-3 +kerning first=86 second=109 amount=-3 +kerning first=86 second=110 amount=-3 +kerning first=86 second=111 amount=-3 +kerning first=86 second=112 amount=-3 +kerning first=86 second=113 amount=-3 +kerning first=86 second=114 amount=-3 +kerning first=86 second=115 amount=-3 +kerning first=86 second=117 amount=-3 +kerning first=86 second=118 amount=-3 +kerning first=86 second=119 amount=-3 +kerning first=86 second=120 amount=-3 +kerning first=86 second=121 amount=-3 +kerning first=86 second=122 amount=-3 +kerning first=86 second=169 amount=-2 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-export.png new file mode 100644 index 0000000..9595c28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title-export.fnt new file mode 100644 index 0000000..0bed344 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title-export.fnt @@ -0,0 +1,101 @@ +info face=font-title-export size=50 bold=0 italic=1 charset= unicode= stretchH=100 smooth=1 aa=1 padding=2,2,2,2 spacing=0,0 outline=0 +common lineHeight=59 base=38 scaleW=395 scaleH=510 pages=1 packed=0 +page id=0 file="font-title-export.png" +chars count=96 +char id=33 x=2 y=2 width=21 height=41 xoffset=2 yoffset=5 xadvance=10 page=0 chnl=15 +char id=34 x=2 y=45 width=17 height=16 xoffset=7 yoffset=5 xadvance=9 page=0 chnl=15 +char id=35 x=2 y=63 width=32 height=41 xoffset=-1 yoffset=6 xadvance=20 page=0 chnl=15 +char id=36 x=25 y=2 width=35 height=46 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=15 +char id=37 x=2 y=106 width=33 height=43 xoffset=8 yoffset=4 xadvance=35 page=0 chnl=15 +char id=38 x=36 y=50 width=56 height=43 xoffset=0 yoffset=5 xadvance=46 page=0 chnl=15 +char id=39 x=62 y=2 width=13 height=16 xoffset=7 yoffset=5 xadvance=5 page=0 chnl=15 +char id=40 x=2 y=151 width=26 height=49 xoffset=2 yoffset=1 xadvance=12 page=0 chnl=15 +char id=41 x=2 y=202 width=26 height=49 xoffset=-2 yoffset=1 xadvance=12 page=0 chnl=15 +char id=42 x=62 y=20 width=23 height=24 xoffset=10 yoffset=4 xadvance=22 page=0 chnl=15 +char id=43 x=87 y=2 width=25 height=25 xoffset=3 yoffset=15 xadvance=21 page=0 chnl=15 +char id=44 x=87 y=29 width=14 height=18 xoffset=-4 yoffset=36 xadvance=8 page=0 chnl=15 +char id=45 x=2 y=253 width=17 height=13 xoffset=-1 yoffset=26 xadvance=8 page=0 chnl=15 +char id=46 x=2 y=268 width=11 height=12 xoffset=-1 yoffset=35 xadvance=8 page=0 chnl=15 +char id=47 x=2 y=282 width=35 height=49 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=48 x=30 y=151 width=30 height=42 xoffset=2 yoffset=5 xadvance=21 page=0 chnl=15 +char id=49 x=37 y=95 width=24 height=41 xoffset=5 yoffset=6 xadvance=21 page=0 chnl=15 +char id=50 x=30 y=195 width=36 height=42 xoffset=-4 yoffset=5 xadvance=21 page=0 chnl=15 +char id=51 x=62 y=138 width=33 height=42 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=15 +char id=52 x=63 y=95 width=32 height=41 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=53 x=30 y=239 width=33 height=41 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=54 x=94 y=49 width=36 height=41 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=55 x=114 y=2 width=33 height=42 xoffset=2 yoffset=5 xadvance=21 page=0 chnl=15 +char id=56 x=2 y=333 width=32 height=42 xoffset=1 yoffset=5 xadvance=21 page=0 chnl=15 +char id=57 x=2 y=377 width=33 height=41 xoffset=-1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=58 x=36 y=333 width=13 height=18 xoffset=-1 yoffset=29 xadvance=8 page=0 chnl=15 +char id=59 x=39 y=282 width=16 height=24 xoffset=-4 yoffset=29 xadvance=8 page=0 chnl=15 +char id=60 x=2 y=420 width=30 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=15 +char id=61 x=36 y=353 width=28 height=18 xoffset=3 yoffset=19 xadvance=21 page=0 chnl=15 +char id=62 x=51 y=308 width=29 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=15 +char id=63 x=2 y=458 width=28 height=42 xoffset=3 yoffset=5 xadvance=18 page=0 chnl=15 +char id=64 x=32 y=458 width=43 height=47 xoffset=3 yoffset=2 xadvance=34 page=0 chnl=15 +char id=65 x=65 y=239 width=52 height=45 xoffset=-4 yoffset=2 xadvance=41 page=0 chnl=15 +char id=66 x=68 y=182 width=66 height=45 xoffset=3 yoffset=3 xadvance=62 page=0 chnl=15 +char id=67 x=37 y=373 width=49 height=44 xoffset=2 yoffset=4 xadvance=38 page=0 chnl=15 +char id=68 x=82 y=286 width=62 height=45 xoffset=4 yoffset=2 xadvance=55 page=0 chnl=15 +char id=69 x=119 y=229 width=62 height=43 xoffset=4 yoffset=4 xadvance=58 page=0 chnl=15 +char id=70 x=97 y=92 width=71 height=57 xoffset=-1 yoffset=4 xadvance=56 page=0 chnl=15 +char id=71 x=136 y=151 width=62 height=57 xoffset=0 yoffset=4 xadvance=53 page=0 chnl=15 +char id=72 x=149 y=2 width=83 height=47 xoffset=3 yoffset=1 xadvance=71 page=0 chnl=15 +char id=73 x=77 y=419 width=57 height=43 xoffset=3 yoffset=4 xadvance=46 page=0 chnl=15 +char id=74 x=88 y=333 width=61 height=56 xoffset=-2 yoffset=4 xadvance=47 page=0 chnl=15 +char id=75 x=77 y=464 width=66 height=44 xoffset=4 yoffset=3 xadvance=62 page=0 chnl=15 +char id=76 x=146 y=274 width=51 height=45 xoffset=2 yoffset=3 xadvance=45 page=0 chnl=15 +char id=77 x=183 y=210 width=81 height=44 xoffset=3 yoffset=3 xadvance=68 page=0 chnl=15 +char id=78 x=136 y=391 width=76 height=47 xoffset=2 yoffset=0 xadvance=61 page=0 chnl=15 +char id=79 x=151 y=321 width=51 height=43 xoffset=4 yoffset=4 xadvance=45 page=0 chnl=15 +char id=80 x=199 y=256 width=50 height=46 xoffset=7 yoffset=1 xadvance=47 page=0 chnl=15 +char id=81 x=145 y=440 width=53 height=44 xoffset=4 yoffset=4 xadvance=50 page=0 chnl=15 +char id=82 x=200 y=440 width=60 height=44 xoffset=3 yoffset=4 xadvance=56 page=0 chnl=15 +char id=83 x=204 y=304 width=63 height=44 xoffset=6 yoffset=3 xadvance=60 page=0 chnl=15 +char id=84 x=251 y=256 width=55 height=44 xoffset=5 yoffset=3 xadvance=45 page=0 chnl=15 +char id=85 x=214 y=350 width=65 height=43 xoffset=4 yoffset=4 xadvance=62 page=0 chnl=15 +char id=86 x=269 y=302 width=67 height=46 xoffset=6 yoffset=1 xadvance=58 page=0 chnl=15 +char id=87 x=170 y=51 width=79 height=44 xoffset=4 yoffset=4 xadvance=69 page=0 chnl=15 +char id=88 x=234 y=2 width=73 height=44 xoffset=2 yoffset=3 xadvance=60 page=0 chnl=15 +char id=89 x=200 y=97 width=74 height=58 xoffset=5 yoffset=4 xadvance=65 page=0 chnl=15 +char id=90 x=200 y=157 width=55 height=49 xoffset=1 yoffset=3 xadvance=50 page=0 chnl=15 +char id=91 x=257 y=157 width=31 height=50 xoffset=1 yoffset=0 xadvance=17 page=0 chnl=15 +char id=92 x=170 y=97 width=12 height=49 xoffset=9 yoffset=1 xadvance=17 page=0 chnl=15 +char id=93 x=276 y=48 width=31 height=50 xoffset=-1 yoffset=0 xadvance=20 page=0 chnl=15 +char id=94 x=132 y=51 width=36 height=30 xoffset=-2 yoffset=3 xadvance=25 page=0 chnl=15 +char id=95 x=136 y=210 width=31 height=12 xoffset=0 yoffset=41 xadvance=25 page=0 chnl=15 +char id=96 x=57 y=286 width=16 height=17 xoffset=13 yoffset=9 xadvance=25 page=0 chnl=15 +char id=97 x=97 y=151 width=32 height=29 xoffset=-2 yoffset=18 xadvance=19 page=0 chnl=15 +char id=98 x=214 y=395 width=31 height=43 xoffset=-2 yoffset=4 xadvance=18 page=0 chnl=15 +char id=99 x=34 y=420 width=26 height=30 xoffset=-1 yoffset=17 xadvance=15 page=0 chnl=15 +char id=100 x=247 y=395 width=35 height=43 xoffset=-2 yoffset=5 xadvance=20 page=0 chnl=15 +char id=101 x=281 y=350 width=26 height=30 xoffset=-1 yoffset=18 xadvance=15 page=0 chnl=15 +char id=102 x=262 y=440 width=45 height=56 xoffset=-13 yoffset=5 xadvance=10 page=0 chnl=15 +char id=103 x=266 y=209 width=38 height=43 xoffset=-7 yoffset=18 xadvance=19 page=0 chnl=15 +char id=104 x=276 y=100 width=30 height=42 xoffset=-2 yoffset=5 xadvance=19 page=0 chnl=15 +char id=105 x=251 y=48 width=21 height=36 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=15 +char id=106 x=284 y=382 width=41 height=50 xoffset=-21 yoffset=11 xadvance=8 page=0 chnl=15 +char id=107 x=290 y=144 width=31 height=43 xoffset=-2 yoffset=4 xadvance=19 page=0 chnl=15 +char id=108 x=308 y=100 width=22 height=42 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=15 +char id=109 x=309 y=350 width=37 height=30 xoffset=-1 yoffset=17 xadvance=27 page=0 chnl=15 +char id=110 x=306 y=189 width=29 height=29 xoffset=0 yoffset=18 xadvance=19 page=0 chnl=15 +char id=111 x=306 y=220 width=27 height=29 xoffset=-1 yoffset=18 xadvance=17 page=0 chnl=15 +char id=112 x=308 y=251 width=31 height=47 xoffset=-6 yoffset=14 xadvance=16 page=0 chnl=15 +char id=113 x=323 y=144 width=32 height=43 xoffset=-2 yoffset=18 xadvance=18 page=0 chnl=15 +char id=114 x=338 y=300 width=25 height=30 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=15 +char id=115 x=335 y=220 width=25 height=29 xoffset=-3 yoffset=18 xadvance=11 page=0 chnl=15 +char id=116 x=341 y=251 width=22 height=34 xoffset=-1 yoffset=13 xadvance=10 page=0 chnl=15 +char id=117 x=337 y=189 width=28 height=29 xoffset=-1 yoffset=18 xadvance=18 page=0 chnl=15 +char id=118 x=362 y=220 width=27 height=29 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=15 +char id=119 x=309 y=434 width=35 height=29 xoffset=1 yoffset=18 xadvance=24 page=0 chnl=15 +char id=120 x=309 y=465 width=35 height=29 xoffset=-3 yoffset=18 xadvance=22 page=0 chnl=15 +char id=121 x=327 y=382 width=35 height=41 xoffset=-6 yoffset=18 xadvance=19 page=0 chnl=15 +char id=122 x=348 y=332 width=29 height=30 xoffset=-2 yoffset=17 xadvance=18 page=0 chnl=15 +char id=123 x=365 y=251 width=28 height=49 xoffset=3 yoffset=1 xadvance=16 page=0 chnl=15 +char id=124 x=184 y=97 width=12 height=51 xoffset=9 yoffset=5 xadvance=25 page=0 chnl=15 +char id=125 x=346 y=425 width=29 height=49 xoffset=-3 yoffset=1 xadvance=16 page=0 chnl=15 +char id=126 x=348 y=364 width=29 height=15 xoffset=5 yoffset=1 xadvance=33 page=0 chnl=15 +char id=8226 x=151 y=366 width=23 height=23 xoffset=9 yoffset=14 xadvance=33 page=0 chnl=15 +char id=169 x=309 y=2 width=44 height=43 xoffset=5 yoffset=4 xadvance=40 page=0 chnl=15 +char id=32 x=0 y=0 width=0 height=0 xoffset=5 yoffset=4 xadvance=13 page=0 chnl=15 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title-export.png new file mode 100644 index 0000000..06a38c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title.png new file mode 100644 index 0000000..f8071cd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font.png new file mode 100644 index 0000000..1a132f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb-fill.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb-fill.png new file mode 100644 index 0000000..7c7d7b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb-fill.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb.9.png new file mode 100644 index 0000000..e82798d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb.png new file mode 100644 index 0000000..95148b4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/health-orb.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/list.9.png new file mode 100644 index 0000000..f984b26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/list.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/list.png new file mode 100644 index 0000000..3243fbd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb-fill.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb-fill.png new file mode 100644 index 0000000..bc7ac07 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb-fill.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb.9.png new file mode 100644 index 0000000..81bd8fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb.png new file mode 100644 index 0000000..96899ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/mana-orb.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/minus.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/minus.png new file mode 100644 index 0000000..1d425be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/pattern.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/pattern.png new file mode 100644 index 0000000..179eff2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/pattern.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/plus.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/plus.png new file mode 100644 index 0000000..2a19dbe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-lfe-v.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-lfe-v.png new file mode 100644 index 0000000..02d6070 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-lfe-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-life.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-life.png new file mode 100644 index 0000000..1a0050c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-life.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-mana-v.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-mana-v.png new file mode 100644 index 0000000..a9071e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-mana-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-mana.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-mana.png new file mode 100644 index 0000000..4e7a82f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-mana.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-v.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-v.png new file mode 100644 index 0000000..b662c94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar.png new file mode 100644 index 0000000..cb45d01 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off-over.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off-over.png new file mode 100644 index 0000000..93ca8d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off-pressed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off-pressed.png new file mode 100644 index 0000000..c8b0f46 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off.png new file mode 100644 index 0000000..1c56583 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on-over.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on-over.png new file mode 100644 index 0000000..fe3fb62 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on-pressed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on-pressed.png new file mode 100644 index 0000000..6029bf5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on.png new file mode 100644 index 0000000..e540ff8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-horizontal.9.png new file mode 100644 index 0000000..b1a5bda Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..9237fd1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..8816d43 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-vertical.png new file mode 100644 index 0000000..83a31db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-bg.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-bg.9.png new file mode 100644 index 0000000..2e136e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-bg.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-bg.png new file mode 100644 index 0000000..dbe5a4e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-highlighted.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-highlighted.9.png new file mode 100644 index 0000000..6a0f482 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-highlighted.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-highlighted.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-highlighted.png new file mode 100644 index 0000000..cd49bac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-highlighted.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-pressed.9.png new file mode 100644 index 0000000..1388fd0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-pressed.png new file mode 100644 index 0000000..ff2ec4a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box.9.png new file mode 100644 index 0000000..3376b14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box.png new file mode 100644 index 0000000..628295d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider-knob-over.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider-knob-over.png new file mode 100644 index 0000000..6340071 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider-knob-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider-knob.png new file mode 100644 index 0000000..69b989c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider.9.png new file mode 100644 index 0000000..98ccdc8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider.png new file mode 100644 index 0000000..768e4af Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-horizontal.9.png new file mode 100644 index 0000000..922cbc0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-horizontal.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-horizontal.png new file mode 100644 index 0000000..5c8134c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-vertical.9.png new file mode 100644 index 0000000..8abb0f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-vertical.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-vertical.png new file mode 100644 index 0000000..5ca42ca Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/split-pane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/textfield.9.png new file mode 100644 index 0000000..316cbd5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/textfield.png new file mode 100644 index 0000000..01f1d5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/touchpad.png new file mode 100644 index 0000000..cc3457a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/white.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/window.9.png new file mode 100644 index 0000000..cd7ccf3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/window.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/window.png new file mode 100644 index 0000000..f88fc86 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/font-export.fnt new file mode 100644 index 0000000..a7ce9d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/font-export.fnt @@ -0,0 +1,165 @@ +info face=font-export size=35 bold=0 italic=0 charset= unicode= stretchH=100 smooth=1 aa=1 padding=2,2,2,2 spacing=0,0 outline=0 +common lineHeight=52 base=35 scaleW=216 scaleH=256 pages=1 packed=0 +page id=0 file="font-export.png" +chars count=96 +char id=33 x=2 y=2 width=13 height=18 xoffset=3 yoffset=12 xadvance=8 page=0 chnl=15 +char id=34 x=2 y=22 width=10 height=10 xoffset=5 yoffset=10 xadvance=8 page=0 chnl=15 +char id=35 x=2 y=34 width=16 height=20 xoffset=2 yoffset=10 xadvance=10 page=0 chnl=15 +char id=36 x=17 y=2 width=18 height=26 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=15 +char id=37 x=2 y=56 width=18 height=19 xoffset=3 yoffset=11 xadvance=16 page=0 chnl=15 +char id=38 x=20 y=30 width=20 height=19 xoffset=3 yoffset=11 xadvance=18 page=0 chnl=15 +char id=39 x=37 y=2 width=8 height=10 xoffset=5 yoffset=10 xadvance=6 page=0 chnl=15 +char id=40 x=2 y=77 width=16 height=24 xoffset=3 yoffset=9 xadvance=8 page=0 chnl=15 +char id=41 x=2 y=103 width=16 height=24 xoffset=-1 yoffset=9 xadvance=8 page=0 chnl=15 +char id=42 x=37 y=14 width=13 height=11 xoffset=3 yoffset=11 xadvance=8 page=0 chnl=15 +char id=43 x=2 y=129 width=14 height=12 xoffset=2 yoffset=16 xadvance=12 page=0 chnl=15 +char id=44 x=47 y=2 width=7 height=10 xoffset=0 yoffset=25 xadvance=6 page=0 chnl=15 +char id=45 x=2 y=143 width=10 height=4 xoffset=3 yoffset=20 xadvance=9 page=0 chnl=15 +char id=46 x=2 y=149 width=5 height=6 xoffset=2 yoffset=24 xadvance=6 page=0 chnl=15 +char id=47 x=2 y=157 width=15 height=24 xoffset=2 yoffset=7 xadvance=9 page=0 chnl=15 +char id=48 x=18 y=129 width=16 height=19 xoffset=3 yoffset=11 xadvance=13 page=0 chnl=15 +char id=49 x=20 y=77 width=17 height=20 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=15 +char id=50 x=22 y=51 width=18 height=21 xoffset=-1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=51 x=20 y=99 width=17 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=15 +char id=52 x=2 y=183 width=16 height=20 xoffset=3 yoffset=11 xadvance=12 page=0 chnl=15 +char id=53 x=19 y=150 width=20 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=15 +char id=54 x=36 y=120 width=19 height=20 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=55 x=39 y=74 width=19 height=20 xoffset=2 yoffset=11 xadvance=11 page=0 chnl=15 +char id=56 x=39 y=96 width=18 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=15 +char id=57 x=42 y=27 width=17 height=19 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=15 +char id=58 x=52 y=14 width=9 height=11 xoffset=2 yoffset=18 xadvance=7 page=0 chnl=15 +char id=59 x=42 y=48 width=10 height=15 xoffset=0 yoffset=19 xadvance=8 page=0 chnl=15 +char id=60 x=54 y=48 width=10 height=13 xoffset=3 yoffset=16 xadvance=9 page=0 chnl=15 +char id=61 x=20 y=120 width=14 height=6 xoffset=3 yoffset=18 xadvance=14 page=0 chnl=15 +char id=62 x=61 y=27 width=11 height=13 xoffset=1 yoffset=16 xadvance=9 page=0 chnl=15 +char id=63 x=63 y=2 width=14 height=19 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=15 +char id=64 x=2 y=205 width=19 height=18 xoffset=3 yoffset=12 xadvance=16 page=0 chnl=15 +char id=65 x=2 y=225 width=25 height=19 xoffset=-1 yoffset=11 xadvance=17 page=0 chnl=15 +char id=66 x=20 y=171 width=19 height=21 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=15 +char id=67 x=23 y=194 width=18 height=19 xoffset=3 yoffset=11 xadvance=15 page=0 chnl=15 +char id=68 x=29 y=215 width=23 height=22 xoffset=2 yoffset=8 xadvance=21 page=0 chnl=15 +char id=69 x=41 y=142 width=18 height=19 xoffset=3 yoffset=11 xadvance=15 page=0 chnl=15 +char id=70 x=57 y=117 width=21 height=23 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=15 +char id=71 x=43 y=163 width=26 height=33 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=15 +char id=72 x=61 y=142 width=23 height=19 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=15 +char id=73 x=60 y=63 width=19 height=21 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=15 +char id=74 x=74 y=23 width=26 height=35 xoffset=-6 yoffset=9 xadvance=12 page=0 chnl=15 +char id=75 x=60 y=86 width=22 height=22 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=15 +char id=76 x=81 y=60 width=24 height=24 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=15 +char id=77 x=80 y=110 width=28 height=24 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=15 +char id=78 x=79 y=2 width=23 height=19 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=15 +char id=79 x=84 y=86 width=19 height=19 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=15 +char id=80 x=105 y=86 width=20 height=19 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=81 x=102 y=23 width=24 height=25 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=15 +char id=82 x=107 y=50 width=20 height=24 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=15 +char id=83 x=104 y=2 width=18 height=19 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=15 +char id=84 x=128 y=2 width=20 height=23 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=15 +char id=85 x=128 y=27 width=21 height=19 xoffset=4 yoffset=11 xadvance=18 page=0 chnl=15 +char id=86 x=150 y=2 width=21 height=20 xoffset=3 yoffset=11 xadvance=15 page=0 chnl=15 +char id=87 x=54 y=198 width=24 height=20 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=15 +char id=88 x=71 y=163 width=25 height=21 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=15 +char id=89 x=80 y=186 width=29 height=36 xoffset=-5 yoffset=11 xadvance=18 page=0 chnl=15 +char id=90 x=54 y=220 width=23 height=22 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=15 +char id=91 x=86 y=136 width=19 height=24 xoffset=1 yoffset=9 xadvance=9 page=0 chnl=15 +char id=92 x=79 y=224 width=11 height=25 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=15 +char id=93 x=92 y=224 width=19 height=24 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=15 +char id=94 x=29 y=244 width=11 height=9 xoffset=4 yoffset=11 xadvance=9 page=0 chnl=15 +char id=95 x=92 y=250 width=15 height=4 xoffset=-1 yoffset=27 xadvance=11 page=0 chnl=15 +char id=96 x=66 y=42 width=6 height=8 xoffset=5 yoffset=13 xadvance=4 page=0 chnl=15 +char id=97 x=98 y=162 width=16 height=12 xoffset=1 yoffset=18 xadvance=11 page=0 chnl=15 +char id=98 x=111 y=176 width=19 height=29 xoffset=2 yoffset=1 xadvance=12 page=0 chnl=15 +char id=99 x=111 y=207 width=14 height=12 xoffset=1 yoffset=18 xadvance=8 page=0 chnl=15 +char id=100 x=113 y=221 width=23 height=27 xoffset=1 yoffset=3 xadvance=12 page=0 chnl=15 +char id=101 x=127 y=207 width=14 height=12 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=15 +char id=102 x=110 y=107 width=39 height=51 xoffset=-15 yoffset=0 xadvance=7 page=0 chnl=15 +char id=103 x=138 y=221 width=28 height=30 xoffset=-14 yoffset=18 xadvance=10 page=0 chnl=15 +char id=104 x=127 y=76 width=20 height=28 xoffset=1 yoffset=1 xadvance=12 page=0 chnl=15 +char id=105 x=129 y=48 width=11 height=16 xoffset=2 yoffset=14 xadvance=7 page=0 chnl=15 +char id=106 x=132 y=160 width=31 height=34 xoffset=-18 yoffset=14 xadvance=6 page=0 chnl=15 +char id=107 x=149 y=48 width=21 height=29 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=15 +char id=108 x=151 y=79 width=19 height=29 xoffset=2 yoffset=1 xadvance=8 page=0 chnl=15 +char id=109 x=151 y=24 width=21 height=18 xoffset=0 yoffset=18 xadvance=13 page=0 chnl=15 +char id=110 x=173 y=2 width=17 height=12 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=15 +char id=111 x=116 y=160 width=14 height=13 xoffset=1 yoffset=17 xadvance=9 page=0 chnl=15 +char id=112 x=151 y=110 width=27 height=30 xoffset=-11 yoffset=18 xadvance=9 page=0 chnl=15 +char id=113 x=172 y=44 width=22 height=29 xoffset=-4 yoffset=18 xadvance=11 page=0 chnl=15 +char id=114 x=151 y=142 width=13 height=12 xoffset=1 yoffset=18 xadvance=8 page=0 chnl=15 +char id=115 x=143 y=196 width=12 height=12 xoffset=0 yoffset=18 xadvance=9 page=0 chnl=15 +char id=116 x=157 y=196 width=13 height=18 xoffset=2 yoffset=12 xadvance=8 page=0 chnl=15 +char id=117 x=174 y=16 width=16 height=12 xoffset=1 yoffset=19 xadvance=11 page=0 chnl=15 +char id=118 x=172 y=75 width=14 height=14 xoffset=2 yoffset=16 xadvance=7 page=0 chnl=15 +char id=119 x=174 y=30 width=18 height=12 xoffset=1 yoffset=18 xadvance=13 page=0 chnl=15 +char id=120 x=192 y=2 width=20 height=19 xoffset=-6 yoffset=18 xadvance=8 page=0 chnl=15 +char id=121 x=168 y=216 width=27 height=29 xoffset=-10 yoffset=19 xadvance=11 page=0 chnl=15 +char id=122 x=165 y=156 width=24 height=24 xoffset=-9 yoffset=19 xadvance=8 page=0 chnl=15 +char id=123 x=172 y=182 width=18 height=24 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=15 +char id=124 x=142 y=48 width=5 height=22 xoffset=5 yoffset=9 xadvance=9 page=0 chnl=15 +char id=125 x=180 y=91 width=18 height=24 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=15 +char id=126 x=143 y=210 width=12 height=6 xoffset=3 yoffset=19 xadvance=11 page=0 chnl=15 +char id=8226 x=132 y=196 width=9 height=9 xoffset=3 yoffset=18 xadvance=9 page=0 chnl=15 +char id=169 x=194 y=23 width=20 height=19 xoffset=4 yoffset=11 xadvance=19 page=0 chnl=15 +char id=32 x=0 y=0 width=0 height=0 xoffset=4 yoffset=11 xadvance=7 page=0 chnl=15 +kernings count=63 +kerning first=48 second=44 amount=-2 +kerning first=80 second=44 amount=-6 +kerning first=80 second=45 amount=-2 +kerning first=80 second=65 amount=-2 +kerning first=80 second=66 amount=-1 +kerning first=80 second=79 amount=1 +kerning first=80 second=97 amount=-2 +kerning first=80 second=100 amount=-2 +kerning first=82 second=97 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=84 second=38 amount=-1 +kerning first=84 second=44 amount=-3 +kerning first=84 second=45 amount=-3 +kerning first=84 second=65 amount=-2 +kerning first=84 second=66 amount=-1 +kerning first=84 second=79 amount=0 +kerning first=84 second=97 amount=-2 +kerning first=84 second=100 amount=-2 +kerning first=86 second=38 amount=-2 +kerning first=86 second=40 amount=-2 +kerning first=86 second=44 amount=-5 +kerning first=86 second=45 amount=-4 +kerning first=86 second=46 amount=-5 +kerning first=86 second=48 amount=-2 +kerning first=86 second=54 amount=-2 +kerning first=86 second=56 amount=-2 +kerning first=86 second=58 amount=-4 +kerning first=86 second=59 amount=-4 +kerning first=86 second=60 amount=-4 +kerning first=86 second=61 amount=-4 +kerning first=86 second=62 amount=-4 +kerning first=86 second=64 amount=-2 +kerning first=86 second=65 amount=-3 +kerning first=86 second=66 amount=-2 +kerning first=86 second=67 amount=-2 +kerning first=86 second=69 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-1 +kerning first=86 second=80 amount=-2 +kerning first=86 second=82 amount=-2 +kerning first=86 second=83 amount=-2 +kerning first=86 second=95 amount=-5 +kerning first=86 second=97 amount=-3 +kerning first=86 second=99 amount=-3 +kerning first=86 second=100 amount=-3 +kerning first=86 second=101 amount=-3 +kerning first=86 second=103 amount=-3 +kerning first=86 second=105 amount=-3 +kerning first=86 second=106 amount=-3 +kerning first=86 second=109 amount=-3 +kerning first=86 second=110 amount=-3 +kerning first=86 second=111 amount=-3 +kerning first=86 second=112 amount=-3 +kerning first=86 second=113 amount=-3 +kerning first=86 second=114 amount=-3 +kerning first=86 second=115 amount=-3 +kerning first=86 second=117 amount=-3 +kerning first=86 second=118 amount=-3 +kerning first=86 second=119 amount=-3 +kerning first=86 second=120 amount=-3 +kerning first=86 second=121 amount=-3 +kerning first=86 second=122 amount=-3 +kerning first=86 second=169 amount=-2 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/font-title-export.fnt new file mode 100644 index 0000000..0bed344 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/font-title-export.fnt @@ -0,0 +1,101 @@ +info face=font-title-export size=50 bold=0 italic=1 charset= unicode= stretchH=100 smooth=1 aa=1 padding=2,2,2,2 spacing=0,0 outline=0 +common lineHeight=59 base=38 scaleW=395 scaleH=510 pages=1 packed=0 +page id=0 file="font-title-export.png" +chars count=96 +char id=33 x=2 y=2 width=21 height=41 xoffset=2 yoffset=5 xadvance=10 page=0 chnl=15 +char id=34 x=2 y=45 width=17 height=16 xoffset=7 yoffset=5 xadvance=9 page=0 chnl=15 +char id=35 x=2 y=63 width=32 height=41 xoffset=-1 yoffset=6 xadvance=20 page=0 chnl=15 +char id=36 x=25 y=2 width=35 height=46 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=15 +char id=37 x=2 y=106 width=33 height=43 xoffset=8 yoffset=4 xadvance=35 page=0 chnl=15 +char id=38 x=36 y=50 width=56 height=43 xoffset=0 yoffset=5 xadvance=46 page=0 chnl=15 +char id=39 x=62 y=2 width=13 height=16 xoffset=7 yoffset=5 xadvance=5 page=0 chnl=15 +char id=40 x=2 y=151 width=26 height=49 xoffset=2 yoffset=1 xadvance=12 page=0 chnl=15 +char id=41 x=2 y=202 width=26 height=49 xoffset=-2 yoffset=1 xadvance=12 page=0 chnl=15 +char id=42 x=62 y=20 width=23 height=24 xoffset=10 yoffset=4 xadvance=22 page=0 chnl=15 +char id=43 x=87 y=2 width=25 height=25 xoffset=3 yoffset=15 xadvance=21 page=0 chnl=15 +char id=44 x=87 y=29 width=14 height=18 xoffset=-4 yoffset=36 xadvance=8 page=0 chnl=15 +char id=45 x=2 y=253 width=17 height=13 xoffset=-1 yoffset=26 xadvance=8 page=0 chnl=15 +char id=46 x=2 y=268 width=11 height=12 xoffset=-1 yoffset=35 xadvance=8 page=0 chnl=15 +char id=47 x=2 y=282 width=35 height=49 xoffset=-2 yoffset=1 xadvance=17 page=0 chnl=15 +char id=48 x=30 y=151 width=30 height=42 xoffset=2 yoffset=5 xadvance=21 page=0 chnl=15 +char id=49 x=37 y=95 width=24 height=41 xoffset=5 yoffset=6 xadvance=21 page=0 chnl=15 +char id=50 x=30 y=195 width=36 height=42 xoffset=-4 yoffset=5 xadvance=21 page=0 chnl=15 +char id=51 x=62 y=138 width=33 height=42 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=15 +char id=52 x=63 y=95 width=32 height=41 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=53 x=30 y=239 width=33 height=41 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=54 x=94 y=49 width=36 height=41 xoffset=1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=55 x=114 y=2 width=33 height=42 xoffset=2 yoffset=5 xadvance=21 page=0 chnl=15 +char id=56 x=2 y=333 width=32 height=42 xoffset=1 yoffset=5 xadvance=21 page=0 chnl=15 +char id=57 x=2 y=377 width=33 height=41 xoffset=-1 yoffset=6 xadvance=21 page=0 chnl=15 +char id=58 x=36 y=333 width=13 height=18 xoffset=-1 yoffset=29 xadvance=8 page=0 chnl=15 +char id=59 x=39 y=282 width=16 height=24 xoffset=-4 yoffset=29 xadvance=8 page=0 chnl=15 +char id=60 x=2 y=420 width=30 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=15 +char id=61 x=36 y=353 width=28 height=18 xoffset=3 yoffset=19 xadvance=21 page=0 chnl=15 +char id=62 x=51 y=308 width=29 height=36 xoffset=1 yoffset=8 xadvance=25 page=0 chnl=15 +char id=63 x=2 y=458 width=28 height=42 xoffset=3 yoffset=5 xadvance=18 page=0 chnl=15 +char id=64 x=32 y=458 width=43 height=47 xoffset=3 yoffset=2 xadvance=34 page=0 chnl=15 +char id=65 x=65 y=239 width=52 height=45 xoffset=-4 yoffset=2 xadvance=41 page=0 chnl=15 +char id=66 x=68 y=182 width=66 height=45 xoffset=3 yoffset=3 xadvance=62 page=0 chnl=15 +char id=67 x=37 y=373 width=49 height=44 xoffset=2 yoffset=4 xadvance=38 page=0 chnl=15 +char id=68 x=82 y=286 width=62 height=45 xoffset=4 yoffset=2 xadvance=55 page=0 chnl=15 +char id=69 x=119 y=229 width=62 height=43 xoffset=4 yoffset=4 xadvance=58 page=0 chnl=15 +char id=70 x=97 y=92 width=71 height=57 xoffset=-1 yoffset=4 xadvance=56 page=0 chnl=15 +char id=71 x=136 y=151 width=62 height=57 xoffset=0 yoffset=4 xadvance=53 page=0 chnl=15 +char id=72 x=149 y=2 width=83 height=47 xoffset=3 yoffset=1 xadvance=71 page=0 chnl=15 +char id=73 x=77 y=419 width=57 height=43 xoffset=3 yoffset=4 xadvance=46 page=0 chnl=15 +char id=74 x=88 y=333 width=61 height=56 xoffset=-2 yoffset=4 xadvance=47 page=0 chnl=15 +char id=75 x=77 y=464 width=66 height=44 xoffset=4 yoffset=3 xadvance=62 page=0 chnl=15 +char id=76 x=146 y=274 width=51 height=45 xoffset=2 yoffset=3 xadvance=45 page=0 chnl=15 +char id=77 x=183 y=210 width=81 height=44 xoffset=3 yoffset=3 xadvance=68 page=0 chnl=15 +char id=78 x=136 y=391 width=76 height=47 xoffset=2 yoffset=0 xadvance=61 page=0 chnl=15 +char id=79 x=151 y=321 width=51 height=43 xoffset=4 yoffset=4 xadvance=45 page=0 chnl=15 +char id=80 x=199 y=256 width=50 height=46 xoffset=7 yoffset=1 xadvance=47 page=0 chnl=15 +char id=81 x=145 y=440 width=53 height=44 xoffset=4 yoffset=4 xadvance=50 page=0 chnl=15 +char id=82 x=200 y=440 width=60 height=44 xoffset=3 yoffset=4 xadvance=56 page=0 chnl=15 +char id=83 x=204 y=304 width=63 height=44 xoffset=6 yoffset=3 xadvance=60 page=0 chnl=15 +char id=84 x=251 y=256 width=55 height=44 xoffset=5 yoffset=3 xadvance=45 page=0 chnl=15 +char id=85 x=214 y=350 width=65 height=43 xoffset=4 yoffset=4 xadvance=62 page=0 chnl=15 +char id=86 x=269 y=302 width=67 height=46 xoffset=6 yoffset=1 xadvance=58 page=0 chnl=15 +char id=87 x=170 y=51 width=79 height=44 xoffset=4 yoffset=4 xadvance=69 page=0 chnl=15 +char id=88 x=234 y=2 width=73 height=44 xoffset=2 yoffset=3 xadvance=60 page=0 chnl=15 +char id=89 x=200 y=97 width=74 height=58 xoffset=5 yoffset=4 xadvance=65 page=0 chnl=15 +char id=90 x=200 y=157 width=55 height=49 xoffset=1 yoffset=3 xadvance=50 page=0 chnl=15 +char id=91 x=257 y=157 width=31 height=50 xoffset=1 yoffset=0 xadvance=17 page=0 chnl=15 +char id=92 x=170 y=97 width=12 height=49 xoffset=9 yoffset=1 xadvance=17 page=0 chnl=15 +char id=93 x=276 y=48 width=31 height=50 xoffset=-1 yoffset=0 xadvance=20 page=0 chnl=15 +char id=94 x=132 y=51 width=36 height=30 xoffset=-2 yoffset=3 xadvance=25 page=0 chnl=15 +char id=95 x=136 y=210 width=31 height=12 xoffset=0 yoffset=41 xadvance=25 page=0 chnl=15 +char id=96 x=57 y=286 width=16 height=17 xoffset=13 yoffset=9 xadvance=25 page=0 chnl=15 +char id=97 x=97 y=151 width=32 height=29 xoffset=-2 yoffset=18 xadvance=19 page=0 chnl=15 +char id=98 x=214 y=395 width=31 height=43 xoffset=-2 yoffset=4 xadvance=18 page=0 chnl=15 +char id=99 x=34 y=420 width=26 height=30 xoffset=-1 yoffset=17 xadvance=15 page=0 chnl=15 +char id=100 x=247 y=395 width=35 height=43 xoffset=-2 yoffset=5 xadvance=20 page=0 chnl=15 +char id=101 x=281 y=350 width=26 height=30 xoffset=-1 yoffset=18 xadvance=15 page=0 chnl=15 +char id=102 x=262 y=440 width=45 height=56 xoffset=-13 yoffset=5 xadvance=10 page=0 chnl=15 +char id=103 x=266 y=209 width=38 height=43 xoffset=-7 yoffset=18 xadvance=19 page=0 chnl=15 +char id=104 x=276 y=100 width=30 height=42 xoffset=-2 yoffset=5 xadvance=19 page=0 chnl=15 +char id=105 x=251 y=48 width=21 height=36 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=15 +char id=106 x=284 y=382 width=41 height=50 xoffset=-21 yoffset=11 xadvance=8 page=0 chnl=15 +char id=107 x=290 y=144 width=31 height=43 xoffset=-2 yoffset=4 xadvance=19 page=0 chnl=15 +char id=108 x=308 y=100 width=22 height=42 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=15 +char id=109 x=309 y=350 width=37 height=30 xoffset=-1 yoffset=17 xadvance=27 page=0 chnl=15 +char id=110 x=306 y=189 width=29 height=29 xoffset=0 yoffset=18 xadvance=19 page=0 chnl=15 +char id=111 x=306 y=220 width=27 height=29 xoffset=-1 yoffset=18 xadvance=17 page=0 chnl=15 +char id=112 x=308 y=251 width=31 height=47 xoffset=-6 yoffset=14 xadvance=16 page=0 chnl=15 +char id=113 x=323 y=144 width=32 height=43 xoffset=-2 yoffset=18 xadvance=18 page=0 chnl=15 +char id=114 x=338 y=300 width=25 height=30 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=15 +char id=115 x=335 y=220 width=25 height=29 xoffset=-3 yoffset=18 xadvance=11 page=0 chnl=15 +char id=116 x=341 y=251 width=22 height=34 xoffset=-1 yoffset=13 xadvance=10 page=0 chnl=15 +char id=117 x=337 y=189 width=28 height=29 xoffset=-1 yoffset=18 xadvance=18 page=0 chnl=15 +char id=118 x=362 y=220 width=27 height=29 xoffset=0 yoffset=18 xadvance=16 page=0 chnl=15 +char id=119 x=309 y=434 width=35 height=29 xoffset=1 yoffset=18 xadvance=24 page=0 chnl=15 +char id=120 x=309 y=465 width=35 height=29 xoffset=-3 yoffset=18 xadvance=22 page=0 chnl=15 +char id=121 x=327 y=382 width=35 height=41 xoffset=-6 yoffset=18 xadvance=19 page=0 chnl=15 +char id=122 x=348 y=332 width=29 height=30 xoffset=-2 yoffset=17 xadvance=18 page=0 chnl=15 +char id=123 x=365 y=251 width=28 height=49 xoffset=3 yoffset=1 xadvance=16 page=0 chnl=15 +char id=124 x=184 y=97 width=12 height=51 xoffset=9 yoffset=5 xadvance=25 page=0 chnl=15 +char id=125 x=346 y=425 width=29 height=49 xoffset=-3 yoffset=1 xadvance=16 page=0 chnl=15 +char id=126 x=348 y=364 width=29 height=15 xoffset=5 yoffset=1 xadvance=33 page=0 chnl=15 +char id=8226 x=151 y=366 width=23 height=23 xoffset=9 yoffset=14 xadvance=33 page=0 chnl=15 +char id=169 x=309 y=2 width=44 height=43 xoffset=5 yoffset=4 xadvance=40 page=0 chnl=15 +char id=32 x=0 y=0 width=0 height=0 xoffset=5 yoffset=4 xadvance=13 page=0 chnl=15 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.atlas b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.atlas new file mode 100644 index 0000000..308bc15 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.atlas @@ -0,0 +1,379 @@ + +golden-ui-skin.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 417, 358 + size: 108, 92 + split: 47, 48, 39, 39 + pad: 52, 53, 33, 33 + orig: 108, 92 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 527, 358 + size: 108, 92 + split: 47, 48, 39, 39 + pad: 52, 53, 33, 33 + orig: 108, 92 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 637, 358 + size: 108, 92 + split: 47, 48, 39, 39 + pad: 52, 53, 33, 33 + orig: 108, 92 + offset: 0, 0 + index: -1 +checkbox-off + rotate: false + xy: 204, 12 + size: 22, 16 + orig: 22, 16 + offset: 0, 0 + index: -1 +checkbox-off-over + rotate: false + xy: 558, 144 + size: 22, 16 + orig: 22, 16 + offset: 0, 0 + index: -1 +checkbox-off-pressed + rotate: false + xy: 567, 340 + size: 22, 16 + orig: 22, 16 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 612, 165 + size: 22, 16 + orig: 22, 16 + offset: 0, 0 + index: -1 +checkbox-on-over + rotate: false + xy: 720, 340 + size: 22, 16 + orig: 22, 16 + offset: 0, 0 + index: -1 +checkbox-on-pressed + rotate: false + xy: 795, 432 + size: 22, 16 + orig: 22, 16 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 379, 196 + size: 8, 13 + split: 3, 3, 4, 4 + pad: 0, 0, 0, 0 + orig: 8, 13 + offset: 0, 0 + index: -1 +cursor-primed + rotate: false + xy: 379, 160 + size: 8, 34 + split: 0, 0, 33, 0 + pad: 0, 0, 0, 0 + orig: 8, 34 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 176 + size: 216, 256 + orig: 216, 256 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 417, 505 + size: 395, 510 + orig: 395, 510 + offset: 0, 0 + index: -1 +health-orb + rotate: false + xy: 814, 685 + size: 201, 164 + split: 0, 0, 0, 0 + orig: 201, 164 + offset: 0, 0 + index: -1 +health-orb-fill + rotate: false + xy: 814, 851 + size: 201, 164 + orig: 201, 164 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 497, 142 + size: 59, 28 + split: 9, 9, 12, 9 + pad: 9, 9, 4, 8 + orig: 59, 28 + offset: 0, 0 + index: -1 +mana-orb + rotate: false + xy: 814, 519 + size: 201, 164 + split: 1, 0, 1, 0 + pad: 1, 0, 0, 0 + orig: 201, 164 + offset: 0, 0 + index: -1 +mana-orb-fill + rotate: false + xy: 1, 10 + size: 201, 164 + orig: 201, 164 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 439, 123 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +pattern + rotate: false + xy: 389, 147 + size: 106, 209 + orig: 106, 209 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 877, 495 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 417, 452 + size: 173, 51 + orig: 173, 51 + offset: 0, 0 + index: -1 +progress-bar-lfe-v + rotate: false + xy: 558, 162 + size: 52, 173 + orig: 52, 173 + offset: 0, 0 + index: -1 +progress-bar-life + rotate: false + xy: 219, 381 + size: 173, 51 + orig: 173, 51 + offset: 0, 0 + index: -1 +progress-bar-mana + rotate: false + xy: 592, 452 + size: 173, 51 + orig: 173, 51 + offset: 0, 0 + index: -1 +progress-bar-mana-v + rotate: false + xy: 612, 183 + size: 52, 173 + orig: 52, 173 + offset: 0, 0 + index: -1 +progress-bar-v + rotate: false + xy: 666, 183 + size: 52, 173 + orig: 52, 173 + offset: 0, 0 + index: -1 +radio-off + rotate: false + xy: 394, 416 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-off-over + rotate: false + xy: 464, 129 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-off-pressed + rotate: false + xy: 877, 477 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 902, 501 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-on-over + rotate: false + xy: 228, 12 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-on-pressed + rotate: false + xy: 582, 144 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 497, 337 + size: 68, 19 + split: 25, 25, 0, 0 + pad: 0, 0, 0, 0 + orig: 68, 19 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 720, 270 + size: 19, 68 + split: 0, 0, 25, 26 + pad: 0, 0, 0, 0 + orig: 19, 68 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 497, 282 + size: 59, 53 + split: 9, 33, 8, 39 + pad: 9, 33, 8, 8 + orig: 59, 53 + offset: 0, 0 + index: -1 +select-box-bg + rotate: false + xy: 219, 102 + size: 158, 107 + split: 69, 82, 57, 48 + pad: 50, 49, 18, 36 + orig: 158, 107 + offset: 0, 0 + index: -1 +select-box-highlighted + rotate: false + xy: 497, 227 + size: 59, 53 + split: 9, 33, 8, 39 + pad: 9, 33, 8, 8 + orig: 59, 53 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 497, 172 + size: 59, 53 + split: 9, 33, 8, 39 + pad: 9, 33, 8, 8 + orig: 59, 53 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 204, 30 + size: 140, 70 + split: 42, 78, 0, 0 + pad: 0, 0, 0, 0 + orig: 140, 70 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 767, 450 + size: 53, 53 + orig: 53, 53 + offset: 0, 0 + index: -1 +slider-knob-over + rotate: false + xy: 822, 464 + size: 53, 53 + orig: 53, 53 + offset: 0, 0 + index: -1 +split-pane-horizontal + rotate: false + xy: 346, 42 + size: 36, 58 + split: 0, 0, 14, 14 + pad: -1, -1, 0, 0 + orig: 36, 58 + offset: 0, 0 + index: -1 +split-pane-vertical + rotate: false + xy: 379, 109 + size: 58, 36 + split: 14, 14, 0, 0 + pad: 0, 0, 0, 0 + orig: 58, 36 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 747, 359 + size: 46, 89 + split: 19, 19, 26, 26 + pad: 21, 21, 29, 29 + orig: 46, 89 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 219, 211 + size: 168, 168 + orig: 168, 168 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 567, 337 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 434 + size: 414, 581 + split: 203, 202, 287, 290 + pad: 201, 202, 38, 38 + orig: 414, 581 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.json b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.json new file mode 100644 index 0000000..aa80d37 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.json @@ -0,0 +1,242 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + orange: { + r: 0.91 + g: 0.7078283 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } + yellow: { + r: 1 + g: 0.8980392 + b: 0.4 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + red: { + name: white + color: { + r: 0.66666675 + g: 0.07555556 + b: 0.07555556 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox-off + checkboxOver: checkbox-off-over + font: font + fontColor: yellow + overFontColor: orange + } + radio: { + checkboxOn: radio-on + checkboxOff: radio-off + checkboxOver: radio-off-over + font: font + fontColor: yellow + overFontColor: orange + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + imageUp: button + imageDown: button-pressed + imageOver: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: yellow + overFontColor: orange + up: button + down: button-pressed + over: button-over + } + checkbox: { + imageUp: checkbox-off + imageDown: checkbox-off-pressed + imageOver: checkbox-off-over + imageChecked: checkbox-on + imageCheckedOver: checkbox-on-over + font: font + fontColor: yellow + overFontColor: orange + } + radio: { + imageUp: radio-off + imageDown: radio-off-pressed + imageOver: radio-off-over + imageChecked: radio-on + imageCheckedOver: radio-on-over + font: font + fontColor: yellow + overFontColor: orange + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: yellow + } + title: { + font: title + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: yellow + selection: red + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-life + } + default-vertical: { + background: progress-bar-v + knobBefore: progress-bar-lfe-v + } + mana: { + background: progress-bar + knobBefore: progress-bar-mana + } + mana-vertical: { + background: progress-bar-v + knobBefore: progress-bar-mana-v + } + health-orb: { + background: health-orb + knobBefore: health-orb-fill + } + mana-orb: { + background: mana-orb + knobBefore: mana-orb-fill + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: yellow + background: select-box + scrollStyle: default + listStyle: default + backgroundOver: select-box-highlighted + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-over + knobDown: slider-knob-over + background: slider + knob: slider-knob + } + default-vertical: { + knobOver: slider-knob-over + knobDown: slider-knob-over + background: slider + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane-horizontal + } + default-vertical: { + handle: split-pane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: yellow + overFontColor: orange + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: yellow + focusedFontColor: orange + background: textfield + cursor: cursor-primed + selection: red + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: textfield + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: red + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + stageBackground: white + } + small: { + background: textfield + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.png b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.png new file mode 100644 index 0000000..aa1d6fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/golden-spiral/skin/golden-ui-skin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/README.md b/src/main/resources/omni_power/gdx-skins/holo/README.md new file mode 100644 index 0000000..b2cf9d2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/README.md @@ -0,0 +1,9 @@ +# Holo skin + +Inspired by Android UI. Features styles of most of the **Scene2D** actors. Comes in two themes (light and dark) and four sizes, giving you ***eight*** skins to choose from. Raw assets (PNGs) are included. + +![Holo](preview.png) + +### License + +None in particular, but make sure to credit [Carsten](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=8533). diff --git a/src/main/resources/omni_power/gdx-skins/holo/preview.png b/src/main/resources/omni_power/gdx-skins/holo/preview.png new file mode 100644 index 0000000..b222c15 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/Roboto-Thin-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/Roboto-Thin-hdpi.png new file mode 100644 index 0000000..baaa780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/Roboto-Thin-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/Roboto-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/Roboto-hdpi.png new file mode 100644 index 0000000..fb68fe2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/Roboto-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_off.png new file mode 100644 index 0000000..8a46316 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_on.png new file mode 100644 index 0000000..15a074c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_on_focused.png new file mode 100644 index 0000000..6008a71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_disabled.9.png new file mode 100644 index 0000000..8ebd761 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_focused.9.png new file mode 100644 index 0000000..f2d0337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_normal.9.png new file mode 100644 index 0000000..53cbb2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_pressed.9.png new file mode 100644 index 0000000..1b67b6c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_off.png new file mode 100644 index 0000000..a4a2fc2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_on.png new file mode 100644 index 0000000..b0d89e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_on_focused.png new file mode 100644 index 0000000..954c22e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..8813e5d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..4c23ba8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..35c82da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..ce8133d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..c005d99 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..df74e02 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/icon-blitz.png new file mode 100644 index 0000000..36870ad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/icon-blitz_pressed.png new file mode 100644 index 0000000..5d5e225 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_corner.9.png new file mode 100644 index 0000000..f711de1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_horizontal.9.png new file mode 100644 index 0000000..a6f4819 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..1c56d3a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_opaque.9.png new file mode 100644 index 0000000..943971a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_vertical.9.png new file mode 100644 index 0000000..88e4a4e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..260c4c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_control_normal.png new file mode 100644 index 0000000..987a86e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_primary.9.png new file mode 100644 index 0000000..eb8b3ab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_secondary.9.png new file mode 100644 index 0000000..3a0ca29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_track.9.png new file mode 100644 index 0000000..0c0ccda Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..bf14e0c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..349a4f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..12417c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_default.9.png new file mode 100644 index 0000000..6d31484 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_focused.9.png new file mode 100644 index 0000000..39e5631 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_pressed.9.png new file mode 100644 index 0000000..2dcaa77 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..9c3aa0f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/splitpane_vertical.9.png new file mode 100644 index 0000000..2adb6e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text.9.png new file mode 100644 index 0000000..f603c84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_focused.9.png new file mode 100644 index 0000000..1fbcf62 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_focused_opaque.9.png new file mode 100644 index 0000000..21377d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_opaque.9.png new file mode 100644 index 0000000..0266be7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_selected.9.png new file mode 100644 index 0000000..74dbb35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_selected_opaque.9.png new file mode 100644 index 0000000..1c67a7e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_cursor.9.png new file mode 100644 index 0000000..a731285 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_default.9.png new file mode 100644 index 0000000..23d3a59 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_disabled.9.png new file mode 100644 index 0000000..769bc0a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_focused.9.png new file mode 100644 index 0000000..5fb8f7e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/tree_minus.png new file mode 100644 index 0000000..1abc0cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/tree_plus.png new file mode 100644 index 0000000..2c95076 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/window.9.png new file mode 100644 index 0000000..93e7842 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-hdpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/Roboto-Thin-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/Roboto-Thin-ldpi.png new file mode 100644 index 0000000..c1c4312 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/Roboto-Thin-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/Roboto-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/Roboto-ldpi.png new file mode 100644 index 0000000..3cb0d2c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/Roboto-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_off.png new file mode 100644 index 0000000..ede01d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_on.png new file mode 100644 index 0000000..b4a0d93 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_on_focused.png new file mode 100644 index 0000000..02a8147 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_disabled.9.png new file mode 100644 index 0000000..cbdd087 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_focused.9.png new file mode 100644 index 0000000..9c18c69 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_normal.9.png new file mode 100644 index 0000000..10b2b8d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_pressed.9.png new file mode 100644 index 0000000..74c1fc2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_off.png new file mode 100644 index 0000000..1a24d37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_on.png new file mode 100644 index 0000000..d30c316 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_on_focused.png new file mode 100644 index 0000000..827a6a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..67ff6c9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..f9c4491 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..884b3fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..8cf865f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..7433767 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..a2cdcee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/icon-blitz.png new file mode 100644 index 0000000..b9ca6ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/icon-blitz_pressed.png new file mode 100644 index 0000000..4c2e794 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_corner.9.png new file mode 100644 index 0000000..652b3ba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_horizontal.9.png new file mode 100644 index 0000000..040f2c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..c2ca0ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_opaque.9.png new file mode 100644 index 0000000..943971a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_vertical.9.png new file mode 100644 index 0000000..dd8341b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..57eeba6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_control_normal.png new file mode 100644 index 0000000..abe64e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_primary.9.png new file mode 100644 index 0000000..308a0c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_secondary.9.png new file mode 100644 index 0000000..2e28032 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_track.9.png new file mode 100644 index 0000000..f7f4b74 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..78f720a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..cbb8d89 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..6c8e49c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_default.9.png new file mode 100644 index 0000000..03426fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_focused.9.png new file mode 100644 index 0000000..5e9bd99 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_pressed.9.png new file mode 100644 index 0000000..3113859 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..5ad1098 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/splitpane_vertical.9.png new file mode 100644 index 0000000..9c6ad56 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text.9.png new file mode 100644 index 0000000..7dbd186 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_focused.9.png new file mode 100644 index 0000000..6d66aa0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_focused_opaque.9.png new file mode 100644 index 0000000..476cb12 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_opaque.9.png new file mode 100644 index 0000000..8010e18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_selected.9.png new file mode 100644 index 0000000..c32902c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_selected_opaque.9.png new file mode 100644 index 0000000..5c7785a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_cursor.9.png new file mode 100644 index 0000000..a731285 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_default.9.png new file mode 100644 index 0000000..908f850 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_disabled.9.png new file mode 100644 index 0000000..39988be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_focused.9.png new file mode 100644 index 0000000..e88cd21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/tree_minus.png new file mode 100644 index 0000000..ae1b28e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/tree_plus.png new file mode 100644 index 0000000..a0e2786 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/window.9.png new file mode 100644 index 0000000..1b8aaad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-ldpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/Roboto-Thin-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/Roboto-Thin-mdpi.png new file mode 100644 index 0000000..2e9f5fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/Roboto-Thin-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/Roboto-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/Roboto-mdpi.png new file mode 100644 index 0000000..7cdbd1b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/Roboto-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_off.png new file mode 100644 index 0000000..2b6c131 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_on.png new file mode 100644 index 0000000..2ef2452 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_on_focused.png new file mode 100644 index 0000000..bac2dcb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_disabled.9.png new file mode 100644 index 0000000..4a6351a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_focused.9.png new file mode 100644 index 0000000..9cd47ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_normal.9.png new file mode 100644 index 0000000..9415bcb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_pressed.9.png new file mode 100644 index 0000000..293448e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_off.png new file mode 100644 index 0000000..c7970a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_on.png new file mode 100644 index 0000000..bd3740b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_on_focused.png new file mode 100644 index 0000000..2116ccd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..c8fab97 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..3e15400 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..8d95229 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..bcc4bc7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..0437db7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..1793171 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/icon-blitz.png new file mode 100644 index 0000000..a65e368 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/icon-blitz_pressed.png new file mode 100644 index 0000000..b2d3555 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_corner.9.png new file mode 100644 index 0000000..cfa3c90 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_horizontal.9.png new file mode 100644 index 0000000..9bd24ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..627c288 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_opaque.9.png new file mode 100644 index 0000000..943971a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_vertical.9.png new file mode 100644 index 0000000..8de6951 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..09bbc20 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_control_normal.png new file mode 100644 index 0000000..03ce379 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_primary.9.png new file mode 100644 index 0000000..aa2e382 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_secondary.9.png new file mode 100644 index 0000000..9a2f058 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_track.9.png new file mode 100644 index 0000000..b91a4ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..07c4d8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..0b5704e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..e6c9314 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_default.9.png new file mode 100644 index 0000000..104453f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_focused.9.png new file mode 100644 index 0000000..5c5198d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_pressed.9.png new file mode 100644 index 0000000..c9c2ff9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..fa15a96 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/splitpane_vertical.9.png new file mode 100644 index 0000000..59fea9c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text.9.png new file mode 100644 index 0000000..4bfeaae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_focused.9.png new file mode 100644 index 0000000..e7e9339 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_focused_opaque.9.png new file mode 100644 index 0000000..3e9132a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_opaque.9.png new file mode 100644 index 0000000..82e48d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_selected.9.png new file mode 100644 index 0000000..b30b8f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_selected_opaque.9.png new file mode 100644 index 0000000..676f447 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_cursor.9.png new file mode 100644 index 0000000..a731285 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_default.9.png new file mode 100644 index 0000000..23a462f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_disabled.9.png new file mode 100644 index 0000000..7e44919 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_focused.9.png new file mode 100644 index 0000000..45cd104 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/tree_minus.png new file mode 100644 index 0000000..0de2483 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/tree_plus.png new file mode 100644 index 0000000..099f999 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/window.9.png new file mode 100644 index 0000000..32da019 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-mdpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/Roboto-Thin-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/Roboto-Thin-xhdpi.png new file mode 100644 index 0000000..204de37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/Roboto-Thin-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/Roboto-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/Roboto-xhdpi.png new file mode 100644 index 0000000..41f0c26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/Roboto-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_off.png new file mode 100644 index 0000000..e06ab5d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_on.png new file mode 100644 index 0000000..b73a73a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_on_focused.png new file mode 100644 index 0000000..22e0305 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_disabled.9.png new file mode 100644 index 0000000..ffee5e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_focused.9.png new file mode 100644 index 0000000..8ea35a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_normal.9.png new file mode 100644 index 0000000..afcf517 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_pressed.9.png new file mode 100644 index 0000000..915d7f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_off.png new file mode 100644 index 0000000..f02cf03 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_on.png new file mode 100644 index 0000000..73979b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_on_focused.png new file mode 100644 index 0000000..36aee94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..63dbab2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..b507b9f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..f2e6399 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..2dd1585 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..fd6bffc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..f3bf7b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/icon-blitz.png new file mode 100644 index 0000000..93527a1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/icon-blitz_pressed.png new file mode 100644 index 0000000..81c4e27 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_corner.9.png new file mode 100644 index 0000000..211ae0f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_horizontal.9.png new file mode 100644 index 0000000..98a94fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..507c446 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_opaque.9.png new file mode 100644 index 0000000..943971a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_vertical.9.png new file mode 100644 index 0000000..f040cdc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..05d3bcc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_control_normal.png new file mode 100644 index 0000000..f3bc5cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_primary.9.png new file mode 100644 index 0000000..0fc5305 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_secondary.9.png new file mode 100644 index 0000000..1c356da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_track.9.png new file mode 100644 index 0000000..bfb2048 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..cdf0547 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..068bd90 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..4e2e337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_default.9.png new file mode 100644 index 0000000..a877755 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_focused.9.png new file mode 100644 index 0000000..488e228 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_pressed.9.png new file mode 100644 index 0000000..f03fd01 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..860a77c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/splitpane_vertical.9.png new file mode 100644 index 0000000..d003561 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text.9.png new file mode 100644 index 0000000..b0673a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_focused.9.png new file mode 100644 index 0000000..9c4ae6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_focused_opaque.9.png new file mode 100644 index 0000000..0f71c51 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_opaque.9.png new file mode 100644 index 0000000..b9aa57d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_selected.9.png new file mode 100644 index 0000000..f9873c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_selected_opaque.9.png new file mode 100644 index 0000000..b9b7560 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_cursor.9.png new file mode 100644 index 0000000..a731285 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_cursor_old.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_cursor_old.9.png new file mode 100644 index 0000000..edb6e78 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_cursor_old.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_default.9.png new file mode 100644 index 0000000..bc6a177 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_disabled.9.png new file mode 100644 index 0000000..3d143b9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_focused.9.png new file mode 100644 index 0000000..dda8d82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/tree_minus.png new file mode 100644 index 0000000..02d66ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/tree_plus.png new file mode 100644 index 0000000..d7a4302 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/window.9.png new file mode 100644 index 0000000..451cb40 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/dark-xhdpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-hdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-hdpi.fnt new file mode 100644 index 0000000..c446a43 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-hdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=33 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=44 base=35 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-hdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=35 xadvance=8 page=0 chnl=0 +char id=125 x=0 y=0 width=11 height=35 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=123 x=11 y=0 width=11 height=35 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=41 x=22 y=0 width=9 height=35 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=40 x=31 y=0 width=9 height=35 xoffset=2 yoffset=9 xadvance=10 page=0 chnl=0 +char id=254 x=40 y=0 width=16 height=34 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=167 x=56 y=0 width=18 height=34 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=93 x=74 y=0 width=7 height=34 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=91 x=81 y=0 width=7 height=34 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=106 x=88 y=0 width=10 height=34 xoffset=-3 yoffset=9 xadvance=7 page=0 chnl=0 +char id=255 x=98 y=0 width=17 height=33 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=253 x=115 y=0 width=17 height=33 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=199 x=132 y=0 width=18 height=33 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=219 x=150 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=218 x=169 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=217 x=188 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=214 x=207 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=213 x=226 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=212 x=0 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=211 x=19 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=210 x=38 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=206 x=57 y=35 width=10 height=32 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=205 x=67 y=35 width=7 height=32 xoffset=3 yoffset=4 xadvance=9 page=0 chnl=0 +char id=204 x=74 y=35 width=7 height=32 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=202 x=81 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=201 x=97 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=200 x=113 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=197 x=129 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=194 x=150 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=193 x=171 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=192 x=192 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=36 x=213 y=35 width=16 height=32 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=64 x=0 y=67 width=28 height=32 xoffset=2 yoffset=11 xadvance=31 page=0 chnl=0 +char id=221 x=28 y=67 width=20 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=220 x=48 y=67 width=19 height=31 xoffset=2 yoffset=5 xadvance=22 page=0 chnl=0 +char id=209 x=67 y=67 width=19 height=31 xoffset=3 yoffset=5 xadvance=23 page=0 chnl=0 +char id=207 x=86 y=67 width=12 height=31 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=203 x=98 y=67 width=16 height=31 xoffset=3 yoffset=5 xadvance=19 page=0 chnl=0 +char id=196 x=114 y=67 width=21 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=195 x=135 y=67 width=21 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=166 x=156 y=67 width=3 height=30 xoffset=2 yoffset=10 xadvance=6 page=0 chnl=0 +char id=124 x=159 y=67 width=3 height=30 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=81 x=162 y=67 width=20 height=29 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=216 x=182 y=67 width=20 height=28 xoffset=2 yoffset=9 xadvance=22 page=0 chnl=0 +char id=162 x=202 y=67 width=15 height=28 xoffset=2 yoffset=12 xadvance=18 page=0 chnl=0 +char id=92 x=217 y=67 width=13 height=28 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=47 x=230 y=67 width=13 height=28 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 +char id=240 x=0 y=99 width=18 height=27 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=232 x=18 y=99 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=229 x=34 y=99 width=15 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=224 x=49 y=99 width=15 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=191 x=64 y=99 width=14 height=27 xoffset=1 yoffset=16 xadvance=15 page=0 chnl=0 +char id=181 x=78 y=99 width=15 height=27 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=121 x=93 y=99 width=17 height=27 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=113 x=110 y=99 width=16 height=27 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=112 x=126 y=99 width=16 height=27 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=108 x=142 y=99 width=3 height=27 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=107 x=145 y=99 width=15 height=27 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=105 x=160 y=99 width=3 height=27 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=104 x=163 y=99 width=15 height=27 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=103 x=178 y=99 width=16 height=27 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=100 x=194 y=99 width=16 height=27 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=98 x=210 y=99 width=16 height=27 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=252 x=226 y=99 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=251 x=0 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=250 x=15 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=249 x=30 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=246 x=45 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=245 x=62 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=244 x=79 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=243 x=96 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=242 x=113 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=241 x=130 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=239 x=145 y=126 width=14 height=26 xoffset=-2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=238 x=159 y=126 width=10 height=26 xoffset=-1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=237 x=169 y=126 width=7 height=26 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=236 x=176 y=126 width=7 height=26 xoffset=-1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=235 x=183 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=234 x=199 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=233 x=215 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=231 x=231 y=126 width=16 height=26 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=228 x=0 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=227 x=15 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=226 x=30 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=225 x=45 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=223 x=60 y=152 width=17 height=26 xoffset=2 yoffset=10 xadvance=19 page=0 chnl=0 +char id=222 x=77 y=152 width=16 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=208 x=93 y=152 width=20 height=26 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0 +char id=198 x=113 y=152 width=30 height=26 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 +char id=190 x=143 y=152 width=26 height=26 xoffset=3 yoffset=10 xadvance=27 page=0 chnl=0 +char id=189 x=169 y=152 width=23 height=26 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=188 x=192 y=152 width=23 height=26 xoffset=2 yoffset=10 xadvance=25 page=0 chnl=0 +char id=182 x=215 y=152 width=13 height=26 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=174 x=228 y=152 width=25 height=26 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 +char id=169 x=0 y=178 width=25 height=26 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 +char id=165 x=25 y=178 width=19 height=26 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=163 x=44 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=161 x=61 y=178 width=3 height=26 xoffset=2 yoffset=16 xadvance=7 page=0 chnl=0 +char id=38 x=64 y=178 width=20 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=35 x=84 y=178 width=20 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=37 x=104 y=178 width=23 height=26 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0 +char id=63 x=127 y=178 width=13 height=26 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=33 x=140 y=178 width=3 height=26 xoffset=2 yoffset=10 xadvance=6 page=0 chnl=0 +char id=57 x=143 y=178 width=16 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=56 x=159 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=55 x=176 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=54 x=193 y=178 width=16 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=53 x=209 y=178 width=15 height=26 xoffset=3 yoffset=10 xadvance=18 page=0 chnl=0 +char id=52 x=224 y=178 width=18 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=51 x=0 y=204 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=50 x=17 y=204 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=49 x=34 y=204 width=9 height=26 xoffset=3 yoffset=10 xadvance=18 page=0 chnl=0 +char id=102 x=43 y=204 width=11 height=26 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=90 x=54 y=204 width=19 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=89 x=73 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=88 x=93 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=87 x=113 y=204 width=29 height=26 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0 +char id=86 x=142 y=204 width=21 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=85 x=163 y=204 width=19 height=26 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=84 x=182 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=83 x=202 y=204 width=19 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=82 x=221 y=204 width=18 height=26 xoffset=3 yoffset=10 xadvance=22 page=0 chnl=0 +char id=80 x=0 y=230 width=17 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=79 x=17 y=230 width=19 height=26 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=78 x=36 y=230 width=19 height=26 xoffset=3 yoffset=10 xadvance=23 page=0 chnl=0 +char id=77 x=55 y=230 width=24 height=26 xoffset=3 yoffset=10 xadvance=28 page=0 chnl=0 +char id=76 x=79 y=230 width=15 height=26 xoffset=3 yoffset=10 xadvance=17 page=0 chnl=0 +char id=75 x=94 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=21 page=0 chnl=0 +char id=74 x=112 y=230 width=15 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=73 x=127 y=230 width=3 height=26 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=72 x=130 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=23 page=0 chnl=0 +char id=71 x=148 y=230 width=19 height=26 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=70 x=167 y=230 width=16 height=26 xoffset=3 yoffset=10 xadvance=19 page=0 chnl=0 +char id=69 x=183 y=230 width=16 height=26 xoffset=3 yoffset=10 xadvance=19 page=0 chnl=0 +char id=68 x=199 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=22 page=0 chnl=0 +char id=67 x=217 y=230 width=18 height=26 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=66 x=235 y=230 width=17 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=65 x=0 y=256 width=21 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=48 x=21 y=256 width=16 height=25 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=116 x=37 y=256 width=11 height=25 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 +char id=248 x=48 y=256 width=17 height=24 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=164 x=65 y=256 width=23 height=24 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=59 x=88 y=256 width=5 height=22 xoffset=1 yoffset=18 xadvance=6 page=0 chnl=0 +char id=177 x=93 y=256 width=18 height=21 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=230 x=111 y=256 width=27 height=20 xoffset=1 yoffset=16 xadvance=28 page=0 chnl=0 +char id=122 x=138 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=120 x=153 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=119 x=168 y=256 width=24 height=20 xoffset=1 yoffset=16 xadvance=25 page=0 chnl=0 +char id=118 x=192 y=256 width=17 height=20 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=117 x=209 y=256 width=15 height=20 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=115 x=224 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=114 x=239 y=256 width=10 height=20 xoffset=2 yoffset=16 xadvance=11 page=0 chnl=0 +char id=110 x=0 y=282 width=15 height=20 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=109 x=15 y=282 width=27 height=20 xoffset=2 yoffset=16 xadvance=30 page=0 chnl=0 +char id=97 x=42 y=282 width=15 height=20 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=43 x=57 y=282 width=18 height=19 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 +char id=111 x=75 y=282 width=17 height=19 xoffset=1 yoffset=17 xadvance=18 page=0 chnl=0 +char id=101 x=92 y=282 width=16 height=19 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=99 x=108 y=282 width=16 height=19 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=58 x=124 y=282 width=4 height=18 xoffset=2 yoffset=18 xadvance=6 page=0 chnl=0 +char id=247 x=128 y=282 width=18 height=16 xoffset=1 yoffset=16 xadvance=19 page=0 chnl=0 +char id=215 x=146 y=282 width=16 height=15 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=187 x=162 y=282 width=13 height=15 xoffset=1 yoffset=18 xadvance=14 page=0 chnl=0 +char id=186 x=175 y=282 width=12 height=15 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=185 x=187 y=282 width=5 height=15 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=179 x=192 y=282 width=11 height=15 xoffset=2 yoffset=10 xadvance=13 page=0 chnl=0 +char id=42 x=203 y=282 width=15 height=15 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 +char id=62 x=218 y=282 width=16 height=15 xoffset=1 yoffset=19 xadvance=17 page=0 chnl=0 +char id=60 x=234 y=282 width=15 height=15 xoffset=1 yoffset=19 xadvance=17 page=0 chnl=0 +char id=178 x=0 y=302 width=11 height=14 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=171 x=11 y=302 width=12 height=14 xoffset=2 yoffset=20 xadvance=15 page=0 chnl=0 +char id=170 x=23 y=302 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0 +char id=94 x=34 y=302 width=12 height=14 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=61 x=46 y=302 width=15 height=10 xoffset=2 yoffset=19 xadvance=18 page=0 chnl=0 +char id=184 x=61 y=302 width=7 height=9 xoffset=1 yoffset=34 xadvance=8 page=0 chnl=0 +char id=44 x=68 y=302 width=4 height=9 xoffset=1 yoffset=31 xadvance=6 page=0 chnl=0 +char id=39 x=72 y=302 width=4 height=9 xoffset=1 yoffset=9 xadvance=5 page=0 chnl=0 +char id=34 x=76 y=302 width=7 height=9 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=176 x=83 y=302 width=10 height=8 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=0 +char id=172 x=93 y=302 width=15 height=8 xoffset=1 yoffset=22 xadvance=18 page=0 chnl=0 +char id=180 x=108 y=302 width=7 height=7 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=96 x=115 y=302 width=7 height=7 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=126 x=122 y=302 width=20 height=6 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=0 +char id=183 x=142 y=302 width=4 height=4 xoffset=2 yoffset=22 xadvance=8 page=0 chnl=0 +char id=175 x=146 y=302 width=12 height=3 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0 +char id=173 x=158 y=302 width=10 height=3 xoffset=0 yoffset=23 xadvance=10 page=0 chnl=0 +char id=168 x=168 y=302 width=12 height=3 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=95 x=180 y=302 width=16 height=3 xoffset=-1 yoffset=34 xadvance=14 page=0 chnl=0 +char id=45 x=196 y=302 width=10 height=3 xoffset=0 yoffset=23 xadvance=10 page=0 chnl=0 +char id=46 x=206 y=302 width=4 height=3 xoffset=2 yoffset=33 xadvance=7 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-hdpi.png new file mode 100644 index 0000000..baaa780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-ldpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-ldpi.fnt new file mode 100644 index 0000000..cf49217 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-ldpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-ldpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=167 x=0 y=0 width=10 height=21 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=254 x=10 y=0 width=9 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=19 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=123 x=26 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=93 x=33 y=0 width=5 height=20 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=91 x=38 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=41 x=43 y=0 width=6 height=20 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=40 x=49 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=106 x=55 y=0 width=7 height=20 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=255 x=62 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=72 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=82 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=36 x=93 y=0 width=9 height=19 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=64 x=102 y=0 width=16 height=19 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=221 x=118 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=130 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=141 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=152 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=163 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=174 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=185 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=196 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=207 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=218 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=229 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=240 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=247 y=0 width=6 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=0 y=21 width=4 height=18 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=4 y=21 width=4 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=8 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=202 x=18 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=201 x=28 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=200 x=38 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=196 x=48 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=195 x=60 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=194 x=72 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=193 x=84 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=192 x=96 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=166 x=108 y=21 width=2 height=18 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=110 y=21 width=3 height=18 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=197 x=113 y=21 width=12 height=17 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=92 x=125 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=133 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=240 x=141 y=21 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=216 x=151 y=21 width=11 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=191 x=162 y=21 width=9 height=16 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 +char id=190 x=171 y=21 width=15 height=16 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=181 x=186 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=195 y=21 width=9 height=16 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=161 x=204 y=21 width=3 height=16 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=121 x=207 y=21 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=217 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=226 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=235 y=21 width=3 height=16 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=107 x=238 y=21 width=9 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=247 y=21 width=3 height=16 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=104 x=0 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=9 y=39 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=100 x=18 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=27 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=36 y=39 width=11 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=47 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=56 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=65 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=74 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=83 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=94 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=105 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=116 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=127 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=138 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=147 y=39 width=7 height=15 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=238 x=154 y=39 width=6 height=15 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=237 x=160 y=39 width=4 height=15 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=236 x=164 y=39 width=4 height=15 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=235 x=168 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=234 x=178 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=233 x=188 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=232 x=198 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=231 x=208 y=39 width=10 height=15 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=229 x=218 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=228 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=238 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=0 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=10 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=20 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=30 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=40 y=55 width=12 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=52 y=55 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=189 x=69 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=188 x=82 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=182 x=95 y=55 width=8 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=174 x=103 y=55 width=14 height=15 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=165 x=117 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=128 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=38 x=139 y=55 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=150 y=55 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=162 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=33 x=175 y=55 width=3 height=15 xoffset=1 yoffset=5 xadvance=3 page=0 chnl=0 +char id=48 x=178 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=188 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=198 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=208 y=55 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=217 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=228 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=49 x=238 y=55 width=6 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=102 x=244 y=55 width=7 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=90 x=0 y=70 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=11 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=23 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=35 y=70 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=52 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=64 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=75 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=83 x=87 y=70 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=98 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=109 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=78 x=119 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=130 y=70 width=14 height=15 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=76 x=144 y=70 width=9 height=15 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=75 x=153 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=74 x=164 y=70 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=174 y=70 width=2 height=15 xoffset=2 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=176 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=187 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=198 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=208 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=68 x=218 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=229 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=66 x=240 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=65 x=0 y=85 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=248 x=12 y=85 width=11 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=223 x=23 y=85 width=10 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=169 x=33 y=85 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=164 x=47 y=85 width=13 height=14 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=63 x=60 y=85 width=9 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=57 x=69 y=85 width=10 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=79 y=85 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=51 x=90 y=85 width=10 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=100 y=85 width=6 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=79 x=106 y=85 width=11 height=14 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=177 x=117 y=85 width=11 height=13 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=59 x=128 y=85 width=3 height=13 xoffset=1 yoffset=9 xadvance=3 page=0 chnl=0 +char id=230 x=131 y=85 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=43 x=147 y=85 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=122 x=158 y=85 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=168 y=85 width=9 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=177 y=85 width=14 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=191 y=85 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=201 y=85 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=210 y=85 width=9 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=219 y=85 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=225 y=85 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=236 y=85 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=0 y=100 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=101 x=15 y=100 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=97 x=25 y=100 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=58 x=35 y=100 width=3 height=11 xoffset=1 yoffset=9 xadvance=3 page=0 chnl=0 +char id=99 x=38 y=100 width=10 height=11 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=247 x=48 y=100 width=11 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=179 x=59 y=100 width=7 height=10 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=178 x=66 y=100 width=6 height=10 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=42 x=72 y=100 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=215 x=81 y=100 width=10 height=9 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=187 x=91 y=100 width=8 height=9 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=186 x=99 y=100 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=185 x=106 y=100 width=4 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=171 x=110 y=100 width=9 height=9 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=170 x=119 y=100 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=94 x=126 y=100 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=62 x=134 y=100 width=9 height=9 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=143 y=100 width=10 height=9 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=184 x=153 y=100 width=5 height=6 xoffset=0 yoffset=18 xadvance=4 page=0 chnl=0 +char id=176 x=158 y=100 width=6 height=6 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=172 x=164 y=100 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=173 y=100 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=182 y=100 width=3 height=6 xoffset=1 yoffset=16 xadvance=3 page=0 chnl=0 +char id=39 x=185 y=100 width=2 height=6 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=187 y=100 width=4 height=6 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=180 x=191 y=100 width=4 height=5 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=96 x=195 y=100 width=4 height=5 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=126 x=199 y=100 width=11 height=4 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=183 x=210 y=100 width=3 height=3 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0 +char id=175 x=213 y=100 width=8 height=3 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=173 x=221 y=100 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=168 x=227 y=100 width=7 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=95 x=234 y=100 width=10 height=3 xoffset=-1 yoffset=18 xadvance=7 page=0 chnl=0 +char id=45 x=244 y=100 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=46 x=250 y=100 width=3 height=3 xoffset=1 yoffset=17 xadvance=4 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-ldpi.png new file mode 100644 index 0000000..c1c4312 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-mdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-mdpi.fnt new file mode 100644 index 0000000..1c76442 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-mdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=22 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=30 base=24 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-mdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=24 xadvance=5 page=0 chnl=0 +char id=254 x=0 y=0 width=11 height=24 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=125 x=11 y=0 width=8 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=123 x=19 y=0 width=9 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=93 x=28 y=0 width=5 height=24 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=91 x=33 y=0 width=5 height=24 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=41 x=38 y=0 width=6 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=40 x=44 y=0 width=7 height=24 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=106 x=51 y=0 width=7 height=24 xoffset=-2 yoffset=6 xadvance=5 page=0 chnl=0 +char id=255 x=58 y=0 width=12 height=23 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=253 x=70 y=0 width=12 height=23 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=199 x=82 y=0 width=13 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=167 x=95 y=0 width=12 height=23 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=64 x=107 y=0 width=19 height=23 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0 +char id=221 x=126 y=0 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=220 x=140 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=219 x=153 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=218 x=166 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=217 x=179 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=214 x=192 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=213 x=206 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=212 x=220 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=211 x=234 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=210 x=0 y=24 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=209 x=14 y=24 width=13 height=22 xoffset=2 yoffset=3 xadvance=16 page=0 chnl=0 +char id=207 x=27 y=24 width=9 height=22 xoffset=-1 yoffset=3 xadvance=6 page=0 chnl=0 +char id=206 x=36 y=24 width=7 height=22 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=205 x=43 y=24 width=5 height=22 xoffset=2 yoffset=3 xadvance=6 page=0 chnl=0 +char id=204 x=48 y=24 width=5 height=22 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=203 x=53 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=202 x=64 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=201 x=75 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=200 x=86 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=196 x=97 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=195 x=111 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=194 x=125 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=193 x=139 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=192 x=153 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=36 x=167 y=24 width=11 height=22 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=197 x=178 y=24 width=14 height=21 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=124 x=192 y=24 width=3 height=21 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=166 x=195 y=24 width=3 height=20 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=240 x=198 y=24 width=12 height=19 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=231 x=210 y=24 width=11 height=19 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=216 x=221 y=24 width=14 height=19 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=191 x=235 y=24 width=9 height=19 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=181 x=244 y=24 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=162 x=0 y=46 width=11 height=19 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=161 x=11 y=46 width=3 height=19 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0 +char id=92 x=14 y=46 width=9 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=47 x=23 y=46 width=9 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=121 x=32 y=46 width=12 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=113 x=44 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=112 x=55 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=108 x=66 y=46 width=3 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=107 x=69 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=105 x=80 y=46 width=3 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=104 x=83 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=103 x=94 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=102 x=105 y=46 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=100 x=114 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=98 x=125 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=81 x=136 y=46 width=14 height=19 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=252 x=150 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=251 x=161 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=250 x=172 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=249 x=183 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=246 x=194 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=245 x=207 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=244 x=220 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=243 x=233 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=242 x=0 y=65 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=241 x=13 y=65 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=239 x=24 y=65 width=11 height=18 xoffset=-2 yoffset=7 xadvance=4 page=0 chnl=0 +char id=238 x=35 y=65 width=8 height=18 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=237 x=43 y=65 width=5 height=18 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=236 x=48 y=65 width=5 height=18 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=235 x=53 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=234 x=65 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=233 x=77 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=232 x=89 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=229 x=101 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=228 x=112 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=227 x=123 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=226 x=134 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=225 x=145 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=224 x=156 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=223 x=167 y=65 width=12 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=222 x=179 y=65 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=208 x=190 y=65 width=15 height=18 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=198 x=205 y=65 width=21 height=18 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=182 x=226 y=65 width=9 height=18 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=174 x=235 y=65 width=17 height=18 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=165 x=0 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=163 x=14 y=83 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=38 x=27 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=35 x=40 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=37 x=54 y=83 width=16 height=18 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=63 x=70 y=83 width=9 height=18 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=33 x=79 y=83 width=3 height=18 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=57 x=82 y=83 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=55 x=93 y=83 width=12 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=53 x=105 y=83 width=11 height=18 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=52 x=116 y=83 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=51 x=129 y=83 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=50 x=140 y=83 width=12 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=49 x=152 y=83 width=7 height=18 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=90 x=159 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=89 x=172 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=88 x=186 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=87 x=200 y=83 width=21 height=18 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=86 x=221 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=85 x=235 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=84 x=0 y=101 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=83 x=14 y=101 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=82 x=27 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=80 x=39 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=78 x=51 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=77 x=64 y=101 width=16 height=18 xoffset=2 yoffset=7 xadvance=19 page=0 chnl=0 +char id=76 x=80 y=101 width=10 height=18 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=75 x=90 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=74 x=103 y=101 width=10 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=73 x=113 y=101 width=3 height=18 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=0 +char id=72 x=116 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=70 x=129 y=101 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=69 x=140 y=101 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=68 x=151 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=67 x=163 y=101 width=13 height=18 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=66 x=176 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=65 x=188 y=101 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=248 x=202 y=101 width=13 height=17 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=190 x=215 y=101 width=19 height=17 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=189 x=234 y=101 width=16 height=17 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=188 x=0 y=119 width=16 height=17 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=169 x=16 y=119 width=17 height=17 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=48 x=33 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=56 x=45 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=54 x=57 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=116 x=69 y=119 width=8 height=17 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=79 x=77 y=119 width=14 height=17 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=71 x=91 y=119 width=14 height=17 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=164 x=105 y=119 width=15 height=16 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=59 x=120 y=119 width=3 height=16 xoffset=1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=177 x=123 y=119 width=13 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=230 x=136 y=119 width=18 height=14 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=43 x=154 y=119 width=13 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=122 x=167 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=120 x=178 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=119 x=189 y=119 width=17 height=14 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=118 x=206 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=117 x=217 y=119 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=115 x=228 y=119 width=10 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=114 x=238 y=119 width=8 height=14 xoffset=1 yoffset=11 xadvance=7 page=0 chnl=0 +char id=110 x=0 y=136 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=109 x=11 y=136 width=19 height=14 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=101 x=30 y=136 width=12 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=99 x=42 y=136 width=11 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=97 x=53 y=136 width=11 height=14 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=58 x=64 y=136 width=3 height=13 xoffset=1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=111 x=67 y=136 width=13 height=13 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 +char id=247 x=80 y=136 width=13 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=215 x=93 y=136 width=11 height=11 xoffset=1 yoffset=12 xadvance=11 page=0 chnl=0 +char id=186 x=104 y=136 width=9 height=11 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=178 x=113 y=136 width=8 height=11 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=170 x=121 y=136 width=8 height=11 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=42 x=129 y=136 width=10 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=62 x=139 y=136 width=11 height=11 xoffset=1 yoffset=13 xadvance=11 page=0 chnl=0 +char id=60 x=150 y=136 width=11 height=11 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 +char id=187 x=161 y=136 width=9 height=10 xoffset=1 yoffset=13 xadvance=10 page=0 chnl=0 +char id=185 x=170 y=136 width=5 height=10 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=179 x=175 y=136 width=8 height=10 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=171 x=183 y=136 width=8 height=10 xoffset=1 yoffset=13 xadvance=10 page=0 chnl=0 +char id=94 x=191 y=136 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=176 x=199 y=136 width=7 height=7 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=172 x=206 y=136 width=10 height=7 xoffset=1 yoffset=15 xadvance=12 page=0 chnl=0 +char id=61 x=216 y=136 width=11 height=7 xoffset=1 yoffset=13 xadvance=12 page=0 chnl=0 +char id=39 x=227 y=136 width=3 height=7 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0 +char id=34 x=230 y=136 width=5 height=7 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=0 +char id=184 x=235 y=136 width=6 height=6 xoffset=0 yoffset=24 xadvance=5 page=0 chnl=0 +char id=126 x=241 y=136 width=14 height=6 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0 +char id=44 x=0 y=150 width=3 height=6 xoffset=1 yoffset=22 xadvance=4 page=0 chnl=0 +char id=180 x=3 y=150 width=5 height=5 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=96 x=8 y=150 width=5 height=5 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=183 x=13 y=150 width=4 height=3 xoffset=1 yoffset=15 xadvance=5 page=0 chnl=0 +char id=175 x=17 y=150 width=9 height=3 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=173 x=26 y=150 width=7 height=3 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 +char id=168 x=33 y=150 width=9 height=3 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=95 x=42 y=150 width=12 height=3 xoffset=-1 yoffset=23 xadvance=9 page=0 chnl=0 +char id=45 x=54 y=150 width=7 height=3 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 +char id=46 x=61 y=150 width=3 height=3 xoffset=1 yoffset=22 xadvance=5 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-mdpi.png new file mode 100644 index 0000000..2e9f5fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-xhdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-xhdpi.fnt new file mode 100644 index 0000000..fd0d077 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-xhdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=44 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=59 base=47 scaleW=256 scaleH=512 pages=2 packed=0 +page id=0 file="Roboto-Thin-xhdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=47 xadvance=11 page=0 chnl=0 +char id=41 x=0 y=0 width=11 height=47 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=40 x=11 y=0 width=11 height=47 xoffset=3 yoffset=11 xadvance=13 page=0 chnl=0 +char id=125 x=22 y=0 width=14 height=46 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 +char id=123 x=36 y=0 width=15 height=46 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=254 x=51 y=0 width=20 height=45 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=167 x=71 y=0 width=23 height=45 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=93 x=94 y=0 width=8 height=45 xoffset=-1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=91 x=102 y=0 width=8 height=45 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=106 x=110 y=0 width=14 height=45 xoffset=-4 yoffset=12 xadvance=10 page=0 chnl=0 +char id=255 x=124 y=0 width=22 height=43 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 +char id=253 x=146 y=0 width=22 height=43 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 +char id=199 x=168 y=0 width=24 height=43 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=219 x=192 y=0 width=24 height=42 xoffset=3 yoffset=6 xadvance=29 page=0 chnl=0 +char id=217 x=216 y=0 width=24 height=42 xoffset=3 yoffset=6 xadvance=29 page=0 chnl=0 +char id=214 x=0 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=213 x=26 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=212 x=52 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=211 x=78 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=210 x=104 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=206 x=130 y=47 width=13 height=42 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=204 x=143 y=47 width=8 height=42 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=202 x=151 y=47 width=21 height=42 xoffset=4 yoffset=6 xadvance=25 page=0 chnl=0 +char id=200 x=172 y=47 width=21 height=42 xoffset=4 yoffset=6 xadvance=25 page=0 chnl=0 +char id=194 x=193 y=47 width=27 height=42 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 +char id=192 x=220 y=47 width=27 height=42 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 +char id=36 x=0 y=89 width=21 height=42 xoffset=2 yoffset=10 xadvance=24 page=0 chnl=0 +char id=64 x=21 y=89 width=38 height=42 xoffset=2 yoffset=15 xadvance=41 page=0 chnl=0 +char id=221 x=59 y=89 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=220 x=86 y=89 width=24 height=41 xoffset=3 yoffset=7 xadvance=29 page=0 chnl=0 +char id=218 x=110 y=89 width=24 height=41 xoffset=3 yoffset=7 xadvance=29 page=0 chnl=0 +char id=209 x=134 y=89 width=24 height=41 xoffset=4 yoffset=7 xadvance=31 page=0 chnl=0 +char id=207 x=158 y=89 width=16 height=41 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=205 x=174 y=89 width=8 height=41 xoffset=4 yoffset=7 xadvance=11 page=0 chnl=0 +char id=203 x=182 y=89 width=21 height=41 xoffset=4 yoffset=7 xadvance=25 page=0 chnl=0 +char id=201 x=203 y=89 width=21 height=41 xoffset=4 yoffset=7 xadvance=25 page=0 chnl=0 +char id=197 x=224 y=89 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=196 x=0 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=195 x=27 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=193 x=54 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=166 x=81 y=131 width=3 height=40 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=124 x=84 y=131 width=4 height=40 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=81 x=88 y=131 width=27 height=38 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0 +char id=92 x=115 y=131 width=16 height=37 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=47 x=131 y=131 width=16 height=37 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=216 x=147 y=131 width=26 height=36 xoffset=2 yoffset=13 xadvance=29 page=0 chnl=0 +char id=162 x=173 y=131 width=20 height=36 xoffset=2 yoffset=17 xadvance=24 page=0 chnl=0 +char id=108 x=193 y=131 width=4 height=36 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0 +char id=107 x=197 y=131 width=19 height=36 xoffset=3 yoffset=12 xadvance=21 page=0 chnl=0 +char id=105 x=216 y=131 width=4 height=36 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0 +char id=104 x=220 y=131 width=19 height=36 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=102 x=239 y=131 width=15 height=36 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=100 x=0 y=172 width=20 height=36 xoffset=2 yoffset=12 xadvance=24 page=0 chnl=0 +char id=98 x=20 y=172 width=20 height=36 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=244 x=40 y=172 width=23 height=35 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=242 x=63 y=172 width=23 height=35 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=240 x=86 y=172 width=22 height=35 xoffset=2 yoffset=13 xadvance=25 page=0 chnl=0 +char id=234 x=108 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=233 x=129 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=232 x=150 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=231 x=171 y=172 width=20 height=35 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=226 x=191 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=225 x=212 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=224 x=233 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=191 x=0 y=208 width=17 height=35 xoffset=2 yoffset=22 xadvance=20 page=0 chnl=0 +char id=181 x=17 y=208 width=19 height=35 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=121 x=36 y=208 width=22 height=35 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 +char id=113 x=58 y=208 width=20 height=35 xoffset=2 yoffset=22 xadvance=24 page=0 chnl=0 +char id=112 x=78 y=208 width=20 height=35 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=103 x=98 y=208 width=20 height=35 xoffset=2 yoffset=22 xadvance=24 page=0 chnl=0 +char id=252 x=118 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=251 x=137 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=250 x=156 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=249 x=175 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=246 x=194 y=208 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=245 x=217 y=208 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=243 x=0 y=243 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=241 x=23 y=243 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=239 x=42 y=243 width=18 height=34 xoffset=-2 yoffset=14 xadvance=9 page=0 chnl=0 +char id=238 x=60 y=243 width=14 height=34 xoffset=-1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=237 x=74 y=243 width=8 height=34 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=236 x=82 y=243 width=8 height=34 xoffset=-1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=235 x=90 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=22 page=0 chnl=0 +char id=229 x=111 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=228 x=132 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=227 x=153 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=223 x=174 y=243 width=21 height=34 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0 +char id=222 x=195 y=243 width=21 height=34 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0 +char id=208 x=216 y=243 width=27 height=34 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0 +char id=198 x=0 y=277 width=38 height=34 xoffset=1 yoffset=14 xadvance=39 page=0 chnl=0 +char id=190 x=38 y=277 width=34 height=34 xoffset=3 yoffset=14 xadvance=36 page=0 chnl=0 +char id=182 x=72 y=277 width=16 height=34 xoffset=2 yoffset=14 xadvance=20 page=0 chnl=0 +char id=174 x=88 y=277 width=32 height=34 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 +char id=169 x=120 y=277 width=33 height=34 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 +char id=165 x=153 y=277 width=25 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=161 x=178 y=277 width=4 height=34 xoffset=3 yoffset=22 xadvance=9 page=0 chnl=0 +char id=38 x=182 y=277 width=25 height=34 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0 +char id=35 x=207 y=277 width=26 height=34 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=63 x=233 y=277 width=17 height=34 xoffset=2 yoffset=14 xadvance=19 page=0 chnl=0 +char id=33 x=250 y=277 width=4 height=34 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=48 x=0 y=311 width=21 height=34 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0 +char id=57 x=21 y=311 width=20 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=56 x=41 y=311 width=22 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=55 x=63 y=311 width=22 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=54 x=85 y=311 width=21 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=53 x=106 y=311 width=20 height=34 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0 +char id=52 x=126 y=311 width=24 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=51 x=150 y=311 width=21 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=50 x=171 y=311 width=22 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=49 x=193 y=311 width=12 height=34 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0 +char id=90 x=205 y=311 width=24 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=89 x=0 y=345 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=88 x=27 y=345 width=25 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=87 x=52 y=345 width=39 height=34 xoffset=1 yoffset=14 xadvance=40 page=0 chnl=0 +char id=86 x=91 y=345 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=85 x=118 y=345 width=24 height=34 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=84 x=142 y=345 width=26 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=83 x=168 y=345 width=24 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=82 x=192 y=345 width=23 height=34 xoffset=4 yoffset=14 xadvance=29 page=0 chnl=0 +char id=80 x=215 y=345 width=22 height=34 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0 +char id=79 x=0 y=379 width=26 height=34 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0 +char id=78 x=26 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0 +char id=77 x=50 y=379 width=31 height=34 xoffset=4 yoffset=14 xadvance=38 page=0 chnl=0 +char id=76 x=81 y=379 width=19 height=34 xoffset=4 yoffset=14 xadvance=23 page=0 chnl=0 +char id=75 x=100 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=28 page=0 chnl=0 +char id=74 x=124 y=379 width=19 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=73 x=143 y=379 width=3 height=34 xoffset=5 yoffset=14 xadvance=11 page=0 chnl=0 +char id=72 x=146 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0 +char id=71 x=170 y=379 width=25 height=34 xoffset=3 yoffset=14 xadvance=30 page=0 chnl=0 +char id=70 x=195 y=379 width=21 height=34 xoffset=4 yoffset=14 xadvance=25 page=0 chnl=0 +char id=69 x=216 y=379 width=21 height=34 xoffset=4 yoffset=14 xadvance=25 page=0 chnl=0 +char id=68 x=0 y=413 width=23 height=34 xoffset=4 yoffset=14 xadvance=29 page=0 chnl=0 +char id=67 x=23 y=413 width=24 height=34 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=66 x=47 y=413 width=22 height=34 xoffset=4 yoffset=14 xadvance=27 page=0 chnl=0 +char id=65 x=69 y=413 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=189 x=96 y=413 width=31 height=33 xoffset=2 yoffset=15 xadvance=31 page=0 chnl=0 +char id=188 x=127 y=413 width=31 height=33 xoffset=2 yoffset=15 xadvance=33 page=0 chnl=0 +char id=163 x=158 y=413 width=23 height=33 xoffset=1 yoffset=15 xadvance=25 page=0 chnl=0 +char id=37 x=181 y=413 width=30 height=33 xoffset=2 yoffset=15 xadvance=33 page=0 chnl=0 +char id=248 x=211 y=413 width=23 height=32 xoffset=1 yoffset=19 xadvance=24 page=0 chnl=0 +char id=116 x=234 y=413 width=14 height=32 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=59 x=248 y=413 width=5 height=31 xoffset=2 yoffset=23 xadvance=8 page=0 chnl=0 +char id=164 x=0 y=447 width=29 height=30 xoffset=2 yoffset=19 xadvance=32 page=0 chnl=0 +char id=177 x=29 y=447 width=24 height=28 xoffset=1 yoffset=18 xadvance=23 page=0 chnl=0 +char id=230 x=53 y=447 width=35 height=26 xoffset=2 yoffset=22 xadvance=37 page=0 chnl=0 +char id=122 x=88 y=447 width=20 height=26 xoffset=1 yoffset=22 xadvance=21 page=0 chnl=0 +char id=120 x=108 y=447 width=20 height=26 xoffset=1 yoffset=22 xadvance=21 page=0 chnl=0 +char id=119 x=128 y=447 width=32 height=26 xoffset=1 yoffset=22 xadvance=33 page=0 chnl=0 +char id=118 x=160 y=447 width=22 height=26 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 +char id=117 x=182 y=447 width=19 height=26 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=115 x=201 y=447 width=19 height=26 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=114 x=220 y=447 width=13 height=26 xoffset=3 yoffset=22 xadvance=15 page=0 chnl=0 +char id=111 x=0 y=477 width=23 height=26 xoffset=1 yoffset=22 xadvance=24 page=0 chnl=0 +char id=110 x=23 y=477 width=19 height=26 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=109 x=42 y=477 width=35 height=26 xoffset=3 yoffset=22 xadvance=39 page=0 chnl=0 +char id=101 x=77 y=477 width=21 height=26 xoffset=1 yoffset=22 xadvance=22 page=0 chnl=0 +char id=99 x=98 y=477 width=20 height=26 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=97 x=118 y=477 width=21 height=26 xoffset=1 yoffset=22 xadvance=23 page=0 chnl=0 +char id=43 x=139 y=477 width=24 height=25 xoffset=1 yoffset=20 xadvance=25 page=0 chnl=0 +char id=58 x=163 y=477 width=4 height=25 xoffset=2 yoffset=23 xadvance=8 page=0 chnl=0 +char id=247 x=167 y=477 width=24 height=21 xoffset=1 yoffset=21 xadvance=25 page=0 chnl=0 +char id=215 x=191 y=477 width=20 height=20 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=0 +char id=42 x=211 y=477 width=19 height=20 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 +char id=62 x=230 y=477 width=20 height=20 xoffset=2 yoffset=26 xadvance=23 page=0 chnl=0 +char id=45 x=0 y=503 width=12 height=3 xoffset=1 yoffset=32 xadvance=13 page=0 chnl=0 +char id=95 x=12 y=503 width=21 height=3 xoffset=-1 yoffset=46 xadvance=18 page=0 chnl=0 +char id=168 x=33 y=503 width=15 height=3 xoffset=3 yoffset=14 xadvance=19 page=0 chnl=0 +char id=173 x=48 y=503 width=12 height=3 xoffset=1 yoffset=32 xadvance=13 page=0 chnl=0 +char id=175 x=60 y=503 width=16 height=3 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=46 x=76 y=503 width=4 height=5 xoffset=3 yoffset=43 xadvance=9 page=0 chnl=0 +char id=183 x=80 y=503 width=5 height=5 xoffset=3 yoffset=29 xadvance=10 page=0 chnl=0 +char id=96 x=85 y=503 width=8 height=8 xoffset=2 yoffset=14 xadvance=12 page=0 chnl=0 +char id=180 x=93 y=503 width=8 height=8 xoffset=2 yoffset=14 xadvance=11 page=0 chnl=0 +char id=187 x=0 y=512 width=17 height=19 xoffset=2 yoffset=25 xadvance=19 page=0 chnl=0 +char id=186 x=17 y=512 width=15 height=19 xoffset=3 yoffset=14 xadvance=20 page=0 chnl=0 +char id=185 x=32 y=512 width=7 height=19 xoffset=1 yoffset=15 xadvance=10 page=0 chnl=0 +char id=179 x=39 y=512 width=14 height=19 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0 +char id=178 x=53 y=512 width=14 height=19 xoffset=2 yoffset=14 xadvance=17 page=0 chnl=0 +char id=171 x=67 y=512 width=16 height=19 xoffset=3 yoffset=26 xadvance=19 page=0 chnl=0 +char id=170 x=83 y=512 width=14 height=19 xoffset=3 yoffset=14 xadvance=19 page=0 chnl=0 +char id=60 x=97 y=512 width=20 height=19 xoffset=1 yoffset=26 xadvance=23 page=0 chnl=0 +char id=94 x=117 y=512 width=15 height=18 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0 +char id=176 x=132 y=512 width=12 height=12 xoffset=3 yoffset=14 xadvance=17 page=0 chnl=0 +char id=61 x=144 y=512 width=20 height=12 xoffset=3 yoffset=26 xadvance=25 page=0 chnl=0 +char id=39 x=164 y=512 width=4 height=12 xoffset=2 yoffset=12 xadvance=7 page=0 chnl=0 +char id=34 x=168 y=512 width=8 height=12 xoffset=2 yoffset=12 xadvance=11 page=0 chnl=0 +char id=184 x=176 y=512 width=9 height=11 xoffset=1 yoffset=46 xadvance=11 page=0 chnl=0 +char id=44 x=185 y=512 width=5 height=11 xoffset=2 yoffset=43 xadvance=8 page=0 chnl=0 +char id=172 x=190 y=512 width=19 height=10 xoffset=2 yoffset=30 xadvance=24 page=0 chnl=0 +char id=126 x=209 y=512 width=25 height=9 xoffset=3 yoffset=29 xadvance=30 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-xhdpi.png new file mode 100644 index 0000000..204de37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-Thin-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-hdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-hdpi.fnt new file mode 100644 index 0000000..04e7d92 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-hdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=27 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=37 base=29 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-hdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=29 xadvance=7 page=0 chnl=0 +char id=106 x=0 y=0 width=7 height=30 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=254 x=7 y=0 width=14 height=29 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=41 x=21 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=40 x=30 y=0 width=9 height=29 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=255 x=39 y=0 width=15 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=253 x=54 y=0 width=15 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=197 x=69 y=0 width=19 height=28 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0 +char id=167 x=88 y=0 width=16 height=28 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=125 x=104 y=0 width=10 height=28 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=93 x=114 y=0 width=7 height=28 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=91 x=121 y=0 width=7 height=28 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=219 x=128 y=0 width=17 height=27 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=212 x=145 y=0 width=17 height=27 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=206 x=162 y=0 width=10 height=27 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=202 x=172 y=0 width=15 height=27 xoffset=2 yoffset=3 xadvance=16 page=0 chnl=0 +char id=199 x=187 y=0 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=194 x=203 y=0 width=19 height=27 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 +char id=64 x=222 y=0 width=23 height=27 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=123 x=245 y=0 width=10 height=27 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=221 x=0 y=30 width=18 height=26 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 +char id=220 x=18 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=218 x=35 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=217 x=52 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=214 x=69 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=213 x=86 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=211 x=103 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=210 x=120 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=209 x=137 y=30 width=16 height=26 xoffset=2 yoffset=4 xadvance=19 page=0 chnl=0 +char id=207 x=153 y=30 width=11 height=26 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=205 x=164 y=30 width=8 height=26 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=204 x=172 y=30 width=8 height=26 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=203 x=180 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=201 x=195 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=200 x=210 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=196 x=225 y=30 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=195 x=0 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=193 x=19 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=192 x=38 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=36 x=57 y=56 width=14 height=26 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=166 x=71 y=56 width=5 height=25 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=124 x=76 y=56 width=4 height=25 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=105 x=80 y=56 width=4 height=24 xoffset=2 yoffset=6 xadvance=7 page=0 chnl=0 +char id=81 x=84 y=56 width=18 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=251 x=102 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=244 x=116 y=56 width=15 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=238 x=131 y=56 width=10 height=23 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=234 x=141 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=231 x=155 y=56 width=14 height=23 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=229 x=169 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=226 x=183 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=181 x=197 y=56 width=13 height=23 xoffset=2 yoffset=13 xadvance=15 page=0 chnl=0 +char id=162 x=210 y=56 width=14 height=23 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=92 x=224 y=56 width=12 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=47 x=236 y=56 width=12 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=121 x=0 y=82 width=15 height=23 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=113 x=15 y=82 width=14 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=112 x=29 y=82 width=15 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=108 x=44 y=82 width=4 height=23 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=107 x=48 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=104 x=62 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=103 x=76 y=82 width=14 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=102 x=90 y=82 width=11 height=23 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=100 x=101 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=98 x=115 y=82 width=15 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=252 x=130 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=250 x=144 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=249 x=158 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=246 x=172 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=245 x=187 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=243 x=202 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=242 x=217 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=241 x=232 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=239 x=0 y=105 width=12 height=22 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=237 x=12 y=105 width=8 height=22 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=236 x=20 y=105 width=7 height=22 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=235 x=27 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=233 x=41 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=232 x=55 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=228 x=69 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=227 x=83 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=225 x=97 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=224 x=111 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=223 x=125 y=105 width=15 height=22 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=216 x=140 y=105 width=17 height=22 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=191 x=157 y=105 width=13 height=22 xoffset=1 yoffset=13 xadvance=13 page=0 chnl=0 +char id=161 x=170 y=105 width=5 height=22 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=240 x=175 y=105 width=16 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=222 x=191 y=105 width=14 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=208 x=205 y=105 width=19 height=21 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 +char id=198 x=224 y=105 width=27 height=21 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=0 +char id=190 x=0 y=127 width=23 height=21 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=182 x=23 y=127 width=13 height=21 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 +char id=174 x=36 y=127 width=20 height=21 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=169 x=56 y=127 width=20 height=21 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=165 x=76 y=127 width=17 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=163 x=93 y=127 width=16 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=35 x=109 y=127 width=17 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=63 x=126 y=127 width=13 height=21 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 +char id=33 x=139 y=127 width=4 height=21 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=48 x=143 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=57 x=157 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=56 x=171 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=55 x=185 y=127 width=15 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=54 x=200 y=127 width=15 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=53 x=215 y=127 width=13 height=21 xoffset=2 yoffset=9 xadvance=15 page=0 chnl=0 +char id=52 x=228 y=127 width=16 height=21 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 +char id=51 x=0 y=148 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=90 x=14 y=148 width=15 height=21 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=89 x=29 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=88 x=47 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=87 x=65 y=148 width=24 height=21 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 +char id=86 x=89 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=85 x=107 y=148 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=84 x=124 y=148 width=17 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=83 x=141 y=148 width=16 height=21 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=82 x=157 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=80 x=173 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=79 x=189 y=148 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=78 x=206 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=77 x=222 y=148 width=21 height=21 xoffset=2 yoffset=9 xadvance=24 page=0 chnl=0 +char id=76 x=0 y=169 width=14 height=21 xoffset=2 yoffset=9 xadvance=15 page=0 chnl=0 +char id=75 x=14 y=169 width=17 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=74 x=31 y=169 width=14 height=21 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 +char id=73 x=45 y=169 width=5 height=21 xoffset=2 yoffset=9 xadvance=8 page=0 chnl=0 +char id=72 x=50 y=169 width=16 height=21 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=71 x=66 y=169 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=70 x=83 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=69 x=98 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=68 x=113 y=169 width=16 height=21 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=67 x=129 y=169 width=16 height=21 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=66 x=145 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=65 x=160 y=169 width=19 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=248 x=179 y=169 width=15 height=20 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0 +char id=189 x=194 y=169 width=20 height=20 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=188 x=214 y=169 width=19 height=20 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=38 x=233 y=169 width=18 height=20 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 +char id=37 x=0 y=190 width=19 height=20 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=59 x=19 y=190 width=6 height=20 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=50 x=25 y=190 width=15 height=20 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=49 x=40 y=190 width=8 height=20 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=116 x=48 y=190 width=10 height=20 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=164 x=58 y=190 width=18 height=19 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 +char id=177 x=76 y=190 width=14 height=18 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=230 x=90 y=190 width=23 height=17 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 +char id=58 x=113 y=190 width=4 height=17 xoffset=2 yoffset=13 xadvance=7 page=0 chnl=0 +char id=122 x=117 y=190 width=13 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=120 x=130 y=190 width=14 height=17 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=119 x=144 y=190 width=21 height=17 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 +char id=118 x=165 y=190 width=15 height=17 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=117 x=180 y=190 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=115 x=194 y=190 width=13 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=114 x=207 y=190 width=9 height=17 xoffset=1 yoffset=13 xadvance=9 page=0 chnl=0 +char id=110 x=216 y=190 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=109 x=230 y=190 width=22 height=17 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=101 x=0 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=99 x=14 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=97 x=28 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=247 x=42 y=210 width=16 height=16 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 +char id=43 x=58 y=210 width=15 height=16 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=111 x=73 y=210 width=15 height=16 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0 +char id=42 x=88 y=210 width=13 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=215 x=101 y=210 width=13 height=13 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=187 x=114 y=210 width=13 height=13 xoffset=1 yoffset=15 xadvance=13 page=0 chnl=0 +char id=179 x=127 y=210 width=10 height=13 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=178 x=137 y=210 width=10 height=13 xoffset=1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=171 x=147 y=210 width=12 height=13 xoffset=1 yoffset=15 xadvance=13 page=0 chnl=0 +char id=62 x=159 y=210 width=14 height=13 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=60 x=173 y=210 width=13 height=13 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=186 x=186 y=210 width=11 height=12 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=185 x=197 y=210 width=6 height=12 xoffset=1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=170 x=203 y=210 width=11 height=12 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=94 x=214 y=210 width=12 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=61 x=226 y=210 width=13 height=9 xoffset=2 yoffset=15 xadvance=15 page=0 chnl=0 +char id=39 x=239 y=210 width=4 height=9 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=34 x=243 y=210 width=8 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=184 x=0 y=227 width=6 height=8 xoffset=1 yoffset=28 xadvance=7 page=0 chnl=0 +char id=176 x=6 y=227 width=9 height=8 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=172 x=15 y=227 width=13 height=8 xoffset=1 yoffset=17 xadvance=15 page=0 chnl=0 +char id=44 x=28 y=227 width=6 height=8 xoffset=0 yoffset=25 xadvance=5 page=0 chnl=0 +char id=180 x=34 y=227 width=8 height=6 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=126 x=42 y=227 width=17 height=6 xoffset=1 yoffset=18 xadvance=18 page=0 chnl=0 +char id=96 x=59 y=227 width=7 height=6 xoffset=1 yoffset=8 xadvance=8 page=0 chnl=0 +char id=183 x=66 y=227 width=4 height=5 xoffset=2 yoffset=17 xadvance=7 page=0 chnl=0 +char id=168 x=70 y=227 width=11 height=5 xoffset=2 yoffset=8 xadvance=13 page=0 chnl=0 +char id=46 x=81 y=227 width=4 height=5 xoffset=2 yoffset=25 xadvance=7 page=0 chnl=0 +char id=175 x=85 y=227 width=12 height=4 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=173 x=97 y=227 width=8 height=4 xoffset=0 yoffset=19 xadvance=7 page=0 chnl=0 +char id=95 x=105 y=227 width=14 height=4 xoffset=0 yoffset=28 xadvance=12 page=0 chnl=0 +char id=45 x=119 y=227 width=8 height=4 xoffset=0 yoffset=19 xadvance=7 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-hdpi.png new file mode 100644 index 0000000..fb68fe2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-ldpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-ldpi.fnt new file mode 100644 index 0000000..0f863af --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-ldpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=14 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=19 base=15 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-ldpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=15 xadvance=3 page=0 chnl=0 +char id=254 x=0 y=0 width=8 height=16 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=253 x=8 y=0 width=8 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=106 x=16 y=0 width=5 height=16 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=255 x=21 y=0 width=8 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=221 x=29 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=219 x=39 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=218 x=48 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=217 x=57 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=213 x=66 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=212 x=76 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=211 x=86 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=210 x=96 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=209 x=106 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=206 x=115 y=0 width=6 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=205 x=121 y=0 width=5 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=204 x=126 y=0 width=5 height=15 xoffset=-1 yoffset=1 xadvance=4 page=0 chnl=0 +char id=202 x=131 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=201 x=139 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=200 x=147 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=199 x=155 y=0 width=10 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=197 x=165 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=195 x=175 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=194 x=185 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=193 x=195 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=192 x=205 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=167 x=215 y=0 width=9 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=36 x=224 y=0 width=9 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=64 x=233 y=0 width=13 height=15 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=93 x=246 y=0 width=4 height=15 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=91 x=250 y=0 width=5 height=15 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=41 x=0 y=16 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=40 x=5 y=16 width=6 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=220 x=11 y=16 width=9 height=14 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=214 x=20 y=16 width=10 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=207 x=30 y=16 width=6 height=14 xoffset=-1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=203 x=36 y=16 width=8 height=14 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=196 x=44 y=16 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=166 x=54 y=16 width=4 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=124 x=58 y=16 width=3 height=14 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=125 x=61 y=16 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=123 x=67 y=16 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=251 x=73 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=250 x=81 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=249 x=89 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=245 x=97 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=244 x=106 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=243 x=115 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=242 x=124 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=241 x=133 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=238 x=141 y=16 width=6 height=13 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=237 x=147 y=16 width=5 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=236 x=152 y=16 width=5 height=13 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=234 x=157 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=233 x=165 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=232 x=173 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=229 x=181 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=227 x=189 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=226 x=197 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=225 x=205 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=224 x=213 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=223 x=221 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=216 x=230 y=16 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=191 x=240 y=16 width=8 height=13 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=181 x=248 y=16 width=7 height=13 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=162 x=0 y=31 width=8 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=161 x=8 y=31 width=4 height=13 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 +char id=92 x=12 y=31 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=47 x=19 y=31 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=121 x=26 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=113 x=34 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=112 x=42 y=31 width=9 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=108 x=51 y=31 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=107 x=54 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=105 x=63 y=31 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=104 x=66 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=103 x=75 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=102 x=83 y=31 width=6 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=100 x=89 y=31 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=98 x=97 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=81 x=106 y=31 width=11 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=252 x=117 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=246 x=125 y=31 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=239 x=134 y=31 width=6 height=12 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=235 x=140 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=231 x=148 y=31 width=8 height=12 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=228 x=156 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=222 x=164 y=31 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=208 x=172 y=31 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=198 x=182 y=31 width=15 height=12 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=190 x=197 y=31 width=13 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=182 x=210 y=31 width=7 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=174 x=217 y=31 width=12 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=169 x=229 y=31 width=12 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=165 x=241 y=31 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=163 x=0 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=38 x=9 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=35 x=19 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=63 x=29 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=33 x=37 y=44 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=55 x=40 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=53 x=49 y=44 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=52 x=57 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=51 x=66 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=50 x=74 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=90 x=83 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=89 x=92 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=88 x=102 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=87 x=112 y=44 width=13 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=86 x=125 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=85 x=135 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=84 x=144 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=83 x=153 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=82 x=162 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=80 x=171 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=78 x=180 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=77 x=189 y=44 width=12 height=12 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=76 x=201 y=44 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=75 x=209 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=74 x=218 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=73 x=226 y=44 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=72 x=229 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=71 x=238 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=70 x=0 y=56 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=69 x=8 y=56 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=68 x=16 y=56 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=67 x=25 y=56 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=66 x=35 y=56 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=65 x=44 y=56 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=248 x=54 y=56 width=9 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=240 x=63 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=189 x=72 y=56 width=11 height=11 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=188 x=83 y=56 width=11 height=11 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=94 y=56 width=11 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=59 x=105 y=56 width=4 height=11 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 +char id=48 x=109 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=57 x=118 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=56 x=127 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=54 x=136 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=49 x=145 y=56 width=5 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=116 x=150 y=56 width=6 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=79 x=156 y=56 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=177 x=166 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=164 x=174 y=56 width=11 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=58 x=185 y=56 width=3 height=10 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0 +char id=122 x=188 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=120 x=196 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=119 x=204 y=56 width=12 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=118 x=216 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=117 x=224 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=115 x=232 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=114 x=240 y=56 width=6 height=10 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=110 x=246 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=109 x=0 y=68 width=13 height=10 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 +char id=101 x=13 y=68 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=247 x=21 y=68 width=9 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=230 x=30 y=68 width=13 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=43 x=43 y=68 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=111 x=52 y=68 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=99 x=61 y=68 width=8 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=97 x=69 y=68 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=179 x=77 y=68 width=7 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=178 x=84 y=68 width=6 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=42 x=90 y=68 width=7 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=62 x=97 y=68 width=8 height=8 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=60 x=105 y=68 width=8 height=8 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=215 x=113 y=68 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=187 x=121 y=68 width=8 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=186 x=129 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=185 x=136 y=68 width=4 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=171 x=140 y=68 width=7 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=170 x=147 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=94 x=154 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=61 x=161 y=68 width=7 height=6 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=39 x=168 y=68 width=3 height=6 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 +char id=34 x=171 y=68 width=6 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=184 x=177 y=68 width=4 height=5 xoffset=0 yoffset=14 xadvance=3 page=0 chnl=0 +char id=176 x=181 y=68 width=6 height=5 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=172 x=187 y=68 width=8 height=5 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=44 x=195 y=68 width=4 height=5 xoffset=0 yoffset=12 xadvance=3 page=0 chnl=0 +char id=180 x=199 y=68 width=5 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=126 x=204 y=68 width=10 height=4 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 +char id=96 x=214 y=68 width=5 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=183 x=219 y=68 width=3 height=3 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=175 x=222 y=68 width=7 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=173 x=229 y=68 width=5 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 +char id=168 x=234 y=68 width=6 height=3 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=95 x=240 y=68 width=8 height=3 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 +char id=45 x=248 y=68 width=5 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 +char id=46 x=0 y=78 width=3 height=3 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-ldpi.png new file mode 100644 index 0000000..3cb0d2c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-mdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-mdpi.fnt new file mode 100644 index 0000000..40541db --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-mdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-mdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=254 x=0 y=0 width=10 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=93 x=10 y=0 width=5 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=91 x=15 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=40 x=20 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=106 x=26 y=0 width=6 height=20 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=255 x=32 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=42 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=52 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=167 x=63 y=0 width=12 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=64 x=75 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=41 x=92 y=0 width=6 height=19 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=221 x=98 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=110 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=121 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=132 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=143 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=154 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=166 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=178 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=190 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=202 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=214 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=226 y=0 width=8 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=234 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=241 y=0 width=6 height=18 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=247 y=0 width=6 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=0 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=202 x=11 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=201 x=22 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=200 x=33 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=197 x=44 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=196 x=57 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=195 x=70 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=194 x=83 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=193 x=96 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=192 x=109 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=36 x=122 y=20 width=10 height=18 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=132 y=20 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=123 x=139 y=20 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=166 x=146 y=20 width=4 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=150 y=20 width=3 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=231 x=153 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=223 x=163 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=216 x=173 y=20 width=12 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=181 x=185 y=20 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=194 y=20 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=92 x=204 y=20 width=9 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=213 y=20 width=8 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=121 x=221 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=231 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=241 y=20 width=10 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=251 y=20 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=107 x=0 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=10 y=38 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=104 x=14 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=24 y=38 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=102 x=34 y=38 width=8 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=100 x=42 y=38 width=10 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=52 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=62 y=38 width=12 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=74 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=83 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=92 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=101 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=110 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=121 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=132 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=143 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=154 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=165 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=174 y=38 width=8 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=238 x=182 y=38 width=7 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=237 x=189 y=38 width=5 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=236 x=194 y=38 width=6 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=235 x=200 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=234 x=210 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=233 x=220 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=232 x=230 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=229 x=240 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=0 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=10 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=20 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=30 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=40 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=50 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=60 y=54 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=73 y=54 width=19 height=15 xoffset=-1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=191 x=92 y=54 width=9 height=15 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=182 x=101 y=54 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=165 x=110 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=122 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=161 x=133 y=54 width=4 height=15 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=38 x=137 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=149 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=161 y=54 width=14 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 +char id=63 x=175 y=54 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=33 x=184 y=54 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=48 x=188 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=198 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=209 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=219 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=229 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=51 x=240 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=0 y=69 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=90 x=11 y=69 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=22 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=34 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=46 y=69 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=63 y=69 width=13 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=76 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=87 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=99 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=111 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=79 x=122 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=78 x=134 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=146 y=69 width=15 height=15 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=76 x=161 y=69 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=75 x=171 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=74 x=183 y=69 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=193 y=69 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=197 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=209 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=220 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=231 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=68 x=242 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=0 y=84 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=66 x=11 y=84 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=65 x=22 y=84 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=240 x=35 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=190 x=46 y=84 width=17 height=14 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 +char id=189 x=63 y=84 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=188 x=77 y=84 width=14 height=14 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=174 x=91 y=84 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=169 x=106 y=84 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=164 x=121 y=84 width=14 height=14 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=59 x=135 y=84 width=5 height=14 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=57 x=140 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=151 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=49 x=162 y=84 width=6 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=168 y=84 width=7 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=83 x=175 y=84 width=12 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=248 x=187 y=84 width=11 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=177 x=198 y=84 width=10 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=247 x=208 y=84 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=230 x=219 y=84 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=58 x=235 y=84 width=4 height=12 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0 +char id=122 x=239 y=84 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=0 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=10 y=99 width=15 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=25 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=35 y=99 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=44 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=54 y=99 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=60 y=99 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=71 y=99 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=80 y=99 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=99 x=95 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=97 x=105 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=42 x=115 y=99 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=43 x=124 y=99 width=11 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=101 x=135 y=99 width=10 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=62 x=145 y=99 width=9 height=10 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=154 y=99 width=9 height=10 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=215 x=163 y=99 width=10 height=9 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=187 x=173 y=99 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=186 x=182 y=99 width=8 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=171 x=190 y=99 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=170 x=199 y=99 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=94 x=206 y=99 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=185 x=214 y=99 width=5 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=179 x=219 y=99 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=178 x=227 y=99 width=7 height=8 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=176 x=234 y=99 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=39 x=240 y=99 width=4 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=244 y=99 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=184 x=251 y=99 width=4 height=6 xoffset=1 yoffset=18 xadvance=4 page=0 chnl=0 +char id=172 x=0 y=111 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=9 y=111 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=18 y=111 width=4 height=6 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=126 x=22 y=111 width=12 height=5 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=183 x=34 y=111 width=4 height=4 xoffset=1 yoffset=11 xadvance=5 page=0 chnl=0 +char id=180 x=38 y=111 width=5 height=4 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=168 x=43 y=111 width=8 height=4 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=46 x=51 y=111 width=4 height=4 xoffset=1 yoffset=16 xadvance=5 page=0 chnl=0 +char id=96 x=55 y=111 width=6 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=175 x=61 y=111 width=8 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=173 x=69 y=111 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=95 x=75 y=111 width=10 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 +char id=45 x=85 y=111 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-mdpi.png new file mode 100644 index 0000000..7cdbd1b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-xhdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-xhdpi.fnt new file mode 100644 index 0000000..80c3c68 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-xhdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=36 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=48 base=38 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-xhdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=38 xadvance=9 page=0 chnl=0 +char id=41 x=0 y=0 width=11 height=39 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 +char id=40 x=11 y=0 width=11 height=38 xoffset=2 yoffset=9 xadvance=12 page=0 chnl=0 +char id=167 x=22 y=0 width=21 height=37 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=106 x=43 y=0 width=11 height=37 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=254 x=54 y=0 width=18 height=36 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=253 x=72 y=0 width=19 height=36 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 +char id=93 x=91 y=0 width=8 height=36 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=91 x=99 y=0 width=9 height=36 xoffset=2 yoffset=8 xadvance=10 page=0 chnl=0 +char id=255 x=108 y=0 width=19 height=35 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 +char id=221 x=127 y=0 width=23 height=35 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 +char id=219 x=150 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=218 x=171 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=217 x=192 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=213 x=213 y=0 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=212 x=0 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=211 x=23 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=210 x=46 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=209 x=69 y=39 width=21 height=35 xoffset=3 yoffset=4 xadvance=26 page=0 chnl=0 +char id=206 x=90 y=39 width=12 height=35 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=205 x=102 y=39 width=9 height=35 xoffset=3 yoffset=4 xadvance=10 page=0 chnl=0 +char id=204 x=111 y=39 width=9 height=35 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=202 x=120 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=201 x=139 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=200 x=158 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=199 x=177 y=39 width=21 height=35 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=197 x=198 y=39 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=195 x=222 y=39 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=194 x=0 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=193 x=24 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=192 x=48 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=36 x=72 y=74 width=18 height=35 xoffset=2 yoffset=8 xadvance=20 page=0 chnl=0 +char id=64 x=90 y=74 width=31 height=35 xoffset=1 yoffset=12 xadvance=32 page=0 chnl=0 +char id=125 x=121 y=74 width=13 height=35 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=123 x=134 y=74 width=12 height=35 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0 +char id=220 x=146 y=74 width=21 height=34 xoffset=2 yoffset=5 xadvance=24 page=0 chnl=0 +char id=214 x=167 y=74 width=23 height=34 xoffset=1 yoffset=5 xadvance=25 page=0 chnl=0 +char id=207 x=190 y=74 width=17 height=34 xoffset=-2 yoffset=5 xadvance=10 page=0 chnl=0 +char id=203 x=207 y=74 width=19 height=34 xoffset=3 yoffset=5 xadvance=21 page=0 chnl=0 +char id=196 x=226 y=74 width=24 height=34 xoffset=0 yoffset=5 xadvance=23 page=0 chnl=0 +char id=166 x=0 y=109 width=6 height=33 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=0 +char id=124 x=6 y=109 width=4 height=33 xoffset=3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=81 x=10 y=109 width=24 height=32 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=216 x=34 y=109 width=23 height=30 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=92 x=57 y=109 width=16 height=30 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 +char id=47 x=73 y=109 width=15 height=30 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 +char id=105 x=88 y=109 width=6 height=30 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=251 x=94 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=250 x=111 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=249 x=128 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=245 x=145 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=244 x=164 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=243 x=183 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=242 x=202 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=241 x=221 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=238 x=238 y=109 width=13 height=29 xoffset=-1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=237 x=0 y=142 width=11 height=29 xoffset=2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=236 x=11 y=142 width=11 height=29 xoffset=-2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=234 x=22 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=233 x=40 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=232 x=58 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=229 x=76 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=227 x=94 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=226 x=112 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=225 x=130 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=224 x=148 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=223 x=166 y=142 width=19 height=29 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=162 x=185 y=142 width=18 height=29 xoffset=1 yoffset=15 xadvance=20 page=0 chnl=0 +char id=108 x=203 y=142 width=6 height=29 xoffset=2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=107 x=209 y=142 width=18 height=29 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=104 x=227 y=142 width=18 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=102 x=0 y=171 width=14 height=29 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=100 x=14 y=171 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=98 x=32 y=171 width=18 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=252 x=50 y=171 width=17 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=246 x=67 y=171 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=240 x=86 y=171 width=19 height=28 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0 +char id=239 x=105 y=171 width=18 height=28 xoffset=-3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=235 x=123 y=171 width=18 height=28 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=231 x=141 y=171 width=18 height=28 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=228 x=159 y=171 width=18 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=222 x=177 y=171 width=19 height=28 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=0 +char id=208 x=196 y=171 width=24 height=28 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 +char id=198 x=0 y=200 width=36 height=28 xoffset=-1 yoffset=11 xadvance=34 page=0 chnl=0 +char id=191 x=36 y=200 width=16 height=28 xoffset=2 yoffset=18 xadvance=18 page=0 chnl=0 +char id=190 x=52 y=200 width=31 height=28 xoffset=1 yoffset=11 xadvance=31 page=0 chnl=0 +char id=182 x=83 y=200 width=15 height=28 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=181 x=98 y=200 width=17 height=28 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=174 x=115 y=200 width=27 height=28 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=169 x=142 y=200 width=27 height=28 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=165 x=169 y=200 width=22 height=28 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 +char id=163 x=191 y=200 width=20 height=28 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0 +char id=161 x=211 y=200 width=6 height=28 xoffset=2 yoffset=18 xadvance=9 page=0 chnl=0 +char id=38 x=217 y=200 width=22 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=35 x=0 y=228 width=21 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=37 x=21 y=228 width=25 height=28 xoffset=1 yoffset=11 xadvance=26 page=0 chnl=0 +char id=63 x=46 y=228 width=16 height=28 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=33 x=62 y=228 width=5 height=28 xoffset=3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=48 x=67 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=57 x=86 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=56 x=105 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=55 x=124 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=54 x=143 y=228 width=18 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=53 x=161 y=228 width=18 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=52 x=179 y=228 width=21 height=28 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 +char id=51 x=200 y=228 width=18 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=50 x=218 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=121 x=0 y=256 width=19 height=28 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=113 x=19 y=256 width=18 height=28 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=112 x=37 y=256 width=18 height=28 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=103 x=55 y=256 width=18 height=28 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=90 x=73 y=256 width=20 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=89 x=93 y=256 width=23 height=28 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 +char id=88 x=116 y=256 width=22 height=28 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=87 x=138 y=256 width=32 height=28 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 +char id=86 x=170 y=256 width=24 height=28 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 +char id=85 x=194 y=256 width=21 height=28 xoffset=2 yoffset=11 xadvance=24 page=0 chnl=0 +char id=84 x=215 y=256 width=22 height=28 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 +char id=83 x=0 y=284 width=21 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=82 x=21 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=24 page=0 chnl=0 +char id=80 x=42 y=284 width=20 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=79 x=62 y=284 width=23 height=28 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=78 x=85 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=0 +char id=77 x=106 y=284 width=27 height=28 xoffset=3 yoffset=11 xadvance=32 page=0 chnl=0 +char id=76 x=133 y=284 width=17 height=28 xoffset=3 yoffset=11 xadvance=19 page=0 chnl=0 +char id=75 x=150 y=284 width=22 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=74 x=172 y=284 width=17 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=73 x=189 y=284 width=5 height=28 xoffset=3 yoffset=11 xadvance=10 page=0 chnl=0 +char id=72 x=194 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=0 +char id=71 x=215 y=284 width=21 height=28 xoffset=2 yoffset=11 xadvance=25 page=0 chnl=0 +char id=70 x=236 y=284 width=19 height=28 xoffset=3 yoffset=11 xadvance=21 page=0 chnl=0 +char id=69 x=0 y=312 width=19 height=28 xoffset=3 yoffset=11 xadvance=21 page=0 chnl=0 +char id=68 x=19 y=312 width=21 height=28 xoffset=3 yoffset=11 xadvance=24 page=0 chnl=0 +char id=67 x=40 y=312 width=21 height=28 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=66 x=61 y=312 width=20 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=65 x=81 y=312 width=24 height=28 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 +char id=189 x=105 y=312 width=25 height=27 xoffset=3 yoffset=12 xadvance=30 page=0 chnl=0 +char id=188 x=130 y=312 width=25 height=27 xoffset=3 yoffset=12 xadvance=28 page=0 chnl=0 +char id=49 x=155 y=312 width=10 height=27 xoffset=3 yoffset=12 xadvance=20 page=0 chnl=0 +char id=59 x=165 y=312 width=7 height=25 xoffset=1 yoffset=18 xadvance=9 page=0 chnl=0 +char id=116 x=172 y=312 width=12 height=25 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 +char id=248 x=184 y=312 width=19 height=24 xoffset=1 yoffset=17 xadvance=20 page=0 chnl=0 +char id=177 x=203 y=312 width=18 height=24 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 +char id=164 x=221 y=312 width=25 height=24 xoffset=1 yoffset=15 xadvance=26 page=0 chnl=0 +char id=230 x=0 y=340 width=30 height=21 xoffset=1 yoffset=18 xadvance=30 page=0 chnl=0 +char id=43 x=30 y=340 width=19 height=21 xoffset=1 yoffset=16 xadvance=20 page=0 chnl=0 +char id=58 x=49 y=340 width=6 height=21 xoffset=2 yoffset=18 xadvance=9 page=0 chnl=0 +char id=122 x=55 y=340 width=17 height=21 xoffset=1 yoffset=18 xadvance=18 page=0 chnl=0 +char id=120 x=72 y=340 width=19 height=21 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=119 x=91 y=340 width=28 height=21 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 +char id=118 x=119 y=340 width=19 height=21 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=117 x=138 y=340 width=17 height=21 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=115 x=155 y=340 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=114 x=173 y=340 width=11 height=21 xoffset=2 yoffset=18 xadvance=12 page=0 chnl=0 +char id=111 x=184 y=340 width=19 height=21 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=110 x=203 y=340 width=17 height=21 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=109 x=220 y=340 width=28 height=21 xoffset=2 yoffset=18 xadvance=31 page=0 chnl=0 +char id=101 x=0 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=99 x=18 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=97 x=36 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=247 x=54 y=361 width=19 height=19 xoffset=1 yoffset=16 xadvance=21 page=0 chnl=0 +char id=42 x=73 y=361 width=16 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 +char id=62 x=89 y=361 width=17 height=18 xoffset=2 yoffset=20 xadvance=19 page=0 chnl=0 +char id=60 x=106 y=361 width=16 height=18 xoffset=1 yoffset=20 xadvance=18 page=0 chnl=0 +char id=215 x=122 y=361 width=18 height=17 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=187 x=140 y=361 width=16 height=16 xoffset=1 yoffset=20 xadvance=17 page=0 chnl=0 +char id=186 x=156 y=361 width=14 height=16 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=0 +char id=179 x=170 y=361 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=178 x=184 y=361 width=12 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=171 x=196 y=361 width=16 height=16 xoffset=1 yoffset=21 xadvance=17 page=0 chnl=0 +char id=170 x=212 y=361 width=13 height=16 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=0 +char id=185 x=225 y=361 width=7 height=15 xoffset=1 yoffset=12 xadvance=10 page=0 chnl=0 +char id=94 x=232 y=361 width=14 height=15 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=61 x=0 y=382 width=17 height=12 xoffset=2 yoffset=20 xadvance=20 page=0 chnl=0 +char id=34 x=17 y=382 width=11 height=12 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0 +char id=176 x=28 y=382 width=11 height=11 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=0 +char id=39 x=39 y=382 width=5 height=11 xoffset=1 yoffset=10 xadvance=6 page=0 chnl=0 +char id=184 x=44 y=382 width=7 height=10 xoffset=2 yoffset=36 xadvance=9 page=0 chnl=0 +char id=172 x=51 y=382 width=16 height=10 xoffset=2 yoffset=23 xadvance=20 page=0 chnl=0 +char id=44 x=67 y=382 width=7 height=10 xoffset=0 yoffset=33 xadvance=7 page=0 chnl=0 +char id=126 x=74 y=382 width=22 height=9 xoffset=2 yoffset=23 xadvance=24 page=0 chnl=0 +char id=180 x=96 y=382 width=9 height=7 xoffset=2 yoffset=11 xadvance=12 page=0 chnl=0 +char id=96 x=105 y=382 width=9 height=7 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=183 x=114 y=382 width=6 height=6 xoffset=2 yoffset=22 xadvance=10 page=0 chnl=0 +char id=168 x=120 y=382 width=15 height=6 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=46 x=135 y=382 width=6 height=6 xoffset=2 yoffset=33 xadvance=10 page=0 chnl=0 +char id=175 x=141 y=382 width=14 height=5 xoffset=2 yoffset=11 xadvance=17 page=0 chnl=0 +char id=173 x=155 y=382 width=11 height=5 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 +char id=95 x=166 y=382 width=18 height=5 xoffset=0 yoffset=37 xadvance=16 page=0 chnl=0 +char id=45 x=184 y=382 width=11 height=5 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-xhdpi.png new file mode 100644 index 0000000..41f0c26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/Roboto-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/holo.json b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/holo.json new file mode 100644 index 0000000..b70a239 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/raw/fonts/holo.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-.fnt }, + thin-font: {file: Roboto-Thin-.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-, selection: text_selected, fontColorSelected: text-, font: default-font }, + opaque: { fontColorUnselected: text-, selection: text_selected_opaque, fontColorSelected: text-, font: default-font }, + default-thin: { fontColorUnselected: text-, selection: text_selected, fontColorSelected: text-, font: thin-font }, + opaque-thin: { fontColorUnselected: text-, selection: text_selected_opaque, fontColorSelected: text-, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text- , downFontColor: text-, overFontColor: text-, disabledFontColor: text-}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text- , downFontColor: text-, overFontColor: text-, checkedFontColor: text-, checkedOverFontColor: text-, disabledFontColor: text- }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text- , downFontColor: text-, overFontColor: text-, disabledFontColor: text-}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text- , downFontColor: text-, overFontColor: text-, checkedFontColor: text-, checkedOverFontColor: text-, disabledFontColor: text- } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text- }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text- } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text- }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text- }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text- , background: text}, + default-thin: { font: thin-font, fontColor: text- , background: text}, + default-opaque: { font: default-font, fontColor: text- , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text- , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-, focusedFontColor: text-, disabledFontColor: text-, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text- }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-, focusedFontColor: text-, disabledFontColor: text-, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text- } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text- , downFontColor: text-, overFontColor: text-, checkedFontColor: text-, checkedOverFontColor: text-, disabledFontColor: text-, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text- , downFontColor: text-, overFontColor: text-, checkedFontColor: text-, checkedOverFontColor: text-, disabledFontColor: text-, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text- , downFontColor: text-, overFontColor: text-, checkedFontColor: text-, checkedOverFontColor: text-, disabledFontColor: text-, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text- , downFontColor: text-, overFontColor: text-, checkedFontColor: text-, checkedOverFontColor: text-, disabledFontColor: text-, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-, selection: text_selected, fontColorSelected: text-, font: default-font }, + default-thin: { fontColorUnselected: text-, selection: text_selected, fontColorSelected: text-, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/Roboto-Thin-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/Roboto-Thin-hdpi.png new file mode 100644 index 0000000..baaa780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/Roboto-Thin-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/Roboto-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/Roboto-hdpi.png new file mode 100644 index 0000000..fb68fe2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/Roboto-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_off.png new file mode 100644 index 0000000..b1b52b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_on.png new file mode 100644 index 0000000..d2d4a5d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_on_focused.png new file mode 100644 index 0000000..ca94945 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_disabled.9.png new file mode 100644 index 0000000..8ebd761 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_focused.9.png new file mode 100644 index 0000000..f2d0337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_normal.9.png new file mode 100644 index 0000000..53cbb2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_pressed.9.png new file mode 100644 index 0000000..1b67b6c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_off.png new file mode 100644 index 0000000..9322571 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_on.png new file mode 100644 index 0000000..f6d2d9e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_on_focused.png new file mode 100644 index 0000000..802ce3e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..acb030f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..35d11a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..fbf00d2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..cc45fdc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..56b72ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..3e2087c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/icon-blitz.png new file mode 100644 index 0000000..30daab4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/icon-blitz_pressed.png new file mode 100644 index 0000000..aa9268b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_corner.9.png new file mode 100644 index 0000000..f711de1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_horizontal.9.png new file mode 100644 index 0000000..a6f4819 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..1c56d3a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_opaque.9.png new file mode 100644 index 0000000..a5ffad3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_vertical.9.png new file mode 100644 index 0000000..88e4a4e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..260c4c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_control_normal.png new file mode 100644 index 0000000..987a86e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_primary.9.png new file mode 100644 index 0000000..eb8b3ab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_secondary.9.png new file mode 100644 index 0000000..3a0ca29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_track.9.png new file mode 100644 index 0000000..90528b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..bf14e0c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..349a4f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..12417c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_default.9.png new file mode 100644 index 0000000..8dc8596 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_focused.9.png new file mode 100644 index 0000000..1414498 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_pressed.9.png new file mode 100644 index 0000000..c3509ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..9c3aa0f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/splitpane_vertical.9.png new file mode 100644 index 0000000..2adb6e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text.9.png new file mode 100644 index 0000000..f603c84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_focused.9.png new file mode 100644 index 0000000..1fbcf62 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_focused_opaque.9.png new file mode 100644 index 0000000..fe28584 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_opaque.9.png new file mode 100644 index 0000000..2149590 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected.9.png new file mode 100644 index 0000000..74dbb35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected.png new file mode 100644 index 0000000..46b2821 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected_opaque.9.png new file mode 100644 index 0000000..7d15764 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_cursor.9.png new file mode 100644 index 0000000..cff4044 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_default.9.png new file mode 100644 index 0000000..5841e05 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_disabled.9.png new file mode 100644 index 0000000..312a0f4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_focused.9.png new file mode 100644 index 0000000..5fb8f7e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/tree_minus.png new file mode 100644 index 0000000..298e0db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/tree_plus.png new file mode 100644 index 0000000..a7b762d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/window.9.png new file mode 100644 index 0000000..23ce977 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-hdpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/Roboto-Thin-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/Roboto-Thin-ldpi.png new file mode 100644 index 0000000..c1c4312 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/Roboto-Thin-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/Roboto-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/Roboto-ldpi.png new file mode 100644 index 0000000..3cb0d2c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/Roboto-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_off.png new file mode 100644 index 0000000..85c8113 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_on.png new file mode 100644 index 0000000..f341c75 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_on_focused.png new file mode 100644 index 0000000..3d8e0a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_disabled.9.png new file mode 100644 index 0000000..cbdd087 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_focused.9.png new file mode 100644 index 0000000..9c18c69 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_normal.9.png new file mode 100644 index 0000000..10b2b8d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_pressed.9.png new file mode 100644 index 0000000..74c1fc2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_off.png new file mode 100644 index 0000000..34fad4c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_on.png new file mode 100644 index 0000000..808ef3f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_on_focused.png new file mode 100644 index 0000000..e95d962 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..67ff6c9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..f9c4491 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..884b3fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..8cf865f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..7433767 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..a2cdcee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/icon-blitz.png new file mode 100644 index 0000000..07efe18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/icon-blitz_pressed.png new file mode 100644 index 0000000..497e47b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_corner.9.png new file mode 100644 index 0000000..652b3ba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_horizontal.9.png new file mode 100644 index 0000000..040f2c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..c2ca0ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_opaque.9.png new file mode 100644 index 0000000..a5ffad3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_vertical.9.png new file mode 100644 index 0000000..dd8341b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..57eeba6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_control_normal.png new file mode 100644 index 0000000..abe64e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_primary.9.png new file mode 100644 index 0000000..308a0c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_secondary.9.png new file mode 100644 index 0000000..2e28032 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_track.9.png new file mode 100644 index 0000000..2b6e40f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..78f720a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..cbb8d89 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..6c8e49c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_default.9.png new file mode 100644 index 0000000..c48a169 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_focused.9.png new file mode 100644 index 0000000..393a381 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_pressed.9.png new file mode 100644 index 0000000..5ea7003 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..5ad1098 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/splitpane_vertical.9.png new file mode 100644 index 0000000..9c6ad56 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text.9.png new file mode 100644 index 0000000..7dbd186 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_focused.9.png new file mode 100644 index 0000000..6d66aa0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_focused_opaque.9.png new file mode 100644 index 0000000..a1bee90 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_opaque.9.png new file mode 100644 index 0000000..c0ec1ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected.9.png new file mode 100644 index 0000000..c32902c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected.png new file mode 100644 index 0000000..18d7c75 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected_opaque.9.png new file mode 100644 index 0000000..8e05b37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_cursor.9.png new file mode 100644 index 0000000..cff4044 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_default.9.png new file mode 100644 index 0000000..243032b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_disabled.9.png new file mode 100644 index 0000000..8710c26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_focused.9.png new file mode 100644 index 0000000..e88cd21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/tree_minus.png new file mode 100644 index 0000000..84d2ce2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/tree_plus.png new file mode 100644 index 0000000..0c47dea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/window.9.png new file mode 100644 index 0000000..0c2744e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-ldpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/Roboto-Thin-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/Roboto-Thin-mdpi.png new file mode 100644 index 0000000..2e9f5fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/Roboto-Thin-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/Roboto-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/Roboto-mdpi.png new file mode 100644 index 0000000..7cdbd1b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/Roboto-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_off.png new file mode 100644 index 0000000..f5eaf80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_on.png new file mode 100644 index 0000000..15cd225 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_on_focused.png new file mode 100644 index 0000000..8f49f09 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_disabled.9.png new file mode 100644 index 0000000..4a6351a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_focused.9.png new file mode 100644 index 0000000..9cd47ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_normal.9.png new file mode 100644 index 0000000..9415bcb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_pressed.9.png new file mode 100644 index 0000000..293448e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_off.png new file mode 100644 index 0000000..590c37c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_on.png new file mode 100644 index 0000000..1937941 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_on_focused.png new file mode 100644 index 0000000..e6b7d4d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..5ac6cee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..c60922a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..8124736 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..2a221c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..5f7f71b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..a0ed7fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/icon-blitz.png new file mode 100644 index 0000000..4a5025c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/icon-blitz_pressed.png new file mode 100644 index 0000000..fbd8084 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_corner.9.png new file mode 100644 index 0000000..cfa3c90 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_horizontal.9.png new file mode 100644 index 0000000..9bd24ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..627c288 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_opaque.9.png new file mode 100644 index 0000000..a5ffad3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_vertical.9.png new file mode 100644 index 0000000..8de6951 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..09bbc20 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_control_normal.png new file mode 100644 index 0000000..03ce379 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_primary.9.png new file mode 100644 index 0000000..aa2e382 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_secondary.9.png new file mode 100644 index 0000000..9a2f058 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_track.9.png new file mode 100644 index 0000000..359ae4a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..07c4d8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..0b5704e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..e6c9314 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_default.9.png new file mode 100644 index 0000000..56a6630 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_focused.9.png new file mode 100644 index 0000000..8098fff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_pressed.9.png new file mode 100644 index 0000000..bf3d118 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..fa15a96 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/splitpane_vertical.9.png new file mode 100644 index 0000000..59fea9c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text.9.png new file mode 100644 index 0000000..4bfeaae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_focused.9.png new file mode 100644 index 0000000..e7e9339 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_focused_opaque.9.png new file mode 100644 index 0000000..dbf4662 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_opaque.9.png new file mode 100644 index 0000000..c9dac70 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected.9.png new file mode 100644 index 0000000..b30b8f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected.png new file mode 100644 index 0000000..c4db95c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected_opaque.9.png new file mode 100644 index 0000000..f240719 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_cursor.9.png new file mode 100644 index 0000000..cff4044 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_default.9.png new file mode 100644 index 0000000..0f1ba7d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_disabled.9.png new file mode 100644 index 0000000..09b5616 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_focused.9.png new file mode 100644 index 0000000..45cd104 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/tree_minus.png new file mode 100644 index 0000000..5554dd0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/tree_plus.png new file mode 100644 index 0000000..d160abc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/window.9.png new file mode 100644 index 0000000..b30142e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-mdpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/Roboto-Thin-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/Roboto-Thin-xhdpi.png new file mode 100644 index 0000000..204de37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/Roboto-Thin-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/Roboto-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/Roboto-xhdpi.png new file mode 100644 index 0000000..41f0c26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/Roboto-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_off.png new file mode 100644 index 0000000..a1c2005 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_on.png new file mode 100644 index 0000000..9a69d7e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_on_focused.png new file mode 100644 index 0000000..8c2f441 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_check_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_disabled.9.png new file mode 100644 index 0000000..ffee5e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_focused.9.png new file mode 100644 index 0000000..8ea35a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_normal.9.png new file mode 100644 index 0000000..afcf517 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_pressed.9.png new file mode 100644 index 0000000..915d7f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_default_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_off.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_off.png new file mode 100644 index 0000000..2360f30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_on.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_on.png new file mode 100644 index 0000000..763fe4c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_on_focused.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_on_focused.png new file mode 100644 index 0000000..75223ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_radio_on_focused.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_disabled.9.png new file mode 100644 index 0000000..7f53d8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_focused.9.png new file mode 100644 index 0000000..86455a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_normal.9.png new file mode 100644 index 0000000..0f8e84c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_off_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_focused.9.png new file mode 100644 index 0000000..9bc75f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_normal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_normal.9.png new file mode 100644 index 0000000..eac502a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_normal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_pressed.9.png new file mode 100644 index 0000000..01db526 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/btn_toggle_on_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/icon-blitz.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/icon-blitz.png new file mode 100644 index 0000000..9c87aad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/icon-blitz.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/icon-blitz_pressed.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/icon-blitz_pressed.png new file mode 100644 index 0000000..7f648a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/icon-blitz_pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll.9.png new file mode 100644 index 0000000..f70f826 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_corner.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_corner.9.png new file mode 100644 index 0000000..211ae0f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_corner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_horizontal.9.png new file mode 100644 index 0000000..98a94fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_horizontal_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_horizontal_knob.9.png new file mode 100644 index 0000000..507c446 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_horizontal_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_opaque.9.png new file mode 100644 index 0000000..a5ffad3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_vertical.9.png new file mode 100644 index 0000000..f040cdc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_vertical_knob.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_vertical_knob.9.png new file mode 100644 index 0000000..05d3bcc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scroll_vertical_knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_control_normal.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_control_normal.png new file mode 100644 index 0000000..f3bc5cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_control_normal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_primary.9.png new file mode 100644 index 0000000..0fc5305 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_secondary.9.png new file mode 100644 index 0000000..1c356da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_track.9.png new file mode 100644 index 0000000..a7d396d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_primary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_primary.9.png new file mode 100644 index 0000000..cdf0547 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_primary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_secondary.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_secondary.9.png new file mode 100644 index 0000000..068bd90 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_secondary.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_track.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_track.9.png new file mode 100644 index 0000000..4e2e337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/scrubber_vertical_track.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_default.9.png new file mode 100644 index 0000000..17836f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_focused.9.png new file mode 100644 index 0000000..e1a11e1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_pressed.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_pressed.9.png new file mode 100644 index 0000000..d79608a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/spinner_pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/splitpane_horizontal.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/splitpane_horizontal.9.png new file mode 100644 index 0000000..860a77c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/splitpane_horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/splitpane_vertical.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/splitpane_vertical.9.png new file mode 100644 index 0000000..d003561 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/splitpane_vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text.9.png new file mode 100644 index 0000000..b0673a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_focused.9.png new file mode 100644 index 0000000..9c4ae6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_focused_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_focused_opaque.9.png new file mode 100644 index 0000000..99406ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_focused_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_opaque.9.png new file mode 100644 index 0000000..938302e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected.9.png new file mode 100644 index 0000000..f9873c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected.png new file mode 100644 index 0000000..f9873c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected_opaque.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected_opaque.9.png new file mode 100644 index 0000000..30cb069 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/text_selected_opaque.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_cursor.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_cursor.9.png new file mode 100644 index 0000000..cff4044 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_default.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_default.9.png new file mode 100644 index 0000000..6425546 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_default.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_disabled.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_disabled.9.png new file mode 100644 index 0000000..dfb2185 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_focused.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_focused.9.png new file mode 100644 index 0000000..dda8d82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_focused.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_selection.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_selection.png new file mode 100644 index 0000000..0554aea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/textfield_selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/tree_minus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/tree_minus.png new file mode 100644 index 0000000..b4be1d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/tree_minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/tree_plus.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/tree_plus.png new file mode 100644 index 0000000..989068c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/tree_plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/white_pixel.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/white_pixel.png new file mode 100644 index 0000000..6e438b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/white_pixel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/window.9.png b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/window.9.png new file mode 100644 index 0000000..45c23ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/raw/light-xhdpi/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.atlas new file mode 100644 index 0000000..42d5b8a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.atlas @@ -0,0 +1,456 @@ + +Holo-dark-hdpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-hdpi + rotate: false + xy: 2, 510 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +Roboto-hdpi + rotate: false + xy: 260, 510 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 83, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 133, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 183, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 649, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 690, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 731, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 772, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 233, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 283, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 333, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 813, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 854, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 895, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 936, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 977, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 2, 272 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 322 + size: 36, 60 + orig: 36, 60 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 836 + size: 36, 60 + orig: 36, 60 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 1018, 1019 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 518, 591 + size: 43, 43 + split: 21, 21, 21, 21 + orig: 43, 43 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 465 + size: 79, 43 + split: 37, 39, 21, 21 + pad: 19, 19, 18, 18 + orig: 79, 43 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 979 + size: 79, 43 + split: 37, 39, 21, 21 + pad: 19, 19, 18, 18 + orig: 79, 43 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 556, 893 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 384 + size: 43, 79 + split: 21, 21, 38, 40 + pad: 18, 18, 19, 19 + orig: 43, 79 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 898 + size: 43, 79 + split: 21, 21, 37, 39 + pad: 18, 18, 19, 19 + orig: 43, 79 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 383, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 2, 2 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 19, 2 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 36, 2 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 563, 912 + size: 18, 15 + split: 0, 15, 0, 0 + pad: 0, 0, 0, 0 + orig: 18, 15 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 518, 548 + size: 18, 15 + split: 0, 15, 0, 0 + pad: 0, 0, 0, 0 + orig: 18, 15 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 44, 367 + size: 18, 15 + split: 0, 15, 0, 0 + pad: 0, 0, 0, 0 + orig: 18, 15 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 47, 415 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 483, 460 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 563, 929 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 518, 565 + size: 29, 24 + split: 0, 29, 5, 18 + pad: 14, 14, 4, 17 + orig: 29, 24 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 47, 384 + size: 24, 29 + split: 5, 18, 0, 29 + pad: 4, 17, 14, 14 + orig: 24, 29 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 2, 222 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 2, 172 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 2, 122 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 2, 72 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 2, 22 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 518, 786 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 549, 588 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 518, 736 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 518, 686 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 518, 636 + size: 39, 48 + split: 18, 17, 30, 14 + pad: 18, 17, 10, 11 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 73, 412 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 433, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 599, 974 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 563, 909 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 40, 324 + size: 2, 58 + split: 1, 0, 57, 0 + orig: 2, 58 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.json new file mode 100644 index 0000000..9a99c47 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-hdpi.fnt }, + thin-font: {file: Roboto-Thin-hdpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + opaque: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font }, + opaque-thin: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-dark }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-dark }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-dark , background: text}, + default-thin: { font: thin-font, fontColor: text-dark , background: text}, + default-opaque: { font: default-font, fontColor: text-dark , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-dark , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.png new file mode 100644 index 0000000..a65bffa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Holo-dark-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Roboto-Thin-hdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Roboto-Thin-hdpi.fnt new file mode 100644 index 0000000..c446a43 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Roboto-Thin-hdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=33 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=44 base=35 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-hdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=35 xadvance=8 page=0 chnl=0 +char id=125 x=0 y=0 width=11 height=35 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=123 x=11 y=0 width=11 height=35 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=41 x=22 y=0 width=9 height=35 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=40 x=31 y=0 width=9 height=35 xoffset=2 yoffset=9 xadvance=10 page=0 chnl=0 +char id=254 x=40 y=0 width=16 height=34 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=167 x=56 y=0 width=18 height=34 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=93 x=74 y=0 width=7 height=34 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=91 x=81 y=0 width=7 height=34 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=106 x=88 y=0 width=10 height=34 xoffset=-3 yoffset=9 xadvance=7 page=0 chnl=0 +char id=255 x=98 y=0 width=17 height=33 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=253 x=115 y=0 width=17 height=33 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=199 x=132 y=0 width=18 height=33 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=219 x=150 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=218 x=169 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=217 x=188 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=214 x=207 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=213 x=226 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=212 x=0 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=211 x=19 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=210 x=38 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=206 x=57 y=35 width=10 height=32 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=205 x=67 y=35 width=7 height=32 xoffset=3 yoffset=4 xadvance=9 page=0 chnl=0 +char id=204 x=74 y=35 width=7 height=32 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=202 x=81 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=201 x=97 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=200 x=113 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=197 x=129 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=194 x=150 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=193 x=171 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=192 x=192 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=36 x=213 y=35 width=16 height=32 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=64 x=0 y=67 width=28 height=32 xoffset=2 yoffset=11 xadvance=31 page=0 chnl=0 +char id=221 x=28 y=67 width=20 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=220 x=48 y=67 width=19 height=31 xoffset=2 yoffset=5 xadvance=22 page=0 chnl=0 +char id=209 x=67 y=67 width=19 height=31 xoffset=3 yoffset=5 xadvance=23 page=0 chnl=0 +char id=207 x=86 y=67 width=12 height=31 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=203 x=98 y=67 width=16 height=31 xoffset=3 yoffset=5 xadvance=19 page=0 chnl=0 +char id=196 x=114 y=67 width=21 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=195 x=135 y=67 width=21 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=166 x=156 y=67 width=3 height=30 xoffset=2 yoffset=10 xadvance=6 page=0 chnl=0 +char id=124 x=159 y=67 width=3 height=30 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=81 x=162 y=67 width=20 height=29 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=216 x=182 y=67 width=20 height=28 xoffset=2 yoffset=9 xadvance=22 page=0 chnl=0 +char id=162 x=202 y=67 width=15 height=28 xoffset=2 yoffset=12 xadvance=18 page=0 chnl=0 +char id=92 x=217 y=67 width=13 height=28 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=47 x=230 y=67 width=13 height=28 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 +char id=240 x=0 y=99 width=18 height=27 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=232 x=18 y=99 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=229 x=34 y=99 width=15 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=224 x=49 y=99 width=15 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=191 x=64 y=99 width=14 height=27 xoffset=1 yoffset=16 xadvance=15 page=0 chnl=0 +char id=181 x=78 y=99 width=15 height=27 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=121 x=93 y=99 width=17 height=27 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=113 x=110 y=99 width=16 height=27 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=112 x=126 y=99 width=16 height=27 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=108 x=142 y=99 width=3 height=27 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=107 x=145 y=99 width=15 height=27 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=105 x=160 y=99 width=3 height=27 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=104 x=163 y=99 width=15 height=27 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=103 x=178 y=99 width=16 height=27 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=100 x=194 y=99 width=16 height=27 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=98 x=210 y=99 width=16 height=27 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=252 x=226 y=99 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=251 x=0 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=250 x=15 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=249 x=30 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=246 x=45 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=245 x=62 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=244 x=79 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=243 x=96 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=242 x=113 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=241 x=130 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=239 x=145 y=126 width=14 height=26 xoffset=-2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=238 x=159 y=126 width=10 height=26 xoffset=-1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=237 x=169 y=126 width=7 height=26 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=236 x=176 y=126 width=7 height=26 xoffset=-1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=235 x=183 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=234 x=199 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=233 x=215 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=231 x=231 y=126 width=16 height=26 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=228 x=0 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=227 x=15 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=226 x=30 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=225 x=45 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=223 x=60 y=152 width=17 height=26 xoffset=2 yoffset=10 xadvance=19 page=0 chnl=0 +char id=222 x=77 y=152 width=16 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=208 x=93 y=152 width=20 height=26 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0 +char id=198 x=113 y=152 width=30 height=26 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 +char id=190 x=143 y=152 width=26 height=26 xoffset=3 yoffset=10 xadvance=27 page=0 chnl=0 +char id=189 x=169 y=152 width=23 height=26 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=188 x=192 y=152 width=23 height=26 xoffset=2 yoffset=10 xadvance=25 page=0 chnl=0 +char id=182 x=215 y=152 width=13 height=26 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=174 x=228 y=152 width=25 height=26 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 +char id=169 x=0 y=178 width=25 height=26 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 +char id=165 x=25 y=178 width=19 height=26 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=163 x=44 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=161 x=61 y=178 width=3 height=26 xoffset=2 yoffset=16 xadvance=7 page=0 chnl=0 +char id=38 x=64 y=178 width=20 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=35 x=84 y=178 width=20 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=37 x=104 y=178 width=23 height=26 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0 +char id=63 x=127 y=178 width=13 height=26 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=33 x=140 y=178 width=3 height=26 xoffset=2 yoffset=10 xadvance=6 page=0 chnl=0 +char id=57 x=143 y=178 width=16 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=56 x=159 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=55 x=176 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=54 x=193 y=178 width=16 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=53 x=209 y=178 width=15 height=26 xoffset=3 yoffset=10 xadvance=18 page=0 chnl=0 +char id=52 x=224 y=178 width=18 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=51 x=0 y=204 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=50 x=17 y=204 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=49 x=34 y=204 width=9 height=26 xoffset=3 yoffset=10 xadvance=18 page=0 chnl=0 +char id=102 x=43 y=204 width=11 height=26 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=90 x=54 y=204 width=19 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=89 x=73 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=88 x=93 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=87 x=113 y=204 width=29 height=26 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0 +char id=86 x=142 y=204 width=21 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=85 x=163 y=204 width=19 height=26 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=84 x=182 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=83 x=202 y=204 width=19 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=82 x=221 y=204 width=18 height=26 xoffset=3 yoffset=10 xadvance=22 page=0 chnl=0 +char id=80 x=0 y=230 width=17 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=79 x=17 y=230 width=19 height=26 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=78 x=36 y=230 width=19 height=26 xoffset=3 yoffset=10 xadvance=23 page=0 chnl=0 +char id=77 x=55 y=230 width=24 height=26 xoffset=3 yoffset=10 xadvance=28 page=0 chnl=0 +char id=76 x=79 y=230 width=15 height=26 xoffset=3 yoffset=10 xadvance=17 page=0 chnl=0 +char id=75 x=94 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=21 page=0 chnl=0 +char id=74 x=112 y=230 width=15 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=73 x=127 y=230 width=3 height=26 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=72 x=130 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=23 page=0 chnl=0 +char id=71 x=148 y=230 width=19 height=26 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=70 x=167 y=230 width=16 height=26 xoffset=3 yoffset=10 xadvance=19 page=0 chnl=0 +char id=69 x=183 y=230 width=16 height=26 xoffset=3 yoffset=10 xadvance=19 page=0 chnl=0 +char id=68 x=199 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=22 page=0 chnl=0 +char id=67 x=217 y=230 width=18 height=26 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=66 x=235 y=230 width=17 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=65 x=0 y=256 width=21 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=48 x=21 y=256 width=16 height=25 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=116 x=37 y=256 width=11 height=25 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 +char id=248 x=48 y=256 width=17 height=24 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=164 x=65 y=256 width=23 height=24 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=59 x=88 y=256 width=5 height=22 xoffset=1 yoffset=18 xadvance=6 page=0 chnl=0 +char id=177 x=93 y=256 width=18 height=21 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=230 x=111 y=256 width=27 height=20 xoffset=1 yoffset=16 xadvance=28 page=0 chnl=0 +char id=122 x=138 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=120 x=153 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=119 x=168 y=256 width=24 height=20 xoffset=1 yoffset=16 xadvance=25 page=0 chnl=0 +char id=118 x=192 y=256 width=17 height=20 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=117 x=209 y=256 width=15 height=20 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=115 x=224 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=114 x=239 y=256 width=10 height=20 xoffset=2 yoffset=16 xadvance=11 page=0 chnl=0 +char id=110 x=0 y=282 width=15 height=20 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=109 x=15 y=282 width=27 height=20 xoffset=2 yoffset=16 xadvance=30 page=0 chnl=0 +char id=97 x=42 y=282 width=15 height=20 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=43 x=57 y=282 width=18 height=19 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 +char id=111 x=75 y=282 width=17 height=19 xoffset=1 yoffset=17 xadvance=18 page=0 chnl=0 +char id=101 x=92 y=282 width=16 height=19 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=99 x=108 y=282 width=16 height=19 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=58 x=124 y=282 width=4 height=18 xoffset=2 yoffset=18 xadvance=6 page=0 chnl=0 +char id=247 x=128 y=282 width=18 height=16 xoffset=1 yoffset=16 xadvance=19 page=0 chnl=0 +char id=215 x=146 y=282 width=16 height=15 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=187 x=162 y=282 width=13 height=15 xoffset=1 yoffset=18 xadvance=14 page=0 chnl=0 +char id=186 x=175 y=282 width=12 height=15 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=185 x=187 y=282 width=5 height=15 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=179 x=192 y=282 width=11 height=15 xoffset=2 yoffset=10 xadvance=13 page=0 chnl=0 +char id=42 x=203 y=282 width=15 height=15 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 +char id=62 x=218 y=282 width=16 height=15 xoffset=1 yoffset=19 xadvance=17 page=0 chnl=0 +char id=60 x=234 y=282 width=15 height=15 xoffset=1 yoffset=19 xadvance=17 page=0 chnl=0 +char id=178 x=0 y=302 width=11 height=14 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=171 x=11 y=302 width=12 height=14 xoffset=2 yoffset=20 xadvance=15 page=0 chnl=0 +char id=170 x=23 y=302 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0 +char id=94 x=34 y=302 width=12 height=14 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=61 x=46 y=302 width=15 height=10 xoffset=2 yoffset=19 xadvance=18 page=0 chnl=0 +char id=184 x=61 y=302 width=7 height=9 xoffset=1 yoffset=34 xadvance=8 page=0 chnl=0 +char id=44 x=68 y=302 width=4 height=9 xoffset=1 yoffset=31 xadvance=6 page=0 chnl=0 +char id=39 x=72 y=302 width=4 height=9 xoffset=1 yoffset=9 xadvance=5 page=0 chnl=0 +char id=34 x=76 y=302 width=7 height=9 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=176 x=83 y=302 width=10 height=8 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=0 +char id=172 x=93 y=302 width=15 height=8 xoffset=1 yoffset=22 xadvance=18 page=0 chnl=0 +char id=180 x=108 y=302 width=7 height=7 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=96 x=115 y=302 width=7 height=7 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=126 x=122 y=302 width=20 height=6 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=0 +char id=183 x=142 y=302 width=4 height=4 xoffset=2 yoffset=22 xadvance=8 page=0 chnl=0 +char id=175 x=146 y=302 width=12 height=3 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0 +char id=173 x=158 y=302 width=10 height=3 xoffset=0 yoffset=23 xadvance=10 page=0 chnl=0 +char id=168 x=168 y=302 width=12 height=3 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=95 x=180 y=302 width=16 height=3 xoffset=-1 yoffset=34 xadvance=14 page=0 chnl=0 +char id=45 x=196 y=302 width=10 height=3 xoffset=0 yoffset=23 xadvance=10 page=0 chnl=0 +char id=46 x=206 y=302 width=4 height=3 xoffset=2 yoffset=33 xadvance=7 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Roboto-hdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Roboto-hdpi.fnt new file mode 100644 index 0000000..04e7d92 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-hdpi/Roboto-hdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=27 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=37 base=29 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-hdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=29 xadvance=7 page=0 chnl=0 +char id=106 x=0 y=0 width=7 height=30 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=254 x=7 y=0 width=14 height=29 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=41 x=21 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=40 x=30 y=0 width=9 height=29 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=255 x=39 y=0 width=15 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=253 x=54 y=0 width=15 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=197 x=69 y=0 width=19 height=28 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0 +char id=167 x=88 y=0 width=16 height=28 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=125 x=104 y=0 width=10 height=28 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=93 x=114 y=0 width=7 height=28 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=91 x=121 y=0 width=7 height=28 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=219 x=128 y=0 width=17 height=27 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=212 x=145 y=0 width=17 height=27 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=206 x=162 y=0 width=10 height=27 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=202 x=172 y=0 width=15 height=27 xoffset=2 yoffset=3 xadvance=16 page=0 chnl=0 +char id=199 x=187 y=0 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=194 x=203 y=0 width=19 height=27 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 +char id=64 x=222 y=0 width=23 height=27 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=123 x=245 y=0 width=10 height=27 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=221 x=0 y=30 width=18 height=26 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 +char id=220 x=18 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=218 x=35 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=217 x=52 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=214 x=69 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=213 x=86 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=211 x=103 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=210 x=120 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=209 x=137 y=30 width=16 height=26 xoffset=2 yoffset=4 xadvance=19 page=0 chnl=0 +char id=207 x=153 y=30 width=11 height=26 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=205 x=164 y=30 width=8 height=26 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=204 x=172 y=30 width=8 height=26 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=203 x=180 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=201 x=195 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=200 x=210 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=196 x=225 y=30 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=195 x=0 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=193 x=19 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=192 x=38 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=36 x=57 y=56 width=14 height=26 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=166 x=71 y=56 width=5 height=25 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=124 x=76 y=56 width=4 height=25 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=105 x=80 y=56 width=4 height=24 xoffset=2 yoffset=6 xadvance=7 page=0 chnl=0 +char id=81 x=84 y=56 width=18 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=251 x=102 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=244 x=116 y=56 width=15 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=238 x=131 y=56 width=10 height=23 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=234 x=141 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=231 x=155 y=56 width=14 height=23 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=229 x=169 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=226 x=183 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=181 x=197 y=56 width=13 height=23 xoffset=2 yoffset=13 xadvance=15 page=0 chnl=0 +char id=162 x=210 y=56 width=14 height=23 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=92 x=224 y=56 width=12 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=47 x=236 y=56 width=12 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=121 x=0 y=82 width=15 height=23 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=113 x=15 y=82 width=14 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=112 x=29 y=82 width=15 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=108 x=44 y=82 width=4 height=23 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=107 x=48 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=104 x=62 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=103 x=76 y=82 width=14 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=102 x=90 y=82 width=11 height=23 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=100 x=101 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=98 x=115 y=82 width=15 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=252 x=130 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=250 x=144 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=249 x=158 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=246 x=172 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=245 x=187 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=243 x=202 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=242 x=217 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=241 x=232 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=239 x=0 y=105 width=12 height=22 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=237 x=12 y=105 width=8 height=22 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=236 x=20 y=105 width=7 height=22 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=235 x=27 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=233 x=41 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=232 x=55 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=228 x=69 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=227 x=83 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=225 x=97 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=224 x=111 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=223 x=125 y=105 width=15 height=22 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=216 x=140 y=105 width=17 height=22 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=191 x=157 y=105 width=13 height=22 xoffset=1 yoffset=13 xadvance=13 page=0 chnl=0 +char id=161 x=170 y=105 width=5 height=22 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=240 x=175 y=105 width=16 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=222 x=191 y=105 width=14 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=208 x=205 y=105 width=19 height=21 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 +char id=198 x=224 y=105 width=27 height=21 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=0 +char id=190 x=0 y=127 width=23 height=21 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=182 x=23 y=127 width=13 height=21 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 +char id=174 x=36 y=127 width=20 height=21 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=169 x=56 y=127 width=20 height=21 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=165 x=76 y=127 width=17 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=163 x=93 y=127 width=16 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=35 x=109 y=127 width=17 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=63 x=126 y=127 width=13 height=21 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 +char id=33 x=139 y=127 width=4 height=21 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=48 x=143 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=57 x=157 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=56 x=171 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=55 x=185 y=127 width=15 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=54 x=200 y=127 width=15 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=53 x=215 y=127 width=13 height=21 xoffset=2 yoffset=9 xadvance=15 page=0 chnl=0 +char id=52 x=228 y=127 width=16 height=21 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 +char id=51 x=0 y=148 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=90 x=14 y=148 width=15 height=21 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=89 x=29 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=88 x=47 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=87 x=65 y=148 width=24 height=21 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 +char id=86 x=89 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=85 x=107 y=148 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=84 x=124 y=148 width=17 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=83 x=141 y=148 width=16 height=21 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=82 x=157 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=80 x=173 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=79 x=189 y=148 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=78 x=206 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=77 x=222 y=148 width=21 height=21 xoffset=2 yoffset=9 xadvance=24 page=0 chnl=0 +char id=76 x=0 y=169 width=14 height=21 xoffset=2 yoffset=9 xadvance=15 page=0 chnl=0 +char id=75 x=14 y=169 width=17 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=74 x=31 y=169 width=14 height=21 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 +char id=73 x=45 y=169 width=5 height=21 xoffset=2 yoffset=9 xadvance=8 page=0 chnl=0 +char id=72 x=50 y=169 width=16 height=21 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=71 x=66 y=169 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=70 x=83 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=69 x=98 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=68 x=113 y=169 width=16 height=21 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=67 x=129 y=169 width=16 height=21 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=66 x=145 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=65 x=160 y=169 width=19 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=248 x=179 y=169 width=15 height=20 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0 +char id=189 x=194 y=169 width=20 height=20 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=188 x=214 y=169 width=19 height=20 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=38 x=233 y=169 width=18 height=20 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 +char id=37 x=0 y=190 width=19 height=20 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=59 x=19 y=190 width=6 height=20 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=50 x=25 y=190 width=15 height=20 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=49 x=40 y=190 width=8 height=20 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=116 x=48 y=190 width=10 height=20 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=164 x=58 y=190 width=18 height=19 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 +char id=177 x=76 y=190 width=14 height=18 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=230 x=90 y=190 width=23 height=17 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 +char id=58 x=113 y=190 width=4 height=17 xoffset=2 yoffset=13 xadvance=7 page=0 chnl=0 +char id=122 x=117 y=190 width=13 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=120 x=130 y=190 width=14 height=17 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=119 x=144 y=190 width=21 height=17 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 +char id=118 x=165 y=190 width=15 height=17 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=117 x=180 y=190 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=115 x=194 y=190 width=13 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=114 x=207 y=190 width=9 height=17 xoffset=1 yoffset=13 xadvance=9 page=0 chnl=0 +char id=110 x=216 y=190 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=109 x=230 y=190 width=22 height=17 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=101 x=0 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=99 x=14 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=97 x=28 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=247 x=42 y=210 width=16 height=16 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 +char id=43 x=58 y=210 width=15 height=16 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=111 x=73 y=210 width=15 height=16 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0 +char id=42 x=88 y=210 width=13 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=215 x=101 y=210 width=13 height=13 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=187 x=114 y=210 width=13 height=13 xoffset=1 yoffset=15 xadvance=13 page=0 chnl=0 +char id=179 x=127 y=210 width=10 height=13 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=178 x=137 y=210 width=10 height=13 xoffset=1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=171 x=147 y=210 width=12 height=13 xoffset=1 yoffset=15 xadvance=13 page=0 chnl=0 +char id=62 x=159 y=210 width=14 height=13 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=60 x=173 y=210 width=13 height=13 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=186 x=186 y=210 width=11 height=12 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=185 x=197 y=210 width=6 height=12 xoffset=1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=170 x=203 y=210 width=11 height=12 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=94 x=214 y=210 width=12 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=61 x=226 y=210 width=13 height=9 xoffset=2 yoffset=15 xadvance=15 page=0 chnl=0 +char id=39 x=239 y=210 width=4 height=9 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=34 x=243 y=210 width=8 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=184 x=0 y=227 width=6 height=8 xoffset=1 yoffset=28 xadvance=7 page=0 chnl=0 +char id=176 x=6 y=227 width=9 height=8 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=172 x=15 y=227 width=13 height=8 xoffset=1 yoffset=17 xadvance=15 page=0 chnl=0 +char id=44 x=28 y=227 width=6 height=8 xoffset=0 yoffset=25 xadvance=5 page=0 chnl=0 +char id=180 x=34 y=227 width=8 height=6 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=126 x=42 y=227 width=17 height=6 xoffset=1 yoffset=18 xadvance=18 page=0 chnl=0 +char id=96 x=59 y=227 width=7 height=6 xoffset=1 yoffset=8 xadvance=8 page=0 chnl=0 +char id=183 x=66 y=227 width=4 height=5 xoffset=2 yoffset=17 xadvance=7 page=0 chnl=0 +char id=168 x=70 y=227 width=11 height=5 xoffset=2 yoffset=8 xadvance=13 page=0 chnl=0 +char id=46 x=81 y=227 width=4 height=5 xoffset=2 yoffset=25 xadvance=7 page=0 chnl=0 +char id=175 x=85 y=227 width=12 height=4 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=173 x=97 y=227 width=8 height=4 xoffset=0 yoffset=19 xadvance=7 page=0 chnl=0 +char id=95 x=105 y=227 width=14 height=4 xoffset=0 yoffset=28 xadvance=12 page=0 chnl=0 +char id=45 x=119 y=227 width=8 height=4 xoffset=0 yoffset=19 xadvance=7 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.atlas new file mode 100644 index 0000000..3f2533d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.atlas @@ -0,0 +1,456 @@ + +Holo-dark-ldpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-ldpi + rotate: false + xy: 2, 289 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +Roboto-ldpi + rotate: false + xy: 260, 289 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 43, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 69, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 95, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 277, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 298, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 319, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 340, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 121, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 147, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 173, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 361, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 382, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 403, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 424, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 445, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 466, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 193 + size: 18, 30 + orig: 18, 30 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 707 + size: 18, 30 + orig: 18, 30 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 43, 242 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 559, 780 + size: 21, 21 + split: 10, 10, 10, 10 + orig: 21, 21 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 266 + size: 39, 21 + split: 18, 19, 10, 10 + pad: 9, 9, 9, 9 + orig: 39, 21 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 780 + size: 39, 21 + split: 18, 19, 10, 10 + pad: 9, 9, 9, 9 + orig: 39, 21 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 508, 273 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 225 + size: 21, 39 + split: 10, 10, 18, 20 + pad: 9, 9, 9, 9 + orig: 21, 39 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 739 + size: 21, 39 + split: 10, 10, 18, 19 + pad: 9, 9, 9, 9 + orig: 21, 39 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 199, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 508, 278 + size: 7, 9 + split: 0, 0, 0, 7 + pad: 0, 0, 0, 0 + orig: 7, 9 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 582, 792 + size: 7, 9 + split: 0, 0, 0, 7 + pad: 0, 0, 0, 0 + orig: 7, 9 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 541, 743 + size: 7, 9 + split: 0, 0, 0, 7 + pad: 0, 0, 0, 0 + orig: 7, 9 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 2, 2 + size: 9, 7 + split: 0, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 7 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 518, 672 + size: 9, 7 + split: 0, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 7 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 57, 254 + size: 9, 7 + split: 0, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 7 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 25, 240 + size: 16, 24 + split: 3, 11, 3, 19 + pad: 3, 11, 5, 6 + orig: 16, 24 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 518, 681 + size: 16, 24 + split: 3, 11, 3, 19 + pad: 3, 11, 5, 6 + orig: 16, 24 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 562, 754 + size: 16, 24 + split: 3, 11, 3, 19 + pad: 3, 11, 5, 6 + orig: 16, 24 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 25, 226 + size: 14, 12 + split: 0, 14, 2, 9 + pad: 7, 6, 2, 8 + orig: 14, 12 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 43, 247 + size: 12, 14 + split: 2, 9, 0, 14 + pad: 2, 8, 7, 6 + orig: 12, 14 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 487, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 541, 754 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 2, 167 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 2, 141 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 2, 115 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 2, 89 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 582, 789 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 2, 63 + size: 19, 24 + split: 8, 8, 15, 7 + pad: 8, 8, 5, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 2, 37 + size: 19, 24 + split: 8, 8, 15, 7 + pad: 8, 8, 5, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 2, 11 + size: 19, 24 + split: 8, 8, 15, 7 + pad: 8, 8, 5, 5 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 22, 222 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 225, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 251, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 25, 223 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 538, 708 + size: 1, 29 + split: 0, 0, 28, 0 + orig: 1, 29 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.json new file mode 100644 index 0000000..a234752 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-ldpi.fnt }, + thin-font: {file: Roboto-Thin-ldpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + opaque: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font }, + opaque-thin: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-dark }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-dark }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-dark , background: text}, + default-thin: { font: thin-font, fontColor: text-dark , background: text}, + default-opaque: { font: default-font, fontColor: text-dark , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-dark , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.png new file mode 100644 index 0000000..da1e25a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Holo-dark-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Roboto-Thin-ldpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Roboto-Thin-ldpi.fnt new file mode 100644 index 0000000..cf49217 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Roboto-Thin-ldpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-ldpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=167 x=0 y=0 width=10 height=21 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=254 x=10 y=0 width=9 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=19 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=123 x=26 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=93 x=33 y=0 width=5 height=20 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=91 x=38 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=41 x=43 y=0 width=6 height=20 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=40 x=49 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=106 x=55 y=0 width=7 height=20 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=255 x=62 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=72 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=82 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=36 x=93 y=0 width=9 height=19 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=64 x=102 y=0 width=16 height=19 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=221 x=118 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=130 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=141 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=152 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=163 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=174 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=185 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=196 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=207 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=218 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=229 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=240 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=247 y=0 width=6 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=0 y=21 width=4 height=18 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=4 y=21 width=4 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=8 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=202 x=18 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=201 x=28 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=200 x=38 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=196 x=48 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=195 x=60 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=194 x=72 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=193 x=84 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=192 x=96 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=166 x=108 y=21 width=2 height=18 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=110 y=21 width=3 height=18 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=197 x=113 y=21 width=12 height=17 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=92 x=125 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=133 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=240 x=141 y=21 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=216 x=151 y=21 width=11 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=191 x=162 y=21 width=9 height=16 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 +char id=190 x=171 y=21 width=15 height=16 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=181 x=186 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=195 y=21 width=9 height=16 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=161 x=204 y=21 width=3 height=16 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=121 x=207 y=21 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=217 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=226 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=235 y=21 width=3 height=16 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=107 x=238 y=21 width=9 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=247 y=21 width=3 height=16 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=104 x=0 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=9 y=39 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=100 x=18 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=27 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=36 y=39 width=11 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=47 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=56 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=65 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=74 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=83 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=94 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=105 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=116 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=127 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=138 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=147 y=39 width=7 height=15 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=238 x=154 y=39 width=6 height=15 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=237 x=160 y=39 width=4 height=15 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=236 x=164 y=39 width=4 height=15 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=235 x=168 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=234 x=178 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=233 x=188 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=232 x=198 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=231 x=208 y=39 width=10 height=15 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=229 x=218 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=228 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=238 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=0 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=10 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=20 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=30 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=40 y=55 width=12 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=52 y=55 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=189 x=69 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=188 x=82 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=182 x=95 y=55 width=8 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=174 x=103 y=55 width=14 height=15 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=165 x=117 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=128 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=38 x=139 y=55 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=150 y=55 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=162 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=33 x=175 y=55 width=3 height=15 xoffset=1 yoffset=5 xadvance=3 page=0 chnl=0 +char id=48 x=178 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=188 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=198 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=208 y=55 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=217 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=228 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=49 x=238 y=55 width=6 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=102 x=244 y=55 width=7 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=90 x=0 y=70 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=11 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=23 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=35 y=70 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=52 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=64 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=75 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=83 x=87 y=70 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=98 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=109 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=78 x=119 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=130 y=70 width=14 height=15 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=76 x=144 y=70 width=9 height=15 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=75 x=153 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=74 x=164 y=70 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=174 y=70 width=2 height=15 xoffset=2 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=176 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=187 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=198 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=208 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=68 x=218 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=229 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=66 x=240 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=65 x=0 y=85 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=248 x=12 y=85 width=11 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=223 x=23 y=85 width=10 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=169 x=33 y=85 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=164 x=47 y=85 width=13 height=14 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=63 x=60 y=85 width=9 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=57 x=69 y=85 width=10 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=79 y=85 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=51 x=90 y=85 width=10 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=100 y=85 width=6 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=79 x=106 y=85 width=11 height=14 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=177 x=117 y=85 width=11 height=13 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=59 x=128 y=85 width=3 height=13 xoffset=1 yoffset=9 xadvance=3 page=0 chnl=0 +char id=230 x=131 y=85 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=43 x=147 y=85 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=122 x=158 y=85 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=168 y=85 width=9 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=177 y=85 width=14 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=191 y=85 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=201 y=85 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=210 y=85 width=9 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=219 y=85 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=225 y=85 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=236 y=85 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=0 y=100 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=101 x=15 y=100 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=97 x=25 y=100 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=58 x=35 y=100 width=3 height=11 xoffset=1 yoffset=9 xadvance=3 page=0 chnl=0 +char id=99 x=38 y=100 width=10 height=11 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=247 x=48 y=100 width=11 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=179 x=59 y=100 width=7 height=10 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=178 x=66 y=100 width=6 height=10 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=42 x=72 y=100 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=215 x=81 y=100 width=10 height=9 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=187 x=91 y=100 width=8 height=9 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=186 x=99 y=100 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=185 x=106 y=100 width=4 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=171 x=110 y=100 width=9 height=9 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=170 x=119 y=100 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=94 x=126 y=100 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=62 x=134 y=100 width=9 height=9 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=143 y=100 width=10 height=9 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=184 x=153 y=100 width=5 height=6 xoffset=0 yoffset=18 xadvance=4 page=0 chnl=0 +char id=176 x=158 y=100 width=6 height=6 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=172 x=164 y=100 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=173 y=100 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=182 y=100 width=3 height=6 xoffset=1 yoffset=16 xadvance=3 page=0 chnl=0 +char id=39 x=185 y=100 width=2 height=6 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=187 y=100 width=4 height=6 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=180 x=191 y=100 width=4 height=5 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=96 x=195 y=100 width=4 height=5 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=126 x=199 y=100 width=11 height=4 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=183 x=210 y=100 width=3 height=3 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0 +char id=175 x=213 y=100 width=8 height=3 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=173 x=221 y=100 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=168 x=227 y=100 width=7 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=95 x=234 y=100 width=10 height=3 xoffset=-1 yoffset=18 xadvance=7 page=0 chnl=0 +char id=45 x=244 y=100 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=46 x=250 y=100 width=3 height=3 xoffset=1 yoffset=17 xadvance=4 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Roboto-ldpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Roboto-ldpi.fnt new file mode 100644 index 0000000..0f863af --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-ldpi/Roboto-ldpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=14 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=19 base=15 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-ldpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=15 xadvance=3 page=0 chnl=0 +char id=254 x=0 y=0 width=8 height=16 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=253 x=8 y=0 width=8 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=106 x=16 y=0 width=5 height=16 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=255 x=21 y=0 width=8 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=221 x=29 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=219 x=39 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=218 x=48 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=217 x=57 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=213 x=66 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=212 x=76 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=211 x=86 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=210 x=96 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=209 x=106 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=206 x=115 y=0 width=6 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=205 x=121 y=0 width=5 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=204 x=126 y=0 width=5 height=15 xoffset=-1 yoffset=1 xadvance=4 page=0 chnl=0 +char id=202 x=131 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=201 x=139 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=200 x=147 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=199 x=155 y=0 width=10 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=197 x=165 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=195 x=175 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=194 x=185 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=193 x=195 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=192 x=205 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=167 x=215 y=0 width=9 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=36 x=224 y=0 width=9 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=64 x=233 y=0 width=13 height=15 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=93 x=246 y=0 width=4 height=15 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=91 x=250 y=0 width=5 height=15 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=41 x=0 y=16 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=40 x=5 y=16 width=6 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=220 x=11 y=16 width=9 height=14 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=214 x=20 y=16 width=10 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=207 x=30 y=16 width=6 height=14 xoffset=-1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=203 x=36 y=16 width=8 height=14 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=196 x=44 y=16 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=166 x=54 y=16 width=4 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=124 x=58 y=16 width=3 height=14 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=125 x=61 y=16 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=123 x=67 y=16 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=251 x=73 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=250 x=81 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=249 x=89 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=245 x=97 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=244 x=106 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=243 x=115 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=242 x=124 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=241 x=133 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=238 x=141 y=16 width=6 height=13 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=237 x=147 y=16 width=5 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=236 x=152 y=16 width=5 height=13 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=234 x=157 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=233 x=165 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=232 x=173 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=229 x=181 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=227 x=189 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=226 x=197 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=225 x=205 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=224 x=213 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=223 x=221 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=216 x=230 y=16 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=191 x=240 y=16 width=8 height=13 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=181 x=248 y=16 width=7 height=13 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=162 x=0 y=31 width=8 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=161 x=8 y=31 width=4 height=13 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 +char id=92 x=12 y=31 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=47 x=19 y=31 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=121 x=26 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=113 x=34 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=112 x=42 y=31 width=9 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=108 x=51 y=31 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=107 x=54 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=105 x=63 y=31 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=104 x=66 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=103 x=75 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=102 x=83 y=31 width=6 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=100 x=89 y=31 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=98 x=97 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=81 x=106 y=31 width=11 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=252 x=117 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=246 x=125 y=31 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=239 x=134 y=31 width=6 height=12 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=235 x=140 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=231 x=148 y=31 width=8 height=12 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=228 x=156 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=222 x=164 y=31 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=208 x=172 y=31 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=198 x=182 y=31 width=15 height=12 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=190 x=197 y=31 width=13 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=182 x=210 y=31 width=7 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=174 x=217 y=31 width=12 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=169 x=229 y=31 width=12 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=165 x=241 y=31 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=163 x=0 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=38 x=9 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=35 x=19 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=63 x=29 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=33 x=37 y=44 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=55 x=40 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=53 x=49 y=44 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=52 x=57 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=51 x=66 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=50 x=74 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=90 x=83 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=89 x=92 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=88 x=102 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=87 x=112 y=44 width=13 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=86 x=125 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=85 x=135 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=84 x=144 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=83 x=153 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=82 x=162 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=80 x=171 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=78 x=180 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=77 x=189 y=44 width=12 height=12 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=76 x=201 y=44 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=75 x=209 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=74 x=218 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=73 x=226 y=44 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=72 x=229 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=71 x=238 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=70 x=0 y=56 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=69 x=8 y=56 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=68 x=16 y=56 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=67 x=25 y=56 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=66 x=35 y=56 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=65 x=44 y=56 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=248 x=54 y=56 width=9 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=240 x=63 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=189 x=72 y=56 width=11 height=11 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=188 x=83 y=56 width=11 height=11 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=94 y=56 width=11 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=59 x=105 y=56 width=4 height=11 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 +char id=48 x=109 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=57 x=118 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=56 x=127 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=54 x=136 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=49 x=145 y=56 width=5 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=116 x=150 y=56 width=6 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=79 x=156 y=56 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=177 x=166 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=164 x=174 y=56 width=11 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=58 x=185 y=56 width=3 height=10 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0 +char id=122 x=188 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=120 x=196 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=119 x=204 y=56 width=12 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=118 x=216 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=117 x=224 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=115 x=232 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=114 x=240 y=56 width=6 height=10 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=110 x=246 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=109 x=0 y=68 width=13 height=10 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 +char id=101 x=13 y=68 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=247 x=21 y=68 width=9 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=230 x=30 y=68 width=13 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=43 x=43 y=68 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=111 x=52 y=68 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=99 x=61 y=68 width=8 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=97 x=69 y=68 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=179 x=77 y=68 width=7 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=178 x=84 y=68 width=6 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=42 x=90 y=68 width=7 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=62 x=97 y=68 width=8 height=8 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=60 x=105 y=68 width=8 height=8 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=215 x=113 y=68 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=187 x=121 y=68 width=8 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=186 x=129 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=185 x=136 y=68 width=4 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=171 x=140 y=68 width=7 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=170 x=147 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=94 x=154 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=61 x=161 y=68 width=7 height=6 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=39 x=168 y=68 width=3 height=6 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 +char id=34 x=171 y=68 width=6 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=184 x=177 y=68 width=4 height=5 xoffset=0 yoffset=14 xadvance=3 page=0 chnl=0 +char id=176 x=181 y=68 width=6 height=5 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=172 x=187 y=68 width=8 height=5 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=44 x=195 y=68 width=4 height=5 xoffset=0 yoffset=12 xadvance=3 page=0 chnl=0 +char id=180 x=199 y=68 width=5 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=126 x=204 y=68 width=10 height=4 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 +char id=96 x=214 y=68 width=5 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=183 x=219 y=68 width=3 height=3 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=175 x=222 y=68 width=7 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=173 x=229 y=68 width=5 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 +char id=168 x=234 y=68 width=6 height=3 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=95 x=240 y=68 width=8 height=3 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 +char id=45 x=248 y=68 width=5 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 +char id=46 x=0 y=78 width=3 height=3 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.atlas new file mode 100644 index 0000000..12d8754 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.atlas @@ -0,0 +1,456 @@ + +Holo-dark-mdpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-mdpi + rotate: false + xy: 2, 509 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +Roboto-mdpi + rotate: false + xy: 260, 509 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 57, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 91, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 125, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 363, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 391, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 419, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 447, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 159, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 193, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 227, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 475, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 549, 958 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 577, 958 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 2, 347 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 2, 313 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 2, 279 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 381 + size: 24, 40 + orig: 24, 40 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 895 + size: 24, 40 + orig: 24, 40 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 2, 2 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 573, 992 + size: 29, 29 + split: 14, 14, 14, 14 + orig: 29, 29 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 478 + size: 53, 29 + split: 25, 26, 14, 14 + pad: 12, 12, 12, 12 + orig: 53, 29 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 992 + size: 53, 29 + split: 25, 26, 14, 14 + pad: 12, 12, 12, 12 + orig: 53, 29 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 544, 932 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 423 + size: 29, 53 + split: 14, 14, 25, 27 + pad: 12, 12, 12, 12 + orig: 29, 53 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 937 + size: 29, 53 + split: 14, 14, 25, 26 + pad: 12, 12, 12, 12 + orig: 29, 53 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 261, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 503, 495 + size: 10, 12 + split: 0, 0, 0, 10 + pad: 0, 0, 0, 0 + orig: 10, 12 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 33, 430 + size: 10, 12 + split: 0, 0, 0, 10 + pad: 0, 0, 0, 0 + orig: 10, 12 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 57, 461 + size: 10, 12 + split: 0, 0, 0, 10 + pad: 0, 0, 0, 0 + orig: 10, 12 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 518, 781 + size: 12, 10 + split: 0, 10, 0, 0 + pad: 0, 0, 0, 0 + orig: 12, 10 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 570, 946 + size: 12, 10 + split: 0, 10, 0, 0 + pad: 0, 0, 0, 0 + orig: 12, 10 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 622, 1011 + size: 12, 10 + split: 0, 10, 0, 0 + pad: 0, 0, 0, 0 + orig: 12, 10 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 33, 444 + size: 22, 32 + split: 4, 16, 4, 26 + pad: 4, 16, 7, 8 + orig: 22, 32 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 518, 827 + size: 22, 32 + split: 4, 16, 4, 26 + pad: 4, 16, 7, 8 + orig: 22, 32 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 518, 793 + size: 22, 32 + split: 4, 16, 4, 26 + pad: 4, 16, 7, 8 + orig: 22, 32 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 549, 940 + size: 19, 16 + split: 0, 19, 3, 12 + pad: 9, 9, 3, 11 + orig: 19, 16 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 604, 1002 + size: 16, 19 + split: 3, 12, 0, 19 + pad: 3, 11, 9, 9 + orig: 16, 19 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 2, 245 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 2, 211 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 2, 177 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 2, 143 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 2, 109 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 2, 75 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 542, 858 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 2, 41 + size: 26, 32 + split: 12, 12, 20, 10 + pad: 12, 12, 7, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 2, 7 + size: 26, 32 + split: 12, 12, 20, 10 + pad: 12, 12, 7, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 518, 861 + size: 26, 32 + split: 12, 11, 20, 9 + pad: 12, 11, 7, 7 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 549, 937 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 295, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 329, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 604, 999 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 28, 382 + size: 1, 39 + split: 0, 0, 38, 0 + orig: 1, 39 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.json new file mode 100644 index 0000000..3d82c56 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-mdpi.fnt }, + thin-font: {file: Roboto-Thin-mdpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + opaque: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font }, + opaque-thin: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-dark }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-dark }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-dark , background: text}, + default-thin: { font: thin-font, fontColor: text-dark , background: text}, + default-opaque: { font: default-font, fontColor: text-dark , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-dark , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.png new file mode 100644 index 0000000..91b7eeb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Holo-dark-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Roboto-Thin-mdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Roboto-Thin-mdpi.fnt new file mode 100644 index 0000000..1c76442 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Roboto-Thin-mdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=22 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=30 base=24 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-mdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=24 xadvance=5 page=0 chnl=0 +char id=254 x=0 y=0 width=11 height=24 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=125 x=11 y=0 width=8 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=123 x=19 y=0 width=9 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=93 x=28 y=0 width=5 height=24 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=91 x=33 y=0 width=5 height=24 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=41 x=38 y=0 width=6 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=40 x=44 y=0 width=7 height=24 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=106 x=51 y=0 width=7 height=24 xoffset=-2 yoffset=6 xadvance=5 page=0 chnl=0 +char id=255 x=58 y=0 width=12 height=23 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=253 x=70 y=0 width=12 height=23 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=199 x=82 y=0 width=13 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=167 x=95 y=0 width=12 height=23 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=64 x=107 y=0 width=19 height=23 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0 +char id=221 x=126 y=0 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=220 x=140 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=219 x=153 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=218 x=166 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=217 x=179 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=214 x=192 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=213 x=206 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=212 x=220 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=211 x=234 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=210 x=0 y=24 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=209 x=14 y=24 width=13 height=22 xoffset=2 yoffset=3 xadvance=16 page=0 chnl=0 +char id=207 x=27 y=24 width=9 height=22 xoffset=-1 yoffset=3 xadvance=6 page=0 chnl=0 +char id=206 x=36 y=24 width=7 height=22 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=205 x=43 y=24 width=5 height=22 xoffset=2 yoffset=3 xadvance=6 page=0 chnl=0 +char id=204 x=48 y=24 width=5 height=22 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=203 x=53 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=202 x=64 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=201 x=75 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=200 x=86 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=196 x=97 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=195 x=111 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=194 x=125 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=193 x=139 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=192 x=153 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=36 x=167 y=24 width=11 height=22 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=197 x=178 y=24 width=14 height=21 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=124 x=192 y=24 width=3 height=21 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=166 x=195 y=24 width=3 height=20 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=240 x=198 y=24 width=12 height=19 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=231 x=210 y=24 width=11 height=19 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=216 x=221 y=24 width=14 height=19 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=191 x=235 y=24 width=9 height=19 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=181 x=244 y=24 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=162 x=0 y=46 width=11 height=19 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=161 x=11 y=46 width=3 height=19 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0 +char id=92 x=14 y=46 width=9 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=47 x=23 y=46 width=9 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=121 x=32 y=46 width=12 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=113 x=44 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=112 x=55 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=108 x=66 y=46 width=3 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=107 x=69 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=105 x=80 y=46 width=3 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=104 x=83 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=103 x=94 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=102 x=105 y=46 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=100 x=114 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=98 x=125 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=81 x=136 y=46 width=14 height=19 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=252 x=150 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=251 x=161 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=250 x=172 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=249 x=183 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=246 x=194 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=245 x=207 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=244 x=220 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=243 x=233 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=242 x=0 y=65 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=241 x=13 y=65 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=239 x=24 y=65 width=11 height=18 xoffset=-2 yoffset=7 xadvance=4 page=0 chnl=0 +char id=238 x=35 y=65 width=8 height=18 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=237 x=43 y=65 width=5 height=18 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=236 x=48 y=65 width=5 height=18 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=235 x=53 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=234 x=65 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=233 x=77 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=232 x=89 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=229 x=101 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=228 x=112 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=227 x=123 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=226 x=134 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=225 x=145 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=224 x=156 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=223 x=167 y=65 width=12 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=222 x=179 y=65 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=208 x=190 y=65 width=15 height=18 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=198 x=205 y=65 width=21 height=18 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=182 x=226 y=65 width=9 height=18 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=174 x=235 y=65 width=17 height=18 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=165 x=0 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=163 x=14 y=83 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=38 x=27 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=35 x=40 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=37 x=54 y=83 width=16 height=18 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=63 x=70 y=83 width=9 height=18 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=33 x=79 y=83 width=3 height=18 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=57 x=82 y=83 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=55 x=93 y=83 width=12 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=53 x=105 y=83 width=11 height=18 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=52 x=116 y=83 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=51 x=129 y=83 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=50 x=140 y=83 width=12 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=49 x=152 y=83 width=7 height=18 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=90 x=159 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=89 x=172 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=88 x=186 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=87 x=200 y=83 width=21 height=18 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=86 x=221 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=85 x=235 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=84 x=0 y=101 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=83 x=14 y=101 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=82 x=27 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=80 x=39 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=78 x=51 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=77 x=64 y=101 width=16 height=18 xoffset=2 yoffset=7 xadvance=19 page=0 chnl=0 +char id=76 x=80 y=101 width=10 height=18 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=75 x=90 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=74 x=103 y=101 width=10 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=73 x=113 y=101 width=3 height=18 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=0 +char id=72 x=116 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=70 x=129 y=101 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=69 x=140 y=101 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=68 x=151 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=67 x=163 y=101 width=13 height=18 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=66 x=176 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=65 x=188 y=101 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=248 x=202 y=101 width=13 height=17 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=190 x=215 y=101 width=19 height=17 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=189 x=234 y=101 width=16 height=17 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=188 x=0 y=119 width=16 height=17 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=169 x=16 y=119 width=17 height=17 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=48 x=33 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=56 x=45 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=54 x=57 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=116 x=69 y=119 width=8 height=17 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=79 x=77 y=119 width=14 height=17 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=71 x=91 y=119 width=14 height=17 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=164 x=105 y=119 width=15 height=16 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=59 x=120 y=119 width=3 height=16 xoffset=1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=177 x=123 y=119 width=13 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=230 x=136 y=119 width=18 height=14 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=43 x=154 y=119 width=13 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=122 x=167 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=120 x=178 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=119 x=189 y=119 width=17 height=14 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=118 x=206 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=117 x=217 y=119 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=115 x=228 y=119 width=10 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=114 x=238 y=119 width=8 height=14 xoffset=1 yoffset=11 xadvance=7 page=0 chnl=0 +char id=110 x=0 y=136 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=109 x=11 y=136 width=19 height=14 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=101 x=30 y=136 width=12 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=99 x=42 y=136 width=11 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=97 x=53 y=136 width=11 height=14 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=58 x=64 y=136 width=3 height=13 xoffset=1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=111 x=67 y=136 width=13 height=13 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 +char id=247 x=80 y=136 width=13 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=215 x=93 y=136 width=11 height=11 xoffset=1 yoffset=12 xadvance=11 page=0 chnl=0 +char id=186 x=104 y=136 width=9 height=11 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=178 x=113 y=136 width=8 height=11 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=170 x=121 y=136 width=8 height=11 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=42 x=129 y=136 width=10 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=62 x=139 y=136 width=11 height=11 xoffset=1 yoffset=13 xadvance=11 page=0 chnl=0 +char id=60 x=150 y=136 width=11 height=11 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 +char id=187 x=161 y=136 width=9 height=10 xoffset=1 yoffset=13 xadvance=10 page=0 chnl=0 +char id=185 x=170 y=136 width=5 height=10 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=179 x=175 y=136 width=8 height=10 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=171 x=183 y=136 width=8 height=10 xoffset=1 yoffset=13 xadvance=10 page=0 chnl=0 +char id=94 x=191 y=136 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=176 x=199 y=136 width=7 height=7 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=172 x=206 y=136 width=10 height=7 xoffset=1 yoffset=15 xadvance=12 page=0 chnl=0 +char id=61 x=216 y=136 width=11 height=7 xoffset=1 yoffset=13 xadvance=12 page=0 chnl=0 +char id=39 x=227 y=136 width=3 height=7 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0 +char id=34 x=230 y=136 width=5 height=7 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=0 +char id=184 x=235 y=136 width=6 height=6 xoffset=0 yoffset=24 xadvance=5 page=0 chnl=0 +char id=126 x=241 y=136 width=14 height=6 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0 +char id=44 x=0 y=150 width=3 height=6 xoffset=1 yoffset=22 xadvance=4 page=0 chnl=0 +char id=180 x=3 y=150 width=5 height=5 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=96 x=8 y=150 width=5 height=5 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=183 x=13 y=150 width=4 height=3 xoffset=1 yoffset=15 xadvance=5 page=0 chnl=0 +char id=175 x=17 y=150 width=9 height=3 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=173 x=26 y=150 width=7 height=3 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 +char id=168 x=33 y=150 width=9 height=3 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=95 x=42 y=150 width=12 height=3 xoffset=-1 yoffset=23 xadvance=9 page=0 chnl=0 +char id=45 x=54 y=150 width=7 height=3 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 +char id=46 x=61 y=150 width=3 height=3 xoffset=1 yoffset=22 xadvance=5 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Roboto-mdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Roboto-mdpi.fnt new file mode 100644 index 0000000..40541db --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-mdpi/Roboto-mdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-mdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=254 x=0 y=0 width=10 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=93 x=10 y=0 width=5 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=91 x=15 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=40 x=20 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=106 x=26 y=0 width=6 height=20 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=255 x=32 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=42 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=52 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=167 x=63 y=0 width=12 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=64 x=75 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=41 x=92 y=0 width=6 height=19 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=221 x=98 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=110 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=121 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=132 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=143 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=154 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=166 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=178 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=190 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=202 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=214 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=226 y=0 width=8 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=234 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=241 y=0 width=6 height=18 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=247 y=0 width=6 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=0 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=202 x=11 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=201 x=22 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=200 x=33 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=197 x=44 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=196 x=57 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=195 x=70 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=194 x=83 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=193 x=96 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=192 x=109 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=36 x=122 y=20 width=10 height=18 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=132 y=20 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=123 x=139 y=20 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=166 x=146 y=20 width=4 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=150 y=20 width=3 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=231 x=153 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=223 x=163 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=216 x=173 y=20 width=12 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=181 x=185 y=20 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=194 y=20 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=92 x=204 y=20 width=9 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=213 y=20 width=8 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=121 x=221 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=231 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=241 y=20 width=10 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=251 y=20 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=107 x=0 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=10 y=38 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=104 x=14 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=24 y=38 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=102 x=34 y=38 width=8 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=100 x=42 y=38 width=10 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=52 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=62 y=38 width=12 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=74 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=83 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=92 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=101 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=110 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=121 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=132 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=143 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=154 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=165 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=174 y=38 width=8 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=238 x=182 y=38 width=7 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=237 x=189 y=38 width=5 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=236 x=194 y=38 width=6 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=235 x=200 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=234 x=210 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=233 x=220 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=232 x=230 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=229 x=240 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=0 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=10 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=20 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=30 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=40 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=50 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=60 y=54 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=73 y=54 width=19 height=15 xoffset=-1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=191 x=92 y=54 width=9 height=15 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=182 x=101 y=54 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=165 x=110 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=122 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=161 x=133 y=54 width=4 height=15 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=38 x=137 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=149 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=161 y=54 width=14 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 +char id=63 x=175 y=54 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=33 x=184 y=54 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=48 x=188 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=198 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=209 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=219 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=229 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=51 x=240 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=0 y=69 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=90 x=11 y=69 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=22 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=34 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=46 y=69 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=63 y=69 width=13 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=76 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=87 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=99 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=111 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=79 x=122 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=78 x=134 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=146 y=69 width=15 height=15 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=76 x=161 y=69 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=75 x=171 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=74 x=183 y=69 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=193 y=69 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=197 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=209 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=220 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=231 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=68 x=242 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=0 y=84 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=66 x=11 y=84 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=65 x=22 y=84 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=240 x=35 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=190 x=46 y=84 width=17 height=14 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 +char id=189 x=63 y=84 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=188 x=77 y=84 width=14 height=14 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=174 x=91 y=84 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=169 x=106 y=84 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=164 x=121 y=84 width=14 height=14 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=59 x=135 y=84 width=5 height=14 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=57 x=140 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=151 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=49 x=162 y=84 width=6 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=168 y=84 width=7 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=83 x=175 y=84 width=12 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=248 x=187 y=84 width=11 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=177 x=198 y=84 width=10 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=247 x=208 y=84 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=230 x=219 y=84 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=58 x=235 y=84 width=4 height=12 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0 +char id=122 x=239 y=84 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=0 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=10 y=99 width=15 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=25 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=35 y=99 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=44 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=54 y=99 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=60 y=99 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=71 y=99 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=80 y=99 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=99 x=95 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=97 x=105 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=42 x=115 y=99 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=43 x=124 y=99 width=11 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=101 x=135 y=99 width=10 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=62 x=145 y=99 width=9 height=10 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=154 y=99 width=9 height=10 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=215 x=163 y=99 width=10 height=9 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=187 x=173 y=99 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=186 x=182 y=99 width=8 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=171 x=190 y=99 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=170 x=199 y=99 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=94 x=206 y=99 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=185 x=214 y=99 width=5 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=179 x=219 y=99 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=178 x=227 y=99 width=7 height=8 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=176 x=234 y=99 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=39 x=240 y=99 width=4 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=244 y=99 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=184 x=251 y=99 width=4 height=6 xoffset=1 yoffset=18 xadvance=4 page=0 chnl=0 +char id=172 x=0 y=111 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=9 y=111 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=18 y=111 width=4 height=6 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=126 x=22 y=111 width=12 height=5 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=183 x=34 y=111 width=4 height=4 xoffset=1 yoffset=11 xadvance=5 page=0 chnl=0 +char id=180 x=38 y=111 width=5 height=4 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=168 x=43 y=111 width=8 height=4 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=46 x=51 y=111 width=4 height=4 xoffset=1 yoffset=16 xadvance=5 page=0 chnl=0 +char id=96 x=55 y=111 width=6 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=175 x=61 y=111 width=8 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=173 x=69 y=111 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=95 x=75 y=111 width=10 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 +char id=45 x=85 y=111 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.atlas new file mode 100644 index 0000000..fdbcb9c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.atlas @@ -0,0 +1,465 @@ + +Holo-dark-xhdpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-xhdpi + rotate: false + xy: 2, 490 + size: 256, 532 + orig: 256, 532 + offset: 0, 0 + index: -1 +Roboto-xhdpi + rotate: false + xy: 260, 510 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 110, 424 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 176, 424 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 626, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 2, 174 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 2, 108 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 2, 42 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 518, 708 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 692, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 758, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 824, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 518, 642 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 518, 576 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 518, 510 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 174, 358 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 684, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 738, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 240 + size: 49, 80 + orig: 49, 80 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 774 + size: 49, 80 + orig: 49, 80 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 2, 2 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 624, 898 + size: 58, 58 + split: 28, 28, 28, 28 + orig: 58, 58 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 430 + size: 106, 58 + split: 50, 53, 28, 28 + pad: 25, 25, 25, 25 + orig: 106, 58 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 964 + size: 106, 58 + split: 50, 53, 28, 28 + pad: 25, 25, 25, 25 + orig: 106, 58 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 7, 2 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 322 + size: 58, 106 + split: 28, 29, 51, 54 + pad: 25, 25, 25, 25 + orig: 58, 106 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 856 + size: 58, 106 + split: 28, 28, 50, 53 + pad: 25, 25, 25, 25 + orig: 58, 106 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 890, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 894, 866 + size: 20, 24 + split: 0, 0, 0, 20 + pad: 0, 0, 0, 0 + orig: 20, 24 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 894, 840 + size: 20, 24 + split: 0, 0, 0, 20 + pad: 0, 0, 0, 0 + orig: 20, 24 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 916, 866 + size: 20, 24 + split: 0, 0, 0, 20 + pad: 0, 0, 0, 0 + orig: 20, 24 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 938, 870 + size: 24, 20 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 24, 20 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 964, 870 + size: 24, 20 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 24, 20 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 260, 488 + size: 24, 20 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 24, 20 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 62, 364 + size: 44, 64 + split: 8, 32, 8, 52 + pad: 8, 32, 14, 16 + orig: 44, 64 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 578, 898 + size: 44, 64 + split: 8, 32, 8, 52 + pad: 8, 32, 14, 16 + orig: 44, 64 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 632, 832 + size: 44, 64 + split: 8, 32, 8, 52 + pad: 8, 32, 14, 16 + orig: 44, 64 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 2, 7 + size: 39, 33 + split: 0, 39, 7, 25 + pad: 19, 19, 6, 24 + orig: 39, 33 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 62, 323 + size: 33, 39 + split: 7, 25, 0, 39 + pad: 6, 24, 19, 19 + orig: 33, 39 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 792, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 846, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 900, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 954, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 578, 832 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 678, 826 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 1008, 955 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_cursor_old + rotate: false + xy: 228, 409 + size: 5, 13 + split: 2, 2, 6, 6 + pad: 1, 1, 5, 5 + orig: 5, 13 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 732, 826 + size: 52, 64 + split: 24, 24, 40, 20 + pad: 24, 24, 14, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 786, 826 + size: 52, 64 + split: 24, 24, 40, 20 + pad: 24, 24, 14, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 840, 826 + size: 52, 64 + split: 24, 23, 40, 19 + pad: 24, 23, 14, 15 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 569, 853 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 956, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 108, 358 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 572, 853 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 53, 242 + size: 3, 78 + split: 1, 1, 77, 0 + orig: 3, 78 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.json new file mode 100644 index 0000000..f10173a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-xhdpi.fnt }, + thin-font: {file: Roboto-Thin-xhdpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + opaque: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font }, + opaque-thin: { fontColorUnselected: text-dark, selection: text_selected_opaque, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, disabledFontColor: text-dark}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-dark }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-dark }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-dark, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-dark , background: text}, + default-thin: { font: thin-font, fontColor: text-dark , background: text}, + default-opaque: { font: default-font, fontColor: text-dark , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-dark , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-dark, focusedFontColor: text-dark, disabledFontColor: text-dark, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-dark } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-dark , downFontColor: text-dark, overFontColor: text-dark, checkedFontColor: text-dark, checkedOverFontColor: text-dark, disabledFontColor: text-dark, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: default-font }, + default-thin: { fontColorUnselected: text-dark, selection: text_selected, fontColorSelected: text-dark, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.png new file mode 100644 index 0000000..b497224 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Holo-dark-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Roboto-Thin-xhdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Roboto-Thin-xhdpi.fnt new file mode 100644 index 0000000..fd0d077 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Roboto-Thin-xhdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=44 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=59 base=47 scaleW=256 scaleH=512 pages=2 packed=0 +page id=0 file="Roboto-Thin-xhdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=47 xadvance=11 page=0 chnl=0 +char id=41 x=0 y=0 width=11 height=47 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=40 x=11 y=0 width=11 height=47 xoffset=3 yoffset=11 xadvance=13 page=0 chnl=0 +char id=125 x=22 y=0 width=14 height=46 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 +char id=123 x=36 y=0 width=15 height=46 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=254 x=51 y=0 width=20 height=45 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=167 x=71 y=0 width=23 height=45 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=93 x=94 y=0 width=8 height=45 xoffset=-1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=91 x=102 y=0 width=8 height=45 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=106 x=110 y=0 width=14 height=45 xoffset=-4 yoffset=12 xadvance=10 page=0 chnl=0 +char id=255 x=124 y=0 width=22 height=43 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 +char id=253 x=146 y=0 width=22 height=43 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 +char id=199 x=168 y=0 width=24 height=43 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=219 x=192 y=0 width=24 height=42 xoffset=3 yoffset=6 xadvance=29 page=0 chnl=0 +char id=217 x=216 y=0 width=24 height=42 xoffset=3 yoffset=6 xadvance=29 page=0 chnl=0 +char id=214 x=0 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=213 x=26 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=212 x=52 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=211 x=78 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=210 x=104 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=206 x=130 y=47 width=13 height=42 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=204 x=143 y=47 width=8 height=42 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=202 x=151 y=47 width=21 height=42 xoffset=4 yoffset=6 xadvance=25 page=0 chnl=0 +char id=200 x=172 y=47 width=21 height=42 xoffset=4 yoffset=6 xadvance=25 page=0 chnl=0 +char id=194 x=193 y=47 width=27 height=42 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 +char id=192 x=220 y=47 width=27 height=42 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 +char id=36 x=0 y=89 width=21 height=42 xoffset=2 yoffset=10 xadvance=24 page=0 chnl=0 +char id=64 x=21 y=89 width=38 height=42 xoffset=2 yoffset=15 xadvance=41 page=0 chnl=0 +char id=221 x=59 y=89 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=220 x=86 y=89 width=24 height=41 xoffset=3 yoffset=7 xadvance=29 page=0 chnl=0 +char id=218 x=110 y=89 width=24 height=41 xoffset=3 yoffset=7 xadvance=29 page=0 chnl=0 +char id=209 x=134 y=89 width=24 height=41 xoffset=4 yoffset=7 xadvance=31 page=0 chnl=0 +char id=207 x=158 y=89 width=16 height=41 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=205 x=174 y=89 width=8 height=41 xoffset=4 yoffset=7 xadvance=11 page=0 chnl=0 +char id=203 x=182 y=89 width=21 height=41 xoffset=4 yoffset=7 xadvance=25 page=0 chnl=0 +char id=201 x=203 y=89 width=21 height=41 xoffset=4 yoffset=7 xadvance=25 page=0 chnl=0 +char id=197 x=224 y=89 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=196 x=0 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=195 x=27 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=193 x=54 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=166 x=81 y=131 width=3 height=40 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=124 x=84 y=131 width=4 height=40 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=81 x=88 y=131 width=27 height=38 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0 +char id=92 x=115 y=131 width=16 height=37 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=47 x=131 y=131 width=16 height=37 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=216 x=147 y=131 width=26 height=36 xoffset=2 yoffset=13 xadvance=29 page=0 chnl=0 +char id=162 x=173 y=131 width=20 height=36 xoffset=2 yoffset=17 xadvance=24 page=0 chnl=0 +char id=108 x=193 y=131 width=4 height=36 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0 +char id=107 x=197 y=131 width=19 height=36 xoffset=3 yoffset=12 xadvance=21 page=0 chnl=0 +char id=105 x=216 y=131 width=4 height=36 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0 +char id=104 x=220 y=131 width=19 height=36 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=102 x=239 y=131 width=15 height=36 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=100 x=0 y=172 width=20 height=36 xoffset=2 yoffset=12 xadvance=24 page=0 chnl=0 +char id=98 x=20 y=172 width=20 height=36 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=244 x=40 y=172 width=23 height=35 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=242 x=63 y=172 width=23 height=35 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=240 x=86 y=172 width=22 height=35 xoffset=2 yoffset=13 xadvance=25 page=0 chnl=0 +char id=234 x=108 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=233 x=129 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=232 x=150 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=231 x=171 y=172 width=20 height=35 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=226 x=191 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=225 x=212 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=224 x=233 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=191 x=0 y=208 width=17 height=35 xoffset=2 yoffset=22 xadvance=20 page=0 chnl=0 +char id=181 x=17 y=208 width=19 height=35 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=121 x=36 y=208 width=22 height=35 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 +char id=113 x=58 y=208 width=20 height=35 xoffset=2 yoffset=22 xadvance=24 page=0 chnl=0 +char id=112 x=78 y=208 width=20 height=35 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=103 x=98 y=208 width=20 height=35 xoffset=2 yoffset=22 xadvance=24 page=0 chnl=0 +char id=252 x=118 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=251 x=137 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=250 x=156 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=249 x=175 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=246 x=194 y=208 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=245 x=217 y=208 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=243 x=0 y=243 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=241 x=23 y=243 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=239 x=42 y=243 width=18 height=34 xoffset=-2 yoffset=14 xadvance=9 page=0 chnl=0 +char id=238 x=60 y=243 width=14 height=34 xoffset=-1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=237 x=74 y=243 width=8 height=34 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=236 x=82 y=243 width=8 height=34 xoffset=-1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=235 x=90 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=22 page=0 chnl=0 +char id=229 x=111 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=228 x=132 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=227 x=153 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=223 x=174 y=243 width=21 height=34 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0 +char id=222 x=195 y=243 width=21 height=34 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0 +char id=208 x=216 y=243 width=27 height=34 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0 +char id=198 x=0 y=277 width=38 height=34 xoffset=1 yoffset=14 xadvance=39 page=0 chnl=0 +char id=190 x=38 y=277 width=34 height=34 xoffset=3 yoffset=14 xadvance=36 page=0 chnl=0 +char id=182 x=72 y=277 width=16 height=34 xoffset=2 yoffset=14 xadvance=20 page=0 chnl=0 +char id=174 x=88 y=277 width=32 height=34 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 +char id=169 x=120 y=277 width=33 height=34 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 +char id=165 x=153 y=277 width=25 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=161 x=178 y=277 width=4 height=34 xoffset=3 yoffset=22 xadvance=9 page=0 chnl=0 +char id=38 x=182 y=277 width=25 height=34 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0 +char id=35 x=207 y=277 width=26 height=34 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=63 x=233 y=277 width=17 height=34 xoffset=2 yoffset=14 xadvance=19 page=0 chnl=0 +char id=33 x=250 y=277 width=4 height=34 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=48 x=0 y=311 width=21 height=34 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0 +char id=57 x=21 y=311 width=20 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=56 x=41 y=311 width=22 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=55 x=63 y=311 width=22 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=54 x=85 y=311 width=21 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=53 x=106 y=311 width=20 height=34 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0 +char id=52 x=126 y=311 width=24 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=51 x=150 y=311 width=21 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=50 x=171 y=311 width=22 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=49 x=193 y=311 width=12 height=34 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0 +char id=90 x=205 y=311 width=24 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=89 x=0 y=345 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=88 x=27 y=345 width=25 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=87 x=52 y=345 width=39 height=34 xoffset=1 yoffset=14 xadvance=40 page=0 chnl=0 +char id=86 x=91 y=345 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=85 x=118 y=345 width=24 height=34 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=84 x=142 y=345 width=26 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=83 x=168 y=345 width=24 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=82 x=192 y=345 width=23 height=34 xoffset=4 yoffset=14 xadvance=29 page=0 chnl=0 +char id=80 x=215 y=345 width=22 height=34 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0 +char id=79 x=0 y=379 width=26 height=34 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0 +char id=78 x=26 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0 +char id=77 x=50 y=379 width=31 height=34 xoffset=4 yoffset=14 xadvance=38 page=0 chnl=0 +char id=76 x=81 y=379 width=19 height=34 xoffset=4 yoffset=14 xadvance=23 page=0 chnl=0 +char id=75 x=100 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=28 page=0 chnl=0 +char id=74 x=124 y=379 width=19 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=73 x=143 y=379 width=3 height=34 xoffset=5 yoffset=14 xadvance=11 page=0 chnl=0 +char id=72 x=146 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0 +char id=71 x=170 y=379 width=25 height=34 xoffset=3 yoffset=14 xadvance=30 page=0 chnl=0 +char id=70 x=195 y=379 width=21 height=34 xoffset=4 yoffset=14 xadvance=25 page=0 chnl=0 +char id=69 x=216 y=379 width=21 height=34 xoffset=4 yoffset=14 xadvance=25 page=0 chnl=0 +char id=68 x=0 y=413 width=23 height=34 xoffset=4 yoffset=14 xadvance=29 page=0 chnl=0 +char id=67 x=23 y=413 width=24 height=34 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=66 x=47 y=413 width=22 height=34 xoffset=4 yoffset=14 xadvance=27 page=0 chnl=0 +char id=65 x=69 y=413 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=189 x=96 y=413 width=31 height=33 xoffset=2 yoffset=15 xadvance=31 page=0 chnl=0 +char id=188 x=127 y=413 width=31 height=33 xoffset=2 yoffset=15 xadvance=33 page=0 chnl=0 +char id=163 x=158 y=413 width=23 height=33 xoffset=1 yoffset=15 xadvance=25 page=0 chnl=0 +char id=37 x=181 y=413 width=30 height=33 xoffset=2 yoffset=15 xadvance=33 page=0 chnl=0 +char id=248 x=211 y=413 width=23 height=32 xoffset=1 yoffset=19 xadvance=24 page=0 chnl=0 +char id=116 x=234 y=413 width=14 height=32 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=59 x=248 y=413 width=5 height=31 xoffset=2 yoffset=23 xadvance=8 page=0 chnl=0 +char id=164 x=0 y=447 width=29 height=30 xoffset=2 yoffset=19 xadvance=32 page=0 chnl=0 +char id=177 x=29 y=447 width=24 height=28 xoffset=1 yoffset=18 xadvance=23 page=0 chnl=0 +char id=230 x=53 y=447 width=35 height=26 xoffset=2 yoffset=22 xadvance=37 page=0 chnl=0 +char id=122 x=88 y=447 width=20 height=26 xoffset=1 yoffset=22 xadvance=21 page=0 chnl=0 +char id=120 x=108 y=447 width=20 height=26 xoffset=1 yoffset=22 xadvance=21 page=0 chnl=0 +char id=119 x=128 y=447 width=32 height=26 xoffset=1 yoffset=22 xadvance=33 page=0 chnl=0 +char id=118 x=160 y=447 width=22 height=26 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 +char id=117 x=182 y=447 width=19 height=26 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=115 x=201 y=447 width=19 height=26 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=114 x=220 y=447 width=13 height=26 xoffset=3 yoffset=22 xadvance=15 page=0 chnl=0 +char id=111 x=0 y=477 width=23 height=26 xoffset=1 yoffset=22 xadvance=24 page=0 chnl=0 +char id=110 x=23 y=477 width=19 height=26 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=109 x=42 y=477 width=35 height=26 xoffset=3 yoffset=22 xadvance=39 page=0 chnl=0 +char id=101 x=77 y=477 width=21 height=26 xoffset=1 yoffset=22 xadvance=22 page=0 chnl=0 +char id=99 x=98 y=477 width=20 height=26 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=97 x=118 y=477 width=21 height=26 xoffset=1 yoffset=22 xadvance=23 page=0 chnl=0 +char id=43 x=139 y=477 width=24 height=25 xoffset=1 yoffset=20 xadvance=25 page=0 chnl=0 +char id=58 x=163 y=477 width=4 height=25 xoffset=2 yoffset=23 xadvance=8 page=0 chnl=0 +char id=247 x=167 y=477 width=24 height=21 xoffset=1 yoffset=21 xadvance=25 page=0 chnl=0 +char id=215 x=191 y=477 width=20 height=20 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=0 +char id=42 x=211 y=477 width=19 height=20 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 +char id=62 x=230 y=477 width=20 height=20 xoffset=2 yoffset=26 xadvance=23 page=0 chnl=0 +char id=45 x=0 y=503 width=12 height=3 xoffset=1 yoffset=32 xadvance=13 page=0 chnl=0 +char id=95 x=12 y=503 width=21 height=3 xoffset=-1 yoffset=46 xadvance=18 page=0 chnl=0 +char id=168 x=33 y=503 width=15 height=3 xoffset=3 yoffset=14 xadvance=19 page=0 chnl=0 +char id=173 x=48 y=503 width=12 height=3 xoffset=1 yoffset=32 xadvance=13 page=0 chnl=0 +char id=175 x=60 y=503 width=16 height=3 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=46 x=76 y=503 width=4 height=5 xoffset=3 yoffset=43 xadvance=9 page=0 chnl=0 +char id=183 x=80 y=503 width=5 height=5 xoffset=3 yoffset=29 xadvance=10 page=0 chnl=0 +char id=96 x=85 y=503 width=8 height=8 xoffset=2 yoffset=14 xadvance=12 page=0 chnl=0 +char id=180 x=93 y=503 width=8 height=8 xoffset=2 yoffset=14 xadvance=11 page=0 chnl=0 +char id=187 x=0 y=512 width=17 height=19 xoffset=2 yoffset=25 xadvance=19 page=0 chnl=0 +char id=186 x=17 y=512 width=15 height=19 xoffset=3 yoffset=14 xadvance=20 page=0 chnl=0 +char id=185 x=32 y=512 width=7 height=19 xoffset=1 yoffset=15 xadvance=10 page=0 chnl=0 +char id=179 x=39 y=512 width=14 height=19 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0 +char id=178 x=53 y=512 width=14 height=19 xoffset=2 yoffset=14 xadvance=17 page=0 chnl=0 +char id=171 x=67 y=512 width=16 height=19 xoffset=3 yoffset=26 xadvance=19 page=0 chnl=0 +char id=170 x=83 y=512 width=14 height=19 xoffset=3 yoffset=14 xadvance=19 page=0 chnl=0 +char id=60 x=97 y=512 width=20 height=19 xoffset=1 yoffset=26 xadvance=23 page=0 chnl=0 +char id=94 x=117 y=512 width=15 height=18 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0 +char id=176 x=132 y=512 width=12 height=12 xoffset=3 yoffset=14 xadvance=17 page=0 chnl=0 +char id=61 x=144 y=512 width=20 height=12 xoffset=3 yoffset=26 xadvance=25 page=0 chnl=0 +char id=39 x=164 y=512 width=4 height=12 xoffset=2 yoffset=12 xadvance=7 page=0 chnl=0 +char id=34 x=168 y=512 width=8 height=12 xoffset=2 yoffset=12 xadvance=11 page=0 chnl=0 +char id=184 x=176 y=512 width=9 height=11 xoffset=1 yoffset=46 xadvance=11 page=0 chnl=0 +char id=44 x=185 y=512 width=5 height=11 xoffset=2 yoffset=43 xadvance=8 page=0 chnl=0 +char id=172 x=190 y=512 width=19 height=10 xoffset=2 yoffset=30 xadvance=24 page=0 chnl=0 +char id=126 x=209 y=512 width=25 height=9 xoffset=3 yoffset=29 xadvance=30 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Roboto-xhdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Roboto-xhdpi.fnt new file mode 100644 index 0000000..80c3c68 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/dark-xhdpi/Roboto-xhdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=36 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=48 base=38 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-xhdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=38 xadvance=9 page=0 chnl=0 +char id=41 x=0 y=0 width=11 height=39 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 +char id=40 x=11 y=0 width=11 height=38 xoffset=2 yoffset=9 xadvance=12 page=0 chnl=0 +char id=167 x=22 y=0 width=21 height=37 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=106 x=43 y=0 width=11 height=37 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=254 x=54 y=0 width=18 height=36 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=253 x=72 y=0 width=19 height=36 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 +char id=93 x=91 y=0 width=8 height=36 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=91 x=99 y=0 width=9 height=36 xoffset=2 yoffset=8 xadvance=10 page=0 chnl=0 +char id=255 x=108 y=0 width=19 height=35 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 +char id=221 x=127 y=0 width=23 height=35 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 +char id=219 x=150 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=218 x=171 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=217 x=192 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=213 x=213 y=0 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=212 x=0 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=211 x=23 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=210 x=46 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=209 x=69 y=39 width=21 height=35 xoffset=3 yoffset=4 xadvance=26 page=0 chnl=0 +char id=206 x=90 y=39 width=12 height=35 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=205 x=102 y=39 width=9 height=35 xoffset=3 yoffset=4 xadvance=10 page=0 chnl=0 +char id=204 x=111 y=39 width=9 height=35 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=202 x=120 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=201 x=139 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=200 x=158 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=199 x=177 y=39 width=21 height=35 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=197 x=198 y=39 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=195 x=222 y=39 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=194 x=0 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=193 x=24 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=192 x=48 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=36 x=72 y=74 width=18 height=35 xoffset=2 yoffset=8 xadvance=20 page=0 chnl=0 +char id=64 x=90 y=74 width=31 height=35 xoffset=1 yoffset=12 xadvance=32 page=0 chnl=0 +char id=125 x=121 y=74 width=13 height=35 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=123 x=134 y=74 width=12 height=35 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0 +char id=220 x=146 y=74 width=21 height=34 xoffset=2 yoffset=5 xadvance=24 page=0 chnl=0 +char id=214 x=167 y=74 width=23 height=34 xoffset=1 yoffset=5 xadvance=25 page=0 chnl=0 +char id=207 x=190 y=74 width=17 height=34 xoffset=-2 yoffset=5 xadvance=10 page=0 chnl=0 +char id=203 x=207 y=74 width=19 height=34 xoffset=3 yoffset=5 xadvance=21 page=0 chnl=0 +char id=196 x=226 y=74 width=24 height=34 xoffset=0 yoffset=5 xadvance=23 page=0 chnl=0 +char id=166 x=0 y=109 width=6 height=33 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=0 +char id=124 x=6 y=109 width=4 height=33 xoffset=3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=81 x=10 y=109 width=24 height=32 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=216 x=34 y=109 width=23 height=30 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=92 x=57 y=109 width=16 height=30 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 +char id=47 x=73 y=109 width=15 height=30 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 +char id=105 x=88 y=109 width=6 height=30 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=251 x=94 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=250 x=111 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=249 x=128 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=245 x=145 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=244 x=164 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=243 x=183 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=242 x=202 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=241 x=221 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=238 x=238 y=109 width=13 height=29 xoffset=-1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=237 x=0 y=142 width=11 height=29 xoffset=2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=236 x=11 y=142 width=11 height=29 xoffset=-2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=234 x=22 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=233 x=40 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=232 x=58 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=229 x=76 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=227 x=94 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=226 x=112 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=225 x=130 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=224 x=148 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=223 x=166 y=142 width=19 height=29 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=162 x=185 y=142 width=18 height=29 xoffset=1 yoffset=15 xadvance=20 page=0 chnl=0 +char id=108 x=203 y=142 width=6 height=29 xoffset=2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=107 x=209 y=142 width=18 height=29 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=104 x=227 y=142 width=18 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=102 x=0 y=171 width=14 height=29 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=100 x=14 y=171 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=98 x=32 y=171 width=18 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=252 x=50 y=171 width=17 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=246 x=67 y=171 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=240 x=86 y=171 width=19 height=28 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0 +char id=239 x=105 y=171 width=18 height=28 xoffset=-3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=235 x=123 y=171 width=18 height=28 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=231 x=141 y=171 width=18 height=28 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=228 x=159 y=171 width=18 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=222 x=177 y=171 width=19 height=28 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=0 +char id=208 x=196 y=171 width=24 height=28 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 +char id=198 x=0 y=200 width=36 height=28 xoffset=-1 yoffset=11 xadvance=34 page=0 chnl=0 +char id=191 x=36 y=200 width=16 height=28 xoffset=2 yoffset=18 xadvance=18 page=0 chnl=0 +char id=190 x=52 y=200 width=31 height=28 xoffset=1 yoffset=11 xadvance=31 page=0 chnl=0 +char id=182 x=83 y=200 width=15 height=28 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=181 x=98 y=200 width=17 height=28 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=174 x=115 y=200 width=27 height=28 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=169 x=142 y=200 width=27 height=28 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=165 x=169 y=200 width=22 height=28 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 +char id=163 x=191 y=200 width=20 height=28 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0 +char id=161 x=211 y=200 width=6 height=28 xoffset=2 yoffset=18 xadvance=9 page=0 chnl=0 +char id=38 x=217 y=200 width=22 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=35 x=0 y=228 width=21 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=37 x=21 y=228 width=25 height=28 xoffset=1 yoffset=11 xadvance=26 page=0 chnl=0 +char id=63 x=46 y=228 width=16 height=28 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=33 x=62 y=228 width=5 height=28 xoffset=3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=48 x=67 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=57 x=86 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=56 x=105 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=55 x=124 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=54 x=143 y=228 width=18 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=53 x=161 y=228 width=18 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=52 x=179 y=228 width=21 height=28 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 +char id=51 x=200 y=228 width=18 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=50 x=218 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=121 x=0 y=256 width=19 height=28 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=113 x=19 y=256 width=18 height=28 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=112 x=37 y=256 width=18 height=28 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=103 x=55 y=256 width=18 height=28 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=90 x=73 y=256 width=20 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=89 x=93 y=256 width=23 height=28 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 +char id=88 x=116 y=256 width=22 height=28 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=87 x=138 y=256 width=32 height=28 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 +char id=86 x=170 y=256 width=24 height=28 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 +char id=85 x=194 y=256 width=21 height=28 xoffset=2 yoffset=11 xadvance=24 page=0 chnl=0 +char id=84 x=215 y=256 width=22 height=28 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 +char id=83 x=0 y=284 width=21 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=82 x=21 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=24 page=0 chnl=0 +char id=80 x=42 y=284 width=20 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=79 x=62 y=284 width=23 height=28 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=78 x=85 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=0 +char id=77 x=106 y=284 width=27 height=28 xoffset=3 yoffset=11 xadvance=32 page=0 chnl=0 +char id=76 x=133 y=284 width=17 height=28 xoffset=3 yoffset=11 xadvance=19 page=0 chnl=0 +char id=75 x=150 y=284 width=22 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=74 x=172 y=284 width=17 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=73 x=189 y=284 width=5 height=28 xoffset=3 yoffset=11 xadvance=10 page=0 chnl=0 +char id=72 x=194 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=0 +char id=71 x=215 y=284 width=21 height=28 xoffset=2 yoffset=11 xadvance=25 page=0 chnl=0 +char id=70 x=236 y=284 width=19 height=28 xoffset=3 yoffset=11 xadvance=21 page=0 chnl=0 +char id=69 x=0 y=312 width=19 height=28 xoffset=3 yoffset=11 xadvance=21 page=0 chnl=0 +char id=68 x=19 y=312 width=21 height=28 xoffset=3 yoffset=11 xadvance=24 page=0 chnl=0 +char id=67 x=40 y=312 width=21 height=28 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=66 x=61 y=312 width=20 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=65 x=81 y=312 width=24 height=28 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 +char id=189 x=105 y=312 width=25 height=27 xoffset=3 yoffset=12 xadvance=30 page=0 chnl=0 +char id=188 x=130 y=312 width=25 height=27 xoffset=3 yoffset=12 xadvance=28 page=0 chnl=0 +char id=49 x=155 y=312 width=10 height=27 xoffset=3 yoffset=12 xadvance=20 page=0 chnl=0 +char id=59 x=165 y=312 width=7 height=25 xoffset=1 yoffset=18 xadvance=9 page=0 chnl=0 +char id=116 x=172 y=312 width=12 height=25 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 +char id=248 x=184 y=312 width=19 height=24 xoffset=1 yoffset=17 xadvance=20 page=0 chnl=0 +char id=177 x=203 y=312 width=18 height=24 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 +char id=164 x=221 y=312 width=25 height=24 xoffset=1 yoffset=15 xadvance=26 page=0 chnl=0 +char id=230 x=0 y=340 width=30 height=21 xoffset=1 yoffset=18 xadvance=30 page=0 chnl=0 +char id=43 x=30 y=340 width=19 height=21 xoffset=1 yoffset=16 xadvance=20 page=0 chnl=0 +char id=58 x=49 y=340 width=6 height=21 xoffset=2 yoffset=18 xadvance=9 page=0 chnl=0 +char id=122 x=55 y=340 width=17 height=21 xoffset=1 yoffset=18 xadvance=18 page=0 chnl=0 +char id=120 x=72 y=340 width=19 height=21 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=119 x=91 y=340 width=28 height=21 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 +char id=118 x=119 y=340 width=19 height=21 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=117 x=138 y=340 width=17 height=21 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=115 x=155 y=340 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=114 x=173 y=340 width=11 height=21 xoffset=2 yoffset=18 xadvance=12 page=0 chnl=0 +char id=111 x=184 y=340 width=19 height=21 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=110 x=203 y=340 width=17 height=21 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=109 x=220 y=340 width=28 height=21 xoffset=2 yoffset=18 xadvance=31 page=0 chnl=0 +char id=101 x=0 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=99 x=18 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=97 x=36 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=247 x=54 y=361 width=19 height=19 xoffset=1 yoffset=16 xadvance=21 page=0 chnl=0 +char id=42 x=73 y=361 width=16 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 +char id=62 x=89 y=361 width=17 height=18 xoffset=2 yoffset=20 xadvance=19 page=0 chnl=0 +char id=60 x=106 y=361 width=16 height=18 xoffset=1 yoffset=20 xadvance=18 page=0 chnl=0 +char id=215 x=122 y=361 width=18 height=17 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=187 x=140 y=361 width=16 height=16 xoffset=1 yoffset=20 xadvance=17 page=0 chnl=0 +char id=186 x=156 y=361 width=14 height=16 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=0 +char id=179 x=170 y=361 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=178 x=184 y=361 width=12 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=171 x=196 y=361 width=16 height=16 xoffset=1 yoffset=21 xadvance=17 page=0 chnl=0 +char id=170 x=212 y=361 width=13 height=16 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=0 +char id=185 x=225 y=361 width=7 height=15 xoffset=1 yoffset=12 xadvance=10 page=0 chnl=0 +char id=94 x=232 y=361 width=14 height=15 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=61 x=0 y=382 width=17 height=12 xoffset=2 yoffset=20 xadvance=20 page=0 chnl=0 +char id=34 x=17 y=382 width=11 height=12 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0 +char id=176 x=28 y=382 width=11 height=11 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=0 +char id=39 x=39 y=382 width=5 height=11 xoffset=1 yoffset=10 xadvance=6 page=0 chnl=0 +char id=184 x=44 y=382 width=7 height=10 xoffset=2 yoffset=36 xadvance=9 page=0 chnl=0 +char id=172 x=51 y=382 width=16 height=10 xoffset=2 yoffset=23 xadvance=20 page=0 chnl=0 +char id=44 x=67 y=382 width=7 height=10 xoffset=0 yoffset=33 xadvance=7 page=0 chnl=0 +char id=126 x=74 y=382 width=22 height=9 xoffset=2 yoffset=23 xadvance=24 page=0 chnl=0 +char id=180 x=96 y=382 width=9 height=7 xoffset=2 yoffset=11 xadvance=12 page=0 chnl=0 +char id=96 x=105 y=382 width=9 height=7 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=183 x=114 y=382 width=6 height=6 xoffset=2 yoffset=22 xadvance=10 page=0 chnl=0 +char id=168 x=120 y=382 width=15 height=6 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=46 x=135 y=382 width=6 height=6 xoffset=2 yoffset=33 xadvance=10 page=0 chnl=0 +char id=175 x=141 y=382 width=14 height=5 xoffset=2 yoffset=11 xadvance=17 page=0 chnl=0 +char id=173 x=155 y=382 width=11 height=5 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 +char id=95 x=166 y=382 width=18 height=5 xoffset=0 yoffset=37 xadvance=16 page=0 chnl=0 +char id=45 x=184 y=382 width=11 height=5 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.atlas new file mode 100644 index 0000000..fbbe292 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.atlas @@ -0,0 +1,456 @@ + +Holo-light-hdpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-hdpi + rotate: false + xy: 2, 510 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +Roboto-hdpi + rotate: false + xy: 260, 510 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 83, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 133, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 183, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 649, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 690, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 731, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 772, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 233, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 283, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 333, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 813, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 854, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 895, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 936, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 977, 974 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 2, 272 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 322 + size: 36, 60 + orig: 36, 60 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 836 + size: 36, 60 + orig: 36, 60 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 1018, 1019 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 518, 591 + size: 43, 43 + split: 21, 21, 21, 21 + orig: 43, 43 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 465 + size: 79, 43 + split: 37, 39, 21, 21 + pad: 19, 19, 18, 18 + orig: 79, 43 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 979 + size: 79, 43 + split: 37, 39, 21, 21 + pad: 19, 19, 18, 18 + orig: 79, 43 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 556, 893 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 384 + size: 43, 79 + split: 21, 21, 38, 40 + pad: 18, 18, 19, 19 + orig: 43, 79 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 898 + size: 43, 79 + split: 21, 21, 37, 39 + pad: 18, 18, 19, 19 + orig: 43, 79 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 383, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 2, 2 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 19, 2 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 36, 2 + size: 15, 18 + split: 0, 0, 0, 15 + pad: 0, 0, 0, 0 + orig: 15, 18 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 563, 912 + size: 18, 15 + split: 0, 15, 0, 0 + pad: 0, 0, 0, 0 + orig: 18, 15 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 518, 548 + size: 18, 15 + split: 0, 15, 0, 0 + pad: 0, 0, 0, 0 + orig: 18, 15 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 44, 367 + size: 18, 15 + split: 0, 15, 0, 0 + pad: 0, 0, 0, 0 + orig: 18, 15 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 47, 415 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 483, 460 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 563, 929 + size: 33, 48 + split: 6, 24, 6, 39 + pad: 6, 24, 10, 12 + orig: 33, 48 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 518, 565 + size: 29, 24 + split: 0, 29, 5, 18 + pad: 14, 14, 4, 17 + orig: 29, 24 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 47, 384 + size: 24, 29 + split: 5, 18, 0, 29 + pad: 4, 17, 14, 14 + orig: 24, 29 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 2, 222 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 2, 172 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 2, 122 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 2, 72 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 2, 22 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 518, 786 + size: 39, 48 + split: 18, 18, 24, 21 + pad: 18, 18, 12, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 549, 588 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 518, 736 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 518, 686 + size: 39, 48 + split: 18, 18, 30, 15 + pad: 18, 18, 10, 12 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 518, 636 + size: 39, 48 + split: 18, 17, 30, 14 + pad: 18, 17, 10, 11 + orig: 39, 48 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 73, 412 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 433, 460 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 599, 974 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 563, 909 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 40, 324 + size: 2, 58 + split: 1, 0, 57, 0 + orig: 2, 58 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.json new file mode 100644 index 0000000..2f15f25 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-hdpi.fnt }, + thin-font: {file: Roboto-Thin-hdpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + opaque: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font }, + opaque-thin: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-light }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-light }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-light, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-light }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-light, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-light , background: text}, + default-thin: { font: thin-font, fontColor: text-light , background: text}, + default-opaque: { font: default-font, fontColor: text-light , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-light , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.png new file mode 100644 index 0000000..e93875e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Holo-light-hdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Roboto-Thin-hdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Roboto-Thin-hdpi.fnt new file mode 100644 index 0000000..c446a43 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Roboto-Thin-hdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=33 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=44 base=35 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-hdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=35 xadvance=8 page=0 chnl=0 +char id=125 x=0 y=0 width=11 height=35 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 +char id=123 x=11 y=0 width=11 height=35 xoffset=1 yoffset=8 xadvance=11 page=0 chnl=0 +char id=41 x=22 y=0 width=9 height=35 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=40 x=31 y=0 width=9 height=35 xoffset=2 yoffset=9 xadvance=10 page=0 chnl=0 +char id=254 x=40 y=0 width=16 height=34 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=167 x=56 y=0 width=18 height=34 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=93 x=74 y=0 width=7 height=34 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=91 x=81 y=0 width=7 height=34 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=106 x=88 y=0 width=10 height=34 xoffset=-3 yoffset=9 xadvance=7 page=0 chnl=0 +char id=255 x=98 y=0 width=17 height=33 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=253 x=115 y=0 width=17 height=33 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=199 x=132 y=0 width=18 height=33 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=219 x=150 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=218 x=169 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=217 x=188 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=214 x=207 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=213 x=226 y=0 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=212 x=0 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=211 x=19 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=210 x=38 y=35 width=19 height=32 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=206 x=57 y=35 width=10 height=32 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=205 x=67 y=35 width=7 height=32 xoffset=3 yoffset=4 xadvance=9 page=0 chnl=0 +char id=204 x=74 y=35 width=7 height=32 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=202 x=81 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=201 x=97 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=200 x=113 y=35 width=16 height=32 xoffset=3 yoffset=4 xadvance=19 page=0 chnl=0 +char id=197 x=129 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=194 x=150 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=193 x=171 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=192 x=192 y=35 width=21 height=32 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 +char id=36 x=213 y=35 width=16 height=32 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=64 x=0 y=67 width=28 height=32 xoffset=2 yoffset=11 xadvance=31 page=0 chnl=0 +char id=221 x=28 y=67 width=20 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=220 x=48 y=67 width=19 height=31 xoffset=2 yoffset=5 xadvance=22 page=0 chnl=0 +char id=209 x=67 y=67 width=19 height=31 xoffset=3 yoffset=5 xadvance=23 page=0 chnl=0 +char id=207 x=86 y=67 width=12 height=31 xoffset=-1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=203 x=98 y=67 width=16 height=31 xoffset=3 yoffset=5 xadvance=19 page=0 chnl=0 +char id=196 x=114 y=67 width=21 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=195 x=135 y=67 width=21 height=31 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 +char id=166 x=156 y=67 width=3 height=30 xoffset=2 yoffset=10 xadvance=6 page=0 chnl=0 +char id=124 x=159 y=67 width=3 height=30 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=81 x=162 y=67 width=20 height=29 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=216 x=182 y=67 width=20 height=28 xoffset=2 yoffset=9 xadvance=22 page=0 chnl=0 +char id=162 x=202 y=67 width=15 height=28 xoffset=2 yoffset=12 xadvance=18 page=0 chnl=0 +char id=92 x=217 y=67 width=13 height=28 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=47 x=230 y=67 width=13 height=28 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 +char id=240 x=0 y=99 width=18 height=27 xoffset=1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=232 x=18 y=99 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=229 x=34 y=99 width=15 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=224 x=49 y=99 width=15 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=191 x=64 y=99 width=14 height=27 xoffset=1 yoffset=16 xadvance=15 page=0 chnl=0 +char id=181 x=78 y=99 width=15 height=27 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=121 x=93 y=99 width=17 height=27 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=113 x=110 y=99 width=16 height=27 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=112 x=126 y=99 width=16 height=27 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=108 x=142 y=99 width=3 height=27 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=107 x=145 y=99 width=15 height=27 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=105 x=160 y=99 width=3 height=27 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=104 x=163 y=99 width=15 height=27 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=103 x=178 y=99 width=16 height=27 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=100 x=194 y=99 width=16 height=27 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=98 x=210 y=99 width=16 height=27 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=252 x=226 y=99 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=251 x=0 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=250 x=15 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=249 x=30 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=246 x=45 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=245 x=62 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=244 x=79 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=243 x=96 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=242 x=113 y=126 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=241 x=130 y=126 width=15 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=239 x=145 y=126 width=14 height=26 xoffset=-2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=238 x=159 y=126 width=10 height=26 xoffset=-1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=237 x=169 y=126 width=7 height=26 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=236 x=176 y=126 width=7 height=26 xoffset=-1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=235 x=183 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=234 x=199 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=233 x=215 y=126 width=16 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=231 x=231 y=126 width=16 height=26 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=228 x=0 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=227 x=15 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=226 x=30 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=225 x=45 y=152 width=15 height=26 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=223 x=60 y=152 width=17 height=26 xoffset=2 yoffset=10 xadvance=19 page=0 chnl=0 +char id=222 x=77 y=152 width=16 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=208 x=93 y=152 width=20 height=26 xoffset=1 yoffset=10 xadvance=22 page=0 chnl=0 +char id=198 x=113 y=152 width=30 height=26 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 +char id=190 x=143 y=152 width=26 height=26 xoffset=3 yoffset=10 xadvance=27 page=0 chnl=0 +char id=189 x=169 y=152 width=23 height=26 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=188 x=192 y=152 width=23 height=26 xoffset=2 yoffset=10 xadvance=25 page=0 chnl=0 +char id=182 x=215 y=152 width=13 height=26 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=174 x=228 y=152 width=25 height=26 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 +char id=169 x=0 y=178 width=25 height=26 xoffset=1 yoffset=10 xadvance=27 page=0 chnl=0 +char id=165 x=25 y=178 width=19 height=26 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=163 x=44 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=161 x=61 y=178 width=3 height=26 xoffset=2 yoffset=16 xadvance=7 page=0 chnl=0 +char id=38 x=64 y=178 width=20 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=35 x=84 y=178 width=20 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=37 x=104 y=178 width=23 height=26 xoffset=1 yoffset=10 xadvance=25 page=0 chnl=0 +char id=63 x=127 y=178 width=13 height=26 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=33 x=140 y=178 width=3 height=26 xoffset=2 yoffset=10 xadvance=6 page=0 chnl=0 +char id=57 x=143 y=178 width=16 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=56 x=159 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=55 x=176 y=178 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=54 x=193 y=178 width=16 height=26 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=53 x=209 y=178 width=15 height=26 xoffset=3 yoffset=10 xadvance=18 page=0 chnl=0 +char id=52 x=224 y=178 width=18 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=51 x=0 y=204 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=50 x=17 y=204 width=17 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=49 x=34 y=204 width=9 height=26 xoffset=3 yoffset=10 xadvance=18 page=0 chnl=0 +char id=102 x=43 y=204 width=11 height=26 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=90 x=54 y=204 width=19 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=89 x=73 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=88 x=93 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=87 x=113 y=204 width=29 height=26 xoffset=1 yoffset=10 xadvance=30 page=0 chnl=0 +char id=86 x=142 y=204 width=21 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=85 x=163 y=204 width=19 height=26 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=84 x=182 y=204 width=20 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=83 x=202 y=204 width=19 height=26 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=82 x=221 y=204 width=18 height=26 xoffset=3 yoffset=10 xadvance=22 page=0 chnl=0 +char id=80 x=0 y=230 width=17 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=79 x=17 y=230 width=19 height=26 xoffset=2 yoffset=10 xadvance=22 page=0 chnl=0 +char id=78 x=36 y=230 width=19 height=26 xoffset=3 yoffset=10 xadvance=23 page=0 chnl=0 +char id=77 x=55 y=230 width=24 height=26 xoffset=3 yoffset=10 xadvance=28 page=0 chnl=0 +char id=76 x=79 y=230 width=15 height=26 xoffset=3 yoffset=10 xadvance=17 page=0 chnl=0 +char id=75 x=94 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=21 page=0 chnl=0 +char id=74 x=112 y=230 width=15 height=26 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=73 x=127 y=230 width=3 height=26 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=72 x=130 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=23 page=0 chnl=0 +char id=71 x=148 y=230 width=19 height=26 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=70 x=167 y=230 width=16 height=26 xoffset=3 yoffset=10 xadvance=19 page=0 chnl=0 +char id=69 x=183 y=230 width=16 height=26 xoffset=3 yoffset=10 xadvance=19 page=0 chnl=0 +char id=68 x=199 y=230 width=18 height=26 xoffset=3 yoffset=10 xadvance=22 page=0 chnl=0 +char id=67 x=217 y=230 width=18 height=26 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=66 x=235 y=230 width=17 height=26 xoffset=3 yoffset=10 xadvance=20 page=0 chnl=0 +char id=65 x=0 y=256 width=21 height=26 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 +char id=48 x=21 y=256 width=16 height=25 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=116 x=37 y=256 width=11 height=25 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 +char id=248 x=48 y=256 width=17 height=24 xoffset=1 yoffset=14 xadvance=18 page=0 chnl=0 +char id=164 x=65 y=256 width=23 height=24 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=59 x=88 y=256 width=5 height=22 xoffset=1 yoffset=18 xadvance=6 page=0 chnl=0 +char id=177 x=93 y=256 width=18 height=21 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=230 x=111 y=256 width=27 height=20 xoffset=1 yoffset=16 xadvance=28 page=0 chnl=0 +char id=122 x=138 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=120 x=153 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=119 x=168 y=256 width=24 height=20 xoffset=1 yoffset=16 xadvance=25 page=0 chnl=0 +char id=118 x=192 y=256 width=17 height=20 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=117 x=209 y=256 width=15 height=20 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=115 x=224 y=256 width=15 height=20 xoffset=1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=114 x=239 y=256 width=10 height=20 xoffset=2 yoffset=16 xadvance=11 page=0 chnl=0 +char id=110 x=0 y=282 width=15 height=20 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=109 x=15 y=282 width=27 height=20 xoffset=2 yoffset=16 xadvance=30 page=0 chnl=0 +char id=97 x=42 y=282 width=15 height=20 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=43 x=57 y=282 width=18 height=19 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 +char id=111 x=75 y=282 width=17 height=19 xoffset=1 yoffset=17 xadvance=18 page=0 chnl=0 +char id=101 x=92 y=282 width=16 height=19 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=99 x=108 y=282 width=16 height=19 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=58 x=124 y=282 width=4 height=18 xoffset=2 yoffset=18 xadvance=6 page=0 chnl=0 +char id=247 x=128 y=282 width=18 height=16 xoffset=1 yoffset=16 xadvance=19 page=0 chnl=0 +char id=215 x=146 y=282 width=16 height=15 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=187 x=162 y=282 width=13 height=15 xoffset=1 yoffset=18 xadvance=14 page=0 chnl=0 +char id=186 x=175 y=282 width=12 height=15 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=185 x=187 y=282 width=5 height=15 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=179 x=192 y=282 width=11 height=15 xoffset=2 yoffset=10 xadvance=13 page=0 chnl=0 +char id=42 x=203 y=282 width=15 height=15 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 +char id=62 x=218 y=282 width=16 height=15 xoffset=1 yoffset=19 xadvance=17 page=0 chnl=0 +char id=60 x=234 y=282 width=15 height=15 xoffset=1 yoffset=19 xadvance=17 page=0 chnl=0 +char id=178 x=0 y=302 width=11 height=14 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=171 x=11 y=302 width=12 height=14 xoffset=2 yoffset=20 xadvance=15 page=0 chnl=0 +char id=170 x=23 y=302 width=11 height=14 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0 +char id=94 x=34 y=302 width=12 height=14 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=61 x=46 y=302 width=15 height=10 xoffset=2 yoffset=19 xadvance=18 page=0 chnl=0 +char id=184 x=61 y=302 width=7 height=9 xoffset=1 yoffset=34 xadvance=8 page=0 chnl=0 +char id=44 x=68 y=302 width=4 height=9 xoffset=1 yoffset=31 xadvance=6 page=0 chnl=0 +char id=39 x=72 y=302 width=4 height=9 xoffset=1 yoffset=9 xadvance=5 page=0 chnl=0 +char id=34 x=76 y=302 width=7 height=9 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=176 x=83 y=302 width=10 height=8 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=0 +char id=172 x=93 y=302 width=15 height=8 xoffset=1 yoffset=22 xadvance=18 page=0 chnl=0 +char id=180 x=108 y=302 width=7 height=7 xoffset=1 yoffset=10 xadvance=8 page=0 chnl=0 +char id=96 x=115 y=302 width=7 height=7 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=126 x=122 y=302 width=20 height=6 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=0 +char id=183 x=142 y=302 width=4 height=4 xoffset=2 yoffset=22 xadvance=8 page=0 chnl=0 +char id=175 x=146 y=302 width=12 height=3 xoffset=1 yoffset=10 xadvance=13 page=0 chnl=0 +char id=173 x=158 y=302 width=10 height=3 xoffset=0 yoffset=23 xadvance=10 page=0 chnl=0 +char id=168 x=168 y=302 width=12 height=3 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=95 x=180 y=302 width=16 height=3 xoffset=-1 yoffset=34 xadvance=14 page=0 chnl=0 +char id=45 x=196 y=302 width=10 height=3 xoffset=0 yoffset=23 xadvance=10 page=0 chnl=0 +char id=46 x=206 y=302 width=4 height=3 xoffset=2 yoffset=33 xadvance=7 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Roboto-hdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Roboto-hdpi.fnt new file mode 100644 index 0000000..04e7d92 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-hdpi/Roboto-hdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=27 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=37 base=29 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-hdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=29 xadvance=7 page=0 chnl=0 +char id=106 x=0 y=0 width=7 height=30 xoffset=-1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=254 x=7 y=0 width=14 height=29 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=41 x=21 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=40 x=30 y=0 width=9 height=29 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=255 x=39 y=0 width=15 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=253 x=54 y=0 width=15 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=197 x=69 y=0 width=19 height=28 xoffset=0 yoffset=2 xadvance=17 page=0 chnl=0 +char id=167 x=88 y=0 width=16 height=28 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=125 x=104 y=0 width=10 height=28 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=93 x=114 y=0 width=7 height=28 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=91 x=121 y=0 width=7 height=28 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=219 x=128 y=0 width=17 height=27 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=212 x=145 y=0 width=17 height=27 xoffset=1 yoffset=3 xadvance=18 page=0 chnl=0 +char id=206 x=162 y=0 width=10 height=27 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=202 x=172 y=0 width=15 height=27 xoffset=2 yoffset=3 xadvance=16 page=0 chnl=0 +char id=199 x=187 y=0 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=194 x=203 y=0 width=19 height=27 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 +char id=64 x=222 y=0 width=23 height=27 xoffset=1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=123 x=245 y=0 width=10 height=27 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=221 x=0 y=30 width=18 height=26 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 +char id=220 x=18 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=218 x=35 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=217 x=52 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=214 x=69 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=213 x=86 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=211 x=103 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=210 x=120 y=30 width=17 height=26 xoffset=1 yoffset=4 xadvance=18 page=0 chnl=0 +char id=209 x=137 y=30 width=16 height=26 xoffset=2 yoffset=4 xadvance=19 page=0 chnl=0 +char id=207 x=153 y=30 width=11 height=26 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=205 x=164 y=30 width=8 height=26 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=204 x=172 y=30 width=8 height=26 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=203 x=180 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=201 x=195 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=200 x=210 y=30 width=15 height=26 xoffset=2 yoffset=4 xadvance=16 page=0 chnl=0 +char id=196 x=225 y=30 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=195 x=0 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=193 x=19 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=192 x=38 y=56 width=19 height=26 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 +char id=36 x=57 y=56 width=14 height=26 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=166 x=71 y=56 width=5 height=25 xoffset=1 yoffset=9 xadvance=7 page=0 chnl=0 +char id=124 x=76 y=56 width=4 height=25 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=105 x=80 y=56 width=4 height=24 xoffset=2 yoffset=6 xadvance=7 page=0 chnl=0 +char id=81 x=84 y=56 width=18 height=24 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=251 x=102 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=244 x=116 y=56 width=15 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=238 x=131 y=56 width=10 height=23 xoffset=-1 yoffset=7 xadvance=7 page=0 chnl=0 +char id=234 x=141 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=231 x=155 y=56 width=14 height=23 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=229 x=169 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=226 x=183 y=56 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=181 x=197 y=56 width=13 height=23 xoffset=2 yoffset=13 xadvance=15 page=0 chnl=0 +char id=162 x=210 y=56 width=14 height=23 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=92 x=224 y=56 width=12 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=47 x=236 y=56 width=12 height=23 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=121 x=0 y=82 width=15 height=23 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=113 x=15 y=82 width=14 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=112 x=29 y=82 width=15 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=108 x=44 y=82 width=4 height=23 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=107 x=48 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=104 x=62 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=103 x=76 y=82 width=14 height=23 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=102 x=90 y=82 width=11 height=23 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=100 x=101 y=82 width=14 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=98 x=115 y=82 width=15 height=23 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=252 x=130 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=250 x=144 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=249 x=158 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=246 x=172 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=245 x=187 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=243 x=202 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=242 x=217 y=82 width=15 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=241 x=232 y=82 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=239 x=0 y=105 width=12 height=22 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=237 x=12 y=105 width=8 height=22 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=236 x=20 y=105 width=7 height=22 xoffset=-1 yoffset=8 xadvance=7 page=0 chnl=0 +char id=235 x=27 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=233 x=41 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=232 x=55 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=228 x=69 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=227 x=83 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=225 x=97 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=224 x=111 y=105 width=14 height=22 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=223 x=125 y=105 width=15 height=22 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=216 x=140 y=105 width=17 height=22 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=191 x=157 y=105 width=13 height=22 xoffset=1 yoffset=13 xadvance=13 page=0 chnl=0 +char id=161 x=170 y=105 width=5 height=22 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=240 x=175 y=105 width=16 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=222 x=191 y=105 width=14 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=208 x=205 y=105 width=19 height=21 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 +char id=198 x=224 y=105 width=27 height=21 xoffset=-1 yoffset=9 xadvance=25 page=0 chnl=0 +char id=190 x=0 y=127 width=23 height=21 xoffset=1 yoffset=9 xadvance=23 page=0 chnl=0 +char id=182 x=23 y=127 width=13 height=21 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 +char id=174 x=36 y=127 width=20 height=21 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=169 x=56 y=127 width=20 height=21 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=165 x=76 y=127 width=17 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=163 x=93 y=127 width=16 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=35 x=109 y=127 width=17 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=63 x=126 y=127 width=13 height=21 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 +char id=33 x=139 y=127 width=4 height=21 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=48 x=143 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=57 x=157 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=56 x=171 y=127 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=55 x=185 y=127 width=15 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=54 x=200 y=127 width=15 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=53 x=215 y=127 width=13 height=21 xoffset=2 yoffset=9 xadvance=15 page=0 chnl=0 +char id=52 x=228 y=127 width=16 height=21 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 +char id=51 x=0 y=148 width=14 height=21 xoffset=1 yoffset=9 xadvance=15 page=0 chnl=0 +char id=90 x=14 y=148 width=15 height=21 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=89 x=29 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=88 x=47 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=87 x=65 y=148 width=24 height=21 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 +char id=86 x=89 y=148 width=18 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=85 x=107 y=148 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=84 x=124 y=148 width=17 height=21 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 +char id=83 x=141 y=148 width=16 height=21 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=82 x=157 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=80 x=173 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=79 x=189 y=148 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=78 x=206 y=148 width=16 height=21 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=77 x=222 y=148 width=21 height=21 xoffset=2 yoffset=9 xadvance=24 page=0 chnl=0 +char id=76 x=0 y=169 width=14 height=21 xoffset=2 yoffset=9 xadvance=15 page=0 chnl=0 +char id=75 x=14 y=169 width=17 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=74 x=31 y=169 width=14 height=21 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 +char id=73 x=45 y=169 width=5 height=21 xoffset=2 yoffset=9 xadvance=8 page=0 chnl=0 +char id=72 x=50 y=169 width=16 height=21 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=71 x=66 y=169 width=17 height=21 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=70 x=83 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=69 x=98 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=68 x=113 y=169 width=16 height=21 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=67 x=129 y=169 width=16 height=21 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=66 x=145 y=169 width=15 height=21 xoffset=2 yoffset=9 xadvance=17 page=0 chnl=0 +char id=65 x=160 y=169 width=19 height=21 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 +char id=248 x=179 y=169 width=15 height=20 xoffset=1 yoffset=12 xadvance=15 page=0 chnl=0 +char id=189 x=194 y=169 width=20 height=20 xoffset=2 yoffset=10 xadvance=23 page=0 chnl=0 +char id=188 x=214 y=169 width=19 height=20 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=38 x=233 y=169 width=18 height=20 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 +char id=37 x=0 y=190 width=19 height=20 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=59 x=19 y=190 width=6 height=20 xoffset=1 yoffset=13 xadvance=7 page=0 chnl=0 +char id=50 x=25 y=190 width=15 height=20 xoffset=1 yoffset=10 xadvance=15 page=0 chnl=0 +char id=49 x=40 y=190 width=8 height=20 xoffset=2 yoffset=10 xadvance=15 page=0 chnl=0 +char id=116 x=48 y=190 width=10 height=20 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=164 x=58 y=190 width=18 height=19 xoffset=1 yoffset=12 xadvance=19 page=0 chnl=0 +char id=177 x=76 y=190 width=14 height=18 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=230 x=90 y=190 width=23 height=17 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 +char id=58 x=113 y=190 width=4 height=17 xoffset=2 yoffset=13 xadvance=7 page=0 chnl=0 +char id=122 x=117 y=190 width=13 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=120 x=130 y=190 width=14 height=17 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=119 x=144 y=190 width=21 height=17 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 +char id=118 x=165 y=190 width=15 height=17 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 +char id=117 x=180 y=190 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=115 x=194 y=190 width=13 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=114 x=207 y=190 width=9 height=17 xoffset=1 yoffset=13 xadvance=9 page=0 chnl=0 +char id=110 x=216 y=190 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=109 x=230 y=190 width=22 height=17 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=101 x=0 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=99 x=14 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=14 page=0 chnl=0 +char id=97 x=28 y=210 width=14 height=17 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=247 x=42 y=210 width=16 height=16 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 +char id=43 x=58 y=210 width=15 height=16 xoffset=1 yoffset=13 xadvance=15 page=0 chnl=0 +char id=111 x=73 y=210 width=15 height=16 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0 +char id=42 x=88 y=210 width=13 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=215 x=101 y=210 width=13 height=13 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=187 x=114 y=210 width=13 height=13 xoffset=1 yoffset=15 xadvance=13 page=0 chnl=0 +char id=179 x=127 y=210 width=10 height=13 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=178 x=137 y=210 width=10 height=13 xoffset=1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=171 x=147 y=210 width=12 height=13 xoffset=1 yoffset=15 xadvance=13 page=0 chnl=0 +char id=62 x=159 y=210 width=14 height=13 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=60 x=173 y=210 width=13 height=13 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=186 x=186 y=210 width=11 height=12 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=185 x=197 y=210 width=6 height=12 xoffset=1 yoffset=10 xadvance=7 page=0 chnl=0 +char id=170 x=203 y=210 width=11 height=12 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=94 x=214 y=210 width=12 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 +char id=61 x=226 y=210 width=13 height=9 xoffset=2 yoffset=15 xadvance=15 page=0 chnl=0 +char id=39 x=239 y=210 width=4 height=9 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=34 x=243 y=210 width=8 height=9 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=184 x=0 y=227 width=6 height=8 xoffset=1 yoffset=28 xadvance=7 page=0 chnl=0 +char id=176 x=6 y=227 width=9 height=8 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=172 x=15 y=227 width=13 height=8 xoffset=1 yoffset=17 xadvance=15 page=0 chnl=0 +char id=44 x=28 y=227 width=6 height=8 xoffset=0 yoffset=25 xadvance=5 page=0 chnl=0 +char id=180 x=34 y=227 width=8 height=6 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=126 x=42 y=227 width=17 height=6 xoffset=1 yoffset=18 xadvance=18 page=0 chnl=0 +char id=96 x=59 y=227 width=7 height=6 xoffset=1 yoffset=8 xadvance=8 page=0 chnl=0 +char id=183 x=66 y=227 width=4 height=5 xoffset=2 yoffset=17 xadvance=7 page=0 chnl=0 +char id=168 x=70 y=227 width=11 height=5 xoffset=2 yoffset=8 xadvance=13 page=0 chnl=0 +char id=46 x=81 y=227 width=4 height=5 xoffset=2 yoffset=25 xadvance=7 page=0 chnl=0 +char id=175 x=85 y=227 width=12 height=4 xoffset=1 yoffset=9 xadvance=13 page=0 chnl=0 +char id=173 x=97 y=227 width=8 height=4 xoffset=0 yoffset=19 xadvance=7 page=0 chnl=0 +char id=95 x=105 y=227 width=14 height=4 xoffset=0 yoffset=28 xadvance=12 page=0 chnl=0 +char id=45 x=119 y=227 width=8 height=4 xoffset=0 yoffset=19 xadvance=7 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.atlas new file mode 100644 index 0000000..dcb467d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.atlas @@ -0,0 +1,456 @@ + +Holo-light-ldpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-ldpi + rotate: false + xy: 2, 289 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +Roboto-ldpi + rotate: false + xy: 260, 289 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 43, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 69, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 95, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 277, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 298, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 319, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 340, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 121, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 147, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 173, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 361, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 382, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 403, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 424, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 445, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 466, 263 + size: 19, 24 + split: 9, 9, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 193 + size: 18, 30 + orig: 18, 30 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 707 + size: 18, 30 + orig: 18, 30 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 43, 242 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 559, 780 + size: 21, 21 + split: 10, 10, 10, 10 + orig: 21, 21 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 266 + size: 39, 21 + split: 18, 19, 10, 10 + pad: 9, 9, 9, 9 + orig: 39, 21 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 780 + size: 39, 21 + split: 18, 19, 10, 10 + pad: 9, 9, 9, 9 + orig: 39, 21 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 508, 273 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 225 + size: 21, 39 + split: 10, 10, 18, 20 + pad: 9, 9, 9, 9 + orig: 21, 39 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 739 + size: 21, 39 + split: 10, 10, 18, 19 + pad: 9, 9, 9, 9 + orig: 21, 39 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 199, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 508, 278 + size: 7, 9 + split: 0, 0, 0, 7 + pad: 0, 0, 0, 0 + orig: 7, 9 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 582, 792 + size: 7, 9 + split: 0, 0, 0, 7 + pad: 0, 0, 0, 0 + orig: 7, 9 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 541, 743 + size: 7, 9 + split: 0, 0, 0, 7 + pad: 0, 0, 0, 0 + orig: 7, 9 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 2, 2 + size: 9, 7 + split: 0, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 7 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 518, 672 + size: 9, 7 + split: 0, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 7 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 57, 254 + size: 9, 7 + split: 0, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 7 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 25, 240 + size: 16, 24 + split: 3, 11, 3, 19 + pad: 3, 11, 5, 6 + orig: 16, 24 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 518, 681 + size: 16, 24 + split: 3, 11, 3, 19 + pad: 3, 11, 5, 6 + orig: 16, 24 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 562, 754 + size: 16, 24 + split: 3, 11, 3, 19 + pad: 3, 11, 5, 6 + orig: 16, 24 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 25, 226 + size: 14, 12 + split: 0, 14, 2, 9 + pad: 7, 6, 2, 8 + orig: 14, 12 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 43, 247 + size: 12, 14 + split: 2, 9, 0, 14 + pad: 2, 8, 7, 6 + orig: 12, 14 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 487, 263 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 541, 754 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 2, 167 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 2, 141 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 2, 115 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 2, 89 + size: 19, 24 + split: 8, 8, 12, 10 + pad: 8, 8, 6, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 582, 789 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 2, 63 + size: 19, 24 + split: 8, 8, 15, 7 + pad: 8, 8, 5, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 2, 37 + size: 19, 24 + split: 8, 8, 15, 7 + pad: 8, 8, 5, 6 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 2, 11 + size: 19, 24 + split: 8, 8, 15, 7 + pad: 8, 8, 5, 5 + orig: 19, 24 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 22, 222 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 225, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 251, 263 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 25, 223 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 538, 708 + size: 1, 29 + split: 0, 0, 28, 0 + orig: 1, 29 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.json new file mode 100644 index 0000000..ceaeaad --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-ldpi.fnt }, + thin-font: {file: Roboto-Thin-ldpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + opaque: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font }, + opaque-thin: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-light }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-light }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-light, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-light }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-light, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-light , background: text}, + default-thin: { font: thin-font, fontColor: text-light , background: text}, + default-opaque: { font: default-font, fontColor: text-light , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-light , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.png new file mode 100644 index 0000000..05f053e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Holo-light-ldpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Roboto-Thin-ldpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Roboto-Thin-ldpi.fnt new file mode 100644 index 0000000..cf49217 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Roboto-Thin-ldpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-ldpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=167 x=0 y=0 width=10 height=21 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=254 x=10 y=0 width=9 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=19 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=123 x=26 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=93 x=33 y=0 width=5 height=20 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=91 x=38 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=41 x=43 y=0 width=6 height=20 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=40 x=49 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=106 x=55 y=0 width=7 height=20 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=255 x=62 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=72 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=82 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=36 x=93 y=0 width=9 height=19 xoffset=1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=64 x=102 y=0 width=16 height=19 xoffset=1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=221 x=118 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=130 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=141 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=152 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=163 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=174 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=185 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=196 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=207 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=218 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=229 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=240 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=247 y=0 width=6 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=0 y=21 width=4 height=18 xoffset=2 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=4 y=21 width=4 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=8 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=202 x=18 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=201 x=28 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=200 x=38 y=21 width=10 height=18 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=196 x=48 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=195 x=60 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=194 x=72 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=193 x=84 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=192 x=96 y=21 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=166 x=108 y=21 width=2 height=18 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=110 y=21 width=3 height=18 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=197 x=113 y=21 width=12 height=17 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=92 x=125 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=133 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=240 x=141 y=21 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=216 x=151 y=21 width=11 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=191 x=162 y=21 width=9 height=16 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 +char id=190 x=171 y=21 width=15 height=16 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=181 x=186 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=195 y=21 width=9 height=16 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=161 x=204 y=21 width=3 height=16 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=121 x=207 y=21 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=217 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=226 y=21 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=235 y=21 width=3 height=16 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=107 x=238 y=21 width=9 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=247 y=21 width=3 height=16 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=104 x=0 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=9 y=39 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=100 x=18 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=27 y=39 width=9 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=36 y=39 width=11 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=47 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=56 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=65 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=74 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=83 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=94 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=105 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=116 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=127 y=39 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=138 y=39 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=147 y=39 width=7 height=15 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=238 x=154 y=39 width=6 height=15 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=237 x=160 y=39 width=4 height=15 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=236 x=164 y=39 width=4 height=15 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=235 x=168 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=234 x=178 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=233 x=188 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=232 x=198 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=231 x=208 y=39 width=10 height=15 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=229 x=218 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=228 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=238 y=39 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=0 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=10 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=20 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=30 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=40 y=55 width=12 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=52 y=55 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=189 x=69 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=188 x=82 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=182 x=95 y=55 width=8 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=174 x=103 y=55 width=14 height=15 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=165 x=117 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=128 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=38 x=139 y=55 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=150 y=55 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=162 y=55 width=13 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=33 x=175 y=55 width=3 height=15 xoffset=1 yoffset=5 xadvance=3 page=0 chnl=0 +char id=48 x=178 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=188 y=55 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=198 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=208 y=55 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=217 y=55 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=228 y=55 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=49 x=238 y=55 width=6 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=102 x=244 y=55 width=7 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=90 x=0 y=70 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=11 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=23 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=35 y=70 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=52 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=64 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=75 y=70 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=83 x=87 y=70 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=98 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=109 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=78 x=119 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=130 y=70 width=14 height=15 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=76 x=144 y=70 width=9 height=15 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=75 x=153 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=74 x=164 y=70 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=174 y=70 width=2 height=15 xoffset=2 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=176 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=187 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=198 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=208 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=68 x=218 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=229 y=70 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=66 x=240 y=70 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=65 x=0 y=85 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=248 x=12 y=85 width=11 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=223 x=23 y=85 width=10 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=169 x=33 y=85 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=164 x=47 y=85 width=13 height=14 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=63 x=60 y=85 width=9 height=14 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=57 x=69 y=85 width=10 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=79 y=85 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=51 x=90 y=85 width=10 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=100 y=85 width=6 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=79 x=106 y=85 width=11 height=14 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=177 x=117 y=85 width=11 height=13 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=59 x=128 y=85 width=3 height=13 xoffset=1 yoffset=9 xadvance=3 page=0 chnl=0 +char id=230 x=131 y=85 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=43 x=147 y=85 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=122 x=158 y=85 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=168 y=85 width=9 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=177 y=85 width=14 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=191 y=85 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=201 y=85 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=210 y=85 width=9 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=219 y=85 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=225 y=85 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=236 y=85 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=0 y=100 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=101 x=15 y=100 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=97 x=25 y=100 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=58 x=35 y=100 width=3 height=11 xoffset=1 yoffset=9 xadvance=3 page=0 chnl=0 +char id=99 x=38 y=100 width=10 height=11 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=247 x=48 y=100 width=11 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=179 x=59 y=100 width=7 height=10 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=178 x=66 y=100 width=6 height=10 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=42 x=72 y=100 width=9 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=215 x=81 y=100 width=10 height=9 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 +char id=187 x=91 y=100 width=8 height=9 xoffset=1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=186 x=99 y=100 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=185 x=106 y=100 width=4 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=171 x=110 y=100 width=9 height=9 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=170 x=119 y=100 width=7 height=9 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=94 x=126 y=100 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=62 x=134 y=100 width=9 height=9 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=143 y=100 width=10 height=9 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=184 x=153 y=100 width=5 height=6 xoffset=0 yoffset=18 xadvance=4 page=0 chnl=0 +char id=176 x=158 y=100 width=6 height=6 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=172 x=164 y=100 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=173 y=100 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=182 y=100 width=3 height=6 xoffset=1 yoffset=16 xadvance=3 page=0 chnl=0 +char id=39 x=185 y=100 width=2 height=6 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=187 y=100 width=4 height=6 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=180 x=191 y=100 width=4 height=5 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=96 x=195 y=100 width=4 height=5 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=126 x=199 y=100 width=11 height=4 xoffset=1 yoffset=12 xadvance=12 page=0 chnl=0 +char id=183 x=210 y=100 width=3 height=3 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0 +char id=175 x=213 y=100 width=8 height=3 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=173 x=221 y=100 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=168 x=227 y=100 width=7 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=95 x=234 y=100 width=10 height=3 xoffset=-1 yoffset=18 xadvance=7 page=0 chnl=0 +char id=45 x=244 y=100 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=46 x=250 y=100 width=3 height=3 xoffset=1 yoffset=17 xadvance=4 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Roboto-ldpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Roboto-ldpi.fnt new file mode 100644 index 0000000..0f863af --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-ldpi/Roboto-ldpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=14 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=19 base=15 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-ldpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=15 xadvance=3 page=0 chnl=0 +char id=254 x=0 y=0 width=8 height=16 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=253 x=8 y=0 width=8 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=106 x=16 y=0 width=5 height=16 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=255 x=21 y=0 width=8 height=15 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=221 x=29 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=219 x=39 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=218 x=48 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=217 x=57 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=213 x=66 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=212 x=76 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=211 x=86 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=210 x=96 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=209 x=106 y=0 width=9 height=15 xoffset=1 yoffset=1 xadvance=10 page=0 chnl=0 +char id=206 x=115 y=0 width=6 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=205 x=121 y=0 width=5 height=15 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=204 x=126 y=0 width=5 height=15 xoffset=-1 yoffset=1 xadvance=4 page=0 chnl=0 +char id=202 x=131 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=201 x=139 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=200 x=147 y=0 width=8 height=15 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=199 x=155 y=0 width=10 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=197 x=165 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=195 x=175 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=194 x=185 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=193 x=195 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=192 x=205 y=0 width=10 height=15 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=167 x=215 y=0 width=9 height=15 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=36 x=224 y=0 width=9 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=64 x=233 y=0 width=13 height=15 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=93 x=246 y=0 width=4 height=15 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=91 x=250 y=0 width=5 height=15 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=41 x=0 y=16 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=40 x=5 y=16 width=6 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=220 x=11 y=16 width=9 height=14 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=214 x=20 y=16 width=10 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=207 x=30 y=16 width=6 height=14 xoffset=-1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=203 x=36 y=16 width=8 height=14 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=196 x=44 y=16 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=166 x=54 y=16 width=4 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=124 x=58 y=16 width=3 height=14 xoffset=1 yoffset=4 xadvance=3 page=0 chnl=0 +char id=125 x=61 y=16 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=123 x=67 y=16 width=6 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=251 x=73 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=250 x=81 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=249 x=89 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=245 x=97 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=244 x=106 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=243 x=115 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=242 x=124 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=241 x=133 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=238 x=141 y=16 width=6 height=13 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=237 x=147 y=16 width=5 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=236 x=152 y=16 width=5 height=13 xoffset=-1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=234 x=157 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=233 x=165 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=232 x=173 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=229 x=181 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=227 x=189 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=226 x=197 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=225 x=205 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=224 x=213 y=16 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=223 x=221 y=16 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=216 x=230 y=16 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=191 x=240 y=16 width=8 height=13 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=181 x=248 y=16 width=7 height=13 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=162 x=0 y=31 width=8 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=161 x=8 y=31 width=4 height=13 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 +char id=92 x=12 y=31 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=47 x=19 y=31 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=121 x=26 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=113 x=34 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=112 x=42 y=31 width=9 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=108 x=51 y=31 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=107 x=54 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=105 x=63 y=31 width=3 height=13 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=104 x=66 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=103 x=75 y=31 width=8 height=13 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=102 x=83 y=31 width=6 height=13 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=100 x=89 y=31 width=8 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=98 x=97 y=31 width=9 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=81 x=106 y=31 width=11 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=252 x=117 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=246 x=125 y=31 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=239 x=134 y=31 width=6 height=12 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=235 x=140 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=231 x=148 y=31 width=8 height=12 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=228 x=156 y=31 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=222 x=164 y=31 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=208 x=172 y=31 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=198 x=182 y=31 width=15 height=12 xoffset=-1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=190 x=197 y=31 width=13 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=182 x=210 y=31 width=7 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=174 x=217 y=31 width=12 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=169 x=229 y=31 width=12 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=165 x=241 y=31 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=163 x=0 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=38 x=9 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=35 x=19 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=63 x=29 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=33 x=37 y=44 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=55 x=40 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=53 x=49 y=44 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=52 x=57 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=51 x=66 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=50 x=74 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=90 x=83 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=89 x=92 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=88 x=102 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=87 x=112 y=44 width=13 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=86 x=125 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=85 x=135 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=84 x=144 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=83 x=153 y=44 width=9 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=82 x=162 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=80 x=171 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=78 x=180 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=77 x=189 y=44 width=12 height=12 xoffset=1 yoffset=4 xadvance=12 page=0 chnl=0 +char id=76 x=201 y=44 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=75 x=209 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=74 x=218 y=44 width=8 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=73 x=226 y=44 width=3 height=12 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=72 x=229 y=44 width=9 height=12 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=71 x=238 y=44 width=10 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=70 x=0 y=56 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=69 x=8 y=56 width=8 height=12 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=68 x=16 y=56 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=67 x=25 y=56 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=66 x=35 y=56 width=9 height=12 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=65 x=44 y=56 width=10 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=248 x=54 y=56 width=9 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=240 x=63 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=189 x=72 y=56 width=11 height=11 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=188 x=83 y=56 width=11 height=11 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=94 y=56 width=11 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=59 x=105 y=56 width=4 height=11 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 +char id=48 x=109 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=57 x=118 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=56 x=127 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=54 x=136 y=56 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=49 x=145 y=56 width=5 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=116 x=150 y=56 width=6 height=11 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=79 x=156 y=56 width=10 height=11 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=177 x=166 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=164 x=174 y=56 width=11 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=58 x=185 y=56 width=3 height=10 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0 +char id=122 x=188 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=120 x=196 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=119 x=204 y=56 width=12 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=118 x=216 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=117 x=224 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=115 x=232 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=114 x=240 y=56 width=6 height=10 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=110 x=246 y=56 width=8 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=109 x=0 y=68 width=13 height=10 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 +char id=101 x=13 y=68 width=8 height=10 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=247 x=21 y=68 width=9 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=230 x=30 y=68 width=13 height=9 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=43 x=43 y=68 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=111 x=52 y=68 width=9 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=99 x=61 y=68 width=8 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=97 x=69 y=68 width=8 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=179 x=77 y=68 width=7 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=178 x=84 y=68 width=6 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=42 x=90 y=68 width=7 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=62 x=97 y=68 width=8 height=8 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=60 x=105 y=68 width=8 height=8 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=215 x=113 y=68 width=8 height=7 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=187 x=121 y=68 width=8 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=186 x=129 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=185 x=136 y=68 width=4 height=7 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=171 x=140 y=68 width=7 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=170 x=147 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=94 x=154 y=68 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=61 x=161 y=68 width=7 height=6 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=39 x=168 y=68 width=3 height=6 xoffset=0 yoffset=3 xadvance=2 page=0 chnl=0 +char id=34 x=171 y=68 width=6 height=6 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=184 x=177 y=68 width=4 height=5 xoffset=0 yoffset=14 xadvance=3 page=0 chnl=0 +char id=176 x=181 y=68 width=6 height=5 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=172 x=187 y=68 width=8 height=5 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=44 x=195 y=68 width=4 height=5 xoffset=0 yoffset=12 xadvance=3 page=0 chnl=0 +char id=180 x=199 y=68 width=5 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=126 x=204 y=68 width=10 height=4 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 +char id=96 x=214 y=68 width=5 height=4 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=183 x=219 y=68 width=3 height=3 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=175 x=222 y=68 width=7 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=173 x=229 y=68 width=5 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 +char id=168 x=234 y=68 width=6 height=3 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=95 x=240 y=68 width=8 height=3 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 +char id=45 x=248 y=68 width=5 height=3 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 +char id=46 x=0 y=78 width=3 height=3 xoffset=1 yoffset=13 xadvance=4 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.atlas new file mode 100644 index 0000000..ec1a983 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.atlas @@ -0,0 +1,456 @@ + +Holo-light-mdpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-mdpi + rotate: false + xy: 2, 509 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +Roboto-mdpi + rotate: false + xy: 260, 509 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 57, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 91, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 125, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 363, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 391, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 419, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 447, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 159, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 193, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 227, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 475, 475 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 549, 958 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 577, 958 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 2, 347 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 2, 313 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 2, 279 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 381 + size: 24, 40 + orig: 24, 40 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 895 + size: 24, 40 + orig: 24, 40 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 2, 2 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 573, 992 + size: 29, 29 + split: 14, 14, 14, 14 + orig: 29, 29 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 478 + size: 53, 29 + split: 25, 26, 14, 14 + pad: 12, 12, 12, 12 + orig: 53, 29 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 992 + size: 53, 29 + split: 25, 26, 14, 14 + pad: 12, 12, 12, 12 + orig: 53, 29 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 544, 932 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 423 + size: 29, 53 + split: 14, 14, 25, 27 + pad: 12, 12, 12, 12 + orig: 29, 53 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 937 + size: 29, 53 + split: 14, 14, 25, 26 + pad: 12, 12, 12, 12 + orig: 29, 53 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 261, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 503, 495 + size: 10, 12 + split: 0, 0, 0, 10 + pad: 0, 0, 0, 0 + orig: 10, 12 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 33, 430 + size: 10, 12 + split: 0, 0, 0, 10 + pad: 0, 0, 0, 0 + orig: 10, 12 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 57, 461 + size: 10, 12 + split: 0, 0, 0, 10 + pad: 0, 0, 0, 0 + orig: 10, 12 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 518, 781 + size: 12, 10 + split: 0, 10, 0, 0 + pad: 0, 0, 0, 0 + orig: 12, 10 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 570, 946 + size: 12, 10 + split: 0, 10, 0, 0 + pad: 0, 0, 0, 0 + orig: 12, 10 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 622, 1011 + size: 12, 10 + split: 0, 10, 0, 0 + pad: 0, 0, 0, 0 + orig: 12, 10 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 33, 444 + size: 22, 32 + split: 4, 16, 4, 26 + pad: 4, 16, 7, 8 + orig: 22, 32 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 518, 827 + size: 22, 32 + split: 4, 16, 4, 26 + pad: 4, 16, 7, 8 + orig: 22, 32 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 518, 793 + size: 22, 32 + split: 4, 16, 4, 26 + pad: 4, 16, 7, 8 + orig: 22, 32 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 549, 940 + size: 19, 16 + split: 0, 19, 3, 12 + pad: 9, 9, 3, 11 + orig: 19, 16 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 604, 1002 + size: 16, 19 + split: 3, 12, 0, 19 + pad: 3, 11, 9, 9 + orig: 16, 19 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 2, 245 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 2, 211 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 2, 177 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 2, 143 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 2, 109 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 2, 75 + size: 26, 32 + split: 12, 12, 16, 14 + pad: 12, 12, 8, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 542, 858 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 2, 41 + size: 26, 32 + split: 12, 12, 20, 10 + pad: 12, 12, 7, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 2, 7 + size: 26, 32 + split: 12, 12, 20, 10 + pad: 12, 12, 7, 8 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 518, 861 + size: 26, 32 + split: 12, 11, 20, 9 + pad: 12, 11, 7, 7 + orig: 26, 32 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 549, 937 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 295, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 329, 475 + size: 32, 32 + orig: 32, 32 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 604, 999 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 28, 382 + size: 1, 39 + split: 0, 0, 38, 0 + orig: 1, 39 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.json new file mode 100644 index 0000000..18ef28c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-mdpi.fnt }, + thin-font: {file: Roboto-Thin-mdpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + opaque: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font }, + opaque-thin: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-light }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-light }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-light, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-light }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-light, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-light , background: text}, + default-thin: { font: thin-font, fontColor: text-light , background: text}, + default-opaque: { font: default-font, fontColor: text-light , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-light , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.png new file mode 100644 index 0000000..833fe70 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Holo-light-mdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Roboto-Thin-mdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Roboto-Thin-mdpi.fnt new file mode 100644 index 0000000..1c76442 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Roboto-Thin-mdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=22 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=30 base=24 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-Thin-mdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=24 xadvance=5 page=0 chnl=0 +char id=254 x=0 y=0 width=11 height=24 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=125 x=11 y=0 width=8 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=123 x=19 y=0 width=9 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=93 x=28 y=0 width=5 height=24 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=91 x=33 y=0 width=5 height=24 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=41 x=38 y=0 width=6 height=24 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=40 x=44 y=0 width=7 height=24 xoffset=1 yoffset=6 xadvance=7 page=0 chnl=0 +char id=106 x=51 y=0 width=7 height=24 xoffset=-2 yoffset=6 xadvance=5 page=0 chnl=0 +char id=255 x=58 y=0 width=12 height=23 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=253 x=70 y=0 width=12 height=23 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=199 x=82 y=0 width=13 height=23 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=167 x=95 y=0 width=12 height=23 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=64 x=107 y=0 width=19 height=23 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0 +char id=221 x=126 y=0 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=220 x=140 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=219 x=153 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=218 x=166 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=217 x=179 y=0 width=13 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=214 x=192 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=213 x=206 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=212 x=220 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=211 x=234 y=0 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=210 x=0 y=24 width=14 height=22 xoffset=1 yoffset=3 xadvance=15 page=0 chnl=0 +char id=209 x=14 y=24 width=13 height=22 xoffset=2 yoffset=3 xadvance=16 page=0 chnl=0 +char id=207 x=27 y=24 width=9 height=22 xoffset=-1 yoffset=3 xadvance=6 page=0 chnl=0 +char id=206 x=36 y=24 width=7 height=22 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=205 x=43 y=24 width=5 height=22 xoffset=2 yoffset=3 xadvance=6 page=0 chnl=0 +char id=204 x=48 y=24 width=5 height=22 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=203 x=53 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=202 x=64 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=201 x=75 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=200 x=86 y=24 width=11 height=22 xoffset=2 yoffset=3 xadvance=13 page=0 chnl=0 +char id=196 x=97 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=195 x=111 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=194 x=125 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=193 x=139 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=192 x=153 y=24 width=14 height=22 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 +char id=36 x=167 y=24 width=11 height=22 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=197 x=178 y=24 width=14 height=21 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=124 x=192 y=24 width=3 height=21 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=166 x=195 y=24 width=3 height=20 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=240 x=198 y=24 width=12 height=19 xoffset=1 yoffset=6 xadvance=13 page=0 chnl=0 +char id=231 x=210 y=24 width=11 height=19 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=216 x=221 y=24 width=14 height=19 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=191 x=235 y=24 width=9 height=19 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=181 x=244 y=24 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=162 x=0 y=46 width=11 height=19 xoffset=1 yoffset=9 xadvance=12 page=0 chnl=0 +char id=161 x=11 y=46 width=3 height=19 xoffset=1 yoffset=11 xadvance=4 page=0 chnl=0 +char id=92 x=14 y=46 width=9 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=47 x=23 y=46 width=9 height=19 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=121 x=32 y=46 width=12 height=19 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=113 x=44 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=112 x=55 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=108 x=66 y=46 width=3 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=107 x=69 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=105 x=80 y=46 width=3 height=19 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=104 x=83 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=103 x=94 y=46 width=11 height=19 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=102 x=105 y=46 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=100 x=114 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=98 x=125 y=46 width=11 height=19 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=81 x=136 y=46 width=14 height=19 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=252 x=150 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=251 x=161 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=250 x=172 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=249 x=183 y=46 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=246 x=194 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=245 x=207 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=244 x=220 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=243 x=233 y=46 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=242 x=0 y=65 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=241 x=13 y=65 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=239 x=24 y=65 width=11 height=18 xoffset=-2 yoffset=7 xadvance=4 page=0 chnl=0 +char id=238 x=35 y=65 width=8 height=18 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=237 x=43 y=65 width=5 height=18 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=236 x=48 y=65 width=5 height=18 xoffset=-1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=235 x=53 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=234 x=65 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=233 x=77 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=232 x=89 y=65 width=12 height=18 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=229 x=101 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=228 x=112 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=227 x=123 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=226 x=134 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=225 x=145 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=224 x=156 y=65 width=11 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=223 x=167 y=65 width=12 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=222 x=179 y=65 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=208 x=190 y=65 width=15 height=18 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=198 x=205 y=65 width=21 height=18 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=182 x=226 y=65 width=9 height=18 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=174 x=235 y=65 width=17 height=18 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=165 x=0 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=163 x=14 y=83 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=38 x=27 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=35 x=40 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=37 x=54 y=83 width=16 height=18 xoffset=1 yoffset=7 xadvance=16 page=0 chnl=0 +char id=63 x=70 y=83 width=9 height=18 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=33 x=79 y=83 width=3 height=18 xoffset=1 yoffset=7 xadvance=4 page=0 chnl=0 +char id=57 x=82 y=83 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=55 x=93 y=83 width=12 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=53 x=105 y=83 width=11 height=18 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=52 x=116 y=83 width=13 height=18 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=51 x=129 y=83 width=11 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=50 x=140 y=83 width=12 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=49 x=152 y=83 width=7 height=18 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=90 x=159 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=89 x=172 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=88 x=186 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=87 x=200 y=83 width=21 height=18 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=86 x=221 y=83 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=85 x=235 y=83 width=13 height=18 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=84 x=0 y=101 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=83 x=14 y=101 width=13 height=18 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=82 x=27 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=80 x=39 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=78 x=51 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=77 x=64 y=101 width=16 height=18 xoffset=2 yoffset=7 xadvance=19 page=0 chnl=0 +char id=76 x=80 y=101 width=10 height=18 xoffset=2 yoffset=7 xadvance=11 page=0 chnl=0 +char id=75 x=90 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=74 x=103 y=101 width=10 height=18 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=73 x=113 y=101 width=3 height=18 xoffset=2 yoffset=7 xadvance=6 page=0 chnl=0 +char id=72 x=116 y=101 width=13 height=18 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=70 x=129 y=101 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=69 x=140 y=101 width=11 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=68 x=151 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=67 x=163 y=101 width=13 height=18 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=66 x=176 y=101 width=12 height=18 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=65 x=188 y=101 width=14 height=18 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=248 x=202 y=101 width=13 height=17 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=190 x=215 y=101 width=19 height=17 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=189 x=234 y=101 width=16 height=17 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=188 x=0 y=119 width=16 height=17 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=169 x=16 y=119 width=17 height=17 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=48 x=33 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=56 x=45 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=54 x=57 y=119 width=12 height=17 xoffset=1 yoffset=8 xadvance=12 page=0 chnl=0 +char id=116 x=69 y=119 width=8 height=17 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=79 x=77 y=119 width=14 height=17 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=71 x=91 y=119 width=14 height=17 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=164 x=105 y=119 width=15 height=16 xoffset=1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=59 x=120 y=119 width=3 height=16 xoffset=1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=177 x=123 y=119 width=13 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=230 x=136 y=119 width=18 height=14 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=43 x=154 y=119 width=13 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 +char id=122 x=167 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=120 x=178 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=119 x=189 y=119 width=17 height=14 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=118 x=206 y=119 width=11 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=117 x=217 y=119 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=115 x=228 y=119 width=10 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=114 x=238 y=119 width=8 height=14 xoffset=1 yoffset=11 xadvance=7 page=0 chnl=0 +char id=110 x=0 y=136 width=11 height=14 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=109 x=11 y=136 width=19 height=14 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=101 x=30 y=136 width=12 height=14 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=99 x=42 y=136 width=11 height=14 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=97 x=53 y=136 width=11 height=14 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=58 x=64 y=136 width=3 height=13 xoffset=1 yoffset=12 xadvance=4 page=0 chnl=0 +char id=111 x=67 y=136 width=13 height=13 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 +char id=247 x=80 y=136 width=13 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=215 x=93 y=136 width=11 height=11 xoffset=1 yoffset=12 xadvance=11 page=0 chnl=0 +char id=186 x=104 y=136 width=9 height=11 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=178 x=113 y=136 width=8 height=11 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=170 x=121 y=136 width=8 height=11 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=42 x=129 y=136 width=10 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=62 x=139 y=136 width=11 height=11 xoffset=1 yoffset=13 xadvance=11 page=0 chnl=0 +char id=60 x=150 y=136 width=11 height=11 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 +char id=187 x=161 y=136 width=9 height=10 xoffset=1 yoffset=13 xadvance=10 page=0 chnl=0 +char id=185 x=170 y=136 width=5 height=10 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=179 x=175 y=136 width=8 height=10 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=171 x=183 y=136 width=8 height=10 xoffset=1 yoffset=13 xadvance=10 page=0 chnl=0 +char id=94 x=191 y=136 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=176 x=199 y=136 width=7 height=7 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=172 x=206 y=136 width=10 height=7 xoffset=1 yoffset=15 xadvance=12 page=0 chnl=0 +char id=61 x=216 y=136 width=11 height=7 xoffset=1 yoffset=13 xadvance=12 page=0 chnl=0 +char id=39 x=227 y=136 width=3 height=7 xoffset=1 yoffset=6 xadvance=4 page=0 chnl=0 +char id=34 x=230 y=136 width=5 height=7 xoffset=1 yoffset=6 xadvance=6 page=0 chnl=0 +char id=184 x=235 y=136 width=6 height=6 xoffset=0 yoffset=24 xadvance=5 page=0 chnl=0 +char id=126 x=241 y=136 width=14 height=6 xoffset=1 yoffset=14 xadvance=15 page=0 chnl=0 +char id=44 x=0 y=150 width=3 height=6 xoffset=1 yoffset=22 xadvance=4 page=0 chnl=0 +char id=180 x=3 y=150 width=5 height=5 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=96 x=8 y=150 width=5 height=5 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=183 x=13 y=150 width=4 height=3 xoffset=1 yoffset=15 xadvance=5 page=0 chnl=0 +char id=175 x=17 y=150 width=9 height=3 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=173 x=26 y=150 width=7 height=3 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 +char id=168 x=33 y=150 width=9 height=3 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=95 x=42 y=150 width=12 height=3 xoffset=-1 yoffset=23 xadvance=9 page=0 chnl=0 +char id=45 x=54 y=150 width=7 height=3 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 +char id=46 x=61 y=150 width=3 height=3 xoffset=1 yoffset=22 xadvance=5 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Roboto-mdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Roboto-mdpi.fnt new file mode 100644 index 0000000..40541db --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-mdpi/Roboto-mdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=18 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=24 base=19 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-mdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 +char id=254 x=0 y=0 width=10 height=20 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=93 x=10 y=0 width=5 height=20 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=91 x=15 y=0 width=5 height=20 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=40 x=20 y=0 width=6 height=20 xoffset=1 yoffset=4 xadvance=6 page=0 chnl=0 +char id=106 x=26 y=0 width=6 height=20 xoffset=-1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=255 x=32 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=253 x=42 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=199 x=52 y=0 width=11 height=19 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=167 x=63 y=0 width=12 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=64 x=75 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=41 x=92 y=0 width=6 height=19 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=221 x=98 y=0 width=12 height=18 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=220 x=110 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=219 x=121 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=218 x=132 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=217 x=143 y=0 width=11 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=214 x=154 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=213 x=166 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=212 x=178 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=211 x=190 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=210 x=202 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=209 x=214 y=0 width=12 height=18 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=207 x=226 y=0 width=8 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=206 x=234 y=0 width=7 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=205 x=241 y=0 width=6 height=18 xoffset=1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=204 x=247 y=0 width=6 height=18 xoffset=-1 yoffset=2 xadvance=5 page=0 chnl=0 +char id=203 x=0 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=202 x=11 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=201 x=22 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=200 x=33 y=20 width=11 height=18 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=197 x=44 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=196 x=57 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=195 x=70 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=194 x=83 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=193 x=96 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=192 x=109 y=20 width=13 height=18 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 +char id=36 x=122 y=20 width=10 height=18 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=125 x=132 y=20 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=123 x=139 y=20 width=7 height=18 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=166 x=146 y=20 width=4 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=124 x=150 y=20 width=3 height=17 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=231 x=153 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=223 x=163 y=20 width=10 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=216 x=173 y=20 width=12 height=16 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=181 x=185 y=20 width=9 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=162 x=194 y=20 width=10 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=92 x=204 y=20 width=9 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=47 x=213 y=20 width=8 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=121 x=221 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=113 x=231 y=20 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=112 x=241 y=20 width=10 height=16 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=108 x=251 y=20 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=107 x=0 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=105 x=10 y=38 width=4 height=16 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=104 x=14 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=103 x=24 y=38 width=10 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=102 x=34 y=38 width=8 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=100 x=42 y=38 width=10 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=98 x=52 y=38 width=10 height=16 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=81 x=62 y=38 width=12 height=16 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=252 x=74 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=251 x=83 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=250 x=92 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=249 x=101 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=246 x=110 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=245 x=121 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=244 x=132 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=243 x=143 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=242 x=154 y=38 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=241 x=165 y=38 width=9 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=239 x=174 y=38 width=8 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=238 x=182 y=38 width=7 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=237 x=189 y=38 width=5 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=236 x=194 y=38 width=6 height=15 xoffset=-1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=235 x=200 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=234 x=210 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=233 x=220 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=232 x=230 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=229 x=240 y=38 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=228 x=0 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=227 x=10 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=226 x=20 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=225 x=30 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=224 x=40 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=222 x=50 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=208 x=60 y=54 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=198 x=73 y=54 width=19 height=15 xoffset=-1 yoffset=5 xadvance=17 page=0 chnl=0 +char id=191 x=92 y=54 width=9 height=15 xoffset=1 yoffset=8 xadvance=9 page=0 chnl=0 +char id=182 x=101 y=54 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=165 x=110 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=163 x=122 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=161 x=133 y=54 width=4 height=15 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=38 x=137 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=35 x=149 y=54 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=37 x=161 y=54 width=14 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 +char id=63 x=175 y=54 width=9 height=15 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=33 x=184 y=54 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=48 x=188 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=55 x=198 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=54 x=209 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=53 x=219 y=54 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=52 x=229 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=51 x=240 y=54 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=50 x=0 y=69 width=11 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=90 x=11 y=69 width=11 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=89 x=22 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=88 x=34 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=87 x=46 y=69 width=17 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 +char id=86 x=63 y=69 width=13 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=85 x=76 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=84 x=87 y=69 width=12 height=15 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=82 x=99 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=80 x=111 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=79 x=122 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=78 x=134 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=77 x=146 y=69 width=15 height=15 xoffset=1 yoffset=5 xadvance=16 page=0 chnl=0 +char id=76 x=161 y=69 width=10 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=75 x=171 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=74 x=183 y=69 width=10 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 +char id=73 x=193 y=69 width=4 height=15 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=72 x=197 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=71 x=209 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=70 x=220 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=69 x=231 y=69 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=68 x=242 y=69 width=12 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=67 x=0 y=84 width=11 height=15 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=66 x=11 y=84 width=11 height=15 xoffset=1 yoffset=5 xadvance=12 page=0 chnl=0 +char id=65 x=22 y=84 width=13 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=240 x=35 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=190 x=46 y=84 width=17 height=14 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 +char id=189 x=63 y=84 width=14 height=14 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=188 x=77 y=84 width=14 height=14 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=174 x=91 y=84 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=169 x=106 y=84 width=15 height=14 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 +char id=164 x=121 y=84 width=14 height=14 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=59 x=135 y=84 width=5 height=14 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 +char id=57 x=140 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=56 x=151 y=84 width=11 height=14 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 +char id=49 x=162 y=84 width=6 height=14 xoffset=1 yoffset=6 xadvance=10 page=0 chnl=0 +char id=116 x=168 y=84 width=7 height=14 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=83 x=175 y=84 width=12 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=248 x=187 y=84 width=11 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=177 x=198 y=84 width=10 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=247 x=208 y=84 width=11 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=230 x=219 y=84 width=16 height=12 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 +char id=58 x=235 y=84 width=4 height=12 xoffset=1 yoffset=8 xadvance=5 page=0 chnl=0 +char id=122 x=239 y=84 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=120 x=0 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=119 x=10 y=99 width=15 height=12 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 +char id=118 x=25 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=117 x=35 y=99 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=115 x=44 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=114 x=54 y=99 width=6 height=12 xoffset=1 yoffset=8 xadvance=6 page=0 chnl=0 +char id=111 x=60 y=99 width=11 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=110 x=71 y=99 width=9 height=12 xoffset=1 yoffset=8 xadvance=10 page=0 chnl=0 +char id=109 x=80 y=99 width=15 height=12 xoffset=1 yoffset=8 xadvance=16 page=0 chnl=0 +char id=99 x=95 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=97 x=105 y=99 width=10 height=12 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=42 x=115 y=99 width=9 height=11 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=43 x=124 y=99 width=11 height=11 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=101 x=135 y=99 width=10 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=62 x=145 y=99 width=9 height=10 xoffset=1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=60 x=154 y=99 width=9 height=10 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=215 x=163 y=99 width=10 height=9 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=187 x=173 y=99 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=186 x=182 y=99 width=8 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=171 x=190 y=99 width=9 height=9 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 +char id=170 x=199 y=99 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=94 x=206 y=99 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=185 x=214 y=99 width=5 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=179 x=219 y=99 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=178 x=227 y=99 width=7 height=8 xoffset=1 yoffset=6 xadvance=8 page=0 chnl=0 +char id=176 x=234 y=99 width=6 height=7 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=39 x=240 y=99 width=4 height=7 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=244 y=99 width=7 height=7 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=184 x=251 y=99 width=4 height=6 xoffset=1 yoffset=18 xadvance=4 page=0 chnl=0 +char id=172 x=0 y=111 width=9 height=6 xoffset=1 yoffset=11 xadvance=10 page=0 chnl=0 +char id=61 x=9 y=111 width=9 height=6 xoffset=1 yoffset=10 xadvance=10 page=0 chnl=0 +char id=44 x=18 y=111 width=4 height=6 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=126 x=22 y=111 width=12 height=5 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=183 x=34 y=111 width=4 height=4 xoffset=1 yoffset=11 xadvance=5 page=0 chnl=0 +char id=180 x=38 y=111 width=5 height=4 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=168 x=43 y=111 width=8 height=4 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=46 x=51 y=111 width=4 height=4 xoffset=1 yoffset=16 xadvance=5 page=0 chnl=0 +char id=96 x=55 y=111 width=6 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=175 x=61 y=111 width=8 height=3 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=173 x=69 y=111 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 +char id=95 x=75 y=111 width=10 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 +char id=45 x=85 y=111 width=6 height=3 xoffset=0 yoffset=12 xadvance=5 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.atlas b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.atlas new file mode 100644 index 0000000..e8d41ec --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.atlas @@ -0,0 +1,456 @@ + +Holo-light-xhdpi.png +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +Roboto-Thin-xhdpi + rotate: false + xy: 2, 490 + size: 256, 532 + orig: 256, 532 + offset: 0, 0 + index: -1 +Roboto-xhdpi + rotate: false + xy: 260, 510 + size: 256, 512 + orig: 256, 512 + offset: 0, 0 + index: -1 +btn_check_off + rotate: false + xy: 110, 424 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_check_on + rotate: false + xy: 176, 424 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_check_on_focused + rotate: false + xy: 626, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_default_disabled + rotate: false + xy: 2, 174 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_default_focused + rotate: false + xy: 2, 108 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_default_normal + rotate: false + xy: 2, 42 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_default_pressed + rotate: false + xy: 518, 708 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_radio_off + rotate: false + xy: 692, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_radio_on + rotate: false + xy: 758, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_radio_on_focused + rotate: false + xy: 824, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +btn_toggle_off_disabled + rotate: false + xy: 518, 642 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_off_focused + rotate: false + xy: 518, 576 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_off_normal + rotate: false + xy: 518, 510 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_on_focused + rotate: false + xy: 174, 358 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_on_normal + rotate: false + xy: 684, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +btn_toggle_on_pressed + rotate: false + xy: 738, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +icon-blitz + rotate: false + xy: 2, 240 + size: 49, 80 + orig: 49, 80 + offset: 0, 0 + index: -1 +icon-blitz_pressed + rotate: false + xy: 518, 774 + size: 49, 80 + orig: 49, 80 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 2, 2 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_corner + rotate: false + xy: 624, 898 + size: 58, 58 + split: 28, 28, 28, 28 + orig: 58, 58 + offset: 0, 0 + index: -1 +scroll_horizontal + rotate: false + xy: 2, 430 + size: 106, 58 + split: 50, 53, 28, 28 + pad: 25, 25, 25, 25 + orig: 106, 58 + offset: 0, 0 + index: -1 +scroll_horizontal_knob + rotate: false + xy: 518, 964 + size: 106, 58 + split: 50, 53, 28, 28 + pad: 25, 25, 25, 25 + orig: 106, 58 + offset: 0, 0 + index: -1 +scroll_opaque + rotate: false + xy: 7, 2 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +scroll_vertical + rotate: false + xy: 2, 322 + size: 58, 106 + split: 28, 29, 51, 54 + pad: 25, 25, 25, 25 + orig: 58, 106 + offset: 0, 0 + index: -1 +scroll_vertical_knob + rotate: false + xy: 518, 856 + size: 58, 106 + split: 28, 28, 50, 53 + pad: 25, 25, 25, 25 + orig: 58, 106 + offset: 0, 0 + index: -1 +scrubber_control_normal + rotate: false + xy: 890, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +scrubber_primary + rotate: false + xy: 894, 866 + size: 20, 24 + split: 0, 0, 0, 20 + pad: 0, 0, 0, 0 + orig: 20, 24 + offset: 0, 0 + index: -1 +scrubber_secondary + rotate: false + xy: 894, 840 + size: 20, 24 + split: 0, 0, 0, 20 + pad: 0, 0, 0, 0 + orig: 20, 24 + offset: 0, 0 + index: -1 +scrubber_track + rotate: false + xy: 916, 866 + size: 20, 24 + split: 0, 0, 0, 20 + pad: 0, 0, 0, 0 + orig: 20, 24 + offset: 0, 0 + index: -1 +scrubber_vertical_primary + rotate: false + xy: 938, 870 + size: 24, 20 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 24, 20 + offset: 0, 0 + index: -1 +scrubber_vertical_secondary + rotate: false + xy: 964, 870 + size: 24, 20 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 24, 20 + offset: 0, 0 + index: -1 +scrubber_vertical_track + rotate: false + xy: 260, 488 + size: 24, 20 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 24, 20 + offset: 0, 0 + index: -1 +spinner_default + rotate: false + xy: 62, 364 + size: 44, 64 + split: 8, 32, 8, 52 + pad: 8, 32, 14, 16 + orig: 44, 64 + offset: 0, 0 + index: -1 +spinner_focused + rotate: false + xy: 578, 898 + size: 44, 64 + split: 8, 32, 8, 52 + pad: 8, 32, 14, 16 + orig: 44, 64 + offset: 0, 0 + index: -1 +spinner_pressed + rotate: false + xy: 632, 832 + size: 44, 64 + split: 8, 32, 8, 52 + pad: 8, 32, 14, 16 + orig: 44, 64 + offset: 0, 0 + index: -1 +splitpane_horizontal + rotate: false + xy: 2, 7 + size: 39, 33 + split: 0, 39, 7, 25 + pad: 19, 19, 6, 24 + orig: 39, 33 + offset: 0, 0 + index: -1 +splitpane_vertical + rotate: false + xy: 62, 323 + size: 33, 39 + split: 7, 25, 0, 39 + pad: 6, 24, 19, 19 + orig: 33, 39 + offset: 0, 0 + index: -1 +text + rotate: false + xy: 792, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_focused + rotate: false + xy: 846, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_focused_opaque + rotate: false + xy: 900, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_opaque + rotate: false + xy: 954, 892 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_selected + rotate: false + xy: 578, 832 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +text_selected_opaque + rotate: false + xy: 678, 826 + size: 52, 64 + split: 24, 24, 32, 28 + pad: 24, 24, 16, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_cursor + rotate: false + xy: 228, 421 + size: 2, 1 + split: 0, 1, 0, 0 + orig: 2, 1 + offset: 0, 0 + index: -1 +textfield_default + rotate: false + xy: 732, 826 + size: 52, 64 + split: 24, 24, 40, 20 + pad: 24, 24, 14, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_disabled + rotate: false + xy: 786, 826 + size: 52, 64 + split: 24, 24, 40, 20 + pad: 24, 24, 14, 16 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_focused + rotate: false + xy: 840, 826 + size: 52, 64 + split: 24, 23, 40, 19 + pad: 24, 23, 14, 15 + orig: 52, 64 + offset: 0, 0 + index: -1 +textfield_selection + rotate: false + xy: 1008, 955 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree_minus + rotate: false + xy: 956, 958 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +tree_plus + rotate: false + xy: 108, 358 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +white_pixel + rotate: false + xy: 569, 853 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 53, 242 + size: 3, 78 + split: 1, 1, 77, 0 + orig: 3, 78 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.json b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.json new file mode 100644 index 0000000..137de8e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.json @@ -0,0 +1,90 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: Roboto-xhdpi.fnt }, + thin-font: {file: Roboto-Thin-xhdpi.fnt} + }, + com.badlogic.gdx.graphics.Color: { + green: { a: 1, b: 0, g: 1, r: 0 }, + white: { a: 1, b: 1, g: 1, r: 1 }, + red: { a: 1, b: 0, g: 0, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + text-dark: { a: 1, b: 1, g: 1, r: 1 }, + text-light: { a: 1, b: 0, g: 0, r: 0 }, + text-light-dark: { a: 1, b: 0, g: 0, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { name: white_pixel, color: { r: 0, g: 0, b: 0, a: 0.45 } } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + opaque: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font }, + opaque-thin: { fontColorUnselected: text-light, selection: text_selected_opaque, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner}, + opaque: { vScroll: scroll_vertical, hScrollKnob: scroll_horizontal_knob, background: scroll_opaque, hScroll: scroll_horizontal, vScrollKnob: scroll_vertical_knob, corner: scroll_corner} + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light }, + default-thin: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, disabledFontColor: text-light}, + toggle-thin: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: btn_default_normal, down: btn_default_pressed, over: btn_default_focused, disabled: btn_default_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageDisabled: icon-blitz}, + toggle: { up: btn_toggle_off_normal, down: btn_toggle_on_pressed, over: btn_toggle_off_focused, checked: btn_toggle_on_normal, checkedOver: btn_toggle_on_focused, disabled: btn_toggle_off_disabled, imageUp: icon-blitz, imageDown: icon-blitz, imageOver: icon-blitz, imageChecked: icon-blitz_pressed, imageCheckedOver: icon-blitz_pressed, imageDisabled: icon-blitz } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default, scrollStyle: opaque, font: default-font, fontColor: text-light }, + default-thin: { background: spinner_default, backgroundOver: spinner_focused, backgroundOpen: spinner_pressed, listStyle: default-thin, scrollStyle: opaque, font: thin-font, fontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane_vertical }, + default-horizontal: { handle: splitpane_horizontal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default-font, background: window, titleFontColor: text-light }, + dialog: { titleFont: default-font, background: window, titleFontColor: text-light, stageBackground: dialogDim }, + default-thin: { titleFont: thin-font, background: window, titleFontColor: text-light }, + dialog-thin: { titleFont: thin-font, background: window, titleFontColor: text-light, stageBackground: dialogDim } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: scrubber_track, knob: scrubber_control_normal}, + default-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal}, + left-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_primary, knobAfter: scrubber_secondary}, + right-horizontal: { background: scrubber_track, knob: scrubber_control_normal, knobBefore: scrubber_secondary, knobAfter: scrubber_primary}, + up-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_primary, knobAfter: scrubber_vertical_secondary}, + down-vertical: { background: scrubber_vertical_track, knob: scrubber_control_normal, knobBefore: scrubber_vertical_secondary, knobAfter: scrubber_vertical_primary}, + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default-font, fontColor: text-light , background: text}, + default-thin: { font: thin-font, fontColor: text-light , background: text}, + default-opaque: { font: default-font, fontColor: text-light , background: text_opaque}, + default-thin-opaque: { font: thin-font, fontColor: text-light , background: text_opaque}, + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: default-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light }, + default-thin: { selection: textfield_selection, background: textfield_default, focusedBackground: textfield_focused, disabledBackground: textfield_disabled, font: thin-font, fontColor: text-light, focusedFontColor: text-light, disabledFontColor: text-light, cursor: textfield_cursor, messageFont: default-font, messageFontColor: text-light } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-thin: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_check_on, checkboxOff: btn_check_off, checkboxOver: btn_check_on_focused}, + default-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: default-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused}, + default-thin-radio: { up: text, down: btn_default_pressed, over: btn_default_focused, checked: text, checkedOver: btn_default_focused, disabled: btn_default_disabled, font: thin-font, fontColor: text-light , downFontColor: text-light, overFontColor: text-light, checkedFontColor: text-light, checkedOverFontColor: text-light, disabledFontColor: text-light, checkboxOn: btn_radio_on, checkboxOff: btn_radio_off, checkboxOver: btn_radio_on_focused} + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: default-font }, + default-thin: { fontColorUnselected: text-light, selection: text_selected, fontColorSelected: text-light, font: thin-font } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: text, knob: scrubber_control_normal } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree_minus, plus: tree_plus, over: text_focused, selection: text_selected , background: text_opaque} + } +} diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.png b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.png new file mode 100644 index 0000000..ccfb6c1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Holo-light-xhdpi.png differ diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Roboto-Thin-xhdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Roboto-Thin-xhdpi.fnt new file mode 100644 index 0000000..fd0d077 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Roboto-Thin-xhdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Thin" size=44 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=59 base=47 scaleW=256 scaleH=512 pages=2 packed=0 +page id=0 file="Roboto-Thin-xhdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=47 xadvance=11 page=0 chnl=0 +char id=41 x=0 y=0 width=11 height=47 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=40 x=11 y=0 width=11 height=47 xoffset=3 yoffset=11 xadvance=13 page=0 chnl=0 +char id=125 x=22 y=0 width=14 height=46 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 +char id=123 x=36 y=0 width=15 height=46 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=254 x=51 y=0 width=20 height=45 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=167 x=71 y=0 width=23 height=45 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=93 x=94 y=0 width=8 height=45 xoffset=-1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=91 x=102 y=0 width=8 height=45 xoffset=3 yoffset=10 xadvance=9 page=0 chnl=0 +char id=106 x=110 y=0 width=14 height=45 xoffset=-4 yoffset=12 xadvance=10 page=0 chnl=0 +char id=255 x=124 y=0 width=22 height=43 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 +char id=253 x=146 y=0 width=22 height=43 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 +char id=199 x=168 y=0 width=24 height=43 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=219 x=192 y=0 width=24 height=42 xoffset=3 yoffset=6 xadvance=29 page=0 chnl=0 +char id=217 x=216 y=0 width=24 height=42 xoffset=3 yoffset=6 xadvance=29 page=0 chnl=0 +char id=214 x=0 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=213 x=26 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=212 x=52 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=211 x=78 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=210 x=104 y=47 width=26 height=42 xoffset=2 yoffset=6 xadvance=29 page=0 chnl=0 +char id=206 x=130 y=47 width=13 height=42 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=204 x=143 y=47 width=8 height=42 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 +char id=202 x=151 y=47 width=21 height=42 xoffset=4 yoffset=6 xadvance=25 page=0 chnl=0 +char id=200 x=172 y=47 width=21 height=42 xoffset=4 yoffset=6 xadvance=25 page=0 chnl=0 +char id=194 x=193 y=47 width=27 height=42 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 +char id=192 x=220 y=47 width=27 height=42 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 +char id=36 x=0 y=89 width=21 height=42 xoffset=2 yoffset=10 xadvance=24 page=0 chnl=0 +char id=64 x=21 y=89 width=38 height=42 xoffset=2 yoffset=15 xadvance=41 page=0 chnl=0 +char id=221 x=59 y=89 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=220 x=86 y=89 width=24 height=41 xoffset=3 yoffset=7 xadvance=29 page=0 chnl=0 +char id=218 x=110 y=89 width=24 height=41 xoffset=3 yoffset=7 xadvance=29 page=0 chnl=0 +char id=209 x=134 y=89 width=24 height=41 xoffset=4 yoffset=7 xadvance=31 page=0 chnl=0 +char id=207 x=158 y=89 width=16 height=41 xoffset=-1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=205 x=174 y=89 width=8 height=41 xoffset=4 yoffset=7 xadvance=11 page=0 chnl=0 +char id=203 x=182 y=89 width=21 height=41 xoffset=4 yoffset=7 xadvance=25 page=0 chnl=0 +char id=201 x=203 y=89 width=21 height=41 xoffset=4 yoffset=7 xadvance=25 page=0 chnl=0 +char id=197 x=224 y=89 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=196 x=0 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=195 x=27 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=193 x=54 y=131 width=27 height=41 xoffset=0 yoffset=7 xadvance=26 page=0 chnl=0 +char id=166 x=81 y=131 width=3 height=40 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=124 x=84 y=131 width=4 height=40 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=81 x=88 y=131 width=27 height=38 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0 +char id=92 x=115 y=131 width=16 height=37 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=47 x=131 y=131 width=16 height=37 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=216 x=147 y=131 width=26 height=36 xoffset=2 yoffset=13 xadvance=29 page=0 chnl=0 +char id=162 x=173 y=131 width=20 height=36 xoffset=2 yoffset=17 xadvance=24 page=0 chnl=0 +char id=108 x=193 y=131 width=4 height=36 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0 +char id=107 x=197 y=131 width=19 height=36 xoffset=3 yoffset=12 xadvance=21 page=0 chnl=0 +char id=105 x=216 y=131 width=4 height=36 xoffset=3 yoffset=12 xadvance=9 page=0 chnl=0 +char id=104 x=220 y=131 width=19 height=36 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=102 x=239 y=131 width=15 height=36 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=100 x=0 y=172 width=20 height=36 xoffset=2 yoffset=12 xadvance=24 page=0 chnl=0 +char id=98 x=20 y=172 width=20 height=36 xoffset=3 yoffset=12 xadvance=24 page=0 chnl=0 +char id=244 x=40 y=172 width=23 height=35 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=242 x=63 y=172 width=23 height=35 xoffset=1 yoffset=13 xadvance=24 page=0 chnl=0 +char id=240 x=86 y=172 width=22 height=35 xoffset=2 yoffset=13 xadvance=25 page=0 chnl=0 +char id=234 x=108 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=233 x=129 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=232 x=150 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=22 page=0 chnl=0 +char id=231 x=171 y=172 width=20 height=35 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=226 x=191 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=225 x=212 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=224 x=233 y=172 width=21 height=35 xoffset=1 yoffset=13 xadvance=23 page=0 chnl=0 +char id=191 x=0 y=208 width=17 height=35 xoffset=2 yoffset=22 xadvance=20 page=0 chnl=0 +char id=181 x=17 y=208 width=19 height=35 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=121 x=36 y=208 width=22 height=35 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 +char id=113 x=58 y=208 width=20 height=35 xoffset=2 yoffset=22 xadvance=24 page=0 chnl=0 +char id=112 x=78 y=208 width=20 height=35 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=103 x=98 y=208 width=20 height=35 xoffset=2 yoffset=22 xadvance=24 page=0 chnl=0 +char id=252 x=118 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=251 x=137 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=250 x=156 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=249 x=175 y=208 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=246 x=194 y=208 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=245 x=217 y=208 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=243 x=0 y=243 width=23 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=241 x=23 y=243 width=19 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=239 x=42 y=243 width=18 height=34 xoffset=-2 yoffset=14 xadvance=9 page=0 chnl=0 +char id=238 x=60 y=243 width=14 height=34 xoffset=-1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=237 x=74 y=243 width=8 height=34 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=236 x=82 y=243 width=8 height=34 xoffset=-1 yoffset=14 xadvance=9 page=0 chnl=0 +char id=235 x=90 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=22 page=0 chnl=0 +char id=229 x=111 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=228 x=132 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=227 x=153 y=243 width=21 height=34 xoffset=1 yoffset=14 xadvance=23 page=0 chnl=0 +char id=223 x=174 y=243 width=21 height=34 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0 +char id=222 x=195 y=243 width=21 height=34 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0 +char id=208 x=216 y=243 width=27 height=34 xoffset=1 yoffset=14 xadvance=29 page=0 chnl=0 +char id=198 x=0 y=277 width=38 height=34 xoffset=1 yoffset=14 xadvance=39 page=0 chnl=0 +char id=190 x=38 y=277 width=34 height=34 xoffset=3 yoffset=14 xadvance=36 page=0 chnl=0 +char id=182 x=72 y=277 width=16 height=34 xoffset=2 yoffset=14 xadvance=20 page=0 chnl=0 +char id=174 x=88 y=277 width=32 height=34 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 +char id=169 x=120 y=277 width=33 height=34 xoffset=2 yoffset=14 xadvance=36 page=0 chnl=0 +char id=165 x=153 y=277 width=25 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=161 x=178 y=277 width=4 height=34 xoffset=3 yoffset=22 xadvance=9 page=0 chnl=0 +char id=38 x=182 y=277 width=25 height=34 xoffset=2 yoffset=14 xadvance=27 page=0 chnl=0 +char id=35 x=207 y=277 width=26 height=34 xoffset=1 yoffset=14 xadvance=27 page=0 chnl=0 +char id=63 x=233 y=277 width=17 height=34 xoffset=2 yoffset=14 xadvance=19 page=0 chnl=0 +char id=33 x=250 y=277 width=4 height=34 xoffset=3 yoffset=14 xadvance=9 page=0 chnl=0 +char id=48 x=0 y=311 width=21 height=34 xoffset=3 yoffset=14 xadvance=25 page=0 chnl=0 +char id=57 x=21 y=311 width=20 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=56 x=41 y=311 width=22 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=55 x=63 y=311 width=22 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=54 x=85 y=311 width=21 height=34 xoffset=3 yoffset=14 xadvance=24 page=0 chnl=0 +char id=53 x=106 y=311 width=20 height=34 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0 +char id=52 x=126 y=311 width=24 height=34 xoffset=1 yoffset=14 xadvance=24 page=0 chnl=0 +char id=51 x=150 y=311 width=21 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=50 x=171 y=311 width=22 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=49 x=193 y=311 width=12 height=34 xoffset=4 yoffset=14 xadvance=24 page=0 chnl=0 +char id=90 x=205 y=311 width=24 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=89 x=0 y=345 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=88 x=27 y=345 width=25 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=87 x=52 y=345 width=39 height=34 xoffset=1 yoffset=14 xadvance=40 page=0 chnl=0 +char id=86 x=91 y=345 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=85 x=118 y=345 width=24 height=34 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=84 x=142 y=345 width=26 height=34 xoffset=1 yoffset=14 xadvance=26 page=0 chnl=0 +char id=83 x=168 y=345 width=24 height=34 xoffset=2 yoffset=14 xadvance=26 page=0 chnl=0 +char id=82 x=192 y=345 width=23 height=34 xoffset=4 yoffset=14 xadvance=29 page=0 chnl=0 +char id=80 x=215 y=345 width=22 height=34 xoffset=4 yoffset=14 xadvance=26 page=0 chnl=0 +char id=79 x=0 y=379 width=26 height=34 xoffset=2 yoffset=14 xadvance=29 page=0 chnl=0 +char id=78 x=26 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0 +char id=77 x=50 y=379 width=31 height=34 xoffset=4 yoffset=14 xadvance=38 page=0 chnl=0 +char id=76 x=81 y=379 width=19 height=34 xoffset=4 yoffset=14 xadvance=23 page=0 chnl=0 +char id=75 x=100 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=28 page=0 chnl=0 +char id=74 x=124 y=379 width=19 height=34 xoffset=2 yoffset=14 xadvance=24 page=0 chnl=0 +char id=73 x=143 y=379 width=3 height=34 xoffset=5 yoffset=14 xadvance=11 page=0 chnl=0 +char id=72 x=146 y=379 width=24 height=34 xoffset=4 yoffset=14 xadvance=31 page=0 chnl=0 +char id=71 x=170 y=379 width=25 height=34 xoffset=3 yoffset=14 xadvance=30 page=0 chnl=0 +char id=70 x=195 y=379 width=21 height=34 xoffset=4 yoffset=14 xadvance=25 page=0 chnl=0 +char id=69 x=216 y=379 width=21 height=34 xoffset=4 yoffset=14 xadvance=25 page=0 chnl=0 +char id=68 x=0 y=413 width=23 height=34 xoffset=4 yoffset=14 xadvance=29 page=0 chnl=0 +char id=67 x=23 y=413 width=24 height=34 xoffset=3 yoffset=14 xadvance=29 page=0 chnl=0 +char id=66 x=47 y=413 width=22 height=34 xoffset=4 yoffset=14 xadvance=27 page=0 chnl=0 +char id=65 x=69 y=413 width=27 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 +char id=189 x=96 y=413 width=31 height=33 xoffset=2 yoffset=15 xadvance=31 page=0 chnl=0 +char id=188 x=127 y=413 width=31 height=33 xoffset=2 yoffset=15 xadvance=33 page=0 chnl=0 +char id=163 x=158 y=413 width=23 height=33 xoffset=1 yoffset=15 xadvance=25 page=0 chnl=0 +char id=37 x=181 y=413 width=30 height=33 xoffset=2 yoffset=15 xadvance=33 page=0 chnl=0 +char id=248 x=211 y=413 width=23 height=32 xoffset=1 yoffset=19 xadvance=24 page=0 chnl=0 +char id=116 x=234 y=413 width=14 height=32 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=59 x=248 y=413 width=5 height=31 xoffset=2 yoffset=23 xadvance=8 page=0 chnl=0 +char id=164 x=0 y=447 width=29 height=30 xoffset=2 yoffset=19 xadvance=32 page=0 chnl=0 +char id=177 x=29 y=447 width=24 height=28 xoffset=1 yoffset=18 xadvance=23 page=0 chnl=0 +char id=230 x=53 y=447 width=35 height=26 xoffset=2 yoffset=22 xadvance=37 page=0 chnl=0 +char id=122 x=88 y=447 width=20 height=26 xoffset=1 yoffset=22 xadvance=21 page=0 chnl=0 +char id=120 x=108 y=447 width=20 height=26 xoffset=1 yoffset=22 xadvance=21 page=0 chnl=0 +char id=119 x=128 y=447 width=32 height=26 xoffset=1 yoffset=22 xadvance=33 page=0 chnl=0 +char id=118 x=160 y=447 width=22 height=26 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 +char id=117 x=182 y=447 width=19 height=26 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=115 x=201 y=447 width=19 height=26 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=114 x=220 y=447 width=13 height=26 xoffset=3 yoffset=22 xadvance=15 page=0 chnl=0 +char id=111 x=0 y=477 width=23 height=26 xoffset=1 yoffset=22 xadvance=24 page=0 chnl=0 +char id=110 x=23 y=477 width=19 height=26 xoffset=3 yoffset=22 xadvance=24 page=0 chnl=0 +char id=109 x=42 y=477 width=35 height=26 xoffset=3 yoffset=22 xadvance=39 page=0 chnl=0 +char id=101 x=77 y=477 width=21 height=26 xoffset=1 yoffset=22 xadvance=22 page=0 chnl=0 +char id=99 x=98 y=477 width=20 height=26 xoffset=2 yoffset=22 xadvance=22 page=0 chnl=0 +char id=97 x=118 y=477 width=21 height=26 xoffset=1 yoffset=22 xadvance=23 page=0 chnl=0 +char id=43 x=139 y=477 width=24 height=25 xoffset=1 yoffset=20 xadvance=25 page=0 chnl=0 +char id=58 x=163 y=477 width=4 height=25 xoffset=2 yoffset=23 xadvance=8 page=0 chnl=0 +char id=247 x=167 y=477 width=24 height=21 xoffset=1 yoffset=21 xadvance=25 page=0 chnl=0 +char id=215 x=191 y=477 width=20 height=20 xoffset=2 yoffset=23 xadvance=23 page=0 chnl=0 +char id=42 x=211 y=477 width=19 height=20 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 +char id=62 x=230 y=477 width=20 height=20 xoffset=2 yoffset=26 xadvance=23 page=0 chnl=0 +char id=45 x=0 y=503 width=12 height=3 xoffset=1 yoffset=32 xadvance=13 page=0 chnl=0 +char id=95 x=12 y=503 width=21 height=3 xoffset=-1 yoffset=46 xadvance=18 page=0 chnl=0 +char id=168 x=33 y=503 width=15 height=3 xoffset=3 yoffset=14 xadvance=19 page=0 chnl=0 +char id=173 x=48 y=503 width=12 height=3 xoffset=1 yoffset=32 xadvance=13 page=0 chnl=0 +char id=175 x=60 y=503 width=16 height=3 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=46 x=76 y=503 width=4 height=5 xoffset=3 yoffset=43 xadvance=9 page=0 chnl=0 +char id=183 x=80 y=503 width=5 height=5 xoffset=3 yoffset=29 xadvance=10 page=0 chnl=0 +char id=96 x=85 y=503 width=8 height=8 xoffset=2 yoffset=14 xadvance=12 page=0 chnl=0 +char id=180 x=93 y=503 width=8 height=8 xoffset=2 yoffset=14 xadvance=11 page=0 chnl=0 +char id=187 x=0 y=512 width=17 height=19 xoffset=2 yoffset=25 xadvance=19 page=0 chnl=0 +char id=186 x=17 y=512 width=15 height=19 xoffset=3 yoffset=14 xadvance=20 page=0 chnl=0 +char id=185 x=32 y=512 width=7 height=19 xoffset=1 yoffset=15 xadvance=10 page=0 chnl=0 +char id=179 x=39 y=512 width=14 height=19 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0 +char id=178 x=53 y=512 width=14 height=19 xoffset=2 yoffset=14 xadvance=17 page=0 chnl=0 +char id=171 x=67 y=512 width=16 height=19 xoffset=3 yoffset=26 xadvance=19 page=0 chnl=0 +char id=170 x=83 y=512 width=14 height=19 xoffset=3 yoffset=14 xadvance=19 page=0 chnl=0 +char id=60 x=97 y=512 width=20 height=19 xoffset=1 yoffset=26 xadvance=23 page=0 chnl=0 +char id=94 x=117 y=512 width=15 height=18 xoffset=2 yoffset=14 xadvance=18 page=0 chnl=0 +char id=176 x=132 y=512 width=12 height=12 xoffset=3 yoffset=14 xadvance=17 page=0 chnl=0 +char id=61 x=144 y=512 width=20 height=12 xoffset=3 yoffset=26 xadvance=25 page=0 chnl=0 +char id=39 x=164 y=512 width=4 height=12 xoffset=2 yoffset=12 xadvance=7 page=0 chnl=0 +char id=34 x=168 y=512 width=8 height=12 xoffset=2 yoffset=12 xadvance=11 page=0 chnl=0 +char id=184 x=176 y=512 width=9 height=11 xoffset=1 yoffset=46 xadvance=11 page=0 chnl=0 +char id=44 x=185 y=512 width=5 height=11 xoffset=2 yoffset=43 xadvance=8 page=0 chnl=0 +char id=172 x=190 y=512 width=19 height=10 xoffset=2 yoffset=30 xadvance=24 page=0 chnl=0 +char id=126 x=209 y=512 width=25 height=9 xoffset=3 yoffset=29 xadvance=30 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Roboto-xhdpi.fnt b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Roboto-xhdpi.fnt new file mode 100644 index 0000000..80c3c68 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/holo/skin/light-xhdpi/Roboto-xhdpi.fnt @@ -0,0 +1,194 @@ +info face="Roboto Regular" size=36 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=48 base=38 scaleW=256 scaleH=512 pages=1 packed=0 +page id=0 file="Roboto-xhdpi.png" +chars count=189 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=38 xadvance=9 page=0 chnl=0 +char id=41 x=0 y=0 width=11 height=39 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 +char id=40 x=11 y=0 width=11 height=38 xoffset=2 yoffset=9 xadvance=12 page=0 chnl=0 +char id=167 x=22 y=0 width=21 height=37 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=106 x=43 y=0 width=11 height=37 xoffset=-2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=254 x=54 y=0 width=18 height=36 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=253 x=72 y=0 width=19 height=36 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 +char id=93 x=91 y=0 width=8 height=36 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 +char id=91 x=99 y=0 width=9 height=36 xoffset=2 yoffset=8 xadvance=10 page=0 chnl=0 +char id=255 x=108 y=0 width=19 height=35 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 +char id=221 x=127 y=0 width=23 height=35 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 +char id=219 x=150 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=218 x=171 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=217 x=192 y=0 width=21 height=35 xoffset=2 yoffset=4 xadvance=24 page=0 chnl=0 +char id=213 x=213 y=0 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=212 x=0 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=211 x=23 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=210 x=46 y=39 width=23 height=35 xoffset=1 yoffset=4 xadvance=25 page=0 chnl=0 +char id=209 x=69 y=39 width=21 height=35 xoffset=3 yoffset=4 xadvance=26 page=0 chnl=0 +char id=206 x=90 y=39 width=12 height=35 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=205 x=102 y=39 width=9 height=35 xoffset=3 yoffset=4 xadvance=10 page=0 chnl=0 +char id=204 x=111 y=39 width=9 height=35 xoffset=-1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=202 x=120 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=201 x=139 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=200 x=158 y=39 width=19 height=35 xoffset=3 yoffset=4 xadvance=21 page=0 chnl=0 +char id=199 x=177 y=39 width=21 height=35 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=197 x=198 y=39 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=195 x=222 y=39 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=194 x=0 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=193 x=24 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=192 x=48 y=74 width=24 height=35 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 +char id=36 x=72 y=74 width=18 height=35 xoffset=2 yoffset=8 xadvance=20 page=0 chnl=0 +char id=64 x=90 y=74 width=31 height=35 xoffset=1 yoffset=12 xadvance=32 page=0 chnl=0 +char id=125 x=121 y=74 width=13 height=35 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=123 x=134 y=74 width=12 height=35 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0 +char id=220 x=146 y=74 width=21 height=34 xoffset=2 yoffset=5 xadvance=24 page=0 chnl=0 +char id=214 x=167 y=74 width=23 height=34 xoffset=1 yoffset=5 xadvance=25 page=0 chnl=0 +char id=207 x=190 y=74 width=17 height=34 xoffset=-2 yoffset=5 xadvance=10 page=0 chnl=0 +char id=203 x=207 y=74 width=19 height=34 xoffset=3 yoffset=5 xadvance=21 page=0 chnl=0 +char id=196 x=226 y=74 width=24 height=34 xoffset=0 yoffset=5 xadvance=23 page=0 chnl=0 +char id=166 x=0 y=109 width=6 height=33 xoffset=2 yoffset=11 xadvance=9 page=0 chnl=0 +char id=124 x=6 y=109 width=4 height=33 xoffset=3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=81 x=10 y=109 width=24 height=32 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=216 x=34 y=109 width=23 height=30 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=92 x=57 y=109 width=16 height=30 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 +char id=47 x=73 y=109 width=15 height=30 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 +char id=105 x=88 y=109 width=6 height=30 xoffset=2 yoffset=9 xadvance=9 page=0 chnl=0 +char id=251 x=94 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=250 x=111 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=249 x=128 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=245 x=145 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=244 x=164 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=243 x=183 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=242 x=202 y=109 width=19 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=241 x=221 y=109 width=17 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=238 x=238 y=109 width=13 height=29 xoffset=-1 yoffset=10 xadvance=9 page=0 chnl=0 +char id=237 x=0 y=142 width=11 height=29 xoffset=2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=236 x=11 y=142 width=11 height=29 xoffset=-2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=234 x=22 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=233 x=40 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=232 x=58 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=19 page=0 chnl=0 +char id=229 x=76 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=227 x=94 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=226 x=112 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=225 x=130 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=224 x=148 y=142 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=223 x=166 y=142 width=19 height=29 xoffset=2 yoffset=10 xadvance=21 page=0 chnl=0 +char id=162 x=185 y=142 width=18 height=29 xoffset=1 yoffset=15 xadvance=20 page=0 chnl=0 +char id=108 x=203 y=142 width=6 height=29 xoffset=2 yoffset=10 xadvance=9 page=0 chnl=0 +char id=107 x=209 y=142 width=18 height=29 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=104 x=227 y=142 width=18 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=102 x=0 y=171 width=14 height=29 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 +char id=100 x=14 y=171 width=18 height=29 xoffset=1 yoffset=10 xadvance=20 page=0 chnl=0 +char id=98 x=32 y=171 width=18 height=29 xoffset=2 yoffset=10 xadvance=20 page=0 chnl=0 +char id=252 x=50 y=171 width=17 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=246 x=67 y=171 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=240 x=86 y=171 width=19 height=28 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0 +char id=239 x=105 y=171 width=18 height=28 xoffset=-3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=235 x=123 y=171 width=18 height=28 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=231 x=141 y=171 width=18 height=28 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=228 x=159 y=171 width=18 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=222 x=177 y=171 width=19 height=28 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=0 +char id=208 x=196 y=171 width=24 height=28 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 +char id=198 x=0 y=200 width=36 height=28 xoffset=-1 yoffset=11 xadvance=34 page=0 chnl=0 +char id=191 x=36 y=200 width=16 height=28 xoffset=2 yoffset=18 xadvance=18 page=0 chnl=0 +char id=190 x=52 y=200 width=31 height=28 xoffset=1 yoffset=11 xadvance=31 page=0 chnl=0 +char id=182 x=83 y=200 width=15 height=28 xoffset=1 yoffset=11 xadvance=18 page=0 chnl=0 +char id=181 x=98 y=200 width=17 height=28 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=174 x=115 y=200 width=27 height=28 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=169 x=142 y=200 width=27 height=28 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=165 x=169 y=200 width=22 height=28 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 +char id=163 x=191 y=200 width=20 height=28 xoffset=1 yoffset=11 xadvance=21 page=0 chnl=0 +char id=161 x=211 y=200 width=6 height=28 xoffset=2 yoffset=18 xadvance=9 page=0 chnl=0 +char id=38 x=217 y=200 width=22 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=35 x=0 y=228 width=21 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=37 x=21 y=228 width=25 height=28 xoffset=1 yoffset=11 xadvance=26 page=0 chnl=0 +char id=63 x=46 y=228 width=16 height=28 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=33 x=62 y=228 width=5 height=28 xoffset=3 yoffset=11 xadvance=9 page=0 chnl=0 +char id=48 x=67 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=57 x=86 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=56 x=105 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=55 x=124 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=54 x=143 y=228 width=18 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=53 x=161 y=228 width=18 height=28 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=52 x=179 y=228 width=21 height=28 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 +char id=51 x=200 y=228 width=18 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=50 x=218 y=228 width=19 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=121 x=0 y=256 width=19 height=28 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=113 x=19 y=256 width=18 height=28 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=112 x=37 y=256 width=18 height=28 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=103 x=55 y=256 width=18 height=28 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=90 x=73 y=256 width=20 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=89 x=93 y=256 width=23 height=28 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 +char id=88 x=116 y=256 width=22 height=28 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=87 x=138 y=256 width=32 height=28 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 +char id=86 x=170 y=256 width=24 height=28 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 +char id=85 x=194 y=256 width=21 height=28 xoffset=2 yoffset=11 xadvance=24 page=0 chnl=0 +char id=84 x=215 y=256 width=22 height=28 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 +char id=83 x=0 y=284 width=21 height=28 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=82 x=21 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=24 page=0 chnl=0 +char id=80 x=42 y=284 width=20 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=79 x=62 y=284 width=23 height=28 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=78 x=85 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=0 +char id=77 x=106 y=284 width=27 height=28 xoffset=3 yoffset=11 xadvance=32 page=0 chnl=0 +char id=76 x=133 y=284 width=17 height=28 xoffset=3 yoffset=11 xadvance=19 page=0 chnl=0 +char id=75 x=150 y=284 width=22 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=74 x=172 y=284 width=17 height=28 xoffset=1 yoffset=11 xadvance=20 page=0 chnl=0 +char id=73 x=189 y=284 width=5 height=28 xoffset=3 yoffset=11 xadvance=10 page=0 chnl=0 +char id=72 x=194 y=284 width=21 height=28 xoffset=3 yoffset=11 xadvance=26 page=0 chnl=0 +char id=71 x=215 y=284 width=21 height=28 xoffset=2 yoffset=11 xadvance=25 page=0 chnl=0 +char id=70 x=236 y=284 width=19 height=28 xoffset=3 yoffset=11 xadvance=21 page=0 chnl=0 +char id=69 x=0 y=312 width=19 height=28 xoffset=3 yoffset=11 xadvance=21 page=0 chnl=0 +char id=68 x=19 y=312 width=21 height=28 xoffset=3 yoffset=11 xadvance=24 page=0 chnl=0 +char id=67 x=40 y=312 width=21 height=28 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=66 x=61 y=312 width=20 height=28 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=65 x=81 y=312 width=24 height=28 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 +char id=189 x=105 y=312 width=25 height=27 xoffset=3 yoffset=12 xadvance=30 page=0 chnl=0 +char id=188 x=130 y=312 width=25 height=27 xoffset=3 yoffset=12 xadvance=28 page=0 chnl=0 +char id=49 x=155 y=312 width=10 height=27 xoffset=3 yoffset=12 xadvance=20 page=0 chnl=0 +char id=59 x=165 y=312 width=7 height=25 xoffset=1 yoffset=18 xadvance=9 page=0 chnl=0 +char id=116 x=172 y=312 width=12 height=25 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 +char id=248 x=184 y=312 width=19 height=24 xoffset=1 yoffset=17 xadvance=20 page=0 chnl=0 +char id=177 x=203 y=312 width=18 height=24 xoffset=1 yoffset=15 xadvance=19 page=0 chnl=0 +char id=164 x=221 y=312 width=25 height=24 xoffset=1 yoffset=15 xadvance=26 page=0 chnl=0 +char id=230 x=0 y=340 width=30 height=21 xoffset=1 yoffset=18 xadvance=30 page=0 chnl=0 +char id=43 x=30 y=340 width=19 height=21 xoffset=1 yoffset=16 xadvance=20 page=0 chnl=0 +char id=58 x=49 y=340 width=6 height=21 xoffset=2 yoffset=18 xadvance=9 page=0 chnl=0 +char id=122 x=55 y=340 width=17 height=21 xoffset=1 yoffset=18 xadvance=18 page=0 chnl=0 +char id=120 x=72 y=340 width=19 height=21 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=119 x=91 y=340 width=28 height=21 xoffset=0 yoffset=18 xadvance=27 page=0 chnl=0 +char id=118 x=119 y=340 width=19 height=21 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 +char id=117 x=138 y=340 width=17 height=21 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=115 x=155 y=340 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=114 x=173 y=340 width=11 height=21 xoffset=2 yoffset=18 xadvance=12 page=0 chnl=0 +char id=111 x=184 y=340 width=19 height=21 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=110 x=203 y=340 width=17 height=21 xoffset=2 yoffset=18 xadvance=20 page=0 chnl=0 +char id=109 x=220 y=340 width=28 height=21 xoffset=2 yoffset=18 xadvance=31 page=0 chnl=0 +char id=101 x=0 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=99 x=18 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=97 x=36 y=361 width=18 height=21 xoffset=1 yoffset=18 xadvance=20 page=0 chnl=0 +char id=247 x=54 y=361 width=19 height=19 xoffset=1 yoffset=16 xadvance=21 page=0 chnl=0 +char id=42 x=73 y=361 width=16 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 +char id=62 x=89 y=361 width=17 height=18 xoffset=2 yoffset=20 xadvance=19 page=0 chnl=0 +char id=60 x=106 y=361 width=16 height=18 xoffset=1 yoffset=20 xadvance=18 page=0 chnl=0 +char id=215 x=122 y=361 width=18 height=17 xoffset=1 yoffset=18 xadvance=19 page=0 chnl=0 +char id=187 x=140 y=361 width=16 height=16 xoffset=1 yoffset=20 xadvance=17 page=0 chnl=0 +char id=186 x=156 y=361 width=14 height=16 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=0 +char id=179 x=170 y=361 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=178 x=184 y=361 width=12 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=171 x=196 y=361 width=16 height=16 xoffset=1 yoffset=21 xadvance=17 page=0 chnl=0 +char id=170 x=212 y=361 width=13 height=16 xoffset=2 yoffset=11 xadvance=16 page=0 chnl=0 +char id=185 x=225 y=361 width=7 height=15 xoffset=1 yoffset=12 xadvance=10 page=0 chnl=0 +char id=94 x=232 y=361 width=14 height=15 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=61 x=0 y=382 width=17 height=12 xoffset=2 yoffset=20 xadvance=20 page=0 chnl=0 +char id=34 x=17 y=382 width=11 height=12 xoffset=1 yoffset=10 xadvance=12 page=0 chnl=0 +char id=176 x=28 y=382 width=11 height=11 xoffset=2 yoffset=11 xadvance=13 page=0 chnl=0 +char id=39 x=39 y=382 width=5 height=11 xoffset=1 yoffset=10 xadvance=6 page=0 chnl=0 +char id=184 x=44 y=382 width=7 height=10 xoffset=2 yoffset=36 xadvance=9 page=0 chnl=0 +char id=172 x=51 y=382 width=16 height=10 xoffset=2 yoffset=23 xadvance=20 page=0 chnl=0 +char id=44 x=67 y=382 width=7 height=10 xoffset=0 yoffset=33 xadvance=7 page=0 chnl=0 +char id=126 x=74 y=382 width=22 height=9 xoffset=2 yoffset=23 xadvance=24 page=0 chnl=0 +char id=180 x=96 y=382 width=9 height=7 xoffset=2 yoffset=11 xadvance=12 page=0 chnl=0 +char id=96 x=105 y=382 width=9 height=7 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=183 x=114 y=382 width=6 height=6 xoffset=2 yoffset=22 xadvance=10 page=0 chnl=0 +char id=168 x=120 y=382 width=15 height=6 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=46 x=135 y=382 width=6 height=6 xoffset=2 yoffset=33 xadvance=10 page=0 chnl=0 +char id=175 x=141 y=382 width=14 height=5 xoffset=2 yoffset=11 xadvance=17 page=0 chnl=0 +char id=173 x=155 y=382 width=11 height=5 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 +char id=95 x=166 y=382 width=18 height=5 xoffset=0 yoffset=37 xadvance=16 page=0 chnl=0 +char id=45 x=184 y=382 width=11 height=5 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/README.md b/src/main/resources/omni_power/gdx-skins/kenney-pixel/README.md new file mode 100644 index 0000000..b41f71a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/README.md @@ -0,0 +1,54 @@ +# Kenney Pixel Theme + +This skin was based on free pixel art GUI assets created by the amazing [Kenney](http://kenney.nl/). The goal was to create a highly customizable skin, which would require a few lines of code to modify - rather than hours in image editors. + +![Kenney](preview-light.png) + +Thanks to its pixel-art*-ish* nature, it can be be easily scaled by *2, 3, 4* and so on, and still look pretty good. + +The atlas drawables are originally white - rather than providing assets in a specific color theme, this skin allows you to tint them however you like at runtime thanks to the `TintedDrawable` utility. All you have to do is modify the `Color` values (or `TintedDrawables` directly, if you want even more control) in `skin.json`: +``` + com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + gray: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + black: { r: 0, g: 0, b: 0, a: 1 }, + + up: { r: 0.6, g: 0.6, b: 0.6, a: 1 }, + over: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + down: { r: 0, g: 0.3, b: 0.5, a: 1 }, + checked: { r: 0, g: 0.3, b: 0.5, a: 1 }, + checkedOver: { r: 0, g: 0.4, b: 0.6, a: 1 }, + disabled: { r: 0.1, g: 0.1, b: 0.1, a: 1 }, + background: { r: 0.8, g: 0.8, b: 0.8, a: 1 }, + selection: { r: 0, g: 0.3, b: 0.5, a: 1 }, + semiTransparent: { r: 0, g: 0, b: 0, a: 0.6 }, + + font: down + fontOver: down + fontDown: gray + fontChecked: checkedOver + fontCheckedOver: checked + fontDisabled: gray + } +``` + +This is very convenient, as you can quickly try out different GUI themes without actually changing a single image. + +![Kenney](preview-dark.png) + +### Notes + +- All default **Scene2D** actors are supported. +- This will **NOT** work on the Android by default, as Android does not support classpath fonts loading. If you target Android, copy `arial-15.fnt` and `arial-15.png` from `com.badlogic.gdx.utils` package (in the main LibGDX jar) to `com/badlogic/gdx/utils` folder in your `assets` directory. Or - even better - add a custom font and replace the one in `skin.json`. +- Additional GUI icons are not provided. However, you can use the [raw assets](raw) to add your custom icons and repack the atlas. +- The assets were designed to be shown in pretty light palette. Keep in mind that if your theme colors are too dark, some details might be difficult to see. For example, it could be hard to determine if a check box is checked or not. If you really want a black(ish) skin, you can try "inverting" the colors of the original images: while they should all still be nearly white, keep the outlines *lighter* than the rest. +- A custom font is **not** included. While the images scale very nicely, the default **LibGDX** font is **not** pixel art and will not look so crispy when scaled up. Providing a custom font should be the first thing you'd generally want to do. +- Most actors with optional backgrounds (like `Tree`, `ScrollPane`, `List`) feature at least two styles: `default` (without any background) and `background`. +- Previews were created using [LML](https://github.com/czyzby/gdx-lml/tree/master/lml). In [raw assets folder](raw/extras) you can find the LML template used to create the previews, as well as the settings of the darker theme. +- Thanks to the fact that drawables are created at runtime, this skin allows you to prepare very responsive widgets that change their look when hovered, clicked, checked, disabled and so on. Many skin creators do not bother with preparing so many images; in this case, it was just a matter of a few JSON lines, so it required much less work. +- *Do not expect miracles.* This simple tinting mechanism is unable to create multi-color widgets, for example. To fully customize your theme, you might need to modify the assets manually in an image editor at some point. + +### License + +[CC0](https://creativecommons.org/publicdomain/zero/1.0/). [Kenney](http://kenney.nl/) is the original author of the assets, while [MJ](https://github.com/czyzby) modified them and prepared the skin. While it's not necessary, you can provide a link to [Kenney's website](http://kenney.nl/) and [MJ's LibGDX libraries](https://github.com/czyzby/gdx-lml) in your credits. + diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/preview-dark.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/preview-dark.png new file mode 100644 index 0000000..70738cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/preview-dark.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/preview-light.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/preview-light.png new file mode 100644 index 0000000..bf9864c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/preview-light.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/base-press.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/base-press.9.png new file mode 100644 index 0000000..f7d32b0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/base-press.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/base.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/base.9.png new file mode 100644 index 0000000..4953aed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/base.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-off.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-off.png new file mode 100644 index 0000000..7fdfe18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-on.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-on.png new file mode 100644 index 0000000..44530b3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-square.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-square.png new file mode 100644 index 0000000..3c11bde Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/check-square.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/cursor.9.png new file mode 100644 index 0000000..8107f5c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/dot.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/dot.png new file mode 100644 index 0000000..6c24eb8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/dot.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/README.md b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/README.md new file mode 100644 index 0000000..ec6732e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/README.md @@ -0,0 +1,4 @@ +- `basic.xcf`: **Gimp** file with basic images separated into layers. +- `dark.json`: dark version of the skin (a proof of concept used in the preview). +- `preview.lml`: [LML template](https://github.com/czyzby/gdx-lml/tree/master/lml) of most widgets, used to create the preview. +- `sheet.png`: original assets by [Kenney](http://kenney.nl/). diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/basic.xcf b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/basic.xcf new file mode 100644 index 0000000..df75a28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/basic.xcf differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/dark.json b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/dark.json new file mode 100644 index 0000000..bb345a2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/dark.json @@ -0,0 +1,178 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default: { file: com/badlogic/gdx/utils/arial-15.fnt } + }, + com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + gray: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + black: { r: 0, g: 0, b: 0, a: 1 }, + + up: { r: 0.2, g: 0.2, b: 0.3, a: 1 }, + over: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + down: { r: 0.5, g: 0.5, b: 0, a: 1 }, + checked: { r: 0.5, g: 0.5, b: 0, a: 1 }, + checkedOver: { r: 0.6, g: 0.6, b: 0, a: 1 }, + disabled: { r: 0.1, g: 0.1, b: 0.1, a: 1 }, + background: { r: 0.3, g: 0.3, b: 0.4, a: 1 }, + selection: { r: 0.5, g: 0.5, b: 0, a: 1 }, + semiTransparent: { r: 0, g: 0, b: 0, a: 0.6 }, + + font: down + fontOver: down + fontDown: gray + fontChecked: checkedOver + fontCheckedOver: checked + fontDisabled: gray + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + buttonUp: { name: base, color: up }, + buttonOver: { name: base, color: over }, + buttonDown: { name: base-press, color: down }, + buttonDisabled: { name: base, color: disabled }, + buttonChecked: { name: base, color: checked }, + buttonCheckedOver: { name: base, color: checkedOver }, + checkBoxOn: { name: check-on, color: up }, + checkBoxOff: { name: check-off, color: up }, + checkBoxOver: { name: check-off, color: over }, + checkBoxOnDisabled: { name: check-on, color: disabled }, + checkBoxOffDisabled: { name: check-off, color: disabled }, + checkBoxSquare: { name: check-square, color: up }, + checkBoxSquareDisabled: { name: check-square, color: disabled }, + radioOn: { name: radio-on, color: up }, + radioOff: { name: radio-off, color: up }, + radioOver: { name: radio-off, color: over }, + radioOnDisabled: { name: radio-on, color: disabled }, + radioOffDisabled: { name: radio-off, color: disabled }, + cross: { name: x, color: font }, + selection: { name: dot, color: selection }, + underlineSelection: { name: underline, color: selection }, + list: { name: outline-press, color: background }, + progressHorizontal: { name: progress, color: up }, + progressHorizontalKnob: { name: progress-on, color: down }, + progressHorizontalDisabled: { name: progress, color: disabled }, + progressHorizontalKnobDisabled: { name: progress-on, color: disabled }, + progressVertical: { name: progress-v, color: up }, + progressVerticalKnob: { name: progress-v-on, color: down }, + progressVerticalDisabled: { name: progress-v, color: disabled }, + progressVerticalKnobDisabled: { name: progress-v-on, color: disabled }, + scrollHorizontal: { name: scroll, color: up }, + scrollVertical: { name: scroll-v, color: up }, + scrollPane: { name: outline-press, color: background }, + selectBox: { name: select, color: up }, + selectOver: { name: select, color: over }, + selectDown: { name: select-press, color: up }, + selectDisabled: { name: select, color: disabled }, + selectList: { name: select-list, color: up }, + splitPane: { name: square, color: down }, + sliderHorizontal: { name: slider, color: up }, + sliderKnob: { name: knob, color: up }, + sliderKnobOver: { name: knob, color: over }, + sliderKnobDown: { name: knob, color: down }, + sliderKnobDisabled: { name: knob, color: disabled }, + sliderVertical: { name: slider-v, color: up }, + sliderVerticalKnob: { name: check-square, color: up }, + sliderVerticalKnobOver: { name: check-square, color: over }, + sliderVerticalKnobDown: { name: check-square, color: down }, + sliderVerticalKnobDisabled: { name: check-square, color: disabled }, + textField: { name: field, color: up }, + textFieldDown: { name: field, color: background }, + textFieldDisabled: { name: field, color: disabled }, + textFieldCursor: { name: cursor, color: font }, + tooltip: { name: outline-press, color: background }, + touchpad: { name: outline, color: background }, + touchpadKnob: { name: radio-off, color: down }, + tree: { name: outline-press, color: background }, + treeOver: { name: dot, color: over }, + treeMinus: { name: tree-minus, color: up }, + treePlus: { name: tree-plus, color: up }, + window: { name: window, color: background }, + alpha: { name: dot, color: semiTransparent } + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, disabled: buttonDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { checkboxOn: checkBoxOn, checkboxOff: checkBoxOff, checkboxOver: checkBoxOver, checkboxOnDisabled: checkBoxOnDisabled, + checkboxOffDisabled: checkBoxOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + square: { checkboxOn: checkBoxSquare, checkboxOff: checkBoxOff, checkboxOver: checkBoxOver, checkboxOnDisabled: checkBoxSquareDisabled, + checkboxOffDisabled: checkBoxOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + radio: { checkboxOn: radioOn, checkboxOff: radioOff, checkboxOver: radioOver, checkboxOnDisabled: radioOnDisabled, + checkboxOffDisabled: radioOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, imageUp: cross } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1, imageUp: cross } + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default, fontColor: font }, + white: { font: default, fontColor: white } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default }, + underline: { fontColorUnselected: font, selection: underlineSelection, fontColorSelected: fontDown, font: default }, + background: { background: list, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + }, + com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: progressHorizontal, knobBefore: progressHorizontalKnob, + disabledBackground: progressHorizontalDisabled, disabledKnobBefore: progressHorizontalKnobDisabled }, + default-vertical: { background: progressVertical, knobBefore: progressVerticalKnob, + disabledBackground: progressVerticalDisabled, disabledKnobBefore: progressVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { hScrollKnob: scrollHorizontal, vScrollKnob: scrollVertical }, + background: { background: scrollPane, hScrollKnob: scrollHorizontal, vScrollKnob: scrollVertical } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { font: default, fontColor: font, disabledFontColor: fontDisabled, background: selectBox, backgroundOver: selectOver, + backgroundOpen: selectDown, backgroundDisabled: selectDisabled, scrollStyle: default, listStyle: + { background: selectList, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: sliderHorizontal, knob: sliderKnob, knobOver: sliderKnobOver, knobDown: sliderKnobDown, + disabledKnob: sliderKnobDisabled }, + default-vertical: { background: sliderVertical, knob: sliderVerticalKnob, knobOver: sliderVerticalKnobOver, + knobDown: sliderVerticalKnobDown, disabledKnob: sliderVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitPane }, + default-horizontal: { handle: splitPane } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, + disabled: buttonDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: + fontDisabled, checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, pressedOffsetY: -1, pressedOffsetX: 1 }, + text: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: disabled, + pressedOffsetY: -1, pressedOffsetX: 1 }, + textToggle: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: + disabled, checkedFontColor: font, checkedOverFontColor: fontOver, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { font: default, messageFont: default, fontColor: font, focusedFontColor: fontOver, disabledFontColor: fontDisabled, + messageFontColor: fontDown, background: textField, focusedBackground: textFieldDown, disabledBackground: textFieldDisabled, + cursor: textFieldCursor, selection: selection } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { label: default, background: tooltip } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpadKnob } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: treeMinus, plus: treePlus, selection: selection, over: treeOver }, + background: { background: tree, minus: treeMinus, plus: treePlus, selection: selection, over: treeOver } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default, background: window, titleFontColor: fontDisabled }, + dialog: { titleFont: default, background: window, titleFontColor: fontDisabled, stageBackground: alpha } + } +} diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/preview.lml b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/preview.lml new file mode 100644 index 0000000..1a237fe --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/preview.lml @@ -0,0 +1,62 @@ + + + + Label +
+ + Text button + Checked + Text only + Text only checked +
+ + Check box + Checked + Square + Radio +
+ + + + <:loop times=7> + list{loop:index} + + + + +
+ + This is my + Select box + +
+ + Awaiting input... +
+ + + + + + + +
+ + + + + +
+
diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/sheet.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/sheet.png new file mode 100644 index 0000000..723ed94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/extras/sheet.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/field.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/field.9.png new file mode 100644 index 0000000..beab365 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/knob.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/knob.png new file mode 100644 index 0000000..674d31b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/outline-press.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/outline-press.9.png new file mode 100644 index 0000000..f9292ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/outline-press.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/outline.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/outline.9.png new file mode 100644 index 0000000..a07d111 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/outline.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/pack.json b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/pack.json new file mode 100644 index 0000000..92820d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/pack.json @@ -0,0 +1,7 @@ +{ + duplicatePadding: false, + paddingX: 1, + paddingY: 1, + stripWhitespaceX: true, + stripWhitespaceY: true +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-on.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-on.png new file mode 100644 index 0000000..59141fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-v-on.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-v-on.png new file mode 100644 index 0000000..fd6cbdf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-v-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-v.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-v.9.png new file mode 100644 index 0000000..860ab35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress.9.png new file mode 100644 index 0000000..c13f6bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/progress.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/radio-off.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/radio-off.png new file mode 100644 index 0000000..46851a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/radio-on.png new file mode 100644 index 0000000..4281619 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/scroll-v.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/scroll-v.9.png new file mode 100644 index 0000000..c3ac605 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/scroll-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/scroll.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/scroll.9.png new file mode 100644 index 0000000..6a6d91f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select-list.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select-list.9.png new file mode 100644 index 0000000..4ed4032 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select-list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select-press.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select-press.9.png new file mode 100644 index 0000000..cb7c35a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select-press.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select.9.png new file mode 100644 index 0000000..8807a85 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/select.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/slider-v.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/slider-v.9.png new file mode 100644 index 0000000..427b87d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/slider-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/slider.9.png new file mode 100644 index 0000000..80b41c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/square.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/square.png new file mode 100644 index 0000000..2519805 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/square.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/tree-minus.png new file mode 100644 index 0000000..9ed43b3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/tree-plus.png new file mode 100644 index 0000000..e2edcfc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/underline.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/underline.9.png new file mode 100644 index 0000000..2d116b9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/underline.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/window.9.png new file mode 100644 index 0000000..51dd9ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/x.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/x.png new file mode 100644 index 0000000..69a30b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/raw/x.png differ diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.atlas b/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.atlas new file mode 100644 index 0000000..ad92118 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.atlas @@ -0,0 +1,233 @@ + +skin.png +size: 256,32 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +base + rotate: false + xy: 164, 22 + size: 7, 9 + split: 3, 3, 3, 5 + orig: 7, 9 + offset: 0, 0 + index: -1 +base-press + rotate: false + xy: 156, 22 + size: 7, 9 + split: 3, 3, 3, 5 + orig: 7, 9 + offset: 0, 0 + index: -1 +check-off + rotate: false + xy: 55, 17 + size: 14, 14 + orig: 18, 14 + offset: 2, 0 + index: -1 +check-on + rotate: false + xy: 70, 17 + size: 14, 14 + orig: 18, 14 + offset: 2, 0 + index: -1 +check-square + rotate: false + xy: 85, 17 + size: 14, 14 + orig: 18, 14 + offset: 2, 0 + index: -1 +cursor + rotate: false + xy: 207, 28 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +dot + rotate: false + xy: 12, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +field + rotate: false + xy: 172, 22 + size: 7, 9 + split: 3, 3, 3, 5 + orig: 7, 9 + offset: 0, 0 + index: -1 +knob + rotate: false + xy: 130, 17 + size: 10, 14 + orig: 10, 14 + offset: 0, 0 + index: -1 +outline + rotate: false + xy: 188, 22 + size: 7, 9 + split: 3, 3, 3, 5 + orig: 7, 9 + offset: 0, 0 + index: -1 +outline-press + rotate: false + xy: 180, 22 + size: 7, 9 + split: 3, 3, 3, 5 + orig: 7, 9 + offset: 0, 0 + index: -1 +progress + rotate: false + xy: 201, 15 + size: 3, 16 + split: 1, 1, 0, 16 + orig: 3, 16 + offset: 0, 0 + index: -1 +progress-on + rotate: false + xy: 205, 19 + size: 1, 12 + orig: 1, 16 + offset: 0, 3 + index: -1 +progress-v + rotate: false + xy: 55, 7 + size: 16, 9 + split: 0, 16, 3, 5 + orig: 16, 9 + offset: 0, 0 + index: -1 +progress-v-on + rotate: false + xy: 1, 1 + size: 10, 1 + orig: 16, 1 + offset: 3, 0 + index: -1 +radio-off + rotate: false + xy: 100, 17 + size: 14, 14 + orig: 18, 14 + offset: 2, 0 + index: -1 +radio-on + rotate: false + xy: 115, 17 + size: 14, 14 + orig: 18, 14 + offset: 2, 0 + index: -1 +scroll + rotate: false + xy: 150, 19 + size: 5, 12 + split: 2, 2, 0, 12 + orig: 5, 12 + offset: 0, 0 + index: -1 +scroll-v + rotate: false + xy: 55, 1 + size: 12, 5 + split: 0, 12, 2, 2 + orig: 12, 5 + offset: 0, 0 + index: -1 +select + rotate: false + xy: 24, 3 + size: 22, 28 + split: 3, 18, 0, 28 + orig: 22, 28 + offset: 0, 0 + index: -1 +select-list + rotate: false + xy: 94, 13 + size: 7, 3 + split: 3, 3, 0, 2 + orig: 7, 3 + offset: 0, 0 + index: -1 +select-press + rotate: false + xy: 1, 3 + size: 22, 28 + split: 3, 18, 0, 28 + orig: 22, 28 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 68, 1 + size: 9, 5 + split: 4, 4, 0, 5 + orig: 9, 5 + offset: 0, 0 + index: -1 +slider-v + rotate: false + xy: 196, 22 + size: 4, 9 + split: 0, 4, 4, 4 + orig: 4, 9 + offset: 0, 0 + index: -1 +square + rotate: false + xy: 94, 9 + size: 3, 3 + orig: 3, 3 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 72, 8 + size: 12, 8 + orig: 12, 12 + offset: 0, 2 + index: -1 +tree-plus + rotate: false + xy: 141, 19 + size: 8, 12 + orig: 12, 12 + offset: 2, 0 + index: -1 +underline + rotate: false + xy: 156, 19 + size: 1, 2 + split: 0, 0, 0, 1 + orig: 1, 2 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 47, 3 + size: 7, 28 + split: 3, 3, 22, 5 + orig: 7, 28 + offset: 0, 0 + index: -1 +x + rotate: false + xy: 85, 8 + size: 8, 8 + orig: 8, 8 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.json b/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.json new file mode 100644 index 0000000..7fa5de5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.json @@ -0,0 +1,178 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default: { file: com/badlogic/gdx/utils/arial-15.fnt } + }, + com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + gray: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + black: { r: 0, g: 0, b: 0, a: 1 }, + + up: { r: 0.6, g: 0.6, b: 0.6, a: 1 }, + over: { r: 0.5, g: 0.5, b: 0.5, a: 1 }, + down: { r: 0, g: 0.3, b: 0.5, a: 1 }, + checked: { r: 0, g: 0.3, b: 0.5, a: 1 }, + checkedOver: { r: 0, g: 0.4, b: 0.6, a: 1 }, + disabled: { r: 0.1, g: 0.1, b: 0.1, a: 1 }, + background: { r: 0.8, g: 0.8, b: 0.8, a: 1 }, + selection: { r: 0, g: 0.3, b: 0.5, a: 1 }, + semiTransparent: { r: 0, g: 0, b: 0, a: 0.6 }, + + font: down + fontOver: down + fontDown: gray + fontChecked: checkedOver + fontCheckedOver: checked + fontDisabled: gray + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + buttonUp: { name: base, color: up }, + buttonOver: { name: base, color: over }, + buttonDown: { name: base-press, color: down }, + buttonDisabled: { name: base, color: disabled }, + buttonChecked: { name: base, color: checked }, + buttonCheckedOver: { name: base, color: checkedOver }, + checkBoxOn: { name: check-on, color: up }, + checkBoxOff: { name: check-off, color: up }, + checkBoxOver: { name: check-off, color: over }, + checkBoxOnDisabled: { name: check-on, color: disabled }, + checkBoxOffDisabled: { name: check-off, color: disabled }, + checkBoxSquare: { name: check-square, color: up }, + checkBoxSquareDisabled: { name: check-square, color: disabled }, + radioOn: { name: radio-on, color: up }, + radioOff: { name: radio-off, color: up }, + radioOver: { name: radio-off, color: over }, + radioOnDisabled: { name: radio-on, color: disabled }, + radioOffDisabled: { name: radio-off, color: disabled }, + cross: { name: x, color: font }, + selection: { name: dot, color: selection }, + underlineSelection: { name: underline, color: selection }, + list: { name: outline-press, color: background }, + progressHorizontal: { name: progress, color: up }, + progressHorizontalKnob: { name: progress-on, color: down }, + progressHorizontalDisabled: { name: progress, color: disabled }, + progressHorizontalKnobDisabled: { name: progress-on, color: disabled }, + progressVertical: { name: progress-v, color: up }, + progressVerticalKnob: { name: progress-v-on, color: down }, + progressVerticalDisabled: { name: progress-v, color: disabled }, + progressVerticalKnobDisabled: { name: progress-v-on, color: disabled }, + scrollHorizontal: { name: scroll, color: up }, + scrollVertical: { name: scroll-v, color: up }, + scrollPane: { name: outline-press, color: background }, + selectBox: { name: select, color: up }, + selectOver: { name: select, color: over }, + selectDown: { name: select-press, color: up }, + selectDisabled: { name: select, color: disabled }, + selectList: { name: select-list, color: up }, + splitPane: { name: square, color: down }, + sliderHorizontal: { name: slider, color: up }, + sliderKnob: { name: knob, color: up }, + sliderKnobOver: { name: knob, color: over }, + sliderKnobDown: { name: knob, color: down }, + sliderKnobDisabled: { name: knob, color: disabled }, + sliderVertical: { name: slider-v, color: up }, + sliderVerticalKnob: { name: check-square, color: up }, + sliderVerticalKnobOver: { name: check-square, color: over }, + sliderVerticalKnobDown: { name: check-square, color: down }, + sliderVerticalKnobDisabled: { name: check-square, color: disabled }, + textField: { name: field, color: up }, + textFieldDown: { name: field, color: background }, + textFieldDisabled: { name: field, color: disabled }, + textFieldCursor: { name: cursor, color: font }, + tooltip: { name: outline-press, color: background }, + touchpad: { name: outline, color: background }, + touchpadKnob: { name: radio-off, color: down }, + tree: { name: outline-press, color: background }, + treeOver: { name: dot, color: over }, + treeMinus: { name: tree-minus, color: up }, + treePlus: { name: tree-plus, color: up }, + window: { name: window, color: background }, + alpha: { name: dot, color: semiTransparent } + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, disabled: buttonDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { checkboxOn: checkBoxOn, checkboxOff: checkBoxOff, checkboxOver: checkBoxOver, checkboxOnDisabled: checkBoxOnDisabled, + checkboxOffDisabled: checkBoxOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + square: { checkboxOn: checkBoxSquare, checkboxOff: checkBoxOff, checkboxOver: checkBoxOver, checkboxOnDisabled: checkBoxSquareDisabled, + checkboxOffDisabled: checkBoxOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + radio: { checkboxOn: radioOn, checkboxOff: radioOff, checkboxOver: radioOver, checkboxOnDisabled: radioOnDisabled, + checkboxOffDisabled: radioOffDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, + checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, imageUp: cross } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1, imageUp: cross } + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default, fontColor: font }, + white: { font: default, fontColor: white } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default }, + underline: { fontColorUnselected: font, selection: underlineSelection, fontColorSelected: fontDown, font: default }, + background: { background: list, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + }, + com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: progressHorizontal, knobBefore: progressHorizontalKnob, + disabledBackground: progressHorizontalDisabled, disabledKnobBefore: progressHorizontalKnobDisabled }, + default-vertical: { background: progressVertical, knobBefore: progressVerticalKnob, + disabledBackground: progressVerticalDisabled, disabledKnobBefore: progressVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { hScrollKnob: scrollHorizontal, vScrollKnob: scrollVertical }, + background: { background: scrollPane, hScrollKnob: scrollHorizontal, vScrollKnob: scrollVertical } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { font: default, fontColor: font, disabledFontColor: fontDisabled, background: selectBox, backgroundOver: selectOver, + backgroundOpen: selectDown, backgroundDisabled: selectDisabled, scrollStyle: default, listStyle: + { background: selectList, fontColorUnselected: font, selection: selection, fontColorSelected: fontDown, font: default } + } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: sliderHorizontal, knob: sliderKnob, knobOver: sliderKnobOver, knobDown: sliderKnobDown, + disabledKnob: sliderKnobDisabled }, + default-vertical: { background: sliderVertical, knob: sliderVerticalKnob, knobOver: sliderVerticalKnobOver, + knobDown: sliderVerticalKnobDown, disabledKnob: sliderVerticalKnobDisabled } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitPane }, + default-horizontal: { handle: splitPane } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: buttonUp, over: buttonOver, down: buttonDown, disabled: buttonDisabled, font: default, fontColor: font, + overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: fontDisabled, pressedOffsetY: -1, pressedOffsetX: 1 }, + toggle: { up: buttonUp, over: buttonOver, down: buttonDown, checked: buttonChecked, checkedOver: buttonCheckedOver, + disabled: buttonDisabled, font: default, fontColor: font, overFontColor: fontOver, downFontColor: fontDown, disabledFontColor: + fontDisabled, checkedFontColor: fontChecked, checkedOverFontColor: fontCheckedOver, pressedOffsetY: -1, pressedOffsetX: 1 }, + text: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: disabled, + pressedOffsetY: -1, pressedOffsetX: 1 }, + textToggle: { font: default, fontColor: up, overFontColor: over, downFontColor: down, disabledFontColor: + disabled, checkedFontColor: font, checkedOverFontColor: fontOver, pressedOffsetY: -1, pressedOffsetX: 1 } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { font: default, messageFont: default, fontColor: font, focusedFontColor: fontOver, disabledFontColor: fontDisabled, + messageFontColor: fontDown, background: textField, focusedBackground: textFieldDown, disabledBackground: textFieldDisabled, + cursor: textFieldCursor, selection: selection } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { label: default, background: tooltip } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpadKnob } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: treeMinus, plus: treePlus, selection: selection, over: treeOver }, + background: { background: tree, minus: treeMinus, plus: treePlus, selection: selection, over: treeOver } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default, background: window, titleFontColor: fontDisabled }, + dialog: { titleFont: default, background: window, titleFontColor: fontDisabled, stageBackground: alpha } + } +} diff --git a/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.png b/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.png new file mode 100644 index 0000000..236c17d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/kenney-pixel/skin/skin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/JosefinSans.txt b/src/main/resources/omni_power/gdx-skins/level-plane/JosefinSans.txt new file mode 100644 index 0000000..480df7f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/JosefinSans.txt @@ -0,0 +1,92 @@ +Copyright (c) 2010, Santiago Orozco (hi@typemade.mx) +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/README.md b/src/main/resources/omni_power/gdx-skins/level-plane/README.md new file mode 100644 index 0000000..b5666f1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/README.md @@ -0,0 +1,23 @@ +# Level Plane UI + +``` +Level Plane UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2017 Raymond Buckley + +Level Plane UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Inspired by flat-design UIs. + +![Level Plane](preview.gif) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/level-plane-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font license](JosefinSans.txt). diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/preview.gif b/src/main/resources/omni_power/gdx-skins/level-plane/preview.gif new file mode 100644 index 0000000..4c40838 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1-down.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1-down.9.png new file mode 100644 index 0000000..9e0025d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1-down.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1-down.png new file mode 100644 index 0000000..be3ccd9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1.9.png new file mode 100644 index 0000000..5a4fcdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1.png new file mode 100644 index 0000000..8f836f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2-down.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2-down.9.png new file mode 100644 index 0000000..1758b49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2-down.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2-down.png new file mode 100644 index 0000000..91dcee7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2.9.png new file mode 100644 index 0000000..6de0a13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2.png new file mode 100644 index 0000000..a38b9d8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3-down.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3-down.9.png new file mode 100644 index 0000000..852624f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3-down.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3-down.png new file mode 100644 index 0000000..de5f0d6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3.9.png new file mode 100644 index 0000000..c977c6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3.png new file mode 100644 index 0000000..5ea35a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-big-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-side.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-side.9.png new file mode 100644 index 0000000..25c2fdf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-side.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-side.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-side.png new file mode 100644 index 0000000..c5e245b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-side.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-small.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-small.9.png new file mode 100644 index 0000000..9a652ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-small.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-small.png new file mode 100644 index 0000000..480914f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button.9.png new file mode 100644 index 0000000..a6ae19f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/button.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button.png new file mode 100644 index 0000000..9d2da24 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/check-off.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/check-off.png new file mode 100644 index 0000000..9ee9328 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/check-on.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/check-on.png new file mode 100644 index 0000000..34c410b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-export.fnt new file mode 100644 index 0000000..1fedc30 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=10 base=10 scaleW=75 scaleH=76 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=68 y=39 width=3 height=9 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=63 y=65 width=4 height=3 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=28 y=18 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="#" +char id=36 x=28 y=44 width=7 height=11 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=11 y=21 width=8 height=6 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="%" +char id=38 x=12 y=10 width=8 height=9 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=71 y=69 width=2 height=3 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=63 y=53 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=68 y=49 width=3 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=58 y=6 width=5 height=3 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=58 y=10 width=5 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="+" +char id=44 x=63 y=72 width=2 height=3 xoffset=0 yoffset=8 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=64 y=8 width=3 height=1 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="-" +char id=46 x=59 y=4 width=2 height=1 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=57 y=65 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=21 y=9 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=68 y=20 width=3 height=8 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=43 y=51 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=45 y=9 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=22 y=0 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=50 y=66 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=36 y=37 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=50 y=27 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=37 y=9 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=43 y=60 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=64 y=10 width=2 height=4 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=67 y=69 width=3 height=6 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=28 y=65 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=10 y=72 width=7 height=3 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=50 y=48 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=36 y=60 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=10 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=0 y=49 width=9 height=9 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=20 y=28 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=19 y=66 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=19 y=47 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=28 y=35 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=51 y=18 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=10 y=39 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="G" +char id=72 x=10 y=54 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=72 y=22 width=2 height=8 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=63 y=15 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=10 y=63 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=29 y=9 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=39 width=9 height=9 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=0 y=65 width=9 height=10 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=30 width=10 height=8 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=44 y=18 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=0 y=21 width=10 height=8 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=36 y=18 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=28 y=56 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=30 y=0 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=38 y=0 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=11 y=28 width=8 height=9 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=12 height=9 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=13 y=0 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=19 y=38 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=19 y=56 width=8 height=9 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=68 y=8 width=3 height=11 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=43 y=41 width=6 height=9 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=63 y=38 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=63 y=50 width=4 height=2 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="^" +char id=95 x=21 y=18 width=6 height=1 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="_" +char id=96 x=63 y=69 width=3 height=2 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=50 y=42 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=50 y=56 width=6 height=9 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=53 y=0 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="c" +char id=100 x=36 y=27 width=6 height=9 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=36 y=46 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=52 y=8 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=28 y=27 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=57 y=27 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="h" +char id=105 x=69 y=0 width=2 height=7 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=68 y=29 width=3 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=57 y=55 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=72 y=0 width=2 height=9 xoffset=0 yoffset=1 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=59 width=9 height=5 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=57 y=37 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="n" +char id=111 x=43 y=69 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=46 y=0 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=36 y=52 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=68 y=63 width=3 height=5 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="r" +char id=115 x=57 y=43 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=64 y=0 width=4 height=7 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=36 y=69 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=43 y=35 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=10 y=48 width=8 height=5 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="w" +char id=120 x=50 y=36 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=43 y=27 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="y" +char id=122 x=57 y=49 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=63 y=26 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=72 y=10 width=2 height=11 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=58 y=15 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=28 y=73 width=5 height=2 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="~" +char id=8226 x=59 y=0 width=4 height=3 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=20 y=20 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-export.png new file mode 100644 index 0000000..b90b164 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle-export.fnt b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle-export.fnt new file mode 100644 index 0000000..34f58d7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle-export.fnt @@ -0,0 +1,104 @@ +info face="font-subtitle-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=12 scaleW=88 scaleH=88 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-subtitle-export.png" +chars count=98 +char id=33 x=84 y=34 width=2 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=45 y=18 width=5 height=3 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=32 y=78 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=33 y=34 width=8 height=12 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=13 y=35 width=10 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=15 y=12 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=80 y=75 width=2 height=3 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=74 y=24 width=5 height=14 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=74 y=9 width=5 height=14 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=75 y=0 width=5 height=4 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=50 y=82 width=6 height=5 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="+" +char id=44 x=75 y=5 width=4 height=3 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=73 y=86 width=4 height=1 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=43 y=29 width=3 height=2 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=42 y=64 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=22 y=78 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=80 y=65 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=42 y=54 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=53 y=7 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=59 y=39 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=67 y=32 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=61 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=59 y=29 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=34 y=22 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=41 y=78 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=80 y=9 width=3 height=5 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=79 y=80 width=4 height=6 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=66 y=72 width=7 height=8 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=11 y=81 width=8 height=4 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=58 y=79 width=7 height=8 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=67 y=21 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=14 height=11 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=13 y=23 width=10 height=11 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=66 y=61 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=24 y=23 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=26 y=11 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=33 y=47 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=59 y=50 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=12 y=45 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=23 y=43 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=80 y=15 width=3 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=73 y=42 width=5 height=11 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=22 y=67 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=36 y=11 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=12 height=10 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=0 y=63 width=10 height=12 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=0 y=45 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=36 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=23 width=12 height=10 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=26 y=0 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=42 y=32 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=42 y=43 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=32 y=67 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=11 y=63 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=12 width=14 height=10 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="W" +char id=88 x=0 y=76 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=22 y=56 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=15 y=0 width=10 height=11 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=79 y=39 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=45 y=0 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=80 y=52 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=80 y=5 width=4 height=3 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="^" +char id=95 x=42 y=75 width=7 height=2 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=74 y=39 width=4 height=2 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=12 y=56 width=8 height=6 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=59 y=17 width=7 height=11 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=51 y=18 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=51 y=45 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=43 y=22 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=67 y=42 width=5 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=51 y=25 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=50 y=71 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=84 y=75 width=2 height=8 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=80 y=26 width=3 height=11 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=67 y=10 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=84 y=9 width=3 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=11 height=6 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="m" +char id=110 x=66 y=81 width=6 height=6 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=53 y=0 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=33 y=58 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=51 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=61 y=10 width=5 height=6 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=67 y=54 width=5 height=6 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=69 y=0 width=5 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=51 y=56 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=45 y=11 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=11 y=74 width=10 height=6 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=50 y=64 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=58 y=70 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=58 y=63 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=74 y=54 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=84 y=20 width=2 height=13 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=74 y=67 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=59 y=61 width=6 height=1 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=73 y=81 width=5 height=4 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=24 y=34 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle-export.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle-export.png new file mode 100644 index 0000000..d6d8f71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle.png new file mode 100644 index 0000000..cd02fb5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-subtitle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title-export.fnt new file mode 100644 index 0000000..6cb13a2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=26 base=26 scaleW=171 scaleH=171 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=160 y=68 width=4 height=22 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=61 y=162 width=8 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=""" +char id=35 x=66 y=21 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=63 y=45 width=16 height=25 xoffset=0 yoffset=3 xadvance=18 page=0 chnl=0 letter="$" +char id=37 x=0 y=154 width=20 height=16 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=42 y=116 width=19 height=23 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="&" +char id=39 x=74 y=132 width=4 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=150 y=77 width=9 height=28 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=152 y=0 width=9 height=27 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter=")" +char id=42 x=42 y=162 width=9 height=8 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=62 y=127 width=11 height=11 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="+" +char id=44 x=70 y=162 width=6 height=6 xoffset=0 yoffset=24 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=21 y=167 width=6 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=74 y=127 width=4 height=4 xoffset=0 yoffset=22 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=139 y=34 width=12 height=22 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=49 y=0 width=17 height=20 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="0" +char id=49 x=160 y=28 width=5 height=19 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=110 y=99 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=127 y=0 width=12 height=19 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="3" +char id=52 x=79 y=115 width=15 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="4" +char id=53 x=139 y=57 width=12 height=19 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="5" +char id=54 x=95 y=125 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="6" +char id=55 x=113 y=0 width=13 height=19 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="7" +char id=56 x=110 y=119 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="8" +char id=57 x=95 y=85 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=159 y=158 width=4 height=12 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=152 y=28 width=7 height=15 xoffset=0 yoffset=15 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=98 y=0 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=22 y=116 width=16 height=9 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=95 y=145 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=125 y=138 width=13 height=21 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="?" +char id=64 x=0 y=23 width=26 height=25 xoffset=0 yoffset=7 xadvance=28 page=0 chnl=0 letter="@" +char id=65 x=29 y=0 width=19 height=22 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=79 y=93 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="B" +char id=67 x=44 y=67 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="C" +char id=68 x=42 y=140 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=82 y=19 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=111 y=55 width=14 height=21 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=44 y=45 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=27 y=23 width=19 height=21 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="H" +char id=73 x=166 y=96 width=4 height=21 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=149 y=115 width=9 height=25 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=44 y=89 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=79 y=136 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="L" +char id=77 x=0 y=71 width=23 height=22 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=0 y=130 width=20 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 letter="N" +char id=79 x=0 y=94 width=22 height=21 xoffset=0 yoffset=5 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=80 y=63 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="P" +char id=81 x=0 y=49 width=23 height=21 xoffset=0 yoffset=5 xadvance=25 page=0 chnl=0 letter="Q" +char id=82 x=61 y=140 width=17 height=21 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="R" +char id=83 x=63 y=71 width=16 height=21 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=80 y=41 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="T" +char id=85 x=47 y=23 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=21 y=130 width=20 height=22 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=28 height=22 xoffset=0 yoffset=5 xadvance=30 page=0 chnl=0 letter="W" +char id=88 x=24 y=49 width=19 height=21 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="X" +char id=89 x=23 y=94 width=20 height=21 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="Y" +char id=90 x=24 y=71 width=19 height=22 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=0 letter="Z" +char id=91 x=159 y=106 width=6 height=26 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=125 y=77 width=13 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=152 y=44 width=7 height=26 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=52 y=162 width=8 height=6 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=63 y=107 width=13 height=3 xoffset=0 yoffset=23 xadvance=15 page=0 chnl=0 letter="_" +char id=96 x=83 y=14 width=6 height=4 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=83 y=0 width=14 height=13 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="a" +char id=98 x=96 y=55 width=14 height=23 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=126 y=34 width=12 height=13 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="c" +char id=100 x=111 y=31 width=14 height=23 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="d" +char id=101 x=63 y=93 width=14 height=13 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=139 y=91 width=10 height=23 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=95 y=105 width=14 height=19 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="g" +char id=104 x=125 y=100 width=13 height=23 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="h" +char id=105 x=160 y=48 width=5 height=19 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=159 y=133 width=6 height=24 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=126 y=48 width=12 height=23 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=162 y=0 width=4 height=23 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=0 y=116 width=21 height=13 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=126 y=20 width=12 height=13 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=96 y=41 width=14 height=13 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="o" +char id=112 x=110 y=140 width=14 height=19 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="p" +char id=113 x=110 y=79 width=14 height=19 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=140 y=0 width=9 height=13 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=139 y=77 width=10 height=13 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter="s" +char id=116 x=139 y=142 width=9 height=18 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=139 y=20 width=12 height=13 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="u" +char id=118 x=98 y=17 width=14 height=13 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="v" +char id=119 x=21 y=153 width=20 height=13 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="w" +char id=120 x=79 y=158 width=14 height=12 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="x" +char id=121 x=67 y=0 width=15 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=125 y=124 width=13 height=13 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="z" +char id=123 x=139 y=115 width=9 height=26 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="{" +char id=124 x=165 y=68 width=4 height=27 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=149 y=141 width=9 height=26 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="}" +char id=126 x=66 y=41 width=10 height=3 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=94 y=162 width=10 height=8 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter="•" +char id=169 x=62 y=111 width=16 height=15 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title-export.png new file mode 100644 index 0000000..8161749 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title.png new file mode 100644 index 0000000..c2f7fd2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-underline.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-underline.9.png new file mode 100644 index 0000000..83183b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-underline.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-underline.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-underline.png new file mode 100644 index 0000000..e89a3d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font-underline.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/font.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font.png new file mode 100644 index 0000000..53ddedd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-image.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-image.png new file mode 100644 index 0000000..47f6351 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-image.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-left-small.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-left-small.png new file mode 100644 index 0000000..05cafe9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-left-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-left.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-left.png new file mode 100644 index 0000000..31d5eee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-right-small.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-right-small.png new file mode 100644 index 0000000..a8593fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-right-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-right.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-right.png new file mode 100644 index 0000000..519d6f8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/icon-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/image1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image1.png new file mode 100644 index 0000000..ade6baf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/image2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image2.png new file mode 100644 index 0000000..1bc2958 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/image3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image3.png new file mode 100644 index 0000000..57e6ec3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/image4.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image4.png new file mode 100644 index 0000000..573f3d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/image4.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-bg.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-bg.9.png new file mode 100644 index 0000000..eae1a08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-bg.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-bg.png new file mode 100644 index 0000000..c3989ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-selection.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-selection.9.png new file mode 100644 index 0000000..63204b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-selection.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-selection.png new file mode 100644 index 0000000..5fe8c58 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/list-selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-h.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-h.png new file mode 100644 index 0000000..20332c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-knob-h.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-knob-h.png new file mode 100644 index 0000000..4189337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-knob-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-knob-v.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-knob-v.png new file mode 100644 index 0000000..7ba5f94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-knob-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-v.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-v.png new file mode 100644 index 0000000..28a6898 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/progress-bar-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/radio-off.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/radio-off.png new file mode 100644 index 0000000..154572e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/radio-on.png new file mode 100644 index 0000000..55a8929 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-1.png new file mode 100644 index 0000000..22943b0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-2.png new file mode 100644 index 0000000..e8da010 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-3.png new file mode 100644 index 0000000..b4b8608 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h.9.png new file mode 100644 index 0000000..9d71380 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h.png new file mode 100644 index 0000000..a511511 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-knob-small.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-knob-small.9.png new file mode 100644 index 0000000..73e92fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-knob-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-knob-small.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-knob-small.png new file mode 100644 index 0000000..dedc31d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-knob-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-1.png new file mode 100644 index 0000000..9df5d41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-2.png new file mode 100644 index 0000000..0f8ea8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-3.png new file mode 100644 index 0000000..211b301 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v.9.png new file mode 100644 index 0000000..5391adf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v.png new file mode 100644 index 0000000..23f7068 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/scrollbar-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-1.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-1.9.png new file mode 100644 index 0000000..bf0b1e5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-1.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-1.png new file mode 100644 index 0000000..08a6068 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-2.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-2.9.png new file mode 100644 index 0000000..4f11318 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-2.png new file mode 100644 index 0000000..fa7c994 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-3.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-3.9.png new file mode 100644 index 0000000..d9dd55d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-3.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-3.png new file mode 100644 index 0000000..2b5f732 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/select-box-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-1.png new file mode 100644 index 0000000..57e52f8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-2.png new file mode 100644 index 0000000..fad85b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-3.png new file mode 100644 index 0000000..214b99b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/slider-knob-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/split-pane.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/split-pane.9.png new file mode 100644 index 0000000..d26d512 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/split-pane.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/split-pane.png new file mode 100644 index 0000000..3041d2d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/split-pane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/textfield.9.png new file mode 100644 index 0000000..0bb0d7e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/textfield.png new file mode 100644 index 0000000..597ade9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/touchpad-knob.png new file mode 100644 index 0000000..3d10d3d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/touchpad.png new file mode 100644 index 0000000..87a7ca1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/tree-minus.png new file mode 100644 index 0000000..94bef54 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/tree-plus.png new file mode 100644 index 0000000..b25d712 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/white.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-1.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-1.9.png new file mode 100644 index 0000000..c6e6f9c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-1.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-1.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-1.png new file mode 100644 index 0000000..6433905 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-2.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-2.9.png new file mode 100644 index 0000000..c926e69 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-2.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-2.png new file mode 100644 index 0000000..99d846a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-3.9.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-3.9.png new file mode 100644 index 0000000..7c5804e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-3.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-3.png b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-3.png new file mode 100644 index 0000000..03e2b47 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/raw/window-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-export.fnt new file mode 100644 index 0000000..1fedc30 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=10 base=10 scaleW=75 scaleH=76 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=68 y=39 width=3 height=9 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=63 y=65 width=4 height=3 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=28 y=18 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="#" +char id=36 x=28 y=44 width=7 height=11 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=11 y=21 width=8 height=6 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="%" +char id=38 x=12 y=10 width=8 height=9 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=71 y=69 width=2 height=3 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=63 y=53 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=68 y=49 width=3 height=13 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=58 y=6 width=5 height=3 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=58 y=10 width=5 height=4 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="+" +char id=44 x=63 y=72 width=2 height=3 xoffset=0 yoffset=8 xadvance=3 page=0 chnl=0 letter="," +char id=45 x=64 y=8 width=3 height=1 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="-" +char id=46 x=59 y=4 width=2 height=1 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=57 y=65 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=21 y=9 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=68 y=20 width=3 height=8 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=43 y=51 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=45 y=9 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=22 y=0 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=50 y=66 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=36 y=37 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=50 y=27 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=37 y=9 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=43 y=60 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=64 y=10 width=2 height=4 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=67 y=69 width=3 height=6 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=28 y=65 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=10 y=72 width=7 height=3 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=50 y=48 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=">" +char id=63 x=36 y=60 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=10 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=0 y=49 width=9 height=9 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=20 y=28 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=19 y=66 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=19 y=47 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=28 y=35 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=51 y=18 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=10 y=39 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="G" +char id=72 x=10 y=54 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=72 y=22 width=2 height=8 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=63 y=15 width=4 height=10 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=10 y=63 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=29 y=9 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=39 width=9 height=9 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=0 y=65 width=9 height=10 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=30 width=10 height=8 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=44 y=18 width=6 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=0 y=21 width=10 height=8 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=36 y=18 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=28 y=56 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=30 y=0 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=38 y=0 width=7 height=8 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=11 y=28 width=8 height=9 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=12 height=9 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=13 y=0 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=19 y=38 width=8 height=8 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=19 y=56 width=8 height=9 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=68 y=8 width=3 height=11 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=43 y=41 width=6 height=9 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=63 y=38 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=63 y=50 width=4 height=2 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="^" +char id=95 x=21 y=18 width=6 height=1 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="_" +char id=96 x=63 y=69 width=3 height=2 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=50 y=42 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=50 y=56 width=6 height=9 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=53 y=0 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="c" +char id=100 x=36 y=27 width=6 height=9 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=36 y=46 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=52 y=8 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=28 y=27 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=57 y=27 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="h" +char id=105 x=69 y=0 width=2 height=7 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=68 y=29 width=3 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=57 y=55 width=5 height=9 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="k" +char id=108 x=72 y=0 width=2 height=9 xoffset=0 yoffset=1 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=59 width=9 height=5 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=57 y=37 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="n" +char id=111 x=43 y=69 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=46 y=0 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=36 y=52 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=68 y=63 width=3 height=5 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="r" +char id=115 x=57 y=43 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=64 y=0 width=4 height=7 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=36 y=69 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=43 y=35 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=10 y=48 width=8 height=5 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="w" +char id=120 x=50 y=36 width=6 height=5 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=43 y=27 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="y" +char id=122 x=57 y=49 width=5 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=63 y=26 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=72 y=10 width=2 height=11 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=58 y=15 width=4 height=11 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=28 y=73 width=5 height=2 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="~" +char id=8226 x=59 y=0 width=4 height=3 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=20 y=20 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-subtitle-export.fnt b/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-subtitle-export.fnt new file mode 100644 index 0000000..34f58d7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-subtitle-export.fnt @@ -0,0 +1,104 @@ +info face="font-subtitle-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=12 scaleW=88 scaleH=88 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-subtitle-export.png" +chars count=98 +char id=33 x=84 y=34 width=2 height=10 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=45 y=18 width=5 height=3 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=32 y=78 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=33 y=34 width=8 height=12 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=13 y=35 width=10 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=15 y=12 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=80 y=75 width=2 height=3 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=74 y=24 width=5 height=14 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=74 y=9 width=5 height=14 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=75 y=0 width=5 height=4 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=50 y=82 width=6 height=5 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="+" +char id=44 x=75 y=5 width=4 height=3 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=73 y=86 width=4 height=1 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=43 y=29 width=3 height=2 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=42 y=64 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=22 y=78 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=80 y=65 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=42 y=54 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=53 y=7 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=59 y=39 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=67 y=32 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=61 y=0 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=59 y=29 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=34 y=22 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=41 y=78 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=80 y=9 width=3 height=5 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=79 y=80 width=4 height=6 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=66 y=72 width=7 height=8 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=11 y=81 width=8 height=4 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=58 y=79 width=7 height=8 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=67 y=21 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=14 height=11 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=13 y=23 width=10 height=11 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=66 y=61 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=24 y=23 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=26 y=11 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=33 y=47 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=59 y=50 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=12 y=45 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=23 y=43 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=80 y=15 width=3 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=73 y=42 width=5 height=11 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=22 y=67 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=36 y=11 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=12 height=10 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=0 y=63 width=10 height=12 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=0 y=45 width=11 height=10 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=36 y=0 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=23 width=12 height=10 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=26 y=0 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=42 y=32 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=42 y=43 width=8 height=10 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=32 y=67 width=9 height=10 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=11 y=63 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=12 width=14 height=10 xoffset=0 yoffset=2 xadvance=15 page=0 chnl=0 letter="W" +char id=88 x=0 y=76 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=22 y=56 width=10 height=10 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=15 y=0 width=10 height=11 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=79 y=39 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=45 y=0 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=80 y=52 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=80 y=5 width=4 height=3 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="^" +char id=95 x=42 y=75 width=7 height=2 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=74 y=39 width=4 height=2 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=12 y=56 width=8 height=6 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=59 y=17 width=7 height=11 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=51 y=18 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=51 y=45 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=43 y=22 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=67 y=42 width=5 height=10 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=51 y=25 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=50 y=71 width=7 height=10 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=84 y=75 width=2 height=8 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=80 y=26 width=3 height=11 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=67 y=10 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=84 y=9 width=3 height=10 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=11 height=6 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="m" +char id=110 x=66 y=81 width=6 height=6 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=53 y=0 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=33 y=58 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=51 y=35 width=7 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=61 y=10 width=5 height=6 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=67 y=54 width=5 height=6 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=69 y=0 width=5 height=8 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=51 y=56 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=45 y=11 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=11 y=74 width=10 height=6 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=50 y=64 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=58 y=70 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=58 y=63 width=7 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=74 y=54 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=84 y=20 width=2 height=13 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=74 y=67 width=5 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=59 y=61 width=6 height=1 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=73 y=81 width=5 height=4 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=24 y=34 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-title-export.fnt new file mode 100644 index 0000000..6cb13a2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=26 base=26 scaleW=171 scaleH=171 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=160 y=68 width=4 height=22 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=61 y=162 width=8 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=""" +char id=35 x=66 y=21 width=15 height=19 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=63 y=45 width=16 height=25 xoffset=0 yoffset=3 xadvance=18 page=0 chnl=0 letter="$" +char id=37 x=0 y=154 width=20 height=16 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=42 y=116 width=19 height=23 xoffset=0 yoffset=3 xadvance=21 page=0 chnl=0 letter="&" +char id=39 x=74 y=132 width=4 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=150 y=77 width=9 height=28 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=152 y=0 width=9 height=27 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter=")" +char id=42 x=42 y=162 width=9 height=8 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=62 y=127 width=11 height=11 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="+" +char id=44 x=70 y=162 width=6 height=6 xoffset=0 yoffset=24 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=21 y=167 width=6 height=3 xoffset=0 yoffset=18 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=74 y=127 width=4 height=4 xoffset=0 yoffset=22 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=139 y=34 width=12 height=22 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=49 y=0 width=17 height=20 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="0" +char id=49 x=160 y=28 width=5 height=19 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=110 y=99 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=127 y=0 width=12 height=19 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="3" +char id=52 x=79 y=115 width=15 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="4" +char id=53 x=139 y=57 width=12 height=19 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="5" +char id=54 x=95 y=125 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="6" +char id=55 x=113 y=0 width=13 height=19 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="7" +char id=56 x=110 y=119 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="8" +char id=57 x=95 y=85 width=14 height=19 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=159 y=158 width=4 height=12 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=152 y=28 width=7 height=15 xoffset=0 yoffset=15 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=98 y=0 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=22 y=116 width=16 height=9 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=95 y=145 width=14 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=125 y=138 width=13 height=21 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="?" +char id=64 x=0 y=23 width=26 height=25 xoffset=0 yoffset=7 xadvance=28 page=0 chnl=0 letter="@" +char id=65 x=29 y=0 width=19 height=22 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=79 y=93 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="B" +char id=67 x=44 y=67 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="C" +char id=68 x=42 y=140 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=82 y=19 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=111 y=55 width=14 height=21 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=44 y=45 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=27 y=23 width=19 height=21 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="H" +char id=73 x=166 y=96 width=4 height=21 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=149 y=115 width=9 height=25 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=44 y=89 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=79 y=136 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="L" +char id=77 x=0 y=71 width=23 height=22 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="M" +char id=78 x=0 y=130 width=20 height=23 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 letter="N" +char id=79 x=0 y=94 width=22 height=21 xoffset=0 yoffset=5 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=80 y=63 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="P" +char id=81 x=0 y=49 width=23 height=21 xoffset=0 yoffset=5 xadvance=25 page=0 chnl=0 letter="Q" +char id=82 x=61 y=140 width=17 height=21 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="R" +char id=83 x=63 y=71 width=16 height=21 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=80 y=41 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="T" +char id=85 x=47 y=23 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=21 y=130 width=20 height=22 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=28 height=22 xoffset=0 yoffset=5 xadvance=30 page=0 chnl=0 letter="W" +char id=88 x=24 y=49 width=19 height=21 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="X" +char id=89 x=23 y=94 width=20 height=21 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="Y" +char id=90 x=24 y=71 width=19 height=22 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=0 letter="Z" +char id=91 x=159 y=106 width=6 height=26 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=125 y=77 width=13 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=152 y=44 width=7 height=26 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=52 y=162 width=8 height=6 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=63 y=107 width=13 height=3 xoffset=0 yoffset=23 xadvance=15 page=0 chnl=0 letter="_" +char id=96 x=83 y=14 width=6 height=4 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=83 y=0 width=14 height=13 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="a" +char id=98 x=96 y=55 width=14 height=23 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=126 y=34 width=12 height=13 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="c" +char id=100 x=111 y=31 width=14 height=23 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="d" +char id=101 x=63 y=93 width=14 height=13 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=139 y=91 width=10 height=23 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=95 y=105 width=14 height=19 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="g" +char id=104 x=125 y=100 width=13 height=23 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="h" +char id=105 x=160 y=48 width=5 height=19 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=159 y=133 width=6 height=24 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=126 y=48 width=12 height=23 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=162 y=0 width=4 height=23 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=0 y=116 width=21 height=13 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=126 y=20 width=12 height=13 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=96 y=41 width=14 height=13 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="o" +char id=112 x=110 y=140 width=14 height=19 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="p" +char id=113 x=110 y=79 width=14 height=19 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=140 y=0 width=9 height=13 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=139 y=77 width=10 height=13 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter="s" +char id=116 x=139 y=142 width=9 height=18 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=139 y=20 width=12 height=13 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="u" +char id=118 x=98 y=17 width=14 height=13 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="v" +char id=119 x=21 y=153 width=20 height=13 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="w" +char id=120 x=79 y=158 width=14 height=12 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="x" +char id=121 x=67 y=0 width=15 height=18 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=125 y=124 width=13 height=13 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="z" +char id=123 x=139 y=115 width=9 height=26 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="{" +char id=124 x=165 y=68 width=4 height=27 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=149 y=141 width=9 height=26 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="}" +char id=126 x=66 y=41 width=10 height=3 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=94 y=162 width=10 height=8 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter="•" +char id=169 x=62 y=111 width=16 height=15 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.atlas b/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.atlas new file mode 100644 index 0000000..0b4456a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.atlas @@ -0,0 +1,448 @@ + +level-plane-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 1, 57 + size: 85, 30 + split: 2, 2, 2, 2 + orig: 85, 30 + offset: 0, 0 + index: -1 +button-big-1 + rotate: false + xy: 1, 387 + size: 130, 147 + split: 4, 4, 4, 27 + pad: 4, 4, 0, 0 + orig: 130, 147 + offset: 0, 0 + index: -1 +button-big-1-down + rotate: false + xy: 1, 89 + size: 130, 147 + split: 4, 4, 4, 27 + pad: 0, 0, 0, 0 + orig: 130, 147 + offset: 0, 0 + index: -1 +button-big-2 + rotate: false + xy: 1, 685 + size: 130, 147 + split: 4, 4, 4, 27 + pad: 4, 4, 0, 0 + orig: 130, 147 + offset: 0, 0 + index: -1 +button-big-2-down + rotate: false + xy: 174, 858 + size: 130, 147 + split: 4, 4, 4, 27 + pad: 0, 0, 0, 0 + orig: 130, 147 + offset: 0, 0 + index: -1 +button-big-3 + rotate: false + xy: 1, 536 + size: 130, 147 + split: 4, 4, 4, 27 + pad: 4, 4, 0, 0 + orig: 130, 147 + offset: 0, 0 + index: -1 +button-big-3-down + rotate: false + xy: 1, 238 + size: 130, 147 + split: 4, 4, 4, 27 + pad: 0, 0, 0, 0 + orig: 130, 147 + offset: 0, 0 + index: -1 +button-side + rotate: false + xy: 383, 833 + size: 20, 20 + split: 0, 0, 0, 0 + pad: 2, 2, 2, 2 + orig: 20, 20 + offset: 0, 0 + index: -1 +button-small + rotate: false + xy: 27, 21 + size: 19, 19 + split: 0, 0, 0, 0 + pad: 2, 2, 2, 2 + orig: 19, 19 + offset: 0, 0 + index: -1 +check-off + rotate: false + xy: 269, 1008 + size: 20, 15 + orig: 20, 15 + offset: 0, 0 + index: -1 +check-on + rotate: false + xy: 574, 888 + size: 20, 15 + orig: 20, 15 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 306, 827 + size: 75, 76 + orig: 75, 76 + offset: 0, 0 + index: -1 +font-subtitle-export + rotate: false + xy: 898, 935 + size: 88, 88 + orig: 88, 88 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 834 + size: 171, 171 + orig: 171, 171 + offset: 0, 0 + index: -1 +font-underline + rotate: false + xy: 790, 911 + size: 5, 4 + split: 0, 0, 0, 1 + pad: 0, 0, 0, 3 + orig: 5, 4 + offset: 0, 0 + index: -1 +icon-image + rotate: false + xy: 291, 1010 + size: 13, 13 + orig: 13, 13 + offset: 0, 0 + index: -1 +icon-left + rotate: false + xy: 133, 745 + size: 15, 28 + orig: 15, 28 + offset: 0, 0 + index: -1 +icon-left-small + rotate: false + xy: 122, 73 + size: 7, 14 + orig: 7, 14 + offset: 0, 0 + index: -1 +icon-right + rotate: false + xy: 133, 715 + size: 15, 28 + orig: 15, 28 + offset: 0, 0 + index: -1 +icon-right-small + rotate: false + xy: 596, 889 + size: 7, 14 + orig: 7, 14 + offset: 0, 0 + index: -1 +image1 + rotate: false + xy: 306, 905 + size: 119, 118 + orig: 119, 118 + offset: 0, 0 + index: -1 +image2 + rotate: false + xy: 427, 905 + size: 119, 118 + orig: 119, 118 + offset: 0, 0 + index: -1 +image3 + rotate: false + xy: 548, 905 + size: 119, 118 + orig: 119, 118 + offset: 0, 0 + index: -1 +image4 + rotate: false + xy: 669, 905 + size: 119, 118 + orig: 119, 118 + offset: 0, 0 + index: -1 +list-bg + rotate: false + xy: 958, 922 + size: 11, 11 + split: 0, 0, 0, 0 + orig: 11, 11 + offset: 0, 0 + index: -1 +list-selection + rotate: false + xy: 1022, 1003 + size: 1, 17 + split: 0, 0, 0, 0 + orig: 1, 17 + offset: 0, 0 + index: -1 +progress-bar-h + rotate: false + xy: 1, 1016 + size: 266, 7 + orig: 266, 7 + offset: 0, 0 + index: -1 +progress-bar-knob-h + rotate: false + xy: 1, 1007 + size: 266, 7 + orig: 266, 7 + offset: 0, 0 + index: -1 +progress-bar-knob-v + rotate: false + xy: 133, 267 + size: 7, 266 + orig: 7, 266 + offset: 0, 0 + index: -1 +progress-bar-v + rotate: false + xy: 142, 267 + size: 7, 266 + orig: 7, 266 + offset: 0, 0 + index: -1 +radio-off + rotate: false + xy: 988, 984 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 133, 793 + size: 20, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +scrollbar-h + rotate: false + xy: 1, 1 + size: 21, 13 + split: 4, 4, 0, 0 + pad: 0, 0, 0, 0 + orig: 21, 13 + offset: 0, 0 + index: -1 +scrollbar-h-1 + rotate: false + xy: 898, 920 + size: 58, 13 + orig: 58, 13 + offset: 0, 0 + index: -1 +scrollbar-h-2 + rotate: false + xy: 1, 42 + size: 58, 13 + orig: 58, 13 + offset: 0, 0 + index: -1 +scrollbar-h-3 + rotate: false + xy: 174, 843 + size: 58, 13 + orig: 58, 13 + offset: 0, 0 + index: -1 +scrollbar-knob-small + rotate: false + xy: 61, 44 + size: 11, 11 + split: 4, 4, 4, 4 + pad: 0, 0, 0, 0 + orig: 11, 11 + offset: 0, 0 + index: -1 +scrollbar-v + rotate: false + xy: 1010, 979 + size: 13, 21 + split: 0, 0, 4, 4 + pad: 0, 0, 0, 0 + orig: 13, 21 + offset: 0, 0 + index: -1 +scrollbar-v-1 + rotate: false + xy: 133, 655 + size: 13, 58 + orig: 13, 58 + offset: 0, 0 + index: -1 +scrollbar-v-2 + rotate: false + xy: 133, 595 + size: 13, 58 + orig: 13, 58 + offset: 0, 0 + index: -1 +scrollbar-v-3 + rotate: false + xy: 133, 535 + size: 13, 58 + orig: 13, 58 + offset: 0, 0 + index: -1 +select-box-1 + rotate: false + xy: 988, 1002 + size: 32, 21 + split: 0, 15, 8, 9 + pad: 2, 17, 2, 2 + orig: 32, 21 + offset: 0, 0 + index: -1 +select-box-2 + rotate: false + xy: 88, 66 + size: 32, 21 + split: 0, 15, 8, 9 + pad: 2, 17, 2, 2 + orig: 32, 21 + offset: 0, 0 + index: -1 +select-box-3 + rotate: false + xy: 133, 811 + size: 32, 21 + split: 0, 15, 8, 9 + pad: 2, 17, 2, 2 + orig: 32, 21 + offset: 0, 0 + index: -1 +slider-knob-1 + rotate: false + xy: 405, 834 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +slider-knob-2 + rotate: false + xy: 574, 867 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +slider-knob-3 + rotate: false + xy: 988, 963 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +split-pane + rotate: false + xy: 174, 836 + size: 5, 5 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 5 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 1, 16 + size: 24, 24 + split: 2, 2, 2, 2 + pad: 4, 4, 4, 4 + orig: 24, 24 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 790, 917 + size: 106, 106 + orig: 106, 106 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 383, 855 + size: 48, 48 + orig: 48, 48 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 133, 775 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 988, 945 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1022, 1022 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window-1 + rotate: false + xy: 433, 861 + size: 45, 42 + split: 0, 0, 21, 0 + pad: 2, 2, 23, 2 + orig: 45, 42 + offset: 0, 0 + index: -1 +window-2 + rotate: false + xy: 480, 861 + size: 45, 42 + split: 0, 0, 21, 0 + pad: 2, 2, 23, 2 + orig: 45, 42 + offset: 0, 0 + index: -1 +window-3 + rotate: false + xy: 527, 861 + size: 45, 42 + split: 0, 0, 21, 0 + pad: 2, 2, 23, 2 + orig: 45, 42 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.json b/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.json new file mode 100644 index 0000000..1d45235 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.json @@ -0,0 +1,790 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + subtitle: { + file: font-subtitle-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + Alpha50: { + r: 1 + g: 1 + b: 1 + a: 0.49803922 + } + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + color1: { + r: 0 + g: 0.68235296 + b: 0.69803923 + a: 1 + } + color1-h: { + r: 0 + g: 0.9490196 + b: 0.9490196 + a: 1 + } + color1-s: { + r: 0.11372549 + g: 0.34509805 + b: 0.92941177 + a: 1 + } + color2: { + r: 1 + g: 0.5058824 + b: 0.39215687 + a: 1 + } + color2-h: { + r: 1 + g: 0.6431373 + b: 0.6431373 + a: 1 + } + color2-s: { + r: 1 + g: 0.2509804 + b: 0.5019608 + a: 1 + } + color3: { + r: 0 + g: 0.81960785 + b: 0.019607844 + a: 1 + } + color3-h: { + r: 0.2901961 + g: 1 + b: 0.35686275 + a: 1 + } + color3-s: { + r: 0.09803922 + g: 0.5568628 + b: 0 + a: 1 + } + dark50: { + r: 0 + g: 0 + b: 0 + a: 0.49803922 + } + dark75: { + r: 0 + g: 0 + b: 0 + a: 0.7490196 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-1: { + name: button + color: color1-h + } + button-2: { + name: button + color: color2-h + } + button-3: { + name: button + color: color3-h + } + button-side-1: { + name: button-side + color: color1-h + } + button-side-2: { + name: button-side + color: color2-h + } + button-side-3: { + name: button-side + color: color3-h + } + button-side-1-down: { + name: button-side + color: color1 + } + button-1-down: { + name: button + color: color1 + } + button-2-down: { + name: button + color: color2 + } + button-3-down: { + name: button + color: color3 + } + button-side-2-down: { + name: button-side + color: color2 + } + button-side-3-down: { + name: button-side + color: color3 + } + tree-plus-1: { + name: tree-plus + color: color1-s + } + tree-plus-2: { + name: tree-plus + color: color2-s + } + tree-plus-3: { + name: tree-plus + color: color3-s + } + tree-minus-1: { + name: tree-minus + color: color1-s + } + tree-minus-2: { + name: tree-minus + color: color2-s + } + tree-minus-3: { + name: tree-minus + color: color3-s + } + icon-image-50: { + name: icon-image + color: Alpha50 + } + button-dark: { + name: button + color: dark50 + } + button-dark-down: { + name: button + color: dark75 + } + selection-1: { + name: white + color: color1-s + } + selection-2: { + name: white + color: color2-s + } + selection-3: { + name: white + color: color3-s + } + list-bg-1: { + name: list-bg + color: color1-h + } + list-bg-2: { + name: list-bg + color: color2-h + } + list-bg-3: { + name: list-bg + color: color3-h + } + scrollbar-knob-small-1: { + name: scrollbar-knob-small + color: color1 + } + scrollbar-knob-small-2: { + name: scrollbar-knob-small + color: color2 + } + scrollbar-knob-small-3: { + name: scrollbar-knob-small + color: color3 + } + textfield-1: { + name: textfield + color: color1 + } + textfield-2: { + name: textfield + color: color2 + } + textfield-3: { + name: textfield + color: color3 + } + color-1: { + name: white + color: color1 + } + color-2: { + name: white + color: color2 + } + color-3: { + name: white + color: color3 + } + color-1-h: { + name: white + color: color1-h + } + color-2-h: { + name: white + color: color2-h + } + color-3-h: { + name: white + color: color3-h + } + color-3-s: { + name: white + color: color3-s + } + color-1-s: { + name: white + color: color1-s + } + color-2-s: { + name: white + color: color2-s + } + check-off-1: { + name: check-off + color: color1 + } + check-off-2: { + name: check-off + color: color2 + } + check-off-3: { + name: check-off + color: color3 + } + check-on-1: { + name: check-on + color: color1 + } + check-on-2: { + name: check-on + color: color2 + } + check-on-3: { + name: check-on + color: color3 + } + radio-off-1: { + name: radio-off + color: color1 + } + radio-off-2: { + name: radio-off + color: color2 + } + radio-off-3: { + name: radio-off + color: color3 + } + radio-on-1: { + name: radio-on + color: color1 + } + radio-on-2: { + name: radio-on + color: color2 + } + radio-on-3: { + name: radio-on + color: color3 + } + font-underline-1: { + name: font-underline + color: color1 + } + font-underline-2: { + name: font-underline + color: color2 + } + font-underline-3: { + name: font-underline + color: color3 + } + button-small-1: { + name: button-small + color: color1 + } + button-small-1-down: { + name: button-small + color: color1-s + } + button-small-2: { + name: button-small + color: color2 + } + button-small-2-down: { + name: button-small + color: color2-s + } + button-small-3: { + name: button-small + color: color3 + } + button-small-3-down: { + name: button-small + color: color3-s + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-1 + down: button-1-down + } + selector: { + up: icon-image-50 + down: icon-image-50 + checked: icon-image + } + big-1: { + up: button-big-1 + down: button-big-1-down + } + big-2: { + up: button-big-2 + down: button-big-2-down + } + big-3: { + up: button-big-3 + down: button-big-3-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-on-1 + checkboxOff: check-off-1 + font: subtitle + fontColor: color1 + } + c2: { + checkboxOn: check-on-2 + checkboxOff: check-off-2 + font: subtitle + fontColor: color2 + } + c3: { + checkboxOn: check-on-3 + checkboxOff: check-off-3 + font: subtitle + fontColor: color3 + } + radio-1: { + checkboxOn: radio-on-1 + checkboxOff: radio-off-1 + font: subtitle + fontColor: color1 + } + radio-2: { + checkboxOn: radio-on-2 + checkboxOff: radio-off-2 + font: subtitle + fontColor: color2 + } + radio-3: { + checkboxOn: radio-on-3 + checkboxOff: radio-off-3 + font: subtitle + fontColor: color3 + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-1 + down: button-1-down + } + side-left-1: { + imageUp: icon-left + up: button-side-1 + down: button-side-1-down + } + side-right-1: { + imageUp: icon-right + up: button-side-1 + down: button-side-1-down + } + side-left-2: { + imageUp: icon-left + up: button-side-2 + down: button-side-2-down + } + side-right-2: { + imageUp: icon-right + up: button-side-2 + down: button-side-2-down + } + side-left-3: { + imageUp: icon-left + up: button-side-3 + down: button-side-3-down + } + side-right-3: { + imageUp: icon-right + up: button-side-3 + down: button-side-3-down + } + left-1: { + imageUp: icon-left-small + up: button-small-1 + down: button-small-1-down + } + left-2: { + imageUp: icon-left-small + up: button-small-2 + down: button-small-2-down + } + left-3: { + imageUp: icon-left-small + up: button-small-3 + down: button-small-3-down + } + right-1: { + imageUp: icon-right-small + up: button-small-1 + down: button-small-1-down + } + right-2: { + imageUp: icon-right-small + up: button-small-2 + down: button-small-2-down + } + right-3: { + imageUp: icon-right-small + up: button-small-3 + down: button-small-3-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: subtitle + fontColor: black + up: button-1 + down: button-1-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: color1 + } + c2: { + font: font + fontColor: color2 + } + c3: { + font: font + fontColor: color3 + } + subtitle-1: { + font: subtitle + fontColor: color1 + } + subtitle-2: { + font: subtitle + fontColor: color2 + } + subtitle-3: { + font: subtitle + fontColor: color3 + } + title-1: { + font: title + fontColor: color1 + } + title-2: { + font: title + fontColor: color2 + } + title-3: { + font: title + fontColor: color3 + } + underline-1: { + font: subtitle + fontColor: color1 + background: font-underline-1 + } + underline-2: { + font: subtitle + fontColor: color2 + background: font-underline-2 + } + underline-3: { + font: subtitle + fontColor: color3 + background: font-underline-3 + } + title-white: { + font: title + fontColor: white + } + title-black: { + font: title + fontColor: black + } + subtitle-white: { + font: subtitle + fontColor: white + } + subtitle-black: { + font: subtitle + fontColor: black + } + white: { + font: font + fontColor: white + } + black: { + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: selection-1 + } + c2: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: selection-2 + } + c3: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: selection-3 + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-h + knobBefore: progress-bar-knob-h + } + default-vertical: { + background: progress-bar-v + knobBefore: progress-bar-knob-v + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollbar-h + hScrollKnob: scrollbar-h-1 + vScroll: scrollbar-v + vScrollKnob: scrollbar-v-1 + } + select-box-1: { + background: list-bg-1 + hScrollKnob: scrollbar-knob-small-1 + vScrollKnob: scrollbar-knob-small-1 + } + select-box-2: { + background: list-bg-2 + hScrollKnob: scrollbar-knob-small-2 + vScrollKnob: scrollbar-knob-small-2 + } + select-box-3: { + background: list-bg-3 + hScrollKnob: scrollbar-knob-small-3 + vScrollKnob: scrollbar-knob-small-3 + } + c2: { + hScroll: scrollbar-h + hScrollKnob: scrollbar-h-2 + vScroll: scrollbar-v + vScrollKnob: scrollbar-v-2 + } + c3: { + hScroll: scrollbar-h + hScrollKnob: scrollbar-h-3 + vScroll: scrollbar-v + vScrollKnob: scrollbar-v-3 + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box-1 + scrollStyle: select-box-1 + listStyle: default + } + c2: { + font: font + fontColor: black + background: select-box-2 + scrollStyle: select-box-2 + listStyle: c2 + } + c3: { + font: font + fontColor: black + background: select-box-3 + scrollStyle: select-box-3 + listStyle: c3 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: progress-bar-h + knob: slider-knob-1 + knobBefore: progress-bar-knob-h + } + default-vertical: { + background: progress-bar-v + knob: slider-knob-1 + knobBefore: progress-bar-knob-v + } + c2: { + background: progress-bar-h + knob: slider-knob-2 + knobBefore: progress-bar-knob-h + } + c3: { + background: progress-bar-h + knob: slider-knob-3 + knobBefore: progress-bar-knob-h + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane + } + default-vertical: { + handle: split-pane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: subtitle + fontColor: black + up: button-1 + down: button-1-down + } + c2: { + font: subtitle + fontColor: black + up: button-2 + down: button-2-down + } + c3: { + font: subtitle + fontColor: black + up: button-3 + down: button-3-down + } + dark: { + font: subtitle + fontColor: white + up: button-dark + down: button-dark-down + } + small-1: { + font: font + fontColor: white + up: button-small-1 + down: button-small-1-down + } + small-2: { + font: font + fontColor: white + up: button-small-2 + down: button-small-2-down + } + small-3: { + font: font + fontColor: white + up: button-small-3 + down: button-small-3-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: subtitle + fontColor: color1 + background: textfield-1 + cursor: color-1 + selection: color-1-h + } + c2: { + font: subtitle + fontColor: color2 + background: textfield-2 + cursor: color-2 + selection: color-2-h + } + c3: { + font: subtitle + fontColor: color3 + background: textfield-3 + cursor: color-3 + selection: color-3-s + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: subtitle-1 + background: button-1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: tree-plus-1 + minus: tree-minus-1 + } + c2: { + plus: tree-plus-2 + minus: tree-minus-2 + } + c3: { + plus: tree-plus-3 + minus: tree-minus-3 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-1 + titleFont: font + } + c2: { + background: window-2 + titleFont: font + } + c3: { + background: window-3 + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.png b/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.png new file mode 100644 index 0000000..0b26815 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/level-plane/skin/level-plane-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/FjallaOneRegular.txt b/src/main/resources/omni_power/gdx-skins/lgdxs/FjallaOneRegular.txt new file mode 100644 index 0000000..0c9e016 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/FjallaOneRegular.txt @@ -0,0 +1,94 @@ +Copyright (c) 2012 by Sorkin Type Co (www.sorkintype.com), with Reserved Font Name 'Fjalla' + +Fjalla is a trademark of Sorkin Type Co. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/README.md b/src/main/resources/omni_power/gdx-skins/lgdxs/README.md new file mode 100644 index 0000000..d23b74b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/README.md @@ -0,0 +1,23 @@ +# LGDXS UI + +``` +LGDXS UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2017 Raymond Buckley + +LGDXS UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Inspired by Star Trek. Can be recolored with JSON parameters. + +![LGDXS](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/lgdxs-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font license](FjallaOneRegular.txt). diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/preview.png b/src/main/resources/omni_power/gdx-skins/lgdxs/preview.png new file mode 100644 index 0000000..9df1791 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big-disabled.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big-disabled.9.png new file mode 100644 index 0000000..248b0ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big-disabled.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big-disabled.png new file mode 100644 index 0000000..817c504 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big.9.png new file mode 100644 index 0000000..4ec5b23 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big.png new file mode 100644 index 0000000..32208f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-big.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-disabled.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-disabled.9.png new file mode 100644 index 0000000..804f939 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-disabled.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-disabled.png new file mode 100644 index 0000000..52f5688 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-oval.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-oval.9.png new file mode 100644 index 0000000..9edf536 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-oval.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-oval.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-oval.png new file mode 100644 index 0000000..ed643e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-oval.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small-disabled.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small-disabled.9.png new file mode 100644 index 0000000..e5c196d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small-disabled.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small-disabled.png new file mode 100644 index 0000000..54528f4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small.9.png new file mode 100644 index 0000000..61c6d70 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small.png new file mode 100644 index 0000000..c83d46b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button.9.png new file mode 100644 index 0000000..f03fc9f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button.png new file mode 100644 index 0000000..f7e7c83 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bl.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bl.9.png new file mode 100644 index 0000000..900ce19 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bl.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bl.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bl.png new file mode 100644 index 0000000..756c1ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-bl.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-bl.9.png new file mode 100644 index 0000000..04f9a6f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-bl.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-bl.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-bl.png new file mode 100644 index 0000000..3f03224 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-bl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-br.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-br.9.png new file mode 100644 index 0000000..c7e59d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-br.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-br.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-br.png new file mode 100644 index 0000000..3aad9c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-br.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tl.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tl.9.png new file mode 100644 index 0000000..228a0bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tl.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tl.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tl.png new file mode 100644 index 0000000..678971e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tr.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tr.9.png new file mode 100644 index 0000000..994a14f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tr.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tr.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tr.png new file mode 100644 index 0000000..8803995 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bm-tr.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-br.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-br.9.png new file mode 100644 index 0000000..2b5d8cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-br.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-br.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-br.png new file mode 100644 index 0000000..75f6f0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-br.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-bl.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-bl.9.png new file mode 100644 index 0000000..2c96e68 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-bl.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-bl.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-bl.png new file mode 100644 index 0000000..67691cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-bl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-br.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-br.9.png new file mode 100644 index 0000000..f61c96c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-br.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-br.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-br.png new file mode 100644 index 0000000..6fca006 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-br.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tl.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tl.9.png new file mode 100644 index 0000000..da7eabc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tl.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tl.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tl.png new file mode 100644 index 0000000..958cd56 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tr.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tr.9.png new file mode 100644 index 0000000..f22cf3a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tr.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tr.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tr.png new file mode 100644 index 0000000..294e4c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-bs-tr.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tl.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tl.9.png new file mode 100644 index 0000000..f5b4abf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tl.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tl.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tl.png new file mode 100644 index 0000000..8c750a9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tl.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tr.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tr.9.png new file mode 100644 index 0000000..e685a2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tr.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tr.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tr.png new file mode 100644 index 0000000..fd5ece0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/corner-tr.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-left.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-left.9.png new file mode 100644 index 0000000..36b284a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-left.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-left.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-left.png new file mode 100644 index 0000000..32fd64c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-right.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-right.9.png new file mode 100644 index 0000000..bd8770c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-right.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-right.png new file mode 100644 index 0000000..a980bbb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-left.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-left.9.png new file mode 100644 index 0000000..1f1fb02 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-left.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-left.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-left.png new file mode 100644 index 0000000..becfd72 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-right.9.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-right.9.png new file mode 100644 index 0000000..1ccbf6c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-right.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-right.png new file mode 100644 index 0000000..2aba71b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/endcap-small-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font-export.fnt new file mode 100644 index 0000000..bc9ef2d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=94 scaleH=96 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=90 y=35 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=0 y=89 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=11 y=33 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=20 y=0 width=7 height=16 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=12 height=12 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="%" +char id=38 x=0 y=75 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=80 y=4 width=2 height=5 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=85 y=0 width=4 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=79 y=78 width=5 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=20 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=44 y=89 width=6 height=6 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="+" +char id=44 x=6 y=89 width=3 height=5 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=12 y=30 width=6 height=2 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=86 y=55 width=3 height=3 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=80 y=42 width=5 height=16 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=20 y=38 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=28 y=65 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=28 y=78 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=36 y=13 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=11 y=44 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=72 y=30 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=43 y=50 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=20 y=70 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=19 y=57 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=73 y=0 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=85 y=31 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=86 y=42 width=3 height=12 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=52 y=88 width=6 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="<" +char id=61 x=20 y=51 width=6 height=5 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="=" +char id=62 x=59 y=28 width=5 height=7 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=36 y=78 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=13 width=11 height=16 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=36 y=65 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="A" +char id=66 x=44 y=63 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=36 y=26 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="C" +char id=68 x=20 y=17 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=66 y=68 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=66 y=55 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=28 y=0 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=65 y=28 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="H" +char id=73 x=85 y=18 width=3 height=12 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=66 y=0 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=44 y=13 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=73 y=71 width=5 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=10 y=70 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=35 y=39 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="N" +char id=79 x=35 y=52 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="O" +char id=80 x=52 y=11 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=12 y=13 width=7 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="Q" +char id=82 x=36 y=0 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=44 y=0 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=51 y=50 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=44 y=76 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=44 y=26 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="V" +char id=87 x=0 y=57 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="W" +char id=88 x=28 y=26 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=28 y=13 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=66 y=81 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="Z" +char id=91 x=79 y=24 width=5 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=85 y=59 width=4 height=16 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="\" +char id=93 x=79 y=60 width=5 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=43 y=39 width=7 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=0 y=30 width=11 height=2 xoffset=0 yoffset=18 xadvance=12 page=0 chnl=0 letter="_" +char id=96 x=59 y=91 width=4 height=4 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=13 y=0 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=52 y=63 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=52 y=77 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=52 y=24 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=52 y=0 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=59 y=77 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=59 y=0 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=59 y=63 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=90 y=49 width=3 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=85 y=76 width=4 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=27 y=51 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=90 y=64 width=2 height=13 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=46 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=58 y=38 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=20 y=83 width=7 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=59 y=14 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=65 y=41 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=79 y=13 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=73 y=84 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=66 y=13 width=5 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=28 y=39 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=11 y=57 width=7 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=10 y=83 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=51 y=39 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=58 y=49 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="y" +char id=122 x=73 y=60 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=72 y=13 width=6 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=89 y=18 width=3 height=16 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=73 y=43 width=6 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=70 width=9 height=4 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=80 y=0 width=4 height=3 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=33 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font-export.png new file mode 100644 index 0000000..d878369 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font.png new file mode 100644 index 0000000..e5f8bd7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/logo.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/logo.png new file mode 100644 index 0000000..8b875b9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/logo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-back-horizontal.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-back-horizontal.png new file mode 100644 index 0000000..7c19639 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-back-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-back-vertical.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-back-vertical.png new file mode 100644 index 0000000..e099c7a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-back-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..e3d1693 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-vertical.png new file mode 100644 index 0000000..2aea1e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font-export.fnt new file mode 100644 index 0000000..85c1034 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font-export.fnt @@ -0,0 +1,104 @@ +info face="sub-title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=23 base=23 scaleW=125 scaleH=130 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="sub-title-font-export.png" +chars count=98 +char id=33 x=119 y=70 width=4 height=18 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=39 y=51 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=27 y=95 width=10 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=28 y=36 width=10 height=22 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=17 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="%" +char id=38 x=14 y=95 width=12 height=18 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=114 y=88 width=4 height=7 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=106 y=83 width=7 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=106 y=60 width=7 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=14 y=120 width=10 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=78 y=108 width=9 height=8 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=114 y=96 width=4 height=7 xoffset=0 yoffset=19 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=80 y=33 width=8 height=2 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=89 y=67 width=4 height=4 xoffset=0 yoffset=19 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=114 y=0 width=6 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=70 y=0 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=97 y=97 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=79 y=54 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=69 y=54 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=15 y=62 width=11 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=68 y=111 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=18 y=0 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="6" +char id=55 x=79 y=36 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=27 y=59 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=28 y=18 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=99 y=0 width=4 height=14 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=114 y=70 width=4 height=17 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=89 y=56 width=7 height=10 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=50 y=38 width=8 height=6 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=78 y=117 width=7 height=10 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=68 y=74 width=9 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="?" +char id=64 x=0 y=18 width=16 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="@" +char id=65 x=37 y=110 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=38 y=59 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=90 y=0 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=80 y=0 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=88 y=110 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=98 y=18 width=7 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=60 y=0 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=59 y=56 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=120 y=108 width=3 height=17 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=97 y=79 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=60 y=18 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=98 y=36 width=7 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=95 width=13 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=78 y=90 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=78 y=72 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="O" +char id=80 x=70 y=18 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=58 y=104 width=9 height=21 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="Q" +char id=82 x=39 y=15 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=69 y=36 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=39 y=33 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=68 y=93 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=16 y=41 width=11 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=44 width=15 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=38 y=77 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=27 y=77 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=59 y=38 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=113 y=106 width=6 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=106 y=19 width=7 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=114 y=23 width=6 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=26 y=114 width=10 height=15 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=41 width=15 height=2 xoffset=0 yoffset=24 xadvance=16 page=0 chnl=0 letter="_" +char id=96 x=106 y=106 width=6 height=6 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=40 y=0 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=89 y=18 width=8 height=18 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=80 y=18 width=8 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=48 y=95 width=9 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=88 y=95 width=8 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=106 y=0 width=7 height=18 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=49 y=70 width=9 height=18 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=89 y=37 width=8 height=18 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=120 y=46 width=4 height=19 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=114 y=46 width=5 height=23 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=49 y=51 width=9 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=120 y=89 width=4 height=18 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=113 width=13 height=14 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=58 y=89 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=48 y=114 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=50 y=19 width=9 height=18 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=50 y=0 width=9 height=18 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=97 y=115 width=7 height=14 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=59 y=74 width=8 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=106 y=42 width=7 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=38 y=95 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=15 y=80 width=10 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=0 y=62 width=14 height=14 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=29 y=0 width=10 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=17 y=18 width=10 height=18 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=105 y=115 width=7 height=14 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=88 y=72 width=8 height=22 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=121 y=0 width=3 height=22 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=97 y=56 width=8 height=22 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=14 y=114 width=11 height=5 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=49 y=89 width=5 height=5 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=77 width=14 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font-export.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font-export.png new file mode 100644 index 0000000..0a17db7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font.png new file mode 100644 index 0000000..fa994d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/sub-title-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font-export.fnt new file mode 100644 index 0000000..a12cdc5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font-export.fnt @@ -0,0 +1,104 @@ +info face="title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=49 base=49 scaleW=253 scaleH=253 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="title-font-export.png" +chars count=98 +char id=33 x=243 y=178 width=7 height=38 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=29 y=166 width=16 height=14 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=33 y=37 width=20 height=29 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0 letter="#" +char id=36 x=94 y=187 width=18 height=46 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=34 height=36 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=29 y=127 width=23 height=38 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=46 y=166 width=6 height=14 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=232 y=131 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="(" +char id=41 x=232 y=37 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=24 y=224 width=20 height=19 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="*" +char id=43 x=33 y=67 width=17 height=17 xoffset=0 yoffset=24 xadvance=19 page=0 chnl=0 letter="+" +char id=44 x=65 y=104 width=8 height=14 xoffset=0 yoffset=42 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=18 y=244 width=17 height=4 xoffset=0 yoffset=31 xadvance=19 page=0 chnl=0 letter="-" +char id=46 x=36 y=244 width=8 height=8 xoffset=0 yoffset=41 xadvance=10 page=0 chnl=0 letter="." +char id=47 x=232 y=84 width=12 height=46 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=95 y=120 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="0" +char id=49 x=170 y=115 width=17 height=36 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="1" +char id=50 x=95 y=0 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="2" +char id=51 x=113 y=74 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="3" +char id=52 x=32 y=85 width=21 height=36 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="4" +char id=53 x=113 y=157 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="5" +char id=54 x=114 y=111 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="6" +char id=55 x=114 y=0 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="7" +char id=56 x=35 y=0 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=75 y=150 width=19 height=36 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="9" +char id=58 x=149 y=224 width=8 height=28 xoffset=0 yoffset=21 xadvance=10 page=0 chnl=0 letter=":" +char id=59 x=233 y=0 width=8 height=35 xoffset=0 yoffset=21 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=113 y=231 width=14 height=21 xoffset=0 yoffset=22 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=0 y=235 width=17 height=13 xoffset=0 yoffset=26 xadvance=19 page=0 chnl=0 letter="=" +char id=62 x=45 y=228 width=15 height=21 xoffset=0 yoffset=22 xadvance=17 page=0 chnl=0 letter=">" +char id=63 x=132 y=37 width=18 height=38 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="?" +char id=64 x=0 y=37 width=32 height=47 xoffset=0 yoffset=11 xadvance=34 page=0 chnl=0 letter="@" +char id=65 x=53 y=122 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=113 y=37 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="B" +char id=67 x=170 y=39 width=17 height=36 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="C" +char id=68 x=94 y=83 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=204 y=183 width=14 height=36 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="E" +char id=70 x=204 y=146 width=14 height=36 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=113 y=194 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=133 y=76 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="H" +char id=73 x=245 y=79 width=6 height=36 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=188 y=47 width=15 height=36 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="J" +char id=75 x=56 y=0 width=19 height=36 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="K" +char id=76 x=219 y=0 width=13 height=36 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=28 y=187 width=25 height=36 xoffset=0 yoffset=13 xadvance=27 page=0 chnl=0 letter="M" +char id=78 x=151 y=113 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="N" +char id=79 x=132 y=148 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="O" +char id=80 x=152 y=0 width=17 height=36 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="P" +char id=81 x=94 y=39 width=18 height=43 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=151 y=187 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="R" +char id=83 x=151 y=150 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="S" +char id=84 x=151 y=37 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="T" +char id=85 x=133 y=0 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=54 y=37 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=0 y=85 width=31 height=36 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="W" +char id=88 x=74 y=74 width=19 height=36 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="X" +char id=89 x=54 y=159 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="Y" +char id=90 x=132 y=185 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="Z" +char id=91 x=219 y=124 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=219 y=77 width=12 height=46 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="\" +char id=93 x=219 y=171 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=54 y=196 width=20 height=31 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=0 y=122 width=31 height=4 xoffset=0 yoffset=52 xadvance=33 page=0 chnl=0 letter="_" +char id=96 x=54 y=104 width=10 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=75 y=217 width=16 height=29 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="a" +char id=98 x=152 y=74 width=17 height=38 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="b" +char id=99 x=188 y=84 width=15 height=29 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=187 y=191 width=16 height=38 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="d" +char id=101 x=132 y=222 width=16 height=29 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="e" +char id=102 x=204 y=107 width=14 height=38 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=187 y=152 width=16 height=38 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="g" +char id=104 x=170 y=0 width=17 height=38 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="h" +char id=105 x=245 y=39 width=7 height=39 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="i" +char id=106 x=232 y=178 width=10 height=48 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=76 y=0 width=18 height=38 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="k" +char id=108 x=245 y=0 width=7 height=38 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter="l" +char id=109 x=0 y=127 width=28 height=29 xoffset=0 yoffset=20 xadvance=30 page=0 chnl=0 letter="m" +char id=110 x=133 y=113 width=17 height=29 xoffset=0 yoffset=20 xadvance=19 page=0 chnl=0 letter="n" +char id=111 x=75 y=39 width=16 height=29 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="o" +char id=112 x=170 y=76 width=17 height=38 xoffset=0 yoffset=20 xadvance=19 page=0 chnl=0 letter="p" +char id=113 x=170 y=152 width=16 height=38 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="q" +char id=114 x=204 y=77 width=14 height=29 xoffset=0 yoffset=20 xadvance=16 page=0 chnl=0 letter="r" +char id=115 x=188 y=114 width=15 height=29 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="s" +char id=116 x=205 y=0 width=13 height=36 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=95 y=157 width=17 height=29 xoffset=0 yoffset=20 xadvance=19 page=0 chnl=0 letter="u" +char id=118 x=75 y=187 width=18 height=29 xoffset=0 yoffset=20 xadvance=20 page=0 chnl=0 letter="v" +char id=119 x=0 y=157 width=28 height=29 xoffset=0 yoffset=20 xadvance=30 page=0 chnl=0 letter="w" +char id=120 x=54 y=74 width=19 height=29 xoffset=0 yoffset=20 xadvance=21 page=0 chnl=0 letter="x" +char id=121 x=74 y=111 width=19 height=38 xoffset=0 yoffset=20 xadvance=21 page=0 chnl=0 letter="y" +char id=122 x=204 y=47 width=15 height=29 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="z" +char id=123 x=188 y=0 width=16 height=46 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="{" +char id=124 x=245 y=116 width=5 height=46 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="|" +char id=125 x=170 y=191 width=16 height=46 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="}" +char id=126 x=0 y=224 width=23 height=10 xoffset=0 yoffset=31 xadvance=25 page=0 chnl=0 letter="~" +char id=8226 x=220 y=37 width=11 height=10 xoffset=0 yoffset=28 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=187 width=27 height=36 xoffset=0 yoffset=13 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=88 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font-export.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font-export.png new file mode 100644 index 0000000..ac7853b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font.png b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font.png new file mode 100644 index 0000000..2da6928 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/raw/title-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/font-export.fnt new file mode 100644 index 0000000..bc9ef2d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=94 scaleH=96 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=90 y=35 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=0 y=89 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=11 y=33 width=8 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=20 y=0 width=7 height=16 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=12 height=12 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="%" +char id=38 x=0 y=75 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=80 y=4 width=2 height=5 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=85 y=0 width=4 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=79 y=78 width=5 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=20 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=44 y=89 width=6 height=6 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="+" +char id=44 x=6 y=89 width=3 height=5 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=12 y=30 width=6 height=2 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=86 y=55 width=3 height=3 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=80 y=42 width=5 height=16 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=20 y=38 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=28 y=65 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=28 y=78 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=36 y=13 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=11 y=44 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=72 y=30 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=43 y=50 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=20 y=70 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=19 y=57 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=73 y=0 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=85 y=31 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=86 y=42 width=3 height=12 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=52 y=88 width=6 height=7 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="<" +char id=61 x=20 y=51 width=6 height=5 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="=" +char id=62 x=59 y=28 width=5 height=7 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=36 y=78 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=13 width=11 height=16 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=36 y=65 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="A" +char id=66 x=44 y=63 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=36 y=26 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="C" +char id=68 x=20 y=17 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=66 y=68 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=66 y=55 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=28 y=0 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=65 y=28 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="H" +char id=73 x=85 y=18 width=3 height=12 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=66 y=0 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=44 y=13 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=73 y=71 width=5 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=10 y=70 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=35 y=39 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="N" +char id=79 x=35 y=52 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="O" +char id=80 x=52 y=11 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=12 y=13 width=7 height=15 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="Q" +char id=82 x=36 y=0 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=44 y=0 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=51 y=50 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=44 y=76 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=44 y=26 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="V" +char id=87 x=0 y=57 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="W" +char id=88 x=28 y=26 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=28 y=13 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=66 y=81 width=6 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="Z" +char id=91 x=79 y=24 width=5 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=85 y=59 width=4 height=16 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="\" +char id=93 x=79 y=60 width=5 height=17 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=43 y=39 width=7 height=10 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=0 y=30 width=11 height=2 xoffset=0 yoffset=18 xadvance=12 page=0 chnl=0 letter="_" +char id=96 x=59 y=91 width=4 height=4 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=13 y=0 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=52 y=63 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=52 y=77 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=52 y=24 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=52 y=0 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=59 y=77 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=59 y=0 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=59 y=63 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=90 y=49 width=3 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=85 y=76 width=4 height=17 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=27 y=51 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=90 y=64 width=2 height=13 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=46 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=58 y=38 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=20 y=83 width=7 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=59 y=14 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=65 y=41 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=79 y=13 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=73 y=84 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=66 y=13 width=5 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=28 y=39 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=11 y=57 width=7 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=10 y=83 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=51 y=39 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=58 y=49 width=6 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="y" +char id=122 x=73 y=60 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=72 y=13 width=6 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=89 y=18 width=3 height=16 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=73 y=43 width=6 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=70 width=9 height=4 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=80 y=0 width=4 height=3 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=33 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.atlas b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.atlas new file mode 100644 index 0000000..ad8779d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.atlas @@ -0,0 +1,269 @@ + +lgdxs-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 734, 836 + size: 50, 50 + split: 0, 0, 0, 0 + pad: 4, 4, 4, 4 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-big + rotate: false + xy: 158, 102 + size: 110, 50 + split: 1, 0, 0, 0 + pad: 4, 4, 4, 4 + orig: 110, 50 + offset: 0, 0 + index: -1 +button-big-disabled + rotate: false + xy: 158, 50 + size: 110, 50 + split: 0, 0, 0, 25 + pad: 5, 4, 4, 4 + orig: 110, 50 + offset: 0, 0 + index: -1 +button-disabled + rotate: false + xy: 734, 784 + size: 50, 50 + split: 0, 0, 0, 25 + pad: 4, 4, 4, 4 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-oval + rotate: false + xy: 1, 6 + size: 115, 52 + split: 20, 21, 0, 0 + pad: 10, 11, 5, 5 + orig: 115, 52 + offset: 0, 0 + index: -1 +button-small + rotate: false + xy: 256, 434 + size: 110, 27 + split: 0, 0, 0, 0 + pad: 4, 4, 4, 4 + orig: 110, 27 + offset: 0, 0 + index: -1 +button-small-disabled + rotate: false + xy: 577, 746 + size: 110, 27 + split: 0, 0, 0, 14 + pad: 4, 4, 4, 4 + orig: 110, 27 + offset: 0, 0 + index: -1 +corner-bl + rotate: false + xy: 256, 463 + size: 130, 128 + split: 67, 0, 78, 0 + pad: 4, 84, 4, 67 + orig: 130, 128 + offset: 0, 0 + index: -1 +corner-bm-bl + rotate: false + xy: 387, 888 + size: 188, 130 + split: 126, 0, 80, 0 + pad: 5, 82, 6, 65 + orig: 188, 130 + offset: 0, 0 + index: -1 +corner-bm-br + rotate: false + xy: 1, 286 + size: 188, 130 + split: 0, 125, 80, 0 + pad: 82, 5, 4, 66 + orig: 188, 130 + offset: 0, 0 + index: -1 +corner-bm-tl + rotate: false + xy: 387, 756 + size: 188, 130 + split: 126, 0, 0, 80 + pad: 4, 82, 66, 4 + orig: 188, 130 + offset: 0, 0 + index: -1 +corner-bm-tr + rotate: false + xy: 577, 888 + size: 188, 130 + split: 0, 126, 0, 80 + pad: 82, 5, 66, 5 + orig: 188, 130 + offset: 0, 0 + index: -1 +corner-br + rotate: false + xy: 388, 414 + size: 128, 130 + split: 0, 66, 80, 0 + pad: 82, 4, 4, 67 + orig: 128, 130 + offset: 0, 0 + index: -1 +corner-bs-bl + rotate: false + xy: 1, 173 + size: 155, 111 + split: 126, 0, 84, 0 + pad: 5, 49, 4, 61 + orig: 155, 111 + offset: 0, 0 + index: -1 +corner-bs-br + rotate: false + xy: 577, 775 + size: 155, 111 + split: 0, 128, 84, 0 + pad: 49, 4, 4, 55 + orig: 155, 111 + offset: 0, 0 + index: -1 +corner-bs-tl + rotate: false + xy: 1, 60 + size: 155, 111 + split: 125, 0, 63, 4 + pad: 4, 49, 0, 84 + orig: 155, 111 + offset: 0, 0 + index: -1 +corner-bs-tr + rotate: false + xy: 767, 907 + size: 155, 111 + split: 0, 127, 0, 84 + pad: 49, 4, 56, 4 + orig: 155, 111 + offset: 0, 0 + index: -1 +corner-tl + rotate: false + xy: 191, 286 + size: 128, 130 + split: 67, 0, 0, 80 + pad: 4, 82, 64, 4 + orig: 128, 130 + offset: 0, 0 + index: -1 +corner-tr + rotate: false + xy: 399, 546 + size: 130, 128 + split: 0, 67, 0, 78 + pad: 84, 4, 67, 4 + orig: 130, 128 + offset: 0, 0 + index: -1 +endcap-left + rotate: false + xy: 321, 382 + size: 47, 50 + split: 21, 0, 0, 0 + pad: 25, 4, 4, 4 + orig: 47, 50 + offset: 0, 0 + index: -1 +endcap-right + rotate: false + xy: 321, 330 + size: 47, 50 + split: 0, 22, 0, 0 + pad: 5, 26, 4, 4 + orig: 47, 50 + offset: 0, 0 + index: -1 +endcap-small-left + rotate: false + xy: 689, 746 + size: 29, 27 + split: 11, 0, 0, 0 + pad: 15, 4, 4, 3 + orig: 29, 27 + offset: 0, 0 + index: -1 +endcap-small-right + rotate: false + xy: 118, 31 + size: 29, 27 + split: 0, 11, 0, 0 + pad: 4, 14, 4, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 924, 922 + size: 94, 96 + orig: 94, 96 + offset: 0, 0 + index: -1 +logo + rotate: false + xy: 1, 673 + size: 384, 345 + orig: 384, 345 + offset: 0, 0 + index: -1 +progress-bar-back-horizontal + rotate: false + xy: 387, 676 + size: 141, 78 + orig: 141, 78 + offset: 0, 0 + index: -1 +progress-bar-back-vertical + rotate: false + xy: 270, 2 + size: 77, 140 + orig: 77, 140 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 256, 593 + size: 141, 78 + orig: 141, 78 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 285, 144 + size: 77, 140 + orig: 77, 140 + offset: 0, 0 + index: -1 +sub-title-font-export + rotate: false + xy: 158, 154 + size: 125, 130 + orig: 125, 130 + offset: 0, 0 + index: -1 +title-font-export + rotate: false + xy: 1, 418 + size: 253, 253 + orig: 253, 253 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.json b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.json new file mode 100644 index 0000000..8320eee --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.json @@ -0,0 +1,2144 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + sub-title: { + file: sub-title-font-export.fnt + } + title: { + file: title-font-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + clear: { + r: 1 + g: 0 + b: 0 + a: 0 + } + color: { + r: 0.21176471 + g: 0.5254902 + b: 1 + a: 1 + } + color-pressed: { + r: 0.03529412 + g: 0.28235295 + b: 0.92156863 + a: 1 + } + color2: { + r: 1 + g: 0.6 + b: 0.20392157 + a: 1 + } + color2-pressed: { + r: 0.827451 + g: 0.37254903 + b: 0.08627451 + a: 1 + } + color3: { + r: 0.65882355 + g: 0.6156863 + b: 0.20392157 + a: 1 + } + color3-pressed: { + r: 0.94509804 + g: 0.76862746 + b: 0.06666667 + a: 1 + } + color4: { + r: 0.5803922 + g: 0.627451 + b: 1 + a: 1 + } + color4-pressed: { + r: 0.12156863 + g: 1 + b: 0.9764706 + a: 1 + } + color5: { + r: 0.92156863 + g: 0.90588236 + b: 0.75686276 + a: 1 + } + color5-pressed: { + r: 0.84705883 + g: 0.64705884 + b: 0.4392157 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-c: { + name: button + color: color + } + button-c-p: { + name: button + color: color-pressed + } + button-c2: { + name: button + color: color2 + } + button-c2-p: { + name: button + color: color2-pressed + } + button-c3: { + name: button + color: color3 + } + button-c3-p: { + name: button + color: color3-pressed + } + button-c4: { + name: button + color: color4 + } + button-c4-p: { + name: button + color: color4-pressed + } + button-c5: { + name: button + color: color5 + } + button-c5-p: { + name: button + color: color5-pressed + } + button-big-c: { + name: button-big + color: color + } + button-big-c-p: { + name: button-big + color: color-pressed + } + button-big-c2: { + name: button-big + color: color2 + } + button-big-c2-p: { + name: button-big + color: color2-pressed + } + button-big-c3: { + name: button-big + color: color3 + } + button-big-c3-p: { + name: button-big + color: color3-pressed + } + button-big-c4: { + name: button-big + color: color4 + } + button-big-c4-p: { + name: button-big + color: color4-pressed + } + button-big-c5: { + name: button-big + color: color5 + } + button-big-c5-p: { + name: button-big + color: color5-pressed + } + button-big-disabled-c: { + name: button-big-disabled + color: color + } + button-big-disabled-c-p: { + name: button-big-disabled + color: color-pressed + } + button-big-disabled-c2: { + name: button-big-disabled + color: color2 + } + button-big-disabled-c2-p: { + name: button-big-disabled + color: color2-pressed + } + button-big-disabled-c3: { + name: button-big-disabled + color: color3 + } + button-big-disabled-c3-p: { + name: button-big-disabled + color: color3-pressed + } + button-big-disabled-c4: { + name: button-big-disabled + color: color4 + } + button-big-disabled-c4-p: { + name: button-big-disabled + color: color4-pressed + } + button-big-disabled-c5: { + name: button-big-disabled + color: color5 + } + button-big-disabled-c5-p: { + name: button-big-disabled + color: color5-pressed + } + button-disabled-c: { + name: button-disabled + color: color + } + button-disabled-c-p: { + name: button-disabled + color: color-pressed + } + button-disabled-c2: { + name: button-disabled + color: color2 + } + button-disabled-c2-p: { + name: button-disabled + color: color2-pressed + } + button-disabled-c3: { + name: button-disabled + color: color3 + } + button-disabled-c3-p: { + name: button-disabled + color: color3-pressed + } + button-disabled-c4: { + name: button-disabled + color: color4 + } + button-disabled-c4-p: { + name: button-disabled + color: color4-pressed + } + button-disabled-c5: { + name: button-disabled + color: color5 + } + button-disabled-c5-p: { + name: button-disabled + color: color5-pressed + } + button-oval-c: { + name: button-oval + color: color + } + button-oval-c-p: { + name: button-oval + color: color-pressed + } + button-oval-c2: { + name: button-oval + color: color2 + } + button-oval-c2-p: { + name: button-oval + color: color2-pressed + } + button-oval-c3: { + name: button-oval + color: color3 + } + button-oval-c3-p: { + name: button-oval + color: color3-pressed + } + button-oval-c4: { + name: button-oval + color: color4 + } + button-oval-c4-p: { + name: button-oval + color: color4-pressed + } + button-oval-c5: { + name: button-oval + color: color5 + } + button-oval-c5-p: { + name: button-oval + color: color5-pressed + } + button-small-c: { + name: button-small + color: color + } + button-small-c-p: { + name: button-small + color: color-pressed + } + button-small-c2: { + name: button-small + color: color2 + } + button-small-c2-p: { + name: button-small + color: color2-pressed + } + button-small-c3: { + name: button-small + color: color3 + } + button-small-c3-p: { + name: button-small + color: color3-pressed + } + button-small-c4: { + name: button-small + color: color4 + } + button-small-c4-p: { + name: button-small + color: color4-pressed + } + button-small-c5: { + name: button-small + color: color5 + } + button-small-c5-p: { + name: button-small + color: color5-pressed + } + button-small-disabled-c: { + name: button-small-disabled + color: color + } + button-small-disabled-c-p: { + name: button-small-disabled + color: color-pressed + } + button-small-disabled-c2: { + name: button-small-disabled + color: color2 + } + button-small-disabled-c2-p: { + name: button-small-disabled + color: color2-pressed + } + button-small-disabled-c3: { + name: button-small-disabled + color: color3 + } + button-small-disabled-c3-p: { + name: button-small-disabled + color: color3-pressed + } + button-small-disabled-c4: { + name: button-small-disabled + color: color4 + } + button-small-disabled-c4-p: { + name: button-small-disabled + color: color4-pressed + } + button-small-disabled-c5: { + name: button-small-disabled + color: color5 + } + button-small-disabled-c5-p: { + name: button-small-disabled + color: color5-pressed + } + corner-bl-c: { + name: corner-bl + color: color + } + corner-bl-c-p: { + name: corner-bl + color: color-pressed + } + corner-bl-c2: { + name: corner-bl + color: color2 + } + corner-bl-c2-p: { + name: corner-bl + color: color2-pressed + } + corner-bl-c3: { + name: corner-bl + color: color3 + } + corner-bl-c3-p: { + name: corner-bl + color: color3-pressed + } + corner-bl-c4: { + name: corner-bl + color: color4 + } + corner-bl-c4-p: { + name: corner-bl + color: color4-pressed + } + corner-bl-c5: { + name: corner-bl + color: color5 + } + corner-bl-c5-p: { + name: corner-bl + color: color5-pressed + } + corner-bm-bl-c: { + name: corner-bm-bl + color: color + } + corner-bm-bl-c-p: { + name: corner-bm-bl + color: color-pressed + } + corner-bm-bl-c2: { + name: corner-bm-bl + color: color2 + } + corner-bm-bl-c2-p: { + name: corner-bm-bl + color: color2-pressed + } + corner-bm-bl-c3: { + name: corner-bm-bl + color: color3 + } + corner-bm-bl-c3-p: { + name: corner-bm-bl + color: color3-pressed + } + corner-bm-bl-c4: { + name: corner-bm-bl + color: color4 + } + corner-bm-bl-c4-p: { + name: corner-bm-bl + color: color4-pressed + } + corner-bm-bl-c5: { + name: corner-bm-bl + color: color5 + } + corner-bm-bl-c5-p: { + name: corner-bm-bl + color: color5-pressed + } + corner-bm-br-c: { + name: corner-bm-br + color: color + } + corner-bm-br-c-p: { + name: corner-bm-br + color: color-pressed + } + corner-bm-br-c2: { + name: corner-bm-br + color: color2 + } + corner-bm-br-c2-p: { + name: corner-bm-br + color: color2-pressed + } + corner-bm-br-c3: { + name: corner-bm-br + color: color3 + } + corner-bm-br-c3-p: { + name: corner-bm-br + color: color3-pressed + } + corner-bm-br-c4: { + name: corner-bm-br + color: color4 + } + corner-bm-br-c4-p: { + name: corner-bm-br + color: color4-pressed + } + corner-bm-br-c5: { + name: corner-bm-br + color: color5 + } + corner-bm-br-c5-p: { + name: corner-bm-br + color: color5-pressed + } + corner-bm-tl-c: { + name: corner-bm-tl + color: color + } + corner-bm-tl-c-p: { + name: corner-bm-tl + color: color-pressed + } + corner-bm-tl-c2: { + name: corner-bm-tl + color: color2 + } + corner-bm-tl-c2-p: { + name: corner-bm-tl + color: color2-pressed + } + corner-bm-tl-c3: { + name: corner-bm-tl + color: color3 + } + corner-bm-tl-c3-p: { + name: corner-bm-tl + color: color3-pressed + } + corner-bm-tl-c4: { + name: corner-bm-tl + color: color4 + } + corner-bm-tl-c4-p: { + name: corner-bm-tl + color: color4-pressed + } + corner-bm-tl-c5: { + name: corner-bm-tl + color: color5 + } + corner-bm-tl-c5-p: { + name: corner-bm-tl + color: color5-pressed + } + corner-bm-tr-c: { + name: corner-bm-tr + color: color + } + corner-bm-tr-c-p: { + name: corner-bm-tr + color: color-pressed + } + corner-bm-tr-c2: { + name: corner-bm-tr + color: color2 + } + corner-bm-tr-c2-p: { + name: corner-bm-tr + color: color2-pressed + } + corner-bm-tr-c3: { + name: corner-bm-tr + color: color3 + } + corner-bm-tr-c3-p: { + name: corner-bm-tr + color: color3-pressed + } + corner-bm-tr-c4: { + name: corner-bm-tr + color: color4 + } + corner-bm-tr-c4-p: { + name: corner-bm-tr + color: color4-pressed + } + corner-bm-tr-c5: { + name: corner-bm-tr + color: color5 + } + corner-bm-tr-c5-p: { + name: corner-bm-tr + color: color5-pressed + } + corner-br-c: { + name: corner-br + color: color + } + corner-br-c-p: { + name: corner-br + color: color-pressed + } + corner-br-c2: { + name: corner-br + color: color2 + } + corner-br-c2-p: { + name: corner-br + color: color2-pressed + } + corner-br-c3: { + name: corner-br + color: color3 + } + corner-br-c3-p: { + name: corner-br + color: color3-pressed + } + corner-br-c4: { + name: corner-br + color: color4 + } + corner-br-c4-p: { + name: corner-br + color: color4-pressed + } + corner-br-c5: { + name: corner-br + color: color5 + } + corner-br-c5-p: { + name: corner-br + color: color5-pressed + } + corner-bs-bl-c: { + name: corner-bs-bl + color: color + } + corner-bs-bl-c-p: { + name: corner-bs-bl + color: color-pressed + } + corner-bs-bl-c2: { + name: corner-bs-bl + color: color2 + } + corner-bs-bl-c2-p: { + name: corner-bs-bl + color: color2-pressed + } + corner-bs-bl-c3: { + name: corner-bs-bl + color: color3 + } + corner-bs-bl-c3-p: { + name: corner-bs-bl + color: color3-pressed + } + corner-bs-bl-c4: { + name: corner-bs-bl + color: color4 + } + corner-bs-bl-c4-p: { + name: corner-bs-bl + color: color4-pressed + } + corner-bs-bl-c5: { + name: corner-bs-bl + color: color5 + } + corner-bs-bl-c5-p: { + name: corner-bs-bl + color: color5-pressed + } + corner-bs-br-c: { + name: corner-bs-br + color: color + } + corner-bs-br-c-p: { + name: corner-bs-br + color: color-pressed + } + corner-bs-br-c2: { + name: corner-bs-br + color: color2 + } + corner-bs-br-c2-p: { + name: corner-bs-br + color: color2-pressed + } + corner-bs-br-c3: { + name: corner-bs-br + color: color3 + } + corner-bs-br-c3-p: { + name: corner-bs-br + color: color3-pressed + } + corner-bs-br-c4: { + name: corner-bs-br + color: color4 + } + corner-bs-br-c4-p: { + name: corner-bs-br + color: color4-pressed + } + corner-bs-br-c5: { + name: corner-bs-br + color: color5 + } + corner-bs-br-c5-p: { + name: corner-bs-br + color: color5-pressed + } + corner-bs-tl-c: { + name: corner-bs-tl + color: color + } + corner-bs-tl-c-p: { + name: corner-bs-tl + color: color-pressed + } + corner-bs-tl-c2: { + name: corner-bs-tl + color: color2 + } + corner-bs-tl-c2-p: { + name: corner-bs-tl + color: color2-pressed + } + corner-bs-tl-c3: { + name: corner-bs-tl + color: color3 + } + corner-bs-tl-c3-p: { + name: corner-bs-tl + color: color3-pressed + } + corner-bs-tl-c4: { + name: corner-bs-tl + color: color4 + } + corner-bs-tl-c4-p: { + name: corner-bs-tl + color: color4-pressed + } + corner-bs-tl-c5: { + name: corner-bs-tl + color: color5 + } + corner-bs-tl-c5-p: { + name: corner-bs-tl + color: color5-pressed + } + corner-bs-tr-c: { + name: corner-bs-tr + color: color + } + corner-bs-tr-c-p: { + name: corner-bs-tr + color: color-pressed + } + corner-bs-tr-c2: { + name: corner-bs-tr + color: color2 + } + corner-bs-tr-c2-p: { + name: corner-bs-tr + color: color2-pressed + } + corner-bs-tr-c3: { + name: corner-bs-tr + color: color3 + } + corner-bs-tr-c3-p: { + name: corner-bs-tr + color: color3-pressed + } + corner-bs-tr-c4: { + name: corner-bs-tr + color: color4 + } + corner-bs-tr-c4-p: { + name: corner-bs-tr + color: color4-pressed + } + corner-bs-tr-c5: { + name: corner-bs-tr + color: color5 + } + corner-bs-tr-c5-p: { + name: corner-bs-tr + color: color5-pressed + } + corner-tl-c: { + name: corner-tl + color: color + } + corner-tl-c-p: { + name: corner-tl + color: color-pressed + } + corner-tl-c2: { + name: corner-tl + color: color2 + } + corner-tl-c2-p: { + name: corner-tl + color: color2-pressed + } + corner-tl-c3: { + name: corner-tl + color: color3 + } + corner-tl-c3-p: { + name: corner-tl + color: color3-pressed + } + corner-tl-c4: { + name: corner-tl + color: color4 + } + corner-tl-c4-p: { + name: corner-tl + color: color4-pressed + } + corner-tl-c5: { + name: corner-tl + color: color5 + } + corner-tl-c5-p: { + name: corner-tl + color: color5-pressed + } + corner-tr-c: { + name: corner-tr + color: color + } + corner-tr-c-p: { + name: corner-tr + color: color-pressed + } + corner-tr-c2: { + name: corner-tr + color: color2 + } + corner-tr-c2-p: { + name: corner-tr + color: color2-pressed + } + corner-tr-c3: { + name: corner-tr + color: color3 + } + corner-tr-c3-p: { + name: corner-tr + color: color3-pressed + } + corner-tr-c4: { + name: corner-tr + color: color4 + } + corner-tr-c4-p: { + name: corner-tr + color: color4-pressed + } + corner-tr-c5: { + name: corner-tr + color: color5 + } + corner-tr-c5-p: { + name: corner-tr + color: color5-pressed + } + endcap-left-c: { + name: endcap-left + color: color + } + endcap-left-c-p: { + name: endcap-left + color: color-pressed + } + endcap-left-c2: { + name: endcap-left + color: color2 + } + endcap-left-c2-p: { + name: endcap-left + color: color2-pressed + } + endcap-left-c3: { + name: endcap-left + color: color3 + } + endcap-left-c3-p: { + name: endcap-left + color: color3-pressed + } + endcap-left-c4: { + name: endcap-left + color: color4 + } + endcap-left-c4-p: { + name: endcap-left + color: color4-pressed + } + endcap-left-c5: { + name: endcap-left + color: color5 + } + endcap-left-c5-p: { + name: endcap-left + color: color5-pressed + } + endcap-right-c: { + name: endcap-right + color: color + } + endcap-right-c-p: { + name: endcap-right + color: color-pressed + } + endcap-right-c2: { + name: endcap-right + color: color2 + } + endcap-right-c2-p: { + name: endcap-right + color: color2-pressed + } + endcap-right-c3: { + name: endcap-right + color: color3 + } + endcap-right-c3-p: { + name: endcap-right + color: color3-pressed + } + endcap-right-c4: { + name: endcap-right + color: color4 + } + endcap-right-c4-p: { + name: endcap-right + color: color4-pressed + } + endcap-right-c5: { + name: endcap-right + color: color5 + } + endcap-right-c5-p: { + name: endcap-right + color: color5-pressed + } + endcap-small-left-c: { + name: endcap-small-left + color: color + } + endcap-small-left-c-p: { + name: endcap-small-left + color: color-pressed + } + endcap-small-left-c2: { + name: endcap-small-left + color: color2 + } + endcap-small-left-c2-p: { + name: endcap-small-left + color: color2-pressed + } + endcap-small-left-c3: { + name: endcap-small-left + color: color3 + } + endcap-small-left-c3-p: { + name: endcap-small-left + color: color3-pressed + } + endcap-small-left-c4: { + name: endcap-small-left + color: color4 + } + endcap-small-left-c4-p: { + name: endcap-small-left + color: color4-pressed + } + endcap-small-left-c5: { + name: endcap-small-left + color: color5 + } + endcap-small-left-c5-p: { + name: endcap-small-left + color: color5-pressed + } + endcap-small-right-c: { + name: endcap-small-right + color: color + } + endcap-small-right-c-p: { + name: endcap-small-right + color: color-pressed + } + endcap-small-right-c2: { + name: endcap-small-right + color: color2 + } + endcap-small-right-c2-p: { + name: endcap-small-right + color: color2-pressed + } + endcap-small-right-c3: { + name: endcap-small-right + color: color3 + } + endcap-small-right-c3-p: { + name: endcap-small-right + color: color3-pressed + } + endcap-small-right-c4: { + name: endcap-small-right + color: color4 + } + endcap-small-right-c4-p: { + name: endcap-small-right + color: color4-pressed + } + endcap-small-right-c5: { + name: endcap-small-right + color: color5 + } + endcap-small-right-c5-p: { + name: endcap-small-right + color: color5-pressed + } + progress-bar-back-horizontal-c: { + name: progress-bar-back-horizontal + color: color + } + progress-bar-back-vertical-c: { + name: progress-bar-back-vertical + color: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-c + down: button-c-p + disabled: button-disabled-c + } + toggle: { + up: button-c + down: button-c-p + checked: button-c-p + disabled: button-disabled-c + } + color2: { + up: button-c2 + down: button-c2-p + disabled: button-disabled-c2 + } + color3: { + up: button-c3 + down: button-c3-p + disabled: button-disabled-c3 + } + color4: { + up: button-c4 + down: button-c4-p + disabled: button-disabled-c4 + } + color5: { + up: button-c5 + down: button-c5-p + disabled: button-disabled-c5 + } + small1: { + up: button-small-c + down: button-small-c-p + disabled: button-small-disabled-c + } + small2: { + up: button-small-c2 + down: button-small-c2-p + disabled: button-small-disabled-c2 + } + small3: { + up: button-small-c3 + down: button-small-c3-p + disabled: button-small-disabled-c3 + } + small4: { + up: button-small-c4 + down: button-small-c4-p + disabled: button-small-disabled-c4 + } + small5: { + up: button-small-c5 + down: button-small-c5-p + disabled: button-small-disabled-c5 + } + big1: { + up: button-big-c + down: button-big-c-p + disabled: button-big-disabled-c + } + big2: { + up: button-big-c2 + down: button-big-c2-p + disabled: button-big-disabled-c2 + } + big3: { + up: button-big-c3 + down: button-big-c3-p + disabled: button-big-disabled-c3 + } + big4: { + up: button-big-c4 + down: button-big-c4-p + disabled: button-big-disabled-c4 + } + big5: { + up: button-big-c5 + down: button-big-c5-p + disabled: button-big-disabled-c5 + } + oval1: { + up: button-oval-c + down: button-oval-c-p + } + oval2: { + up: button-oval-c2 + down: button-oval-c2-p + } + oval3: { + up: button-oval-c3 + down: button-oval-c3-p + } + oval4: { + up: button-oval-c4 + down: button-oval-c4-p + } + oval5: { + up: button-oval-c5 + down: button-oval-c5-p + } + corner-tl1: { + up: corner-tl-c + down: corner-tl-c-p + } + corner-tl2: { + up: corner-tl-c2 + down: corner-tl-c2-p + } + corner-tl3: { + up: corner-tl-c3 + down: corner-tl-c3-p + } + corner-tl4: { + up: corner-tl-c4 + down: corner-tl-c4-p + } + corner-tl5: { + up: corner-tl-c5 + down: corner-tl-c5-p + } + corner-tr1: { + up: corner-tr-c + down: corner-tr-c-p + } + corner-tr2: { + up: corner-tr-c2 + down: corner-tr-c2-p + } + corner-tr3: { + up: corner-tr-c3 + down: corner-tr-c3-p + } + corner-tr4: { + up: corner-tr-c4 + down: corner-tr-c4-p + } + corner-tr5: { + up: corner-tr-c5 + down: corner-tr-c5-p + } + corner-br1: { + up: corner-br-c + down: corner-br-c-p + } + corner-br2: { + up: corner-br-c2 + down: corner-br-c2-p + } + corner-br3: { + up: corner-br-c3 + down: corner-br-c3-p + } + corner-br4: { + up: corner-br-c4 + down: corner-br-c4-p + } + corner-br5: { + up: corner-br-c5 + down: corner-br-c5-p + } + corner-bl1: { + up: corner-bl-c + down: corner-bl-c-p + } + corner-bl2: { + up: corner-bl-c + down: corner-bl-c-p + } + corner-bl2: { + up: corner-bl-c2 + down: corner-bl-c2-p + } + corner-bl3: { + up: corner-bl-c3 + down: corner-bl-c3-p + } + corner-bl4: { + up: corner-bl-c4 + down: corner-bl-c4-p + } + corner-bl5: { + up: corner-bl-c5 + down: corner-bl-c5-p + } + corner-bm-tl1: { + up: corner-bm-tl-c + down: corner-bm-tl-c-p + } + corner-bm-tl2: { + up: corner-bm-tl-c2 + down: corner-bm-tl-c2-p + } + corner-bm-tl3: { + up: corner-bm-tl-c3 + down: corner-bm-tl-c3-p + } + corner-bm-tl4: { + up: corner-bm-tl-c4 + down: corner-bm-tl-c4-p + } + corner-bm-tl5: { + up: corner-bm-tl-c5 + down: corner-bm-tl-c5-p + } + corner-bm-tr1: { + up: corner-bm-tr-c + down: corner-bm-tr-c-p + } + corner-bm-tr2: { + up: corner-bm-tr-c2 + down: corner-bm-tr-c2-p + } + corner-bm-tr3: { + up: corner-bm-tr-c3 + down: corner-bm-tr-c3-p + } + corner-bm-tr4: { + up: corner-bm-tr-c4 + down: corner-bm-tr-c4-p + } + corner-bm-tr5: { + up: corner-bm-tr-c5 + down: corner-bm-tr-c5-p + } + corner-bm-br1: { + up: corner-bm-br-c + down: corner-bs-br-c-p + } + corner-bm-br2: { + up: corner-bs-br-c2 + down: corner-bm-br-c2-p + } + corner-bm-br3: { + up: corner-bs-br-c3 + down: corner-bm-br-c3-p + } + corner-bm-br4: { + up: corner-bm-br-c4 + down: corner-bm-br-c4-p + } + corner-bm-br5: { + up: corner-bm-br-c5 + down: corner-bm-br-c5-p + } + corner-bm-bl1: { + up: corner-bm-bl-c + down: corner-bm-bl-c-p + } + corner-bm-bl2: { + up: corner-bm-bl-c2 + down: corner-bm-bl-c2-p + } + corner-bm-bl3: { + up: corner-bm-bl-c3 + down: corner-bm-bl-c3-p + } + corner-bm-bl4: { + up: corner-bm-bl-c4 + down: corner-bm-bl-c4-p + } + corner-bm-bl5: { + up: corner-bm-bl-c5 + down: corner-bm-bl-c5-p + } + corner-bs-tl1: { + up: corner-bs-tl-c + down: corner-bs-tl-c-p + } + corner-bs-tl2: { + up: corner-bs-tl-c2 + down: corner-bs-tl-c2-p + } + corner-bs-tl3: { + up: corner-bs-tl-c3 + down: corner-bs-tl-c3-p + } + corner-bs-tl4: { + up: corner-bs-tl-c4 + down: corner-bs-tl-c4-p + } + corner-bs-tl5: { + up: corner-bs-tl-c5 + down: corner-bs-tl-c5-p + } + corner-bs-tr1: { + up: corner-bs-tr-c + down: corner-bs-tr-c-p + } + corner-bs-tr2: { + up: corner-bs-tr-c2 + down: corner-bs-tr-c2-p + } + corner-bs-tr3: { + up: corner-bs-tr-c3 + down: corner-bs-tr-c3-p + } + corner-bs-tr4: { + up: corner-bs-tr-c4 + down: corner-bs-tr-c4-p + } + corner-bs-tr5: { + up: corner-bs-tr-c5 + down: corner-bs-tr-c5-p + } + corner-bs-br1: { + up: corner-bs-br-c + down: corner-bs-br-c-p + } + corner-bs-br2: { + up: corner-bs-br-c2 + down: corner-bs-br-c2-p + } + corner-bs-br3: { + up: corner-bs-br-c3 + down: corner-bs-br-c3-p + } + corner-bs-br4: { + up: corner-bs-br-c4 + down: corner-bs-br-c4-p + } + corner-bs-br5: { + up: corner-bs-br-c5 + down: corner-bs-br-c5-p + } + corner-bs-bl1: { + up: corner-bs-bl-c + down: corner-bs-bl-c-p + } + corner-bs-bl2: { + up: corner-bs-bl-c2 + down: corner-bs-bl-c2-p + } + corner-bs-bl3: { + up: corner-bs-bl-c3 + down: corner-bs-bl-c3-p + } + corner-bs-bl4: { + up: corner-bs-bl-c4 + down: corner-bs-bl-c4-p + } + corner-bs-bl5: { + up: corner-bs-bl-c5 + down: corner-bs-bl-c5-p + } + endcap-left1: { + up: endcap-left-c + down: endcap-left-c-p + } + endcap-left2: { + up: endcap-left-c2 + down: endcap-left-c2-p + } + endcap-left3: { + up: endcap-left-c3 + down: endcap-left-c3-p + } + endcap-left4: { + up: endcap-left-c4 + down: endcap-left-c4-p + } + endcap-left5: { + up: endcap-left-c5 + down: endcap-left-c5-p + } + endcap-right1: { + up: endcap-right-c + down: endcap-right-c-p + } + endcap-right2: { + up: endcap-right-c2 + down: endcap-right-c2-p + } + endcap-right3: { + up: endcap-right-c3 + down: endcap-right-c3-p + } + endcap-right4: { + up: endcap-right-c4 + down: endcap-right-c4-p + } + endcap-right5: { + up: endcap-right-c5 + down: endcap-right-c5-p + } + endcap-small-left1: { + up: endcap-small-left-c + down: endcap-small-left-c-p + } + endcap-small-left2: { + up: endcap-small-left-c2 + down: endcap-small-left-c2-p + } + endcap-small-left3: { + up: endcap-small-left-c3 + down: endcap-small-left-c3-p + } + endcap-small-left4: { + up: endcap-small-left-c4 + down: endcap-small-left-c4-p + } + endcap-small-left5: { + up: endcap-small-left-c5 + down: endcap-small-left-c5-p + } + endcap-small-right1: { + up: endcap-small-right-c + down: endcap-small-right-c-p + } + endcap-small-right2: { + up: endcap-small-right-c2 + down: endcap-small-right-c2-p + } + endcap-small-right3: { + up: endcap-small-right-c3 + down: endcap-small-right-c3-p + } + endcap-small-right4: { + up: endcap-small-right-c4 + down: endcap-small-right-c4-p + } + endcap-small-right5: { + up: endcap-small-right-c5 + down: endcap-small-right-c5-p + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + white: { + font: font + fontColor: white + } + subtitle: { + font: sub-title + fontColor: black + } + subtitle-white: { + font: sub-title + fontColor: white + } + title: { + font: title + fontColor: black + } + title-white: { + font: title + fontColor: white + } + c1: { + font: font + fontColor: color + } + c2: { + font: font + fontColor: color2 + } + c3: { + font: font + fontColor: color3 + } + c4: { + font: font + fontColor: color4 + } + c5: { + font: font + fontColor: color5 + } + subtitle-c1: { + font: sub-title + fontColor: color + } + subtitle-c2: { + font: sub-title + fontColor: color2 + } + subtitle-c3: { + font: sub-title + fontColor: color3 + } + subtitle-c4: { + font: sub-title + fontColor: color4 + } + subtitle-c5: { + font: sub-title + fontColor: color5 + } + title-c1: { + font: title + fontColor: color + } + title-c2: { + font: title + fontColor: color2 + } + title-c3: { + font: title + fontColor: color3 + } + title-c4: { + font: title + fontColor: color4 + } + title-c5: { + font: title + fontColor: color5 + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-back-horizontal-c + knobBefore: progress-bar-horizontal + } + default-vertical: { + background: progress-bar-back-vertical-c + knobBefore: progress-bar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-c + down: button-c-p + disabled: button-disabled-c + } + toggle: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-c + down: button-c-p + checked: button-c-p + disabled: button-disabled-c + } + color2: { + font: font + fontColor: black + disabledFontColor: clear + up: button-c2 + down: button-c2-p + disabled: button-disabled-c2 + } + color3: { + font: font + fontColor: black + disabledFontColor: clear + up: button-c3 + down: button-c3-p + disabled: button-disabled-c3 + } + color4: { + font: font + fontColor: black + disabledFontColor: clear + up: button-c4 + down: button-c4-p + disabled: button-disabled-c4 + } + color5: { + font: font + fontColor: black + disabledFontColor: clear + up: button-c5 + down: button-c5-p + disabled: button-disabled-c5 + } + small1: { + font: font + fontColor: black + disabledFontColor: clear + up: button-small-c + down: button-small-c-p + disabled: button-small-disabled-c + } + small2: { + font: font + fontColor: black + disabledFontColor: clear + up: button-small-c2 + down: button-small-c2-p + disabled: button-small-disabled-c2 + } + small3: { + font: font + fontColor: black + disabledFontColor: clear + up: button-small-c3 + down: button-small-c3-p + disabled: button-small-disabled-c3 + } + small4: { + font: font + fontColor: black + disabledFontColor: clear + up: button-small-c4 + down: button-small-c4-p + disabled: button-small-disabled-c4 + } + small5: { + font: font + fontColor: black + disabledFontColor: clear + up: button-small-c5 + down: button-small-c5-p + disabled: button-small-disabled-c5 + } + big1: { + font: font + fontColor: black + disabledFontColor: clear + up: button-big-c + down: button-big-c-p + disabled: button-big-disabled-c + } + big2: { + font: font + fontColor: black + disabledFontColor: clear + up: button-big-c2 + down: button-big-c2-p + disabled: button-big-disabled-c2 + } + big3: { + font: font + fontColor: black + disabledFontColor: clear + up: button-big-c3 + down: button-big-c3-p + disabled: button-big-disabled-c3 + } + big4: { + font: font + fontColor: black + disabledFontColor: clear + up: button-big-c4 + down: button-big-c4-p + disabled: button-big-disabled-c4 + } + big5: { + font: font + fontColor: black + disabledFontColor: clear + up: button-big-c5 + down: button-big-c5-p + disabled: button-big-disabled-c5 + } + oval1: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-oval-c + down: button-oval-c-p + } + oval2: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-oval-c2 + down: button-oval-c2-p + } + oval3: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-oval-c3 + down: button-oval-c3-p + } + oval4: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-oval-c4 + down: button-oval-c4-p + } + oval5: { + font: sub-title + fontColor: black + disabledFontColor: clear + up: button-oval-c5 + down: button-oval-c5-p + } + corner-tl1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tl-c + down: corner-tl-c-p + } + corner-tl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tl-c2 + down: corner-tl-c2-p + } + corner-tl3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tl-c3 + down: corner-tl-c3-p + } + corner-tl4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tl-c4 + down: corner-tl-c4-p + } + corner-tl5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tl-c5 + down: corner-tl-c5-p + } + corner-tr1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tr-c + down: corner-tr-c-p + } + corner-tr2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tr-c2 + down: corner-tr-c2-p + } + corner-tr3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tr-c3 + down: corner-tr-c3-p + } + corner-tr4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tr-c4 + down: corner-tr-c4-p + } + corner-tr5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-tr-c5 + down: corner-tr-c5-p + } + corner-br1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-br-c + down: corner-br-c-p + } + corner-br2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-br-c2 + down: corner-br-c2-p + } + corner-br3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-br-c3 + down: corner-br-c3-p + } + corner-br4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-br-c4 + down: corner-br-c4-p + } + corner-br5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-br-c5 + down: corner-br-c5-p + } + corner-bl1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bl-c + down: corner-bl-c-p + } + corner-bl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bl-c + down: corner-bl-c-p + } + corner-bl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bl-c2 + down: corner-bl-c2-p + } + corner-bl3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bl-c3 + down: corner-bl-c3-p + } + corner-bl4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bl-c4 + down: corner-bl-c4-p + } + corner-bl5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bl-c5 + down: corner-bl-c5-p + } + corner-bm-tl1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tl-c + down: corner-bm-tl-c-p + } + corner-bm-tl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tl-c2 + down: corner-bm-tl-c2-p + } + corner-bm-tl3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tl-c3 + down: corner-bm-tl-c3-p + } + corner-bm-tl4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tl-c4 + down: corner-bm-tl-c4-p + } + corner-bm-tl5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tl-c5 + down: corner-bm-tl-c5-p + } + corner-bm-tr1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tr-c + down: corner-bm-tr-c-p + } + corner-bm-tr2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tr-c2 + down: corner-bm-tr-c2-p + } + corner-bm-tr3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tr-c3 + down: corner-bm-tr-c3-p + } + corner-bm-tr4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tr-c4 + down: corner-bm-tr-c4-p + } + corner-bm-tr5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-tr-c5 + down: corner-bm-tr-c5-p + } + corner-bm-br1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-br-c + down: corner-bs-br-c-p + } + corner-bm-br2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c2 + down: corner-bm-br-c2-p + } + corner-bm-br3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c3 + down: corner-bm-br-c3-p + } + corner-bm-br4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-br-c4 + down: corner-bm-br-c4-p + } + corner-bm-br5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-br-c5 + down: corner-bm-br-c5-p + } + corner-bm-bl1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-bl-c + down: corner-bm-bl-c-p + } + corner-bm-bl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-bl-c2 + down: corner-bm-bl-c2-p + } + corner-bm-bl3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-bl-c3 + down: corner-bm-bl-c3-p + } + corner-bm-bl4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-bl-c4 + down: corner-bm-bl-c4-p + } + corner-bm-bl5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bm-bl-c5 + down: corner-bm-bl-c5-p + } + corner-bs-tl1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tl-c + down: corner-bs-tl-c-p + } + corner-bs-tl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tl-c2 + down: corner-bs-tl-c2-p + } + corner-bs-tl3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tl-c3 + down: corner-bs-tl-c3-p + } + corner-bs-tl4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tl-c4 + down: corner-bs-tl-c4-p + } + corner-bs-tl5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tl-c5 + down: corner-bs-tl-c5-p + } + corner-bs-tr1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tr-c + down: corner-bs-tr-c-p + } + corner-bs-tr2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tr-c2 + down: corner-bs-tr-c2-p + } + corner-bs-tr3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tr-c3 + down: corner-bs-tr-c3-p + } + corner-bs-tr4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tr-c4 + down: corner-bs-tr-c4-p + } + corner-bs-tr5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-tr-c5 + down: corner-bs-tr-c5-p + } + corner-bs-br1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c + down: corner-bs-br-c-p + } + corner-bs-br2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c2 + down: corner-bs-br-c2-p + } + corner-bs-br3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c3 + down: corner-bs-br-c3-p + } + corner-bs-br4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c4 + down: corner-bs-br-c4-p + } + corner-bs-br5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-br-c5 + down: corner-bs-br-c5-p + } + corner-bs-bl1: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-bl-c + down: corner-bs-bl-c-p + } + corner-bs-bl2: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-bl-c2 + down: corner-bs-bl-c2-p + } + corner-bs-bl3: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-bl-c3 + down: corner-bs-bl-c3-p + } + corner-bs-bl4: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-bl-c4 + down: corner-bs-bl-c4-p + } + corner-bs-bl5: { + font: font + fontColor: black + disabledFontColor: clear + up: corner-bs-bl-c5 + down: corner-bs-bl-c5-p + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.png b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.png new file mode 100644 index 0000000..80b3642 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/lgdxs-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/skin/sub-title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/sub-title-font-export.fnt new file mode 100644 index 0000000..85c1034 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/sub-title-font-export.fnt @@ -0,0 +1,104 @@ +info face="sub-title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=23 base=23 scaleW=125 scaleH=130 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="sub-title-font-export.png" +chars count=98 +char id=33 x=119 y=70 width=4 height=18 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=39 y=51 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=27 y=95 width=10 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=28 y=36 width=10 height=22 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=17 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="%" +char id=38 x=14 y=95 width=12 height=18 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=114 y=88 width=4 height=7 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=106 y=83 width=7 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=106 y=60 width=7 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=14 y=120 width=10 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=78 y=108 width=9 height=8 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=114 y=96 width=4 height=7 xoffset=0 yoffset=19 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=80 y=33 width=8 height=2 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=89 y=67 width=4 height=4 xoffset=0 yoffset=19 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=114 y=0 width=6 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=70 y=0 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=97 y=97 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=79 y=54 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=69 y=54 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=15 y=62 width=11 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=68 y=111 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=18 y=0 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="6" +char id=55 x=79 y=36 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=27 y=59 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=28 y=18 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=99 y=0 width=4 height=14 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=114 y=70 width=4 height=17 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=89 y=56 width=7 height=10 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=50 y=38 width=8 height=6 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=78 y=117 width=7 height=10 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=68 y=74 width=9 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="?" +char id=64 x=0 y=18 width=16 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="@" +char id=65 x=37 y=110 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=38 y=59 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=90 y=0 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=80 y=0 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=88 y=110 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=98 y=18 width=7 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=60 y=0 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=59 y=56 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=120 y=108 width=3 height=17 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=97 y=79 width=8 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=60 y=18 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=98 y=36 width=7 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=95 width=13 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=78 y=90 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=78 y=72 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="O" +char id=80 x=70 y=18 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=58 y=104 width=9 height=21 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="Q" +char id=82 x=39 y=15 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=69 y=36 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=39 y=33 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=68 y=93 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="U" +char id=86 x=16 y=41 width=11 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=44 width=15 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=38 y=77 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=27 y=77 width=10 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=59 y=38 width=9 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=113 y=106 width=6 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=106 y=19 width=7 height=22 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=114 y=23 width=6 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=26 y=114 width=10 height=15 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=41 width=15 height=2 xoffset=0 yoffset=24 xadvance=16 page=0 chnl=0 letter="_" +char id=96 x=106 y=106 width=6 height=6 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=40 y=0 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=89 y=18 width=8 height=18 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=80 y=18 width=8 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=48 y=95 width=9 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=88 y=95 width=8 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=106 y=0 width=7 height=18 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=49 y=70 width=9 height=18 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=89 y=37 width=8 height=18 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=120 y=46 width=4 height=19 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=114 y=46 width=5 height=23 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=49 y=51 width=9 height=18 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=120 y=89 width=4 height=18 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=113 width=13 height=14 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=58 y=89 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=48 y=114 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=50 y=19 width=9 height=18 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=50 y=0 width=9 height=18 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=97 y=115 width=7 height=14 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=59 y=74 width=8 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=106 y=42 width=7 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=38 y=95 width=9 height=14 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=15 y=80 width=10 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=0 y=62 width=14 height=14 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=29 y=0 width=10 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=17 y=18 width=10 height=18 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=105 y=115 width=7 height=14 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=88 y=72 width=8 height=22 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=121 y=0 width=3 height=22 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=97 y=56 width=8 height=22 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=14 y=114 width=11 height=5 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=49 y=89 width=5 height=5 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=77 width=14 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lgdxs/skin/title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/title-font-export.fnt new file mode 100644 index 0000000..a12cdc5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lgdxs/skin/title-font-export.fnt @@ -0,0 +1,104 @@ +info face="title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=49 base=49 scaleW=253 scaleH=253 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="title-font-export.png" +chars count=98 +char id=33 x=243 y=178 width=7 height=38 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=29 y=166 width=16 height=14 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=33 y=37 width=20 height=29 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0 letter="#" +char id=36 x=94 y=187 width=18 height=46 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=34 height=36 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=29 y=127 width=23 height=38 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=46 y=166 width=6 height=14 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=232 y=131 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="(" +char id=41 x=232 y=37 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=24 y=224 width=20 height=19 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="*" +char id=43 x=33 y=67 width=17 height=17 xoffset=0 yoffset=24 xadvance=19 page=0 chnl=0 letter="+" +char id=44 x=65 y=104 width=8 height=14 xoffset=0 yoffset=42 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=18 y=244 width=17 height=4 xoffset=0 yoffset=31 xadvance=19 page=0 chnl=0 letter="-" +char id=46 x=36 y=244 width=8 height=8 xoffset=0 yoffset=41 xadvance=10 page=0 chnl=0 letter="." +char id=47 x=232 y=84 width=12 height=46 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=95 y=120 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="0" +char id=49 x=170 y=115 width=17 height=36 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="1" +char id=50 x=95 y=0 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="2" +char id=51 x=113 y=74 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="3" +char id=52 x=32 y=85 width=21 height=36 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="4" +char id=53 x=113 y=157 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="5" +char id=54 x=114 y=111 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="6" +char id=55 x=114 y=0 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="7" +char id=56 x=35 y=0 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=75 y=150 width=19 height=36 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="9" +char id=58 x=149 y=224 width=8 height=28 xoffset=0 yoffset=21 xadvance=10 page=0 chnl=0 letter=":" +char id=59 x=233 y=0 width=8 height=35 xoffset=0 yoffset=21 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=113 y=231 width=14 height=21 xoffset=0 yoffset=22 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=0 y=235 width=17 height=13 xoffset=0 yoffset=26 xadvance=19 page=0 chnl=0 letter="=" +char id=62 x=45 y=228 width=15 height=21 xoffset=0 yoffset=22 xadvance=17 page=0 chnl=0 letter=">" +char id=63 x=132 y=37 width=18 height=38 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="?" +char id=64 x=0 y=37 width=32 height=47 xoffset=0 yoffset=11 xadvance=34 page=0 chnl=0 letter="@" +char id=65 x=53 y=122 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=113 y=37 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="B" +char id=67 x=170 y=39 width=17 height=36 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="C" +char id=68 x=94 y=83 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=204 y=183 width=14 height=36 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="E" +char id=70 x=204 y=146 width=14 height=36 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=113 y=194 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=133 y=76 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="H" +char id=73 x=245 y=79 width=6 height=36 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=188 y=47 width=15 height=36 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="J" +char id=75 x=56 y=0 width=19 height=36 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="K" +char id=76 x=219 y=0 width=13 height=36 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=28 y=187 width=25 height=36 xoffset=0 yoffset=13 xadvance=27 page=0 chnl=0 letter="M" +char id=78 x=151 y=113 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="N" +char id=79 x=132 y=148 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="O" +char id=80 x=152 y=0 width=17 height=36 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="P" +char id=81 x=94 y=39 width=18 height=43 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=151 y=187 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="R" +char id=83 x=151 y=150 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="S" +char id=84 x=151 y=37 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="T" +char id=85 x=133 y=0 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=54 y=37 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=0 y=85 width=31 height=36 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="W" +char id=88 x=74 y=74 width=19 height=36 xoffset=0 yoffset=13 xadvance=21 page=0 chnl=0 letter="X" +char id=89 x=54 y=159 width=20 height=36 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="Y" +char id=90 x=132 y=185 width=18 height=36 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="Z" +char id=91 x=219 y=124 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=219 y=77 width=12 height=46 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="\" +char id=93 x=219 y=171 width=12 height=46 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=54 y=196 width=20 height=31 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=0 y=122 width=31 height=4 xoffset=0 yoffset=52 xadvance=33 page=0 chnl=0 letter="_" +char id=96 x=54 y=104 width=10 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=75 y=217 width=16 height=29 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="a" +char id=98 x=152 y=74 width=17 height=38 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="b" +char id=99 x=188 y=84 width=15 height=29 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=187 y=191 width=16 height=38 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="d" +char id=101 x=132 y=222 width=16 height=29 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="e" +char id=102 x=204 y=107 width=14 height=38 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=187 y=152 width=16 height=38 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="g" +char id=104 x=170 y=0 width=17 height=38 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 letter="h" +char id=105 x=245 y=39 width=7 height=39 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="i" +char id=106 x=232 y=178 width=10 height=48 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=76 y=0 width=18 height=38 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="k" +char id=108 x=245 y=0 width=7 height=38 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter="l" +char id=109 x=0 y=127 width=28 height=29 xoffset=0 yoffset=20 xadvance=30 page=0 chnl=0 letter="m" +char id=110 x=133 y=113 width=17 height=29 xoffset=0 yoffset=20 xadvance=19 page=0 chnl=0 letter="n" +char id=111 x=75 y=39 width=16 height=29 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="o" +char id=112 x=170 y=76 width=17 height=38 xoffset=0 yoffset=20 xadvance=19 page=0 chnl=0 letter="p" +char id=113 x=170 y=152 width=16 height=38 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="q" +char id=114 x=204 y=77 width=14 height=29 xoffset=0 yoffset=20 xadvance=16 page=0 chnl=0 letter="r" +char id=115 x=188 y=114 width=15 height=29 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="s" +char id=116 x=205 y=0 width=13 height=36 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="t" +char id=117 x=95 y=157 width=17 height=29 xoffset=0 yoffset=20 xadvance=19 page=0 chnl=0 letter="u" +char id=118 x=75 y=187 width=18 height=29 xoffset=0 yoffset=20 xadvance=20 page=0 chnl=0 letter="v" +char id=119 x=0 y=157 width=28 height=29 xoffset=0 yoffset=20 xadvance=30 page=0 chnl=0 letter="w" +char id=120 x=54 y=74 width=19 height=29 xoffset=0 yoffset=20 xadvance=21 page=0 chnl=0 letter="x" +char id=121 x=74 y=111 width=19 height=38 xoffset=0 yoffset=20 xadvance=21 page=0 chnl=0 letter="y" +char id=122 x=204 y=47 width=15 height=29 xoffset=0 yoffset=20 xadvance=17 page=0 chnl=0 letter="z" +char id=123 x=188 y=0 width=16 height=46 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="{" +char id=124 x=245 y=116 width=5 height=46 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="|" +char id=125 x=170 y=191 width=16 height=46 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="}" +char id=126 x=0 y=224 width=23 height=10 xoffset=0 yoffset=31 xadvance=25 page=0 chnl=0 letter="~" +char id=8226 x=220 y=37 width=11 height=10 xoffset=0 yoffset=28 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=187 width=27 height=36 xoffset=0 yoffset=13 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=88 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lml/README.md b/src/main/resources/omni_power/gdx-skins/lml/README.md new file mode 100644 index 0000000..ce37ba5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lml/README.md @@ -0,0 +1,11 @@ +# LML theme + +This is a simplistic, sorta-flat design, black-red-white(-gray) skin. It was made to showcase [LML project](https://github.com/czyzby/gdx-lml/tree/master/lml) - it is currently used in [gdx-lml-tests application](https://github.com/czyzby/gdx-lml/tree/master/examples/gdx-lml-tests), where you can find its latest version. + +![LML](preview.png) + +Supports every **Scene2D** widget. Features no additional icons - but raw assets are included, so it should be pretty easy to extend. Since it was originally designed to display code snippets, it includes [Hack font](https://github.com/chrissimpkins/Hack) - after removing it, the atlas gets ridiculously small and requires no external `.fnt` files, as this skin internally uses the `arial-15.fnt` as default font, which is shipped with the **LibGDX** core library (whether you like it or not). + +### License + +Everything except for the *Hack* font is licensed [CC0](https://creativecommons.org/publicdomain/zero/1.0/). You can use it without credit, although you can mention that the skin was created by **MJ** (or **Czyzby**). Posting a link to [gdx-lml](https://github.com/czyzby/gdx-lml) would also be nice. diff --git a/src/main/resources/omni_power/gdx-skins/lml/preview.png b/src/main/resources/omni_power/gdx-skins/lml/preview.png new file mode 100644 index 0000000..dae8d35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/check-off.png b/src/main/resources/omni_power/gdx-skins/lml/raw/check-off.png new file mode 100644 index 0000000..762a269 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/check-on.png b/src/main/resources/omni_power/gdx-skins/lml/raw/check-on.png new file mode 100644 index 0000000..e0218e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/lml/raw/cursor.png new file mode 100644 index 0000000..0af2143 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/frame.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/frame.9.png new file mode 100644 index 0000000..a56aa1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/frame.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/hack.png b/src/main/resources/omni_power/gdx-skins/lml/raw/hack.png new file mode 100644 index 0000000..60005b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/hack.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/pack.json b/src/main/resources/omni_power/gdx-skins/lml/raw/pack.json new file mode 100644 index 0000000..92820d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lml/raw/pack.json @@ -0,0 +1,7 @@ +{ + duplicatePadding: false, + paddingX: 1, + paddingY: 1, + stripWhitespaceX: true, + stripWhitespaceY: true +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/progress-background-vertical.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-background-vertical.9.png new file mode 100644 index 0000000..59b3a5f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-background-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/progress-background.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-background.9.png new file mode 100644 index 0000000..eb16310 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-background.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/progress-knob-vertical.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-knob-vertical.9.png new file mode 100644 index 0000000..0909779 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-knob-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/progress-knob.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-knob.9.png new file mode 100644 index 0000000..c9b2836 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/progress-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/select.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/select.9.png new file mode 100644 index 0000000..c72bc40 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/select.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/tip.png b/src/main/resources/omni_power/gdx-skins/lml/raw/tip.png new file mode 100644 index 0000000..ccf783a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/tip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/lml/raw/tree-minus.png new file mode 100644 index 0000000..53f95de Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/lml/raw/tree-plus.png new file mode 100644 index 0000000..0a1af37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/warn.png b/src/main/resources/omni_power/gdx-skins/lml/raw/warn.png new file mode 100644 index 0000000..935c930 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/warn.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/white.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/white.9.png new file mode 100644 index 0000000..60ad7e5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/white.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/lml/raw/window.9.png new file mode 100644 index 0000000..e57918a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/lml/skin/hack.fnt b/src/main/resources/omni_power/gdx-skins/lml/skin/hack.fnt new file mode 100644 index 0000000..0856bd9 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lml/skin/hack.fnt @@ -0,0 +1,101 @@ +info face="Hack Regular" size=12 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=15 base=12 scaleW=128 scaleH=128 pages=1 packed=0 +page id=0 file="hack.png" +chars count=95 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 +char id=124 x=0 y=0 width=3 height=15 xoffset=3 yoffset=1 xadvance=7 page=0 chnl=0 +char id=106 x=3 y=0 width=5 height=15 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=36 x=8 y=0 width=7 height=14 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=127 x=15 y=0 width=8 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=125 x=23 y=0 width=7 height=13 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=123 x=30 y=0 width=7 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=93 x=37 y=0 width=4 height=13 xoffset=2 yoffset=2 xadvance=7 page=0 chnl=0 +char id=91 x=41 y=0 width=4 height=13 xoffset=2 yoffset=2 xadvance=7 page=0 chnl=0 +char id=41 x=45 y=0 width=5 height=13 xoffset=2 yoffset=1 xadvance=7 page=0 chnl=0 +char id=40 x=50 y=0 width=5 height=13 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=92 x=55 y=0 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=64 x=63 y=0 width=8 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=47 x=71 y=0 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=121 x=79 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=113 x=87 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=112 x=95 y=0 width=7 height=12 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=108 x=102 y=0 width=7 height=12 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=107 x=109 y=0 width=7 height=12 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=105 x=116 y=0 width=7 height=12 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=104 x=0 y=15 width=7 height=12 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=103 x=7 y=15 width=8 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=102 x=15 y=15 width=8 height=12 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 +char id=100 x=23 y=15 width=8 height=12 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 +char id=98 x=31 y=15 width=7 height=12 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=81 x=38 y=15 width=8 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=38 x=46 y=15 width=9 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=35 x=55 y=15 width=9 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=59 x=64 y=15 width=4 height=11 xoffset=2 yoffset=5 xadvance=7 page=0 chnl=0 +char id=33 x=68 y=15 width=4 height=11 xoffset=2 yoffset=2 xadvance=7 page=0 chnl=0 +char id=57 x=72 y=15 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=56 x=80 y=15 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=55 x=88 y=15 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=54 x=96 y=15 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=53 x=104 y=15 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=52 x=112 y=15 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=49 x=120 y=15 width=7 height=11 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=116 x=0 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=90 x=8 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=89 x=16 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=88 x=24 y=27 width=9 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=87 x=33 y=27 width=9 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=86 x=42 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=85 x=50 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=84 x=58 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=83 x=66 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=82 x=74 y=27 width=9 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=80 x=83 y=27 width=7 height=11 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=78 x=90 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=77 x=98 y=27 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=76 x=106 y=27 width=7 height=11 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=75 x=113 y=27 width=9 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=74 x=0 y=38 width=7 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=73 x=7 y=38 width=7 height=11 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=72 x=14 y=38 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=71 x=22 y=38 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=70 x=30 y=38 width=7 height=11 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=69 x=37 y=38 width=7 height=11 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=68 x=44 y=38 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=66 x=52 y=38 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=65 x=60 y=38 width=8 height=11 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=37 x=68 y=38 width=9 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=63 x=77 y=38 width=7 height=10 xoffset=1 yoffset=3 xadvance=7 page=0 chnl=0 +char id=48 x=84 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=51 x=92 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=50 x=100 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=79 x=108 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=67 x=116 y=38 width=8 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=42 x=0 y=49 width=8 height=9 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=122 x=8 y=49 width=7 height=9 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=120 x=15 y=49 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=119 x=23 y=49 width=9 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=118 x=32 y=49 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=117 x=40 y=49 width=7 height=9 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=115 x=47 y=49 width=7 height=9 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=114 x=54 y=49 width=7 height=9 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=110 x=61 y=49 width=7 height=9 xoffset=1 yoffset=4 xadvance=7 page=0 chnl=0 +char id=109 x=68 y=49 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=101 x=76 y=49 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=99 x=84 y=49 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=97 x=92 y=49 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=43 x=100 y=49 width=8 height=8 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=62 x=108 y=49 width=8 height=8 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=60 x=116 y=49 width=8 height=8 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=58 x=0 y=58 width=4 height=8 xoffset=2 yoffset=5 xadvance=7 page=0 chnl=0 +char id=111 x=4 y=58 width=8 height=8 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=94 x=12 y=58 width=8 height=6 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=44 x=20 y=58 width=4 height=6 xoffset=2 yoffset=10 xadvance=7 page=0 chnl=0 +char id=61 x=24 y=58 width=8 height=5 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 +char id=39 x=32 y=58 width=3 height=5 xoffset=3 yoffset=2 xadvance=7 page=0 chnl=0 +char id=34 x=35 y=58 width=6 height=5 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=126 x=41 y=58 width=8 height=4 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=46 x=49 y=58 width=4 height=4 xoffset=2 yoffset=9 xadvance=7 page=0 chnl=0 +char id=96 x=53 y=58 width=5 height=4 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=95 x=58 y=58 width=8 height=2 xoffset=0 yoffset=13 xadvance=7 page=0 chnl=0 +char id=45 x=66 y=58 width=7 height=2 xoffset=1 yoffset=8 xadvance=7 page=0 chnl=0 +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/lml/skin/skin.atlas b/src/main/resources/omni_power/gdx-skins/lml/skin/skin.atlas new file mode 100644 index 0000000..1830367 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lml/skin/skin.atlas @@ -0,0 +1,126 @@ + +skin.png +size: 128,128 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +check-off + rotate: false + xy: 24, 44 + size: 16, 16 + orig: 20, 20 + offset: 1, 2 + index: -1 +check-on + rotate: false + xy: 41, 44 + size: 16, 16 + orig: 20, 20 + offset: 1, 2 + index: -1 +cursor + rotate: false + xy: 9, 6 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +frame + rotate: false + xy: 91, 57 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +hack + rotate: false + xy: 1, 61 + size: 126, 66 + orig: 128, 128 + offset: 0, 62 + index: -1 +progress-background + rotate: false + xy: 69, 42 + size: 7, 18 + split: 3, 3, 0, 18 + orig: 7, 18 + offset: 0, 0 + index: -1 +progress-background-vertical + rotate: false + xy: 1, 9 + size: 18, 7 + split: 0, 18, 3, 3 + orig: 18, 7 + offset: 0, 0 + index: -1 +progress-knob + rotate: false + xy: 22, 19 + size: 1, 18 + split: 0, 0, 0, 18 + orig: 1, 18 + offset: 0, 0 + index: -1 +progress-knob-vertical + rotate: false + xy: 24, 42 + size: 18, 1 + split: 0, 18, 0, 0 + orig: 18, 1 + offset: 0, 0 + index: -1 +select + rotate: false + xy: 1, 38 + size: 22, 22 + split: 19, 2, 0, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +tip + rotate: false + xy: 58, 42 + size: 10, 18 + orig: 20, 20 + offset: 5, 1 + index: -1 +tree-minus + rotate: false + xy: 1, 1 + size: 7, 7 + orig: 20, 20 + offset: 7, 5 + index: -1 +tree-plus + rotate: false + xy: 24, 32 + size: 6, 9 + orig: 20, 20 + offset: 8, 6 + index: -1 +warn + rotate: false + xy: 77, 42 + size: 7, 18 + orig: 20, 20 + offset: 6, 1 + index: -1 +white + rotate: false + xy: 1, 17 + size: 20, 20 + split: 3, 3, 3, 3 + orig: 20, 20 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 85, 34 + size: 5, 26 + split: 2, 2, 23, 2 + orig: 5, 26 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/lml/skin/skin.json b/src/main/resources/omni_power/gdx-skins/lml/skin/skin.json new file mode 100644 index 0000000..2bc34b2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/lml/skin/skin.json @@ -0,0 +1,83 @@ +{ + com.badlogic.gdx.graphics.g2d.BitmapFont: { + default: { file: com/badlogic/gdx/utils/arial-15.fnt }, + code: { file: hack.fnt } + }, + com.badlogic.gdx.graphics.Color: { + white: { a: 1, b: 1, g: 1, r: 1 }, + black: { a: 1, b: 0, g: 0, r: 0 }, + gray: { a: 1, b: 0.175, g: 0.175, r: 0.175 }, + red: { a: 1, b: 0, g: 0, r: 0.3 }, + green: { a: 1, b: 0, g: 0.5, r: 0 } + }, + com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + black: { name: white, color: black }, + red: { name: white, color: red }, + white: { name: white, color: white }, + gray: { name: white, color: gray }, + alpha: { name: white, color: { a: 0.5, b: 0, g: 0, r: 0 } }, + red-alpha: { name: white, color: { a: 0.5, b: 0, g: 0, r: 0.4 } }, + red-frame: { name: frame, color: red } + red-small: { name: cursor, color: red } + black-small: { name: cursor, color: black } + }, + com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: black, over: gray, down: red, disabled: gray }, + toggle: { up: black, over: gray, down: red, checked: red, disabled: gray } + }, + com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { checkboxOn: check-on, checkboxOff: check-off, font: default, fontColor: white } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: black, over: gray, down: red, imageUp: warn } + }, + com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { up: black, over: gray, down: red, font: default, fontColor: white, pressedOffsetY: -1, pressedOffsetX: 1, disabled: gray, imageUp: warn } + }, + com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { font: default, fontColor: white }, + code: { font: code, fontColor: white } + }, + com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { fontColorUnselected: white, selection: red, fontColorSelected: white, font: default } + }, + com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: progress-background, knobBefore: progress-knob }, + default-vertical: { background: progress-background-vertical, knobBefore: progress-knob-vertical } + }, + com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { vScroll: black, hScrollKnob: red, hScroll: black, vScrollKnob: red } + }, + com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { font: default, fontColor: white, background: select, scrollStyle: default, listStyle: { font: default, selection: black, background: red } } + }, + com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { background: black-small, knob: black, knobOver: gray, knobDown: red, disabledBackground: gray, disabledKnob: gray }, + default-vertical: { background: black-small, knob: black, knobOver: gray, knobDown: red, disabledBackground: gray, disabledKnob: gray } + }, + com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: red-small }, + default-horizontal: { handle: red-small } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { up: black, over: gray, down: red, font: default, fontColor: white, pressedOffsetY: -1, pressedOffsetX: 1, disabled: gray }, + toggle: { up: black, over: gray, down: red, checked: red, font: default, fontColor: white, pressedOffsetY: -1, pressedOffsetX: 1, disabled: gray } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { selection: red-alpha, focusedBackground: gray, background: black, font: default, fontColor: white, cursor: cursor }, + code: { selection: red-alpha, focusedBackground: gray, background: black, font: code, fontColor: white, cursor: cursor } + }, + com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { label: default, background: gray } + }, + com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: gray, knob: black } + }, + com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { minus: tree-minus, plus: tree-plus, selection: red, over: gray } + }, + com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { titleFont: default, background: window, titleFontColor: white }, + dialog: { titleFont: default, background: window, titleFontColor: white, stageBackground: alpha } + } +} diff --git a/src/main/resources/omni_power/gdx-skins/lml/skin/skin.png b/src/main/resources/omni_power/gdx-skins/lml/skin/skin.png new file mode 100644 index 0000000..c15f943 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/lml/skin/skin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/README.md b/src/main/resources/omni_power/gdx-skins/metal/README.md new file mode 100644 index 0000000..c9c9425 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/metal/README.md @@ -0,0 +1,22 @@ +# Metal UI + +``` +Metal UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Metal UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Inspired by Swing. + +![Metal](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/metal-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/metal/preview.png b/src/main/resources/omni_power/gdx-skins/metal/preview.png new file mode 100644 index 0000000..e4ae2e8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/button-over.9.png new file mode 100644 index 0000000..c75b552 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/metal/raw/button-over.png new file mode 100644 index 0000000..4388b09 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/button-pressed.9.png new file mode 100644 index 0000000..0a18c6b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/button-pressed.png new file mode 100644 index 0000000..8d92c1a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/button.9.png new file mode 100644 index 0000000..22876a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/button.png b/src/main/resources/omni_power/gdx-skins/metal/raw/button.png new file mode 100644 index 0000000..8125883 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on-over.png b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on-over.png new file mode 100644 index 0000000..934e847 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on-pressed.png new file mode 100644 index 0000000..7edb9dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on.png new file mode 100644 index 0000000..e7ca6fb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-over.png b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-over.png new file mode 100644 index 0000000..7ce03e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-pressed.png new file mode 100644 index 0000000..2f2006a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox.png new file mode 100644 index 0000000..4bafe95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/close-down.png b/src/main/resources/omni_power/gdx-skins/metal/raw/close-down.png new file mode 100644 index 0000000..aebde0d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/close-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/close.png b/src/main/resources/omni_power/gdx-skins/metal/raw/close.png new file mode 100644 index 0000000..7f6208c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/folder.png b/src/main/resources/omni_power/gdx-skins/metal/raw/folder.png new file mode 100644 index 0000000..532855f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/folder.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/metal/raw/font-export.fnt new file mode 100644 index 0000000..ed095b3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/metal/raw/font-export.fnt @@ -0,0 +1,687 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=13 base=13 scaleW=84 scaleH=86 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=81 y=46 width=2 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=18 y=81 width=4 height=4 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=11 y=43 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=59 y=40 width=6 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=12 width=11 height=10 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="%" +char id=38 x=0 y=61 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=21 y=23 width=2 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=72 y=43 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=78 y=0 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=44 y=79 width=6 height=6 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=12 y=0 width=8 height=8 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=28 y=81 width=3 height=4 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=23 y=83 width=4 height=2 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=32 y=83 width=2 height=2 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=66 y=41 width=5 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=66 y=0 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=72 y=56 width=5 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=59 y=30 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=65 y=66 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=59 y=20 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=58 y=72 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="5" +char id=54 x=28 y=59 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=66 y=11 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=36 y=50 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=36 y=72 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=73 y=13 width=2 height=7 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=78 y=26 width=3 height=9 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=29 y=19 width=7 height=8 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=10 y=81 width=7 height=4 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=30 y=0 width=7 height=8 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=66 y=31 width=5 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=33 width=10 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=20 y=40 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=37 y=19 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=20 y=29 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=11 y=33 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=59 y=10 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=59 y=0 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=36 y=61 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="G" +char id=72 x=58 y=62 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=72 y=66 width=4 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=72 y=32 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=37 y=9 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=52 y=52 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=10 y=71 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=44 y=58 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=0 y=72 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=51 y=68 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=10 y=58 width=8 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Q" +char id=82 x=19 y=53 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=52 y=41 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=19 y=69 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=44 y=47 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=12 y=19 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=23 width=11 height=9 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=21 y=0 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=12 y=9 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=37 y=29 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=73 y=0 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=45 y=10 width=6 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=78 y=13 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=19 y=63 width=8 height=5 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=21 y=21 width=7 height=1 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=23 y=79 width=3 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=52 y=13 width=6 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=29 y=39 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=38 y=0 width=6 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=44 y=68 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=29 y=10 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=66 y=21 width=5 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=28 y=70 width=7 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=45 y=0 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=81 y=36 width=2 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=77 y=66 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=45 y=22 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=78 y=36 width=2 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=53 width=9 height=7 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=52 y=33 width=6 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=28 y=50 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=52 y=22 width=6 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=21 y=10 width=7 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=71 y=77 width=4 height=7 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=65 y=77 width=5 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=72 y=21 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=45 y=32 width=6 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=51 y=78 width=6 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=45 width=10 height=7 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=37 y=39 width=7 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=29 y=28 width=7 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=59 y=53 width=5 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=52 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=78 y=46 width=2 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=65 y=53 width=6 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=10 y=53 width=8 height=4 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=52 y=62 width=5 height=4 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=11 height=11 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=583 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=84 amount=-4 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-2 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-2 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-2 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-4 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-2 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-2 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-3 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-4 +kerning first=76 second=87 amount=-3 +kerning first=76 second=89 amount=-4 +kerning first=76 second=71 amount=-2 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-2 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-2 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-2 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-2 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-3 +kerning first=80 second=44 amount=-4 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=89 amount=-3 +kerning first=82 second=84 amount=-3 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-3 +kerning first=82 second=87 amount=-3 +kerning first=82 second=89 amount=-3 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-3 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-1 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-1 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-3 +kerning first=89 second=67 amount=-3 +kerning first=89 second=79 amount=-3 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-2 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-2 +kerning first=65 second=111 amount=-2 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-3 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-3 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-2 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-4 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-2 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-2 +kerning first=73 second=111 amount=-2 +kerning first=73 second=116 amount=-2 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=44 amount=-1 +kerning first=75 second=101 amount=-2 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-3 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-2 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-2 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=84 second=97 amount=-4 +kerning first=84 second=99 amount=-4 +kerning first=84 second=101 amount=-4 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-4 +kerning first=84 second=114 amount=-4 +kerning first=84 second=115 amount=-4 +kerning first=84 second=117 amount=-4 +kerning first=84 second=119 amount=-4 +kerning first=84 second=121 amount=-4 +kerning first=84 second=46 amount=-3 +kerning first=84 second=44 amount=-4 +kerning first=84 second=59 amount=-4 +kerning first=84 second=58 amount=-3 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=86 second=97 amount=-3 +kerning first=86 second=101 amount=-2 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-2 +kerning first=86 second=46 amount=-3 +kerning first=86 second=44 amount=-3 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-2 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-3 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-2 +kerning first=88 second=117 amount=-1 +kerning first=88 second=121 amount=-2 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-4 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-3 +kerning first=89 second=46 amount=-3 +kerning first=89 second=44 amount=-4 +kerning first=89 second=59 amount=-4 +kerning first=89 second=58 amount=-3 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-2 +kerning first=101 second=121 amount=-2 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-3 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-3 +kerning first=102 second=44 amount=-3 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-2 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-2 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-2 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-3 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-1 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-2 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-2 +kerning first=119 second=97 amount=-2 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-2 +kerning first=119 second=46 amount=-3 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-3 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-2 +kerning first=121 second=99 amount=-2 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-2 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-3 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-3 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-2 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-2 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/metal/raw/font-export.png new file mode 100644 index 0000000..e10b663 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/font.png b/src/main/resources/omni_power/gdx-skins/metal/raw/font.png new file mode 100644 index 0000000..f76881f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/list.9.png new file mode 100644 index 0000000..57f6e8f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/list.png b/src/main/resources/omni_power/gdx-skins/metal/raw/list.png new file mode 100644 index 0000000..221fb7a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/page.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/page.9.png new file mode 100644 index 0000000..3906810 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/page.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/page.png b/src/main/resources/omni_power/gdx-skins/metal/raw/page.png new file mode 100644 index 0000000..53eb9b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/page.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-knob.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-knob.9.png new file mode 100644 index 0000000..b9cceb1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-knob.png new file mode 100644 index 0000000..7be472d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical-knob.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical-knob.9.png new file mode 100644 index 0000000..3e4fe30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical-knob.png new file mode 100644 index 0000000..2e43b8b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..9b4b8b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical.png new file mode 100644 index 0000000..a90fe5c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar.9.png new file mode 100644 index 0000000..083f91e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar.png new file mode 100644 index 0000000..a577cce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on-hover.png b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on-hover.png new file mode 100644 index 0000000..90e36de Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on-hover.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on-pressed.png new file mode 100644 index 0000000..8fbba21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on.png new file mode 100644 index 0000000..07cae0c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/radio-over.png b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-over.png new file mode 100644 index 0000000..e343a41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-pressed.png new file mode 100644 index 0000000..629f8f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/radio.png b/src/main/resources/omni_power/gdx-skins/metal/raw/radio.png new file mode 100644 index 0000000..8488d82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/rect.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/rect.9.png new file mode 100644 index 0000000..46fbe8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/rect.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/rect.png b/src/main/resources/omni_power/gdx-skins/metal/raw/rect.png new file mode 100644 index 0000000..23bde78 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/rect.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-down-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-down-pressed.png new file mode 100644 index 0000000..f069dd7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-down-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-down.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-down.png new file mode 100644 index 0000000..0c0bc6d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h-knob.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h-knob.9.png new file mode 100644 index 0000000..0350ee1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h-knob.png new file mode 100644 index 0000000..0beb7e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h.9.png new file mode 100644 index 0000000..cb35abb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h.png new file mode 100644 index 0000000..7c4e417 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-left-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-left-pressed.png new file mode 100644 index 0000000..35ab8a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-left-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-left.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-left.png new file mode 100644 index 0000000..c5ef2cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-right-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-right-pressed.png new file mode 100644 index 0000000..7261346 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-right-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-right.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-right.png new file mode 100644 index 0000000..154c6e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-up-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-up-pressed.png new file mode 100644 index 0000000..d098173 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-up-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-up.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-up.png new file mode 100644 index 0000000..704090c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v-knob.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v-knob.9.png new file mode 100644 index 0000000..e9ea05f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v-knob.png new file mode 100644 index 0000000..40558b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v.9.png new file mode 100644 index 0000000..51f3f84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v.png b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v.png new file mode 100644 index 0000000..2b1197c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/scrollbar-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box-pressed.9.png new file mode 100644 index 0000000..e274eae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box-pressed.png new file mode 100644 index 0000000..829e5cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box.9.png new file mode 100644 index 0000000..8c5782f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box.png new file mode 100644 index 0000000..1668e08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/selection.png b/src/main/resources/omni_power/gdx-skins/metal/raw/selection.png new file mode 100644 index 0000000..3136d31 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-before-knob.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-before-knob.9.png new file mode 100644 index 0000000..a9373d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-before-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-before-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-before-knob.png new file mode 100644 index 0000000..2d2bdf7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-before-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-copy.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-copy.9.png new file mode 100644 index 0000000..04e6cec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-copy.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-knob.png new file mode 100644 index 0000000..9f0cb13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h.9.png new file mode 100644 index 0000000..04e6cec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h.png new file mode 100644 index 0000000..c8dcfbe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-before-knob.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-before-knob.9.png new file mode 100644 index 0000000..9f92944 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-before-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-before-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-before-knob.png new file mode 100644 index 0000000..ed21c29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-before-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-knob.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-knob.png new file mode 100644 index 0000000..ecfc211 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v.9.png new file mode 100644 index 0000000..f02be28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v.png b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v.png new file mode 100644 index 0000000..19507bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/slider-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down-over.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down-over.png new file mode 100644 index 0000000..abb9725 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down-pressed.png new file mode 100644 index 0000000..fa71801 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down.png new file mode 100644 index 0000000..9caf952 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-field.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-field.9.png new file mode 100644 index 0000000..3aa19f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-field.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-field.png new file mode 100644 index 0000000..cab54b0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-field.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up-over.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up-over.png new file mode 100644 index 0000000..15a85e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up-pressed.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up-pressed.png new file mode 100644 index 0000000..fa7d2cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up.png b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up.png new file mode 100644 index 0000000..2842e37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/spinner-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/split-pane-h.png b/src/main/resources/omni_power/gdx-skins/metal/raw/split-pane-h.png new file mode 100644 index 0000000..f1d4bc5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/split-pane-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/split-pane-v.png b/src/main/resources/omni_power/gdx-skins/metal/raw/split-pane-v.png new file mode 100644 index 0000000..d17efab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/split-pane-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/white.png b/src/main/resources/omni_power/gdx-skins/metal/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/window-icon.png b/src/main/resources/omni_power/gdx-skins/metal/raw/window-icon.png new file mode 100644 index 0000000..9f5ec78 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/window-icon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/window-pattern.png b/src/main/resources/omni_power/gdx-skins/metal/raw/window-pattern.png new file mode 100644 index 0000000..11d5b7b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/window-pattern.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/metal/raw/window.9.png new file mode 100644 index 0000000..d8efca5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/raw/window.png b/src/main/resources/omni_power/gdx-skins/metal/raw/window.png new file mode 100644 index 0000000..0f578d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/metal/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/metal/skin/font-export.fnt new file mode 100644 index 0000000..ed095b3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/metal/skin/font-export.fnt @@ -0,0 +1,687 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=13 base=13 scaleW=84 scaleH=86 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=81 y=46 width=2 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=18 y=81 width=4 height=4 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=11 y=43 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=59 y=40 width=6 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=12 width=11 height=10 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="%" +char id=38 x=0 y=61 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=21 y=23 width=2 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=72 y=43 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=78 y=0 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=44 y=79 width=6 height=6 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=12 y=0 width=8 height=8 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=28 y=81 width=3 height=4 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=23 y=83 width=4 height=2 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=32 y=83 width=2 height=2 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=66 y=41 width=5 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=66 y=0 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=72 y=56 width=5 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=59 y=30 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=65 y=66 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=59 y=20 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=58 y=72 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="5" +char id=54 x=28 y=59 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=66 y=11 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=36 y=50 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=36 y=72 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=73 y=13 width=2 height=7 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=78 y=26 width=3 height=9 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=29 y=19 width=7 height=8 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=10 y=81 width=7 height=4 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=30 y=0 width=7 height=8 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=66 y=31 width=5 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=33 width=10 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=20 y=40 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=37 y=19 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=20 y=29 width=8 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=11 y=33 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=59 y=10 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=59 y=0 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=36 y=61 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="G" +char id=72 x=58 y=62 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=72 y=66 width=4 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=72 y=32 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=37 y=9 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=52 y=52 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=10 y=71 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=44 y=58 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=0 y=72 width=9 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=51 y=68 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=10 y=58 width=8 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Q" +char id=82 x=19 y=53 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=52 y=41 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="S" +char id=84 x=19 y=69 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=44 y=47 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=12 y=19 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=23 width=11 height=9 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=21 y=0 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=12 y=9 width=8 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=37 y=29 width=7 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=73 y=0 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=45 y=10 width=6 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=78 y=13 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=19 y=63 width=8 height=5 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=21 y=21 width=7 height=1 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=23 y=79 width=3 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=52 y=13 width=6 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=29 y=39 width=7 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=38 y=0 width=6 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=44 y=68 width=6 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=29 y=10 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=66 y=21 width=5 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=28 y=70 width=7 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=45 y=0 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=81 y=36 width=2 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=77 y=66 width=4 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=45 y=22 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=78 y=36 width=2 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=53 width=9 height=7 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=52 y=33 width=6 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=28 y=50 width=7 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=52 y=22 width=6 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="p" +char id=113 x=21 y=10 width=7 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=71 y=77 width=4 height=7 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=65 y=77 width=5 height=8 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=72 y=21 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=45 y=32 width=6 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=51 y=78 width=6 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=45 width=10 height=7 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=37 y=39 width=7 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=29 y=28 width=7 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=59 y=53 width=5 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=52 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=78 y=46 width=2 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=65 y=53 width=6 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=10 y=53 width=8 height=4 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=52 y=62 width=5 height=4 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=11 height=11 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=583 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=84 amount=-4 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-2 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-2 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-2 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-4 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-2 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-2 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-3 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-4 +kerning first=76 second=87 amount=-3 +kerning first=76 second=89 amount=-4 +kerning first=76 second=71 amount=-2 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-2 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-2 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-2 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-2 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-3 +kerning first=80 second=44 amount=-4 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=89 amount=-3 +kerning first=82 second=84 amount=-3 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-3 +kerning first=82 second=87 amount=-3 +kerning first=82 second=89 amount=-3 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-3 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-1 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-1 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-3 +kerning first=89 second=67 amount=-3 +kerning first=89 second=79 amount=-3 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-2 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-2 +kerning first=65 second=111 amount=-2 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-3 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-3 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-2 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-4 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-2 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-2 +kerning first=73 second=111 amount=-2 +kerning first=73 second=116 amount=-2 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=44 amount=-1 +kerning first=75 second=101 amount=-2 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-3 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-2 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-2 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=84 second=97 amount=-4 +kerning first=84 second=99 amount=-4 +kerning first=84 second=101 amount=-4 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-4 +kerning first=84 second=114 amount=-4 +kerning first=84 second=115 amount=-4 +kerning first=84 second=117 amount=-4 +kerning first=84 second=119 amount=-4 +kerning first=84 second=121 amount=-4 +kerning first=84 second=46 amount=-3 +kerning first=84 second=44 amount=-4 +kerning first=84 second=59 amount=-4 +kerning first=84 second=58 amount=-3 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=86 second=97 amount=-3 +kerning first=86 second=101 amount=-2 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-2 +kerning first=86 second=46 amount=-3 +kerning first=86 second=44 amount=-3 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-2 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-2 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-3 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-2 +kerning first=88 second=117 amount=-1 +kerning first=88 second=121 amount=-2 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-4 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-3 +kerning first=89 second=46 amount=-3 +kerning first=89 second=44 amount=-4 +kerning first=89 second=59 amount=-4 +kerning first=89 second=58 amount=-3 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-2 +kerning first=101 second=121 amount=-2 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-3 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-3 +kerning first=102 second=44 amount=-3 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-2 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-2 +kerning first=111 second=120 amount=-2 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-2 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-2 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-3 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-1 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-2 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-2 +kerning first=119 second=97 amount=-2 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-2 +kerning first=119 second=46 amount=-3 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-3 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-2 +kerning first=121 second=99 amount=-2 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-2 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-3 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-2 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-3 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-2 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-2 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.atlas b/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.atlas new file mode 100644 index 0000000..8e1e7b0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.atlas @@ -0,0 +1,468 @@ + +metal-ui.png +size: 256,256 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 1, 141 + size: 82, 26 + split: 1, 1, 1, 1 + pad: 3, 3, 3, 3 + orig: 82, 26 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 87, 229 + size: 82, 26 + split: 3, 3, 3, 3 + orig: 82, 26 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 1, 113 + size: 82, 26 + split: 2, 1, 2, 1 + pad: 3, 3, 3, 3 + orig: 82, 26 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 1, 33 + size: 17, 14 + orig: 17, 14 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 1, 17 + size: 17, 14 + orig: 17, 14 + offset: 0, 0 + index: -1 +checkbox-on-over + rotate: false + xy: 1, 1 + size: 17, 14 + orig: 17, 14 + offset: 0, 0 + index: -1 +checkbox-on-pressed + rotate: false + xy: 57, 97 + size: 17, 14 + orig: 17, 14 + offset: 0, 0 + index: -1 +checkbox-over + rotate: false + xy: 56, 81 + size: 17, 14 + orig: 17, 14 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 206, 220 + size: 17, 14 + orig: 17, 14 + offset: 0, 0 + index: -1 +close + rotate: false + xy: 37, 3 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +close-down + rotate: false + xy: 149, 180 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +folder + rotate: false + xy: 128, 208 + size: 20, 19 + orig: 20, 19 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 169 + size: 84, 86 + orig: 84, 86 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 248, 248 + size: 7, 7 + split: 1, 2, 1, 2 + pad: 2, 3, 2, 3 + orig: 7, 7 + offset: 0, 0 + index: -1 +page + rotate: false + xy: 206, 236 + size: 20, 19 + split: 17, 0, 0, 18 + pad: 19, 0, 0, 0 + orig: 20, 19 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 85, 128 + size: 3, 19 + split: 1, 1, 2, 1 + pad: 1, 1, 0, 0 + orig: 3, 19 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 93, 149 + size: 2, 19 + split: 1, 0, 2, 1 + pad: -1, -1, 0, 0 + orig: 2, 19 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 87, 178 + size: 19, 3 + split: 2, 1, 1, 1 + pad: 0, 0, 1, 1 + orig: 19, 3 + offset: 0, 0 + index: -1 +progress-bar-vertical-knob + rotate: false + xy: 1, 82 + size: 19, 2 + split: 2, 1, 0, 1 + pad: 0, 0, 0, 0 + orig: 19, 2 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 21, 52 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 126, 155 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +radio-on-hover + rotate: false + xy: 21, 38 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +radio-on-pressed + rotate: false + xy: 20, 24 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +radio-over + rotate: false + xy: 20, 10 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 150, 196 + size: 15, 12 + orig: 15, 12 + offset: 0, 0 + index: -1 +rect + rotate: false + xy: 56, 59 + size: 10, 10 + split: 1, 2, 1, 2 + pad: 4, 5, 4, 5 + orig: 10, 10 + offset: 0, 0 + index: -1 +scrollbar-down + rotate: false + xy: 150, 210 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +scrollbar-down-pressed + rotate: false + xy: 228, 238 + size: 18, 17 + orig: 18, 17 + offset: 0, 0 + index: -1 +scrollbar-h + rotate: false + xy: 147, 160 + size: 12, 18 + split: 2, 1, 1, 3 + pad: 0, 0, 0, 0 + orig: 12, 18 + offset: 0, 0 + index: -1 +scrollbar-h-knob + rotate: false + xy: 85, 149 + size: 6, 18 + split: 1, 1, 1, 2 + pad: 0, 0, 0, 0 + orig: 6, 18 + offset: 0, 0 + index: -1 +scrollbar-left + rotate: false + xy: 108, 163 + size: 16, 18 + orig: 16, 18 + offset: 0, 0 + index: -1 +scrollbar-left-pressed + rotate: false + xy: 22, 66 + size: 16, 18 + orig: 16, 18 + offset: 0, 0 + index: -1 +scrollbar-right + rotate: false + xy: 128, 169 + size: 17, 18 + orig: 17, 18 + offset: 0, 0 + index: -1 +scrollbar-right-pressed + rotate: false + xy: 76, 93 + size: 17, 18 + orig: 17, 18 + offset: 0, 0 + index: -1 +scrollbar-up + rotate: false + xy: 1, 64 + size: 18, 16 + orig: 18, 16 + offset: 0, 0 + index: -1 +scrollbar-up-pressed + rotate: false + xy: 36, 86 + size: 18, 16 + orig: 18, 16 + offset: 0, 0 + index: -1 +scrollbar-v + rotate: false + xy: 1, 49 + size: 18, 13 + split: 2, 2, 2, 1 + orig: 18, 13 + offset: 0, 0 + index: -1 +scrollbar-v-knob + rotate: false + xy: 87, 170 + size: 18, 6 + split: 1, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 18, 6 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 171, 230 + size: 33, 25 + split: 2, 23, 2, 15 + pad: 4, 25, 4, 4 + orig: 33, 25 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 1, 86 + size: 33, 25 + split: 2, 23, 2, 15 + pad: 4, 25, 4, 4 + orig: 33, 25 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 72, 78 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +slider-h + rotate: false + xy: 36, 104 + size: 19, 7 + split: 9, 9, 2, 1 + pad: 0, 0, 0, 0 + orig: 19, 7 + offset: 0, 0 + index: -1 +slider-h-before-knob + rotate: false + xy: 20, 1 + size: 11, 7 + split: 9, 1, 1, 1 + pad: 0, 0, 0, 0 + orig: 11, 7 + offset: 0, 0 + index: -1 +slider-h-knob + rotate: false + xy: 75, 72 + size: 17, 19 + orig: 17, 19 + offset: 0, 0 + index: -1 +slider-v + rotate: false + xy: 248, 227 + size: 7, 19 + split: 2, 1, 9, 9 + pad: 0, 0, 0, 0 + orig: 7, 19 + offset: 0, 0 + index: -1 +slider-v-before-knob + rotate: false + xy: 68, 58 + size: 7, 11 + split: 1, 1, 1, 9 + pad: 0, 0, 0, 0 + orig: 7, 11 + offset: 0, 0 + index: -1 +slider-v-knob + rotate: false + xy: 128, 189 + size: 19, 17 + orig: 19, 17 + offset: 0, 0 + index: -1 +spinner-down + rotate: false + xy: 56, 71 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +spinner-down-over + rotate: false + xy: 38, 46 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +spinner-down-pressed + rotate: false + xy: 38, 36 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +spinner-field + rotate: false + xy: 54, 41 + size: 9, 16 + split: 1, 1, 1, 2 + pad: 3, 3, 3, 4 + orig: 9, 16 + offset: 0, 0 + index: -1 +spinner-up + rotate: false + xy: 40, 76 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +spinner-up-over + rotate: false + xy: 40, 66 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +spinner-up-pressed + rotate: false + xy: 38, 56 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +split-pane-h + rotate: false + xy: 143, 164 + size: 2, 3 + orig: 2, 3 + offset: 0, 0 + index: -1 +split-pane-v + rotate: false + xy: 54, 37 + size: 3, 2 + orig: 3, 2 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 72, 75 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 87, 183 + size: 39, 44 + split: 9, 9, 26, 4 + pad: 6, 6, 28, 6 + orig: 39, 44 + offset: 0, 0 + index: -1 +window-icon + rotate: false + xy: 37, 19 + size: 14, 15 + orig: 14, 15 + offset: 0, 0 + index: -1 +window-pattern + rotate: false + xy: 161, 161 + size: 8, 17 + orig: 8, 17 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.json b/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.json new file mode 100644 index 0000000..ccc08d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.json @@ -0,0 +1,250 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + red: { + r: 1 + g: 0 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } + cyan: { + name: white + color: { + r: 0.5807556 + g: 0.97333336 + b: 0.9700618 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } + toggle: { + up: button + down: button-pressed + over: button-over + checked: button-pressed + } + spinner-up: { + up: spinner-up + down: spinner-up-pressed + over: spinner-up-over + } + spinner-down: { + up: spinner-down + down: spinner-down-pressed + over: spinner-down-over + } + close: { + up: close + down: close-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox + checkboxOver: checkbox-over + font: font + fontColor: black + } + radio: { + checkboxOn: radio-on + checkboxOff: radio + checkboxOver: radio-over + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-over + } + radio: { + imageUp: radio + imageOver: radio-over + imageChecked: radio-on + imageCheckedOver: radio-on-hover + font: font + fontColor: black + } + checkbox: { + imageUp: checkbox + imageOver: checkbox-over + imageChecked: checkbox-on + imageCheckedOver: checkbox-on-over + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + white: { + font: font + fontColor: white + } + red: { + font: font + fontColor: red + } + page: { + font: font + fontColor: black + background: page + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: black + fontColorUnselected: black + selection: selection + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollbar-h + hScrollKnob: scrollbar-h-knob + vScroll: scrollbar-v + vScrollKnob: scrollbar-v-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box + scrollStyle: default + listStyle: default + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider-h + knob: slider-h-knob + knobBefore: slider-h-before-knob + } + default-vertical: { + background: slider-v + knob: slider-v-knob + knobBefore: slider-v-before-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane-h + } + default-vertical: { + handle: split-pane-v + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-over + } + toggle: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-over + checked: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: rect + cursor: black + selection: cyan + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: rect + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: rect + knob: rect + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: folder + minus: folder + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: black + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.png b/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.png new file mode 100644 index 0000000..a98bf74 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/metal/skin/metal-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/README.md b/src/main/resources/omni_power/gdx-skins/neon/README.md new file mode 100644 index 0000000..41cec3d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/README.md @@ -0,0 +1,22 @@ +# Neon UI + +``` +Neon UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Neon UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. A neon GUI skin that can be easily recolored programmatically by modifying `Color` values in JSON skin definition file. Great for prototyping! + +![Neon](preview.gif) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/neon-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/neon/preview.gif b/src/main/resources/omni_power/gdx-skins/neon/preview.gif new file mode 100644 index 0000000..28a7223 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/preview.gif differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/button-over.9.png new file mode 100644 index 0000000..607da21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/neon/raw/button-over.png new file mode 100644 index 0000000..eaea6ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/button-pressed.9.png new file mode 100644 index 0000000..78687b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/neon/raw/button-pressed.png new file mode 100644 index 0000000..a5256a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/button.9.png new file mode 100644 index 0000000..051b9c1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/button.png b/src/main/resources/omni_power/gdx-skins/neon/raw/button.png new file mode 100644 index 0000000..e0b41f9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-over.png b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-over.png new file mode 100644 index 0000000..4cd2e93 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-pressed-over.png b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-pressed-over.png new file mode 100644 index 0000000..a0600e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-pressed.png new file mode 100644 index 0000000..3d4d4bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox.png new file mode 100644 index 0000000..8b21a18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/neon/raw/font-export.fnt new file mode 100644 index 0000000..25809da --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/raw/font-export.fnt @@ -0,0 +1,710 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=18 base=18 scaleW=116 scaleH=117 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=106 y=17 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=98 y=109 width=6 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=27 y=14 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=38 y=42 width=10 height=16 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=0 y=14 width=14 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=26 y=85 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=100 y=25 width=5 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=100 y=0 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=99 y=59 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=90 y=109 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=49 y=80 width=10 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=100 y=17 width=5 height=7 xoffset=0 yoffset=13 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=61 y=28 width=7 height=4 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=100 y=33 width=4 height=4 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=70 y=83 width=9 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=49 y=54 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=91 y=0 width=6 height=13 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=90 y=28 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=61 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=49 y=40 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=80 y=71 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=80 y=57 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=80 y=85 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=80 y=99 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=90 y=14 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=106 y=49 width=4 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=99 y=76 width=5 height=14 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=49 y=91 width=10 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=14 y=71 width=10 height=7 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=50 y=28 width=10 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=81 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=29 width=13 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=13 y=81 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=39 y=26 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="B" +char id=67 x=15 y=14 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=16 y=0 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=80 y=29 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=80 y=15 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=26 y=43 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=26 y=71 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=106 y=61 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=70 y=69 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=26 y=57 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=80 y=43 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=55 width=13 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=26 y=99 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=13 y=95 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=49 y=102 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=94 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=50 y=14 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=38 y=74 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=14 y=57 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=28 y=0 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=14 y=43 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=13 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="W" +char id=88 x=27 y=28 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=14 y=29 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Y" +char id=90 x=38 y=103 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=105 y=76 width=5 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=60 y=39 width=9 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="\" +char id=93 x=105 y=93 width=5 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=60 y=94 width=9 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=109 width=10 height=4 xoffset=0 yoffset=16 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=61 y=33 width=6 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=90 y=80 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=40 y=0 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=51 y=0 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=61 y=14 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=60 y=104 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=70 y=43 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=70 y=28 width=9 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=60 y=66 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=111 y=14 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=90 y=92 width=7 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=60 y=80 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=107 y=0 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=69 width=13 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=70 y=57 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=70 y=98 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=38 y=59 width=10 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=71 y=0 width=9 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=71 y=15 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=90 y=68 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=90 y=42 width=8 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=60 y=54 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=39 y=14 width=10 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=43 width=13 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=49 y=68 width=10 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=38 y=88 width=10 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=90 y=56 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=98 y=92 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=106 y=31 width=4 height=17 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=99 y=42 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=11 y=109 width=10 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=70 y=110 width=5 height=5 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=81 width=12 height=12 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-3 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-3 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=89 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-2 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-5 +kerning first=70 second=44 amount=-6 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=76 second=39 amount=-6 +kerning first=76 second=67 amount=-1 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-4 +kerning first=76 second=87 amount=-3 +kerning first=76 second=89 amount=-5 +kerning first=76 second=71 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=80 second=65 amount=-3 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-5 +kerning first=80 second=44 amount=-6 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=89 second=65 amount=-4 +kerning first=89 second=67 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-1 +kerning first=65 second=116 amount=-3 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-5 +kerning first=70 second=44 amount=-6 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=44 amount=-1 +kerning first=75 second=101 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-3 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=82 second=101 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-1 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=84 second=46 amount=-5 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-2 +kerning first=84 second=58 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=86 second=114 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=86 second=46 amount=-3 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-2 +kerning first=86 second=58 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=114 amount=-1 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-1 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=89 second=118 amount=-1 +kerning first=89 second=46 amount=-5 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-2 +kerning first=89 second=58 amount=-1 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=46 amount=-4 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=106 second=44 amount=-2 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-3 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-1 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-5 +kerning first=114 second=44 amount=-5 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-1 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-3 +kerning first=118 second=44 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-3 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-3 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/neon/raw/font-export.png new file mode 100644 index 0000000..d8c0dac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-over-export.fnt b/src/main/resources/omni_power/gdx-skins/neon/raw/font-over-export.fnt new file mode 100644 index 0000000..3e0feef --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/raw/font-over-export.fnt @@ -0,0 +1,710 @@ +info face="font-over-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=142 scaleH=144 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-over-export.png" +chars count=98 +char id=33 x=133 y=101 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=123 y=132 width=9 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=16 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="#" +char id=36 x=74 y=98 width=12 height=18 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="%" +char id=38 x=16 y=100 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="&" +char id=39 x=133 y=0 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=113 y=115 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=124 y=61 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=60 y=132 width=10 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=74 y=68 width=12 height=12 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=114 y=20 width=8 height=9 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=27 y=136 width=11 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=124 y=81 width=7 height=8 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=113 y=61 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=74 y=81 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=123 y=115 width=9 height=16 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=75 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=76 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=60 y=67 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="4" +char id=53 x=88 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=62 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=60 y=84 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=100 y=111 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=60 y=115 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=134 y=44 width=7 height=13 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=125 y=40 width=8 height=15 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=100 y=128 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=46 y=130 width=13 height=10 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=60 y=101 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=102 y=13 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=85 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=16 y=117 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=18 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=31 y=85 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=18 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="D" +char id=69 x=89 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=89 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=16 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=32 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=134 y=27 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=87 y=113 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=32 y=51 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="K" +char id=76 x=48 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=16 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=17 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=68 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="O" +char id=80 x=76 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=74 y=51 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="R" +char id=83 x=62 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=31 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="T" +char id=85 x=31 y=102 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="U" +char id=86 x=33 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="V" +char id=87 x=0 y=17 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=33 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=31 y=119 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=61 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=113 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=113 y=30 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=133 y=81 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=102 y=0 width=11 height=12 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=136 width=13 height=7 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=71 y=134 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=100 y=97 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=48 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=101 y=34 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=47 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=46 y=116 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=101 y=48 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=46 y=83 width=13 height=16 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=74 y=117 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=134 y=10 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=123 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=87 y=96 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=133 y=118 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=116 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=46 y=68 width=13 height=14 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="n" +char id=111 x=100 y=83 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=46 y=100 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=47 y=51 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=88 y=51 width=12 height=14 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="r" +char id=115 x=113 y=47 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=113 y=78 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="t" +char id=117 x=61 y=51 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=87 y=68 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=102 width=15 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=87 y=82 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=100 y=66 width=12 height=16 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=87 y=130 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=125 y=20 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=124 y=0 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=114 y=0 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=14 y=134 width=12 height=8 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=113 y=135 width=8 height=8 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=16 y=85 width=14 height=14 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-6 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-5 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-4 +kerning first=76 second=89 amount=-5 +kerning first=76 second=71 amount=-3 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-3 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-2 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-1 +kerning first=89 second=65 amount=-4 +kerning first=89 second=67 amount=-2 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-2 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-2 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-3 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-3 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-3 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=114 amount=-3 +kerning first=84 second=115 amount=-2 +kerning first=84 second=117 amount=-3 +kerning first=84 second=119 amount=-2 +kerning first=84 second=121 amount=-2 +kerning first=84 second=46 amount=-5 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-3 +kerning first=84 second=58 amount=-2 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-2 +kerning first=86 second=101 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-2 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-2 +kerning first=89 second=46 amount=-4 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-3 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-2 +kerning first=98 second=46 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-2 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-2 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-4 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-2 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-2 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-2 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-2 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=110 second=121 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-2 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-2 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-2 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-2 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-over-export.png b/src/main/resources/omni_power/gdx-skins/neon/raw/font-over-export.png new file mode 100644 index 0000000..2a1a270 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/font-over-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-over.png b/src/main/resources/omni_power/gdx-skins/neon/raw/font-over.png new file mode 100644 index 0000000..3a8e743 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/font-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed-export.fnt b/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed-export.fnt new file mode 100644 index 0000000..eb5509d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed-export.fnt @@ -0,0 +1,710 @@ +info face="font-pressed-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=142 scaleH=144 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-pressed-export.png" +chars count=98 +char id=33 x=133 y=101 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=123 y=132 width=9 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=16 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="#" +char id=36 x=74 y=98 width=12 height=18 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="%" +char id=38 x=16 y=100 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="&" +char id=39 x=133 y=0 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=113 y=115 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=124 y=61 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=60 y=132 width=10 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=74 y=68 width=12 height=12 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=114 y=20 width=8 height=9 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=27 y=136 width=11 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=124 y=81 width=7 height=8 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=113 y=61 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=74 y=81 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=123 y=115 width=9 height=16 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=75 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=76 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=60 y=67 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="4" +char id=53 x=88 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=62 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=60 y=84 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=100 y=111 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=60 y=115 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=134 y=44 width=7 height=13 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=125 y=40 width=8 height=15 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=100 y=128 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=46 y=130 width=13 height=10 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=60 y=101 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=102 y=13 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=85 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=16 y=117 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=18 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=31 y=85 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=18 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="D" +char id=69 x=89 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=89 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=16 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=32 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=134 y=27 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=87 y=113 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=32 y=51 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="K" +char id=76 x=48 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=16 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=17 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=68 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="O" +char id=80 x=76 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=74 y=51 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="R" +char id=83 x=62 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=31 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="T" +char id=85 x=31 y=102 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="U" +char id=86 x=33 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="V" +char id=87 x=0 y=17 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=33 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=31 y=119 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=61 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=113 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=113 y=30 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=133 y=81 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=102 y=0 width=11 height=12 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=136 width=13 height=7 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=71 y=134 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=100 y=97 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=48 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=101 y=34 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=47 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=46 y=116 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=101 y=48 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=46 y=83 width=13 height=16 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=74 y=117 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=134 y=10 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=123 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=87 y=96 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=133 y=118 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=116 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=46 y=68 width=13 height=14 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="n" +char id=111 x=100 y=83 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=46 y=100 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=47 y=51 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=88 y=51 width=12 height=14 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="r" +char id=115 x=113 y=47 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=113 y=78 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="t" +char id=117 x=61 y=51 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=87 y=68 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=102 width=15 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=87 y=82 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=100 y=66 width=12 height=16 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=87 y=130 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=125 y=20 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=124 y=0 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=114 y=0 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=14 y=134 width=12 height=8 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=113 y=135 width=8 height=8 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=16 y=85 width=14 height=14 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-6 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-5 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-4 +kerning first=76 second=89 amount=-5 +kerning first=76 second=71 amount=-3 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-3 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-2 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-1 +kerning first=89 second=65 amount=-4 +kerning first=89 second=67 amount=-2 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-2 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-2 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-3 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-3 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-3 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=114 amount=-3 +kerning first=84 second=115 amount=-2 +kerning first=84 second=117 amount=-3 +kerning first=84 second=119 amount=-2 +kerning first=84 second=121 amount=-2 +kerning first=84 second=46 amount=-5 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-3 +kerning first=84 second=58 amount=-2 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-2 +kerning first=86 second=101 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-2 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-2 +kerning first=89 second=46 amount=-4 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-3 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-2 +kerning first=98 second=46 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-2 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-2 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-4 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-2 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-2 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-2 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-2 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=110 second=121 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-2 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-2 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-2 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-2 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed-export.png b/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed-export.png new file mode 100644 index 0000000..b82400e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed.png b/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed.png new file mode 100644 index 0000000..ed9d067 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/font-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/font.png b/src/main/resources/omni_power/gdx-skins/neon/raw/font.png new file mode 100644 index 0000000..a9940bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/list.9.png new file mode 100644 index 0000000..8744e0f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/list.png b/src/main/resources/omni_power/gdx-skins/neon/raw/list.png new file mode 100644 index 0000000..22422fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/minus.png b/src/main/resources/omni_power/gdx-skins/neon/raw/minus.png new file mode 100644 index 0000000..95f43e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/plus.png b/src/main/resources/omni_power/gdx-skins/neon/raw/plus.png new file mode 100644 index 0000000..a69bf80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big-knob.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big-knob.png new file mode 100644 index 0000000..ae6d1c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big.9.png new file mode 100644 index 0000000..6b856fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big.png new file mode 100644 index 0000000..9a74979 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-big.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-knob.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-knob.9.png new file mode 100644 index 0000000..91c28cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-knob.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-knob.png new file mode 100644 index 0000000..90f892e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical-knob.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical-knob.9.png new file mode 100644 index 0000000..fb1d5a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical-knob.png new file mode 100644 index 0000000..6355d52 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..bfd1d4b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical.png new file mode 100644 index 0000000..6f1c78f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar.9.png new file mode 100644 index 0000000..0d3d694 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar.png new file mode 100644 index 0000000..61bdcd1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/radio-over.png b/src/main/resources/omni_power/gdx-skins/neon/raw/radio-over.png new file mode 100644 index 0000000..023b723 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/radio-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/neon/raw/radio-pressed.png new file mode 100644 index 0000000..7dedbb1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/radio.png b/src/main/resources/omni_power/gdx-skins/neon/raw/radio.png new file mode 100644 index 0000000..cfee512 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-horizontal.9.png new file mode 100644 index 0000000..f76bdc3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-horizontal.png b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-horizontal.png new file mode 100644 index 0000000..dd0394b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-vertical.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-vertical.9.png new file mode 100644 index 0000000..c9e2e86 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-vertical.png b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-vertical.png new file mode 100644 index 0000000..dca80fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/scroll-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-over.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-over.9.png new file mode 100644 index 0000000..bfe4d71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-over.png b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-over.png new file mode 100644 index 0000000..4ed78c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-pressed.9.png new file mode 100644 index 0000000..53c5b51 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-pressed.png new file mode 100644 index 0000000..ddf371b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box.9.png new file mode 100644 index 0000000..541148f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box.png new file mode 100644 index 0000000..dbc4a42 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-before.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-before.9.png new file mode 100644 index 0000000..675a529 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-before.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-before.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-before.png new file mode 100644 index 0000000..beb71fb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-before.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-knob-pressed.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-knob-pressed.png new file mode 100644 index 0000000..2b73508 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-knob-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-knob.png new file mode 100644 index 0000000..bb6e4f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical-before.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical-before.9.png new file mode 100644 index 0000000..f613fa0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical-before.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical-before.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical-before.png new file mode 100644 index 0000000..adeaace Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical-before.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical.9.png new file mode 100644 index 0000000..8e58702 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical.png new file mode 100644 index 0000000..7d52f62 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider.9.png new file mode 100644 index 0000000..b3b8750 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/slider.png b/src/main/resources/omni_power/gdx-skins/neon/raw/slider.png new file mode 100644 index 0000000..7f85c34 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/split-pane-horizontal.png b/src/main/resources/omni_power/gdx-skins/neon/raw/split-pane-horizontal.png new file mode 100644 index 0000000..4c3bba4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/split-pane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/split-pane-vertical.png b/src/main/resources/omni_power/gdx-skins/neon/raw/split-pane-vertical.png new file mode 100644 index 0000000..9b0b683 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/split-pane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login-selected.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login-selected.9.png new file mode 100644 index 0000000..b6499b0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login-selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login-selected.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login-selected.png new file mode 100644 index 0000000..daa9605 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login.9.png new file mode 100644 index 0000000..3d1d2ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login.png new file mode 100644 index 0000000..8d18f99 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-login.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password-selected.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password-selected.9.png new file mode 100644 index 0000000..5a4b599 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password-selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password-selected.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password-selected.png new file mode 100644 index 0000000..b1524f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password.9.png new file mode 100644 index 0000000..050f821 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password.png new file mode 100644 index 0000000..c639b6d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-password.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-selected.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-selected.9.png new file mode 100644 index 0000000..aac48b3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-selected.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-selected.png new file mode 100644 index 0000000..3a193be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield.9.png new file mode 100644 index 0000000..7bd380c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield.png new file mode 100644 index 0000000..97951cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/tooltip.9.png new file mode 100644 index 0000000..f1c5743 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/tooltip.png b/src/main/resources/omni_power/gdx-skins/neon/raw/tooltip.png new file mode 100644 index 0000000..2ddcfe3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/tooltip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad-knob.png new file mode 100644 index 0000000..0ccb3ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad.9.png new file mode 100644 index 0000000..2c98acf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad.png new file mode 100644 index 0000000..fa3f98c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/white.png b/src/main/resources/omni_power/gdx-skins/neon/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/neon/raw/window.9.png new file mode 100644 index 0000000..cd56ec0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/raw/window.png b/src/main/resources/omni_power/gdx-skins/neon/raw/window.png new file mode 100644 index 0000000..d7737dc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neon/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/neon/skin/font-export.fnt new file mode 100644 index 0000000..25809da --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/skin/font-export.fnt @@ -0,0 +1,710 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=18 base=18 scaleW=116 scaleH=117 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=106 y=17 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=98 y=109 width=6 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=27 y=14 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=38 y=42 width=10 height=16 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=0 y=14 width=14 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=26 y=85 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=100 y=25 width=5 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=100 y=0 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=99 y=59 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=90 y=109 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=49 y=80 width=10 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=100 y=17 width=5 height=7 xoffset=0 yoffset=13 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=61 y=28 width=7 height=4 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=100 y=33 width=4 height=4 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=70 y=83 width=9 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=49 y=54 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=91 y=0 width=6 height=13 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=90 y=28 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=61 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=49 y=40 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=80 y=71 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=80 y=57 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=80 y=85 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=80 y=99 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=90 y=14 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=106 y=49 width=4 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=99 y=76 width=5 height=14 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=49 y=91 width=10 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=14 y=71 width=10 height=7 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=50 y=28 width=10 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=81 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=29 width=13 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=13 y=81 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=39 y=26 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="B" +char id=67 x=15 y=14 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=16 y=0 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=80 y=29 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=80 y=15 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=26 y=43 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=26 y=71 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=106 y=61 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=70 y=69 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=26 y=57 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=80 y=43 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=55 width=13 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=26 y=99 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=13 y=95 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=49 y=102 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=94 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=50 y=14 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=38 y=74 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=14 y=57 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=28 y=0 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=14 y=43 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=13 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="W" +char id=88 x=27 y=28 width=11 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=14 y=29 width=12 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Y" +char id=90 x=38 y=103 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=105 y=76 width=5 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=60 y=39 width=9 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="\" +char id=93 x=105 y=93 width=5 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=60 y=94 width=9 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=109 width=10 height=4 xoffset=0 yoffset=16 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=61 y=33 width=6 height=5 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=90 y=80 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=40 y=0 width=10 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=51 y=0 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=61 y=14 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=60 y=104 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=70 y=43 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=70 y=28 width=9 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=60 y=66 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=111 y=14 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=90 y=92 width=7 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=60 y=80 width=9 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=107 y=0 width=4 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=69 width=13 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=70 y=57 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=70 y=98 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=38 y=59 width=10 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=71 y=0 width=9 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=71 y=15 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=90 y=68 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=90 y=42 width=8 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=60 y=54 width=9 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=39 y=14 width=10 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=43 width=13 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=49 y=68 width=10 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=38 y=88 width=10 height=14 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=90 y=56 width=8 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=98 y=92 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=106 y=31 width=4 height=17 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=99 y=42 width=6 height=16 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=11 y=109 width=10 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=70 y=110 width=5 height=5 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=81 width=12 height=12 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-1 +kerning first=65 second=86 amount=-3 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-3 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-1 +kerning first=66 second=87 amount=-1 +kerning first=66 second=89 amount=-1 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-1 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-1 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-2 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-5 +kerning first=70 second=44 amount=-6 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=76 second=39 amount=-6 +kerning first=76 second=67 amount=-1 +kerning first=76 second=84 amount=-4 +kerning first=76 second=86 amount=-4 +kerning first=76 second=87 amount=-3 +kerning first=76 second=89 amount=-5 +kerning first=76 second=71 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=85 amount=-1 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-1 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-1 +kerning first=79 second=89 amount=-1 +kerning first=80 second=65 amount=-3 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-5 +kerning first=80 second=44 amount=-6 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-1 +kerning first=86 second=71 amount=-1 +kerning first=86 second=79 amount=-1 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-1 +kerning first=87 second=79 amount=-1 +kerning first=89 second=65 amount=-4 +kerning first=89 second=67 amount=-1 +kerning first=89 second=79 amount=-1 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-1 +kerning first=65 second=101 amount=-1 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-1 +kerning first=65 second=116 amount=-3 +kerning first=65 second=117 amount=-1 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-5 +kerning first=70 second=44 amount=-6 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-1 +kerning first=74 second=44 amount=-1 +kerning first=75 second=101 amount=-1 +kerning first=75 second=111 amount=-1 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-3 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-1 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-1 +kerning first=82 second=101 amount=-1 +kerning first=82 second=111 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-1 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=84 second=46 amount=-5 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-2 +kerning first=84 second=58 amount=-1 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-1 +kerning first=86 second=101 amount=-1 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=86 second=114 amount=-1 +kerning first=86 second=117 amount=-1 +kerning first=86 second=46 amount=-3 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-2 +kerning first=86 second=58 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=114 amount=-1 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-1 +kerning first=87 second=121 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-1 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-1 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=89 second=118 amount=-1 +kerning first=89 second=46 amount=-5 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-2 +kerning first=89 second=58 amount=-1 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-1 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-1 +kerning first=102 second=46 amount=-4 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=106 second=44 amount=-2 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-3 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-1 +kerning first=114 second=101 amount=-1 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-1 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-5 +kerning first=114 second=44 amount=-5 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-1 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-3 +kerning first=118 second=44 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-1 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-3 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-1 +kerning first=121 second=101 amount=-1 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-1 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-1 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-1 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-3 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/skin/font-over-export.fnt b/src/main/resources/omni_power/gdx-skins/neon/skin/font-over-export.fnt new file mode 100644 index 0000000..3e0feef --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/skin/font-over-export.fnt @@ -0,0 +1,710 @@ +info face="font-over-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=142 scaleH=144 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-over-export.png" +chars count=98 +char id=33 x=133 y=101 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=123 y=132 width=9 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=16 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="#" +char id=36 x=74 y=98 width=12 height=18 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="%" +char id=38 x=16 y=100 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="&" +char id=39 x=133 y=0 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=113 y=115 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=124 y=61 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=60 y=132 width=10 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=74 y=68 width=12 height=12 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=114 y=20 width=8 height=9 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=27 y=136 width=11 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=124 y=81 width=7 height=8 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=113 y=61 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=74 y=81 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=123 y=115 width=9 height=16 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=75 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=76 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=60 y=67 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="4" +char id=53 x=88 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=62 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=60 y=84 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=100 y=111 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=60 y=115 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=134 y=44 width=7 height=13 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=125 y=40 width=8 height=15 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=100 y=128 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=46 y=130 width=13 height=10 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=60 y=101 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=102 y=13 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=85 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=16 y=117 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=18 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=31 y=85 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=18 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="D" +char id=69 x=89 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=89 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=16 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=32 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=134 y=27 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=87 y=113 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=32 y=51 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="K" +char id=76 x=48 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=16 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=17 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=68 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="O" +char id=80 x=76 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=74 y=51 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="R" +char id=83 x=62 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=31 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="T" +char id=85 x=31 y=102 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="U" +char id=86 x=33 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="V" +char id=87 x=0 y=17 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=33 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=31 y=119 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=61 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=113 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=113 y=30 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=133 y=81 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=102 y=0 width=11 height=12 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=136 width=13 height=7 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=71 y=134 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=100 y=97 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=48 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=101 y=34 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=47 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=46 y=116 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=101 y=48 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=46 y=83 width=13 height=16 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=74 y=117 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=134 y=10 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=123 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=87 y=96 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=133 y=118 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=116 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=46 y=68 width=13 height=14 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="n" +char id=111 x=100 y=83 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=46 y=100 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=47 y=51 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=88 y=51 width=12 height=14 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="r" +char id=115 x=113 y=47 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=113 y=78 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="t" +char id=117 x=61 y=51 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=87 y=68 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=102 width=15 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=87 y=82 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=100 y=66 width=12 height=16 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=87 y=130 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=125 y=20 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=124 y=0 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=114 y=0 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=14 y=134 width=12 height=8 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=113 y=135 width=8 height=8 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=16 y=85 width=14 height=14 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-6 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-5 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-4 +kerning first=76 second=89 amount=-5 +kerning first=76 second=71 amount=-3 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-3 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-2 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-1 +kerning first=89 second=65 amount=-4 +kerning first=89 second=67 amount=-2 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-2 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-2 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-3 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-3 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-3 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=114 amount=-3 +kerning first=84 second=115 amount=-2 +kerning first=84 second=117 amount=-3 +kerning first=84 second=119 amount=-2 +kerning first=84 second=121 amount=-2 +kerning first=84 second=46 amount=-5 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-3 +kerning first=84 second=58 amount=-2 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-2 +kerning first=86 second=101 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-2 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-2 +kerning first=89 second=46 amount=-4 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-3 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-2 +kerning first=98 second=46 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-2 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-2 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-4 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-2 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-2 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-2 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-2 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=110 second=121 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-2 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-2 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-2 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-2 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/skin/font-pressed-export.fnt b/src/main/resources/omni_power/gdx-skins/neon/skin/font-pressed-export.fnt new file mode 100644 index 0000000..eb5509d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/skin/font-pressed-export.fnt @@ -0,0 +1,710 @@ +info face="font-pressed-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=142 scaleH=144 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-pressed-export.png" +chars count=98 +char id=33 x=133 y=101 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=123 y=132 width=9 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=16 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="#" +char id=36 x=74 y=98 width=12 height=18 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="%" +char id=38 x=16 y=100 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="&" +char id=39 x=133 y=0 width=7 height=9 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=113 y=115 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=124 y=61 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=60 y=132 width=10 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=74 y=68 width=12 height=12 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=114 y=20 width=8 height=9 xoffset=0 yoffset=15 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=27 y=136 width=11 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=124 y=81 width=7 height=8 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=113 y=61 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=74 y=81 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=123 y=115 width=9 height=16 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=75 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=76 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=60 y=67 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="4" +char id=53 x=88 y=34 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=62 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=60 y=84 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=100 y=111 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=60 y=115 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=134 y=44 width=7 height=13 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=125 y=40 width=8 height=15 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=100 y=128 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=46 y=130 width=13 height=10 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=60 y=101 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=102 y=13 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=85 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=16 y=117 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=18 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=31 y=85 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=18 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="D" +char id=69 x=89 y=17 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=89 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=16 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=32 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=134 y=27 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=87 y=113 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=32 y=51 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="K" +char id=76 x=48 y=17 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=16 height=16 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=17 y=34 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=68 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="O" +char id=80 x=76 y=0 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=51 width=15 height=16 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=74 y=51 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="R" +char id=83 x=62 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=31 y=68 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="T" +char id=85 x=31 y=102 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="U" +char id=86 x=33 y=0 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="V" +char id=87 x=0 y=17 width=17 height=16 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="W" +char id=88 x=33 y=17 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=31 y=119 width=14 height=16 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=61 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=113 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=113 y=30 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=133 y=81 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=102 y=0 width=11 height=12 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=136 width=13 height=7 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=71 y=134 width=8 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=100 y=97 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=48 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=101 y=34 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=47 y=34 width=13 height=16 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=46 y=116 width=13 height=13 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=101 y=48 width=11 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=46 y=83 width=13 height=16 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=74 y=117 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=134 y=10 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=123 y=95 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=87 y=96 width=12 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="k" +char id=108 x=133 y=118 width=7 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=116 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=46 y=68 width=13 height=14 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="n" +char id=111 x=100 y=83 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=46 y=100 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=47 y=51 width=13 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=88 y=51 width=12 height=14 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="r" +char id=115 x=113 y=47 width=11 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=113 y=78 width=10 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="t" +char id=117 x=61 y=51 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=87 y=68 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=102 width=15 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=87 y=82 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=100 y=66 width=12 height=16 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=87 y=130 width=12 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=125 y=20 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=124 y=0 width=8 height=19 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=114 y=0 width=9 height=19 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=14 y=134 width=12 height=8 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=113 y=135 width=8 height=8 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=16 y=85 width=14 height=14 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-1 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=65 second=84 amount=-3 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-4 +kerning first=66 second=65 amount=-1 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=68 second=68 amount=-1 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-1 +kerning first=68 second=78 amount=-1 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-1 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-1 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-1 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-6 +kerning first=76 second=67 amount=-2 +kerning first=76 second=84 amount=-5 +kerning first=76 second=86 amount=-5 +kerning first=76 second=87 amount=-4 +kerning first=76 second=89 amount=-5 +kerning first=76 second=71 amount=-3 +kerning first=76 second=79 amount=-2 +kerning first=76 second=85 amount=-3 +kerning first=77 second=71 amount=-1 +kerning first=77 second=79 amount=-1 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-1 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-1 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-1 +kerning first=79 second=78 amount=-1 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-1 +kerning first=79 second=88 amount=-2 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-1 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-2 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-1 +kerning first=82 second=67 amount=-1 +kerning first=82 second=71 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=82 second=84 amount=-1 +kerning first=82 second=85 amount=-1 +kerning first=82 second=86 amount=-1 +kerning first=82 second=87 amount=-1 +kerning first=82 second=89 amount=-1 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-4 +kerning first=84 second=67 amount=-2 +kerning first=84 second=79 amount=-2 +kerning first=85 second=65 amount=-1 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-3 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-2 +kerning first=87 second=67 amount=-1 +kerning first=87 second=71 amount=-2 +kerning first=87 second=79 amount=-1 +kerning first=89 second=65 amount=-4 +kerning first=89 second=67 amount=-2 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-2 +kerning first=65 second=99 amount=-1 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-2 +kerning first=65 second=116 amount=-2 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-2 +kerning first=65 second=119 amount=-2 +kerning first=65 second=121 amount=-2 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-2 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-2 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-3 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-1 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-2 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-1 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-1 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-2 +kerning first=74 second=44 amount=-2 +kerning first=75 second=101 amount=-3 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-3 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-1 +kerning first=77 second=100 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-1 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-2 +kerning first=82 second=101 amount=-2 +kerning first=82 second=111 amount=-1 +kerning first=82 second=116 amount=-1 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=83 second=44 amount=-2 +kerning first=84 second=97 amount=-2 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-3 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=114 amount=-3 +kerning first=84 second=115 amount=-2 +kerning first=84 second=117 amount=-3 +kerning first=84 second=119 amount=-2 +kerning first=84 second=121 amount=-2 +kerning first=84 second=46 amount=-5 +kerning first=84 second=44 amount=-5 +kerning first=84 second=59 amount=-3 +kerning first=84 second=58 amount=-2 +kerning first=85 second=97 amount=-1 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-2 +kerning first=86 second=101 amount=-3 +kerning first=86 second=105 amount=-1 +kerning first=86 second=111 amount=-2 +kerning first=86 second=114 amount=-2 +kerning first=86 second=117 amount=-2 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-2 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-1 +kerning first=87 second=109 amount=-1 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-1 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-1 +kerning first=87 second=46 amount=-3 +kerning first=87 second=44 amount=-3 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-1 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-1 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-2 +kerning first=89 second=46 amount=-4 +kerning first=89 second=44 amount=-5 +kerning first=89 second=59 amount=-3 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-1 +kerning first=97 second=100 amount=-1 +kerning first=97 second=101 amount=-1 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-1 +kerning first=97 second=117 amount=-1 +kerning first=97 second=118 amount=-1 +kerning first=97 second=119 amount=-1 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-1 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-2 +kerning first=98 second=46 amount=-2 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-1 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-1 +kerning first=100 second=119 amount=-1 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-1 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-1 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-2 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-2 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-4 +kerning first=102 second=44 amount=-4 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-1 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-2 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-1 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-2 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-2 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-1 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-1 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-1 +kerning first=108 second=100 amount=-1 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-1 +kerning first=108 second=118 amount=-1 +kerning first=108 second=119 amount=-1 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-1 +kerning first=109 second=100 amount=-1 +kerning first=109 second=101 amount=-1 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-1 +kerning first=109 second=112 amount=-1 +kerning first=109 second=116 amount=-1 +kerning first=109 second=117 amount=-1 +kerning first=109 second=118 amount=-1 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-1 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-2 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-2 +kerning first=110 second=119 amount=-2 +kerning first=110 second=121 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-1 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-2 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-2 +kerning first=113 second=117 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-1 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-1 +kerning first=114 second=110 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-1 +kerning first=114 second=118 amount=-1 +kerning first=114 second=121 amount=-1 +kerning first=114 second=46 amount=-3 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-2 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-1 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-1 +kerning first=118 second=99 amount=-1 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-1 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-2 +kerning first=118 second=44 amount=-3 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-1 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-3 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-2 +kerning first=121 second=44 amount=-3 +kerning first=121 second=97 amount=-1 +kerning first=121 second=99 amount=-1 +kerning first=121 second=100 amount=-2 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-1 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-2 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-1 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-1 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-2 +kerning first=101 second=100 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-2 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-1 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-1 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-2 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-2 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-1 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.atlas b/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.atlas new file mode 100644 index 0000000..768a675 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.atlas @@ -0,0 +1,382 @@ + +neon-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 145, 41 + size: 46, 42 + split: 17, 17, 15, 16 + pad: 15, 15, 14, 14 + orig: 46, 42 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 197, 141 + size: 46, 42 + split: 17, 17, 15, 16 + pad: 15, 15, 14, 14 + orig: 46, 42 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 197, 97 + size: 46, 42 + split: 17, 17, 15, 16 + pad: 15, 15, 14, 14 + orig: 46, 42 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 222, 70 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +checkbox-over + rotate: false + xy: 222, 46 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 219, 205 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +checkbox-pressed-over + rotate: false + xy: 245, 343 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 388, 394 + size: 116, 117 + orig: 116, 117 + offset: 0, 0 + index: -1 +font-over-export + rotate: false + xy: 1, 41 + size: 142, 144 + orig: 142, 144 + offset: 0, 0 + index: -1 +font-pressed-export + rotate: false + xy: 244, 367 + size: 142, 144 + orig: 142, 144 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 1, 1 + size: 52, 38 + split: 18, 18, 0, 16 + pad: 14, 14, 0, 12 + orig: 52, 38 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 208, 345 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 269, 347 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 496, 355 + size: 9, 37 + split: 0, 0, 0, 23 + pad: 0, 0, 0, 0 + orig: 9, 37 + offset: 0, 0 + index: -1 +progress-bar-big + rotate: false + xy: 1, 429 + size: 241, 82 + split: 50, 47, 0, 0 + pad: 17, 18, 0, 0 + orig: 241, 82 + offset: 0, 0 + index: -1 +progress-bar-big-knob + rotate: false + xy: 1, 345 + size: 205, 82 + orig: 205, 82 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 245, 146 + size: 1, 37 + split: 0, 0, 0, 36 + pad: 0, 0, 0, 0 + orig: 1, 37 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 55, 1 + size: 37, 9 + split: 0, 20, 0, 0 + pad: 0, 0, 0, 0 + orig: 37, 9 + offset: 0, 0 + index: -1 +progress-bar-vertical-knob + rotate: false + xy: 197, 94 + size: 37, 1 + split: 0, 36, 0, 0 + pad: 0, 0, 0, 0 + orig: 37, 1 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 163, 15 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +radio-over + rotate: false + xy: 189, 13 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 215, 13 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +scroll-horizontal + rotate: false + xy: 55, 12 + size: 44, 27 + split: 11, 11, 11, 11 + pad: 0, 0, 0, 0 + orig: 44, 27 + offset: 0, 0 + index: -1 +scroll-vertical + rotate: false + xy: 193, 39 + size: 27, 44 + split: 11, 11, 11, 11 + pad: 0, 0, 0, 0 + orig: 27, 44 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 165, 185 + size: 52, 42 + split: 18, 22, 14, 21 + pad: 15, 23, 14, 14 + orig: 52, 42 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 388, 350 + size: 52, 42 + split: 18, 22, 14, 21 + pad: 15, 23, 14, 14 + orig: 52, 42 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 442, 350 + size: 52, 42 + split: 18, 22, 14, 21 + pad: 15, 23, 14, 14 + orig: 52, 42 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 228, 341 + size: 8, 22 + split: 2, 2, 10, 10 + pad: 0, 0, 0, 0 + orig: 8, 22 + offset: 0, 0 + index: -1 +slider-before + rotate: false + xy: 239, 405 + size: 1, 22 + split: 0, 0, 9, 9 + pad: 0, 0, 0, 0 + orig: 1, 22 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 289, 355 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +slider-knob-pressed + rotate: false + xy: 301, 355 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 219, 195 + size: 22, 8 + split: 10, 10, 2, 2 + pad: 0, 0, 0, 0 + orig: 22, 8 + offset: 0, 0 + index: -1 +slider-vertical-before + rotate: false + xy: 163, 12 + size: 22, 1 + split: 9, 9, 0, 0 + pad: 0, 0, 0, 0 + orig: 22, 1 + offset: 0, 0 + index: -1 +split-pane-horizontal + rotate: false + xy: 313, 356 + size: 1, 9 + orig: 1, 9 + offset: 0, 0 + index: -1 +split-pane-vertical + rotate: false + xy: 236, 94 + size: 9, 1 + orig: 9, 1 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 219, 185 + size: 14, 8 + split: 3, 3, 0, 7 + pad: 4, 4, 0, 6 + orig: 14, 8 + offset: 0, 0 + index: -1 +textfield-login + rotate: false + xy: 208, 397 + size: 29, 30 + split: 18, 3, 0, 29 + pad: 20, 4, 0, 6 + orig: 29, 30 + offset: 0, 0 + index: -1 +textfield-login-selected + rotate: false + xy: 208, 365 + size: 29, 30 + split: 18, 3, 0, 29 + pad: 20, 4, 0, 6 + orig: 29, 30 + offset: 0, 0 + index: -1 +textfield-password + rotate: false + xy: 101, 9 + size: 29, 30 + split: 19, 3, 0, 29 + pad: 21, 4, 0, 6 + orig: 29, 30 + offset: 0, 0 + index: -1 +textfield-password-selected + rotate: false + xy: 132, 9 + size: 29, 30 + split: 20, 3, 0, 29 + pad: 21, 4, 0, 6 + orig: 29, 30 + offset: 0, 0 + index: -1 +textfield-selected + rotate: false + xy: 235, 185 + size: 14, 8 + split: 3, 3, 0, 7 + pad: 4, 4, 0, 6 + orig: 14, 8 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 145, 85 + size: 50, 98 + split: 14, 14, 15, 16 + pad: 13, 13, 13, 13 + orig: 50, 98 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 187 + size: 162, 156 + split: 54, 53, 57, 50 + pad: 0, 0, 1, 0 + orig: 162, 156 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 165, 287 + size: 56, 56 + orig: 56, 56 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 94, 9 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 165, 229 + size: 56, 56 + split: 17, 16, 17, 17 + pad: 16, 15, 16, 16 + orig: 56, 56 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.json b/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.json new file mode 100644 index 0000000..c67e63a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.json @@ -0,0 +1,423 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + font-over: { + file: font-over-export.fnt + } + font-pressed: { + file: font-pressed-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + color: { + r: 0 + g: 1 + b: 1 + a: 1 + } + selected: { + r: 0 + g: .4 + b: .4 + a: 1 + } + text: { + r: .580392156 + g: 1 + b: 1 + a: 1 + } + text-selected: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-c: { + name: button + color: color + } + button-over-c: { + name: button-over + color: color + } + button-pressed-c: { + name: button-pressed + color: color + } + checkbox-pressed-c: { + name: checkbox-pressed + color: color + } + checkbox-c: { + name: checkbox + color: color + } + checkbox-over-c: { + name: checkbox-over + color: color + } + radio-c: { + name: radio + color: color + } + radio-pressed-c: { + name: radio-pressed + color: color + } + radio-over-c: { + name: radio-over + color: color + } + color: { + name: white + color: color + } + list-c: { + name: list + color: color + } + slider-c: { + name: slider + color: color + } + progress-bar-c: { + name: progress-bar + color: color + } + progress-bar-knob-c: { + name: progress-bar-knob + color: color + } + progress-bar-vertical-c: { + name: progress-bar-vertical + color: color + } + progress-bar-vertical-knob-c: { + name: progress-bar-vertical-knob + color: color + } + scroll-horizontal-c: { + name: scroll-horizontal + color: color + } + scroll-vertical-c: { + name: scroll-vertical + color: color + } + select-box-c: { + name: select-box + color: color + } + select-box-over-c: { + name: select-box-over + color: color + } + select-box-pressed-c: { + name: select-box-pressed + color: color + } + slider-before-c: { + name: slider-before + color: color + } + slider-knob-c: { + name: slider-knob + color: color + } + slider-knob-pressed-c: { + name: slider-knob-pressed + color: color + } + slider-vertical-c: { + name: slider-vertical + color: color + } + slider-vertical-before-c: { + name: slider-vertical-before + color: color + } + split-pane-horizontal-c: { + name: split-pane-horizontal + color: color + } + split-pane-vertical-c: { + name: split-pane-vertical + color: color + } + selected: { + name: white + color: selected + } + textfield-c: { + name: textfield + color: color + } + textfield-login-c: { + name: textfield-login + color: color + } + textfield-selected-c: { + name: textfield-selected + color: color + } + textfield-login-selected-c: { + name: textfield-login-selected + color: color + } + textfield-password-c: { + name: textfield-password + color: color + } + textfield-password-selected-c: { + name: textfield-password-selected + color: color + } + tooltip-c: { + name: tooltip + color: color + } + touchpad-c: { + name: touchpad + color: color + } + touchpad-knob-c: { + name: touchpad-knob + color: color + } + plus-c: { + name: plus + color: color + } + minus-c: { + name: minus + color: color + } + window-c: { + name: window + color: color + } + checkbox-pressed-over-c: { + name: checkbox-pressed-over + color: color + } + progress-bar-big-c: { + name: progress-bar-big + color: color + } + progress-bar-big-knob-c: { + name: progress-bar-big-knob + color: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-c + down: button-pressed-c + over: button-over-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-pressed-c + checkboxOff: checkbox-c + checkboxOver: checkbox-over-c + font: font + fontColor: text + downFontColor: text-selected + checkedFontColor: text-selected + } + radio: { + checkboxOn: radio-pressed-c + checkboxOff: radio-c + checkboxOver: radio-over-c + font: font + fontColor: color + downFontColor: selected + checkedFontColor: selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + imageUp: button-c + imageDown: button-pressed-c + imageOver: button-over-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: text + downFontColor: text-selected + up: button-c + down: button-pressed-c + over: button-over-c + } + checkbox: { + imageUp: checkbox-c + imageDown: checkbox-pressed-c + imageOver: checkbox-over-c + imageChecked: checkbox-pressed-c + imageCheckedOver: checkbox-pressed-over-c + font: font + fontColor: text + downFontColor: text-selected + checkedFontColor: text-selected + } + radio: { + imageUp: radio-c + imageDown: radio-pressed-c + imageOver: radio-over-c + imageChecked: radio-pressed-c + imageCheckedOver: radio-over-c + font: font + fontColor: text + downFontColor: text-selected + checkedFontColor: text-selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: text + } + over: { + font: font-over + fontColor: text + } + pressed: { + font: font-pressed + fontColor: text + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: selected + fontColorUnselected: text + selection: color + background: list-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-c + knobBefore: progress-bar-knob-c + } + default-vertical: { + background: progress-bar-vertical-c + knobBefore: progress-bar-vertical-knob-c + } + big: { + background: progress-bar-big-c + knobBefore: progress-bar-big-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scroll-horizontal-c + vScrollKnob: scroll-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: text + background: select-box-c + scrollStyle: default + listStyle: default + backgroundOver: select-box-over-c + backgroundOpen: select-box-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-pressed-c + knobDown: slider-knob-pressed-c + background: slider-c + knob: slider-knob-c + knobBefore: slider-before-c + } + default-vertical: { + knobOver: slider-knob-pressed-c + knobDown: slider-knob-pressed-c + background: slider-vertical-c + knob: slider-knob-c + knobBefore: slider-vertical-before-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane-horizontal-c + } + default-vertical: { + handle: split-pane-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: text + downFontColor: text-selected + up: button-c + down: button-pressed-c + over: button-over-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: text + background: textfield-c + focusedBackground: textfield-selected-c + cursor: color + selection: selected + } + login: { + font: font + fontColor: text + background: textfield-login-c + focusedBackground: textfield-login-selected-c + cursor: color + selection: selected + } + password: { + font: font + fontColor: text + background: textfield-password-c + focusedBackground: textfield-password-selected-c + cursor: color + selection: selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad-c + knob: touchpad-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus-c + minus: minus-c + selection: selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-c + titleFont: font + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.png b/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.png new file mode 100644 index 0000000..56c36eb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neon/skin/neon-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/PassionOneFont.txt b/src/main/resources/omni_power/gdx-skins/neutralizer/PassionOneFont.txt new file mode 100644 index 0000000..2182a4f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/PassionOneFont.txt @@ -0,0 +1,93 @@ +Copyright (c) 2011 Fontstage (info@fontstage.com), +with Reserved Font Names, "Passion", "Passion One" +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/README.md b/src/main/resources/omni_power/gdx-skins/neutralizer/README.md new file mode 100644 index 0000000..368e759 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/README.md @@ -0,0 +1,28 @@ +# Neutralizer UI + +``` +Neutralizer UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2017 Raymond Buckley + +Neutralizer UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** and **VisUI** widgets. + +![Neutralizer](preview.png) + +Made as a compatibility test of [Skin Composer](https://github.com/raeleus/skin-composer) and [VisUI](https://github.com/kotcrab/vis-editor/wiki/VisUI). + +![ColorPicker](preview-colorpicker.png) +![FileChooser](preview-filechooser.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/neutralizer-ui-skin-for-visui/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font](PassionOneFont.txt) [licenses](SpinnakerFont.txt). diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/SpinnakerFont.txt b/src/main/resources/omni_power/gdx-skins/neutralizer/SpinnakerFont.txt new file mode 100644 index 0000000..6a3e4f3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/SpinnakerFont.txt @@ -0,0 +1,93 @@ +Copyright (c) 2011 by Sorkin Type Co (www.sorkintype.com), +with Reserved Font Name "Spinnaker". +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/preview-colorpicker.png b/src/main/resources/omni_power/gdx-skins/neutralizer/preview-colorpicker.png new file mode 100644 index 0000000..d4ea3f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/preview-colorpicker.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/preview-filechooser.png b/src/main/resources/omni_power/gdx-skins/neutralizer/preview-filechooser.png new file mode 100644 index 0000000..9690f98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/preview-filechooser.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/preview.png b/src/main/resources/omni_power/gdx-skins/neutralizer/preview.png new file mode 100644 index 0000000..ef2bbaf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/bar-selector.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/bar-selector.png new file mode 100644 index 0000000..ad4c68a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/bar-selector.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-down-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-down-pressed.png new file mode 100644 index 0000000..fe07970 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-down-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-down.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-down.png new file mode 100644 index 0000000..84722ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-pressed.9.png new file mode 100644 index 0000000..95efc08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-pressed.png new file mode 100644 index 0000000..e44b7a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-up-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-up-pressed.png new file mode 100644 index 0000000..ba02da3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-up-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-up.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-up.png new file mode 100644 index 0000000..b76cbb8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button.9.png new file mode 100644 index 0000000..b804ef9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button.png new file mode 100644 index 0000000..4da23c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/check-radio.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/check-radio.png new file mode 100644 index 0000000..4a554d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/check-radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/check.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/check.png new file mode 100644 index 0000000..1694735 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/check.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-checked-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-checked-pressed.png new file mode 100644 index 0000000..ce464ec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-checked-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-checked.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-checked.png new file mode 100644 index 0000000..18d1620 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-checked.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-pressed.png new file mode 100644 index 0000000..45b7d21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox.png new file mode 100644 index 0000000..7253e66 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/expand-drop-down.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/expand-drop-down.png new file mode 100644 index 0000000..c91a5dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/expand-drop-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-export.fnt new file mode 100644 index 0000000..311052f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=98 scaleH=98 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=93 y=14 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=44 y=94 width=4 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=24 y=58 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=34 y=58 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=12 y=69 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=12 y=81 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=71 y=93 width=2 height=3 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=87 y=21 width=5 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=93 y=0 width=4 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=26 y=92 width=5 height=5 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=55 y=23 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=67 y=93 width=3 height=4 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=19 y=96 width=6 height=1 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=49 y=94 width=3 height=3 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=80 y=74 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=12 y=57 width=11 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=81 y=10 width=6 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=63 y=31 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=63 y=43 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=35 y=12 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=63 y=55 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=35 y=36 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=64 y=9 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=34 y=71 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=35 y=23 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=84 y=89 width=3 height=7 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=80 y=89 width=3 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=72 y=68 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=54 y=93 width=7 height=4 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=72 y=33 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=80 y=52 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=12 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=13 y=24 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=44 y=60 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="B" +char id=67 x=24 y=46 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=27 y=0 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=44 y=83 width=9 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=54 y=80 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=16 y=0 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=44 y=72 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=81 y=32 width=2 height=10 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=72 y=56 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=23 y=69 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=63 y=80 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=12 height=10 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=25 y=12 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=45 width=12 height=11 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=38 y=0 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=57 width=11 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=23 y=80 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=44 y=48 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=24 y=23 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=24 y=34 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=0 y=80 width=11 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=11 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=14 y=12 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=45 y=23 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=45 y=12 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=88 y=66 width=4 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=72 y=78 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=88 y=36 width=4 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=13 y=47 width=9 height=6 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=0 y=93 width=9 height=1 xoffset=0 yoffset=13 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=19 y=93 width=4 height=2 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=35 y=48 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=54 y=34 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=80 y=64 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=54 y=47 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=48 y=0 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=73 y=0 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=34 y=83 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=45 y=34 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=93 y=39 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=88 y=50 width=4 height=15 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=72 y=43 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=26 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=24 width=12 height=9 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=54 y=60 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=54 y=70 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=55 y=10 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=63 y=67 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=81 y=0 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=64 y=21 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=81 y=21 width=5 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=57 y=0 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=80 y=43 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=71 width=11 height=8 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=73 y=13 width=7 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=72 y=21 width=8 height=11 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=66 y=0 width=6 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=88 y=80 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=93 y=52 width=2 height=14 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=88 y=0 width=4 height=15 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=10 y=93 width=8 height=4 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="~" +char id=8226 x=62 y=93 width=4 height=4 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=13 y=36 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-export.png new file mode 100644 index 0000000..0a9ff6c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title-export.fnt new file mode 100644 index 0000000..54e1c1c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=35 base=35 scaleW=216 scaleH=217 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=206 y=29 width=9 height=27 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="!" +char id=34 x=36 y=56 width=17 height=13 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=70 y=166 width=19 height=25 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=147 y=58 width=17 height=33 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="$" +char id=37 x=0 y=73 width=31 height=28 xoffset=0 yoffset=8 xadvance=33 page=0 chnl=0 letter="%" +char id=38 x=25 y=178 width=23 height=28 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=184 y=34 width=9 height=13 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="'" +char id=40 x=164 y=146 width=14 height=33 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=187 y=0 width=13 height=33 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter=")" +char id=42 x=89 y=197 width=17 height=16 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=147 y=183 width=16 height=18 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=195 y=61 width=8 height=13 xoffset=0 yoffset=27 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=34 y=207 width=13 height=8 xoffset=0 yoffset=20 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=165 y=80 width=9 height=9 xoffset=0 yoffset=27 xadvance=11 page=0 chnl=0 letter="." +char id=47 x=129 y=157 width=17 height=32 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="/" +char id=48 x=90 y=111 width=19 height=28 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="0" +char id=49 x=195 y=34 width=10 height=26 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="1" +char id=50 x=129 y=101 width=17 height=27 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="2" +char id=51 x=147 y=92 width=16 height=28 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=32 y=73 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="4" +char id=53 x=152 y=28 width=16 height=27 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=99 y=0 width=19 height=28 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="6" +char id=55 x=110 y=188 width=18 height=26 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="7" +char id=56 x=90 y=140 width=19 height=28 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="8" +char id=57 x=119 y=0 width=18 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="9" +char id=58 x=207 y=90 width=8 height=20 xoffset=0 yoffset=16 xadvance=10 page=0 chnl=0 letter=":" +char id=59 x=206 y=148 width=9 height=24 xoffset=0 yoffset=16 xadvance=11 page=0 chnl=0 letter=";" +char id=60 x=180 y=56 width=14 height=23 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=54 y=83 width=15 height=16 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 letter="=" +char id=62 x=165 y=56 width=14 height=23 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=169 y=27 width=14 height=28 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=37 width=35 height=35 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter="@" +char id=65 x=49 y=156 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=70 y=111 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="B" +char id=67 x=147 y=121 width=16 height=28 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=79 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="D" +char id=69 x=164 y=92 width=15 height=26 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=156 y=0 width=15 height=26 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="F" +char id=71 x=49 y=127 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="G" +char id=72 x=49 y=100 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="H" +char id=73 x=207 y=111 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="I" +char id=74 x=180 y=114 width=10 height=27 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=54 y=56 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=164 y=119 width=15 height=26 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="L" +char id=77 x=0 y=151 width=25 height=26 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="M" +char id=78 x=58 y=0 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="N" +char id=79 x=36 y=0 width=21 height=28 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="O" +char id=80 x=110 y=161 width=18 height=26 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="P" +char id=81 x=27 y=124 width=21 height=31 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="Q" +char id=82 x=78 y=27 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="R" +char id=83 x=134 y=29 width=17 height=28 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="S" +char id=84 x=129 y=74 width=17 height=26 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="T" +char id=85 x=90 y=169 width=19 height=27 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="U" +char id=86 x=57 y=29 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=0 y=124 width=26 height=26 xoffset=0 yoffset=9 xadvance=28 page=0 chnl=0 letter="W" +char id=88 x=36 y=29 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="X" +char id=89 x=95 y=54 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="Y" +char id=90 x=75 y=56 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="Z" +char id=91 x=194 y=148 width=11 height=33 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="[" +char id=92 x=147 y=150 width=16 height=32 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="\" +char id=93 x=194 y=80 width=12 height=33 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=147 y=202 width=13 height=8 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=0 y=207 width=18 height=7 xoffset=0 yoffset=34 xadvance=20 page=0 chnl=0 letter="_" +char id=96 x=161 y=208 width=10 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=70 y=192 width=18 height=22 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="a" +char id=98 x=110 y=81 width=18 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="b" +char id=99 x=172 y=0 width=14 height=22 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="c" +char id=100 x=49 y=183 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="d" +char id=101 x=110 y=138 width=18 height=22 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="e" +char id=102 x=164 y=180 width=14 height=27 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=90 y=83 width=19 height=27 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="g" +char id=104 x=129 y=129 width=17 height=27 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="h" +char id=105 x=206 y=173 width=9 height=27 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="i" +char id=106 x=194 y=182 width=11 height=33 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="j" +char id=107 x=70 y=138 width=19 height=27 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="k" +char id=108 x=201 y=0 width=9 height=28 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=0 y=102 width=27 height=21 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="m" +char id=110 x=28 y=102 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="n" +char id=111 x=98 y=29 width=18 height=22 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="o" +char id=112 x=110 y=110 width=18 height=27 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="p" +char id=113 x=138 y=0 width=17 height=27 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="q" +char id=114 x=179 y=195 width=14 height=21 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="r" +char id=115 x=179 y=172 width=14 height=22 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="s" +char id=116 x=179 y=146 width=14 height=25 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=129 y=190 width=17 height=22 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="u" +char id=118 x=26 y=156 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="v" +char id=119 x=0 y=178 width=24 height=21 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=115 y=52 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="x" +char id=121 x=70 y=83 width=19 height=27 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="y" +char id=122 x=117 y=29 width=16 height=21 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="z" +char id=123 x=180 y=80 width=13 height=33 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=207 y=57 width=8 height=32 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="|" +char id=125 x=194 y=114 width=12 height=33 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=19 y=207 width=14 height=9 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=134 y=58 width=11 height=13 xoffset=0 yoffset=16 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=35 height=36 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=88 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title-export.png new file mode 100644 index 0000000..ed176e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title.png new file mode 100644 index 0000000..815a3eb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font.png new file mode 100644 index 0000000..8595ccd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-arrow-1.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-arrow-1.png new file mode 100644 index 0000000..269b9b4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-arrow-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-arrow-2.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-arrow-2.png new file mode 100644 index 0000000..8e33acc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-arrow-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-brush.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-brush.png new file mode 100644 index 0000000..c4300b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-brush.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-close.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-close.png new file mode 100644 index 0000000..e321ac6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-drive.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-drive.png new file mode 100644 index 0000000..518164e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-drive.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-audio.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-audio.png new file mode 100644 index 0000000..94cd482 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-audio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-image.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-image.png new file mode 100644 index 0000000..4359114 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-image.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-pdf.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-pdf.png new file mode 100644 index 0000000..f62e029 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-pdf.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-text.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-text.png new file mode 100644 index 0000000..3e4790d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-file-text.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-new.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-new.png new file mode 100644 index 0000000..b91e458 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-new.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-parent.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-parent.png new file mode 100644 index 0000000..f607b5e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-parent.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-star.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-star.png new file mode 100644 index 0000000..c0de65b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder-star.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder.png new file mode 100644 index 0000000..24976dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-folder.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-left.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-left.png new file mode 100644 index 0000000..19ce492 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-pencil.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-pencil.png new file mode 100644 index 0000000..dd0d082 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-pencil.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-rect.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-rect.png new file mode 100644 index 0000000..ccedcf8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-rect.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-refresh.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-refresh.png new file mode 100644 index 0000000..f6cd237 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-refresh.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-right.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-right.png new file mode 100644 index 0000000..3abc0ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-settings.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-settings.png new file mode 100644 index 0000000..876fe0d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-settings.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-star-outline.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-star-outline.png new file mode 100644 index 0000000..c0d3320 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-star-outline.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-star.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-star.png new file mode 100644 index 0000000..3bd0a1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-star.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-trash.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-trash.png new file mode 100644 index 0000000..eb0ed22 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/icon-trash.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/list.9.png new file mode 100644 index 0000000..9c83ecd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/list.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/list.png new file mode 100644 index 0000000..3445dd8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-bar.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-bar.9.png new file mode 100644 index 0000000..bf729da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-bar.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-bar.png new file mode 100644 index 0000000..752a759 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-down.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-down.9.png new file mode 100644 index 0000000..d04122b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-down.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-down.png new file mode 100644 index 0000000..a0f24b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-over.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-over.9.png new file mode 100644 index 0000000..75b7737 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-over.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-over.png new file mode 100644 index 0000000..752a759 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button.9.png new file mode 100644 index 0000000..e6006a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button.png new file mode 100644 index 0000000..381a4e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu.9.png new file mode 100644 index 0000000..62b82a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu.png new file mode 100644 index 0000000..99c0230 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel.9.png new file mode 100644 index 0000000..7e2c4e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel.png new file mode 100644 index 0000000..dee6978 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel2.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel2.9.png new file mode 100644 index 0000000..a4cd46f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel2.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel2.png new file mode 100644 index 0000000..efb6388 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/panel2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-horizontal.9.png new file mode 100644 index 0000000..646debf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..ee3f98e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-knob-horizontal.png new file mode 100644 index 0000000..08e93ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-knob-vertical.png new file mode 100644 index 0000000..ab8dfb5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..d6a0c08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-vertical.png new file mode 100644 index 0000000..da2d6d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-checked-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-checked-pressed.png new file mode 100644 index 0000000..233ac24 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-checked-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-checked.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-checked.png new file mode 100644 index 0000000..ee1f04d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-checked.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-pressed.png new file mode 100644 index 0000000..55bd56a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio.png new file mode 100644 index 0000000..1b2e863 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-horizontal.9.png new file mode 100644 index 0000000..8cf3f8a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..3476896 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..10d42db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-vertical.png new file mode 100644 index 0000000..ef30491 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box-pressed.9.png new file mode 100644 index 0000000..2c1da5f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box-pressed.png new file mode 100644 index 0000000..94fbd4c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box.9.png new file mode 100644 index 0000000..e21724d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box.png new file mode 100644 index 0000000..bc30804 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/selection.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/selection.9.png new file mode 100644 index 0000000..c8d2d13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/selection.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/selection.png new file mode 100644 index 0000000..5be1127 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-horizontal.png new file mode 100644 index 0000000..60c807e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-pressed-horizontal.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-pressed-horizontal.png new file mode 100644 index 0000000..0183820 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-pressed-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-pressed-vertical.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-pressed-vertical.png new file mode 100644 index 0000000..ce1ecdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-pressed-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-vertical.png new file mode 100644 index 0000000..a6beeee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/slider-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/spinner-down.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/spinner-down.png new file mode 100644 index 0000000..35b040a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/spinner-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/spinner-up.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/spinner-up.png new file mode 100644 index 0000000..33104b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/spinner-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-horizontal-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-horizontal-pressed.png new file mode 100644 index 0000000..fe19a0c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-horizontal-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-horizontal.png new file mode 100644 index 0000000..25283aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-vertical-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-vertical-pressed.png new file mode 100644 index 0000000..46f38b3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-vertical-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-vertical.png new file mode 100644 index 0000000..84f15c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab-pressed.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab-pressed.9.png new file mode 100644 index 0000000..65273e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab-pressed.png new file mode 100644 index 0000000..81e1e4e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab.9.png new file mode 100644 index 0000000..734e458 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab.png new file mode 100644 index 0000000..b8c51cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tab.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield-pressed.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield-pressed.9.png new file mode 100644 index 0000000..bc6bb08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield-pressed.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield-pressed.png new file mode 100644 index 0000000..d146a63 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield.9.png new file mode 100644 index 0000000..44feb45 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield.png new file mode 100644 index 0000000..36d498e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/title-bg.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/title-bg.9.png new file mode 100644 index 0000000..00b343d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/title-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/title-bg.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/title-bg.png new file mode 100644 index 0000000..a95ce18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/title-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/touchpad-knob.png new file mode 100644 index 0000000..3ff0686 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/touchpad.png new file mode 100644 index 0000000..529273e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tree-minus.png new file mode 100644 index 0000000..b354c99 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tree-plus.png new file mode 100644 index 0000000..665a9d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/white.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/window.9.png new file mode 100644 index 0000000..f6d1325 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/raw/window.png b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/window.png new file mode 100644 index 0000000..adf648d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/font-export.fnt new file mode 100644 index 0000000..311052f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=98 scaleH=98 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=93 y=14 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=44 y=94 width=4 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=24 y=58 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=34 y=58 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=12 y=69 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=12 y=81 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=71 y=93 width=2 height=3 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=87 y=21 width=5 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=93 y=0 width=4 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=26 y=92 width=5 height=5 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=55 y=23 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=67 y=93 width=3 height=4 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=19 y=96 width=6 height=1 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=49 y=94 width=3 height=3 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=80 y=74 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=12 y=57 width=11 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=81 y=10 width=6 height=10 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=63 y=31 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=63 y=43 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=35 y=12 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=63 y=55 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=35 y=36 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=64 y=9 width=8 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=34 y=71 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=35 y=23 width=9 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=84 y=89 width=3 height=7 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=80 y=89 width=3 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=72 y=68 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=54 y=93 width=7 height=4 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=72 y=33 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=80 y=52 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=12 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=13 y=24 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=44 y=60 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="B" +char id=67 x=24 y=46 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=27 y=0 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=44 y=83 width=9 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=54 y=80 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=16 y=0 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=44 y=72 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=81 y=32 width=2 height=10 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=72 y=56 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=23 y=69 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=63 y=80 width=8 height=10 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=34 width=12 height=10 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="M" +char id=78 x=25 y=12 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=45 width=12 height=11 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=38 y=0 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=57 width=11 height=13 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=23 y=80 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=44 y=48 width=9 height=11 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=24 y=23 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=24 y=34 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=0 y=80 width=11 height=11 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=11 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=14 y=12 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=45 y=23 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=45 y=12 width=9 height=10 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=88 y=66 width=4 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=72 y=78 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=88 y=36 width=4 height=13 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=13 y=47 width=9 height=6 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="^" +char id=95 x=0 y=93 width=9 height=1 xoffset=0 yoffset=13 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=19 y=93 width=4 height=2 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=35 y=48 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=54 y=34 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=80 y=64 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=54 y=47 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=48 y=0 width=8 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=73 y=0 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=34 y=83 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=45 y=34 width=8 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=93 y=39 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=88 y=50 width=4 height=15 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=72 y=43 width=7 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=26 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=24 width=12 height=9 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=54 y=60 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=54 y=70 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=55 y=10 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=63 y=67 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=81 y=0 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=64 y=21 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=81 y=21 width=5 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=57 y=0 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=80 y=43 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=71 width=11 height=8 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=73 y=13 width=7 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=72 y=21 width=8 height=11 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=66 y=0 width=6 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=88 y=80 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=93 y=52 width=2 height=14 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=88 y=0 width=4 height=15 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=10 y=93 width=8 height=4 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="~" +char id=8226 x=62 y=93 width=4 height=4 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=13 y=36 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/font-title-export.fnt new file mode 100644 index 0000000..54e1c1c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=35 base=35 scaleW=216 scaleH=217 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=206 y=29 width=9 height=27 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="!" +char id=34 x=36 y=56 width=17 height=13 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=70 y=166 width=19 height=25 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=147 y=58 width=17 height=33 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="$" +char id=37 x=0 y=73 width=31 height=28 xoffset=0 yoffset=8 xadvance=33 page=0 chnl=0 letter="%" +char id=38 x=25 y=178 width=23 height=28 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="&" +char id=39 x=184 y=34 width=9 height=13 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="'" +char id=40 x=164 y=146 width=14 height=33 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=187 y=0 width=13 height=33 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter=")" +char id=42 x=89 y=197 width=17 height=16 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=147 y=183 width=16 height=18 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=195 y=61 width=8 height=13 xoffset=0 yoffset=27 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=34 y=207 width=13 height=8 xoffset=0 yoffset=20 xadvance=15 page=0 chnl=0 letter="-" +char id=46 x=165 y=80 width=9 height=9 xoffset=0 yoffset=27 xadvance=11 page=0 chnl=0 letter="." +char id=47 x=129 y=157 width=17 height=32 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="/" +char id=48 x=90 y=111 width=19 height=28 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="0" +char id=49 x=195 y=34 width=10 height=26 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="1" +char id=50 x=129 y=101 width=17 height=27 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="2" +char id=51 x=147 y=92 width=16 height=28 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=32 y=73 width=21 height=26 xoffset=0 yoffset=9 xadvance=23 page=0 chnl=0 letter="4" +char id=53 x=152 y=28 width=16 height=27 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=99 y=0 width=19 height=28 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="6" +char id=55 x=110 y=188 width=18 height=26 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="7" +char id=56 x=90 y=140 width=19 height=28 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="8" +char id=57 x=119 y=0 width=18 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="9" +char id=58 x=207 y=90 width=8 height=20 xoffset=0 yoffset=16 xadvance=10 page=0 chnl=0 letter=":" +char id=59 x=206 y=148 width=9 height=24 xoffset=0 yoffset=16 xadvance=11 page=0 chnl=0 letter=";" +char id=60 x=180 y=56 width=14 height=23 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=54 y=83 width=15 height=16 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 letter="=" +char id=62 x=165 y=56 width=14 height=23 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=169 y=27 width=14 height=28 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=37 width=35 height=35 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter="@" +char id=65 x=49 y=156 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=70 y=111 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="B" +char id=67 x=147 y=121 width=16 height=28 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=79 y=0 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="D" +char id=69 x=164 y=92 width=15 height=26 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=156 y=0 width=15 height=26 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="F" +char id=71 x=49 y=127 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="G" +char id=72 x=49 y=100 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="H" +char id=73 x=207 y=111 width=8 height=26 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="I" +char id=74 x=180 y=114 width=10 height=27 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=54 y=56 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=164 y=119 width=15 height=26 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="L" +char id=77 x=0 y=151 width=25 height=26 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="M" +char id=78 x=58 y=0 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="N" +char id=79 x=36 y=0 width=21 height=28 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="O" +char id=80 x=110 y=161 width=18 height=26 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="P" +char id=81 x=27 y=124 width=21 height=31 xoffset=0 yoffset=8 xadvance=23 page=0 chnl=0 letter="Q" +char id=82 x=78 y=27 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="R" +char id=83 x=134 y=29 width=17 height=28 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="S" +char id=84 x=129 y=74 width=17 height=26 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="T" +char id=85 x=90 y=169 width=19 height=27 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="U" +char id=86 x=57 y=29 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=0 y=124 width=26 height=26 xoffset=0 yoffset=9 xadvance=28 page=0 chnl=0 letter="W" +char id=88 x=36 y=29 width=20 height=26 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="X" +char id=89 x=95 y=54 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="Y" +char id=90 x=75 y=56 width=19 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="Z" +char id=91 x=194 y=148 width=11 height=33 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="[" +char id=92 x=147 y=150 width=16 height=32 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="\" +char id=93 x=194 y=80 width=12 height=33 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=147 y=202 width=13 height=8 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=0 y=207 width=18 height=7 xoffset=0 yoffset=34 xadvance=20 page=0 chnl=0 letter="_" +char id=96 x=161 y=208 width=10 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=70 y=192 width=18 height=22 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="a" +char id=98 x=110 y=81 width=18 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="b" +char id=99 x=172 y=0 width=14 height=22 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="c" +char id=100 x=49 y=183 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="d" +char id=101 x=110 y=138 width=18 height=22 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="e" +char id=102 x=164 y=180 width=14 height=27 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="f" +char id=103 x=90 y=83 width=19 height=27 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="g" +char id=104 x=129 y=129 width=17 height=27 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="h" +char id=105 x=206 y=173 width=9 height=27 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="i" +char id=106 x=194 y=182 width=11 height=33 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="j" +char id=107 x=70 y=138 width=19 height=27 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="k" +char id=108 x=201 y=0 width=9 height=28 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=0 y=102 width=27 height=21 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="m" +char id=110 x=28 y=102 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="n" +char id=111 x=98 y=29 width=18 height=22 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="o" +char id=112 x=110 y=110 width=18 height=27 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="p" +char id=113 x=138 y=0 width=17 height=27 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="q" +char id=114 x=179 y=195 width=14 height=21 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="r" +char id=115 x=179 y=172 width=14 height=22 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="s" +char id=116 x=179 y=146 width=14 height=25 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=129 y=190 width=17 height=22 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="u" +char id=118 x=26 y=156 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="v" +char id=119 x=0 y=178 width=24 height=21 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=115 y=52 width=18 height=21 xoffset=0 yoffset=14 xadvance=20 page=0 chnl=0 letter="x" +char id=121 x=70 y=83 width=19 height=27 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="y" +char id=122 x=117 y=29 width=16 height=21 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="z" +char id=123 x=180 y=80 width=13 height=33 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=207 y=57 width=8 height=32 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="|" +char id=125 x=194 y=114 width=12 height=33 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=19 y=207 width=14 height=9 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=134 y=58 width=11 height=13 xoffset=0 yoffset=16 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=35 height=36 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=88 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.atlas b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.atlas new file mode 100644 index 0000000..43d7148 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.atlas @@ -0,0 +1,624 @@ + +neutralizer-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bar-selector + rotate: false + xy: 251, 74 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 219, 172 + size: 33, 25 + split: 1, 1, 1, 1 + pad: 5, 5, 2, 2 + orig: 33, 25 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 1, 17 + size: 27, 10 + orig: 27, 10 + offset: 0, 0 + index: -1 +button-down-pressed + rotate: false + xy: 219, 160 + size: 27, 10 + orig: 27, 10 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 155, 2 + size: 33, 25 + split: 1, 0, 1, 1 + pad: 5, 5, 2, 2 + orig: 33, 25 + offset: 0, 0 + index: -1 +button-up + rotate: false + xy: 1, 5 + size: 27, 10 + orig: 27, 10 + offset: 0, 0 + index: -1 +button-up-pressed + rotate: false + xy: 30, 17 + size: 27, 10 + orig: 27, 10 + offset: 0, 0 + index: -1 +check + rotate: false + xy: 203, 43 + size: 19, 16 + orig: 19, 16 + offset: 0, 0 + index: -1 +check-radio + rotate: false + xy: 339, 309 + size: 18, 14 + orig: 18, 14 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 264, 220 + size: 19, 16 + orig: 19, 16 + offset: 0, 0 + index: -1 +checkbox-checked + rotate: false + xy: 264, 202 + size: 19, 16 + orig: 19, 16 + offset: 0, 0 + index: -1 +checkbox-checked-pressed + rotate: false + xy: 285, 215 + size: 19, 16 + orig: 19, 16 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 285, 197 + size: 19, 16 + orig: 19, 16 + offset: 0, 0 + index: -1 +default + rotate: false + xy: 1, 372 + size: 254, 139 + orig: 254, 139 + offset: 0, 0 + index: -1 +expand-drop-down + rotate: false + xy: 264, 238 + size: 6, 4 + orig: 6, 4 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 103, 53 + size: 98, 98 + orig: 98, 98 + offset: 0, 0 + index: -1 +font-small + rotate: false + xy: 257, 406 + size: 254, 105 + orig: 254, 105 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 153 + size: 216, 217 + orig: 216, 217 + offset: 0, 0 + index: -1 +icon-arrow-1 + rotate: false + xy: 294, 233 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +icon-arrow-2 + rotate: false + xy: 272, 238 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +icon-brush + rotate: false + xy: 294, 255 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +icon-close + rotate: false + xy: 251, 90 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +icon-drive + rotate: false + xy: 275, 348 + size: 25, 25 + orig: 25, 25 + offset: 0, 0 + index: -1 +icon-file-audio + rotate: false + xy: 329, 352 + size: 25, 25 + orig: 25, 25 + offset: 0, 0 + index: -1 +icon-file-image + rotate: false + xy: 302, 321 + size: 25, 25 + orig: 25, 25 + offset: 0, 0 + index: -1 +icon-file-pdf + rotate: false + xy: 302, 348 + size: 25, 25 + orig: 25, 25 + offset: 0, 0 + index: -1 +icon-file-text + rotate: false + xy: 275, 321 + size: 25, 25 + orig: 25, 25 + offset: 0, 0 + index: -1 +icon-folder + rotate: false + xy: 329, 325 + size: 25, 25 + orig: 25, 25 + offset: 0, 0 + index: -1 +icon-folder-new + rotate: false + xy: 393, 382 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-folder-parent + rotate: false + xy: 227, 64 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-folder-star + rotate: false + xy: 227, 88 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-left + rotate: false + xy: 203, 61 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-pencil + rotate: false + xy: 294, 277 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +icon-rect + rotate: false + xy: 297, 299 + size: 20, 20 + orig: 20, 20 + offset: 0, 0 + index: -1 +icon-refresh + rotate: false + xy: 441, 382 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-right + rotate: false + xy: 203, 85 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-settings + rotate: false + xy: 465, 382 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-star + rotate: false + xy: 227, 136 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-star-outline + rotate: false + xy: 227, 112 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +icon-trash + rotate: false + xy: 417, 382 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 268, 97 + size: 13, 69 + split: 1, 1, 3, 3 + pad: -1, -1, 3, 3 + orig: 13, 69 + offset: 0, 0 + index: -1 +menu + rotate: false + xy: 257, 397 + size: 105, 7 + split: 5, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 105, 7 + offset: 0, 0 + index: -1 +menu-bar + rotate: false + xy: 316, 273 + size: 7, 24 + split: 1, 1, 3, 2 + pad: 1, 1, 0, 0 + orig: 7, 24 + offset: 0, 0 + index: -1 +menu-button-over + rotate: false + xy: 316, 273 + size: 7, 24 + split: 1, 1, 3, 2 + pad: 3, 3, 0, 0 + orig: 7, 24 + offset: 0, 0 + index: -1 +menu-button + rotate: false + xy: 339, 283 + size: 7, 24 + split: 1, 1, 3, 1 + pad: 3, 3, 0, 0 + orig: 7, 24 + offset: 0, 0 + index: -1 +menu-button-down + rotate: false + xy: 316, 247 + size: 7, 24 + split: 1, 1, 3, 1 + pad: 3, 3, 0, 0 + orig: 7, 24 + offset: 0, 0 + index: -1 +panel + rotate: false + xy: 219, 199 + size: 43, 43 + split: 4, 3, 1, 1 + pad: 1, 1, 1, 1 + orig: 43, 43 + offset: 0, 0 + index: -1 +panel2 + rotate: false + xy: 325, 39 + size: 12, 264 + split: 1, 1, 0, 8 + pad: 1, 1, 2, 2 + orig: 12, 264 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 323, 379 + size: 29, 16 + split: 6, 6, 0, 0 + pad: 3, 3, 0, 0 + orig: 29, 16 + offset: 0, 0 + index: -1 +progress-bar-knob-horizontal + rotate: false + xy: 248, 160 + size: 1, 10 + orig: 1, 10 + offset: 0, 0 + index: -1 +progress-bar-knob-vertical + rotate: false + xy: 257, 372 + size: 10, 1 + orig: 10, 1 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 254, 168 + size: 16, 29 + split: 0, 0, 7, 6 + pad: 0, 0, 3, 3 + orig: 16, 29 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 199, 27 + size: 18, 14 + orig: 18, 14 + offset: 0, 0 + index: -1 +radio-checked + rotate: false + xy: 489, 373 + size: 18, 14 + orig: 18, 14 + offset: 0, 0 + index: -1 +radio-checked-pressed + rotate: false + xy: 190, 11 + size: 18, 14 + orig: 18, 14 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 319, 305 + size: 18, 14 + orig: 18, 14 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 155, 29 + size: 42, 22 + split: 7, 7, 0, 0 + pad: 0, 0, 0, 0 + orig: 42, 22 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 203, 109 + size: 22, 42 + split: 0, 0, 7, 7 + pad: 0, 0, 0, 0 + orig: 22, 42 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 257, 375 + size: 64, 20 + split: 3, 33, 3, 3 + pad: 5, 35, 1, 1 + orig: 64, 20 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 1, 29 + size: 64, 20 + split: 3, 33, 3, 3 + pad: 5, 35, 1, 1 + orig: 64, 20 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 306, 210 + size: 17, 21 + split: 10, 0, 0, 0 + pad: 16, 0, 0, 0 + orig: 17, 21 + offset: 0, 0 + index: -1 +slider-knob-horizontal + rotate: false + xy: 251, 146 + size: 15, 20 + orig: 15, 20 + offset: 0, 0 + index: -1 +slider-knob-pressed-horizontal + rotate: false + xy: 251, 124 + size: 15, 20 + orig: 15, 20 + offset: 0, 0 + index: -1 +slider-knob-pressed-vertical + rotate: false + xy: 489, 389 + size: 20, 15 + orig: 20, 15 + offset: 0, 0 + index: -1 +slider-knob-vertical + rotate: false + xy: 275, 304 + size: 20, 15 + orig: 20, 15 + offset: 0, 0 + index: -1 +spinner-down + rotate: false + xy: 30, 5 + size: 27, 10 + orig: 27, 10 + offset: 0, 0 + index: -1 +spinner-up + rotate: false + xy: 364, 394 + size: 27, 10 + orig: 27, 10 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 264, 199 + size: 2, 1 + orig: 2, 1 + offset: 0, 0 + index: -1 +splitpane-horizontal-pressed + rotate: false + xy: 269, 372 + size: 2, 1 + orig: 2, 1 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 251, 168 + size: 1, 2 + orig: 1, 2 + offset: 0, 0 + index: -1 +splitpane-vertical-pressed + rotate: false + xy: 294, 300 + size: 1, 2 + orig: 1, 2 + offset: 0, 0 + index: -1 +tab + rotate: false + xy: 219, 277 + size: 51, 31 + split: 1, 1, 4, 0 + pad: 5, 5, 3, 3 + orig: 51, 31 + offset: 0, 0 + index: -1 +tab-pressed + rotate: false + xy: 219, 244 + size: 51, 31 + split: 1, 1, 4, 0 + pad: 5, 5, 3, 3 + orig: 51, 31 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 272, 282 + size: 20, 20 + split: 3, 3, 4, 3 + orig: 20, 20 + offset: 0, 0 + index: -1 +textfield-pressed + rotate: false + xy: 272, 260 + size: 20, 20 + split: 3, 3, 4, 3 + orig: 20, 20 + offset: 0, 0 + index: -1 +title-bg + rotate: false + xy: 103, 1 + size: 50, 50 + split: 0, 0, 2, 2 + pad: 2, 2, 3, 3 + orig: 50, 50 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 51 + size: 100, 100 + orig: 100, 100 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 67, 15 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 251, 106 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 306, 193 + size: 16, 15 + orig: 16, 15 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 272, 307 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 219, 310 + size: 54, 60 + split: 5, 5, 33, 4 + pad: 2, 2, 33, 4 + orig: 54, 60 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.json b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.json new file mode 100644 index 0000000..507a019 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.json @@ -0,0 +1,514 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + clear: { + r: 1 + g: 1 + b: 1 + a: 0 + } + color-picker-bg: { + r: 0 + g: 0 + b: 0 + a: 0.73333323 + } + gray: { + r: 0.5 + g: 0.5 + b: 0.5 + a: 1 + } + light-gray: { + r: 0.86 + g: 0.86 + b: 0.86 + a: 1 + } + link: { + r: 0.53039217 + g: 1 + b: 0.97936153 + a: 1 + } + red: { + r: 1 + g: 0 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + black: { + name: white + color: black + } + gray: { + name: white + color: gray + } + test: { + name: textfield-pressed + color: red + } + color-picker-bg: { + name: white + color: color-picker-bg + } + clear: { + name: white + color: clear + } + link-underline: { + name: white + color: link + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-checked + checkboxOff: checkbox + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + menuitem-shortcut: { + font: font + } + small: { + font: font + } + title: { + font: title + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: light-gray + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-horizontal + knobBefore: progress-bar-knob-horizontal + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-knob-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } + list: { + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } + select-box: { + background: list + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box + scrollStyle: select-box + listStyle: default + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobDown: slider-knob-pressed-horizontal + background: progress-bar-horizontal + knob: slider-knob-horizontal + knobBefore: progress-bar-knob-horizontal + } + default-vertical: { + knobDown: slider-knob-pressed-vertical + background: progress-bar-vertical + knob: slider-knob-vertical + knobBefore: progress-bar-knob-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: white + focusedFontColor: black + background: textfield + focusedBackground: textfield-pressed + cursor: black + selection: gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: button + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: tree-plus + minus: tree-minus + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + } +} +com.kotcrab.vis.ui.Sizes: { + default: { + scaleFactor: 1 + spacingBottom: 8 + spacingRight: 6 + buttonBarSpacing: 10 + menuItemIconSize: 22 + borderSize: 1 + spinnerButtonHeight: 12 + spinnerFieldSize: 50 + fileChooserViewModeBigIconsSize: 200 + fileChooserViewModeMediumIconsSize: 128 + fileChooserViewModeSmallIconsSize: 64 + fileChooserViewModeListWidthSize: 150 + } +} +com.kotcrab.vis.ui.widget.VisTextField$VisTextFieldStyle: { + default: { + font: font + fontColor: white + selection: gray + background: textfield + cursor: black + focusedFontColor: black + focusedBackground: textfield-pressed + } +} +com.kotcrab.vis.ui.widget.VisTextButton$VisTextButtonStyle: { + default: { + down: button-pressed + up: button + font: font + fontColor: white + downFontColor: light-gray + } + menu: { + down: menu-button-down + up: menu-button + over: menu-button-down + font: font + fontColor: white + downFontColor: light-gray + } + toggle: { + down: button-pressed + up: button + font: font + fontColor: white + checked: button-pressed + downFontColor: light-gray + } + tab: { + down: tab-pressed + up: tab-pressed + font: font + fontColor: white + checked: tab + } +} +com.kotcrab.vis.ui.widget.VisImageButton$VisImageButtonStyle: { + default: { + down: button-pressed + up: button + } + close-window: { + down: button-pressed + over: button + imageUp: icon-close + } + arrow-1: { + down: button-pressed + up: button + checked: button-pressed + imageUp: icon-arrow-1 + } + arrow-2: { + down: button-pressed + up: button + checked: button-pressed + imageUp: icon-arrow-2 + } + rect: { + down: button-pressed + up: button + checked: button-pressed + imageUp: icon-rect + } + pencil: { + down: button-pressed + up: button + checked: button-pressed + imageUp: icon-pencil + } + brush: { + down: button-pressed + up: button + checked: button-pressed + imageUp: icon-brush + } + close-active-tab: { + down: button-pressed + over: button + imageUp: icon-close + } + close: { + down: button-pressed + over: button + imageUp: icon-close + } +} +com.kotcrab.vis.ui.widget.VisImageTextButton$VisImageTextButtonStyle: { + default: { + down: button-pressed + up: button + font: font + fontColor: white + downFontColor: light-gray + } +} +com.kotcrab.vis.ui.widget.VisCheckBox$VisCheckBoxStyle: { + default: { + checkBackground: checkbox + checkBackgroundOver: checkbox + checkBackgroundDown: checkbox-pressed + tick: check + font: font + } + radio: { + checkBackground: radio + checkBackgroundOver: radio + checkBackgroundDown: radio-pressed + tick: check-radio + font: font + } +} +com.kotcrab.vis.ui.widget.PopupMenu$PopupMenuStyle: { + default: { + background: button + } +} +com.kotcrab.vis.ui.widget.Menu$MenuStyle: { + default: { + background: button + openButtonStyle: menu + } +} +com.kotcrab.vis.ui.widget.MenuBar$MenuBarStyle: { + default: { + background: menu-bar + } +} +com.kotcrab.vis.ui.widget.Separator$SeparatorStyle: { + default: { + background: splitpane-vertical-pressed + thickness: 4 + } + menu: { + background: black + thickness: 1 + } +} +com.kotcrab.vis.ui.widget.VisSplitPane$VisSplitPaneStyle: { + default: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + handleOver: splitpane-vertical-pressed + } + default-horizontal: { + handle: splitpane-horizontal + handleOver: splitpane-horizontal-pressed + } +} +com.kotcrab.vis.ui.widget.MultiSplitPane$MultiSplitPaneStyle: { + default: {} + default-horizontal: { + handle: splitpane-horizontal + handleOver: splitpane-horizontal-pressed + } + default-vertical: { + handle: splitpane-vertical + handleOver: splitpane-vertical-pressed + } +} +com.kotcrab.vis.ui.widget.MenuItem$MenuItemStyle: { + default: { + subMenu: icon-right + down: menu-button-down + up: menu-button + over: menu-button-over + font: font + fontColor: white + } +} +com.kotcrab.vis.ui.widget.Tooltip$TooltipStyle: { + default: { + background: list + } +} +com.kotcrab.vis.ui.widget.LinkLabel$LinkLabelStyle: { + default: { + fontColor: link + underline: link-underline + font: font + } +} +com.kotcrab.vis.ui.widget.tabbedpane.TabbedPane$TabbedPaneStyle: { + default: { + buttonStyle: tab + vertical: false + draggable: false + } +} +com.kotcrab.vis.ui.widget.spinner.Spinner$SpinnerStyle: { + default: { + down: spinner-down + up: spinner-up + } +} +com.kotcrab.vis.ui.widget.file.FileChooserStyle: { + default: { + highlight: gray + popupMenuStyle: default + iconArrowLeft: icon-left + iconArrowRight: icon-right + iconFolder: icon-folder + iconFolderParent: icon-folder-parent + iconFolderNew: icon-folder-new + iconDrive: icon-drive + iconFolderStar: icon-folder-star + iconTrash: icon-trash + iconStar: icon-star + iconStarOutline: icon-star-outline + iconRefresh: icon-refresh + iconFileText: icon-file-text + iconFileImage: icon-file-image + iconFilePdf: icon-file-pdf + iconFileAudio: icon-file-audio + iconListSettings: icon-settings + contextMenuSelectedItem: check-radio + expandDropdown: expand-drop-down + } +} +com.kotcrab.vis.ui.widget.color.ColorPickerWidgetStyle: { + default: { + barSelector: bar-selector + cross: bar-selector + iconArrowRight: icon-right + verticalSelector: clear + horizontalSelector: clear + } +} +com.kotcrab.vis.ui.widget.color.ColorPickerStyle: { + default: { + titleFont: font + background: window + titleFontColor: white + pickerStyle: default + stageBackground: color-picker-bg + } +} +com.kotcrab.vis.ui.widget.BusyBar$BusyBarStyle: { + default: { + height: 5 + segment: splitpane-vertical + segmentWidth: 150 + segmentOverflow: 10 + } +} +com.kotcrab.vis.ui.widget.ListViewStyle: { + default: { + scrollPaneStyle: default + } +} +com.kotcrab.vis.ui.util.form.SimpleFormValidator$FormValidatorStyle: { + default: { + errorLabelColor: red + validLabelColor: black + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.png b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.png new file mode 100644 index 0000000..d22dc5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/neutralizer/skin/neutralizer-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/README.md b/src/main/resources/omni_power/gdx-skins/number-cruncher/README.md new file mode 100644 index 0000000..abe066c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/README.md @@ -0,0 +1,22 @@ +# Number Cruncher UI + +``` +Number Cruncher UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2016 Raymond Buckley + +Number Cruncher UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of some **Scene2D** widgets. Perfect skin for your typical school assignment. + +![Number Cruncher](preview.png) + + +You can find an example project [here](https://ray3k.wordpress.com/number-cruncher-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=22887). diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/preview.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/preview.png new file mode 100644 index 0000000..030bbc5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/bg.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/bg.9.png new file mode 100644 index 0000000..3954920 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/bg.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/bg.png new file mode 100644 index 0000000..1c76edb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large-pressed.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large-pressed.9.png new file mode 100644 index 0000000..c90ae95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large-pressed.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large-pressed.png new file mode 100644 index 0000000..c9435df Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large.9.png new file mode 100644 index 0000000..678193b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large.png new file mode 100644 index 0000000..b9839ec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-large.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-pressed.9.png new file mode 100644 index 0000000..86075a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-pressed.png new file mode 100644 index 0000000..1dacfe6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button.9.png new file mode 100644 index 0000000..b26ed8a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button.png new file mode 100644 index 0000000..1275a26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button-export.fnt new file mode 100644 index 0000000..05085cd --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=46 base=46 scaleW=277 scaleH=277 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=268 y=158 width=7 height=35 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter="!" +char id=34 x=41 y=60 width=16 height=13 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=69 y=181 width=28 height=35 xoffset=0 yoffset=12 xadvance=31 page=0 chnl=0 letter="#" +char id=36 x=125 y=130 width=25 height=43 xoffset=0 yoffset=8 xadvance=28 page=0 chnl=0 letter="$" +char id=37 x=0 y=35 width=40 height=38 xoffset=0 yoffset=10 xadvance=43 page=0 chnl=0 letter="%" +char id=38 x=70 y=146 width=27 height=34 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0 letter="&" +char id=39 x=171 y=262 width=9 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="'" +char id=40 x=259 y=213 width=8 height=54 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=259 y=158 width=8 height=54 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter=")" +char id=42 x=77 y=256 width=14 height=13 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="*" +char id=43 x=100 y=70 width=24 height=23 xoffset=0 yoffset=23 xadvance=27 page=0 chnl=0 letter="+" +char id=44 x=58 y=60 width=9 height=12 xoffset=0 yoffset=40 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=0 y=269 width=16 height=5 xoffset=0 yoffset=32 xadvance=19 page=0 chnl=0 letter="-" +char id=46 x=239 y=151 width=6 height=6 xoffset=0 yoffset=41 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=177 y=0 width=23 height=54 xoffset=0 yoffset=2 xadvance=26 page=0 chnl=0 letter="/" +char id=48 x=201 y=31 width=22 height=31 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="0" +char id=49 x=259 y=99 width=10 height=29 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="1" +char id=50 x=201 y=0 width=22 height=30 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="2" +char id=51 x=201 y=127 width=22 height=30 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="3" +char id=52 x=223 y=189 width=21 height=29 xoffset=0 yoffset=17 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=200 y=197 width=22 height=30 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="5" +char id=54 x=223 y=63 width=22 height=31 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="6" +char id=55 x=223 y=158 width=22 height=30 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="7" +char id=56 x=223 y=219 width=20 height=31 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="8" +char id=57 x=223 y=95 width=22 height=31 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="9" +char id=58 x=239 y=127 width=6 height=23 xoffset=0 yoffset=24 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=259 y=129 width=9 height=28 xoffset=0 yoffset=24 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=151 y=170 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="<" +char id=61 x=34 y=257 width=24 height=15 xoffset=0 yoffset=27 xadvance=27 page=0 chnl=0 letter="=" +char id=62 x=151 y=196 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter=">" +char id=63 x=177 y=55 width=23 height=36 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=0 letter="?" +char id=64 x=37 y=111 width=33 height=34 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="@" +char id=65 x=35 y=185 width=33 height=34 xoffset=0 yoffset=12 xadvance=36 page=0 chnl=0 letter="A" +char id=66 x=100 y=35 width=25 height=34 xoffset=0 yoffset=12 xadvance=28 page=0 chnl=0 letter="B" +char id=67 x=34 y=220 width=33 height=36 xoffset=0 yoffset=11 xadvance=36 page=0 chnl=0 letter="C" +char id=68 x=71 y=99 width=27 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="D" +char id=69 x=151 y=135 width=24 height=34 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="E" +char id=70 x=151 y=222 width=24 height=34 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="F" +char id=71 x=0 y=148 width=36 height=36 xoffset=0 yoffset=11 xadvance=39 page=0 chnl=0 letter="G" +char id=72 x=98 y=204 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="H" +char id=73 x=271 y=0 width=5 height=34 xoffset=0 yoffset=12 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=224 y=0 width=18 height=35 xoffset=0 yoffset=12 xadvance=21 page=0 chnl=0 letter="J" +char id=75 x=98 y=134 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="K" +char id=76 x=177 y=92 width=22 height=34 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=37 y=146 width=32 height=34 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="M" +char id=78 x=75 y=0 width=27 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="N" +char id=79 x=0 y=111 width=36 height=36 xoffset=0 yoffset=11 xadvance=39 page=0 chnl=0 letter="O" +char id=80 x=98 y=169 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="P" +char id=81 x=0 y=74 width=38 height=36 xoffset=0 yoffset=11 xadvance=41 page=0 chnl=0 letter="Q" +char id=82 x=98 y=239 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="R" +char id=83 x=151 y=98 width=25 height=36 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="S" +char id=84 x=99 y=95 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=68 y=220 width=29 height=35 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=0 letter="U" +char id=86 x=0 y=185 width=34 height=34 xoffset=0 yoffset=12 xadvance=37 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=43 height=34 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="W" +char id=88 x=72 y=60 width=27 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="X" +char id=89 x=44 y=0 width=30 height=34 xoffset=0 yoffset=12 xadvance=33 page=0 chnl=0 letter="Y" +char id=90 x=176 y=227 width=23 height=34 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="Z" +char id=91 x=246 y=142 width=12 height=52 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="[" +char id=92 x=176 y=172 width=23 height=54 xoffset=0 yoffset=2 xadvance=26 page=0 chnl=0 letter="\" +char id=93 x=246 y=36 width=12 height=52 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="]" +char id=94 x=59 y=257 width=17 height=15 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="^" +char id=95 x=0 y=264 width=31 height=4 xoffset=0 yoffset=42 xadvance=34 page=0 chnl=0 letter="_" +char id=96 x=152 y=88 width=13 height=9 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="`" +char id=97 x=125 y=212 width=25 height=25 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="a" +char id=98 x=126 y=62 width=25 height=35 xoffset=0 yoffset=12 xadvance=28 page=0 chnl=0 letter="b" +char id=99 x=129 y=0 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="c" +char id=100 x=126 y=26 width=25 height=35 xoffset=0 yoffset=12 xadvance=28 page=0 chnl=0 letter="d" +char id=101 x=126 y=98 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="e" +char id=102 x=243 y=0 width=14 height=35 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="f" +char id=103 x=125 y=174 width=25 height=37 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="g" +char id=104 x=200 y=92 width=22 height=34 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="h" +char id=105 x=268 y=194 width=6 height=33 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter="i" +char id=106 x=259 y=0 width=11 height=45 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="j" +char id=107 x=200 y=228 width=22 height=34 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="k" +char id=108 x=268 y=228 width=5 height=34 xoffset=0 yoffset=12 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=39 y=74 width=32 height=24 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="m" +char id=110 x=200 y=172 width=22 height=24 xoffset=0 yoffset=22 xadvance=25 page=0 chnl=0 letter="n" +char id=111 x=103 y=0 width=25 height=25 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="o" +char id=112 x=152 y=26 width=24 height=36 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="p" +char id=113 x=176 y=135 width=24 height=36 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="q" +char id=114 x=224 y=127 width=14 height=24 xoffset=0 yoffset=22 xadvance=17 page=0 chnl=0 letter="r" +char id=115 x=201 y=63 width=21 height=25 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=244 y=219 width=14 height=35 xoffset=0 yoffset=12 xadvance=17 page=0 chnl=0 letter="t" +char id=117 x=154 y=0 width=22 height=25 xoffset=0 yoffset=22 xadvance=25 page=0 chnl=0 letter="u" +char id=118 x=73 y=35 width=25 height=24 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="v" +char id=119 x=41 y=35 width=31 height=24 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="w" +char id=120 x=152 y=63 width=24 height=24 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="x" +char id=121 x=125 y=238 width=25 height=37 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="y" +char id=122 x=223 y=251 width=19 height=24 xoffset=0 yoffset=22 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=259 y=46 width=11 height=52 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=270 y=99 width=5 height=52 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=246 y=89 width=12 height=52 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="}" +char id=126 x=0 y=220 width=33 height=9 xoffset=0 yoffset=29 xadvance=36 page=0 chnl=0 letter="~" +char id=8226 x=151 y=257 width=19 height=19 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0 letter="•" +char id=169 x=0 y=230 width=33 height=33 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=120 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button-export.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button-export.png new file mode 100644 index 0000000..8b249f8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button.png new file mode 100644 index 0000000..586be80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-export.fnt new file mode 100644 index 0000000..bea62ab --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=109 scaleH=109 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=101 y=14 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=21 y=104 width=5 height=4 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=38 y=81 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=50 y=16 width=9 height=17 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=14 y=89 width=12 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="%" +char id=38 x=15 y=13 width=12 height=12 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=74 y=41 width=3 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=100 y=68 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=100 y=34 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=28 y=81 width=6 height=6 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=59 y=74 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=70 y=41 width=3 height=4 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=69 y=106 width=6 height=2 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=100 y=85 width=3 height=3 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=88 y=14 width=7 height=15 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=59 y=84 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=95 y=76 width=4 height=12 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=70 y=14 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=60 y=24 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=27 y=89 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=50 y=34 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=69 y=91 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=79 y=28 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=70 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=60 y=37 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=103 y=89 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=93 y=96 width=4 height=11 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=59 y=97 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=15 y=53 width=9 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=60 y=0 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=88 y=0 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=13 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=15 y=26 width=12 height=12 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=69 y=50 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="B" +char id=67 x=0 y=89 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=15 y=39 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=79 y=55 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=87 y=82 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=14 y=75 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="G" +char id=72 x=69 y=77 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=105 y=31 width=2 height=12 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=98 y=89 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=69 y=64 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=88 y=30 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=0 y=38 width=14 height=12 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=28 y=0 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=14 y=61 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=79 y=41 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=75 width=13 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="Q" +char id=82 x=60 y=10 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=70 y=28 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=80 y=0 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=28 y=25 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=27 y=39 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=12 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=59 y=60 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=50 y=47 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=79 y=82 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=100 y=51 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=50 y=0 width=9 height=15 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=96 y=0 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=28 y=14 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=103 width=10 height=2 xoffset=0 yoffset=15 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=33 y=103 width=4 height=4 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=39 y=53 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="a" +char id=98 x=39 y=25 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=39 y=14 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=39 y=39 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=38 y=95 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=88 y=58 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=39 y=0 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=79 y=14 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=101 y=0 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=96 y=17 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=79 y=68 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=105 y=0 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=51 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=49 y=74 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=16 y=0 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="o" +char id=112 x=28 y=67 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=28 y=53 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=79 y=96 width=6 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=86 y=96 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=88 y=44 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=49 y=64 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=49 y=85 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=27 width=14 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=49 y=95 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=39 y=64 width=9 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=60 y=50 width=8 height=9 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=94 y=44 width=5 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=105 y=14 width=3 height=16 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=94 y=60 width=5 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=11 y=104 width=9 height=3 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=27 y=103 width=5 height=5 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=61 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-export.png new file mode 100644 index 0000000..cbe5af7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd-export.fnt new file mode 100644 index 0000000..0e7a8a4 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd-export.fnt @@ -0,0 +1,104 @@ +info face="font-lcd-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=48 base=48 scaleW=329 scaleH=329 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-lcd-export.png" +chars count=98 +char id=33 x=313 y=56 width=7 height=46 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=43 y=140 width=16 height=17 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=0 y=207 width=36 height=46 xoffset=0 yoffset=2 xadvance=38 page=0 chnl=0 letter="#" +char id=36 x=35 y=268 width=28 height=48 xoffset=0 yoffset=-2 xadvance=30 page=0 chnl=0 letter="$" +char id=37 x=0 y=110 width=42 height=48 xoffset=0 yoffset=1 xadvance=44 page=0 chnl=0 letter="%" +char id=38 x=0 y=159 width=37 height=47 xoffset=0 yoffset=1 xadvance=39 page=0 chnl=0 letter="&" +char id=39 x=70 y=118 width=7 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="'" +char id=40 x=293 y=110 width=17 height=66 xoffset=0 yoffset=-5 xadvance=19 page=0 chnl=0 letter="(" +char id=41 x=311 y=110 width=17 height=66 xoffset=0 yoffset=-5 xadvance=19 page=0 chnl=0 letter=")" +char id=42 x=0 y=268 width=34 height=47 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0 letter="*" +char id=43 x=133 y=283 width=20 height=40 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="+" +char id=44 x=37 y=256 width=11 height=9 xoffset=0 yoffset=37 xadvance=13 page=0 chnl=0 letter="," +char id=45 x=0 y=322 width=23 height=6 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="-" +char id=46 x=45 y=317 width=7 height=6 xoffset=0 yoffset=42 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=53 y=0 width=25 height=50 xoffset=0 yoffset=2 xadvance=27 page=0 chnl=0 letter="/" +char id=48 x=249 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=306 y=0 width=4 height=46 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=248 y=235 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="2" +char id=51 x=250 y=47 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="3" +char id=52 x=225 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=217 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=179 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=272 y=141 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="7" +char id=56 x=181 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="8" +char id=57 x=227 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="9" +char id=58 x=88 y=244 width=7 height=33 xoffset=0 yoffset=15 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=125 y=48 width=9 height=41 xoffset=0 yoffset=15 xadvance=11 page=0 chnl=0 letter=";" +char id=60 x=43 y=110 width=26 height=29 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="<" +char id=61 x=37 y=237 width=27 height=18 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 letter="=" +char id=62 x=37 y=207 width=27 height=29 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 letter=">" +char id=63 x=38 y=159 width=27 height=47 xoffset=0 yoffset=1 xadvance=29 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=52 height=60 xoffset=0 yoffset=2 xadvance=54 page=0 chnl=0 letter="@" +char id=65 x=248 y=188 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="A" +char id=66 x=240 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="B" +char id=67 x=271 y=235 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=227 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="D" +char id=69 x=285 y=0 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="E" +char id=70 x=272 y=94 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="F" +char id=71 x=226 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="G" +char id=72 x=148 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="H" +char id=73 x=321 y=0 width=4 height=46 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=204 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="J" +char id=75 x=225 y=188 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="K" +char id=76 x=204 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="L" +char id=77 x=203 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="M" +char id=78 x=202 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="N" +char id=79 x=202 y=189 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=194 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="P" +char id=81 x=156 y=235 width=22 height=56 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="Q" +char id=82 x=181 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="R" +char id=83 x=180 y=142 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="S" +char id=84 x=250 y=94 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="T" +char id=85 x=179 y=189 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="U" +char id=86 x=158 y=95 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="V" +char id=87 x=171 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="W" +char id=88 x=158 y=47 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="X" +char id=89 x=157 y=142 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="Y" +char id=90 x=263 y=0 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="Z" +char id=91 x=313 y=177 width=13 height=62 xoffset=0 yoffset=-4 xadvance=15 page=0 chnl=0 letter="[" +char id=92 x=53 y=51 width=25 height=50 xoffset=0 yoffset=2 xadvance=27 page=0 chnl=0 letter="\" +char id=93 x=313 y=240 width=13 height=62 xoffset=0 yoffset=-4 xadvance=15 page=0 chnl=0 letter="]" +char id=94 x=64 y=256 width=23 height=23 xoffset=0 yoffset=2 xadvance=25 page=0 chnl=0 letter="^" +char id=95 x=0 y=316 width=29 height=5 xoffset=0 yoffset=48 xadvance=31 page=0 chnl=0 letter="_" +char id=96 x=30 y=317 width=14 height=9 xoffset=0 yoffset=-2 xadvance=16 page=0 chnl=0 letter="`" +char id=97 x=112 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="a" +char id=98 x=112 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="b" +char id=99 x=292 y=188 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=110 y=244 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="d" +char id=101 x=271 y=188 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=272 y=47 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="f" +char id=103 x=134 y=188 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="g" +char id=104 x=89 y=95 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="h" +char id=105 x=47 y=61 width=4 height=46 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=87 y=280 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="j" +char id=107 x=79 y=47 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="k" +char id=108 x=79 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="l" +char id=109 x=65 y=207 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="m" +char id=110 x=135 y=95 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=135 y=48 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="o" +char id=112 x=89 y=142 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="p" +char id=113 x=66 y=140 width=22 height=56 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="q" +char id=114 x=64 y=280 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="r" +char id=115 x=88 y=197 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=248 y=282 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="t" +char id=117 x=102 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="u" +char id=118 x=102 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="v" +char id=119 x=111 y=189 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="w" +char id=120 x=125 y=0 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="x" +char id=121 x=133 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="y" +char id=122 x=270 y=282 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="z" +char id=123 x=293 y=47 width=19 height=62 xoffset=0 yoffset=-2 xadvance=21 page=0 chnl=0 letter="{" +char id=124 x=313 y=0 width=7 height=55 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=292 y=235 width=20 height=62 xoffset=0 yoffset=-2 xadvance=22 page=0 chnl=0 letter="}" +char id=126 x=0 y=254 width=36 height=13 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="~" +char id=8226 x=70 y=102 width=14 height=15 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="•" +char id=169 x=0 y=61 width=46 height=48 xoffset=0 yoffset=1 xadvance=48 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=136 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd-export.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd-export.png new file mode 100644 index 0000000..368ed58 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd.png new file mode 100644 index 0000000..c584471 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-lcd.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title-export.fnt new file mode 100644 index 0000000..4a9d939 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=26 base=26 scaleW=169 scaleH=172 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=164 y=27 width=3 height=20 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=51 y=162 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=132 y=111 width=13 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="#" +char id=36 x=116 y=84 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="$" +char id=37 x=0 y=105 width=23 height=22 xoffset=0 yoffset=5 xadvance=25 page=0 chnl=0 letter="%" +char id=38 x=22 y=145 width=20 height=21 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="&" +char id=39 x=57 y=23 width=3 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=153 y=94 width=6 height=26 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=157 y=142 width=6 height=26 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=81 y=158 width=13 height=13 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="*" +char id=43 x=45 y=23 width=11 height=10 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="+" +char id=44 x=58 y=162 width=3 height=5 xoffset=0 yoffset=23 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=25 y=57 width=12 height=2 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="-" +char id=46 x=58 y=168 width=4 height=3 xoffset=0 yoffset=23 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=147 y=0 width=11 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="/" +char id=48 x=43 y=144 width=18 height=17 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="0" +char id=49 x=145 y=155 width=4 height=16 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=83 y=43 width=16 height=16 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=116 y=43 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="3" +char id=52 x=99 y=102 width=16 height=16 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=98 y=140 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=115 y=136 width=16 height=19 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=99 y=22 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=99 y=119 width=16 height=16 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="8" +char id=57 x=99 y=60 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=147 y=94 width=3 height=16 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=158 y=50 width=4 height=18 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=116 y=124 width=10 height=11 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=64 y=67 width=12 height=8 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="=" +char id=62 x=95 y=160 width=10 height=11 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter=">" +char id=63 x=132 y=17 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=24 y=82 width=19 height=18 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="@" +char id=65 x=81 y=118 width=17 height=21 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=44 y=103 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="B" +char id=67 x=25 y=34 width=18 height=22 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="C" +char id=68 x=24 y=61 width=20 height=20 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="D" +char id=69 x=116 y=63 width=15 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=132 y=38 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=63 y=23 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=45 y=55 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="H" +char id=73 x=146 y=111 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=147 y=70 width=8 height=23 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=45 y=0 width=18 height=22 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=99 y=80 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=17 width=24 height=21 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="M" +char id=78 x=82 y=0 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="N" +char id=79 x=0 y=84 width=23 height=20 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="O" +char id=80 x=62 y=147 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="P" +char id=81 x=0 y=61 width=23 height=22 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="Q" +char id=82 x=24 y=123 width=19 height=20 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="R" +char id=83 x=82 y=88 width=16 height=21 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=82 y=22 width=16 height=20 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=24 y=101 width=19 height=21 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="U" +char id=86 x=99 y=0 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=39 width=24 height=21 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="W" +char id=88 x=64 y=45 width=18 height=21 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="X" +char id=89 x=116 y=21 width=15 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="Y" +char id=90 x=0 y=145 width=21 height=20 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="Z" +char id=91 x=160 y=91 width=5 height=26 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=145 y=132 width=11 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=158 y=23 width=5 height=26 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=82 y=110 width=11 height=7 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=167 width=16 height=2 xoffset=0 yoffset=26 xadvance=18 page=0 chnl=0 letter="_" +char id=96 x=63 y=118 width=8 height=5 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="`" +char id=97 x=81 y=140 width=16 height=17 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="a" +char id=98 x=63 y=97 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="b" +char id=99 x=132 y=0 width=14 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="c" +char id=100 x=63 y=76 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="d" +char id=101 x=26 y=0 width=17 height=16 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="e" +char id=102 x=147 y=48 width=10 height=21 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=64 y=0 width=17 height=21 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="g" +char id=104 x=82 y=67 width=16 height=20 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="h" +char id=105 x=156 y=70 width=6 height=20 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="i" +char id=106 x=147 y=23 width=10 height=24 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=62 y=124 width=18 height=22 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="k" +char id=108 x=157 y=121 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=0 width=25 height=16 xoffset=0 yoffset=10 xadvance=27 page=0 chnl=0 letter="m" +char id=110 x=132 y=59 width=14 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="n" +char id=111 x=25 y=17 width=19 height=16 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="o" +char id=112 x=44 y=82 width=18 height=20 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="p" +char id=113 x=44 y=34 width=18 height=20 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="q" +char id=114 x=132 y=132 width=12 height=16 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="r" +char id=115 x=116 y=106 width=15 height=17 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="s" +char id=116 x=132 y=149 width=12 height=17 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="t" +char id=117 x=132 y=94 width=14 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="u" +char id=118 x=100 y=43 width=15 height=16 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=128 width=23 height=16 xoffset=0 yoffset=10 xadvance=25 page=0 chnl=0 letter="w" +char id=120 x=132 y=76 width=14 height=17 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="x" +char id=121 x=116 y=0 width=15 height=20 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=44 y=124 width=17 height=17 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="z" +char id=123 x=164 y=0 width=4 height=26 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=159 y=0 width=3 height=22 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=163 y=50 width=4 height=26 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=17 y=167 width=13 height=4 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="~" +char id=8226 x=43 y=162 width=7 height=7 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=115 y=156 width=15 height=14 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title-export.png new file mode 100644 index 0000000..c81cfc1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title.png new file mode 100644 index 0000000..7cff1a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font.png new file mode 100644 index 0000000..7403c9f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/lcd.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/lcd.9.png new file mode 100644 index 0000000..0708256 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/lcd.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/lcd.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/lcd.png new file mode 100644 index 0000000..1092109 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/lcd.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel-black.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel-black.9.png new file mode 100644 index 0000000..84298b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel-black.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel-black.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel-black.png new file mode 100644 index 0000000..401ddb2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel-black.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel.9.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel.9.png new file mode 100644 index 0000000..268421a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel.png new file mode 100644 index 0000000..d35deaa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/panel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/solar-panel.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/solar-panel.png new file mode 100644 index 0000000..cced942 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/raw/solar-panel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-button-export.fnt new file mode 100644 index 0000000..05085cd --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=46 base=46 scaleW=277 scaleH=277 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=268 y=158 width=7 height=35 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter="!" +char id=34 x=41 y=60 width=16 height=13 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter=""" +char id=35 x=69 y=181 width=28 height=35 xoffset=0 yoffset=12 xadvance=31 page=0 chnl=0 letter="#" +char id=36 x=125 y=130 width=25 height=43 xoffset=0 yoffset=8 xadvance=28 page=0 chnl=0 letter="$" +char id=37 x=0 y=35 width=40 height=38 xoffset=0 yoffset=10 xadvance=43 page=0 chnl=0 letter="%" +char id=38 x=70 y=146 width=27 height=34 xoffset=0 yoffset=13 xadvance=30 page=0 chnl=0 letter="&" +char id=39 x=171 y=262 width=9 height=13 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="'" +char id=40 x=259 y=213 width=8 height=54 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=259 y=158 width=8 height=54 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter=")" +char id=42 x=77 y=256 width=14 height=13 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="*" +char id=43 x=100 y=70 width=24 height=23 xoffset=0 yoffset=23 xadvance=27 page=0 chnl=0 letter="+" +char id=44 x=58 y=60 width=9 height=12 xoffset=0 yoffset=40 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=0 y=269 width=16 height=5 xoffset=0 yoffset=32 xadvance=19 page=0 chnl=0 letter="-" +char id=46 x=239 y=151 width=6 height=6 xoffset=0 yoffset=41 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=177 y=0 width=23 height=54 xoffset=0 yoffset=2 xadvance=26 page=0 chnl=0 letter="/" +char id=48 x=201 y=31 width=22 height=31 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="0" +char id=49 x=259 y=99 width=10 height=29 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="1" +char id=50 x=201 y=0 width=22 height=30 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="2" +char id=51 x=201 y=127 width=22 height=30 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="3" +char id=52 x=223 y=189 width=21 height=29 xoffset=0 yoffset=17 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=200 y=197 width=22 height=30 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="5" +char id=54 x=223 y=63 width=22 height=31 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="6" +char id=55 x=223 y=158 width=22 height=30 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="7" +char id=56 x=223 y=219 width=20 height=31 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 letter="8" +char id=57 x=223 y=95 width=22 height=31 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="9" +char id=58 x=239 y=127 width=6 height=23 xoffset=0 yoffset=24 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=259 y=129 width=9 height=28 xoffset=0 yoffset=24 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=151 y=170 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="<" +char id=61 x=34 y=257 width=24 height=15 xoffset=0 yoffset=27 xadvance=27 page=0 chnl=0 letter="=" +char id=62 x=151 y=196 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter=">" +char id=63 x=177 y=55 width=23 height=36 xoffset=0 yoffset=11 xadvance=26 page=0 chnl=0 letter="?" +char id=64 x=37 y=111 width=33 height=34 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="@" +char id=65 x=35 y=185 width=33 height=34 xoffset=0 yoffset=12 xadvance=36 page=0 chnl=0 letter="A" +char id=66 x=100 y=35 width=25 height=34 xoffset=0 yoffset=12 xadvance=28 page=0 chnl=0 letter="B" +char id=67 x=34 y=220 width=33 height=36 xoffset=0 yoffset=11 xadvance=36 page=0 chnl=0 letter="C" +char id=68 x=71 y=99 width=27 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="D" +char id=69 x=151 y=135 width=24 height=34 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="E" +char id=70 x=151 y=222 width=24 height=34 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="F" +char id=71 x=0 y=148 width=36 height=36 xoffset=0 yoffset=11 xadvance=39 page=0 chnl=0 letter="G" +char id=72 x=98 y=204 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="H" +char id=73 x=271 y=0 width=5 height=34 xoffset=0 yoffset=12 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=224 y=0 width=18 height=35 xoffset=0 yoffset=12 xadvance=21 page=0 chnl=0 letter="J" +char id=75 x=98 y=134 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="K" +char id=76 x=177 y=92 width=22 height=34 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=37 y=146 width=32 height=34 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="M" +char id=78 x=75 y=0 width=27 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="N" +char id=79 x=0 y=111 width=36 height=36 xoffset=0 yoffset=11 xadvance=39 page=0 chnl=0 letter="O" +char id=80 x=98 y=169 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="P" +char id=81 x=0 y=74 width=38 height=36 xoffset=0 yoffset=11 xadvance=41 page=0 chnl=0 letter="Q" +char id=82 x=98 y=239 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="R" +char id=83 x=151 y=98 width=25 height=36 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 letter="S" +char id=84 x=99 y=95 width=26 height=34 xoffset=0 yoffset=12 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=68 y=220 width=29 height=35 xoffset=0 yoffset=12 xadvance=32 page=0 chnl=0 letter="U" +char id=86 x=0 y=185 width=34 height=34 xoffset=0 yoffset=12 xadvance=37 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=43 height=34 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="W" +char id=88 x=72 y=60 width=27 height=34 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="X" +char id=89 x=44 y=0 width=30 height=34 xoffset=0 yoffset=12 xadvance=33 page=0 chnl=0 letter="Y" +char id=90 x=176 y=227 width=23 height=34 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="Z" +char id=91 x=246 y=142 width=12 height=52 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="[" +char id=92 x=176 y=172 width=23 height=54 xoffset=0 yoffset=2 xadvance=26 page=0 chnl=0 letter="\" +char id=93 x=246 y=36 width=12 height=52 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="]" +char id=94 x=59 y=257 width=17 height=15 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="^" +char id=95 x=0 y=264 width=31 height=4 xoffset=0 yoffset=42 xadvance=34 page=0 chnl=0 letter="_" +char id=96 x=152 y=88 width=13 height=9 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="`" +char id=97 x=125 y=212 width=25 height=25 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="a" +char id=98 x=126 y=62 width=25 height=35 xoffset=0 yoffset=12 xadvance=28 page=0 chnl=0 letter="b" +char id=99 x=129 y=0 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="c" +char id=100 x=126 y=26 width=25 height=35 xoffset=0 yoffset=12 xadvance=28 page=0 chnl=0 letter="d" +char id=101 x=126 y=98 width=24 height=25 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="e" +char id=102 x=243 y=0 width=14 height=35 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="f" +char id=103 x=125 y=174 width=25 height=37 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="g" +char id=104 x=200 y=92 width=22 height=34 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="h" +char id=105 x=268 y=194 width=6 height=33 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter="i" +char id=106 x=259 y=0 width=11 height=45 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="j" +char id=107 x=200 y=228 width=22 height=34 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="k" +char id=108 x=268 y=228 width=5 height=34 xoffset=0 yoffset=12 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=39 y=74 width=32 height=24 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="m" +char id=110 x=200 y=172 width=22 height=24 xoffset=0 yoffset=22 xadvance=25 page=0 chnl=0 letter="n" +char id=111 x=103 y=0 width=25 height=25 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="o" +char id=112 x=152 y=26 width=24 height=36 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="p" +char id=113 x=176 y=135 width=24 height=36 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="q" +char id=114 x=224 y=127 width=14 height=24 xoffset=0 yoffset=22 xadvance=17 page=0 chnl=0 letter="r" +char id=115 x=201 y=63 width=21 height=25 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=244 y=219 width=14 height=35 xoffset=0 yoffset=12 xadvance=17 page=0 chnl=0 letter="t" +char id=117 x=154 y=0 width=22 height=25 xoffset=0 yoffset=22 xadvance=25 page=0 chnl=0 letter="u" +char id=118 x=73 y=35 width=25 height=24 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="v" +char id=119 x=41 y=35 width=31 height=24 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="w" +char id=120 x=152 y=63 width=24 height=24 xoffset=0 yoffset=22 xadvance=27 page=0 chnl=0 letter="x" +char id=121 x=125 y=238 width=25 height=37 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="y" +char id=122 x=223 y=251 width=19 height=24 xoffset=0 yoffset=22 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=259 y=46 width=11 height=52 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=270 y=99 width=5 height=52 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="|" +char id=125 x=246 y=89 width=12 height=52 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="}" +char id=126 x=0 y=220 width=33 height=9 xoffset=0 yoffset=29 xadvance=36 page=0 chnl=0 letter="~" +char id=8226 x=151 y=257 width=19 height=19 xoffset=0 yoffset=20 xadvance=22 page=0 chnl=0 letter="•" +char id=169 x=0 y=230 width=33 height=33 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=15 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=120 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-export.fnt new file mode 100644 index 0000000..bea62ab --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=109 scaleH=109 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=101 y=14 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=21 y=104 width=5 height=4 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=38 y=81 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=50 y=16 width=9 height=17 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=14 y=89 width=12 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="%" +char id=38 x=15 y=13 width=12 height=12 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=74 y=41 width=3 height=4 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=100 y=68 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=100 y=34 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=28 y=81 width=6 height=6 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=59 y=74 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=70 y=41 width=3 height=4 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=69 y=106 width=6 height=2 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=100 y=85 width=3 height=3 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=88 y=14 width=7 height=15 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=59 y=84 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=95 y=76 width=4 height=12 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=70 y=14 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=60 y=24 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=27 y=89 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=50 y=34 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=69 y=91 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=79 y=28 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=70 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=60 y=37 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=103 y=89 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=93 y=96 width=4 height=11 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=59 y=97 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=15 y=53 width=9 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=60 y=0 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=88 y=0 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=13 width=14 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="@" +char id=65 x=15 y=26 width=12 height=12 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=69 y=50 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="B" +char id=67 x=0 y=89 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=15 y=39 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=79 y=55 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=87 y=82 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=14 y=75 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="G" +char id=72 x=69 y=77 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=105 y=31 width=2 height=12 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=98 y=89 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=69 y=64 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=88 y=30 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=0 y=38 width=14 height=12 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=28 y=0 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=14 y=61 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=79 y=41 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=75 width=13 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="Q" +char id=82 x=60 y=10 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=70 y=28 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=80 y=0 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=28 y=25 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=27 y=39 width=11 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=15 height=12 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=59 y=60 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=50 y=47 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=79 y=82 width=7 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=100 y=51 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=50 y=0 width=9 height=15 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=96 y=0 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=28 y=14 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=103 width=10 height=2 xoffset=0 yoffset=15 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=33 y=103 width=4 height=4 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=39 y=53 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="a" +char id=98 x=39 y=25 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=39 y=14 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=39 y=39 width=10 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=38 y=95 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=88 y=58 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=39 y=0 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=79 y=14 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=101 y=0 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=96 y=17 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=79 y=68 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=105 y=0 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=51 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=49 y=74 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=16 y=0 width=10 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="o" +char id=112 x=28 y=67 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=28 y=53 width=10 height=13 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=79 y=96 width=6 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=86 y=96 width=6 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=88 y=44 width=5 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=49 y=64 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=49 y=85 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=27 width=14 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=49 y=95 width=9 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=39 y=64 width=9 height=13 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=60 y=50 width=8 height=9 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=94 y=44 width=5 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=105 y=14 width=3 height=16 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=94 y=60 width=5 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=11 y=104 width=9 height=3 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=27 y=103 width=5 height=5 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=61 width=13 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-lcd-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-lcd-export.fnt new file mode 100644 index 0000000..0e7a8a4 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-lcd-export.fnt @@ -0,0 +1,104 @@ +info face="font-lcd-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=48 base=48 scaleW=329 scaleH=329 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-lcd-export.png" +chars count=98 +char id=33 x=313 y=56 width=7 height=46 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="!" +char id=34 x=43 y=140 width=16 height=17 xoffset=0 yoffset=2 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=0 y=207 width=36 height=46 xoffset=0 yoffset=2 xadvance=38 page=0 chnl=0 letter="#" +char id=36 x=35 y=268 width=28 height=48 xoffset=0 yoffset=-2 xadvance=30 page=0 chnl=0 letter="$" +char id=37 x=0 y=110 width=42 height=48 xoffset=0 yoffset=1 xadvance=44 page=0 chnl=0 letter="%" +char id=38 x=0 y=159 width=37 height=47 xoffset=0 yoffset=1 xadvance=39 page=0 chnl=0 letter="&" +char id=39 x=70 y=118 width=7 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="'" +char id=40 x=293 y=110 width=17 height=66 xoffset=0 yoffset=-5 xadvance=19 page=0 chnl=0 letter="(" +char id=41 x=311 y=110 width=17 height=66 xoffset=0 yoffset=-5 xadvance=19 page=0 chnl=0 letter=")" +char id=42 x=0 y=268 width=34 height=47 xoffset=0 yoffset=-1 xadvance=36 page=0 chnl=0 letter="*" +char id=43 x=133 y=283 width=20 height=40 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="+" +char id=44 x=37 y=256 width=11 height=9 xoffset=0 yoffset=37 xadvance=13 page=0 chnl=0 letter="," +char id=45 x=0 y=322 width=23 height=6 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="-" +char id=46 x=45 y=317 width=7 height=6 xoffset=0 yoffset=42 xadvance=9 page=0 chnl=0 letter="." +char id=47 x=53 y=0 width=25 height=50 xoffset=0 yoffset=2 xadvance=27 page=0 chnl=0 letter="/" +char id=48 x=249 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=306 y=0 width=4 height=46 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=248 y=235 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="2" +char id=51 x=250 y=47 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="3" +char id=52 x=225 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="4" +char id=53 x=217 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="5" +char id=54 x=179 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=272 y=141 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="7" +char id=56 x=181 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="8" +char id=57 x=227 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="9" +char id=58 x=88 y=244 width=7 height=33 xoffset=0 yoffset=15 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=125 y=48 width=9 height=41 xoffset=0 yoffset=15 xadvance=11 page=0 chnl=0 letter=";" +char id=60 x=43 y=110 width=26 height=29 xoffset=0 yoffset=16 xadvance=28 page=0 chnl=0 letter="<" +char id=61 x=37 y=237 width=27 height=18 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 letter="=" +char id=62 x=37 y=207 width=27 height=29 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 letter=">" +char id=63 x=38 y=159 width=27 height=47 xoffset=0 yoffset=1 xadvance=29 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=52 height=60 xoffset=0 yoffset=2 xadvance=54 page=0 chnl=0 letter="@" +char id=65 x=248 y=188 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="A" +char id=66 x=240 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="B" +char id=67 x=271 y=235 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=227 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="D" +char id=69 x=285 y=0 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="E" +char id=70 x=272 y=94 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="F" +char id=71 x=226 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="G" +char id=72 x=148 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="H" +char id=73 x=321 y=0 width=4 height=46 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=204 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="J" +char id=75 x=225 y=188 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="K" +char id=76 x=204 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="L" +char id=77 x=203 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="M" +char id=78 x=202 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="N" +char id=79 x=202 y=189 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="O" +char id=80 x=194 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="P" +char id=81 x=156 y=235 width=22 height=56 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="Q" +char id=82 x=181 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="R" +char id=83 x=180 y=142 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="S" +char id=84 x=250 y=94 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="T" +char id=85 x=179 y=189 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="U" +char id=86 x=158 y=95 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="V" +char id=87 x=171 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="W" +char id=88 x=158 y=47 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="X" +char id=89 x=157 y=142 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="Y" +char id=90 x=263 y=0 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="Z" +char id=91 x=313 y=177 width=13 height=62 xoffset=0 yoffset=-4 xadvance=15 page=0 chnl=0 letter="[" +char id=92 x=53 y=51 width=25 height=50 xoffset=0 yoffset=2 xadvance=27 page=0 chnl=0 letter="\" +char id=93 x=313 y=240 width=13 height=62 xoffset=0 yoffset=-4 xadvance=15 page=0 chnl=0 letter="]" +char id=94 x=64 y=256 width=23 height=23 xoffset=0 yoffset=2 xadvance=25 page=0 chnl=0 letter="^" +char id=95 x=0 y=316 width=29 height=5 xoffset=0 yoffset=48 xadvance=31 page=0 chnl=0 letter="_" +char id=96 x=30 y=317 width=14 height=9 xoffset=0 yoffset=-2 xadvance=16 page=0 chnl=0 letter="`" +char id=97 x=112 y=141 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="a" +char id=98 x=112 y=94 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="b" +char id=99 x=292 y=188 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=110 y=244 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="d" +char id=101 x=271 y=188 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=272 y=47 width=20 height=46 xoffset=0 yoffset=2 xadvance=22 page=0 chnl=0 letter="f" +char id=103 x=134 y=188 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="g" +char id=104 x=89 y=95 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="h" +char id=105 x=47 y=61 width=4 height=46 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=87 y=280 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="j" +char id=107 x=79 y=47 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="k" +char id=108 x=79 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="l" +char id=109 x=65 y=207 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="m" +char id=110 x=135 y=95 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=135 y=48 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="o" +char id=112 x=89 y=142 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="p" +char id=113 x=66 y=140 width=22 height=56 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="q" +char id=114 x=64 y=280 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="r" +char id=115 x=88 y=197 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=248 y=282 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="t" +char id=117 x=102 y=0 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="u" +char id=118 x=102 y=47 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="v" +char id=119 x=111 y=189 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="w" +char id=120 x=125 y=0 width=22 height=47 xoffset=0 yoffset=1 xadvance=24 page=0 chnl=0 letter="x" +char id=121 x=133 y=236 width=22 height=46 xoffset=0 yoffset=2 xadvance=24 page=0 chnl=0 letter="y" +char id=122 x=270 y=282 width=21 height=46 xoffset=0 yoffset=2 xadvance=23 page=0 chnl=0 letter="z" +char id=123 x=293 y=47 width=19 height=62 xoffset=0 yoffset=-2 xadvance=21 page=0 chnl=0 letter="{" +char id=124 x=313 y=0 width=7 height=55 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=292 y=235 width=20 height=62 xoffset=0 yoffset=-2 xadvance=22 page=0 chnl=0 letter="}" +char id=126 x=0 y=254 width=36 height=13 xoffset=0 yoffset=22 xadvance=38 page=0 chnl=0 letter="~" +char id=8226 x=70 y=102 width=14 height=15 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="•" +char id=169 x=0 y=61 width=46 height=48 xoffset=0 yoffset=1 xadvance=48 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=136 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-title-export.fnt new file mode 100644 index 0000000..4a9d939 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=26 base=26 scaleW=169 scaleH=172 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=164 y=27 width=3 height=20 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=51 y=162 width=6 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=132 y=111 width=13 height=20 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="#" +char id=36 x=116 y=84 width=15 height=21 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="$" +char id=37 x=0 y=105 width=23 height=22 xoffset=0 yoffset=5 xadvance=25 page=0 chnl=0 letter="%" +char id=38 x=22 y=145 width=20 height=21 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="&" +char id=39 x=57 y=23 width=3 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=153 y=94 width=6 height=26 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=157 y=142 width=6 height=26 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=81 y=158 width=13 height=13 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="*" +char id=43 x=45 y=23 width=11 height=10 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="+" +char id=44 x=58 y=162 width=3 height=5 xoffset=0 yoffset=23 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=25 y=57 width=12 height=2 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="-" +char id=46 x=58 y=168 width=4 height=3 xoffset=0 yoffset=23 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=147 y=0 width=11 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="/" +char id=48 x=43 y=144 width=18 height=17 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="0" +char id=49 x=145 y=155 width=4 height=16 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=83 y=43 width=16 height=16 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=116 y=43 width=15 height=19 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="3" +char id=52 x=99 y=102 width=16 height=16 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=98 y=140 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=115 y=136 width=16 height=19 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=99 y=22 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=99 y=119 width=16 height=16 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="8" +char id=57 x=99 y=60 width=16 height=19 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=147 y=94 width=3 height=16 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=158 y=50 width=4 height=18 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=116 y=124 width=10 height=11 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=64 y=67 width=12 height=8 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="=" +char id=62 x=95 y=160 width=10 height=11 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter=">" +char id=63 x=132 y=17 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=24 y=82 width=19 height=18 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="@" +char id=65 x=81 y=118 width=17 height=21 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=44 y=103 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="B" +char id=67 x=25 y=34 width=18 height=22 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="C" +char id=68 x=24 y=61 width=20 height=20 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="D" +char id=69 x=116 y=63 width=15 height=20 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=132 y=38 width=14 height=20 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=63 y=23 width=18 height=21 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=45 y=55 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="H" +char id=73 x=146 y=111 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=147 y=70 width=8 height=23 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=45 y=0 width=18 height=22 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=99 y=80 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=17 width=24 height=21 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="M" +char id=78 x=82 y=0 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="N" +char id=79 x=0 y=84 width=23 height=20 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="O" +char id=80 x=62 y=147 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="P" +char id=81 x=0 y=61 width=23 height=22 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="Q" +char id=82 x=24 y=123 width=19 height=20 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="R" +char id=83 x=82 y=88 width=16 height=21 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=82 y=22 width=16 height=20 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=24 y=101 width=19 height=21 xoffset=0 yoffset=6 xadvance=21 page=0 chnl=0 letter="U" +char id=86 x=99 y=0 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=39 width=24 height=21 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="W" +char id=88 x=64 y=45 width=18 height=21 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="X" +char id=89 x=116 y=21 width=15 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="Y" +char id=90 x=0 y=145 width=21 height=20 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="Z" +char id=91 x=160 y=91 width=5 height=26 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=145 y=132 width=11 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=158 y=23 width=5 height=26 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=82 y=110 width=11 height=7 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="^" +char id=95 x=0 y=167 width=16 height=2 xoffset=0 yoffset=26 xadvance=18 page=0 chnl=0 letter="_" +char id=96 x=63 y=118 width=8 height=5 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="`" +char id=97 x=81 y=140 width=16 height=17 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="a" +char id=98 x=63 y=97 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="b" +char id=99 x=132 y=0 width=14 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="c" +char id=100 x=63 y=76 width=18 height=20 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="d" +char id=101 x=26 y=0 width=17 height=16 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="e" +char id=102 x=147 y=48 width=10 height=21 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=64 y=0 width=17 height=21 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="g" +char id=104 x=82 y=67 width=16 height=20 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="h" +char id=105 x=156 y=70 width=6 height=20 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="i" +char id=106 x=147 y=23 width=10 height=24 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=62 y=124 width=18 height=22 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="k" +char id=108 x=157 y=121 width=6 height=20 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=0 width=25 height=16 xoffset=0 yoffset=10 xadvance=27 page=0 chnl=0 letter="m" +char id=110 x=132 y=59 width=14 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="n" +char id=111 x=25 y=17 width=19 height=16 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="o" +char id=112 x=44 y=82 width=18 height=20 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="p" +char id=113 x=44 y=34 width=18 height=20 xoffset=0 yoffset=10 xadvance=20 page=0 chnl=0 letter="q" +char id=114 x=132 y=132 width=12 height=16 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="r" +char id=115 x=116 y=106 width=15 height=17 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="s" +char id=116 x=132 y=149 width=12 height=17 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="t" +char id=117 x=132 y=94 width=14 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="u" +char id=118 x=100 y=43 width=15 height=16 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=128 width=23 height=16 xoffset=0 yoffset=10 xadvance=25 page=0 chnl=0 letter="w" +char id=120 x=132 y=76 width=14 height=17 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="x" +char id=121 x=116 y=0 width=15 height=20 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=44 y=124 width=17 height=17 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="z" +char id=123 x=164 y=0 width=4 height=26 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=159 y=0 width=3 height=22 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=163 y=50 width=4 height=26 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=17 y=167 width=13 height=4 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="~" +char id=8226 x=43 y=162 width=7 height=7 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=115 y=156 width=15 height=14 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.atlas b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.atlas new file mode 100644 index 0000000..fd99be2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.atlas @@ -0,0 +1,113 @@ + +number-cruncher-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bg + rotate: false + xy: 1, 319 + size: 411, 684 + split: 17, 30, 45, 50 + pad: 16, 31, 0, 0 + orig: 411, 684 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 521, 177 + size: 77, 68 + split: 11, 10, 7, 7 + pad: 11, 10, 1, 1 + orig: 77, 68 + offset: 0, 0 + index: -1 +button-large + rotate: false + xy: 692, 499 + size: 77, 134 + split: 12, 11, 9, 8 + pad: 11, 11, 1, 1 + orig: 77, 134 + offset: 0, 0 + index: -1 +button-large-pressed + rotate: false + xy: 692, 363 + size: 77, 134 + split: 12, 11, 9, 8 + pad: 11, 11, 1, 1 + orig: 77, 134 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 631, 287 + size: 77, 68 + split: 11, 10, 7, 7 + pad: 11, 10, 1, 1 + orig: 77, 68 + offset: 0, 0 + index: -1 +font-button-export + rotate: false + xy: 414, 357 + size: 276, 276 + orig: 277, 277 + offset: 0, 1 + index: -1 +font-export + rotate: false + xy: 521, 247 + size: 108, 108 + orig: 109, 109 + offset: 0, 1 + index: -1 +font-lcd-export + rotate: false + xy: 414, 635 + size: 328, 328 + orig: 329, 329 + offset: 0, 1 + index: -1 +font-title-export + rotate: false + xy: 351, 146 + size: 168, 171 + orig: 169, 172 + offset: 0, 1 + index: -1 +lcd + rotate: false + xy: 1, 1 + size: 311, 98 + split: 11, 10, 9, 10 + pad: 1, 2, 9, 10 + orig: 311, 98 + offset: 0, 0 + index: -1 +panel + rotate: false + xy: 1, 101 + size: 348, 216 + split: 20, 21, 20, 20 + pad: 0, 0, 0, 0 + orig: 348, 216 + offset: 0, 0 + index: -1 +panel-black + rotate: false + xy: 414, 965 + size: 348, 38 + split: 0, 0, 0, 24 + pad: 0, 0, 0, 0 + orig: 348, 38 + offset: 0, 0 + index: -1 +solar-panel + rotate: false + xy: 351, 104 + size: 131, 40 + orig: 131, 40 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.json b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.json new file mode 100644 index 0000000..fc25509 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.json @@ -0,0 +1,123 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + button: { + file: font-button-export.fnt + } + font: { + file: font-export.fnt + } + lcd: { + file: font-lcd-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + gray: { + r: 0.45666668 + g: 0.45666668 + b: 0.45666668 + a: 1 + } + text-gray: { + r: 0.827451 + g: 0.827451 + b: 0.827451 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + } + toggle: { + up: button + down: button-pressed + checked: button-pressed + } + large: { + up: button-large + down: button-large-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: button + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: text-gray + } + button: { + font: button + } + title: { + font: title + fontColor: black + } + lcd: { + font: lcd + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: button + fontColor: white + downFontColor: gray + up: button + down: button-pressed + } + toggle: { + font: button + fontColor: white + downFontColor: gray + checkedFontColor: gray + up: button + down: button-pressed + checked: button-pressed + } + large: { + font: button + fontColor: white + downFontColor: gray + up: button-large + down: button-large-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: bg + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.png b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.png new file mode 100644 index 0000000..dc20c73 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/number-cruncher/skin/number-cruncher-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/README.md b/src/main/resources/omni_power/gdx-skins/orange/README.md new file mode 100644 index 0000000..89d681e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/README.md @@ -0,0 +1,22 @@ +# Orange Peel UI + +``` +Orange Peel UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.com for games, tutorials, and much more! + +Orange Peel UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Minimalistic and modern, uses highly vivid colors. + +![Orange Peel](preview.png) + +### Style guide + +![Guide](style-guide.png) + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=21688). diff --git a/src/main/resources/omni_power/gdx-skins/orange/preview.png b/src/main/resources/omni_power/gdx-skins/orange/preview.png new file mode 100644 index 0000000..30213c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/README.md b/src/main/resources/omni_power/gdx-skins/orange/raw/README.md new file mode 100644 index 0000000..7ace26f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/raw/README.md @@ -0,0 +1 @@ +Raw assets were extracted using [Skin Composer](https://github.com/raeleus/skin-composer). diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/bleached-peach.png b/src/main/resources/omni_power/gdx-skins/orange/raw/bleached-peach.png new file mode 100644 index 0000000..076993f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/bleached-peach.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/button-maroon-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/button-maroon-down.9.png new file mode 100644 index 0000000..51aeebf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/button-maroon-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/button-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/button-maroon.9.png new file mode 100644 index 0000000..5ba67a4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/button-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/button-orange-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/button-orange-down.9.png new file mode 100644 index 0000000..2101d0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/button-orange-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/button-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/button-orange.9.png new file mode 100644 index 0000000..273d3ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/button-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/check-box-off.png b/src/main/resources/omni_power/gdx-skins/orange/raw/check-box-off.png new file mode 100644 index 0000000..bd167a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/check-box-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/check-box.png b/src/main/resources/omni_power/gdx-skins/orange/raw/check-box.png new file mode 100644 index 0000000..73d73ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/check-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt-down.png new file mode 100644 index 0000000..def4b90 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt-highlight.png b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt-highlight.png new file mode 100644 index 0000000..49e63f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt-highlight.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt.png b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt.png new file mode 100644 index 0000000..4a0daf3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-alt.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-down.png new file mode 100644 index 0000000..9f8eb6b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-highlight.png b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-highlight.png new file mode 100644 index 0000000..9b9e8ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button-highlight.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/close-button.png b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button.png new file mode 100644 index 0000000..4a0daf3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/close-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/cursor.9.png new file mode 100644 index 0000000..6aa4fab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/dark-dim-orange.png b/src/main/resources/omni_power/gdx-skins/orange/raw/dark-dim-orange.png new file mode 100644 index 0000000..62047f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/dark-dim-orange.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/dark-maroon.png b/src/main/resources/omni_power/gdx-skins/orange/raw/dark-maroon.png new file mode 100644 index 0000000..d910cf0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/dark-maroon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/dark-orange.png b/src/main/resources/omni_power/gdx-skins/orange/raw/dark-orange.png new file mode 100644 index 0000000..6ad5ff2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/dark-orange.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/dim-orange.png b/src/main/resources/omni_power/gdx-skins/orange/raw/dim-orange.png new file mode 100644 index 0000000..fc6ee4f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/dim-orange.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/folder-open.png b/src/main/resources/omni_power/gdx-skins/orange/raw/folder-open.png new file mode 100644 index 0000000..2021e5d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/folder-open.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/folder.png b/src/main/resources/omni_power/gdx-skins/orange/raw/folder.png new file mode 100644 index 0000000..c0aad61 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/folder.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/raw/font-export.fnt new file mode 100644 index 0000000..d7706b8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/raw/font-export.fnt @@ -0,0 +1,103 @@ +info face="E:\workspace\Orange Peel Skin\output\font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=107 scaleH=108 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=97 +char id=33 x=102 y=36 width=4 height=13 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=64 y=101 width=7 height=6 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=44 y=81 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=67 y=11 width=8 height=16 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=15 height=13 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=0 y=63 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=27 y=33 width=3 height=6 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=98 y=0 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=97 y=58 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=66 y=28 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=46 y=28 width=9 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=91 y=59 width=4 height=7 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=72 y=104 width=5 height=3 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=15 y=56 width=4 height=4 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=83 y=74 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=47 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=84 y=11 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=54 y=88 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=65 y=37 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=44 y=68 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=74 y=39 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=74 y=90 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=64 y=79 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=57 y=14 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=57 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=102 y=77 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=97 y=92 width=4 height=13 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=64 y=92 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=54 y=101 width=9 height=6 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=56 y=28 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=83 y=38 width=7 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=27 width=15 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=0 y=77 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=23 y=92 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=64 y=52 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=12 y=92 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=74 y=66 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=74 y=53 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=44 y=94 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=54 y=75 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=102 y=64 width=3 height=12 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=83 y=24 width=7 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=15 y=43 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=76 y=11 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=12 y=79 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=64 y=66 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=90 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=37 y=0 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=12 y=63 width=11 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=55 y=39 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=45 y=48 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=24 y=56 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=16 y=26 width=10 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=16 y=0 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=14 width=15 height=12 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=16 y=13 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=54 y=62 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=47 y=14 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=97 y=41 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=90 y=88 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=98 y=19 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=46 y=39 width=8 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=105 width=9 height=2 xoffset=0 yoffset=18 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=78 y=104 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=74 y=28 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=37 y=13 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=76 y=0 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=36 y=33 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=67 y=0 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=90 y=74 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=35 y=54 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=34 y=83 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=102 y=50 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=91 y=41 width=5 height=17 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=27 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=97 y=77 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=53 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=55 y=52 width=8 height=9 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=24 y=79 width=9 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=34 y=69 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=26 y=40 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=85 y=0 width=6 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=83 y=53 width=7 height=10 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=83 y=91 width=6 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=74 y=79 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=24 y=69 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=43 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=34 y=97 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=27 y=14 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=83 y=64 width=7 height=9 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=92 y=0 width=5 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=102 y=88 width=2 height=19 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=91 y=24 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=27 y=28 width=9 height=4 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=45 y=62 width=5 height=5 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/orange/raw/font-export.png new file mode 100644 index 0000000..5b6d089 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/raw/font-title-export.fnt new file mode 100644 index 0000000..f3ba415 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/raw/font-title-export.fnt @@ -0,0 +1,103 @@ +info face="E:\workspace\Orange Peel Skin\output\font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=184 scaleH=190 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="E:\workspace\Orange Peel Skin\output\font-title-export.png" +chars count=97 +char id=33 x=177 y=109 width=6 height=23 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=143 y=171 width=11 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=78 y=145 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="#" +char id=36 x=112 y=93 width=15 height=28 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="%" +char id=38 x=0 y=114 width=20 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="&" +char id=39 x=158 y=154 width=6 height=11 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=167 y=142 width=9 height=30 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=169 y=53 width=8 height=30 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=24 y=100 width=12 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=80 y=0 width=16 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=158 y=142 width=8 height=11 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=144 y=112 width=10 height=4 xoffset=0 yoffset=20 xadvance=10 page=0 chnl=0 letter="-" +char id=46 x=143 y=183 width=6 height=6 xoffset=0 yoffset=25 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=143 y=141 width=14 height=29 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=80 y=42 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=144 y=57 width=14 height=22 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=95 y=112 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=114 y=0 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=112 y=70 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=95 y=89 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=112 y=122 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=97 y=47 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="7" +char id=56 x=97 y=0 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="8" +char id=57 x=95 y=151 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=169 y=109 width=7 height=17 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=169 y=30 width=8 height=22 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=95 y=135 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=41 y=178 width=16 height=11 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="=" +char id=62 x=78 y=168 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=143 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=25 height=27 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="@" +char id=65 x=21 y=138 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=97 y=23 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=41 y=124 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=25 y=76 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=128 y=93 width=15 height=23 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=128 y=141 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="F" +char id=71 x=41 y=148 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=45 y=0 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=177 y=133 width=5 height=23 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=128 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="J" +char id=75 x=26 y=48 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=128 y=165 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="L" +char id=77 x=21 y=114 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=45 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=21 y=162 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="O" +char id=80 x=78 y=121 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="P" +char id=81 x=0 y=138 width=20 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=45 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="R" +char id=83 x=80 y=65 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="S" +char id=84 x=26 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=60 y=147 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="U" +char id=86 x=44 y=72 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=24 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=26 y=24 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=41 y=100 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=80 y=18 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=169 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=144 y=80 width=13 height=29 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=159 y=30 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=95 y=174 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=41 y=172 width=17 height=5 xoffset=0 yoffset=30 xadvance=17 page=0 chnl=0 letter="_" +char id=96 x=130 y=57 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=130 y=0 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=78 y=96 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=112 y=170 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="c" +char id=100 x=112 y=145 width=15 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=63 y=50 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=145 y=23 width=12 height=25 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=60 y=121 width=17 height=25 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=129 y=67 width=14 height=24 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=177 y=84 width=6 height=24 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=158 y=80 width=10 height=31 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=63 y=0 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="k" +char id=108 x=169 y=84 width=7 height=24 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=95 width=23 height=18 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=130 y=38 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=60 y=171 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=114 y=23 width=15 height=24 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=63 y=25 width=16 height=24 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=155 y=171 width=11 height=18 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=97 y=70 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="s" +char id=116 x=145 y=0 width=12 height=22 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="t" +char id=117 x=114 y=48 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=63 y=69 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="v" +char id=119 x=0 y=76 width=24 height=18 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0 letter="w" +char id=120 x=0 y=167 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=60 y=96 width=17 height=24 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=130 y=19 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="z" +char id=123 x=158 y=0 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=177 y=157 width=5 height=32 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=158 y=112 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=63 y=88 width=16 height=7 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=159 y=60 width=9 height=11 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/orange/raw/font-title-export.png new file mode 100644 index 0000000..db9483a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-delete-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-delete-down.png new file mode 100644 index 0000000..8a2bd25 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-delete-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-delete.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-delete.png new file mode 100644 index 0000000..f562f93 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-delete.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-duplicate-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-duplicate-down.png new file mode 100644 index 0000000..25f56e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-duplicate-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-duplicate.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-duplicate.png new file mode 100644 index 0000000..f0f309f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-duplicate.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-help-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-help-down.png new file mode 100644 index 0000000..17c5bbe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-help-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-help.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-help.png new file mode 100644 index 0000000..4538b69 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-help.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-info-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-info-down.png new file mode 100644 index 0000000..7ad3c94 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-info-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-info.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-info.png new file mode 100644 index 0000000..942c3bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-info.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-left-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-left-down.png new file mode 100644 index 0000000..9a82c57 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-left-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-left.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-left.png new file mode 100644 index 0000000..5b6efc1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-minus-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-minus-down.png new file mode 100644 index 0000000..cfe0e37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-minus-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-minus.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-minus.png new file mode 100644 index 0000000..a7641b0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-down.png new file mode 100644 index 0000000..25a1a8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-off-copy-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-off-copy-down.png new file mode 100644 index 0000000..e31475d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-off-copy-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-off.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-off.png new file mode 100644 index 0000000..74c0ce0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-music.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music.png new file mode 100644 index 0000000..8fcc1ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-music.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-plus-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-plus-down.png new file mode 100644 index 0000000..1256ff1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-plus-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-plus.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-plus.png new file mode 100644 index 0000000..47e8eb5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-right-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-right-down.png new file mode 100644 index 0000000..7465f7f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-right-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-right.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-right.png new file mode 100644 index 0000000..6e5ecaa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-settings-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-settings-down.png new file mode 100644 index 0000000..4c8f9e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-settings-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-settings.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-settings.png new file mode 100644 index 0000000..dde52cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-settings.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-down.png new file mode 100644 index 0000000..347b461 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-off-down.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-off-down.png new file mode 100644 index 0000000..4181d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-off-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-off.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-off.png new file mode 100644 index 0000000..d6f988f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound.png b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound.png new file mode 100644 index 0000000..17fe5bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/image-sound.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/maroon.png b/src/main/resources/omni_power/gdx-skins/orange/raw/maroon.png new file mode 100644 index 0000000..9e7755e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/maroon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-dark-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-dark-maroon.9.png new file mode 100644 index 0000000..ac2830e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-dark-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-dark-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-dark-orange.9.png new file mode 100644 index 0000000..b0d6ba1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-dark-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-maroon.9.png new file mode 100644 index 0000000..4aec49e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-orange.9.png new file mode 100644 index 0000000..512c621 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-button-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-center.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-center.9.png new file mode 100644 index 0000000..55be251 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-center.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-center.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-center.9.png new file mode 100644 index 0000000..bc6104b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-center.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-down.9.png new file mode 100644 index 0000000..62279b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-left.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-left.9.png new file mode 100644 index 0000000..d564245 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-left.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-middle.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-middle.9.png new file mode 100644 index 0000000..6df2c26 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-middle.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-right.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-right.9.png new file mode 100644 index 0000000..5bb1a47 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-up.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-up.9.png new file mode 100644 index 0000000..8890df8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down-up.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down.9.png new file mode 100644 index 0000000..f8ac8b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-left.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-left.9.png new file mode 100644 index 0000000..8776a37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-left.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-middle.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-middle.9.png new file mode 100644 index 0000000..746643c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-middle.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-right.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-right.9.png new file mode 100644 index 0000000..c396335 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-right.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/menu-up.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-up.9.png new file mode 100644 index 0000000..dbe523f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/menu-up.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/minus.png b/src/main/resources/omni_power/gdx-skins/orange/raw/minus.png new file mode 100644 index 0000000..661dbeb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/old.png b/src/main/resources/omni_power/gdx-skins/orange/raw/old.png new file mode 100644 index 0000000..8f9775f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/old.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/old1.png b/src/main/resources/omni_power/gdx-skins/orange/raw/old1.png new file mode 100644 index 0000000..2527b8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/old1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/old2.png b/src/main/resources/omni_power/gdx-skins/orange/raw/old2.png new file mode 100644 index 0000000..621e076 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/old2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/orange.png b/src/main/resources/omni_power/gdx-skins/orange/raw/orange.png new file mode 100644 index 0000000..7d4c799 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/orange.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/panel-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/panel-maroon.9.png new file mode 100644 index 0000000..7e09120 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/panel-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/panel-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/panel-orange.9.png new file mode 100644 index 0000000..e9990ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/panel-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/panel-peach.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/panel-peach.9.png new file mode 100644 index 0000000..85ee780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/panel-peach.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/peach.png b/src/main/resources/omni_power/gdx-skins/orange/raw/peach.png new file mode 100644 index 0000000..5cc682a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/peach.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/plus.png b/src/main/resources/omni_power/gdx-skins/orange/raw/plus.png new file mode 100644 index 0000000..e291978 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-before-knob.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-before-knob.9.png new file mode 100644 index 0000000..ce11f3d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-before-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-vertical-before-knob.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-vertical-before-knob.9.png new file mode 100644 index 0000000..bf8e4fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-vertical-before-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..94058f4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar.9.png new file mode 100644 index 0000000..bfb5bb4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/radio-button-off.png b/src/main/resources/omni_power/gdx-skins/orange/raw/radio-button-off.png new file mode 100644 index 0000000..38dff0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/radio-button-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/radio-button.png b/src/main/resources/omni_power/gdx-skins/orange/raw/radio-button.png new file mode 100644 index 0000000..02d8638 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/radio-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/round-dark-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/round-dark-maroon.9.png new file mode 100644 index 0000000..13e8ddf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/round-dark-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/round-dark-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/round-dark-orange.9.png new file mode 100644 index 0000000..cd42b8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/round-dark-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/round-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/round-maroon.9.png new file mode 100644 index 0000000..0dca496 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/round-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/round-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/round-orange.9.png new file mode 100644 index 0000000..8db06ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/round-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-knob.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-knob.9.png new file mode 100644 index 0000000..edadb29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-vertical-knob.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-vertical-knob.9.png new file mode 100644 index 0000000..6e0d779 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-vertical-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-vertical.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-vertical.9.png new file mode 100644 index 0000000..f2ea637 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android.9.png new file mode 100644 index 0000000..4909a28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-android.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-knob.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-knob.9.png new file mode 100644 index 0000000..f08426d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..8a32ab6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar.9.png new file mode 100644 index 0000000..14529a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/scrollbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/select-box-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/select-box-down.9.png new file mode 100644 index 0000000..ecd3a74 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/select-box-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/select-box.9.png new file mode 100644 index 0000000..71ca5a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/slider-bar-knob.png b/src/main/resources/omni_power/gdx-skins/orange/raw/slider-bar-knob.png new file mode 100644 index 0000000..29918a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/slider-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-minus-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-minus-down.9.png new file mode 100644 index 0000000..35ed95e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-minus-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-minus.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-minus.9.png new file mode 100644 index 0000000..7959c04 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-minus.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-plus-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-plus-down.9.png new file mode 100644 index 0000000..30f3a22 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-plus-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-plus.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-plus.9.png new file mode 100644 index 0000000..427e646 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-plus.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-text-field-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-text-field-down.9.png new file mode 100644 index 0000000..32a5b32 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-text-field-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-text-field.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-text-field.9.png new file mode 100644 index 0000000..f1bfade Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/spinner-text-field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/splitpane.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/splitpane.9.png new file mode 100644 index 0000000..c8350c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/splitpane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/switch-off.png b/src/main/resources/omni_power/gdx-skins/orange/raw/switch-off.png new file mode 100644 index 0000000..05082ec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/switch-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/switch-text-off.png b/src/main/resources/omni_power/gdx-skins/orange/raw/switch-text-off.png new file mode 100644 index 0000000..b74deac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/switch-text-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/switch-text.png b/src/main/resources/omni_power/gdx-skins/orange/raw/switch-text.png new file mode 100644 index 0000000..d84fac0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/switch-text.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/switch.png b/src/main/resources/omni_power/gdx-skins/orange/raw/switch.png new file mode 100644 index 0000000..a42a3b9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/switch.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-down.9.png new file mode 100644 index 0000000..4573f25 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-login-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-login-down.9.png new file mode 100644 index 0000000..6f2b82a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-login-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-login.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-login.9.png new file mode 100644 index 0000000..2f2efef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-login.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-password-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-password-down.9.png new file mode 100644 index 0000000..93141a1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-password-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-password.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-password.9.png new file mode 100644 index 0000000..3fa03d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-password.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-search-down.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-search-down.9.png new file mode 100644 index 0000000..b12e00e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-search-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-search.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-search.9.png new file mode 100644 index 0000000..707b2a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield-search.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield.9.png new file mode 100644 index 0000000..d5c55c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/orange/raw/touchpad-knob.png new file mode 100644 index 0000000..50f5da1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/touchpad.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/touchpad.9.png new file mode 100644 index 0000000..44a99b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/touchpad.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/white.png b/src/main/resources/omni_power/gdx-skins/orange/raw/white.png new file mode 100644 index 0000000..e0cff3b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/window-large.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/window-large.9.png new file mode 100644 index 0000000..7399604 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/window-large.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/window-maroon.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/window-maroon.9.png new file mode 100644 index 0000000..226ffac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/window-maroon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/window-orange.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/window-orange.9.png new file mode 100644 index 0000000..2b680e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/window-orange.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/raw/window-peach.9.png b/src/main/resources/omni_power/gdx-skins/orange/raw/window-peach.9.png new file mode 100644 index 0000000..fd095ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/raw/window-peach.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/README.md b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/README.md new file mode 100644 index 0000000..99d6209 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/README.md @@ -0,0 +1 @@ +This folder contains additional skins based on the *Orange Peel UI* used by the [Skin Composer](https://github.com/raeleus/skin-composer) application. diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.atlas b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.atlas new file mode 100644 index 0000000..1c06262 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.atlas @@ -0,0 +1,1598 @@ + +dark-peel-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bleached-peach + rotate: false + xy: 307, 831 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +button-color + rotate: false + xy: 390, 881 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +button-color-down + rotate: false + xy: 385, 857 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +button-color-hover + rotate: false + xy: 414, 881 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +button-gray + rotate: false + xy: 333, 973 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-maroon + rotate: false + xy: 118, 235 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-maroon-down + rotate: false + xy: 385, 973 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange + rotate: false + xy: 118, 183 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-down + rotate: false + xy: 170, 235 + size: 50, 50 + split: 5, 5, 5, 6 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-down-over + rotate: false + xy: 437, 973 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-over + rotate: false + xy: 118, 131 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +check-box + rotate: false + xy: 1008, 927 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-off + rotate: false + xy: 1008, 910 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-off-over + rotate: false + xy: 731, 868 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-over + rotate: false + xy: 748, 868 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +close-button + rotate: false + xy: 287, 453 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt + rotate: false + xy: 287, 453 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt-down + rotate: false + xy: 287, 433 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt-highlight + rotate: false + xy: 287, 413 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-down + rotate: false + xy: 287, 393 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-highlight + rotate: false + xy: 578, 865 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +color-box + rotate: false + xy: 104, 32 + size: 12, 12 + split: 2, 2, 2, 2 + orig: 12, 12 + offset: 0, 0 + index: -1 +color-picker + rotate: false + xy: 274, 95 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +color-scale + rotate: false + xy: 204, 12 + size: 16, 13 + orig: 16, 13 + offset: 0, 0 + index: -1 +color-scale-flipped + rotate: false + xy: 713, 870 + size: 16, 13 + orig: 16, 13 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 222, 282 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +dark-dim-orange + rotate: false + xy: 311, 831 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-gray + rotate: false + xy: 315, 831 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-maroon + rotate: false + xy: 379, 846 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-orange + rotate: false + xy: 350, 856 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dim-orange + rotate: false + xy: 979, 946 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +folder + rotate: false + xy: 355, 879 + size: 28, 18 + orig: 28, 18 + offset: 0, 0 + index: -1 +folder-open + rotate: false + xy: 291, 635 + size: 28, 18 + orig: 28, 18 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 118, 287 + size: 107, 108 + orig: 107, 108 + offset: 0, 0 + index: -1 +font-shortcut-export + rotate: false + xy: 203, 959 + size: 128, 64 + orig: 128, 64 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 631 + size: 184, 190 + orig: 184, 190 + offset: 0, 0 + index: -1 +gray + rotate: false + xy: 274, 266 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +image-color-wheel + rotate: false + xy: 274, 70 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +image-delete + rotate: false + xy: 47, 27 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-delete-disabled + rotate: false + xy: 66, 27 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-delete-down + rotate: false + xy: 85, 27 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-duplicate + rotate: false + xy: 273, 46 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +image-duplicate-down + rotate: false + xy: 273, 22 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +image-font + rotate: false + xy: 941, 925 + size: 36, 23 + orig: 36, 23 + offset: 0, 0 + index: -1 +image-help + rotate: false + xy: 421, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-help-disabled + rotate: false + xy: 451, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-help-down + rotate: false + xy: 481, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-info + rotate: false + xy: 350, 821 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-info-disabled + rotate: false + xy: 511, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-info-down + rotate: false + xy: 979, 915 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-label + rotate: false + xy: 1, 32 + size: 44, 12 + orig: 44, 12 + offset: 0, 0 + index: -1 +image-left + rotate: false + xy: 541, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-left-disabled + rotate: false + xy: 571, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-left-down + rotate: false + xy: 601, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-list + rotate: false + xy: 274, 121 + size: 25, 36 + orig: 25, 36 + offset: 0, 0 + index: -1 +image-minus + rotate: false + xy: 307, 796 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-minus-disabled + rotate: false + xy: 307, 790 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-minus-down + rotate: false + xy: 385, 851 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-music + rotate: false + xy: 631, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-disabled + rotate: false + xy: 661, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-down + rotate: false + xy: 691, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off + rotate: false + xy: 721, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off-copy-down + rotate: false + xy: 751, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off-disabled + rotate: false + xy: 781, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-plus + rotate: false + xy: 409, 857 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-plus-disabled + rotate: false + xy: 438, 883 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-plus-down + rotate: false + xy: 462, 883 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-portrait + rotate: false + xy: 274, 159 + size: 26, 39 + orig: 26, 39 + offset: 0, 0 + index: -1 +image-right + rotate: false + xy: 279, 345 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-right-disabled + rotate: false + xy: 811, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-right-down + rotate: false + xy: 279, 316 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-scrollbar + rotate: false + xy: 320, 897 + size: 33, 37 + orig: 33, 37 + offset: 0, 0 + index: -1 +image-settings + rotate: false + xy: 841, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-settings-disabled + rotate: false + xy: 355, 850 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-settings-down + rotate: false + xy: 320, 831 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound + rotate: false + xy: 279, 287 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-disabled + rotate: false + xy: 307, 802 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound-down + rotate: false + xy: 279, 258 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-off + rotate: false + xy: 274, 229 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-off-disabled + rotate: false + xy: 988, 944 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound-off-down + rotate: false + xy: 274, 200 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +light-gray + rotate: false + xy: 385, 895 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +loading_0 + rotate: false + xy: 1, 514 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_1 + rotate: false + xy: 203, 842 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_2 + rotate: false + xy: 1, 397 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_3 + rotate: false + xy: 1, 280 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_4 + rotate: false + xy: 1, 163 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_5 + rotate: false + xy: 1, 46 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_6 + rotate: false + xy: 118, 514 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_7 + rotate: false + xy: 118, 397 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +maroon + rotate: false + xy: 963, 921 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +menu-button-dark-maroon + rotate: false + xy: 578, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-dark-orange + rotate: false + xy: 600, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-dark-orange-over + rotate: false + xy: 622, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-maroon + rotate: false + xy: 644, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-orange + rotate: false + xy: 666, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-orange-over + rotate: false + xy: 688, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-center + rotate: false + xy: 170, 183 + size: 50, 50 + split: 1, 1, 0, 0 + pad: 0, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-center-over + rotate: false + xy: 489, 973 + size: 50, 50 + split: 2, 2, 0, 0 + pad: 0, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-center + rotate: false + xy: 118, 79 + size: 50, 50 + split: 1, 2, 0, 0 + pad: 0, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-down + rotate: false + xy: 170, 131 + size: 50, 50 + split: 5, 5, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-left + rotate: false + xy: 541, 973 + size: 50, 50 + split: 5, 1, 5, 5 + pad: 5, 2, 1, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-middle + rotate: false + xy: 170, 79 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-right + rotate: false + xy: 593, 973 + size: 50, 50 + split: 1, 5, 5, 5 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-up + rotate: false + xy: 645, 973 + size: 50, 50 + split: 5, 5, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down + rotate: false + xy: 697, 973 + size: 50, 50 + split: 0, 0, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-center + rotate: false + xy: 749, 973 + size: 50, 50 + split: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-center-over + rotate: false + xy: 801, 973 + size: 50, 50 + split: 2, 2, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-down + rotate: false + xy: 853, 973 + size: 50, 50 + split: 5, 5, 1, 5 + pad: 0, 0, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-down-over + rotate: false + xy: 905, 973 + size: 50, 50 + split: 6, 7, 2, 7 + pad: 1, 1, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-left + rotate: false + xy: 957, 973 + size: 50, 50 + split: 5, 0, 5, 4 + pad: 5, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-left-over + rotate: false + xy: 118, 27 + size: 50, 50 + split: 5, 0, 5, 4 + pad: 5, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-middle + rotate: false + xy: 170, 27 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-middle-over + rotate: false + xy: 203, 790 + size: 50, 50 + split: 1, 1, 2, 2 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-over + rotate: false + xy: 255, 790 + size: 50, 50 + split: 1, 1, 2, 7 + pad: 0, 0, 2, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-right + rotate: false + xy: 187, 738 + size: 50, 50 + split: 1, 5, 0, 0 + pad: 1, 6, 4, 4 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-right-over + rotate: false + xy: 187, 686 + size: 50, 50 + split: 2, 4, 0, 1 + pad: 2, 6, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-up + rotate: false + xy: 239, 738 + size: 50, 50 + split: 5, 5, 6, 1 + pad: -1, -1, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-up-over + rotate: false + xy: 187, 634 + size: 50, 50 + split: 5, 5, 5, 2 + pad: -1, -1, 5, 2 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-left + rotate: false + xy: 239, 686 + size: 50, 50 + split: 5, 0, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-left-over + rotate: false + xy: 239, 634 + size: 50, 50 + split: 6, 0, 5, 7 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-middle + rotate: false + xy: 235, 582 + size: 50, 50 + split: 0, 0, 1, 1 + pad: -1, -1, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-middle-over + rotate: false + xy: 235, 530 + size: 50, 50 + split: 1, 1, 2, 2 + pad: -1, -1, 2, 2 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-right + rotate: false + xy: 235, 478 + size: 50, 50 + split: 1, 6, 6, 6 + pad: 1, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-right-over + rotate: false + xy: 235, 426 + size: 50, 50 + split: 2, 7, 0, 50 + pad: 2, 7, 5, 6 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-up + rotate: false + xy: 235, 374 + size: 50, 50 + split: 5, 5, 5, 1 + pad: 0, 0, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-up-over + rotate: false + xy: 227, 322 + size: 50, 50 + split: 6, 7, 6, 2 + orig: 50, 50 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 309, 618 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +orange + rotate: false + xy: 433, 877 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +panel-maroon + rotate: false + xy: 710, 885 + size: 20, 20 + split: 6, 6, 7, 6 + pad: 2, 2, 2, 2 + orig: 20, 20 + offset: 0, 0 + index: -1 +panel-orange + rotate: false + xy: 732, 885 + size: 20, 20 + split: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +panel-peach + rotate: false + xy: 754, 885 + size: 20, 20 + split: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +peach + rotate: false + xy: 303, 205 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 309, 601 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 309, 587 + size: 15, 12 + split: 6, 4, 5, 5 + pad: 6, 0, 0, 0 + orig: 15, 12 + offset: 0, 0 + index: -1 +progress-bar-before-knob + rotate: false + xy: 860, 893 + size: 9, 12 + split: 0, 6, 0, 0 + pad: 0, 0, 0, 0 + orig: 9, 12 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 187, 790 + size: 12, 15 + split: 5, 5, 4, 6 + pad: 0, 0, 0, 6 + orig: 12, 15 + offset: 0, 0 + index: -1 +progress-bar-vertical-before-knob + rotate: false + xy: 204, 1 + size: 12, 9 + split: 0, 0, 6, 0 + orig: 12, 9 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 618, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 637, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-off-over + rotate: false + xy: 656, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-over + rotate: false + xy: 675, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +round-dark-gray + rotate: false + xy: 273, 1 + size: 19, 19 + split: 5, 5, 5, 4 + pad: 4, 4, 5, 4 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-maroon + rotate: false + xy: 294, 1 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-orange + rotate: false + xy: 776, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-orange-over + rotate: false + xy: 287, 515 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-gray + rotate: false + xy: 797, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-light-gray + rotate: false + xy: 287, 494 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-maroon + rotate: false + xy: 818, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-orange + rotate: false + xy: 287, 473 + size: 19, 19 + split: 5, 5, 5, 4 + pad: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-orange-over + rotate: false + xy: 839, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +scrollbar + rotate: false + xy: 694, 865 + size: 17, 18 + split: 5, 5, 7, 7 + pad: 0, 0, 0, 0 + orig: 17, 18 + offset: 0, 0 + index: -1 +scrollbar-android + rotate: false + xy: 320, 952 + size: 10, 5 + split: 2, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 10, 5 + offset: 0, 0 + index: -1 +scrollbar-android-knob + rotate: false + xy: 307, 835 + size: 10, 5 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 10, 5 + offset: 0, 0 + index: -1 +scrollbar-android-vertical + rotate: false + xy: 1009, 1013 + size: 5, 10 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 10 + offset: 0, 0 + index: -1 +scrollbar-android-vertical-knob + rotate: false + xy: 337, 819 + size: 5, 10 + split: 2, 2, 2, 2 + pad: 0, 1, 0, 0 + orig: 5, 10 + offset: 0, 0 + index: -1 +scrollbar-knob + rotate: false + xy: 598, 865 + size: 18, 18 + split: 6, 6, 5, 5 + pad: 0, 0, 1, 0 + orig: 18, 18 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 287, 374 + size: 18, 17 + split: 8, 8, 5, 5 + pad: 0, 0, 0, 0 + orig: 18, 17 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 227, 270 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-down + rotate: false + xy: 222, 218 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-down-over + rotate: false + xy: 222, 166 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 222, 114 + size: 50, 50 + split: 7, 29, 6, 30 + pad: 7, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-slim + rotate: false + xy: 1, 1 + size: 50, 24 + split: 7, 27, 4, 19 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +select-box-slim-down + rotate: false + xy: 222, 88 + size: 50, 24 + split: 5, 28, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +select-box-slim-down-over + rotate: false + xy: 53, 1 + size: 50, 24 + split: 6, 28, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +select-box-slim-over + rotate: false + xy: 105, 1 + size: 50, 24 + split: 6, 28, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +slider-bar-knob + rotate: false + xy: 187, 807 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +spinner-minus + rotate: false + xy: 871, 899 + size: 21, 35 + split: 14, 1, 13, 21 + pad: 7, 1, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-down + rotate: false + xy: 894, 890 + size: 21, 35 + split: 17, 3, 8, 26 + pad: 6, 0, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-down-over + rotate: false + xy: 917, 890 + size: 21, 35 + split: 14, 2, 7, 27 + pad: 0, 0, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-over + rotate: false + xy: 940, 888 + size: 21, 35 + split: 14, 2, 11, 23 + pad: 0, 0, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus + rotate: false + xy: 486, 870 + size: 21, 35 + split: 1, 15, 6, 25 + pad: 0, 0, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-down + rotate: false + xy: 555, 870 + size: 21, 35 + split: 1, 15, 5, 22 + pad: 0, 0, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-down-over + rotate: false + xy: 532, 870 + size: 21, 35 + split: 2, 15, 6, 23 + pad: 2, 15, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-over + rotate: false + xy: 509, 870 + size: 21, 35 + split: 2, 15, 6, 22 + pad: 0, 0, 0, 0 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-text-field + rotate: false + xy: 355, 899 + size: 33, 35 + split: 5, 5, 6, 6 + orig: 33, 35 + offset: 0, 0 + index: -1 +spinner-text-field-down + rotate: false + xy: 320, 860 + size: 33, 35 + split: 6, 6, 7, 7 + pad: 5, 5, 6, 6 + orig: 33, 35 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 227, 389 + size: 6, 6 + split: 2, 2, 2, 2 + orig: 6, 6 + offset: 0, 0 + index: -1 +switch + rotate: false + xy: 157, 4 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-off + rotate: false + xy: 894, 950 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-text + rotate: false + xy: 941, 950 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-text-off + rotate: false + xy: 894, 927 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 222, 51 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-disabled + rotate: false + xy: 222, 14 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-disabled-alt + rotate: false + xy: 333, 936 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-down + rotate: false + xy: 384, 936 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login + rotate: false + xy: 435, 936 + size: 49, 35 + split: 7, 27, 7, 27 + pad: 6, 27, 6, 6 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login-disabled + rotate: false + xy: 486, 936 + size: 49, 35 + split: 7, 27, 7, 27 + pad: 7, 27, 7, 7 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login-down + rotate: false + xy: 537, 936 + size: 49, 35 + split: 7, 27, 6, 28 + pad: 7, 27, 6, 7 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password + rotate: false + xy: 588, 936 + size: 49, 35 + split: 7, 23, 7, 24 + pad: 7, 25, 7, 6 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password-disabled + rotate: false + xy: 639, 936 + size: 49, 35 + split: 7, 23, 7, 24 + pad: 7, 25, 7, 6 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password-down + rotate: false + xy: 690, 936 + size: 49, 35 + split: 7, 23, 7, 24 + pad: 7, 25, 7, 7 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search + rotate: false + xy: 741, 936 + size: 49, 35 + split: 7, 31, 5, 29 + pad: 7, 31, 7, 6 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search-disabled + rotate: false + xy: 792, 936 + size: 49, 35 + split: 7, 31, 5, 29 + pad: 7, 31, 7, 7 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search-down + rotate: false + xy: 843, 936 + size: 49, 35 + split: 7, 29, 4, 30 + pad: 7, 31, 4, 0 + orig: 49, 35 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 823 + size: 200, 200 + split: 61, 60, 63, 60 + pad: 0, 1, 1, 0 + orig: 200, 200 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 390, 905 + size: 29, 29 + orig: 29, 29 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1, 28 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +window-large + rotate: false + xy: 291, 655 + size: 30, 133 + split: 6, 6, 113, 6 + pad: 3, 3, 113, 3 + orig: 30, 133 + offset: 0, 0 + index: -1 +window-maroon + rotate: false + xy: 303, 209 + size: 20, 47 + split: 6, 6, 31, 6 + pad: 3, 3, 31, 3 + orig: 20, 47 + offset: 0, 0 + index: -1 +window-orange + rotate: false + xy: 287, 585 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 31, 3 + orig: 20, 47 + offset: 0, 0 + index: -1 +window-peach + rotate: false + xy: 287, 536 + size: 20, 47 + split: 6, 6, 30, 6 + pad: 3, 3, 31, 3 + orig: 20, 47 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.json b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.json new file mode 100644 index 0000000..85a43c8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.json @@ -0,0 +1,737 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + font-shortcut: { + file: font-shortcut-export.fnt + } + font-title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + bleached_peach: { + r: 0.9372549 + g: 0.8980392 + b: 0.8627451 + a: 1 + } + blue: { + r: 0 + g: 0 + b: 0.93333334 + a: 1 + } + dark_gray: { + r: 0.3019608 + g: 0.3019608 + b: 0.3019608 + a: 1 + } + gray: { + r: 0.42745098 + g: 0.3647059 + b: 0.3019608 + a: 1 + } + Highlight: { + r: 0.9 + g: 0.786 + b: 0.786 + a: 1 + } + light_gray: { + r: 0.61960787 + g: 0.5411765 + b: 0.44313726 + a: 1 + } + maroon: { + r: 0.290196 + g: 0.215686 + b: 0.24313726 + a: 1 + } + orange: { + r: 0.5294 + g: 0.5294 + b: 0.5294 + a: 1 + } + peach: { + r: 0.38039216 + g: 0.33333334 + b: 0.3019608 + a: 1 + } + purple: { + r: 0.33333334 + g: 0.101960786 + b: 0.54509807 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + color: { + up: button-color + down: button-color-down + over: button-color-hover + } + toggle: { + up: button-orange + down: button-orange-down + over: button-orange-over + checked: button-orange-down + checkedOver: button-orange-down-over + } + spinner-plus: { + up: spinner-plus + down: spinner-plus-down + over: spinner-plus-over + } + maroon: { + up: button-maroon + down: button-maroon-down + } + maroon-toggle: { + up: button-maroon + down: button-maroon-down + checked: button-maroon-down + } + close-alt: { + up: close-button-alt + down: close-button-alt-down + over: close-button-alt-highlight + } + close: { + up: close-button + down: close-button-down + over: close-button-highlight + } + spinner-minus: { + up: spinner-minus + down: spinner-minus-down + over: spinner-minus-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-box + checkboxOff: check-box-off + font: font + fontColor: orange + overFontColor: maroon + } + switch-text: { + checkboxOn: switch-text + checkboxOff: switch-text-off + font: font + fontColor: orange + overFontColor: maroon + } + switch: { + checkboxOn: switch + checkboxOff: switch-off + font: font + fontColor: orange + overFontColor: maroon + } + radio: { + checkboxOn: radio-button + checkboxOff: radio-button-off + font: font + fontColor: orange + overFontColor: maroon + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + settings: { + imageUp: image-settings + imageDown: image-settings-down + imageDisabled: image-settings-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + orange-small: { + up: round-orange + down: round-dark-orange + over: round-orange-over + } + music: { + imageUp: image-music-off + imageDown: image-music-down + imageChecked: image-music + imageDisabled: image-music-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + help: { + imageUp: image-help + imageDown: image-help-down + imageDisabled: image-help-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-up: { + up: menu-up + down: menu-down-up + over: menu-up-over + disabled: menu-disabled-up + } + left: { + imageUp: image-left + imageDown: image-left-down + imageDisabled: image-left-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-right: { + up: menu-right + down: menu-down-right + over: menu-right-over + disabled: menu-disabled-right + } + menu-down: { + up: menu-down + down: menu-down-down + over: menu-down-over + disabled: menu-disabled-down + } + menu-middle: { + up: menu-middle + down: menu-down-middle + over: menu-middle-over + disabled: menu-disabled-middle + } + sound: { + imageUp: image-sound-off + imageDown: image-sound-down + imageChecked: image-sound + imageDisabled: image-sound-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-left: { + up: menu-left + down: menu-down-left + over: menu-left-over + disabled: menu-disabled-left + } + info: { + imageUp: image-info + imageDown: image-info-down + imageDisabled: image-info-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + right: { + imageUp: image-right + imageDown: image-right-down + imageDisabled: image-right-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-center: { + up: menu-center + down: menu-down-center + over: menu-center-over + disabled: menu-disabled-center + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: white + downFontColor: maroon + disabledFontColor: dark_gray + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: orange + } + optional: { + font: font + fontColor: bleached_peach + } + error: { + font: font + fontColor: maroon + } + white: { + font: font + fontColor: white + } + peach: { + font: font + fontColor: peach + } + title-white: { + font: font-title + fontColor: white + } + title: { + font: font-title + fontColor: orange + } + shortcut: { + font: font-shortcut + fontColor: bleached_peach + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: white + selection: maroon + } + dimmed: { + font: font + fontColorSelected: white + fontColorUnselected: maroon + selection: maroon + background: peach + } + alt: { + font: font + fontColorSelected: white + fontColorUnselected: maroon + selection: orange + background: bleached-peach + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-before-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-vertical-before-knob + } + default: { + background: progress-bar + knobBefore: progress-bar-before-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: dim-orange + hScroll: scrollbar + hScrollKnob: scrollbar-knob + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-knob + } + android: { + background: dim-orange + hScroll: scrollbar-android + hScrollKnob: scrollbar-android-knob + vScroll: scrollbar-android-vertical + vScrollKnob: scrollbar-android-vertical-knob + } + no-bg: { + hScroll: scrollbar + hScrollKnob: scrollbar-knob + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-knob + } + android-no-bg: { + hScroll: scrollbar-android + hScrollKnob: scrollbar-android-knob + vScroll: scrollbar-android-vertical + vScrollKnob: scrollbar-android-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: default + backgroundOver: select-box-over + backgroundOpen: select-box-down + } + dimmed: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: dimmed + backgroundOver: select-box-over + backgroundOpen: select-box-down + } + alt: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: alt + backgroundOver: select-box-over + backgroundOpen: select-box-down + } + slim-dimmed: { + font: font + fontColor: white + background: select-box-slim + scrollStyle: default + listStyle: dimmed + backgroundOver: select-box-slim-over + backgroundOpen: select-box-slim-down + } + slim-alt: { + font: font + fontColor: white + background: select-box-slim + scrollStyle: default + listStyle: alt + backgroundOver: select-box-slim-over + backgroundOpen: select-box-slim-down + } + slim: { + font: font + fontColor: white + background: select-box-slim + scrollStyle: default + listStyle: default + backgroundOver: select-box-slim-over + backgroundOpen: select-box-slim-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: scrollbar-android + knob: slider-bar-knob + knobBefore: scrollbar-android-knob + } + default-vertical: { + background: scrollbar-android-vertical + knob: slider-bar-knob + knobBefore: scrollbar-android-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane + } + default-vertical: { + handle: splitpane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: white + downFontColor: maroon + disabledFontColor: dark_gray + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-item: { + font: font + fontColor: white + downFontColor: Highlight + overFontColor: Highlight + disabledFontColor: gray + up: menu-button-dark-orange + down: menu-button-orange + } + orange-small: { + font: font + fontColor: white + downFontColor: maroon + up: round-orange + down: round-dark-orange + over: round-orange-over + } + maroon-small: { + font: font + fontColor: white + downFontColor: orange + up: round-maroon + down: round-dark-maroon + } + maroon: { + font: font + fontColor: white + downFontColor: orange + up: button-maroon + down: button-maroon-down + } + maroon-toggle: { + font: font + fontColor: white + downFontColor: orange + checkedFontColor: orange + up: button-maroon + down: button-maroon-down + checked: button-maroon-down + } + toggle: { + font: font + fontColor: white + downFontColor: maroon + up: button-orange + down: button-orange-down + over: button-orange-over + checked: button-orange-down + checkedOver: button-orange-down-over + } + maroon-small-toggle: { + font: font + fontColor: white + downFontColor: orange + checkedFontColor: orange + up: round-maroon + down: round-dark-maroon + checked: round-dark-maroon + } + orange-small-toggle: { + font: font + fontColor: white + downFontColor: maroon + checkedFontColor: maroon + up: round-orange + down: round-dark-orange + over: round-orange-over + checked: round-dark-orange + checkedOver: round-dark-orange-over + } + link: { + font: font + fontColor: blue + downFontColor: purple + } + menu-item-maroon: { + font: font + fontColor: orange + downFontColor: white + overFontColor: white + disabledFontColor: gray + up: menu-button-dark-maroon + down: menu-button-maroon + } + menu-maroon: { + font: font + fontColor: white + downFontColor: orange + checkedFontColor: orange + disabledFontColor: gray + up: menu-button-maroon + down: menu-button-dark-maroon + checked: menu-button-dark-maroon + } + menu: { + font: font + fontColor: white + downFontColor: Highlight + checkedFontColor: Highlight + disabledFontColor: gray + up: menu-button-orange + down: menu-button-dark-orange + over: menu-button-orange-over + checked: menu-button-dark-orange + checkedOver: menu-button-dark-orange-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield + focusedBackground: textfield-down + disabledBackground: textfield-disabled + cursor: maroon + selection: orange + messageFont: font + messageFontColor: bleached_peach + } + alt: { + font: font + fontColor: maroon + background: textfield-disabled-alt + } + search: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield-search + focusedBackground: textfield-search-down + disabledBackground: textfield-search-disabled + cursor: maroon + selection: orange + messageFont: font + messageFontColor: bleached_peach + } + login: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield-login + focusedBackground: textfield-login-down + disabledBackground: textfield-login-disabled + cursor: maroon + selection: orange + messageFont: font + messageFontColor: bleached_peach + } + spinner: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: spinner-text-field + focusedBackground: spinner-text-field-down + disabledBackground: textfield-disabled + cursor: maroon + selection: orange + messageFont: font + messageFontColor: bleached_peach + } + password: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield-password + focusedBackground: textfield-password-down + disabledBackground: textfield-password-disabled + cursor: maroon + selection: orange + messageFont: font + messageFontColor: bleached_peach + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: round-dark-gray + wrapWidth: 150 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: round-maroon + } + folder: { + plus: folder + minus: folder-open + selection: round-maroon + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-orange + titleFont: font + titleFontColor: white + } + dialog-panel-peach: { + background: panel-peach + titleFont: font + titleFontColor: dark_gray + stageBackground: bleached-peach + } + panel: { + background: panel-orange + titleFont: font + titleFontColor: dark_gray + } + dialog: { + background: window-orange + titleFont: font + titleFontColor: white + stageBackground: bleached-peach + } + maroon: { + background: window-maroon + titleFont: font + titleFontColor: white + } + peach: { + background: window-peach + titleFont: font + titleFontColor: white + } + dialog-large: { + background: window-large + titleFont: font + titleFontColor: white + stageBackground: bleached-peach + } + panel-maroon: { + background: panel-maroon + titleFont: font + titleFontColor: dark_gray + } + panel-peach: { + background: panel-peach + titleFont: font + titleFontColor: dark_gray + } + large: { + background: window-large + titleFont: font + titleFontColor: white + } + dialog-panel-maroon: { + background: panel-maroon + titleFont: font + titleFontColor: dark_gray + stageBackground: bleached-peach + } + dialog-panel: { + background: panel-orange + titleFont: font + titleFontColor: dark_gray + stageBackground: bleached-peach + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.png b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.png new file mode 100644 index 0000000..a755337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/dark-peel-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-export.fnt new file mode 100644 index 0000000..e92a809 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-export.fnt @@ -0,0 +1,104 @@ +info face="E:\workspace\Orange Peel Skin\output\font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=107 scaleH=108 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=102 y=74 width=4 height=13 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=36 y=66 width=7 height=6 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=35 y=73 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=76 y=25 width=8 height=16 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=16 width=15 height=13 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=12 y=91 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=91 y=97 width=3 height=6 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=99 y=19 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=99 y=0 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=35 y=100 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=45 y=81 width=9 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=85 y=34 width=4 height=7 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=16 y=39 width=5 height=3 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=79 y=103 width=4 height=4 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=85 y=17 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=45 y=92 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=84 y=83 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=37 y=38 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=76 y=0 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=37 y=0 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=75 y=65 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=67 y=0 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=47 y=14 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=47 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=55 y=92 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=95 y=97 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=98 y=60 width=4 height=13 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=65 y=76 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=15 y=56 width=9 height=6 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=47 y=27 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=84 y=55 width=7 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=15 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=14 y=63 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=16 y=13 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=56 y=49 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=15 y=43 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=75 y=90 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=84 y=42 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=57 y=13 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=66 y=41 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=102 y=88 width=3 height=12 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=67 y=25 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=24 y=90 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=84 y=70 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=93 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=57 y=0 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=12 y=77 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=65 y=85 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=77 width=11 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=65 y=63 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=57 y=27 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=26 y=39 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=24 y=76 width=10 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=16 y=0 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=30 width=15 height=12 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=16 y=26 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=55 y=65 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=47 y=36 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=97 y=80 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=92 y=0 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=92 y=80 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=57 y=41 width=8 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=12 y=105 width=9 height=2 xoffset=0 yoffset=18 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=74 y=103 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=75 y=54 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=45 y=66 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=67 y=14 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=37 y=23 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=75 y=79 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=92 y=31 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=36 y=52 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=35 y=86 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=103 y=38 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=92 y=62 width=5 height=17 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=46 y=51 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=98 y=45 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=43 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=65 y=98 width=8 height=9 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=26 y=52 width=9 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=27 y=14 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=27 y=0 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=84 y=96 width=6 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=76 y=14 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=92 y=17 width=6 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=27 y=28 width=9 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=26 y=63 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=53 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=37 y=13 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=55 y=78 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=76 y=42 width=7 height=9 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=92 y=45 width=5 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=103 y=52 width=2 height=19 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=85 y=0 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=24 y=103 width=9 height=4 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=66 y=54 width=5 height=5 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=63 width=13 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-shortcut-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-shortcut-export.fnt new file mode 100644 index 0000000..8771fd9 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-shortcut-export.fnt @@ -0,0 +1,105 @@ +info face="font-shortcut-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=11 base=11 scaleW=128 scaleH=64 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-shortcut-export.png" +chars count=99 +char id=33 x=95 y=25 width=2 height=8 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=73 y=59 width=4 height=4 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=52 y=45 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="#" +char id=36 x=59 y=47 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="$" +char id=37 x=0 y=21 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=13 y=0 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=95 y=13 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=85 y=19 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=90 y=25 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=59 y=58 width=5 height=5 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=13 y=9 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=86 y=12 width=3 height=4 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=78 y=61 width=4 height=2 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=22 y=24 width=2 height=2 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=60 y=9 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=53 y=20 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="0" +char id=49 x=80 y=0 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=59 y=29 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=73 y=27 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=67 y=18 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="4" +char id=53 x=80 y=9 width=5 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="5" +char id=54 x=66 y=47 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=66 y=29 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=59 y=38 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=67 y=0 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=95 y=18 width=2 height=6 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=94 y=38 width=3 height=8 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=11 y=37 width=8 height=8 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=0 y=58 width=8 height=3 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=11 y=46 width=8 height=8 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=80 y=19 width=4 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=11 y=55 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="A" +char id=66 x=29 y=54 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=73 y=36 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="C" +char id=68 x=30 y=0 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=67 y=9 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=52 y=36 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=37 y=27 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=37 y=36 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=90 y=38 width=3 height=8 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=86 y=0 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=30 y=9 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=66 y=38 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=11 y=28 width=9 height=8 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=20 y=46 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=38 y=18 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="O" +char id=80 x=60 y=0 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=29 y=32 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Q" +char id=82 x=45 y=27 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=79 y=45 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="S" +char id=84 x=37 y=55 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=20 y=37 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=20 y=55 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=12 width=12 height=8 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=38 y=0 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=38 y=9 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=30 y=18 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=90 y=47 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=46 y=0 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=94 y=47 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=30 y=27 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=21 y=32 width=5 height=2 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="_" +char id=96 x=85 y=60 width=3 height=3 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=45 y=56 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=45 y=46 width=6 height=9 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=53 y=29 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="c" +char id=100 x=37 y=45 width=7 height=9 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=74 y=19 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="e" +char id=102 x=74 y=9 width=5 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=45 y=36 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=46 y=13 width=6 height=9 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=85 y=32 width=4 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=91 y=0 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=29 y=44 width=7 height=9 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=85 y=41 width=4 height=9 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=11 y=21 width=10 height=6 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=22 y=7 width=7 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=52 y=54 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=53 y=0 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=53 y=10 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=73 y=52 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=73 y=45 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=74 y=0 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=66 y=56 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=22 y=0 width=7 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=41 width=10 height=6 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=60 y=22 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=22 y=14 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=79 y=54 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=80 y=28 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=95 y=0 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=90 y=12 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=21 y=28 width=8 height=3 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="~" +char id=8226 x=85 y=51 width=4 height=5 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=31 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=8984 x=0 y=0 width=12 height=11 xoffset=0 yoffset=1 xadvance=13 page=0 chnl=0 letter="⌘" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-title-export.fnt new file mode 100644 index 0000000..9e9e01f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-dark/font-title-export.fnt @@ -0,0 +1,103 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=184 scaleH=190 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=97 +char id=33 x=177 y=109 width=6 height=23 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=143 y=171 width=11 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=78 y=145 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="#" +char id=36 x=112 y=93 width=15 height=28 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="%" +char id=38 x=0 y=114 width=20 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="&" +char id=39 x=158 y=154 width=6 height=11 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=167 y=142 width=9 height=30 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=169 y=53 width=8 height=30 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=24 y=100 width=12 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=80 y=0 width=16 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=158 y=142 width=8 height=11 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=144 y=112 width=10 height=4 xoffset=0 yoffset=20 xadvance=10 page=0 chnl=0 letter="-" +char id=46 x=143 y=183 width=6 height=6 xoffset=0 yoffset=25 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=143 y=141 width=14 height=29 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=80 y=42 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=144 y=57 width=14 height=22 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=95 y=112 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=114 y=0 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=112 y=70 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=95 y=89 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=112 y=122 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=97 y=47 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="7" +char id=56 x=97 y=0 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="8" +char id=57 x=95 y=151 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=169 y=109 width=7 height=17 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=169 y=30 width=8 height=22 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=95 y=135 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=41 y=178 width=16 height=11 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="=" +char id=62 x=78 y=168 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=143 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=25 height=27 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="@" +char id=65 x=21 y=138 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=97 y=23 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=41 y=124 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=25 y=76 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=128 y=93 width=15 height=23 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=128 y=141 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="F" +char id=71 x=41 y=148 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=45 y=0 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=177 y=133 width=5 height=23 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=128 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="J" +char id=75 x=26 y=48 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=128 y=165 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="L" +char id=77 x=21 y=114 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=45 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=21 y=162 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="O" +char id=80 x=78 y=121 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="P" +char id=81 x=0 y=138 width=20 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=45 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="R" +char id=83 x=80 y=65 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="S" +char id=84 x=26 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=60 y=147 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="U" +char id=86 x=44 y=72 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=24 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=26 y=24 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=41 y=100 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=80 y=18 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=169 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=144 y=80 width=13 height=29 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=159 y=30 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=95 y=174 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=41 y=172 width=17 height=5 xoffset=0 yoffset=30 xadvance=17 page=0 chnl=0 letter="_" +char id=96 x=130 y=57 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=130 y=0 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=78 y=96 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=112 y=170 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="c" +char id=100 x=112 y=145 width=15 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=63 y=50 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=145 y=23 width=12 height=25 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=60 y=121 width=17 height=25 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=129 y=67 width=14 height=24 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=177 y=84 width=6 height=24 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=158 y=80 width=10 height=31 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=63 y=0 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="k" +char id=108 x=169 y=84 width=7 height=24 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=95 width=23 height=18 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=130 y=38 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=60 y=171 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=114 y=23 width=15 height=24 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=63 y=25 width=16 height=24 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=155 y=171 width=11 height=18 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=97 y=70 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="s" +char id=116 x=145 y=0 width=12 height=22 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="t" +char id=117 x=114 y=48 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=63 y=69 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="v" +char id=119 x=0 y=76 width=24 height=18 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0 letter="w" +char id=120 x=0 y=167 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=60 y=96 width=17 height=24 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=130 y=19 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="z" +char id=123 x=158 y=0 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=177 y=157 width=5 height=32 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=158 y=112 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=63 y=88 width=16 height=7 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=159 y=60 width=9 height=11 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-export.fnt new file mode 100644 index 0000000..e92a809 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-export.fnt @@ -0,0 +1,104 @@ +info face="E:\workspace\Orange Peel Skin\output\font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=107 scaleH=108 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=102 y=74 width=4 height=13 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=36 y=66 width=7 height=6 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=35 y=73 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=76 y=25 width=8 height=16 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=16 width=15 height=13 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=12 y=91 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=91 y=97 width=3 height=6 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=99 y=19 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=99 y=0 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=35 y=100 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=45 y=81 width=9 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=85 y=34 width=4 height=7 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=16 y=39 width=5 height=3 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=79 y=103 width=4 height=4 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=85 y=17 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=45 y=92 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=84 y=83 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=37 y=38 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=76 y=0 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=37 y=0 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=75 y=65 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=67 y=0 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=47 y=14 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=47 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=55 y=92 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=95 y=97 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=98 y=60 width=4 height=13 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=65 y=76 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=15 y=56 width=9 height=6 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=47 y=27 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=84 y=55 width=7 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=15 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=14 y=63 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=16 y=13 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=56 y=49 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=15 y=43 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=75 y=90 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=84 y=42 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=57 y=13 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=66 y=41 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=102 y=88 width=3 height=12 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=67 y=25 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=24 y=90 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=84 y=70 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=0 y=93 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=57 y=0 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=12 y=77 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=65 y=85 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=0 y=77 width=11 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=65 y=63 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=57 y=27 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=26 y=39 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=24 y=76 width=10 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=16 y=0 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=30 width=15 height=12 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=16 y=26 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=55 y=65 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=47 y=36 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=97 y=80 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=92 y=0 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=92 y=80 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=57 y=41 width=8 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=12 y=105 width=9 height=2 xoffset=0 yoffset=18 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=74 y=103 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=75 y=54 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=45 y=66 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=67 y=14 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=37 y=23 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=75 y=79 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=92 y=31 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=36 y=52 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=35 y=86 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=103 y=38 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=92 y=62 width=5 height=17 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=46 y=51 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=98 y=45 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=43 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=65 y=98 width=8 height=9 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=26 y=52 width=9 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=27 y=14 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=27 y=0 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=84 y=96 width=6 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=76 y=14 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=92 y=17 width=6 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=27 y=28 width=9 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="u" +char id=118 x=26 y=63 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=53 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=37 y=13 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=55 y=78 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=76 y=42 width=7 height=9 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=92 y=45 width=5 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=103 y=52 width=2 height=19 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=85 y=0 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=24 y=103 width=9 height=4 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=66 y=54 width=5 height=5 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=63 width=13 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-shortcut-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-shortcut-export.fnt new file mode 100644 index 0000000..8771fd9 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-shortcut-export.fnt @@ -0,0 +1,105 @@ +info face="font-shortcut-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=11 base=11 scaleW=128 scaleH=64 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-shortcut-export.png" +chars count=99 +char id=33 x=95 y=25 width=2 height=8 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=73 y=59 width=4 height=4 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=52 y=45 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="#" +char id=36 x=59 y=47 width=6 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="$" +char id=37 x=0 y=21 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=13 y=0 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=95 y=13 width=2 height=4 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=85 y=19 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=90 y=25 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=59 y=58 width=5 height=5 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=13 y=9 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=86 y=12 width=3 height=4 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=78 y=61 width=4 height=2 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=22 y=24 width=2 height=2 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=60 y=9 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=53 y=20 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="0" +char id=49 x=80 y=0 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=59 y=29 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=73 y=27 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="3" +char id=52 x=67 y=18 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="4" +char id=53 x=80 y=9 width=5 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="5" +char id=54 x=66 y=47 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=66 y=29 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=59 y=38 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=67 y=0 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=95 y=18 width=2 height=6 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=94 y=38 width=3 height=8 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=11 y=37 width=8 height=8 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=0 y=58 width=8 height=3 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=11 y=46 width=8 height=8 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=80 y=19 width=4 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=11 y=55 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="A" +char id=66 x=29 y=54 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=73 y=36 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="C" +char id=68 x=30 y=0 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=67 y=9 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=52 y=36 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=37 y=27 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=37 y=36 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=90 y=38 width=3 height=8 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=86 y=0 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="J" +char id=75 x=30 y=9 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=66 y=38 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=11 y=28 width=9 height=8 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=20 y=46 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=38 y=18 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="O" +char id=80 x=60 y=0 width=6 height=8 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=29 y=32 width=7 height=11 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Q" +char id=82 x=45 y=27 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=79 y=45 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="S" +char id=84 x=37 y=55 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=20 y=37 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=20 y=55 width=8 height=8 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=12 width=12 height=8 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=38 y=0 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=38 y=9 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=30 y=18 width=7 height=8 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=90 y=47 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=46 y=0 width=6 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=94 y=47 width=3 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=30 y=27 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="^" +char id=95 x=21 y=32 width=5 height=2 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="_" +char id=96 x=85 y=60 width=3 height=3 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=45 y=56 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=45 y=46 width=6 height=9 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=53 y=29 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="c" +char id=100 x=37 y=45 width=7 height=9 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=74 y=19 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="e" +char id=102 x=74 y=9 width=5 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=45 y=36 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=46 y=13 width=6 height=9 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=85 y=32 width=4 height=8 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=91 y=0 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=29 y=44 width=7 height=9 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=85 y=41 width=4 height=9 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=11 y=21 width=10 height=6 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=22 y=7 width=7 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=52 y=54 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=53 y=0 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=53 y=10 width=6 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=73 y=52 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=73 y=45 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=74 y=0 width=5 height=8 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=66 y=56 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=22 y=0 width=7 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=41 width=10 height=6 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=60 y=22 width=6 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=22 y=14 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=79 y=54 width=5 height=6 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=80 y=28 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=95 y=0 width=2 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=90 y=12 width=4 height=12 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=21 y=28 width=8 height=3 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="~" +char id=8226 x=85 y=51 width=4 height=5 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=31 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=8984 x=0 y=0 width=12 height=11 xoffset=0 yoffset=1 xadvance=13 page=0 chnl=0 letter="⌘" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-title-export.fnt new file mode 100644 index 0000000..9e9e01f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/font-title-export.fnt @@ -0,0 +1,103 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=184 scaleH=190 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=97 +char id=33 x=177 y=109 width=6 height=23 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=143 y=171 width=11 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=78 y=145 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="#" +char id=36 x=112 y=93 width=15 height=28 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="%" +char id=38 x=0 y=114 width=20 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="&" +char id=39 x=158 y=154 width=6 height=11 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=167 y=142 width=9 height=30 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=169 y=53 width=8 height=30 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=24 y=100 width=12 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=80 y=0 width=16 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=158 y=142 width=8 height=11 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=144 y=112 width=10 height=4 xoffset=0 yoffset=20 xadvance=10 page=0 chnl=0 letter="-" +char id=46 x=143 y=183 width=6 height=6 xoffset=0 yoffset=25 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=143 y=141 width=14 height=29 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=80 y=42 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=144 y=57 width=14 height=22 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=95 y=112 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=114 y=0 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=112 y=70 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=95 y=89 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=112 y=122 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=97 y=47 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="7" +char id=56 x=97 y=0 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="8" +char id=57 x=95 y=151 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=169 y=109 width=7 height=17 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=169 y=30 width=8 height=22 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=95 y=135 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=41 y=178 width=16 height=11 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="=" +char id=62 x=78 y=168 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=143 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=25 height=27 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="@" +char id=65 x=21 y=138 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=97 y=23 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=41 y=124 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=25 y=76 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=128 y=93 width=15 height=23 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=128 y=141 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="F" +char id=71 x=41 y=148 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=45 y=0 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=177 y=133 width=5 height=23 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=128 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="J" +char id=75 x=26 y=48 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=128 y=165 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="L" +char id=77 x=21 y=114 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=45 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=21 y=162 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="O" +char id=80 x=78 y=121 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="P" +char id=81 x=0 y=138 width=20 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=45 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="R" +char id=83 x=80 y=65 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="S" +char id=84 x=26 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=60 y=147 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="U" +char id=86 x=44 y=72 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=24 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=26 y=24 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=41 y=100 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=80 y=18 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=169 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=144 y=80 width=13 height=29 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=159 y=30 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=95 y=174 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=41 y=172 width=17 height=5 xoffset=0 yoffset=30 xadvance=17 page=0 chnl=0 letter="_" +char id=96 x=130 y=57 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=130 y=0 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=78 y=96 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=112 y=170 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="c" +char id=100 x=112 y=145 width=15 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=63 y=50 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=145 y=23 width=12 height=25 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=60 y=121 width=17 height=25 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=129 y=67 width=14 height=24 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=177 y=84 width=6 height=24 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=158 y=80 width=10 height=31 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=63 y=0 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="k" +char id=108 x=169 y=84 width=7 height=24 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=95 width=23 height=18 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=130 y=38 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=60 y=171 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=114 y=23 width=15 height=24 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=63 y=25 width=16 height=24 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=155 y=171 width=11 height=18 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=97 y=70 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="s" +char id=116 x=145 y=0 width=12 height=22 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="t" +char id=117 x=114 y=48 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=63 y=69 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="v" +char id=119 x=0 y=76 width=24 height=18 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0 letter="w" +char id=120 x=0 y=167 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=60 y=96 width=17 height=24 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=130 y=19 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="z" +char id=123 x=158 y=0 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=177 y=157 width=5 height=32 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=158 y=112 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=63 y=88 width=16 height=7 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=159 y=60 width=9 height=11 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.atlas new file mode 100644 index 0000000..5ac7239 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.atlas @@ -0,0 +1,1620 @@ + +uiskin.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bleached-peach + rotate: false + xy: 307, 831 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +button-color + rotate: false + xy: 390, 881 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +button-color-down + rotate: false + xy: 385, 857 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +button-color-hover + rotate: false + xy: 414, 881 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +button-gray + rotate: false + xy: 333, 973 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-maroon + rotate: false + xy: 118, 235 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-maroon-down + rotate: false + xy: 385, 973 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange + rotate: false + xy: 118, 183 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-down + rotate: false + xy: 170, 235 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-down-over + rotate: false + xy: 437, 973 + size: 50, 50 + split: 7, 6, 7, 6 + pad: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-over + rotate: false + xy: 118, 131 + size: 50, 50 + split: 7, 6, 7, 6 + pad: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +check-box + rotate: false + xy: 1008, 927 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-off + rotate: false + xy: 1008, 910 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-off-over + rotate: false + xy: 731, 868 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-over + rotate: false + xy: 748, 868 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +close-button + rotate: false + xy: 287, 453 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt + rotate: false + xy: 287, 453 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt-down + rotate: false + xy: 287, 433 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt-highlight + rotate: false + xy: 287, 413 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-down + rotate: false + xy: 287, 393 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-highlight + rotate: false + xy: 578, 865 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +color-box + rotate: false + xy: 104, 32 + size: 12, 12 + split: 2, 2, 2, 2 + orig: 12, 12 + offset: 0, 0 + index: -1 +color-picker + rotate: false + xy: 274, 95 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +color-scale + rotate: false + xy: 204, 12 + size: 16, 13 + orig: 16, 13 + offset: 0, 0 + index: -1 +color-scale-flipped + rotate: false + xy: 713, 870 + size: 16, 13 + orig: 16, 13 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 222, 282 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +dark-dim-orange + rotate: false + xy: 867, 903 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-gray + rotate: false + xy: 311, 831 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-maroon + rotate: false + xy: 867, 899 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-orange + rotate: false + xy: 315, 831 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dim-orange + rotate: false + xy: 379, 846 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +folder + rotate: false + xy: 355, 879 + size: 28, 18 + orig: 28, 18 + offset: 0, 0 + index: -1 +folder-open + rotate: false + xy: 291, 635 + size: 28, 18 + orig: 28, 18 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 118, 287 + size: 107, 108 + orig: 107, 108 + offset: 0, 0 + index: -1 +font-shortcut-export + rotate: false + xy: 203, 959 + size: 128, 64 + orig: 128, 64 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 631 + size: 184, 190 + orig: 184, 190 + offset: 0, 0 + index: -1 +gray + rotate: false + xy: 350, 856 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +image-color-wheel + rotate: false + xy: 274, 70 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +image-delete + rotate: false + xy: 47, 27 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-delete-disabled + rotate: false + xy: 66, 27 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-delete-down + rotate: false + xy: 85, 27 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-duplicate + rotate: false + xy: 273, 46 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +image-duplicate-down + rotate: false + xy: 273, 22 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +image-font + rotate: false + xy: 941, 925 + size: 36, 23 + orig: 36, 23 + offset: 0, 0 + index: -1 +image-help + rotate: false + xy: 421, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-help-disabled + rotate: false + xy: 451, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-help-down + rotate: false + xy: 481, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-info + rotate: false + xy: 350, 821 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-info-disabled + rotate: false + xy: 511, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-info-down + rotate: false + xy: 979, 915 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-label + rotate: false + xy: 1, 32 + size: 44, 12 + orig: 44, 12 + offset: 0, 0 + index: -1 +image-left + rotate: false + xy: 541, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-left-disabled + rotate: false + xy: 571, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-left-down + rotate: false + xy: 601, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-list + rotate: false + xy: 274, 121 + size: 25, 36 + orig: 25, 36 + offset: 0, 0 + index: -1 +image-minus + rotate: false + xy: 307, 796 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-minus-disabled + rotate: false + xy: 307, 790 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-minus-down + rotate: false + xy: 385, 851 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-music + rotate: false + xy: 631, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-disabled + rotate: false + xy: 661, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-down + rotate: false + xy: 691, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off + rotate: false + xy: 721, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off-copy-down + rotate: false + xy: 751, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off-disabled + rotate: false + xy: 781, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-plus + rotate: false + xy: 409, 857 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-plus-disabled + rotate: false + xy: 438, 883 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-plus-down + rotate: false + xy: 462, 883 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-portrait + rotate: false + xy: 274, 159 + size: 26, 39 + orig: 26, 39 + offset: 0, 0 + index: -1 +image-right + rotate: false + xy: 279, 345 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-right-disabled + rotate: false + xy: 811, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-right-down + rotate: false + xy: 279, 316 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-scrollbar + rotate: false + xy: 320, 897 + size: 33, 37 + orig: 33, 37 + offset: 0, 0 + index: -1 +image-settings + rotate: false + xy: 841, 907 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-settings-disabled + rotate: false + xy: 355, 850 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-settings-down + rotate: false + xy: 320, 831 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound + rotate: false + xy: 279, 287 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-disabled + rotate: false + xy: 307, 802 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound-down + rotate: false + xy: 279, 258 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-off + rotate: false + xy: 274, 229 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-off-disabled + rotate: false + xy: 988, 944 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound-off-down + rotate: false + xy: 274, 200 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +light-gray + rotate: false + xy: 979, 946 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +maroon + rotate: false + xy: 274, 266 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +menu-button-dark-maroon + rotate: false + xy: 578, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-dark-orange + rotate: false + xy: 600, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-dark-orange-over + rotate: false + xy: 622, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-maroon + rotate: false + xy: 644, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-orange + rotate: false + xy: 666, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-orange-over + rotate: false + xy: 688, 885 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-center + rotate: false + xy: 170, 183 + size: 50, 50 + split: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-center-over + rotate: false + xy: 489, 973 + size: 50, 50 + split: 2, 2, 0, 0 + pad: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-center + rotate: false + xy: 118, 79 + size: 50, 50 + split: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-down + rotate: false + xy: 170, 131 + size: 50, 50 + split: 5, 5, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-left + rotate: false + xy: 541, 973 + size: 50, 50 + split: 5, 1, 5, 5 + pad: 5, 1, 1, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-middle + rotate: false + xy: 170, 79 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-right + rotate: false + xy: 593, 973 + size: 50, 50 + split: 1, 5, 5, 5 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-disabled-up + rotate: false + xy: 645, 973 + size: 50, 50 + split: 5, 5, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down + rotate: false + xy: 697, 973 + size: 50, 50 + split: 0, 0, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-center + rotate: false + xy: 749, 973 + size: 50, 50 + split: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-center-over + rotate: false + xy: 801, 973 + size: 50, 50 + split: 2, 2, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-down + rotate: false + xy: 853, 973 + size: 50, 50 + split: 5, 5, 1, 5 + pad: 0, 0, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-down-over + rotate: false + xy: 905, 973 + size: 50, 50 + split: 6, 7, 2, 7 + pad: 1, 1, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-left + rotate: false + xy: 957, 973 + size: 50, 50 + split: 5, 0, 5, 4 + pad: 5, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-left-over + rotate: false + xy: 118, 27 + size: 50, 50 + split: 27, 20, 23, 21 + pad: 5, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-middle + rotate: false + xy: 170, 27 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-middle-over + rotate: false + xy: 203, 790 + size: 50, 50 + split: 21, 20, 2, 11 + pad: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-over + rotate: false + xy: 255, 790 + size: 50, 50 + split: 27, 14, 19, 15 + pad: 0, 0, 2, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-right + rotate: false + xy: 187, 738 + size: 50, 50 + split: 1, 5, 5, 5 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-right-over + rotate: false + xy: 187, 686 + size: 50, 50 + split: 23, 23, 22, 22 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-up + rotate: false + xy: 239, 738 + size: 50, 50 + split: 5, 5, 5, 1 + pad: 0, 0, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-up-over + rotate: false + xy: 187, 634 + size: 50, 50 + split: 23, 15, 23, 18 + pad: 0, 1, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-left + rotate: false + xy: 239, 686 + size: 50, 50 + split: 5, 1, 5, 5 + pad: 5, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-left-over + rotate: false + xy: 239, 634 + size: 50, 50 + split: 26, 20, 22, 19 + pad: 5, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-middle + rotate: false + xy: 235, 582 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-middle-over + rotate: false + xy: 235, 530 + size: 50, 50 + split: 24, 21, 26, 17 + pad: 0, 0, 1, 2 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-right + rotate: false + xy: 235, 478 + size: 50, 50 + split: 1, 5, 5, 5 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-right-over + rotate: false + xy: 235, 426 + size: 50, 50 + split: 21, 24, 20, 21 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-up + rotate: false + xy: 235, 374 + size: 50, 50 + split: 5, 5, 5, 1 + pad: 0, 0, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-up-over + rotate: false + xy: 227, 322 + size: 50, 50 + split: 26, 21, 26, 14 + pad: 0, 0, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 309, 618 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +old + rotate: false + xy: 187, 804 + size: 14, 17 + orig: 14, 17 + offset: 0, 0 + index: -1 +old1 + rotate: false + xy: 104, 27 + size: 12, 3 + orig: 12, 3 + offset: 0, 0 + index: -1 +old2 + rotate: false + xy: 963, 917 + size: 12, 6 + orig: 12, 6 + offset: 0, 0 + index: -1 +orange + rotate: false + xy: 385, 895 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +panel-maroon + rotate: false + xy: 710, 885 + size: 20, 20 + split: 6, 6, 7, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +panel-orange + rotate: false + xy: 732, 885 + size: 20, 20 + split: 6, 6, 7, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +panel-peach + rotate: false + xy: 754, 885 + size: 20, 20 + split: 6, 6, 7, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +peach + rotate: false + xy: 433, 877 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 309, 601 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 309, 587 + size: 15, 12 + split: 6, 4, 5, 5 + pad: 6, 0, 0, 0 + orig: 15, 12 + offset: 0, 0 + index: -1 +progress-bar-before-knob + rotate: false + xy: 187, 790 + size: 9, 12 + split: 0, 6, 0, 0 + orig: 9, 12 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 309, 570 + size: 12, 15 + split: 5, 5, 4, 6 + pad: 0, 0, 0, 6 + orig: 12, 15 + offset: 0, 0 + index: -1 +progress-bar-vertical-before-knob + rotate: false + xy: 204, 1 + size: 12, 9 + split: 0, 0, 6, 0 + orig: 12, 9 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 618, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 637, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-off-over + rotate: false + xy: 656, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-over + rotate: false + xy: 675, 867 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +round-dark-gray + rotate: false + xy: 273, 1 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-maroon + rotate: false + xy: 294, 1 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-orange + rotate: false + xy: 776, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-orange-over + rotate: false + xy: 287, 515 + size: 19, 19 + split: 7, 6, 7, 6 + pad: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-gray + rotate: false + xy: 797, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-light-gray + rotate: false + xy: 287, 494 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-maroon + rotate: false + xy: 818, 886 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-orange + rotate: false + xy: 287, 473 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-orange-over + rotate: false + xy: 839, 886 + size: 19, 19 + split: 10, 8, 8, 8 + pad: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +scrollbar + rotate: false + xy: 694, 865 + size: 17, 18 + split: 5, 5, 8, 8 + pad: 0, 0, 0, 0 + orig: 17, 18 + offset: 0, 0 + index: -1 +scrollbar-android + rotate: false + xy: 320, 952 + size: 10, 5 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 10, 5 + offset: 0, 0 + index: -1 +scrollbar-android-knob + rotate: false + xy: 307, 835 + size: 10, 5 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 10, 5 + offset: 0, 0 + index: -1 +scrollbar-android-vertical + rotate: false + xy: 337, 819 + size: 5, 10 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 10 + offset: 0, 0 + index: -1 +scrollbar-android-vertical-knob + rotate: false + xy: 860, 895 + size: 5, 10 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 10 + offset: 0, 0 + index: -1 +scrollbar-knob + rotate: false + xy: 598, 865 + size: 18, 18 + split: 5, 5, 5, 5 + pad: 0, 0, 0, 0 + orig: 18, 18 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 287, 374 + size: 18, 17 + split: 8, 8, 5, 5 + pad: 0, 0, 0, 0 + orig: 18, 17 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 227, 270 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-down + rotate: false + xy: 222, 218 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-down-over + rotate: false + xy: 222, 166 + size: 50, 50 + split: 11, 33, 11, 34 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 222, 114 + size: 50, 50 + split: 12, 34, 10, 36 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-slim + rotate: false + xy: 1, 1 + size: 50, 24 + split: 5, 29, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +select-box-slim-down + rotate: false + xy: 222, 88 + size: 50, 24 + split: 5, 29, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +select-box-slim-down-over + rotate: false + xy: 53, 1 + size: 50, 24 + split: 12, 35, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +select-box-slim-over + rotate: false + xy: 105, 1 + size: 50, 24 + split: 13, 34, 5, 18 + pad: 5, 29, 1, 1 + orig: 50, 24 + offset: 0, 0 + index: -1 +slider-bar-knob + rotate: false + xy: 1009, 1009 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +spinner-minus + rotate: false + xy: 871, 899 + size: 21, 35 + split: 16, 3, 9, 24 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-down + rotate: false + xy: 894, 890 + size: 21, 35 + split: 16, 4, 10, 22 + pad: 1, 2, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-down-over + rotate: false + xy: 917, 890 + size: 21, 35 + split: 16, 4, 13, 20 + pad: 1, 2, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-over + rotate: false + xy: 940, 888 + size: 21, 35 + split: 16, 3, 10, 23 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus + rotate: false + xy: 486, 870 + size: 21, 35 + split: 3, 17, 7, 25 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-down + rotate: false + xy: 509, 870 + size: 21, 35 + split: 1, 15, 6, 22 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-down-over + rotate: false + xy: 532, 870 + size: 21, 35 + split: 4, 16, 8, 25 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-over + rotate: false + xy: 555, 870 + size: 21, 35 + split: 4, 16, 8, 25 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-text-field + rotate: false + xy: 355, 899 + size: 33, 35 + split: 15, 17, 17, 17 + pad: 5, 5, 6, 6 + orig: 33, 35 + offset: 0, 0 + index: -1 +spinner-text-field-down + rotate: false + xy: 320, 860 + size: 33, 35 + split: 16, 16, 17, 17 + pad: 5, 5, 6, 6 + orig: 33, 35 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 227, 389 + size: 6, 6 + split: 2, 2, 2, 2 + orig: 6, 6 + offset: 0, 0 + index: -1 +switch + rotate: false + xy: 157, 4 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-off + rotate: false + xy: 894, 950 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-text + rotate: false + xy: 941, 950 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-text-off + rotate: false + xy: 894, 927 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 222, 51 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-disabled + rotate: false + xy: 222, 14 + size: 49, 35 + split: 7, 6, 6, 6 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-disabled-alt + rotate: false + xy: 333, 936 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-down + rotate: false + xy: 384, 936 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login + rotate: false + xy: 435, 936 + size: 49, 35 + split: 6, 27, 7, 27 + pad: 6, 27, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login-disabled + rotate: false + xy: 486, 936 + size: 49, 35 + split: 6, 26, 7, 27 + pad: 6, 26, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login-down + rotate: false + xy: 537, 936 + size: 49, 35 + split: 6, 26, 6, 28 + pad: 6, 27, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password + rotate: false + xy: 588, 936 + size: 49, 35 + split: 6, 25, 7, 25 + pad: 6, 25, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password-disabled + rotate: false + xy: 639, 936 + size: 49, 35 + split: 6, 25, 7, 24 + pad: 6, 25, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password-down + rotate: false + xy: 690, 936 + size: 49, 35 + split: 6, 25, 7, 24 + pad: 6, 25, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search + rotate: false + xy: 741, 936 + size: 49, 35 + split: 6, 31, 5, 29 + pad: 6, 31, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search-disabled + rotate: false + xy: 792, 936 + size: 49, 35 + split: 6, 31, 5, 29 + pad: 6, 31, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search-down + rotate: false + xy: 843, 936 + size: 49, 35 + split: 6, 31, 4, 30 + pad: 6, 31, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 823 + size: 200, 200 + split: 98, 92, 89, 85 + pad: 1, 0, 0, 0 + orig: 200, 200 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 390, 905 + size: 29, 29 + orig: 29, 29 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 303, 205 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +window-large + rotate: false + xy: 291, 655 + size: 30, 133 + split: 6, 6, 112, 6 + pad: 3, 3, 112, 6 + orig: 30, 133 + offset: 0, 0 + index: -1 +window-maroon + rotate: false + xy: 303, 209 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 30, 6 + orig: 20, 47 + offset: 0, 0 + index: -1 +window-orange + rotate: false + xy: 287, 585 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 30, 6 + orig: 20, 47 + offset: 0, 0 + index: -1 +window-peach + rotate: false + xy: 287, 536 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 30, 6 + orig: 20, 47 + offset: 0, 0 + index: -1 +loading_0 + rotate: false + xy: 1, 514 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_1 + rotate: false + xy: 203, 842 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_2 + rotate: false + xy: 1, 397 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_3 + rotate: false + xy: 1, 280 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_4 + rotate: false + xy: 1, 163 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_5 + rotate: false + xy: 1, 46 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_6 + rotate: false + xy: 118, 514 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +loading_7 + rotate: false + xy: 118, 397 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.json b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.json new file mode 100644 index 0000000..50c46fe --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.json @@ -0,0 +1,731 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + font-shortcut: { + file: font-shortcut-export.fnt + } + font-title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + gray: { + r: 0.42745098 + g: 0.3647059 + b: 0.3019608 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } + dark_gray: { + r: 0.3019608 + g: 0.3019608 + b: 0.3019608 + a: 1 + } + orange: { + r: 1 + g: 0.627451 + b: 0.08235294 + a: 1 + } + maroon: { + r: 0.6 + g: 0.05490196 + b: 0.2627451 + a: 1 + } + peach: { + r: 0.91764706 + g: 0.6862745 + b: 0.5137255 + a: 1 + } + purple: { + r: 0.33333334 + g: 0.101960786 + b: 0.54509807 + a: 1 + } + light_gray: { + r: 0.61960787 + g: 0.5411765 + b: 0.44313726 + a: 1 + } + bleached_peach: { + r: 0.9372549 + g: 0.8980392 + b: 0.8627451 + a: 1 + } + blue: { + r: 0 + g: 0 + b: 0.93333334 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + color: { + up: button-color + down: button-color-down + over: button-color-hover + } + toggle: { + up: button-orange + down: button-orange-down + over: button-orange-over + checked: button-orange-down + checkedOver: button-orange-down-over + } + spinner-plus: { + up: spinner-plus + down: spinner-plus-down + over: spinner-plus-over + } + maroon: { + up: button-maroon + down: button-maroon-down + } + maroon-toggle: { + up: button-maroon + down: button-maroon-down + checked: button-maroon-down + } + close-alt: { + up: close-button-alt + down: close-button-alt-down + over: close-button-alt-highlight + } + close: { + up: close-button + down: close-button-down + over: close-button-highlight + } + spinner-minus: { + up: spinner-minus + down: spinner-minus-down + over: spinner-minus-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-box + checkboxOff: check-box-off + font: font + fontColor: orange + overFontColor: maroon + } + switch-text: { + checkboxOn: switch-text + checkboxOff: switch-text-off + font: font + fontColor: orange + overFontColor: maroon + } + switch: { + checkboxOn: switch + checkboxOff: switch-off + font: font + fontColor: orange + overFontColor: maroon + } + radio: { + checkboxOn: radio-button + checkboxOff: radio-button-off + font: font + fontColor: orange + overFontColor: maroon + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + settings: { + imageUp: image-settings + imageDown: image-settings-down + imageDisabled: image-settings-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + orange-small: { + up: round-orange + down: round-dark-orange + over: round-orange-over + } + music: { + imageUp: image-music-off + imageDown: image-music-down + imageChecked: image-music + imageDisabled: image-music-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + help: { + imageUp: image-help + imageDown: image-help-down + imageDisabled: image-help-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-up: { + up: menu-up + down: menu-down-up + over: menu-up-over + disabled: menu-disabled-up + } + left: { + imageUp: image-left + imageDown: image-left-down + imageDisabled: image-left-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-right: { + up: menu-right + down: menu-down-right + over: menu-right-over + disabled: menu-disabled-right + } + menu-down: { + up: menu-down + down: menu-down-down + over: menu-down-over + disabled: menu-disabled-down + } + menu-middle: { + up: menu-middle + down: menu-down-middle + over: menu-middle-over + disabled: menu-disabled-middle + } + sound: { + imageUp: image-sound-off + imageDown: image-sound-down + imageChecked: image-sound + imageDisabled: image-sound-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-left: { + up: menu-left + down: menu-down-left + over: menu-left-over + disabled: menu-disabled-left + } + info: { + imageUp: image-info + imageDown: image-info-down + imageDisabled: image-info-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + right: { + imageUp: image-right + imageDown: image-right-down + imageDisabled: image-right-disabled + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-center: { + up: menu-center + down: menu-down-center + over: menu-center-over + disabled: menu-disabled-center + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: white + downFontColor: maroon + disabledFontColor: dark_gray + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: orange + } + optional: { + font: font + fontColor: bleached_peach + } + error: { + font: font + fontColor: maroon + } + white: { + font: font + fontColor: white + } + peach: { + font: font + fontColor: peach + } + title-white: { + font: font-title + fontColor: white + } + title: { + font: font-title + fontColor: orange + } + shortcut: { + font: font-shortcut + fontColor: bleached_peach + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: white + selection: maroon + } + dimmed: { + font: font + fontColorSelected: white + fontColorUnselected: maroon + selection: maroon + background: peach + } + alt: { + font: font + fontColorSelected: white + fontColorUnselected: maroon + selection: orange + background: bleached-peach + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-before-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-vertical-before-knob + } + default: { + background: progress-bar + knobBefore: progress-bar-before-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: dim-orange + hScroll: scrollbar + hScrollKnob: scrollbar-knob + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-knob + } + android: { + background: dim-orange + hScroll: scrollbar-android + hScrollKnob: scrollbar-android-knob + vScroll: scrollbar-android-vertical + vScrollKnob: scrollbar-android-vertical-knob + } + no-bg: { + hScroll: scrollbar + hScrollKnob: scrollbar-knob + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-knob + } + android-no-bg: { + hScroll: scrollbar-android + hScrollKnob: scrollbar-android-knob + vScroll: scrollbar-android-vertical + vScrollKnob: scrollbar-android-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: default + backgroundOver: select-box-over + backgroundOpen: select-box-down + } + dimmed: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: dimmed + backgroundOver: select-box-over + backgroundOpen: select-box-down + } + alt: { + font: font + fontColor: white + background: select-box + scrollStyle: default + listStyle: alt + backgroundOver: select-box-over + backgroundOpen: select-box-down + } + slim-dimmed: { + font: font + fontColor: white + background: select-box-slim + scrollStyle: default + listStyle: dimmed + backgroundOver: select-box-slim-over + backgroundOpen: select-box-slim-down + } + slim-alt: { + font: font + fontColor: white + background: select-box-slim + scrollStyle: default + listStyle: alt + backgroundOver: select-box-slim-over + backgroundOpen: select-box-slim-down + } + slim: { + font: font + fontColor: white + background: select-box-slim + scrollStyle: default + listStyle: default + backgroundOver: select-box-slim-over + backgroundOpen: select-box-slim-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: scrollbar-android + knob: slider-bar-knob + knobBefore: scrollbar-android-knob + } + default-vertical: { + background: scrollbar-android-vertical + knob: slider-bar-knob + knobBefore: scrollbar-android-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane + } + default-vertical: { + handle: splitpane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: white + downFontColor: maroon + disabledFontColor: dark_gray + up: button-orange + down: button-orange-down + over: button-orange-over + disabled: button-gray + } + menu-item: { + font: font + fontColor: maroon + downFontColor: white + overFontColor: white + disabledFontColor: gray + up: menu-button-dark-orange + down: menu-button-orange + } + orange-small: { + font: font + fontColor: white + downFontColor: maroon + up: round-orange + down: round-dark-orange + over: round-orange-over + } + maroon-small: { + font: font + fontColor: white + downFontColor: orange + up: round-maroon + down: round-dark-maroon + } + maroon: { + font: font + fontColor: white + downFontColor: orange + up: button-maroon + down: button-maroon-down + } + maroon-toggle: { + font: font + fontColor: white + downFontColor: orange + checkedFontColor: orange + up: button-maroon + down: button-maroon-down + checked: button-maroon-down + } + toggle: { + font: font + fontColor: white + downFontColor: maroon + up: button-orange + down: button-orange-down + over: button-orange-over + checked: button-orange-down + checkedOver: button-orange-down-over + } + maroon-small-toggle: { + font: font + fontColor: white + downFontColor: orange + checkedFontColor: orange + up: round-maroon + down: round-dark-maroon + checked: round-dark-maroon + } + orange-small-toggle: { + font: font + fontColor: white + downFontColor: maroon + checkedFontColor: maroon + up: round-orange + down: round-dark-orange + over: round-orange-over + checked: round-dark-orange + checkedOver: round-dark-orange-over + } + link: { + font: font + fontColor: blue + downFontColor: purple + } + menu-item-maroon: { + font: font + fontColor: orange + downFontColor: white + overFontColor: white + disabledFontColor: gray + up: menu-button-dark-maroon + down: menu-button-maroon + } + menu-maroon: { + font: font + fontColor: white + downFontColor: orange + checkedFontColor: orange + disabledFontColor: gray + up: menu-button-maroon + down: menu-button-dark-maroon + checked: menu-button-dark-maroon + } + menu: { + font: font + fontColor: white + downFontColor: maroon + checkedFontColor: maroon + disabledFontColor: gray + up: menu-button-orange + down: menu-button-dark-orange + over: menu-button-orange-over + checked: menu-button-dark-orange + checkedOver: menu-button-dark-orange-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield + focusedBackground: textfield-down + disabledBackground: textfield-disabled + cursor: maroon + selection: dim-orange + messageFont: font + messageFontColor: bleached_peach + } + alt: { + font: font + fontColor: maroon + background: textfield-disabled-alt + } + search: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield-search + focusedBackground: textfield-search-down + disabledBackground: textfield-search-disabled + cursor: maroon + selection: dim-orange + messageFont: font + messageFontColor: bleached_peach + } + login: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield-login + focusedBackground: textfield-login-down + disabledBackground: textfield-login-disabled + cursor: maroon + selection: dim-orange + messageFont: font + messageFontColor: bleached_peach + } + spinner: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: spinner-text-field + focusedBackground: spinner-text-field-down + disabledBackground: textfield-disabled + cursor: maroon + selection: dim-orange + messageFont: font + messageFontColor: bleached_peach + } + password: { + font: font + fontColor: maroon + disabledFontColor: dark_gray + background: textfield-password + focusedBackground: textfield-password-down + disabledBackground: textfield-password-disabled + cursor: maroon + selection: dim-orange + messageFont: font + messageFontColor: bleached_peach + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: round-dark-gray + wrapWidth: 150 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: round-maroon + } + folder: { + plus: folder + minus: folder-open + selection: round-maroon + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-orange + titleFont: font + titleFontColor: white + } + dialog-panel-peach: { + background: panel-peach + titleFont: font + titleFontColor: dark_gray + stageBackground: bleached-peach + } + panel: { + background: panel-orange + titleFont: font + titleFontColor: dark_gray + } + dialog: { + background: window-orange + titleFont: font + titleFontColor: white + stageBackground: bleached-peach + } + maroon: { + background: window-maroon + titleFont: font + titleFontColor: white + } + peach: { + background: window-peach + titleFont: font + titleFontColor: white + } + dialog-large: { + background: window-large + titleFont: font + titleFontColor: white + stageBackground: bleached-peach + } + panel-maroon: { + background: panel-maroon + titleFont: font + titleFontColor: dark_gray + } + panel-peach: { + background: panel-peach + titleFont: font + titleFontColor: dark_gray + } + large: { + background: window-large + titleFont: font + titleFontColor: white + } + dialog-panel-maroon: { + background: panel-maroon + titleFont: font + titleFontColor: dark_gray + stageBackground: bleached-peach + } + dialog-panel: { + background: panel-orange + titleFont: font + titleFontColor: dark_gray + stageBackground: bleached-peach + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.png b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.png new file mode 100644 index 0000000..cf49298 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/skin/extras/skin-composer-light/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/font-export.fnt new file mode 100644 index 0000000..d7706b8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/font-export.fnt @@ -0,0 +1,103 @@ +info face="E:\workspace\Orange Peel Skin\output\font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=17 base=17 scaleW=107 scaleH=108 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=97 +char id=33 x=102 y=36 width=4 height=13 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=64 y=101 width=7 height=6 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=44 y=81 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=67 y=11 width=8 height=16 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=15 height=13 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=0 y=63 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=27 y=33 width=3 height=6 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=98 y=0 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=97 y=58 width=4 height=18 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=66 y=28 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="*" +char id=43 x=46 y=28 width=9 height=10 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=91 y=59 width=4 height=7 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=72 y=104 width=5 height=3 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=15 y=56 width=4 height=4 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=83 y=74 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=47 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=84 y=11 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=54 y=88 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=65 y=37 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=44 y=68 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=74 y=39 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=74 y=90 width=8 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=64 y=79 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="7" +char id=56 x=57 y=14 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=57 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=102 y=77 width=3 height=10 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=97 y=92 width=4 height=13 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=64 y=92 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=54 y=101 width=9 height=6 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=56 y=28 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=83 y=38 width=7 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=27 width=15 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=0 y=77 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=23 y=92 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=64 y=52 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=12 y=92 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=74 y=66 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=74 y=53 width=8 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=44 y=94 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=54 y=75 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="H" +char id=73 x=102 y=64 width=3 height=12 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=83 y=24 width=7 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=15 y=43 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=76 y=11 width=7 height=12 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=12 y=79 width=11 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=64 y=66 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=90 width=11 height=13 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="O" +char id=80 x=37 y=0 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=12 y=63 width=11 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Q" +char id=82 x=55 y=39 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=45 y=48 width=9 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=24 y=56 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=16 y=26 width=10 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=16 y=0 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=14 width=15 height=12 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=16 y=13 width=10 height=12 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=54 y=62 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=47 y=14 width=9 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=97 y=41 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=90 y=88 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=98 y=19 width=4 height=16 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=46 y=39 width=8 height=7 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=105 width=9 height=2 xoffset=0 yoffset=18 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=78 y=104 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=74 y=28 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=37 y=13 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=76 y=0 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=36 y=33 width=9 height=14 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=67 y=0 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=90 y=74 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=35 y=54 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=34 y=83 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=102 y=50 width=3 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=91 y=41 width=5 height=17 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="j" +char id=107 x=27 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=97 y=77 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=53 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=55 y=52 width=8 height=9 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=24 y=79 width=9 height=10 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=34 y=69 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=26 y=40 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=85 y=0 width=6 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=83 y=53 width=7 height=10 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=83 y=91 width=6 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=74 y=79 width=8 height=10 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=24 y=69 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=43 width=14 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=34 y=97 width=9 height=9 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=27 y=14 width=9 height=13 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=83 y=64 width=7 height=9 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=92 y=0 width=5 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=102 y=88 width=2 height=19 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=91 y=24 width=6 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=27 y=28 width=9 height=4 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=45 y=62 width=5 height=5 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/orange/skin/font-title-export.fnt new file mode 100644 index 0000000..f3ba415 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/font-title-export.fnt @@ -0,0 +1,103 @@ +info face="E:\workspace\Orange Peel Skin\output\font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=184 scaleH=190 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="E:\workspace\Orange Peel Skin\output\font-title-export.png" +chars count=97 +char id=33 x=177 y=109 width=6 height=23 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=143 y=171 width=11 height=11 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=78 y=145 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="#" +char id=36 x=112 y=93 width=15 height=28 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="%" +char id=38 x=0 y=114 width=20 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="&" +char id=39 x=158 y=154 width=6 height=11 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=167 y=142 width=9 height=30 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=169 y=53 width=8 height=30 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=24 y=100 width=12 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=80 y=0 width=16 height=17 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=158 y=142 width=8 height=11 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=144 y=112 width=10 height=4 xoffset=0 yoffset=20 xadvance=10 page=0 chnl=0 letter="-" +char id=46 x=143 y=183 width=6 height=6 xoffset=0 yoffset=25 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=143 y=141 width=14 height=29 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="/" +char id=48 x=80 y=42 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=144 y=57 width=14 height=22 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=95 y=112 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=114 y=0 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=112 y=70 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=95 y=89 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=112 y=122 width=15 height=22 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=97 y=47 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="7" +char id=56 x=97 y=0 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="8" +char id=57 x=95 y=151 width=16 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=169 y=109 width=7 height=17 xoffset=0 yoffset=14 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=169 y=30 width=8 height=22 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=95 y=135 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=41 y=178 width=16 height=11 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="=" +char id=62 x=78 y=168 width=16 height=15 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=143 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=25 height=27 xoffset=0 yoffset=9 xadvance=25 page=0 chnl=0 letter="@" +char id=65 x=21 y=138 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=97 y=23 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=41 y=124 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=25 y=76 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=128 y=93 width=15 height=23 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=128 y=141 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="F" +char id=71 x=41 y=148 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=45 y=0 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=177 y=133 width=5 height=23 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=128 y=117 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="J" +char id=75 x=26 y=48 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=128 y=165 width=14 height=23 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="L" +char id=77 x=21 y=114 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=45 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=21 y=162 width=19 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="O" +char id=80 x=78 y=121 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="P" +char id=81 x=0 y=138 width=20 height=28 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Q" +char id=82 x=45 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="R" +char id=83 x=80 y=65 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="S" +char id=84 x=26 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=60 y=147 width=17 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="U" +char id=86 x=44 y=72 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=24 width=25 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=26 y=24 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=41 y=100 width=18 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=80 y=18 width=16 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=169 y=0 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=144 y=80 width=13 height=29 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=159 y=30 width=9 height=29 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=95 y=174 width=15 height=14 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=41 y=172 width=17 height=5 xoffset=0 yoffset=30 xadvance=17 page=0 chnl=0 letter="_" +char id=96 x=130 y=57 width=9 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=130 y=0 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=78 y=96 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=112 y=170 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="c" +char id=100 x=112 y=145 width=15 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=63 y=50 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=145 y=23 width=12 height=25 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=60 y=121 width=17 height=25 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=129 y=67 width=14 height=24 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=177 y=84 width=6 height=24 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=158 y=80 width=10 height=31 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=63 y=0 width=16 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="k" +char id=108 x=169 y=84 width=7 height=24 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=95 width=23 height=18 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=130 y=38 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="n" +char id=111 x=60 y=171 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=114 y=23 width=15 height=24 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=63 y=25 width=16 height=24 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=155 y=171 width=11 height=18 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=97 y=70 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="s" +char id=116 x=145 y=0 width=12 height=22 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="t" +char id=117 x=114 y=48 width=15 height=18 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=63 y=69 width=16 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="v" +char id=119 x=0 y=76 width=24 height=18 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0 letter="w" +char id=120 x=0 y=167 width=17 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=60 y=96 width=17 height=24 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=130 y=19 width=14 height=18 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="z" +char id=123 x=158 y=0 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=177 y=157 width=5 height=32 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=158 y=112 width=10 height=29 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=63 y=88 width=16 height=7 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 letter="~" +char id=8226 x=159 y=60 width=9 height=11 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.atlas new file mode 100644 index 0000000..41dc7fe --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.atlas @@ -0,0 +1,956 @@ + +uiskin.png +size: 1023,255 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +bleached-peach + rotate: false + xy: 1, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +button-maroon + rotate: false + xy: 387, 96 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-maroon-down + rotate: false + xy: 1, 4 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange + rotate: false + xy: 52, 4 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +button-orange-down + rotate: false + xy: 526, 205 + size: 50, 50 + split: 5, 5, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +check-box + rotate: false + xy: 1008, 176 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +check-box-off + rotate: false + xy: 1008, 160 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +close-button + rotate: false + xy: 619, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt + rotate: false + xy: 619, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt-down + rotate: false + xy: 638, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-alt-highlight + rotate: false + xy: 657, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-down + rotate: false + xy: 676, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +close-button-highlight + rotate: false + xy: 695, 71 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 518, 118 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +dark-dim-orange + rotate: false + xy: 489, 122 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-maroon + rotate: false + xy: 492, 122 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dark-orange + rotate: false + xy: 284, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +dim-orange + rotate: false + xy: 4, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +folder + rotate: false + xy: 267, 16 + size: 28, 18 + orig: 28, 18 + offset: 0, 0 + index: -1 +folder-open + rotate: false + xy: 883, 201 + size: 28, 18 + orig: 28, 18 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 387, 147 + size: 107, 108 + orig: 107, 108 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 202, 65 + size: 184, 190 + orig: 184, 190 + offset: 0, 0 + index: -1 +image-delete + rotate: false + xy: 173, 1 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-delete-down + rotate: false + xy: 733, 72 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +image-duplicate + rotate: false + xy: 806, 131 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +image-duplicate-down + rotate: false + xy: 938, 169 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +image-help + rotate: false + xy: 297, 37 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-help-down + rotate: false + xy: 326, 37 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-info + rotate: false + xy: 692, 90 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-info-down + rotate: false + xy: 720, 90 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-left + rotate: false + xy: 355, 37 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-left-down + rotate: false + xy: 489, 94 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-minus + rotate: false + xy: 267, 1 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-minus-down + rotate: false + xy: 280, 11 + size: 16, 4 + orig: 16, 4 + offset: 0, 0 + index: -1 +image-music + rotate: false + xy: 518, 90 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-down + rotate: false + xy: 547, 90 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off + rotate: false + xy: 576, 90 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-music-off-copy-down + rotate: false + xy: 605, 90 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-plus + rotate: false + xy: 962, 169 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-plus-down + rotate: false + xy: 985, 169 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +image-right + rotate: false + xy: 882, 173 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-right-down + rotate: false + xy: 912, 192 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-settings + rotate: false + xy: 634, 90 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-settings-down + rotate: false + xy: 663, 90 + size: 28, 27 + orig: 28, 27 + offset: 0, 0 + index: -1 +image-sound + rotate: false + xy: 940, 192 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-down + rotate: false + xy: 968, 192 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-off + rotate: false + xy: 996, 192 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +image-sound-off-down + rotate: false + xy: 910, 164 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +maroon + rotate: false + xy: 287, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +menu-button-dark-maroon + rotate: false + xy: 760, 111 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-dark-orange + rotate: false + xy: 781, 111 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-maroon + rotate: false + xy: 802, 110 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-button-orange + rotate: false + xy: 830, 126 + size: 20, 20 + split: 1, 1, 1, 1 + pad: 6, 6, 6, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +menu-center + rotate: false + xy: 438, 96 + size: 50, 50 + split: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down + rotate: false + xy: 679, 205 + size: 50, 50 + split: 0, 0, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-center + rotate: false + xy: 526, 154 + size: 50, 50 + split: 1, 1, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-down + rotate: false + xy: 577, 205 + size: 50, 50 + split: 5, 5, 1, 5 + pad: 0, 0, 1, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-left + rotate: false + xy: 103, 4 + size: 50, 50 + split: 5, 0, 5, 4 + pad: 5, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-middle + rotate: false + xy: 577, 154 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-right + rotate: false + xy: 628, 205 + size: 50, 50 + split: 1, 5, 5, 5 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-down-up + rotate: false + xy: 628, 154 + size: 50, 50 + split: 5, 5, 5, 1 + pad: 0, 0, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-left + rotate: false + xy: 679, 154 + size: 50, 50 + split: 5, 1, 5, 5 + pad: 5, 0, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-middle + rotate: false + xy: 730, 205 + size: 50, 50 + split: 0, 0, 1, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-right + rotate: false + xy: 730, 154 + size: 50, 50 + split: 1, 5, 5, 5 + pad: 1, 5, 0, 0 + orig: 50, 50 + offset: 0, 0 + index: -1 +menu-up + rotate: false + xy: 781, 205 + size: 50, 50 + split: 5, 5, 5, 1 + pad: 0, 0, 5, 1 + orig: 50, 50 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 191, 1 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +old + rotate: false + xy: 859, 108 + size: 14, 17 + orig: 14, 17 + offset: 0, 0 + index: -1 +old1 + rotate: false + xy: 882, 169 + size: 12, 3 + orig: 12, 3 + offset: 0, 0 + index: -1 +old2 + rotate: false + xy: 284, 4 + size: 12, 6 + orig: 12, 6 + offset: 0, 0 + index: -1 +orange + rotate: false + xy: 7, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +panel-maroon + rotate: false + xy: 851, 126 + size: 20, 20 + split: 6, 6, 7, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +panel-orange + rotate: false + xy: 479, 73 + size: 20, 20 + split: 6, 6, 7, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +panel-peach + rotate: false + xy: 518, 69 + size: 20, 20 + split: 6, 6, 7, 6 + orig: 20, 20 + offset: 0, 0 + index: -1 +peach + rotate: false + xy: 290, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 207, 1 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 251, 4 + size: 15, 12 + split: 6, 4, 5, 5 + pad: 6, 0, 0, 0 + orig: 15, 12 + offset: 0, 0 + index: -1 +progress-bar-before-knob + rotate: false + xy: 748, 105 + size: 9, 12 + split: 0, 6, 0, 0 + orig: 9, 12 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 223, 1 + size: 12, 15 + split: 5, 5, 4, 6 + pad: 0, 0, 0, 6 + orig: 12, 15 + offset: 0, 0 + index: -1 +progress-bar-vertical-before-knob + rotate: false + xy: 267, 6 + size: 12, 9 + split: 0, 0, 6, 0 + orig: 12, 9 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 823, 109 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 841, 109 + size: 17, 16 + orig: 17, 16 + offset: 0, 0 + index: -1 +round-dark-maroon + rotate: false + xy: 539, 70 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-dark-orange + rotate: false + xy: 559, 70 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-maroon + rotate: false + xy: 579, 70 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +round-orange + rotate: false + xy: 599, 70 + size: 19, 19 + split: 5, 5, 5, 5 + orig: 19, 19 + offset: 0, 0 + index: -1 +scrollbar + rotate: false + xy: 500, 75 + size: 17, 18 + split: 5, 5, 8, 8 + pad: 0, 0, 0, 0 + orig: 17, 18 + offset: 0, 0 + index: -1 +scrollbar-android + rotate: false + xy: 387, 68 + size: 10, 5 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 10, 5 + offset: 0, 0 + index: -1 +scrollbar-android-knob + rotate: false + xy: 878, 163 + size: 10, 5 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 10, 5 + offset: 0, 0 + index: -1 +scrollbar-android-vertical + rotate: false + xy: 489, 125 + size: 5, 10 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 10 + offset: 0, 0 + index: -1 +scrollbar-android-vertical-knob + rotate: false + xy: 489, 136 + size: 5, 10 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 5, 10 + offset: 0, 0 + index: -1 +scrollbar-knob + rotate: false + xy: 714, 71 + size: 18, 18 + split: 5, 5, 5, 5 + pad: 0, 0, 0, 0 + orig: 18, 18 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 154, 1 + size: 18, 17 + split: 8, 8, 5, 5 + pad: 0, 0, 0, 0 + orig: 18, 17 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 832, 205 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +select-box-down + rotate: false + xy: 781, 154 + size: 50, 50 + split: 5, 29, 5, 30 + pad: 5, 29, 5, 5 + orig: 50, 50 + offset: 0, 0 + index: -1 +slider-bar-knob + rotate: false + xy: 236, 2 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +spinner-minus + rotate: false + xy: 319, 1 + size: 21, 35 + split: 16, 3, 9, 24 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-minus-down + rotate: false + xy: 297, 1 + size: 21, 35 + split: 16, 4, 10, 22 + pad: 1, 2, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus + rotate: false + xy: 363, 1 + size: 21, 35 + split: 3, 17, 7, 25 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-plus-down + rotate: false + xy: 341, 1 + size: 21, 35 + split: 1, 15, 6, 22 + pad: 1, 1, 1, 1 + orig: 21, 35 + offset: 0, 0 + index: -1 +spinner-text-field + rotate: false + xy: 726, 118 + size: 33, 35 + split: 15, 17, 17, 17 + pad: 5, 5, 6, 6 + orig: 33, 35 + offset: 0, 0 + index: -1 +spinner-text-field-down + rotate: false + xy: 983, 220 + size: 33, 35 + split: 16, 16, 17, 17 + pad: 5, 5, 6, 6 + orig: 33, 35 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 1017, 249 + size: 6, 6 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 6, 6 + offset: 0, 0 + index: -1 +switch + rotate: false + xy: 387, 74 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-off + rotate: false + xy: 760, 132 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-text + rotate: false + xy: 433, 74 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +switch-text-off + rotate: false + xy: 832, 147 + size: 45, 21 + orig: 45, 21 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 676, 118 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-down + rotate: false + xy: 832, 169 + size: 49, 35 + split: 6, 6, 6, 6 + pad: 6, 6, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login + rotate: false + xy: 933, 220 + size: 49, 35 + split: 6, 27, 7, 27 + pad: 6, 27, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-login-down + rotate: false + xy: 883, 220 + size: 49, 35 + split: 6, 26, 6, 28 + pad: 6, 27, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password + rotate: false + xy: 526, 118 + size: 49, 35 + split: 6, 25, 7, 25 + pad: 6, 25, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-password-down + rotate: false + xy: 154, 19 + size: 49, 35 + split: 6, 25, 7, 24 + pad: 6, 25, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search + rotate: false + xy: 626, 118 + size: 49, 35 + split: 6, 31, 5, 29 + pad: 6, 31, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +textfield-search-down + rotate: false + xy: 576, 118 + size: 49, 35 + split: 6, 31, 4, 30 + pad: 6, 31, 5, 5 + orig: 49, 35 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 55 + size: 200, 200 + split: 98, 92, 89, 85 + pad: 1, 0, 0, 0 + orig: 200, 200 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 267, 35 + size: 29, 29 + orig: 29, 29 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 10, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +window-large + rotate: false + xy: 495, 122 + size: 30, 133 + split: 6, 6, 112, 6 + pad: 3, 3, 112, 6 + orig: 30, 133 + offset: 0, 0 + index: -1 +window-maroon + rotate: false + xy: 204, 17 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 30, 6 + orig: 20, 47 + offset: 0, 0 + index: -1 +window-orange + rotate: false + xy: 225, 17 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 30, 6 + orig: 20, 47 + offset: 0, 0 + index: -1 +window-peach + rotate: false + xy: 246, 17 + size: 20, 47 + split: 5, 5, 30, 6 + pad: 3, 3, 30, 6 + orig: 20, 47 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.json b/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.json new file mode 100644 index 0000000..bcb848a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.json @@ -0,0 +1,380 @@ +{ +com.badlogic.gdx.graphics.Color: { + white: { r: 1, g: 1, b: 1, a: 1 }, + orange: { r: 1, g: 0.627451, b: 0.08235294, a: 1 }, + maroon: { r: 0.6, g: 0.05490196, b: 0.2627451, a: 1 }, + peach: { r: 0.91764706, g: 0.6862745, b: 0.5137255, a: 1 }, + bleached_peach: { r: 0.9372549, g: 0.8980392, b: 0.8627451, a: 1 } +}, +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { file: font-export.fnt }, + font-title: { file: font-title-export.fnt } +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { + name: white, + color: { a: 1, b: 0.2, g: 0.2, r: 0.2 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default: { background: progress-bar, knobBefore: progress-bar-before-knob }, + default-vertical: { background: progress-bar-vertical, knobBefore: progress-bar-vertical-before-knob }, + default-horizontal: { background: progress-bar, knobBefore: progress-bar-before-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + up: button-orange, + down: button-orange-down + }, + menu-item: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + downFontColor: { a: 1, b: 1, g: 1, r: 1 }, + overFontColor: { a: 1, b: 1, g: 1, r: 1 }, + up: menu-button-dark-orange, + down: menu-button-orange + }, + orange-small: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + up: round-orange, + down: round-dark-orange + }, + maroon-small: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + up: round-maroon, + down: round-dark-maroon + }, + maroon: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + up: button-maroon, + down: button-maroon-down + }, + maroon-toggle: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + checkedFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + up: button-maroon, + down: button-maroon-down, + checked: button-maroon-down + }, + toggle: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + up: button-orange, + down: button-orange-down, + checked: button-orange-down + }, + maroon-small-toggle: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + checkedFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + up: round-maroon, + down: round-dark-maroon, + checked: round-dark-maroon + }, + orange-small-toggle: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + checkedFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + up: round-orange, + down: round-dark-orange, + checked: round-dark-orange + }, + menu-item-maroon: { + font: font, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + downFontColor: { a: 1, b: 1, g: 1, r: 1 }, + overFontColor: { a: 1, b: 1, g: 1, r: 1 }, + up: menu-button-dark-maroon, + down: menu-button-maroon + }, + menu-maroon: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + checkedFontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 }, + up: menu-button-maroon, + down: menu-button-dark-maroon, + checked: menu-button-dark-maroon + }, + menu: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + checkedFontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + up: menu-button-orange, + down: menu-button-dark-orange, + checked: menu-button-dark-orange + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: button-orange, down: button-orange-down }, + settings: { + imageUp: image-settings, + imageDown: image-settings-down, + up: button-orange, + down: button-orange-down + }, + music: { + imageUp: image-music-off, + imageDown: image-music-down, + imageChecked: image-music, + up: button-orange, + down: button-orange-down + }, + help: { imageUp: image-help, imageDown: image-help-down, up: button-orange, down: button-orange-down }, + menu-up: { up: menu-up, down: menu-down-up }, + left: { imageUp: image-left, imageDown: image-left-down, up: button-orange, down: button-orange-down }, + menu-right: { up: menu-right, down: menu-down-right }, + menu-down: { up: menu-down, down: menu-down-down }, + menu-middle: { up: menu-middle, down: menu-down-middle }, + sound: { + imageUp: image-sound-off, + imageDown: image-sound-down, + imageChecked: image-sound, + up: button-orange, + down: button-orange-down + }, + menu-left: { up: menu-left, down: menu-down-left }, + info: { imageUp: image-info, imageDown: image-info-down, up: button-orange, down: button-orange-down }, + right: { imageUp: image-right, imageDown: image-right-down, up: button-orange, down: button-orange-down }, + menu-center: { up: menu-center, down: menu-down-center } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: splitpane }, + default-horizontal: { handle: splitpane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpad-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: button-orange, down: button-orange-down }, + toggle: { up: button-orange, down: button-orange-down, checked: button-orange-down }, + spinner-plus: { up: spinner-plus, down: spinner-plus-down }, + maroon: { up: button-maroon, down: button-maroon-down }, + maroon-toggle: { up: button-maroon, down: button-maroon-down, checked: button-maroon-down }, + close-alt: { up: close-button-alt, down: close-button-alt-down, over: close-button-alt-highlight }, + close: { up: close-button, down: close-button-down, over: close-button-highlight }, + spinner-minus: { up: spinner-minus, down: spinner-minus-down } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-orange, + titleFont: font, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + dialog: { + background: window-orange, + titleFont: font, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 }, + stageBackground: bleached-peach + }, + maroon: { + background: window-maroon, + titleFont: font, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + peach: { + background: window-peach, + titleFont: font, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + dialog-large: { + background: window-large, + titleFont: font, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 }, + stageBackground: bleached-peach + }, + large: { + background: window-large, + titleFont: font, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + background: textfield, + focusedBackground: textfield-down, + cursor: maroon, + selection: dim-orange, + messageFont: font, + messageFontColor: { a: 1, b: 0.8627451, g: 0.8980392, r: 0.9372549 } + }, + search: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + background: textfield-search, + focusedBackground: textfield-search-down, + cursor: maroon, + selection: dim-orange, + messageFont: font, + messageFontColor: { a: 1, b: 0.8627451, g: 0.8980392, r: 0.9372549 } + }, + login: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + background: textfield-login, + focusedBackground: textfield-login-down, + cursor: maroon, + selection: dim-orange, + messageFont: font, + messageFontColor: { a: 1, b: 0.8627451, g: 0.8980392, r: 0.9372549 } + }, + spinner: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + background: spinner-text-field, + focusedBackground: spinner-text-field-down, + cursor: maroon, + selection: dim-orange, + messageFont: font, + messageFontColor: { a: 1, b: 0.8627451, g: 0.8980392, r: 0.9372549 } + }, + password: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + background: textfield-password, + focusedBackground: textfield-password-down, + cursor: maroon, + selection: dim-orange, + messageFont: font, + messageFontColor: { a: 1, b: 0.8627451, g: 0.8980392, r: 0.9372549 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: dim-orange, + hScroll: scrollbar, + hScrollKnob: scrollbar-knob, + vScroll: scrollbar-vertical, + vScrollKnob: scrollbar-knob + }, + android: { + background: dim-orange, + hScroll: scrollbar-android, + hScrollKnob: scrollbar-android-knob, + vScroll: scrollbar-android-vertical, + vScrollKnob: scrollbar-android-vertical-knob + }, + no-bg: { + hScroll: scrollbar, + hScrollKnob: scrollbar-knob, + vScroll: scrollbar-vertical, + vScrollKnob: scrollbar-knob + }, + android-no-bg: { + hScroll: scrollbar-android, + hScrollKnob: scrollbar-android-knob, + vScroll: scrollbar-android-vertical, + vScrollKnob: scrollbar-android-vertical-knob + } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + optional: { + font: font, + fontColor: { a: 1, b: 0.7, g: 0.7, r: 0.7 } + }, + default: { + font: font, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 } + }, + error: { + font: font, + fontColor: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 } + }, + white: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + peach: { + font: font, + fontColor: { a: 1, b: 0.5137255, g: 0.6862745, r: 0.91764706 } + }, + title-white: { + font: font-title, + fontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + title: { + font: font-title, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font, + fontColorSelected: { a: 1, b: 1, g: 1, r: 1 }, + fontColorUnselected: { a: 1, b: 1, g: 1, r: 1 }, + selection: maroon + }, + dimmed: { + font: font, + fontColorSelected: { a: 1, b: 1, g: 1, r: 1 }, + fontColorUnselected: { a: 1, b: 0.2627451, g: 0.05490196, r: 0.6 }, + selection: maroon, + background: peach + } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-box, + checkboxOff: check-box-off, + font: font, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 } + }, + switch-text: { + checkboxOn: switch-text, + checkboxOff: switch-text-off, + font: font, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 } + }, + switch: { + checkboxOn: switch, + checkboxOff: switch-off, + font: font, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 } + }, + radio: { + checkboxOn: radio-button, + checkboxOff: radio-button-off, + font: font, + fontColor: { a: 1, b: 0.08235294, g: 0.627451, r: 1 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { plus: plus, minus: minus, selection: round-maroon }, + folder: { plus: folder, minus: folder-open, selection: round-maroon } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-vertical: { + background: scrollbar-android-vertical, + knob: slider-bar-knob, + knobBefore: scrollbar-android-vertical-knob + }, + default-horizontal: { background: scrollbar-android, knob: slider-bar-knob, knobBefore: scrollbar-android-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + background: select-box, + scrollStyle: default, + listStyle: default, + backgroundOpen: select-box-down + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.png b/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.png new file mode 100644 index 0000000..d542751 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/skin/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/orange/style-guide.png b/src/main/resources/omni_power/gdx-skins/orange/style-guide.png new file mode 100644 index 0000000..a928473 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/orange/style-guide.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/README.md b/src/main/resources/omni_power/gdx-skins/pixthulhu/README.md new file mode 100644 index 0000000..a703ac1 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/README.md @@ -0,0 +1,23 @@ +# Pixthulhu UI + +``` +Pixthulhu UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more!git res +© Copyright 2016 Raymond Buckley + +Pixthulhu UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most common **Scene2D** widgets. Old school pixel art GUI theme. + +![Pixthulhu](preview.png) +![Pixthulhu](preview2.png) + + +You can find an example project [here](https://ray3k.wordpress.com/pixthulhu-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=22887). diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/preview.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/preview.png new file mode 100644 index 0000000..c2acd11 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/preview2.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/preview2.png new file mode 100644 index 0000000..30f6de8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/preview2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade-pressed.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade-pressed.9.png new file mode 100644 index 0000000..9e515e8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade-pressed.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade-pressed.png new file mode 100644 index 0000000..89e9d85 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade.9.png new file mode 100644 index 0000000..bde6785 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade.png new file mode 100644 index 0000000..1b9a53d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-arcade.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-pressed.9.png new file mode 100644 index 0000000..a09efde Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-pressed.png new file mode 100644 index 0000000..997440d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button.9.png new file mode 100644 index 0000000..4c88cf0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button.png new file mode 100644 index 0000000..3d778e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/checkbox-off.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/checkbox-off.png new file mode 100644 index 0000000..26ff4eb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/checkbox-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/checkbox-on.png new file mode 100644 index 0000000..c2f8f89 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/eye-1.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/eye-1.png new file mode 100644 index 0000000..beae719 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/eye-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/eye-2.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/eye-2.png new file mode 100644 index 0000000..7c5db00 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/eye-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-export.fnt new file mode 100644 index 0000000..f2d8111 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=27 base=27 scaleW=160 scaleH=162 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=155 y=140 width=4 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=139 y=109 width=8 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=40 y=105 width=16 height=18 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="#" +char id=36 x=100 y=82 width=12 height=24 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="$" +char id=37 x=0 y=82 width=20 height=20 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="%" +char id=38 x=19 y=141 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="&" +char id=39 x=146 y=143 width=4 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=146 y=118 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=148 y=21 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=")" +char id=42 x=113 y=103 width=12 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="*" +char id=43 x=57 y=109 width=14 height=14 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="+" +char id=44 x=139 y=118 width=6 height=8 xoffset=0 yoffset=23 xadvance=9 page=0 chnl=0 letter="," +char id=45 x=113 y=156 width=8 height=4 xoffset=0 yoffset=17 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=79 y=153 width=4 height=4 xoffset=0 yoffset=23 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=115 y=21 width=12 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="/" +char id=48 x=100 y=107 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="0" +char id=49 x=141 y=0 width=8 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="1" +char id=50 x=104 y=0 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="2" +char id=51 x=115 y=59 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=25 y=21 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="4" +char id=53 x=102 y=21 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="5" +char id=54 x=117 y=0 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=72 y=67 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="7" +char id=56 x=126 y=114 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="8" +char id=57 x=126 y=80 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="9" +char id=58 x=150 y=0 width=4 height=16 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=148 y=46 width=6 height=20 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=115 y=46 width=12 height=12 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="<" +char id=61 x=38 y=151 width=14 height=8 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="=" +char id=62 x=126 y=101 width=12 height=12 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=128 y=38 width=10 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="?" +char id=64 x=0 y=21 width=24 height=22 xoffset=0 yoffset=7 xadvance=27 page=0 chnl=0 letter="@" +char id=65 x=21 y=88 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=72 y=23 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="B" +char id=67 x=72 y=109 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="C" +char id=68 x=27 y=0 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="D" +char id=69 x=113 y=135 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=113 y=114 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="F" +char id=71 x=23 y=44 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="G" +char id=72 x=40 y=42 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="H" +char id=73 x=155 y=119 width=4 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=139 y=63 width=8 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=72 y=88 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="K" +char id=76 x=102 y=59 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=0 y=120 width=20 height=20 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="M" +char id=78 x=40 y=84 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=0 y=141 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="O" +char id=80 x=87 y=23 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="P" +char id=81 x=21 y=65 width=18 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="Q" +char id=82 x=55 y=124 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="R" +char id=83 x=91 y=0 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="S" +char id=84 x=87 y=61 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="T" +char id=85 x=44 y=0 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="U" +char id=86 x=21 y=109 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=26 height=20 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0 letter="W" +char id=88 x=38 y=130 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="X" +char id=89 x=40 y=63 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="Y" +char id=90 x=42 y=21 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="Z" +char id=91 x=148 y=67 width=6 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=87 y=82 width=12 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=139 y=38 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="]" +char id=94 x=87 y=147 width=12 height=12 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=40 y=124 width=12 height=4 xoffset=0 yoffset=27 xadvance=15 page=0 chnl=0 letter="_" +char id=96 x=139 y=127 width=6 height=6 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=59 y=23 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="a" +char id=98 x=76 y=0 width=14 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=128 y=21 width=10 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=61 y=0 width=14 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=87 y=130 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="e" +char id=102 x=126 y=135 width=10 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="f" +char id=103 x=57 y=65 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=87 y=107 width=12 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="h" +char id=105 x=155 y=98 width=4 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=137 y=135 width=8 height=26 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="j" +char id=107 x=113 y=80 width=12 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=155 y=75 width=4 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=103 width=20 height=16 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=100 y=145 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=55 y=145 width=14 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=72 y=44 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=57 y=42 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="q" +char id=114 x=139 y=21 width=8 height=16 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=128 y=59 width=10 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="s" +char id=116 x=130 y=0 width=10 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="t" +char id=117 x=100 y=128 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=57 y=88 width=14 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=65 width=20 height=16 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="w" +char id=120 x=87 y=44 width=14 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=72 y=130 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=102 y=42 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="z" +char id=123 x=148 y=92 width=6 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=155 y=46 width=4 height=28 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="|" +char id=125 x=139 y=84 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="}" +char id=126 x=21 y=130 width=14 height=6 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="~" +char id=8226 x=70 y=153 width=8 height=8 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="•" +char id=169 x=0 y=44 width=22 height=20 xoffset=0 yoffset=7 xadvance=25 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-export.png new file mode 100644 index 0000000..1ebc3da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle-export.fnt b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle-export.fnt new file mode 100644 index 0000000..46bbd4d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle-export.fnt @@ -0,0 +1,104 @@ +info face="font-subtitle-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=48 base=48 scaleW=303 scaleH=303 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-subtitle-export.png" +chars count=98 +char id=33 x=286 y=265 width=12 height=34 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="!" +char id=34 x=87 y=284 width=20 height=16 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter=""" +char id=35 x=113 y=37 width=26 height=34 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="#" +char id=36 x=198 y=192 width=24 height=42 xoffset=0 yoffset=10 xadvance=26 page=0 chnl=0 letter="$" +char id=37 x=0 y=97 width=40 height=36 xoffset=0 yoffset=14 xadvance=42 page=0 chnl=0 letter="%" +char id=38 x=37 y=233 width=36 height=36 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="&" +char id=39 x=185 y=282 width=12 height=16 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="'" +char id=40 x=248 y=64 width=20 height=44 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="(" +char id=41 x=248 y=109 width=20 height=44 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter=")" +char id=42 x=246 y=278 width=20 height=24 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="*" +char id=43 x=142 y=185 width=28 height=26 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="+" +char id=44 x=125 y=284 width=16 height=18 xoffset=0 yoffset=36 xadvance=18 page=0 chnl=0 letter="," +char id=45 x=108 y=284 width=16 height=10 xoffset=0 yoffset=28 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=159 y=284 width=12 height=12 xoffset=0 yoffset=36 xadvance=14 page=0 chnl=0 letter="." +char id=47 x=269 y=101 width=20 height=36 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=223 y=37 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="0" +char id=49 x=248 y=29 width=22 height=34 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="1" +char id=50 x=198 y=130 width=24 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="2" +char id=51 x=171 y=171 width=26 height=36 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="3" +char id=52 x=142 y=115 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="4" +char id=53 x=223 y=74 width=24 height=38 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="5" +char id=54 x=223 y=185 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="6" +char id=55 x=196 y=66 width=26 height=34 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="7" +char id=56 x=223 y=148 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="8" +char id=57 x=171 y=107 width=26 height=36 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="9" +char id=58 x=288 y=138 width=12 height=26 xoffset=0 yoffset=22 xadvance=14 page=0 chnl=0 letter=":" +char id=59 x=269 y=183 width=16 height=32 xoffset=0 yoffset=22 xadvance=18 page=0 chnl=0 letter=";" +char id=60 x=43 y=37 width=26 height=30 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="<" +char id=61 x=0 y=276 width=28 height=18 xoffset=0 yoffset=26 xadvance=30 page=0 chnl=0 letter="=" +char id=62 x=196 y=247 width=26 height=30 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter=">" +char id=63 x=223 y=113 width=24 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="?" +char id=64 x=0 y=134 width=38 height=36 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="@" +char id=65 x=37 y=198 width=36 height=34 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="A" +char id=66 x=142 y=150 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="B" +char id=67 x=84 y=0 width=32 height=36 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="C" +char id=68 x=109 y=142 width=32 height=34 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="D" +char id=69 x=140 y=212 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="E" +char id=70 x=169 y=35 width=26 height=34 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="F" +char id=71 x=41 y=70 width=36 height=36 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="G" +char id=72 x=74 y=241 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="H" +char id=73 x=269 y=216 width=16 height=34 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="I" +char id=74 x=223 y=222 width=22 height=36 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="J" +char id=75 x=74 y=206 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="K" +char id=76 x=169 y=212 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="L" +char id=77 x=0 y=35 width=42 height=34 xoffset=0 yoffset=14 xadvance=44 page=0 chnl=0 letter="M" +char id=78 x=109 y=177 width=32 height=34 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="N" +char id=79 x=39 y=134 width=36 height=36 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="O" +char id=80 x=146 y=0 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="P" +char id=81 x=0 y=233 width=36 height=42 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="Q" +char id=82 x=78 y=72 width=32 height=34 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="R" +char id=83 x=223 y=0 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="S" +char id=84 x=109 y=212 width=30 height=34 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0 letter="T" +char id=85 x=49 y=0 width=34 height=36 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="U" +char id=86 x=78 y=37 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=48 height=34 xoffset=0 yoffset=14 xadvance=50 page=0 chnl=0 letter="W" +char id=88 x=74 y=171 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="X" +char id=89 x=76 y=107 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="Y" +char id=90 x=167 y=247 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="Z" +char id=91 x=269 y=251 width=16 height=44 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="[" +char id=92 x=269 y=64 width=20 height=36 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=286 y=183 width=16 height=44 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="]" +char id=94 x=39 y=171 width=26 height=22 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="^" +char id=95 x=29 y=276 width=28 height=8 xoffset=0 yoffset=50 xadvance=30 page=0 chnl=0 letter="_" +char id=96 x=142 y=284 width=16 height=14 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="`" +char id=97 x=196 y=37 width=26 height=28 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="a" +char id=98 x=140 y=76 width=28 height=38 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="b" +char id=99 x=246 y=222 width=22 height=28 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="c" +char id=100 x=140 y=37 width=28 height=38 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="d" +char id=101 x=198 y=101 width=24 height=28 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="e" +char id=102 x=223 y=259 width=22 height=36 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="f" +char id=103 x=117 y=0 width=28 height=36 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="g" +char id=104 x=111 y=72 width=28 height=36 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="h" +char id=105 x=286 y=228 width=14 height=36 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="i" +char id=106 x=271 y=0 width=16 height=46 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="j" +char id=107 x=138 y=247 width=28 height=36 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="k" +char id=108 x=288 y=0 width=12 height=36 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="l" +char id=109 x=0 y=70 width=40 height=26 xoffset=0 yoffset=22 xadvance=42 page=0 chnl=0 letter="m" +char id=110 x=41 y=107 width=26 height=26 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="n" +char id=111 x=76 y=142 width=26 height=28 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="o" +char id=112 x=109 y=247 width=28 height=36 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="p" +char id=113 x=169 y=70 width=26 height=36 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="q" +char id=114 x=246 y=251 width=22 height=26 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="r" +char id=115 x=248 y=0 width=22 height=28 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=175 y=0 width=20 height=34 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="t" +char id=117 x=111 y=109 width=28 height=28 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="u" +char id=118 x=171 y=144 width=26 height=26 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="v" +char id=119 x=0 y=171 width=38 height=26 xoffset=0 yoffset=22 xadvance=40 page=0 chnl=0 letter="w" +char id=120 x=58 y=276 width=28 height=26 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="x" +char id=121 x=196 y=0 width=26 height=36 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="y" +char id=122 x=198 y=165 width=24 height=26 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="z" +char id=123 x=248 y=154 width=20 height=44 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="{" +char id=124 x=290 y=37 width=10 height=38 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 letter="|" +char id=125 x=269 y=138 width=18 height=44 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="}" +char id=126 x=29 y=285 width=26 height=16 xoffset=0 yoffset=26 xadvance=28 page=0 chnl=0 letter="~" +char id=8226 x=172 y=282 width=12 height=12 xoffset=0 yoffset=22 xadvance=14 page=0 chnl=0 letter="•" +char id=169 x=0 y=198 width=36 height=34 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=136 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle-export.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle-export.png new file mode 100644 index 0000000..d48e4c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle.png new file mode 100644 index 0000000..9d40210 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-subtitle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title-export.fnt new file mode 100644 index 0000000..0955495 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=95 base=95 scaleW=619 scaleH=620 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=563 y=408 width=16 height=70 xoffset=0 yoffset=21 xadvance=22 page=0 chnl=0 letter="!" +char id=34 x=179 y=575 width=26 height=36 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter=""" +char id=35 x=424 y=268 width=52 height=72 xoffset=0 yoffset=17 xadvance=58 page=0 chnl=0 letter="#" +char id=36 x=524 y=65 width=38 height=78 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 letter="$" +char id=37 x=237 y=553 width=66 height=66 xoffset=0 yoffset=23 xadvance=72 page=0 chnl=0 letter="%" +char id=38 x=237 y=413 width=70 height=68 xoffset=0 yoffset=21 xadvance=76 page=0 chnl=0 letter="&" +char id=39 x=339 y=189 width=16 height=36 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 letter="'" +char id=40 x=592 y=156 width=26 height=76 xoffset=0 yoffset=19 xadvance=32 page=0 chnl=0 letter="(" +char id=41 x=592 y=233 width=26 height=74 xoffset=0 yoffset=19 xadvance=32 page=0 chnl=0 letter=")" +char id=42 x=92 y=573 width=32 height=32 xoffset=0 yoffset=19 xadvance=38 page=0 chnl=0 letter="*" +char id=43 x=178 y=241 width=72 height=74 xoffset=0 yoffset=15 xadvance=78 page=0 chnl=0 letter="+" +char id=44 x=259 y=128 width=18 height=26 xoffset=0 yoffset=69 xadvance=24 page=0 chnl=0 letter="," +char id=45 x=49 y=598 width=32 height=16 xoffset=0 yoffset=51 xadvance=38 page=0 chnl=0 letter="-" +char id=46 x=110 y=395 width=18 height=18 xoffset=0 yoffset=71 xadvance=24 page=0 chnl=0 letter="." +char id=47 x=430 y=138 width=48 height=68 xoffset=0 yoffset=21 xadvance=54 page=0 chnl=0 letter="/" +char id=48 x=424 y=424 width=50 height=64 xoffset=0 yoffset=25 xadvance=56 page=0 chnl=0 letter="0" +char id=49 x=559 y=341 width=34 height=66 xoffset=0 yoffset=23 xadvance=40 page=0 chnl=0 letter="1" +char id=50 x=475 y=410 width=44 height=64 xoffset=0 yoffset=25 xadvance=50 page=0 chnl=0 letter="2" +char id=51 x=520 y=410 width=42 height=68 xoffset=0 yoffset=23 xadvance=48 page=0 chnl=0 letter="3" +char id=52 x=422 y=357 width=50 height=66 xoffset=0 yoffset=23 xadvance=56 page=0 chnl=0 letter="4" +char id=53 x=522 y=215 width=40 height=64 xoffset=0 yoffset=25 xadvance=46 page=0 chnl=0 letter="5" +char id=54 x=477 y=268 width=44 height=66 xoffset=0 yoffset=25 xadvance=50 page=0 chnl=0 letter="6" +char id=55 x=483 y=0 width=44 height=64 xoffset=0 yoffset=25 xadvance=50 page=0 chnl=0 letter="7" +char id=56 x=479 y=79 width=44 height=68 xoffset=0 yoffset=23 xadvance=50 page=0 chnl=0 letter="8" +char id=57 x=479 y=148 width=44 height=66 xoffset=0 yoffset=23 xadvance=50 page=0 chnl=0 letter="9" +char id=58 x=320 y=189 width=18 height=44 xoffset=0 yoffset=43 xadvance=24 page=0 chnl=0 letter=":" +char id=59 x=367 y=566 width=16 height=52 xoffset=0 yoffset=43 xadvance=22 page=0 chnl=0 letter=";" +char id=60 x=152 y=575 width=26 height=40 xoffset=0 yoffset=33 xadvance=32 page=0 chnl=0 letter="<" +char id=61 x=57 y=575 width=34 height=22 xoffset=0 yoffset=49 xadvance=40 page=0 chnl=0 letter="=" +char id=62 x=125 y=575 width=26 height=40 xoffset=0 yoffset=33 xadvance=32 page=0 chnl=0 letter=">" +char id=63 x=524 y=144 width=38 height=70 xoffset=0 yoffset=21 xadvance=44 page=0 chnl=0 letter="?" +char id=64 x=218 y=0 width=70 height=66 xoffset=0 yoffset=25 xadvance=76 page=0 chnl=0 letter="@" +char id=65 x=107 y=99 width=78 height=80 xoffset=0 yoffset=15 xadvance=84 page=0 chnl=0 letter="A" +char id=66 x=367 y=487 width=56 height=78 xoffset=0 yoffset=17 xadvance=62 page=0 chnl=0 letter="B" +char id=67 x=186 y=158 width=70 height=80 xoffset=0 yoffset=15 xadvance=76 page=0 chnl=0 letter="C" +char id=68 x=81 y=494 width=78 height=78 xoffset=0 yoffset=17 xadvance=84 page=0 chnl=0 letter="D" +char id=69 x=424 y=489 width=50 height=78 xoffset=0 yoffset=17 xadvance=56 page=0 chnl=0 letter="E" +char id=70 x=434 y=0 width=48 height=78 xoffset=0 yoffset=17 xadvance=54 page=0 chnl=0 letter="F" +char id=71 x=162 y=332 width=76 height=80 xoffset=0 yoffset=15 xadvance=82 page=0 chnl=0 letter="G" +char id=72 x=0 y=415 width=80 height=78 xoffset=0 yoffset=17 xadvance=86 page=0 chnl=0 letter="H" +char id=73 x=563 y=0 width=32 height=78 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="I" +char id=74 x=561 y=479 width=36 height=100 xoffset=0 yoffset=17 xadvance=42 page=0 chnl=0 letter="J" +char id=75 x=160 y=494 width=76 height=80 xoffset=0 yoffset=17 xadvance=82 page=0 chnl=0 letter="K" +char id=76 x=381 y=59 width=52 height=78 xoffset=0 yoffset=17 xadvance=58 page=0 chnl=0 letter="L" +char id=77 x=0 y=253 width=98 height=80 xoffset=0 yoffset=15 xadvance=104 page=0 chnl=0 letter="M" +char id=78 x=0 y=334 width=82 height=80 xoffset=0 yoffset=15 xadvance=88 page=0 chnl=0 letter="N" +char id=79 x=0 y=494 width=80 height=80 xoffset=0 yoffset=15 xadvance=86 page=0 chnl=0 letter="O" +char id=80 x=375 y=189 width=54 height=78 xoffset=0 yoffset=17 xadvance=60 page=0 chnl=0 letter="P" +char id=81 x=0 y=0 width=140 height=98 xoffset=0 yoffset=13 xadvance=82 page=0 chnl=0 letter="Q" +char id=82 x=141 y=0 width=76 height=78 xoffset=0 yoffset=17 xadvance=82 page=0 chnl=0 letter="R" +char id=83 x=475 y=475 width=44 height=80 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0 letter="S" +char id=84 x=239 y=316 width=66 height=80 xoffset=0 yoffset=15 xadvance=72 page=0 chnl=0 letter="T" +char id=85 x=99 y=253 width=78 height=78 xoffset=0 yoffset=17 xadvance=84 page=0 chnl=0 letter="U" +char id=86 x=81 y=415 width=80 height=78 xoffset=0 yoffset=17 xadvance=86 page=0 chnl=0 letter="V" +char id=87 x=0 y=174 width=102 height=78 xoffset=0 yoffset=17 xadvance=108 page=0 chnl=0 letter="W" +char id=88 x=186 y=79 width=72 height=78 xoffset=0 yoffset=17 xadvance=78 page=0 chnl=0 letter="X" +char id=89 x=162 y=413 width=74 height=78 xoffset=0 yoffset=17 xadvance=80 page=0 chnl=0 letter="Y" +char id=90 x=257 y=158 width=62 height=78 xoffset=0 yoffset=17 xadvance=68 page=0 chnl=0 letter="Z" +char id=91 x=594 y=308 width=24 height=74 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="[" +char id=92 x=473 y=341 width=48 height=68 xoffset=0 yoffset=27 xadvance=54 page=0 chnl=0 letter="\" +char id=93 x=594 y=383 width=24 height=74 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="]" +char id=94 x=308 y=424 width=54 height=52 xoffset=0 yoffset=31 xadvance=60 page=0 chnl=0 letter="^" +char id=95 x=0 y=598 width=48 height=14 xoffset=0 yoffset=105 xadvance=54 page=0 chnl=0 letter="_" +char id=96 x=83 y=395 width=26 height=18 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="`" +char id=97 x=306 y=302 width=60 height=60 xoffset=0 yoffset=33 xadvance=66 page=0 chnl=0 letter="a" +char id=98 x=475 y=556 width=42 height=62 xoffset=0 yoffset=33 xadvance=48 page=0 chnl=0 letter="b" +char id=99 x=367 y=424 width=56 height=62 xoffset=0 yoffset=33 xadvance=62 page=0 chnl=0 letter="c" +char id=100 x=320 y=128 width=58 height=60 xoffset=0 yoffset=35 xadvance=64 page=0 chnl=0 letter="d" +char id=101 x=520 y=479 width=40 height=60 xoffset=0 yoffset=33 xadvance=46 page=0 chnl=0 letter="e" +char id=102 x=522 y=280 width=38 height=60 xoffset=0 yoffset=33 xadvance=44 page=0 chnl=0 letter="f" +char id=103 x=306 y=482 width=60 height=62 xoffset=0 yoffset=33 xadvance=66 page=0 chnl=0 letter="g" +char id=104 x=259 y=67 width=62 height=60 xoffset=0 yoffset=35 xadvance=68 page=0 chnl=0 letter="h" +char id=105 x=528 y=0 width=26 height=58 xoffset=0 yoffset=35 xadvance=32 page=0 chnl=0 letter="i" +char id=106 x=563 y=79 width=30 height=76 xoffset=0 yoffset=35 xadvance=36 page=0 chnl=0 letter="j" +char id=107 x=322 y=61 width=58 height=60 xoffset=0 yoffset=35 xadvance=64 page=0 chnl=0 letter="k" +char id=108 x=518 y=556 width=40 height=58 xoffset=0 yoffset=35 xadvance=46 page=0 chnl=0 letter="l" +char id=109 x=103 y=180 width=76 height=60 xoffset=0 yoffset=33 xadvance=82 page=0 chnl=0 letter="m" +char id=110 x=251 y=239 width=64 height=62 xoffset=0 yoffset=33 xadvance=70 page=0 chnl=0 letter="n" +char id=111 x=304 y=553 width=62 height=62 xoffset=0 yoffset=33 xadvance=68 page=0 chnl=0 letter="o" +char id=112 x=434 y=79 width=42 height=58 xoffset=0 yoffset=35 xadvance=48 page=0 chnl=0 letter="p" +char id=113 x=0 y=99 width=106 height=74 xoffset=0 yoffset=33 xadvance=66 page=0 chnl=0 letter="q" +char id=114 x=308 y=363 width=60 height=60 xoffset=0 yoffset=35 xadvance=66 page=0 chnl=0 letter="r" +char id=115 x=522 y=341 width=36 height=62 xoffset=0 yoffset=33 xadvance=42 page=0 chnl=0 letter="s" +char id=116 x=369 y=357 width=52 height=60 xoffset=0 yoffset=33 xadvance=58 page=0 chnl=0 letter="t" +char id=117 x=316 y=237 width=58 height=60 xoffset=0 yoffset=35 xadvance=64 page=0 chnl=0 letter="u" +char id=118 x=289 y=0 width=62 height=60 xoffset=0 yoffset=35 xadvance=68 page=0 chnl=0 letter="v" +char id=119 x=83 y=334 width=78 height=60 xoffset=0 yoffset=35 xadvance=84 page=0 chnl=0 letter="w" +char id=120 x=352 y=0 width=56 height=58 xoffset=0 yoffset=35 xadvance=62 page=0 chnl=0 letter="x" +char id=121 x=367 y=298 width=56 height=58 xoffset=0 yoffset=35 xadvance=62 page=0 chnl=0 letter="y" +char id=122 x=430 y=207 width=48 height=60 xoffset=0 yoffset=33 xadvance=54 page=0 chnl=0 letter="z" +char id=123 x=563 y=156 width=28 height=74 xoffset=0 yoffset=27 xadvance=34 page=0 chnl=0 letter="{" +char id=124 x=596 y=0 width=12 height=80 xoffset=0 yoffset=21 xadvance=18 page=0 chnl=0 letter="|" +char id=125 x=563 y=231 width=28 height=74 xoffset=0 yoffset=25 xadvance=34 page=0 chnl=0 letter="}" +char id=126 x=0 y=575 width=56 height=22 xoffset=0 yoffset=59 xadvance=62 page=0 chnl=0 letter="~" +char id=8226 x=206 y=575 width=22 height=24 xoffset=0 yoffset=53 xadvance=28 page=0 chnl=0 letter="•" +char id=169 x=237 y=482 width=68 height=70 xoffset=0 yoffset=27 xadvance=74 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=35 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=280 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title-export.png new file mode 100644 index 0000000..59a1671 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title.png new file mode 100644 index 0000000..f4c19f5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font.png new file mode 100644 index 0000000..aa5f64a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/list.9.png new file mode 100644 index 0000000..abaa57a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/list.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/list.png new file mode 100644 index 0000000..eadfdcd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/logo.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/logo.png new file mode 100644 index 0000000..adde7da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/logo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/pixthulhu.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/pixthulhu.png new file mode 100644 index 0000000..d2ae03b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/pixthulhu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/portrait.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/portrait.png new file mode 100644 index 0000000..e64cd43 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/portrait.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health-knob.png new file mode 100644 index 0000000..d9bd9ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health.9.png new file mode 100644 index 0000000..751a500 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health.png new file mode 100644 index 0000000..ddb6abf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-health.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal-knob.png new file mode 100644 index 0000000..6ff9fbb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal.9.png new file mode 100644 index 0000000..7e476ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..abb68e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana-knob.png new file mode 100644 index 0000000..a680527 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana.9.png new file mode 100644 index 0000000..8326a8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana.png new file mode 100644 index 0000000..a126098 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-mana.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical-knob.png new file mode 100644 index 0000000..468986e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..5b0d0c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical.png new file mode 100644 index 0000000..3a932e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal-knob.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal-knob.9.png new file mode 100644 index 0000000..0eb4a2f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal-knob.png new file mode 100644 index 0000000..8084d28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal.9.png new file mode 100644 index 0000000..5b1ac0e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..a72ccf6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical-knob.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical-knob.9.png new file mode 100644 index 0000000..84af081 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical-knob.png new file mode 100644 index 0000000..576aea5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..de36e49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical.png new file mode 100644 index 0000000..0383dd5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/select-box.9.png new file mode 100644 index 0000000..8055a21 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/select-box.png new file mode 100644 index 0000000..a3e5b3c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-horizontal.9.png new file mode 100644 index 0000000..89c649c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-horizontal.png new file mode 100644 index 0000000..97d18dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-knob.png new file mode 100644 index 0000000..b837e16 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-vertical.9.png new file mode 100644 index 0000000..379cea7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-vertical.png new file mode 100644 index 0000000..6ab2390 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-horizontal.9.png new file mode 100644 index 0000000..a8b4b49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-horizontal.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-horizontal.png new file mode 100644 index 0000000..34631ad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-vertical.9.png new file mode 100644 index 0000000..e268be0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-vertical.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-vertical.png new file mode 100644 index 0000000..adbe893 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/split-pane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/textfield.9.png new file mode 100644 index 0000000..62fa891 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/textfield.png new file mode 100644 index 0000000..3332fdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/touchpad-knob.png new file mode 100644 index 0000000..5e191d2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/touchpad.png new file mode 100644 index 0000000..d50bad1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/white.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window-round.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window-round.9.png new file mode 100644 index 0000000..ddfe426 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window-round.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window-round.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window-round.png new file mode 100644 index 0000000..5bae155 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window-round.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window.9.png new file mode 100644 index 0000000..843ae39 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window.png new file mode 100644 index 0000000..bf6c3ca Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-export.fnt new file mode 100644 index 0000000..f2d8111 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=27 base=27 scaleW=160 scaleH=162 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=155 y=140 width=4 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=139 y=109 width=8 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=40 y=105 width=16 height=18 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="#" +char id=36 x=100 y=82 width=12 height=24 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="$" +char id=37 x=0 y=82 width=20 height=20 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="%" +char id=38 x=19 y=141 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="&" +char id=39 x=146 y=143 width=4 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=146 y=118 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=148 y=21 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=")" +char id=42 x=113 y=103 width=12 height=10 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="*" +char id=43 x=57 y=109 width=14 height=14 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="+" +char id=44 x=139 y=118 width=6 height=8 xoffset=0 yoffset=23 xadvance=9 page=0 chnl=0 letter="," +char id=45 x=113 y=156 width=8 height=4 xoffset=0 yoffset=17 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=79 y=153 width=4 height=4 xoffset=0 yoffset=23 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=115 y=21 width=12 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="/" +char id=48 x=100 y=107 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="0" +char id=49 x=141 y=0 width=8 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="1" +char id=50 x=104 y=0 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="2" +char id=51 x=115 y=59 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="3" +char id=52 x=25 y=21 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="4" +char id=53 x=102 y=21 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="5" +char id=54 x=117 y=0 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="6" +char id=55 x=72 y=67 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="7" +char id=56 x=126 y=114 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="8" +char id=57 x=126 y=80 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="9" +char id=58 x=150 y=0 width=4 height=16 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=148 y=46 width=6 height=20 xoffset=0 yoffset=11 xadvance=9 page=0 chnl=0 letter=";" +char id=60 x=115 y=46 width=12 height=12 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="<" +char id=61 x=38 y=151 width=14 height=8 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="=" +char id=62 x=126 y=101 width=12 height=12 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=128 y=38 width=10 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="?" +char id=64 x=0 y=21 width=24 height=22 xoffset=0 yoffset=7 xadvance=27 page=0 chnl=0 letter="@" +char id=65 x=21 y=88 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=72 y=23 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="B" +char id=67 x=72 y=109 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="C" +char id=68 x=27 y=0 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="D" +char id=69 x=113 y=135 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="E" +char id=70 x=113 y=114 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="F" +char id=71 x=23 y=44 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="G" +char id=72 x=40 y=42 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="H" +char id=73 x=155 y=119 width=4 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=139 y=63 width=8 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=72 y=88 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="K" +char id=76 x=102 y=59 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=0 y=120 width=20 height=20 xoffset=0 yoffset=7 xadvance=23 page=0 chnl=0 letter="M" +char id=78 x=40 y=84 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=0 y=141 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="O" +char id=80 x=87 y=23 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="P" +char id=81 x=21 y=65 width=18 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="Q" +char id=82 x=55 y=124 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="R" +char id=83 x=91 y=0 width=12 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="S" +char id=84 x=87 y=61 width=14 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="T" +char id=85 x=44 y=0 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="U" +char id=86 x=21 y=109 width=18 height=20 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=26 height=20 xoffset=0 yoffset=7 xadvance=29 page=0 chnl=0 letter="W" +char id=88 x=38 y=130 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="X" +char id=89 x=40 y=63 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="Y" +char id=90 x=42 y=21 width=16 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="Z" +char id=91 x=148 y=67 width=6 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=87 y=82 width=12 height=24 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=139 y=38 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="]" +char id=94 x=87 y=147 width=12 height=12 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="^" +char id=95 x=40 y=124 width=12 height=4 xoffset=0 yoffset=27 xadvance=15 page=0 chnl=0 letter="_" +char id=96 x=139 y=127 width=6 height=6 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=59 y=23 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="a" +char id=98 x=76 y=0 width=14 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=128 y=21 width=10 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=61 y=0 width=14 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=87 y=130 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="e" +char id=102 x=126 y=135 width=10 height=22 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="f" +char id=103 x=57 y=65 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=87 y=107 width=12 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="h" +char id=105 x=155 y=98 width=4 height=20 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=137 y=135 width=8 height=26 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="j" +char id=107 x=113 y=80 width=12 height=22 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=155 y=75 width=4 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=103 width=20 height=16 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="m" +char id=110 x=100 y=145 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=55 y=145 width=14 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=72 y=44 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=57 y=42 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="q" +char id=114 x=139 y=21 width=8 height=16 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=128 y=59 width=10 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="s" +char id=116 x=130 y=0 width=10 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="t" +char id=117 x=100 y=128 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=57 y=88 width=14 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="v" +char id=119 x=0 y=65 width=20 height=16 xoffset=0 yoffset=11 xadvance=23 page=0 chnl=0 letter="w" +char id=120 x=87 y=44 width=14 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=72 y=130 width=14 height=22 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=102 y=42 width=12 height=16 xoffset=0 yoffset=11 xadvance=15 page=0 chnl=0 letter="z" +char id=123 x=148 y=92 width=6 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=155 y=46 width=4 height=28 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="|" +char id=125 x=139 y=84 width=8 height=24 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="}" +char id=126 x=21 y=130 width=14 height=6 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="~" +char id=8226 x=70 y=153 width=8 height=8 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="•" +char id=169 x=0 y=44 width=22 height=20 xoffset=0 yoffset=7 xadvance=25 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-subtitle-export.fnt b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-subtitle-export.fnt new file mode 100644 index 0000000..46bbd4d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-subtitle-export.fnt @@ -0,0 +1,104 @@ +info face="font-subtitle-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=48 base=48 scaleW=303 scaleH=303 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-subtitle-export.png" +chars count=98 +char id=33 x=286 y=265 width=12 height=34 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="!" +char id=34 x=87 y=284 width=20 height=16 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter=""" +char id=35 x=113 y=37 width=26 height=34 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="#" +char id=36 x=198 y=192 width=24 height=42 xoffset=0 yoffset=10 xadvance=26 page=0 chnl=0 letter="$" +char id=37 x=0 y=97 width=40 height=36 xoffset=0 yoffset=14 xadvance=42 page=0 chnl=0 letter="%" +char id=38 x=37 y=233 width=36 height=36 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="&" +char id=39 x=185 y=282 width=12 height=16 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="'" +char id=40 x=248 y=64 width=20 height=44 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="(" +char id=41 x=248 y=109 width=20 height=44 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter=")" +char id=42 x=246 y=278 width=20 height=24 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="*" +char id=43 x=142 y=185 width=28 height=26 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="+" +char id=44 x=125 y=284 width=16 height=18 xoffset=0 yoffset=36 xadvance=18 page=0 chnl=0 letter="," +char id=45 x=108 y=284 width=16 height=10 xoffset=0 yoffset=28 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=159 y=284 width=12 height=12 xoffset=0 yoffset=36 xadvance=14 page=0 chnl=0 letter="." +char id=47 x=269 y=101 width=20 height=36 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=223 y=37 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="0" +char id=49 x=248 y=29 width=22 height=34 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="1" +char id=50 x=198 y=130 width=24 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="2" +char id=51 x=171 y=171 width=26 height=36 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="3" +char id=52 x=142 y=115 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="4" +char id=53 x=223 y=74 width=24 height=38 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="5" +char id=54 x=223 y=185 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="6" +char id=55 x=196 y=66 width=26 height=34 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="7" +char id=56 x=223 y=148 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="8" +char id=57 x=171 y=107 width=26 height=36 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="9" +char id=58 x=288 y=138 width=12 height=26 xoffset=0 yoffset=22 xadvance=14 page=0 chnl=0 letter=":" +char id=59 x=269 y=183 width=16 height=32 xoffset=0 yoffset=22 xadvance=18 page=0 chnl=0 letter=";" +char id=60 x=43 y=37 width=26 height=30 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="<" +char id=61 x=0 y=276 width=28 height=18 xoffset=0 yoffset=26 xadvance=30 page=0 chnl=0 letter="=" +char id=62 x=196 y=247 width=26 height=30 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter=">" +char id=63 x=223 y=113 width=24 height=34 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="?" +char id=64 x=0 y=134 width=38 height=36 xoffset=0 yoffset=18 xadvance=40 page=0 chnl=0 letter="@" +char id=65 x=37 y=198 width=36 height=34 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="A" +char id=66 x=142 y=150 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="B" +char id=67 x=84 y=0 width=32 height=36 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="C" +char id=68 x=109 y=142 width=32 height=34 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="D" +char id=69 x=140 y=212 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="E" +char id=70 x=169 y=35 width=26 height=34 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="F" +char id=71 x=41 y=70 width=36 height=36 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="G" +char id=72 x=74 y=241 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="H" +char id=73 x=269 y=216 width=16 height=34 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="I" +char id=74 x=223 y=222 width=22 height=36 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="J" +char id=75 x=74 y=206 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="K" +char id=76 x=169 y=212 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="L" +char id=77 x=0 y=35 width=42 height=34 xoffset=0 yoffset=14 xadvance=44 page=0 chnl=0 letter="M" +char id=78 x=109 y=177 width=32 height=34 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="N" +char id=79 x=39 y=134 width=36 height=36 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="O" +char id=80 x=146 y=0 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="P" +char id=81 x=0 y=233 width=36 height=42 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="Q" +char id=82 x=78 y=72 width=32 height=34 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="R" +char id=83 x=223 y=0 width=24 height=36 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="S" +char id=84 x=109 y=212 width=30 height=34 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0 letter="T" +char id=85 x=49 y=0 width=34 height=36 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="U" +char id=86 x=78 y=37 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=48 height=34 xoffset=0 yoffset=14 xadvance=50 page=0 chnl=0 letter="W" +char id=88 x=74 y=171 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="X" +char id=89 x=76 y=107 width=34 height=34 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="Y" +char id=90 x=167 y=247 width=28 height=34 xoffset=0 yoffset=14 xadvance=30 page=0 chnl=0 letter="Z" +char id=91 x=269 y=251 width=16 height=44 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="[" +char id=92 x=269 y=64 width=20 height=36 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=286 y=183 width=16 height=44 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="]" +char id=94 x=39 y=171 width=26 height=22 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="^" +char id=95 x=29 y=276 width=28 height=8 xoffset=0 yoffset=50 xadvance=30 page=0 chnl=0 letter="_" +char id=96 x=142 y=284 width=16 height=14 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="`" +char id=97 x=196 y=37 width=26 height=28 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="a" +char id=98 x=140 y=76 width=28 height=38 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="b" +char id=99 x=246 y=222 width=22 height=28 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="c" +char id=100 x=140 y=37 width=28 height=38 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="d" +char id=101 x=198 y=101 width=24 height=28 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="e" +char id=102 x=223 y=259 width=22 height=36 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="f" +char id=103 x=117 y=0 width=28 height=36 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="g" +char id=104 x=111 y=72 width=28 height=36 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="h" +char id=105 x=286 y=228 width=14 height=36 xoffset=0 yoffset=12 xadvance=16 page=0 chnl=0 letter="i" +char id=106 x=271 y=0 width=16 height=46 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="j" +char id=107 x=138 y=247 width=28 height=36 xoffset=0 yoffset=12 xadvance=30 page=0 chnl=0 letter="k" +char id=108 x=288 y=0 width=12 height=36 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="l" +char id=109 x=0 y=70 width=40 height=26 xoffset=0 yoffset=22 xadvance=42 page=0 chnl=0 letter="m" +char id=110 x=41 y=107 width=26 height=26 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="n" +char id=111 x=76 y=142 width=26 height=28 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="o" +char id=112 x=109 y=247 width=28 height=36 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="p" +char id=113 x=169 y=70 width=26 height=36 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="q" +char id=114 x=246 y=251 width=22 height=26 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="r" +char id=115 x=248 y=0 width=22 height=28 xoffset=0 yoffset=22 xadvance=24 page=0 chnl=0 letter="s" +char id=116 x=175 y=0 width=20 height=34 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="t" +char id=117 x=111 y=109 width=28 height=28 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="u" +char id=118 x=171 y=144 width=26 height=26 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="v" +char id=119 x=0 y=171 width=38 height=26 xoffset=0 yoffset=22 xadvance=40 page=0 chnl=0 letter="w" +char id=120 x=58 y=276 width=28 height=26 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter="x" +char id=121 x=196 y=0 width=26 height=36 xoffset=0 yoffset=22 xadvance=28 page=0 chnl=0 letter="y" +char id=122 x=198 y=165 width=24 height=26 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="z" +char id=123 x=248 y=154 width=20 height=44 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="{" +char id=124 x=290 y=37 width=10 height=38 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 letter="|" +char id=125 x=269 y=138 width=18 height=44 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="}" +char id=126 x=29 y=285 width=26 height=16 xoffset=0 yoffset=26 xadvance=28 page=0 chnl=0 letter="~" +char id=8226 x=172 y=282 width=12 height=12 xoffset=0 yoffset=22 xadvance=14 page=0 chnl=0 letter="•" +char id=169 x=0 y=198 width=36 height=34 xoffset=0 yoffset=14 xadvance=38 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=136 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-title-export.fnt new file mode 100644 index 0000000..0955495 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=95 base=95 scaleW=619 scaleH=620 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=563 y=408 width=16 height=70 xoffset=0 yoffset=21 xadvance=22 page=0 chnl=0 letter="!" +char id=34 x=179 y=575 width=26 height=36 xoffset=0 yoffset=11 xadvance=32 page=0 chnl=0 letter=""" +char id=35 x=424 y=268 width=52 height=72 xoffset=0 yoffset=17 xadvance=58 page=0 chnl=0 letter="#" +char id=36 x=524 y=65 width=38 height=78 xoffset=0 yoffset=17 xadvance=44 page=0 chnl=0 letter="$" +char id=37 x=237 y=553 width=66 height=66 xoffset=0 yoffset=23 xadvance=72 page=0 chnl=0 letter="%" +char id=38 x=237 y=413 width=70 height=68 xoffset=0 yoffset=21 xadvance=76 page=0 chnl=0 letter="&" +char id=39 x=339 y=189 width=16 height=36 xoffset=0 yoffset=11 xadvance=22 page=0 chnl=0 letter="'" +char id=40 x=592 y=156 width=26 height=76 xoffset=0 yoffset=19 xadvance=32 page=0 chnl=0 letter="(" +char id=41 x=592 y=233 width=26 height=74 xoffset=0 yoffset=19 xadvance=32 page=0 chnl=0 letter=")" +char id=42 x=92 y=573 width=32 height=32 xoffset=0 yoffset=19 xadvance=38 page=0 chnl=0 letter="*" +char id=43 x=178 y=241 width=72 height=74 xoffset=0 yoffset=15 xadvance=78 page=0 chnl=0 letter="+" +char id=44 x=259 y=128 width=18 height=26 xoffset=0 yoffset=69 xadvance=24 page=0 chnl=0 letter="," +char id=45 x=49 y=598 width=32 height=16 xoffset=0 yoffset=51 xadvance=38 page=0 chnl=0 letter="-" +char id=46 x=110 y=395 width=18 height=18 xoffset=0 yoffset=71 xadvance=24 page=0 chnl=0 letter="." +char id=47 x=430 y=138 width=48 height=68 xoffset=0 yoffset=21 xadvance=54 page=0 chnl=0 letter="/" +char id=48 x=424 y=424 width=50 height=64 xoffset=0 yoffset=25 xadvance=56 page=0 chnl=0 letter="0" +char id=49 x=559 y=341 width=34 height=66 xoffset=0 yoffset=23 xadvance=40 page=0 chnl=0 letter="1" +char id=50 x=475 y=410 width=44 height=64 xoffset=0 yoffset=25 xadvance=50 page=0 chnl=0 letter="2" +char id=51 x=520 y=410 width=42 height=68 xoffset=0 yoffset=23 xadvance=48 page=0 chnl=0 letter="3" +char id=52 x=422 y=357 width=50 height=66 xoffset=0 yoffset=23 xadvance=56 page=0 chnl=0 letter="4" +char id=53 x=522 y=215 width=40 height=64 xoffset=0 yoffset=25 xadvance=46 page=0 chnl=0 letter="5" +char id=54 x=477 y=268 width=44 height=66 xoffset=0 yoffset=25 xadvance=50 page=0 chnl=0 letter="6" +char id=55 x=483 y=0 width=44 height=64 xoffset=0 yoffset=25 xadvance=50 page=0 chnl=0 letter="7" +char id=56 x=479 y=79 width=44 height=68 xoffset=0 yoffset=23 xadvance=50 page=0 chnl=0 letter="8" +char id=57 x=479 y=148 width=44 height=66 xoffset=0 yoffset=23 xadvance=50 page=0 chnl=0 letter="9" +char id=58 x=320 y=189 width=18 height=44 xoffset=0 yoffset=43 xadvance=24 page=0 chnl=0 letter=":" +char id=59 x=367 y=566 width=16 height=52 xoffset=0 yoffset=43 xadvance=22 page=0 chnl=0 letter=";" +char id=60 x=152 y=575 width=26 height=40 xoffset=0 yoffset=33 xadvance=32 page=0 chnl=0 letter="<" +char id=61 x=57 y=575 width=34 height=22 xoffset=0 yoffset=49 xadvance=40 page=0 chnl=0 letter="=" +char id=62 x=125 y=575 width=26 height=40 xoffset=0 yoffset=33 xadvance=32 page=0 chnl=0 letter=">" +char id=63 x=524 y=144 width=38 height=70 xoffset=0 yoffset=21 xadvance=44 page=0 chnl=0 letter="?" +char id=64 x=218 y=0 width=70 height=66 xoffset=0 yoffset=25 xadvance=76 page=0 chnl=0 letter="@" +char id=65 x=107 y=99 width=78 height=80 xoffset=0 yoffset=15 xadvance=84 page=0 chnl=0 letter="A" +char id=66 x=367 y=487 width=56 height=78 xoffset=0 yoffset=17 xadvance=62 page=0 chnl=0 letter="B" +char id=67 x=186 y=158 width=70 height=80 xoffset=0 yoffset=15 xadvance=76 page=0 chnl=0 letter="C" +char id=68 x=81 y=494 width=78 height=78 xoffset=0 yoffset=17 xadvance=84 page=0 chnl=0 letter="D" +char id=69 x=424 y=489 width=50 height=78 xoffset=0 yoffset=17 xadvance=56 page=0 chnl=0 letter="E" +char id=70 x=434 y=0 width=48 height=78 xoffset=0 yoffset=17 xadvance=54 page=0 chnl=0 letter="F" +char id=71 x=162 y=332 width=76 height=80 xoffset=0 yoffset=15 xadvance=82 page=0 chnl=0 letter="G" +char id=72 x=0 y=415 width=80 height=78 xoffset=0 yoffset=17 xadvance=86 page=0 chnl=0 letter="H" +char id=73 x=563 y=0 width=32 height=78 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="I" +char id=74 x=561 y=479 width=36 height=100 xoffset=0 yoffset=17 xadvance=42 page=0 chnl=0 letter="J" +char id=75 x=160 y=494 width=76 height=80 xoffset=0 yoffset=17 xadvance=82 page=0 chnl=0 letter="K" +char id=76 x=381 y=59 width=52 height=78 xoffset=0 yoffset=17 xadvance=58 page=0 chnl=0 letter="L" +char id=77 x=0 y=253 width=98 height=80 xoffset=0 yoffset=15 xadvance=104 page=0 chnl=0 letter="M" +char id=78 x=0 y=334 width=82 height=80 xoffset=0 yoffset=15 xadvance=88 page=0 chnl=0 letter="N" +char id=79 x=0 y=494 width=80 height=80 xoffset=0 yoffset=15 xadvance=86 page=0 chnl=0 letter="O" +char id=80 x=375 y=189 width=54 height=78 xoffset=0 yoffset=17 xadvance=60 page=0 chnl=0 letter="P" +char id=81 x=0 y=0 width=140 height=98 xoffset=0 yoffset=13 xadvance=82 page=0 chnl=0 letter="Q" +char id=82 x=141 y=0 width=76 height=78 xoffset=0 yoffset=17 xadvance=82 page=0 chnl=0 letter="R" +char id=83 x=475 y=475 width=44 height=80 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0 letter="S" +char id=84 x=239 y=316 width=66 height=80 xoffset=0 yoffset=15 xadvance=72 page=0 chnl=0 letter="T" +char id=85 x=99 y=253 width=78 height=78 xoffset=0 yoffset=17 xadvance=84 page=0 chnl=0 letter="U" +char id=86 x=81 y=415 width=80 height=78 xoffset=0 yoffset=17 xadvance=86 page=0 chnl=0 letter="V" +char id=87 x=0 y=174 width=102 height=78 xoffset=0 yoffset=17 xadvance=108 page=0 chnl=0 letter="W" +char id=88 x=186 y=79 width=72 height=78 xoffset=0 yoffset=17 xadvance=78 page=0 chnl=0 letter="X" +char id=89 x=162 y=413 width=74 height=78 xoffset=0 yoffset=17 xadvance=80 page=0 chnl=0 letter="Y" +char id=90 x=257 y=158 width=62 height=78 xoffset=0 yoffset=17 xadvance=68 page=0 chnl=0 letter="Z" +char id=91 x=594 y=308 width=24 height=74 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="[" +char id=92 x=473 y=341 width=48 height=68 xoffset=0 yoffset=27 xadvance=54 page=0 chnl=0 letter="\" +char id=93 x=594 y=383 width=24 height=74 xoffset=0 yoffset=25 xadvance=30 page=0 chnl=0 letter="]" +char id=94 x=308 y=424 width=54 height=52 xoffset=0 yoffset=31 xadvance=60 page=0 chnl=0 letter="^" +char id=95 x=0 y=598 width=48 height=14 xoffset=0 yoffset=105 xadvance=54 page=0 chnl=0 letter="_" +char id=96 x=83 y=395 width=26 height=18 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="`" +char id=97 x=306 y=302 width=60 height=60 xoffset=0 yoffset=33 xadvance=66 page=0 chnl=0 letter="a" +char id=98 x=475 y=556 width=42 height=62 xoffset=0 yoffset=33 xadvance=48 page=0 chnl=0 letter="b" +char id=99 x=367 y=424 width=56 height=62 xoffset=0 yoffset=33 xadvance=62 page=0 chnl=0 letter="c" +char id=100 x=320 y=128 width=58 height=60 xoffset=0 yoffset=35 xadvance=64 page=0 chnl=0 letter="d" +char id=101 x=520 y=479 width=40 height=60 xoffset=0 yoffset=33 xadvance=46 page=0 chnl=0 letter="e" +char id=102 x=522 y=280 width=38 height=60 xoffset=0 yoffset=33 xadvance=44 page=0 chnl=0 letter="f" +char id=103 x=306 y=482 width=60 height=62 xoffset=0 yoffset=33 xadvance=66 page=0 chnl=0 letter="g" +char id=104 x=259 y=67 width=62 height=60 xoffset=0 yoffset=35 xadvance=68 page=0 chnl=0 letter="h" +char id=105 x=528 y=0 width=26 height=58 xoffset=0 yoffset=35 xadvance=32 page=0 chnl=0 letter="i" +char id=106 x=563 y=79 width=30 height=76 xoffset=0 yoffset=35 xadvance=36 page=0 chnl=0 letter="j" +char id=107 x=322 y=61 width=58 height=60 xoffset=0 yoffset=35 xadvance=64 page=0 chnl=0 letter="k" +char id=108 x=518 y=556 width=40 height=58 xoffset=0 yoffset=35 xadvance=46 page=0 chnl=0 letter="l" +char id=109 x=103 y=180 width=76 height=60 xoffset=0 yoffset=33 xadvance=82 page=0 chnl=0 letter="m" +char id=110 x=251 y=239 width=64 height=62 xoffset=0 yoffset=33 xadvance=70 page=0 chnl=0 letter="n" +char id=111 x=304 y=553 width=62 height=62 xoffset=0 yoffset=33 xadvance=68 page=0 chnl=0 letter="o" +char id=112 x=434 y=79 width=42 height=58 xoffset=0 yoffset=35 xadvance=48 page=0 chnl=0 letter="p" +char id=113 x=0 y=99 width=106 height=74 xoffset=0 yoffset=33 xadvance=66 page=0 chnl=0 letter="q" +char id=114 x=308 y=363 width=60 height=60 xoffset=0 yoffset=35 xadvance=66 page=0 chnl=0 letter="r" +char id=115 x=522 y=341 width=36 height=62 xoffset=0 yoffset=33 xadvance=42 page=0 chnl=0 letter="s" +char id=116 x=369 y=357 width=52 height=60 xoffset=0 yoffset=33 xadvance=58 page=0 chnl=0 letter="t" +char id=117 x=316 y=237 width=58 height=60 xoffset=0 yoffset=35 xadvance=64 page=0 chnl=0 letter="u" +char id=118 x=289 y=0 width=62 height=60 xoffset=0 yoffset=35 xadvance=68 page=0 chnl=0 letter="v" +char id=119 x=83 y=334 width=78 height=60 xoffset=0 yoffset=35 xadvance=84 page=0 chnl=0 letter="w" +char id=120 x=352 y=0 width=56 height=58 xoffset=0 yoffset=35 xadvance=62 page=0 chnl=0 letter="x" +char id=121 x=367 y=298 width=56 height=58 xoffset=0 yoffset=35 xadvance=62 page=0 chnl=0 letter="y" +char id=122 x=430 y=207 width=48 height=60 xoffset=0 yoffset=33 xadvance=54 page=0 chnl=0 letter="z" +char id=123 x=563 y=156 width=28 height=74 xoffset=0 yoffset=27 xadvance=34 page=0 chnl=0 letter="{" +char id=124 x=596 y=0 width=12 height=80 xoffset=0 yoffset=21 xadvance=18 page=0 chnl=0 letter="|" +char id=125 x=563 y=231 width=28 height=74 xoffset=0 yoffset=25 xadvance=34 page=0 chnl=0 letter="}" +char id=126 x=0 y=575 width=56 height=22 xoffset=0 yoffset=59 xadvance=62 page=0 chnl=0 letter="~" +char id=8226 x=206 y=575 width=22 height=24 xoffset=0 yoffset=53 xadvance=28 page=0 chnl=0 letter="•" +char id=169 x=237 y=482 width=68 height=70 xoffset=0 yoffset=27 xadvance=74 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=35 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=280 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.atlas b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.atlas new file mode 100644 index 0000000..0bdce85 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.atlas @@ -0,0 +1,318 @@ + +pixthulhu-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +button + rotate: false + xy: 847, 220 + size: 102, 114 + split: 33, 33, 33, 45 + pad: 28, 28, 22, 33 + orig: 102, 114 + offset: 0, 0 + index: -1 +button-arcade + rotate: false + xy: 927, 871 + size: 96, 96 + split: 0, 0, 0, 0 + pad: 21, 21, 18, 27 + orig: 96, 96 + offset: 0, 0 + index: -1 +button-arcade-pressed + rotate: false + xy: 927, 773 + size: 96, 96 + split: 0, 0, 0, 0 + pad: 21, 21, 21, 24 + orig: 96, 96 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 674, 158 + size: 102, 114 + split: 33, 33, 42, 36 + pad: 28, 28, 30, 24 + orig: 102, 114 + offset: 0, 0 + index: -1 +checkbox-off + rotate: false + xy: 622, 403 + size: 50, 42 + orig: 50, 42 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 1, 7 + size: 50, 42 + orig: 50, 42 + offset: 0, 0 + index: -1 +eye-1 + rotate: false + xy: 501, 230 + size: 171, 171 + orig: 171, 171 + offset: 0, 0 + index: -1 +eye-2 + rotate: false + xy: 674, 274 + size: 171, 171 + orig: 171, 171 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 847, 336 + size: 160, 162 + orig: 160, 162 + offset: 0, 0 + index: -1 +font-subtitle-export + rotate: false + xy: 622, 664 + size: 303, 303 + orig: 303, 303 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 403 + size: 619, 620 + orig: 619, 620 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 263, 47 + size: 114, 114 + split: 48, 48, 42, 48 + pad: 48, 48, 9, 9 + orig: 114, 114 + offset: 0, 0 + index: -1 +logo + rotate: false + xy: 622, 447 + size: 216, 215 + orig: 216, 215 + offset: 0, 0 + index: -1 +pixthulhu + rotate: false + xy: 379, 82 + size: 103, 135 + orig: 103, 135 + offset: 0, 0 + index: -1 +portrait + rotate: false + xy: 132, 31 + size: 129, 130 + orig: 129, 130 + offset: 0, 0 + index: -1 +progress-bar-health + rotate: false + xy: 1, 311 + size: 498, 90 + split: 138, 69, 0, 0 + pad: 117, 45, 18, 18 + orig: 498, 90 + offset: 0, 0 + index: -1 +progress-bar-health-knob + rotate: false + xy: 622, 969 + size: 336, 54 + orig: 336, 54 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 1013, 726 + size: 9, 45 + split: 3, 3, 3, 3 + orig: 9, 45 + offset: 0, 0 + index: -1 +progress-bar-horizontal-knob + rotate: false + xy: 840, 459 + size: 1, 39 + orig: 1, 39 + offset: 0, 0 + index: -1 +progress-bar-mana + rotate: false + xy: 1, 219 + size: 498, 90 + split: 138, 69, 0, 0 + pad: 117, 45, 18, 18 + orig: 498, 90 + offset: 0, 0 + index: -1 +progress-bar-mana-knob + rotate: false + xy: 1, 163 + size: 336, 54 + orig: 336, 54 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 501, 219 + size: 45, 9 + split: 3, 3, 3, 3 + orig: 45, 9 + offset: 0, 0 + index: -1 +progress-bar-vertical-knob + rotate: false + xy: 778, 194 + size: 39, 1 + orig: 39, 1 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 339, 174 + size: 21, 43 + split: 9, 9, 17, 17 + pad: 0, 0, 0, 0 + orig: 21, 43 + offset: 0, 0 + index: -1 +scrollbar-horizontal-knob + rotate: false + xy: 1, 51 + size: 93, 42 + split: 24, 24, 0, 0 + pad: 0, 0, 0, 0 + orig: 93, 42 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 951, 236 + size: 43, 21 + split: 17, 17, 9, 9 + pad: 0, 0, 0, 0 + orig: 43, 21 + offset: 0, 0 + index: -1 +scrollbar-vertical-knob + rotate: false + xy: 484, 38 + size: 42, 93 + split: 0, 0, 24, 24 + pad: 0, 0, 0, 0 + orig: 42, 93 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 1, 95 + size: 129, 66 + split: 9, 69, 9, 30 + pad: 16, 76, 13, 12 + orig: 129, 66 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 927, 717 + size: 84, 54 + split: 36, 36, 15, 15 + pad: 0, 0, 0, 0 + orig: 84, 54 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 960, 969 + size: 54, 54 + orig: 54, 54 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 484, 133 + size: 54, 84 + split: 15, 15, 36, 36 + pad: 0, 0, 0, 0 + orig: 54, 84 + offset: 0, 0 + index: -1 +split-pane-horizontal + rotate: false + xy: 53, 1 + size: 24, 48 + split: 3, 3, 3, 3 + pad: 0, 0, 0, 0 + orig: 24, 48 + offset: 0, 0 + index: -1 +split-pane-vertical + rotate: false + xy: 379, 56 + size: 48, 24 + split: 3, 3, 3, 3 + pad: 0, 0, 0, 0 + orig: 48, 24 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 951, 259 + size: 69, 75 + split: 21, 21, 21, 21 + pad: 28, 28, 23, 23 + orig: 69, 75 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 840, 500 + size: 162, 162 + orig: 162, 162 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 927, 664 + size: 48, 51 + orig: 48, 51 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 96, 92 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 996, 230 + size: 27, 27 + split: 9, 9, 9, 9 + orig: 27, 27 + offset: 0, 0 + index: -1 +window-round + rotate: false + xy: 778, 197 + size: 60, 75 + split: 18, 30, 18, 30 + pad: 6, 6, 18, 30 + orig: 60, 75 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.json b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.json new file mode 100644 index 0000000..1684ba9 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.json @@ -0,0 +1,264 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + subtitle: { + file: font-subtitle-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + blue: { + r: 0 + g: 0 + b: 1 + a: 1 + } + field: { + r: 0.5058824 + g: 0.9372549 + b: 0.9137255 + a: 1 + } + highlight: { + r: 0.29411766 + g: 0.5529412 + b: 0.54509807 + a: 1 + } + red: { + r: 1 + g: 0 + b: 0 + a: 1 + } + stone: { + r: 0 + g: 0.25882354 + b: 0.2509804 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + field: { + name: white + color: { + r: 0.5058824 + g: 0.9372549 + b: 0.9137255 + a: 1 + } + } + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } + shadow: { + name: white + color: { + r: 0 + g: 0.12156863 + b: 0.11372549 + a: 1 + } + } + stone: { + name: white + color: { + r: 0 + g: 0.25882354 + b: 0.2509804 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + } + toggle: { + up: button + down: button-pressed + checked: button-pressed + } + arcade: { + up: button-arcade + down: button-arcade-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox-off + font: subtitle + fontColor: field + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + } + toggle: { + up: button + down: button-pressed + checked: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: subtitle + fontColor: field + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: white + } + subtitle: { + font: subtitle + fontColor: white + } + title: { + font: title + fontColor: white + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: subtitle + fontColorSelected: white + fontColorUnselected: field + selection: field + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-horizontal + knobBefore: progress-bar-horizontal-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-vertical-knob + } + health: { + background: progress-bar-health + knobBefore: progress-bar-health-knob + } + mana: { + background: progress-bar-mana + knobBefore: progress-bar-mana-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollbar-horizontal + hScrollKnob: scrollbar-horizontal-knob + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: subtitle + fontColor: red + background: select-box + scrollStyle: default + listStyle: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider-horizontal + knob: slider-knob + } + default-vertical: { + background: slider-vertical + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane-horizontal + } + default-vertical: { + handle: split-pane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: subtitle + fontColor: field + up: button + down: button-pressed + } + toggle: { + font: subtitle + fontColor: field + up: button + down: button-pressed + checked: button-pressed + } + arcade: { + font: font + fontColor: field + up: button-arcade + down: button-arcade-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + cursor: black + selection: shadow + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + } + round: { + background: window-round + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.png b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.png new file mode 100644 index 0000000..56a89bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/pixthulhu/skin/pixthulhu-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/README.md b/src/main/resources/omni_power/gdx-skins/plain-james/README.md new file mode 100644 index 0000000..259f20d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/README.md @@ -0,0 +1,12 @@ +# Plain James UI + +Features styles of most of **Scene2D** widgets. Simple and classy. + +![Plain James](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by **Raeleus**. + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/preview.png b/src/main/resources/omni_power/gdx-skins/plain-james/preview.png new file mode 100644 index 0000000..c150f1a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/README.md b/src/main/resources/omni_power/gdx-skins/plain-james/raw/README.md new file mode 100644 index 0000000..7ace26f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/raw/README.md @@ -0,0 +1 @@ +Raw assets were extracted using [Skin Composer](https://github.com/raeleus/skin-composer). diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/checkbox-on.png new file mode 100644 index 0000000..fd5547a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/checkbox.png new file mode 100644 index 0000000..9c12c6b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/cursor.9.png new file mode 100644 index 0000000..75cf8fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-export.fnt new file mode 100644 index 0000000..a8bfbec --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=23 base=23 scaleW=142 scaleH=143 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=138 y=90 width=3 height=18 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=125 y=24 width=6 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=52 y=37 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="#" +char id=36 x=91 y=82 width=11 height=20 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=37 width=18 height=18 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="%" +char id=38 x=0 y=102 width=17 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="&" +char id=39 x=49 y=92 width=2 height=6 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=132 y=46 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=132 y=24 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=66 y=105 width=9 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=52 y=70 width=13 height=13 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="+" +char id=44 x=65 y=134 width=5 height=8 xoffset=0 yoffset=20 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=125 y=31 width=6 height=2 xoffset=0 yoffset=16 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=0 y=139 width=4 height=3 xoffset=0 yoffset=20 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=115 y=70 width=8 height=18 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=78 y=105 width=12 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=124 y=38 width=7 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=79 y=82 width=11 height=17 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=114 y=103 width=10 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=78 y=124 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=107 y=0 width=10 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=92 y=19 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=104 y=38 width=10 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="7" +char id=56 x=92 y=51 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="8" +char id=57 x=95 y=0 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=92 y=70 width=4 height=11 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=132 y=126 width=4 height=16 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=52 y=84 width=13 height=13 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="<" +char id=61 x=19 y=75 width=13 height=7 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="=" +char id=62 x=52 y=55 width=13 height=14 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=114 y=122 width=9 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=121 width=17 height=17 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="@" +char id=65 x=18 y=83 width=17 height=17 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=56 y=0 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="B" +char id=67 x=41 y=0 width=14 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="C" +char id=68 x=35 y=119 width=15 height=17 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="D" +char id=69 x=66 y=87 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="E" +char id=70 x=79 y=64 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="F" +char id=71 x=19 y=56 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=36 y=37 width=15 height=17 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=124 y=73 width=6 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=118 y=0 width=8 height=18 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=21 y=19 width=16 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=51 y=119 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=0 y=19 width=20 height=17 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="M" +char id=78 x=36 y=74 width=15 height=17 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=24 y=0 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=67 y=18 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="P" +char id=81 x=18 y=101 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=38 y=19 width=14 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="R" +char id=83 x=104 y=19 width=10 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=52 y=98 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=36 y=55 width=15 height=18 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="U" +char id=86 x=19 y=37 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=23 height=18 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=18 y=123 width=16 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=35 y=101 width=16 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=53 y=19 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Z" +char id=91 x=134 y=0 width=5 height=21 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=115 y=51 width=8 height=18 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=132 y=68 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=66 y=56 width=12 height=11 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="^" +char id=95 x=52 y=116 width=12 height=2 xoffset=0 yoffset=27 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=36 y=92 width=6 height=5 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=104 y=56 width=10 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=66 y=68 width=12 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="b" +char id=99 x=103 y=129 width=10 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=103 y=84 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=103 y=70 width=11 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=115 y=19 width=9 height=18 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=66 y=37 width=12 height=18 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=65 y=116 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=132 y=108 width=5 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=127 y=0 width=6 height=23 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=70 y=0 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=132 y=90 width=5 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=18 height=12 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="m" +char id=110 x=103 y=103 width=10 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=79 y=36 width=12 height=13 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="o" +char id=112 x=91 y=103 width=11 height=17 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=91 y=121 width=11 height=17 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=115 y=38 width=8 height=12 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=115 y=89 width=8 height=13 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="s" +char id=116 x=124 y=56 width=7 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=80 y=19 width=11 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=79 y=50 width=12 height=13 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=69 width=18 height=13 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=92 y=38 width=11 height=12 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="x" +char id=121 x=83 y=0 width=11 height=18 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="y" +char id=122 x=103 y=116 width=10 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=125 y=91 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=138 y=109 width=2 height=19 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=125 y=113 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=35 y=137 width=12 height=4 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=43 y=92 width=5 height=6 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=83 width=17 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-export.png new file mode 100644 index 0000000..cc29b5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-title-export.fnt new file mode 100644 index 0000000..49f5318 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=35 base=35 scaleW=261 scaleH=265 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=221 y=217 width=17 height=26 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="!" +char id=34 x=240 y=26 width=13 height=12 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter=""" +char id=35 x=219 y=199 width=18 height=17 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=171 y=74 width=26 height=37 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="$" +char id=37 x=0 y=157 width=37 height=27 xoffset=0 yoffset=9 xadvance=40 page=0 chnl=0 letter="%" +char id=38 x=76 y=27 width=33 height=27 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="&" +char id=39 x=243 y=13 width=6 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="'" +char id=40 x=239 y=158 width=15 height=35 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="(" +char id=41 x=225 y=61 width=16 height=35 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter=")" +char id=42 x=240 y=39 width=13 height=13 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="*" +char id=43 x=199 y=26 width=23 height=22 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="+" +char id=44 x=243 y=0 width=8 height=12 xoffset=0 yoffset=28 xadvance=11 page=0 chnl=0 letter="," +char id=45 x=199 y=65 width=14 height=7 xoffset=0 yoffset=23 xadvance=17 page=0 chnl=0 letter="-" +char id=46 x=214 y=65 width=9 height=7 xoffset=0 yoffset=28 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=219 y=165 width=19 height=33 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=37 y=185 width=35 height=27 xoffset=0 yoffset=9 xadvance=38 page=0 chnl=0 letter="0" +char id=49 x=199 y=217 width=21 height=25 xoffset=0 yoffset=10 xadvance=24 page=0 chnl=0 letter="1" +char id=50 x=170 y=217 width=28 height=26 xoffset=0 yoffset=9 xadvance=31 page=0 chnl=0 letter="2" +char id=51 x=110 y=27 width=30 height=27 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter="3" +char id=52 x=139 y=239 width=30 height=25 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="4" +char id=53 x=140 y=113 width=29 height=26 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="5" +char id=54 x=107 y=211 width=32 height=27 xoffset=0 yoffset=9 xadvance=35 page=0 chnl=0 letter="6" +char id=55 x=171 y=26 width=27 height=25 xoffset=0 yoffset=10 xadvance=30 page=0 chnl=0 letter="7" +char id=56 x=108 y=107 width=31 height=27 xoffset=0 yoffset=9 xadvance=34 page=0 chnl=0 letter="8" +char id=57 x=73 y=211 width=33 height=27 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="9" +char id=58 x=252 y=0 width=8 height=19 xoffset=0 yoffset=16 xadvance=11 page=0 chnl=0 letter=":" +char id=59 x=242 y=62 width=9 height=24 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=140 y=190 width=30 height=26 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=171 y=196 width=23 height=16 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="=" +char id=62 x=139 y=163 width=30 height=26 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter=">" +char id=63 x=198 y=74 width=26 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="?" +char id=64 x=0 y=46 width=40 height=39 xoffset=0 yoffset=5 xadvance=43 page=0 chnl=0 letter="@" +char id=65 x=0 y=131 width=37 height=25 xoffset=0 yoffset=10 xadvance=40 page=0 chnl=0 letter="A" +char id=66 x=38 y=131 width=35 height=25 xoffset=0 yoffset=10 xadvance=38 page=0 chnl=0 letter="B" +char id=67 x=108 y=135 width=31 height=27 xoffset=0 yoffset=9 xadvance=34 page=0 chnl=0 letter="C" +char id=68 x=37 y=239 width=35 height=25 xoffset=0 yoffset=10 xadvance=38 page=0 chnl=0 letter="D" +char id=69 x=107 y=239 width=31 height=25 xoffset=0 yoffset=10 xadvance=34 page=0 chnl=0 letter="E" +char id=70 x=111 y=0 width=30 height=25 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="F" +char id=71 x=74 y=134 width=33 height=27 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="G" +char id=72 x=0 y=237 width=36 height=25 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0 letter="H" +char id=73 x=199 y=139 width=20 height=25 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="I" +char id=74 x=79 y=0 width=31 height=26 xoffset=0 yoffset=10 xadvance=34 page=0 chnl=0 letter="J" +char id=75 x=74 y=107 width=33 height=26 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="K" +char id=76 x=142 y=0 width=29 height=25 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="L" +char id=77 x=0 y=105 width=39 height=25 xoffset=0 yoffset=10 xadvance=42 page=0 chnl=0 letter="M" +char id=78 x=73 y=239 width=33 height=25 xoffset=0 yoffset=10 xadvance=36 page=0 chnl=0 letter="N" +char id=79 x=38 y=157 width=35 height=27 xoffset=0 yoffset=9 xadvance=38 page=0 chnl=0 letter="O" +char id=80 x=76 y=55 width=33 height=25 xoffset=0 yoffset=10 xadvance=36 page=0 chnl=0 letter="P" +char id=81 x=41 y=74 width=34 height=32 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Q" +char id=82 x=37 y=213 width=35 height=25 xoffset=0 yoffset=10 xadvance=38 page=0 chnl=0 letter="R" +char id=83 x=171 y=168 width=28 height=27 xoffset=0 yoffset=9 xadvance=31 page=0 chnl=0 letter="S" +char id=84 x=141 y=26 width=29 height=25 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="T" +char id=85 x=44 y=0 width=34 height=26 xoffset=0 yoffset=10 xadvance=37 page=0 chnl=0 letter="U" +char id=86 x=0 y=211 width=36 height=25 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=43 height=25 xoffset=0 yoffset=10 xadvance=46 page=0 chnl=0 letter="W" +char id=88 x=73 y=185 width=34 height=25 xoffset=0 yoffset=10 xadvance=37 page=0 chnl=0 letter="X" +char id=89 x=0 y=185 width=36 height=25 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0 letter="Y" +char id=90 x=199 y=0 width=26 height=25 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 letter="Z" +char id=91 x=239 y=194 width=14 height=34 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=200 y=101 width=19 height=33 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=239 y=229 width=14 height=34 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="]" +char id=94 x=199 y=49 width=17 height=8 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="^" +char id=95 x=172 y=22 width=23 height=3 xoffset=0 yoffset=38 xadvance=26 page=0 chnl=0 letter="_" +char id=96 x=242 y=53 width=12 height=8 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="`" +char id=97 x=140 y=217 width=28 height=21 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="a" +char id=98 x=108 y=163 width=30 height=26 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="b" +char id=99 x=171 y=52 width=27 height=21 xoffset=0 yoffset=16 xadvance=30 page=0 chnl=0 letter="c" +char id=100 x=141 y=52 width=29 height=26 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="d" +char id=101 x=140 y=140 width=28 height=21 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="e" +char id=102 x=220 y=101 width=18 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="f" +char id=103 x=170 y=139 width=28 height=28 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="g" +char id=104 x=76 y=81 width=32 height=25 xoffset=0 yoffset=10 xadvance=35 page=0 chnl=0 letter="h" +char id=105 x=226 y=0 width=16 height=25 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="i" +char id=106 x=220 y=128 width=18 height=34 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="j" +char id=107 x=170 y=113 width=29 height=25 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="k" +char id=108 x=239 y=97 width=15 height=25 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="l" +char id=109 x=0 y=26 width=42 height=19 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="m" +char id=110 x=40 y=107 width=31 height=19 xoffset=0 yoffset=16 xadvance=34 page=0 chnl=0 letter="n" +char id=111 x=108 y=190 width=29 height=20 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=0 letter="o" +char id=112 x=110 y=55 width=30 height=28 xoffset=0 yoffset=16 xadvance=33 page=0 chnl=0 letter="p" +char id=113 x=140 y=84 width=30 height=28 xoffset=0 yoffset=16 xadvance=33 page=0 chnl=0 letter="q" +char id=114 x=196 y=244 width=21 height=18 xoffset=0 yoffset=17 xadvance=24 page=0 chnl=0 letter="r" +char id=115 x=195 y=196 width=23 height=20 xoffset=0 yoffset=16 xadvance=26 page=0 chnl=0 letter="s" +char id=116 x=200 y=165 width=18 height=24 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 letter="t" +char id=117 x=74 y=162 width=30 height=19 xoffset=0 yoffset=17 xadvance=33 page=0 chnl=0 letter="u" +char id=118 x=109 y=84 width=29 height=18 xoffset=0 yoffset=17 xadvance=32 page=0 chnl=0 letter="v" +char id=119 x=0 y=86 width=40 height=18 xoffset=0 yoffset=17 xadvance=43 page=0 chnl=0 letter="w" +char id=120 x=43 y=27 width=31 height=18 xoffset=0 yoffset=17 xadvance=34 page=0 chnl=0 letter="x" +char id=121 x=41 y=46 width=34 height=27 xoffset=0 yoffset=17 xadvance=37 page=0 chnl=0 letter="y" +char id=122 x=170 y=244 width=25 height=18 xoffset=0 yoffset=17 xadvance=28 page=0 chnl=0 letter="z" +char id=123 x=239 y=123 width=15 height=34 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="{" +char id=124 x=252 y=62 width=8 height=34 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=223 y=26 width=16 height=34 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="}" +char id=126 x=199 y=58 width=17 height=6 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="~" +char id=8226 x=218 y=244 width=15 height=14 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="•" +char id=169 x=172 y=0 width=26 height=21 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=144 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-title-export.png new file mode 100644 index 0000000..03ac955 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/horizontal-split-pane.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/horizontal-split-pane.9.png new file mode 100644 index 0000000..88ea5f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/horizontal-split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/list.9.png new file mode 100644 index 0000000..e45cb4f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/minus.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/minus.png new file mode 100644 index 0000000..4ded932 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/plus.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/plus.png new file mode 100644 index 0000000..d8b4bcf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar-fill-vert.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar-fill-vert.png new file mode 100644 index 0000000..7ad2c6c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar-fill-vert.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar-fill.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar-fill.png new file mode 100644 index 0000000..ea587e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar-fill.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar.9.png new file mode 100644 index 0000000..2559123 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/radio-on.png new file mode 100644 index 0000000..07d8332 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/radio.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/radio.png new file mode 100644 index 0000000..75e8987 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-gray.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-gray.9.png new file mode 100644 index 0000000..7bb5855 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-gray.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-white-small.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-white-small.9.png new file mode 100644 index 0000000..791fdb2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-white-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-white.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-white.9.png new file mode 100644 index 0000000..7eb28e1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/round-white.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/selectbox.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/selectbox.9.png new file mode 100644 index 0000000..f4f8c89 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/selectbox.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/selection.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/selection.9.png new file mode 100644 index 0000000..d8a1bdd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-horizontal.9.png new file mode 100644 index 0000000..012c172 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-knob.png new file mode 100644 index 0000000..f846c4b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-vertical.9.png new file mode 100644 index 0000000..397dc0b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/textfield.9.png new file mode 100644 index 0000000..a344bf9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/touchpad-knob.png new file mode 100644 index 0000000..88c4879 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/touchpad.png new file mode 100644 index 0000000..396b90d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/vertical-split-pane.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/vertical-split-pane.9.png new file mode 100644 index 0000000..9160591 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/vertical-split-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/white.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/white.png new file mode 100644 index 0000000..39c2d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/plain-james/raw/window.9.png new file mode 100644 index 0000000..f40c7e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/plain-james/skin/font-export.fnt new file mode 100644 index 0000000..a8bfbec --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=23 base=23 scaleW=142 scaleH=143 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=138 y=90 width=3 height=18 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=125 y=24 width=6 height=6 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=52 y=37 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="#" +char id=36 x=91 y=82 width=11 height=20 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=37 width=18 height=18 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="%" +char id=38 x=0 y=102 width=17 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="&" +char id=39 x=49 y=92 width=2 height=6 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=132 y=46 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="(" +char id=41 x=132 y=24 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=66 y=105 width=9 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=52 y=70 width=13 height=13 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="+" +char id=44 x=65 y=134 width=5 height=8 xoffset=0 yoffset=20 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=125 y=31 width=6 height=2 xoffset=0 yoffset=16 xadvance=8 page=0 chnl=0 letter="-" +char id=46 x=0 y=139 width=4 height=3 xoffset=0 yoffset=20 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=115 y=70 width=8 height=18 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="/" +char id=48 x=78 y=105 width=12 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=124 y=38 width=7 height=17 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=79 y=82 width=11 height=17 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=114 y=103 width=10 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=78 y=124 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=107 y=0 width=10 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="5" +char id=54 x=92 y=19 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=104 y=38 width=10 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="7" +char id=56 x=92 y=51 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="8" +char id=57 x=95 y=0 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=92 y=70 width=4 height=11 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=132 y=126 width=4 height=16 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=52 y=84 width=13 height=13 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="<" +char id=61 x=19 y=75 width=13 height=7 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="=" +char id=62 x=52 y=55 width=13 height=14 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=114 y=122 width=9 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=121 width=17 height=17 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="@" +char id=65 x=18 y=83 width=17 height=17 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="A" +char id=66 x=56 y=0 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="B" +char id=67 x=41 y=0 width=14 height=18 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="C" +char id=68 x=35 y=119 width=15 height=17 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="D" +char id=69 x=66 y=87 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="E" +char id=70 x=79 y=64 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="F" +char id=71 x=19 y=56 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=36 y=37 width=15 height=17 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="H" +char id=73 x=124 y=73 width=6 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=118 y=0 width=8 height=18 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=21 y=19 width=16 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=51 y=119 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="L" +char id=77 x=0 y=19 width=20 height=17 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="M" +char id=78 x=36 y=74 width=15 height=17 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="N" +char id=79 x=24 y=0 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=67 y=18 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="P" +char id=81 x=18 y=101 width=16 height=21 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=38 y=19 width=14 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="R" +char id=83 x=104 y=19 width=10 height=18 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=52 y=98 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=36 y=55 width=15 height=18 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="U" +char id=86 x=19 y=37 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=23 height=18 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="W" +char id=88 x=18 y=123 width=16 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=35 y=101 width=16 height=17 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=53 y=19 width=13 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Z" +char id=91 x=134 y=0 width=5 height=21 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=115 y=51 width=8 height=18 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=132 y=68 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=66 y=56 width=12 height=11 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="^" +char id=95 x=52 y=116 width=12 height=2 xoffset=0 yoffset=27 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=36 y=92 width=6 height=5 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=104 y=56 width=10 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=66 y=68 width=12 height=18 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="b" +char id=99 x=103 y=129 width=10 height=13 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=103 y=84 width=11 height=18 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=103 y=70 width=11 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=115 y=19 width=9 height=18 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=66 y=37 width=12 height=18 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=65 y=116 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=132 y=108 width=5 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=127 y=0 width=6 height=23 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=70 y=0 width=12 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=132 y=90 width=5 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=18 height=12 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="m" +char id=110 x=103 y=103 width=10 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=79 y=36 width=12 height=13 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="o" +char id=112 x=91 y=103 width=11 height=17 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=91 y=121 width=11 height=17 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=115 y=38 width=8 height=12 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=115 y=89 width=8 height=13 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="s" +char id=116 x=124 y=56 width=7 height=16 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=80 y=19 width=11 height=13 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=79 y=50 width=12 height=13 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=69 width=18 height=13 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=92 y=38 width=11 height=12 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="x" +char id=121 x=83 y=0 width=11 height=18 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="y" +char id=122 x=103 y=116 width=10 height=12 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=125 y=91 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=138 y=109 width=2 height=19 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=125 y=113 width=6 height=21 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=35 y=137 width=12 height=4 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=43 y=92 width=5 height=6 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=83 width=17 height=18 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/plain-james/skin/font-title-export.fnt new file mode 100644 index 0000000..49f5318 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=35 base=35 scaleW=261 scaleH=265 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=221 y=217 width=17 height=26 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="!" +char id=34 x=240 y=26 width=13 height=12 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter=""" +char id=35 x=219 y=199 width=18 height=17 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="#" +char id=36 x=171 y=74 width=26 height=37 xoffset=0 yoffset=4 xadvance=29 page=0 chnl=0 letter="$" +char id=37 x=0 y=157 width=37 height=27 xoffset=0 yoffset=9 xadvance=40 page=0 chnl=0 letter="%" +char id=38 x=76 y=27 width=33 height=27 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="&" +char id=39 x=243 y=13 width=6 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="'" +char id=40 x=239 y=158 width=15 height=35 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="(" +char id=41 x=225 y=61 width=16 height=35 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter=")" +char id=42 x=240 y=39 width=13 height=13 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 letter="*" +char id=43 x=199 y=26 width=23 height=22 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="+" +char id=44 x=243 y=0 width=8 height=12 xoffset=0 yoffset=28 xadvance=11 page=0 chnl=0 letter="," +char id=45 x=199 y=65 width=14 height=7 xoffset=0 yoffset=23 xadvance=17 page=0 chnl=0 letter="-" +char id=46 x=214 y=65 width=9 height=7 xoffset=0 yoffset=28 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=219 y=165 width=19 height=33 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=37 y=185 width=35 height=27 xoffset=0 yoffset=9 xadvance=38 page=0 chnl=0 letter="0" +char id=49 x=199 y=217 width=21 height=25 xoffset=0 yoffset=10 xadvance=24 page=0 chnl=0 letter="1" +char id=50 x=170 y=217 width=28 height=26 xoffset=0 yoffset=9 xadvance=31 page=0 chnl=0 letter="2" +char id=51 x=110 y=27 width=30 height=27 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter="3" +char id=52 x=139 y=239 width=30 height=25 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="4" +char id=53 x=140 y=113 width=29 height=26 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="5" +char id=54 x=107 y=211 width=32 height=27 xoffset=0 yoffset=9 xadvance=35 page=0 chnl=0 letter="6" +char id=55 x=171 y=26 width=27 height=25 xoffset=0 yoffset=10 xadvance=30 page=0 chnl=0 letter="7" +char id=56 x=108 y=107 width=31 height=27 xoffset=0 yoffset=9 xadvance=34 page=0 chnl=0 letter="8" +char id=57 x=73 y=211 width=33 height=27 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="9" +char id=58 x=252 y=0 width=8 height=19 xoffset=0 yoffset=16 xadvance=11 page=0 chnl=0 letter=":" +char id=59 x=242 y=62 width=9 height=24 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=140 y=190 width=30 height=26 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=171 y=196 width=23 height=16 xoffset=0 yoffset=14 xadvance=26 page=0 chnl=0 letter="=" +char id=62 x=139 y=163 width=30 height=26 xoffset=0 yoffset=9 xadvance=33 page=0 chnl=0 letter=">" +char id=63 x=198 y=74 width=26 height=26 xoffset=0 yoffset=9 xadvance=29 page=0 chnl=0 letter="?" +char id=64 x=0 y=46 width=40 height=39 xoffset=0 yoffset=5 xadvance=43 page=0 chnl=0 letter="@" +char id=65 x=0 y=131 width=37 height=25 xoffset=0 yoffset=10 xadvance=40 page=0 chnl=0 letter="A" +char id=66 x=38 y=131 width=35 height=25 xoffset=0 yoffset=10 xadvance=38 page=0 chnl=0 letter="B" +char id=67 x=108 y=135 width=31 height=27 xoffset=0 yoffset=9 xadvance=34 page=0 chnl=0 letter="C" +char id=68 x=37 y=239 width=35 height=25 xoffset=0 yoffset=10 xadvance=38 page=0 chnl=0 letter="D" +char id=69 x=107 y=239 width=31 height=25 xoffset=0 yoffset=10 xadvance=34 page=0 chnl=0 letter="E" +char id=70 x=111 y=0 width=30 height=25 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="F" +char id=71 x=74 y=134 width=33 height=27 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="G" +char id=72 x=0 y=237 width=36 height=25 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0 letter="H" +char id=73 x=199 y=139 width=20 height=25 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="I" +char id=74 x=79 y=0 width=31 height=26 xoffset=0 yoffset=10 xadvance=34 page=0 chnl=0 letter="J" +char id=75 x=74 y=107 width=33 height=26 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="K" +char id=76 x=142 y=0 width=29 height=25 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="L" +char id=77 x=0 y=105 width=39 height=25 xoffset=0 yoffset=10 xadvance=42 page=0 chnl=0 letter="M" +char id=78 x=73 y=239 width=33 height=25 xoffset=0 yoffset=10 xadvance=36 page=0 chnl=0 letter="N" +char id=79 x=38 y=157 width=35 height=27 xoffset=0 yoffset=9 xadvance=38 page=0 chnl=0 letter="O" +char id=80 x=76 y=55 width=33 height=25 xoffset=0 yoffset=10 xadvance=36 page=0 chnl=0 letter="P" +char id=81 x=41 y=74 width=34 height=32 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Q" +char id=82 x=37 y=213 width=35 height=25 xoffset=0 yoffset=10 xadvance=38 page=0 chnl=0 letter="R" +char id=83 x=171 y=168 width=28 height=27 xoffset=0 yoffset=9 xadvance=31 page=0 chnl=0 letter="S" +char id=84 x=141 y=26 width=29 height=25 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="T" +char id=85 x=44 y=0 width=34 height=26 xoffset=0 yoffset=10 xadvance=37 page=0 chnl=0 letter="U" +char id=86 x=0 y=211 width=36 height=25 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=43 height=25 xoffset=0 yoffset=10 xadvance=46 page=0 chnl=0 letter="W" +char id=88 x=73 y=185 width=34 height=25 xoffset=0 yoffset=10 xadvance=37 page=0 chnl=0 letter="X" +char id=89 x=0 y=185 width=36 height=25 xoffset=0 yoffset=10 xadvance=39 page=0 chnl=0 letter="Y" +char id=90 x=199 y=0 width=26 height=25 xoffset=0 yoffset=10 xadvance=29 page=0 chnl=0 letter="Z" +char id=91 x=239 y=194 width=14 height=34 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=200 y=101 width=19 height=33 xoffset=0 yoffset=6 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=239 y=229 width=14 height=34 xoffset=0 yoffset=10 xadvance=17 page=0 chnl=0 letter="]" +char id=94 x=199 y=49 width=17 height=8 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="^" +char id=95 x=172 y=22 width=23 height=3 xoffset=0 yoffset=38 xadvance=26 page=0 chnl=0 letter="_" +char id=96 x=242 y=53 width=12 height=8 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="`" +char id=97 x=140 y=217 width=28 height=21 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="a" +char id=98 x=108 y=163 width=30 height=26 xoffset=0 yoffset=10 xadvance=33 page=0 chnl=0 letter="b" +char id=99 x=171 y=52 width=27 height=21 xoffset=0 yoffset=16 xadvance=30 page=0 chnl=0 letter="c" +char id=100 x=141 y=52 width=29 height=26 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="d" +char id=101 x=140 y=140 width=28 height=21 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="e" +char id=102 x=220 y=101 width=18 height=26 xoffset=0 yoffset=9 xadvance=21 page=0 chnl=0 letter="f" +char id=103 x=170 y=139 width=28 height=28 xoffset=0 yoffset=16 xadvance=31 page=0 chnl=0 letter="g" +char id=104 x=76 y=81 width=32 height=25 xoffset=0 yoffset=10 xadvance=35 page=0 chnl=0 letter="h" +char id=105 x=226 y=0 width=16 height=25 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="i" +char id=106 x=220 y=128 width=18 height=34 xoffset=0 yoffset=10 xadvance=21 page=0 chnl=0 letter="j" +char id=107 x=170 y=113 width=29 height=25 xoffset=0 yoffset=10 xadvance=32 page=0 chnl=0 letter="k" +char id=108 x=239 y=97 width=15 height=25 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="l" +char id=109 x=0 y=26 width=42 height=19 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="m" +char id=110 x=40 y=107 width=31 height=19 xoffset=0 yoffset=16 xadvance=34 page=0 chnl=0 letter="n" +char id=111 x=108 y=190 width=29 height=20 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=0 letter="o" +char id=112 x=110 y=55 width=30 height=28 xoffset=0 yoffset=16 xadvance=33 page=0 chnl=0 letter="p" +char id=113 x=140 y=84 width=30 height=28 xoffset=0 yoffset=16 xadvance=33 page=0 chnl=0 letter="q" +char id=114 x=196 y=244 width=21 height=18 xoffset=0 yoffset=17 xadvance=24 page=0 chnl=0 letter="r" +char id=115 x=195 y=196 width=23 height=20 xoffset=0 yoffset=16 xadvance=26 page=0 chnl=0 letter="s" +char id=116 x=200 y=165 width=18 height=24 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 letter="t" +char id=117 x=74 y=162 width=30 height=19 xoffset=0 yoffset=17 xadvance=33 page=0 chnl=0 letter="u" +char id=118 x=109 y=84 width=29 height=18 xoffset=0 yoffset=17 xadvance=32 page=0 chnl=0 letter="v" +char id=119 x=0 y=86 width=40 height=18 xoffset=0 yoffset=17 xadvance=43 page=0 chnl=0 letter="w" +char id=120 x=43 y=27 width=31 height=18 xoffset=0 yoffset=17 xadvance=34 page=0 chnl=0 letter="x" +char id=121 x=41 y=46 width=34 height=27 xoffset=0 yoffset=17 xadvance=37 page=0 chnl=0 letter="y" +char id=122 x=170 y=244 width=25 height=18 xoffset=0 yoffset=17 xadvance=28 page=0 chnl=0 letter="z" +char id=123 x=239 y=123 width=15 height=34 xoffset=0 yoffset=10 xadvance=18 page=0 chnl=0 letter="{" +char id=124 x=252 y=62 width=8 height=34 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=223 y=26 width=16 height=34 xoffset=0 yoffset=10 xadvance=19 page=0 chnl=0 letter="}" +char id=126 x=199 y=58 width=17 height=6 xoffset=0 yoffset=9 xadvance=20 page=0 chnl=0 letter="~" +char id=8226 x=218 y=244 width=15 height=14 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="•" +char id=169 x=172 y=0 width=26 height=21 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=18 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=144 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.atlas b/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.atlas new file mode 100644 index 0000000..f1a5daf --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.atlas @@ -0,0 +1,228 @@ + +plain-james-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +checkbox + rotate: false + xy: 408, 383 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 452, 427 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 248, 223 + size: 4, 7 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 4, 7 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 264, 368 + size: 142, 143 + orig: 142, 143 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 246 + size: 261, 265 + orig: 261, 265 + offset: 0, 0 + index: -1 +horizontal-split-pane + rotate: false + xy: 257, 233 + size: 5, 11 + split: 2, 2, 2, 2 + orig: 5, 11 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 204, 232 + size: 51, 12 + split: 2, 2, 2, 2 + pad: 5, 5, 5, 5 + orig: 51, 12 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 474, 472 + size: 12, 13 + orig: 12, 13 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 54, 2 + size: 12, 13 + orig: 12, 13 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 337, 320 + size: 46, 46 + split: 10, 10, 10, 10 + pad: 6, 6, 6, 6 + orig: 46, 46 + offset: 0, 0 + index: -1 +progress-bar-fill + rotate: false + xy: 381, 284 + size: 1, 34 + orig: 1, 34 + offset: 0, 0 + index: -1 +progress-bar-fill-vert + rotate: false + xy: 264, 272 + size: 34, 1 + orig: 34, 1 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 204, 170 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 264, 254 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +round-gray + rotate: false + xy: 408, 403 + size: 42, 42 + split: 13, 13, 13, 13 + pad: 9, 9, 5, 5 + orig: 42, 42 + offset: 0, 0 + index: -1 +round-white + rotate: false + xy: 204, 188 + size: 42, 42 + split: 13, 13, 13, 13 + pad: 9, 9, 5, 5 + orig: 42, 42 + offset: 0, 0 + index: -1 +round-white-small + rotate: false + xy: 54, 17 + size: 24, 24 + split: 10, 10, 10, 10 + pad: 10, 10, 2, 2 + orig: 24, 24 + offset: 0, 0 + index: -1 +selectbox + rotate: false + xy: 1, 1 + size: 51, 40 + split: 2, 31, 2, 27 + pad: 2, 35, 2, 2 + orig: 51, 40 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 385, 345 + size: 9, 9 + split: 2, 1, 2, 1 + pad: 4, 3, 4, 3 + orig: 9, 9 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 385, 356 + size: 20, 10 + split: 4, 4, 4, 4 + pad: 1, 2, 2, 2 + orig: 20, 10 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 474, 487 + size: 24, 24 + orig: 24, 24 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 80, 21 + size: 9, 20 + split: 4, 3, 3, 3 + pad: 3, 3, 2, 2 + orig: 9, 20 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 337, 276 + size: 42, 42 + split: 8, 8, 8, 8 + orig: 42, 42 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 43 + size: 201, 201 + orig: 201, 201 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 408, 447 + size: 64, 64 + orig: 64, 64 + offset: 0, 0 + index: -1 +vertical-split-pane + rotate: false + xy: 500, 506 + size: 11, 5 + split: 2, 2, 1, 1 + pad: 1, 1, 1, 1 + orig: 11, 5 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 300, 272 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 264, 275 + size: 71, 91 + split: 15, 15, 35, 15 + pad: 9, 10, 37, 5 + orig: 71, 91 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.json b/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.json new file mode 100644 index 0000000..b4d7349 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.json @@ -0,0 +1,258 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + gray: { + r: 0.68333334 + g: 0.68333334 + b: 0.68333334 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + round-dark-gray: { + name: round-white + color: { + r: 0.22 + g: 0.22 + b: 0.22 + a: 1 + } + } + round-light-gray: { + name: round-white + color: { + r: 0.86333334 + g: 0.86333334 + b: 0.86333334 + a: 1 + } + } + round-gray-small: { + name: round-white-small + color: { + r: 0.4633333 + g: 0.4633333 + b: 0.4633333 + a: 1 + } + } + round-black-small: { + name: round-white-small + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } + gray: { + name: white + color: { + r: 0.59 + g: 0.59 + b: 0.59 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: round-gray + down: round-dark-gray + over: round-light-gray + } + toggle: { + up: round-gray + down: round-dark-gray + over: round-light-gray + checked: round-dark-gray + checkedOver: round-light-gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: round-gray + down: round-dark-gray + over: round-light-gray + } + toggle: { + up: round-gray + down: round-dark-gray + over: round-light-gray + checked: round-dark-gray + checkedOver: round-light-gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + up: round-gray + down: round-dark-gray + over: round-light-gray + } + toggle: { + font: font + fontColor: black + up: round-gray + down: round-dark-gray + over: round-light-gray + checked: round-dark-gray + checkedOver: round-light-gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + title: { + font: title + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar + knobBefore: progress-bar-fill + } + default-vertical: { + background: progress-bar + knobBefore: progress-bar-fill-vert + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: list + hScroll: round-black-small + hScrollKnob: round-gray-small + vScroll: round-black-small + vScrollKnob: round-gray-small + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + scrollStyle: default + listStyle: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider-horizontal + knob: slider-knob + } + default-vertical: { + background: slider-vertical + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: horizontal-split-pane + } + default-vertical: { + handle: vertical-split-pane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: black + up: round-gray + down: round-dark-gray + over: round-light-gray + } + toggle: { + font: font + fontColor: black + up: round-gray + down: round-dark-gray + over: round-light-gray + checked: round-dark-gray + checkedOver: round-light-gray + } + special: { + font: title + fontColor: black + up: round-gray + down: round-dark-gray + over: round-light-gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + cursor: cursor + selection: gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: round-white + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: black + } + dialog: { + background: window + titleFont: font + titleFontColor: black + stageBackground: white + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.png b/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.png new file mode 100644 index 0000000..45ae608 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/plain-james/skin/plain-james-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/README.md b/src/main/resources/omni_power/gdx-skins/quantum-horizon/README.md new file mode 100644 index 0000000..99614d3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/README.md @@ -0,0 +1,23 @@ +# Quantum Horizon UI + +``` +Quantum Horizon UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2016 Raymond Buckley + +Quantum Horizon UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Futuristic GUI, which can be easily recolored by manipulating the `Color` values in the skin's `.json` file. + +![Quantum Horizon](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/quantum-horizon-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/preview.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/preview.png new file mode 100644 index 0000000..b8b8347 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/battery.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/battery.png new file mode 100644 index 0000000..bae011b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/battery.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button-pressed.9.png new file mode 100644 index 0000000..83d013c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button-pressed.png new file mode 100644 index 0000000..0e59fe9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button.9.png new file mode 100644 index 0000000..e558e55 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button.png new file mode 100644 index 0000000..c0c2e06 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-export.fnt new file mode 100644 index 0000000..1344b2b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=115 scaleH=115 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=109 y=104 width=4 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=91 y=49 width=7 height=5 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=0 y=32 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=31 y=76 width=14 height=14 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="$" +char id=37 x=46 y=75 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=46 y=86 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="&" +char id=39 x=110 y=98 width=3 height=5 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=110 y=38 width=4 height=15 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=110 y=70 width=4 height=15 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=101 y=38 width=7 height=6 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=91 y=40 width=9 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=108 y=0 width=3 height=6 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=62 y=33 width=9 height=3 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=105 y=26 width=3 height=3 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=46 y=97 width=14 height=14 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=50 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=104 y=77 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=62 y=22 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=61 y=70 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="3" +char id=52 x=61 y=48 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=46 y=42 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=31 y=65 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="6" +char id=55 x=31 y=43 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="7" +char id=56 x=0 y=21 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="8" +char id=57 x=20 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=111 y=17 width=3 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=110 y=86 width=4 height=11 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=35 y=11 width=9 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=101 y=30 width=9 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=91 y=30 width=9 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=61 y=81 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=65 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="@" +char id=65 x=31 y=101 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=35 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=0 y=43 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="C" +char id=68 x=46 y=53 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="D" +char id=69 x=46 y=64 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="E" +char id=70 x=0 y=54 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="F" +char id=71 x=61 y=92 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="G" +char id=72 x=16 y=99 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="H" +char id=73 x=104 y=104 width=4 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=61 y=103 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="J" +char id=75 x=76 y=44 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="K" +char id=76 x=76 y=33 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="L" +char id=77 x=0 y=98 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="M" +char id=78 x=65 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="N" +char id=79 x=61 y=59 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="O" +char id=80 x=0 y=87 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="P" +char id=81 x=16 y=86 width=14 height=12 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Q" +char id=82 x=62 y=11 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="R" +char id=83 x=16 y=21 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="S" +char id=84 x=32 y=21 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="T" +char id=85 x=31 y=54 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="U" +char id=86 x=16 y=32 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=19 height=10 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=0 y=76 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="X" +char id=89 x=61 y=37 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=47 y=26 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=104 y=88 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=47 y=11 width=14 height=14 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="\" +char id=93 x=105 y=10 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=23 y=110 width=7 height=4 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=109 width=14 height=2 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="_" +char id=96 x=15 y=110 width=7 height=4 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=76 y=65 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="a" +char id=98 x=77 y=21 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="b" +char id=99 x=80 y=0 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="c" +char id=100 x=90 y=55 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=32 y=32 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=90 y=65 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="f" +char id=103 x=90 y=75 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="g" +char id=104 x=31 y=91 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="h" +char id=105 x=111 y=7 width=3 height=9 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=20 y=11 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="j" +char id=107 x=76 y=75 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=90 y=105 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="l" +char id=109 x=91 y=10 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=90 y=95 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=76 y=105 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=91 y=20 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=16 y=74 width=14 height=11 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=77 y=11 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="r" +char id=115 x=76 y=55 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="s" +char id=116 x=16 y=64 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=94 y=0 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=90 y=85 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="v" +char id=119 x=0 y=11 width=19 height=9 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="w" +char id=120 x=76 y=95 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="x" +char id=121 x=76 y=85 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="y" +char id=122 x=16 y=43 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="z" +char id=123 x=104 y=61 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=110 y=54 width=4 height=15 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=104 y=45 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=47 y=37 width=8 height=4 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=99 y=49 width=4 height=4 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=16 y=53 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-export.png new file mode 100644 index 0000000..5196587 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title-export.fnt new file mode 100644 index 0000000..fb818be --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=33 base=33 scaleW=261 scaleH=261 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=249 y=221 width=9 height=24 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="!" +char id=34 x=173 y=110 width=17 height=12 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=0 y=47 width=35 height=24 xoffset=0 yoffset=9 xadvance=38 page=0 chnl=0 letter="#" +char id=36 x=70 y=197 width=33 height=32 xoffset=0 yoffset=5 xadvance=36 page=0 chnl=0 letter="$" +char id=37 x=105 y=100 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=105 y=158 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="&" +char id=39 x=191 y=110 width=9 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="'" +char id=40 x=249 y=163 width=10 height=35 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="(" +char id=41 x=237 y=138 width=11 height=35 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=223 y=246 width=16 height=13 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=214 y=0 width=21 height=19 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="+" +char id=44 x=126 y=247 width=10 height=13 xoffset=0 yoffset=26 xadvance=13 page=0 chnl=0 letter="," +char id=45 x=104 y=247 width=21 height=7 xoffset=0 yoffset=20 xadvance=24 page=0 chnl=0 letter="-" +char id=46 x=124 y=183 width=10 height=7 xoffset=0 yoffset=26 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=35 y=97 width=34 height=32 xoffset=0 yoffset=5 xadvance=37 page=0 chnl=0 letter="/" +char id=48 x=70 y=72 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="0" +char id=49 x=237 y=41 width=14 height=24 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="1" +char id=50 x=105 y=25 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="2" +char id=51 x=115 y=0 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="3" +char id=52 x=0 y=151 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="4" +char id=53 x=0 y=176 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="5" +char id=54 x=0 y=201 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="6" +char id=55 x=0 y=226 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="7" +char id=56 x=35 y=72 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="8" +char id=57 x=105 y=75 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="9" +char id=58 x=250 y=66 width=9 height=20 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=250 y=87 width=9 height=26 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=229 y=20 width=21 height=20 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0 letter="<" +char id=61 x=206 y=22 width=22 height=16 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="=" +char id=62 x=44 y=25 width=22 height=20 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter=">" +char id=63 x=35 y=130 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="?" +char id=64 x=35 y=155 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="@" +char id=65 x=35 y=180 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="A" +char id=66 x=70 y=147 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="B" +char id=67 x=139 y=75 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="C" +char id=68 x=139 y=100 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="D" +char id=69 x=105 y=50 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="E" +char id=70 x=138 y=233 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="F" +char id=71 x=138 y=208 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="G" +char id=72 x=35 y=205 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="H" +char id=73 x=249 y=138 width=10 height=24 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=81 y=0 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="J" +char id=75 x=71 y=25 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="K" +char id=76 x=138 y=183 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="L" +char id=77 x=139 y=25 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="M" +char id=78 x=0 y=126 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="N" +char id=79 x=35 y=230 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="O" +char id=80 x=36 y=47 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="P" +char id=81 x=0 y=97 width=34 height=28 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Q" +char id=82 x=46 y=0 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="R" +char id=83 x=104 y=222 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="S" +char id=84 x=104 y=197 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="T" +char id=85 x=70 y=230 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="U" +char id=86 x=139 y=50 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=45 height=24 xoffset=0 yoffset=9 xadvance=48 page=0 chnl=0 letter="W" +char id=88 x=70 y=97 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="X" +char id=89 x=70 y=122 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Y" +char id=90 x=70 y=172 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Z" +char id=91 x=237 y=210 width=11 height=35 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=105 y=125 width=33 height=32 xoffset=0 yoffset=5 xadvance=36 page=0 chnl=0 letter="\" +char id=93 x=237 y=174 width=11 height=35 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=139 y=169 width=18 height=9 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="^" +char id=95 x=0 y=251 width=34 height=6 xoffset=0 yoffset=31 xadvance=37 page=0 chnl=0 letter="_" +char id=96 x=205 y=246 width=17 height=9 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="`" +char id=97 x=205 y=224 width=30 height=21 xoffset=0 yoffset=12 xadvance=33 page=0 chnl=0 letter="a" +char id=98 x=205 y=44 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="b" +char id=99 x=172 y=213 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="c" +char id=100 x=172 y=235 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="d" +char id=101 x=205 y=66 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="e" +char id=102 x=173 y=44 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="f" +char id=103 x=173 y=88 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="g" +char id=104 x=172 y=169 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="h" +char id=105 x=249 y=199 width=10 height=21 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="i" +char id=106 x=71 y=50 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="j" +char id=107 x=139 y=125 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="k" +char id=108 x=173 y=66 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="l" +char id=109 x=182 y=0 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="m" +char id=110 x=149 y=0 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="n" +char id=111 x=172 y=125 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="o" +char id=112 x=173 y=22 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="p" +char id=113 x=205 y=88 width=31 height=25 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="q" +char id=114 x=205 y=114 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="r" +char id=115 x=172 y=147 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="s" +char id=116 x=139 y=147 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="t" +char id=117 x=172 y=191 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="u" +char id=118 x=205 y=180 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="v" +char id=119 x=0 y=25 width=43 height=21 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="w" +char id=120 x=205 y=202 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="x" +char id=121 x=205 y=158 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="y" +char id=122 x=205 y=136 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="z" +char id=123 x=237 y=102 width=12 height=35 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=251 y=0 width=9 height=35 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="|" +char id=125 x=237 y=66 width=12 height=35 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="}" +char id=126 x=105 y=183 width=18 height=9 xoffset=0 yoffset=17 xadvance=21 page=0 chnl=0 letter="~" +char id=8226 x=158 y=169 width=10 height=8 xoffset=0 yoffset=20 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=72 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=152 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title-export.png new file mode 100644 index 0000000..b8abaf1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title.png new file mode 100644 index 0000000..01e5971 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font.png new file mode 100644 index 0000000..f7e8bac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_1.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_1.png new file mode 100644 index 0000000..76e26d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_2.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_2.png new file mode 100644 index 0000000..ae241e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_3.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_3.png new file mode 100644 index 0000000..e423e76 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_4.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_4.png new file mode 100644 index 0000000..c5fe870 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_4.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_5.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_5.png new file mode 100644 index 0000000..fe5f46e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/globe_5.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/list.9.png new file mode 100644 index 0000000..7bb0ec2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/list.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/list.png new file mode 100644 index 0000000..087f6e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/minus.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/minus.png new file mode 100644 index 0000000..58f2dfa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/pattern-bg.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/pattern-bg.png new file mode 100644 index 0000000..d2ceba9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/pattern-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/plus.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/plus.png new file mode 100644 index 0000000..79e9bc9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..d28b298 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/progress-bar-vertical.png new file mode 100644 index 0000000..611c2aa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-clear.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-clear.png new file mode 100644 index 0000000..e6de9c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-clear.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-off.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-off.png new file mode 100644 index 0000000..5b4365a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-over.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-over.png new file mode 100644 index 0000000..e925b5f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button.png new file mode 100644 index 0000000..ce17dbd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/radio-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-back-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-back-horizontal.png new file mode 100644 index 0000000..1fc6cce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-back-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-back-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-back-vertical.png new file mode 100644 index 0000000..9b7f299 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-back-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-knob-horizontal.png new file mode 100644 index 0000000..1b4df08 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-knob-vertical.png new file mode 100644 index 0000000..5b73b1f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/scroll-bar-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box-pressed.9.png new file mode 100644 index 0000000..04ab90c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box-pressed.png new file mode 100644 index 0000000..0fe7131 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box.9.png new file mode 100644 index 0000000..3a209cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box.png new file mode 100644 index 0000000..79cd004 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-1.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-1.png new file mode 100644 index 0000000..23278a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-2.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-2.png new file mode 100644 index 0000000..b4b768b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-3.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-3.png new file mode 100644 index 0000000..14be15e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/signal-bar-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-horizontal.9.png new file mode 100644 index 0000000..49d277d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-horizontal.png new file mode 100644 index 0000000..f1b29d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-horizontal.png new file mode 100644 index 0000000..853101c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-over-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-over-horizontal.png new file mode 100644 index 0000000..752bf82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-over-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-over-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-over-vertical.png new file mode 100644 index 0000000..53abfcd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-over-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-pressed-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-pressed-horizontal.png new file mode 100644 index 0000000..ebb2683 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-pressed-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-pressed-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-pressed-vertical.png new file mode 100644 index 0000000..ba08f96 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-pressed-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-vertical.png new file mode 100644 index 0000000..58c9fe5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-vertical.9.png new file mode 100644 index 0000000..1cd4390 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-vertical.png new file mode 100644 index 0000000..af81d28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-horizontal.9.png new file mode 100644 index 0000000..7c36c44 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-horizontal.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-horizontal.png new file mode 100644 index 0000000..62e64ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-vertical.9.png new file mode 100644 index 0000000..3887cc4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-vertical.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-vertical.png new file mode 100644 index 0000000..b5595e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/split-pane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/style-bg.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/style-bg.png new file mode 100644 index 0000000..4dd5adb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/style-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/textfield.9.png new file mode 100644 index 0000000..e7090c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/textfield.png new file mode 100644 index 0000000..19bb656 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/tooltip.9.png new file mode 100644 index 0000000..f76c784 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/tooltip.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/tooltip.png new file mode 100644 index 0000000..a862ddc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/tooltip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/touchpad-knob.png new file mode 100644 index 0000000..75bdd5e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/touchpad.png new file mode 100644 index 0000000..6287d56 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/white.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/window.9.png new file mode 100644 index 0000000..0b9af73 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/window.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/window.png new file mode 100644 index 0000000..74decd6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/font-export.fnt new file mode 100644 index 0000000..1344b2b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=14 base=14 scaleW=115 scaleH=115 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=109 y=104 width=4 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=91 y=49 width=7 height=5 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter=""" +char id=35 x=0 y=32 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="#" +char id=36 x=31 y=76 width=14 height=14 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="$" +char id=37 x=46 y=75 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=46 y=86 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="&" +char id=39 x=110 y=98 width=3 height=5 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=110 y=38 width=4 height=15 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=110 y=70 width=4 height=15 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=101 y=38 width=7 height=6 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=91 y=40 width=9 height=8 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=108 y=0 width=3 height=6 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=62 y=33 width=9 height=3 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=105 y=26 width=3 height=3 xoffset=0 yoffset=11 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=46 y=97 width=14 height=14 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=50 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="0" +char id=49 x=104 y=77 width=5 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=62 y=22 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="2" +char id=51 x=61 y=70 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="3" +char id=52 x=61 y=48 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=46 y=42 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="5" +char id=54 x=31 y=65 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="6" +char id=55 x=31 y=43 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="7" +char id=56 x=0 y=21 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="8" +char id=57 x=20 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="9" +char id=58 x=111 y=17 width=3 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=110 y=86 width=4 height=11 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=35 y=11 width=9 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=101 y=30 width=9 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=91 y=30 width=9 height=9 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=61 y=81 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=65 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="@" +char id=65 x=31 y=101 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=35 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=0 y=43 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="C" +char id=68 x=46 y=53 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="D" +char id=69 x=46 y=64 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="E" +char id=70 x=0 y=54 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="F" +char id=71 x=61 y=92 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="G" +char id=72 x=16 y=99 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="H" +char id=73 x=104 y=104 width=4 height=10 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=61 y=103 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="J" +char id=75 x=76 y=44 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="K" +char id=76 x=76 y=33 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="L" +char id=77 x=0 y=98 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="M" +char id=78 x=65 y=0 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="N" +char id=79 x=61 y=59 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="O" +char id=80 x=0 y=87 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="P" +char id=81 x=16 y=86 width=14 height=12 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Q" +char id=82 x=62 y=11 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="R" +char id=83 x=16 y=21 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="S" +char id=84 x=32 y=21 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="T" +char id=85 x=31 y=54 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="U" +char id=86 x=16 y=32 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=19 height=10 xoffset=0 yoffset=4 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=0 y=76 width=15 height=10 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="X" +char id=89 x=61 y=37 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=47 y=26 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Z" +char id=91 x=104 y=88 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=47 y=11 width=14 height=14 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="\" +char id=93 x=105 y=10 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=23 y=110 width=7 height=4 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=109 width=14 height=2 xoffset=0 yoffset=14 xadvance=16 page=0 chnl=0 letter="_" +char id=96 x=15 y=110 width=7 height=4 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="`" +char id=97 x=76 y=65 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="a" +char id=98 x=77 y=21 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="b" +char id=99 x=80 y=0 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="c" +char id=100 x=90 y=55 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=32 y=32 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="e" +char id=102 x=90 y=65 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="f" +char id=103 x=90 y=75 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="g" +char id=104 x=31 y=91 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="h" +char id=105 x=111 y=7 width=3 height=9 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="i" +char id=106 x=20 y=11 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="j" +char id=107 x=76 y=75 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="k" +char id=108 x=90 y=105 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="l" +char id=109 x=91 y=10 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=90 y=95 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=76 y=105 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=91 y=20 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=16 y=74 width=14 height=11 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="q" +char id=114 x=77 y=11 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="r" +char id=115 x=76 y=55 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="s" +char id=116 x=16 y=64 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=94 y=0 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=90 y=85 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="v" +char id=119 x=0 y=11 width=19 height=9 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="w" +char id=120 x=76 y=95 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="x" +char id=121 x=76 y=85 width=13 height=9 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="y" +char id=122 x=16 y=43 width=14 height=9 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="z" +char id=123 x=104 y=61 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=110 y=54 width=4 height=15 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=104 y=45 width=5 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=47 y=37 width=8 height=4 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=99 y=49 width=4 height=4 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=16 y=53 width=14 height=10 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/font-title-export.fnt new file mode 100644 index 0000000..fb818be --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=33 base=33 scaleW=261 scaleH=261 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=249 y=221 width=9 height=24 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="!" +char id=34 x=173 y=110 width=17 height=12 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=0 y=47 width=35 height=24 xoffset=0 yoffset=9 xadvance=38 page=0 chnl=0 letter="#" +char id=36 x=70 y=197 width=33 height=32 xoffset=0 yoffset=5 xadvance=36 page=0 chnl=0 letter="$" +char id=37 x=105 y=100 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=105 y=158 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="&" +char id=39 x=191 y=110 width=9 height=12 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="'" +char id=40 x=249 y=163 width=10 height=35 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="(" +char id=41 x=237 y=138 width=11 height=35 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter=")" +char id=42 x=223 y=246 width=16 height=13 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=214 y=0 width=21 height=19 xoffset=0 yoffset=14 xadvance=24 page=0 chnl=0 letter="+" +char id=44 x=126 y=247 width=10 height=13 xoffset=0 yoffset=26 xadvance=13 page=0 chnl=0 letter="," +char id=45 x=104 y=247 width=21 height=7 xoffset=0 yoffset=20 xadvance=24 page=0 chnl=0 letter="-" +char id=46 x=124 y=183 width=10 height=7 xoffset=0 yoffset=26 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=35 y=97 width=34 height=32 xoffset=0 yoffset=5 xadvance=37 page=0 chnl=0 letter="/" +char id=48 x=70 y=72 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="0" +char id=49 x=237 y=41 width=14 height=24 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="1" +char id=50 x=105 y=25 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="2" +char id=51 x=115 y=0 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="3" +char id=52 x=0 y=151 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="4" +char id=53 x=0 y=176 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="5" +char id=54 x=0 y=201 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="6" +char id=55 x=0 y=226 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="7" +char id=56 x=35 y=72 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="8" +char id=57 x=105 y=75 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="9" +char id=58 x=250 y=66 width=9 height=20 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=250 y=87 width=9 height=26 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=229 y=20 width=21 height=20 xoffset=0 yoffset=13 xadvance=24 page=0 chnl=0 letter="<" +char id=61 x=206 y=22 width=22 height=16 xoffset=0 yoffset=17 xadvance=25 page=0 chnl=0 letter="=" +char id=62 x=44 y=25 width=22 height=20 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter=">" +char id=63 x=35 y=130 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="?" +char id=64 x=35 y=155 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="@" +char id=65 x=35 y=180 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="A" +char id=66 x=70 y=147 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="B" +char id=67 x=139 y=75 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="C" +char id=68 x=139 y=100 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="D" +char id=69 x=105 y=50 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="E" +char id=70 x=138 y=233 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="F" +char id=71 x=138 y=208 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="G" +char id=72 x=35 y=205 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="H" +char id=73 x=249 y=138 width=10 height=24 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="I" +char id=74 x=81 y=0 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="J" +char id=75 x=71 y=25 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="K" +char id=76 x=138 y=183 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="L" +char id=77 x=139 y=25 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="M" +char id=78 x=0 y=126 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="N" +char id=79 x=35 y=230 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="O" +char id=80 x=36 y=47 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="P" +char id=81 x=0 y=97 width=34 height=28 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Q" +char id=82 x=46 y=0 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="R" +char id=83 x=104 y=222 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="S" +char id=84 x=104 y=197 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="T" +char id=85 x=70 y=230 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="U" +char id=86 x=139 y=50 width=33 height=24 xoffset=0 yoffset=9 xadvance=36 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=45 height=24 xoffset=0 yoffset=9 xadvance=48 page=0 chnl=0 letter="W" +char id=88 x=70 y=97 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="X" +char id=89 x=70 y=122 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Y" +char id=90 x=70 y=172 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="Z" +char id=91 x=237 y=210 width=11 height=35 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=105 y=125 width=33 height=32 xoffset=0 yoffset=5 xadvance=36 page=0 chnl=0 letter="\" +char id=93 x=237 y=174 width=11 height=35 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=139 y=169 width=18 height=9 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="^" +char id=95 x=0 y=251 width=34 height=6 xoffset=0 yoffset=31 xadvance=37 page=0 chnl=0 letter="_" +char id=96 x=205 y=246 width=17 height=9 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="`" +char id=97 x=205 y=224 width=30 height=21 xoffset=0 yoffset=12 xadvance=33 page=0 chnl=0 letter="a" +char id=98 x=205 y=44 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="b" +char id=99 x=172 y=213 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="c" +char id=100 x=172 y=235 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="d" +char id=101 x=205 y=66 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="e" +char id=102 x=173 y=44 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="f" +char id=103 x=173 y=88 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="g" +char id=104 x=172 y=169 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="h" +char id=105 x=249 y=199 width=10 height=21 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="i" +char id=106 x=71 y=50 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="j" +char id=107 x=139 y=125 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="k" +char id=108 x=173 y=66 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="l" +char id=109 x=182 y=0 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="m" +char id=110 x=149 y=0 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="n" +char id=111 x=172 y=125 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="o" +char id=112 x=173 y=22 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="p" +char id=113 x=205 y=88 width=31 height=25 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="q" +char id=114 x=205 y=114 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="r" +char id=115 x=172 y=147 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="s" +char id=116 x=139 y=147 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="t" +char id=117 x=172 y=191 width=32 height=21 xoffset=0 yoffset=12 xadvance=35 page=0 chnl=0 letter="u" +char id=118 x=205 y=180 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="v" +char id=119 x=0 y=25 width=43 height=21 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="w" +char id=120 x=205 y=202 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="x" +char id=121 x=205 y=158 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="y" +char id=122 x=205 y=136 width=31 height=21 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="z" +char id=123 x=237 y=102 width=12 height=35 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="{" +char id=124 x=251 y=0 width=9 height=35 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="|" +char id=125 x=237 y=66 width=12 height=35 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="}" +char id=126 x=105 y=183 width=18 height=9 xoffset=0 yoffset=17 xadvance=21 page=0 chnl=0 letter="~" +char id=8226 x=158 y=169 width=10 height=8 xoffset=0 yoffset=20 xadvance=13 page=0 chnl=0 letter="•" +char id=169 x=0 y=72 width=34 height=24 xoffset=0 yoffset=9 xadvance=37 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=19 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=152 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.atlas b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.atlas new file mode 100644 index 0000000..ca802c2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.atlas @@ -0,0 +1,352 @@ + +quantum-horizon-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +battery + rotate: false + xy: 176, 346 + size: 13, 8 + orig: 13, 8 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 662, 970 + size: 133, 52 + split: 30, 25, 0, 0 + pad: 32, 27, 9, 9 + orig: 133, 52 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 797, 970 + size: 133, 52 + split: 30, 25, 0, 0 + pad: 32, 27, 9, 9 + orig: 133, 52 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 647, 723 + size: 115, 115 + orig: 115, 115 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 406 + size: 261, 261 + orig: 261, 261 + offset: 0, 0 + index: -1 +globe_1 + rotate: false + xy: 472, 799 + size: 173, 173 + orig: 173, 173 + offset: 0, 0 + index: -1 +globe_2 + rotate: false + xy: 1, 181 + size: 173, 173 + orig: 173, 173 + offset: 0, 0 + index: -1 +globe_3 + rotate: false + xy: 264, 444 + size: 173, 173 + orig: 173, 173 + offset: 0, 0 + index: -1 +globe_4 + rotate: false + xy: 1, 6 + size: 173, 173 + orig: 173, 173 + offset: 0, 0 + index: -1 +globe_5 + rotate: false + xy: 472, 624 + size: 173, 173 + orig: 173, 173 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 311, 415 + size: 27, 27 + split: 8, 8, 8, 8 + pad: 10, 10, 10, 10 + orig: 27, 27 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 243, 387 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +pattern-bg + rotate: false + xy: 647, 840 + size: 128, 128 + orig: 128, 128 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 819, 881 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 689, 660 + size: 1, 9 + orig: 1, 9 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 264, 412 + size: 9, 1 + orig: 9, 1 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 439, 585 + size: 9, 32 + orig: 9, 32 + offset: 0, 0 + index: -1 +radio-button-clear + rotate: false + xy: 176, 312 + size: 9, 32 + orig: 9, 32 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 918, 936 + size: 9, 32 + orig: 9, 32 + offset: 0, 0 + index: -1 +radio-button-over + rotate: false + xy: 439, 551 + size: 9, 32 + orig: 9, 32 + offset: 0, 0 + index: -1 +scroll-bar-back-horizontal + rotate: false + xy: 932, 970 + size: 2, 9 + orig: 2, 9 + offset: 0, 0 + index: -1 +scroll-bar-back-vertical + rotate: false + xy: 191, 360 + size: 9, 2 + orig: 9, 2 + offset: 0, 0 + index: -1 +scroll-bar-knob-horizontal + rotate: false + xy: 777, 847 + size: 2, 9 + orig: 2, 9 + offset: 0, 0 + index: -1 +scroll-bar-knob-vertical + rotate: false + xy: 647, 970 + size: 9, 2 + orig: 9, 2 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 889, 928 + size: 27, 40 + split: 0, 15, 15, 0 + pad: 11, 15, 1, 1 + orig: 27, 40 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 731, 681 + size: 27, 40 + split: 0, 15, 15, 0 + pad: 11, 15, 1, 1 + orig: 27, 40 + offset: 0, 0 + index: -1 +signal-bar-1 + rotate: false + xy: 472, 974 + size: 188, 48 + orig: 188, 48 + offset: 0, 0 + index: -1 +signal-bar-2 + rotate: false + xy: 1, 356 + size: 188, 48 + orig: 188, 48 + offset: 0, 0 + index: -1 +signal-bar-3 + rotate: false + xy: 264, 619 + size: 188, 48 + orig: 188, 48 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 191, 364 + size: 50, 40 + split: 23, 23, 0, 0 + pad: 0, 0, 0, 0 + orig: 50, 40 + offset: 0, 0 + index: -1 +slider-knob-horizontal + rotate: false + xy: 932, 981 + size: 40, 41 + orig: 40, 41 + offset: 0, 0 + index: -1 +slider-knob-over-horizontal + rotate: false + xy: 647, 681 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +slider-knob-over-vertical + rotate: false + xy: 777, 858 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +slider-knob-pressed-horizontal + rotate: false + xy: 847, 927 + size: 40, 41 + orig: 40, 41 + offset: 0, 0 + index: -1 +slider-knob-pressed-vertical + rotate: false + xy: 974, 982 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +slider-knob-vertical + rotate: false + xy: 647, 639 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 689, 671 + size: 40, 50 + split: 0, 0, 23, 23 + pad: 0, 0, 1, 0 + orig: 40, 50 + offset: 0, 0 + index: -1 +split-pane-horizontal + rotate: false + xy: 847, 906 + size: 3, 19 + split: 1, 1, 7, 7 + pad: 0, 0, 0, 0 + orig: 3, 19 + offset: 0, 0 + index: -1 +split-pane-vertical + rotate: false + xy: 1, 1 + size: 19, 3 + split: 7, 7, 1, 1 + pad: 0, 0, 0, 0 + orig: 19, 3 + offset: 0, 0 + index: -1 +style-bg + rotate: false + xy: 1016, 982 + size: 5, 40 + orig: 5, 40 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 764, 821 + size: 9, 17 + split: 2, 2, 2, 2 + pad: 4, 4, 3, 3 + orig: 9, 17 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 264, 415 + size: 45, 27 + split: 36, 0, 21, 0 + pad: 40, 0, 8, 0 + orig: 45, 27 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 777, 900 + size: 68, 68 + orig: 68, 68 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 454, 652 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 647, 636 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 669 + size: 469, 353 + split: 202, 203, 143, 143 + pad: 85, 86, 23, 24 + orig: 469, 353 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.json b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.json new file mode 100644 index 0000000..440b552 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.json @@ -0,0 +1,448 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + background: { + r: 0.7484462 + g: 0.64666665 + b: 1 + a: 1 + } + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + color: { + r: 0.98611116 + g: 0 + b: 1 + a: 1 + } + pressed: { + r: 0.985234 + g: 0.5 + b: 1 + a: 1 + } + selection: { + r: 0 + g: 0.4897771 + b: 1 + a: 1 + } + touch-cursor: { + r: 0 + g: 0 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } + window: { + r: 0.40784314 + g: 0 + b: 0.7176471 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-c: { + name: button + color: color + } + globe-c_1: { + name: globe_1 + color: color + } + globe-c_2: { + name: globe_2 + color: color + } + globe-c_3: { + name: globe_3 + color: color + } + globe-c_4: { + name: globe_4 + color: color + } + globe-c_5: { + name: globe_5 + color: color + } + minus-c: { + name: minus + color: color + } + pattern-bg-c: { + name: pattern-bg + color: color + } + plus-c: { + name: plus + color: color + } + radio-button-c: { + name: radio-button + color: color + } + select-box-c: { + name: select-box + color: color + } + slider-horizontal-c: { + name: slider-horizontal + color: color + } + slider-knob-horizontal-c: { + name: slider-knob-horizontal + color: color + } + slider-knob-over-horizontal-c: { + name: slider-knob-over-horizontal + color: color + } + slider-knob-over-vertical-c: { + name: slider-knob-over-vertical + color: color + } + slider-knob-vertical-c: { + name: slider-knob-vertical + color: color + } + slider-vertical-c: { + name: slider-vertical + color: color + } + split-pane-horizontal-c: { + name: split-pane-horizontal + color: color + } + split-pane-vertical-c: { + name: split-pane-vertical + color: color + } + style-bg-c: { + name: style-bg + color: color + } + textfield-c: { + name: textfield + color: color + } + tooltip-c: { + name: tooltip + color: color + } + color: { + name: white + color: color + } + pressed: { + name: white + color: pressed + } + button-over-c: { + name: button-pressed + color: color + } + button-over-pressed-c: { + name: button-pressed + color: pressed + } + button-pressed-c: { + name: button + color: pressed + } + clear: { + name: white + color: { + r: 1 + g: 1 + b: 1 + a: 0 + } + } + radio-button-off-c: { + name: radio-button-off + color: color + } + pattern-bg-back: { + name: pattern-bg + color: background + } + scroll-bar-back-horizontal-c: { + name: scroll-bar-back-horizontal + color: color + } + scroll-bar-back-vertical-c: { + name: scroll-bar-back-vertical + color: color + } + scroll-bar-knob-horizontal-c: { + name: scroll-bar-knob-horizontal + color: color + } + scroll-bar-knob-vertical-c: { + name: scroll-bar-knob-vertical + color: color + } + progress-bar-horizontal-c: { + name: progress-bar-horizontal + color: color + } + progress-bar-vertical-c: { + name: progress-bar-vertical + color: color + } + progress-bar-horizontal-c-back: { + name: progress-bar-horizontal + color: pressed + } + progress-bar-vertical-back: { + name: progress-bar-vertical + color: pressed + } + style-bg-back: { + name: style-bg + color: background + } + black: { + name: white + color: black + } + selection: { + name: white + color: selection + } + touchpad-c: { + name: touchpad + color: color + } + window-c: { + name: window + color: window + } + touchpad-knob-c: { + name: touchpad-knob + color: touch-cursor + } + slider-knob-over-vertical-pressed: { + name: slider-knob-over-vertical + color: pressed + } + slider-knob-over-horizontal-pressed: { + name: slider-knob-over-horizontal + color: pressed + } + signal-bar-back: { + name: signal-bar-1 + color: pressed + } + radio-button-over-c: { + name: radio-button-over + color: color + } + radio-button-pressed: { + name: radio-button + color: pressed + } + select-box-pressed-c: { + name: select-box + color: pressed + } + list-pressed: { + name: list + color: pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-c + down: button-over-pressed-c + over: button-over-c + } + toggle: { + up: button-c + down: button-pressed-c + over: button-over-c + checked: button-pressed-c + checkedOver: button-over-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: radio-button-c + checkboxOff: radio-button-clear + checkboxOver: radio-button-off-c + font: font + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: white + up: button-c + down: button-over-pressed-c + over: button-over-c + } + radio: { + imageUp: radio-button-clear + imageDown: radio-button-pressed + imageOver: radio-button-off-c + imageChecked: radio-button-c + imageCheckedOver: radio-button-over-c + font: font + fontColor: color + downFontColor: pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: color + } + title: { + font: title + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: white + selection: selection + background: list-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-horizontal-c-back + knobBefore: progress-bar-horizontal-c + } + default-vertical: { + background: progress-bar-vertical-back + knobBefore: progress-bar-vertical-c + } + signal1: { + background: signal-bar-back + knobBefore: signal-bar-1 + } + signal2: { + background: signal-bar-back + knobBefore: signal-bar-2 + } + signal3: { + background: signal-bar-back + knobBefore: signal-bar-3 + } + battery: { + background: battery + knobBefore: battery + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scroll-bar-knob-horizontal-c + vScrollKnob: scroll-bar-knob-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box-c + scrollStyle: default + listStyle: default + backgroundOpen: select-box-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-over-horizontal-c + knobDown: slider-knob-over-horizontal-pressed + background: slider-horizontal-c + knob: slider-knob-horizontal-c + } + default-vertical: { + knobOver: slider-knob-over-vertical-c + knobDown: slider-knob-over-vertical-pressed + background: slider-vertical-c + knob: slider-knob-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: split-pane-horizontal-c + } + default-vertical: { + handle: split-pane-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: white + up: button-c + down: button-over-pressed-c + over: button-over-c + } + toggle: { + font: font + fontColor: white + up: button-c + down: button-pressed-c + over: button-over-c + checked: button-pressed-c + checkedOver: button-over-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: white + background: textfield-c + cursor: white + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad-c + knob: touchpad-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus-c + minus: minus-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-c + titleFont: font + titleFontColor: white + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.png b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.png new file mode 100644 index 0000000..4a500ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/quantum-horizon/skin/quantum-horizon-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/README.md b/src/main/resources/omni_power/gdx-skins/rainbow/README.md new file mode 100644 index 0000000..79769f5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/README.md @@ -0,0 +1,22 @@ +# Rainbow UI + +``` +Rainbow UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Rainbow UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Ideal for your next kids game. + +![Rainbow](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/rainbow-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/preview.png b/src/main/resources/omni_power/gdx-skins/rainbow/preview.png new file mode 100644 index 0000000..7a661fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/bg.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/bg.9.png new file mode 100644 index 0000000..7278b16 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/bg.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/bg.png new file mode 100644 index 0000000..c3c021f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-close-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-close-over.png new file mode 100644 index 0000000..fc368d9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-close-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-close.png new file mode 100644 index 0000000..805f7ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-over.9.png new file mode 100644 index 0000000..b4fe470 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-over.png new file mode 100644 index 0000000..c353a12 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed-over.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed-over.9.png new file mode 100644 index 0000000..7451919 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed-over.png new file mode 100644 index 0000000..74381b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed.9.png new file mode 100644 index 0000000..a492c98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed.png new file mode 100644 index 0000000..1d72f32 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small-pressed.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small-pressed.9.png new file mode 100644 index 0000000..856b843 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small-pressed.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small-pressed.png new file mode 100644 index 0000000..7b6f5c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small.9.png new file mode 100644 index 0000000..3255a7c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small.png new file mode 100644 index 0000000..02971c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button.9.png new file mode 100644 index 0000000..ebd243d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/button.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button.png new file mode 100644 index 0000000..bcbd1b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-over.png new file mode 100644 index 0000000..813ac0b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-pressed-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-pressed-over.png new file mode 100644 index 0000000..0e65fe2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-pressed.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-pressed.png new file mode 100644 index 0000000..a2deae3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart.png new file mode 100644 index 0000000..234d74c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-heart.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-over.png new file mode 100644 index 0000000..3c0f610 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-pressed-over.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-pressed-over.png new file mode 100644 index 0000000..08310e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-pressed-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-pressed.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-pressed.png new file mode 100644 index 0000000..58c6bf3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star.png new file mode 100644 index 0000000..dded1ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/check-star.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/clear.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/clear.png new file mode 100644 index 0000000..3dfb780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/clear.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/cloud-1.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/cloud-1.png new file mode 100644 index 0000000..32e899c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/cloud-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/cloud-2.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/cloud-2.png new file mode 100644 index 0000000..0e46e9d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/cloud-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button-export.fnt new file mode 100644 index 0000000..27aaaed --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=52 base=52 scaleW=344 scaleH=345 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=326 y=242 width=14 height=40 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="!" +char id=34 x=82 y=158 width=27 height=19 xoffset=0 yoffset=14 xadvance=27 page=0 chnl=0 letter=""" +char id=35 x=94 y=0 width=26 height=25 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="#" +char id=36 x=252 y=41 width=28 height=54 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="$" +char id=37 x=187 y=70 width=32 height=35 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="%" +char id=38 x=0 y=201 width=40 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="&" +char id=39 x=282 y=315 width=18 height=19 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="'" +char id=40 x=326 y=201 width=15 height=40 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="(" +char id=41 x=326 y=160 width=15 height=40 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter=")" +char id=42 x=220 y=109 width=25 height=26 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="*" +char id=43 x=184 y=316 width=25 height=26 xoffset=0 yoffset=20 xadvance=25 page=0 chnl=0 letter="+" +char id=44 x=43 y=178 width=18 height=20 xoffset=0 yoffset=38 xadvance=18 page=0 chnl=0 letter="," +char id=45 x=0 y=323 width=29 height=13 xoffset=0 yoffset=27 xadvance=29 page=0 chnl=0 letter="-" +char id=46 x=60 y=80 width=14 height=15 xoffset=0 yoffset=38 xadvance=14 page=0 chnl=0 letter="." +char id=47 x=118 y=71 width=34 height=40 xoffset=0 yoffset=13 xadvance=34 page=0 chnl=0 letter="/" +char id=48 x=220 y=68 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="0" +char id=49 x=282 y=275 width=22 height=39 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="1" +char id=50 x=218 y=218 width=32 height=39 xoffset=0 yoffset=13 xadvance=32 page=0 chnl=0 letter="2" +char id=51 x=80 y=219 width=36 height=40 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="3" +char id=52 x=78 y=275 width=37 height=40 xoffset=0 yoffset=13 xadvance=37 page=0 chnl=0 letter="4" +char id=53 x=225 y=0 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="5" +char id=54 x=250 y=258 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="6" +char id=55 x=82 y=80 width=35 height=38 xoffset=0 yoffset=14 xadvance=35 page=0 chnl=0 letter="7" +char id=56 x=257 y=0 width=28 height=40 xoffset=0 yoffset=13 xadvance=28 page=0 chnl=0 letter="8" +char id=57 x=250 y=299 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="9" +char id=58 x=308 y=242 width=14 height=27 xoffset=0 yoffset=26 xadvance=14 page=0 chnl=0 letter=":" +char id=59 x=286 y=0 width=18 height=32 xoffset=0 yoffset=26 xadvance=18 page=0 chnl=0 letter=";" +char id=60 x=153 y=101 width=33 height=39 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=225 y=41 width=26 height=21 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=0 letter="=" +char id=62 x=116 y=301 width=34 height=40 xoffset=0 yoffset=13 xadvance=34 page=0 chnl=0 letter=">" +char id=63 x=281 y=119 width=26 height=41 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="?" +char id=64 x=0 y=241 width=40 height=40 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="@" +char id=65 x=50 y=39 width=37 height=40 xoffset=0 yoffset=13 xadvance=37 page=0 chnl=0 letter="A" +char id=66 x=185 y=277 width=32 height=38 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0 letter="B" +char id=67 x=186 y=178 width=32 height=39 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0 letter="C" +char id=68 x=117 y=158 width=34 height=39 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="D" +char id=69 x=281 y=80 width=27 height=38 xoffset=0 yoffset=14 xadvance=27 page=0 chnl=0 letter="E" +char id=70 x=281 y=196 width=25 height=38 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter="F" +char id=71 x=80 y=178 width=36 height=40 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="G" +char id=72 x=152 y=192 width=33 height=39 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="H" +char id=73 x=309 y=80 width=17 height=38 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="I" +char id=74 x=281 y=41 width=28 height=38 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="J" +char id=75 x=82 y=119 width=35 height=38 xoffset=0 yoffset=14 xadvance=35 page=0 chnl=0 letter="K" +char id=76 x=282 y=235 width=25 height=39 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=0 y=99 width=43 height=39 xoffset=0 yoffset=14 xadvance=43 page=0 chnl=0 letter="M" +char id=78 x=118 y=112 width=34 height=38 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="N" +char id=79 x=41 y=201 width=38 height=40 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="O" +char id=80 x=218 y=288 width=31 height=38 xoffset=0 yoffset=14 xadvance=31 page=0 chnl=0 letter="P" +char id=81 x=39 y=282 width=38 height=40 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="Q" +char id=82 x=124 y=0 width=34 height=39 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="R" +char id=83 x=251 y=185 width=29 height=39 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="S" +char id=84 x=251 y=109 width=29 height=38 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=88 y=30 width=35 height=40 xoffset=0 yoffset=13 xadvance=35 page=0 chnl=0 letter="U" +char id=86 x=44 y=99 width=37 height=38 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=57 height=38 xoffset=0 yoffset=14 xadvance=57 page=0 chnl=0 letter="W" +char id=88 x=0 y=139 width=43 height=38 xoffset=0 yoffset=14 xadvance=43 page=0 chnl=0 letter="X" +char id=89 x=44 y=138 width=37 height=39 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="Y" +char id=90 x=117 y=198 width=34 height=38 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="Z" +char id=91 x=308 y=119 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=152 y=151 width=33 height=40 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="\" +char id=93 x=308 y=201 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="]" +char id=94 x=41 y=242 width=38 height=32 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="^" +char id=95 x=30 y=323 width=29 height=13 xoffset=0 yoffset=39 xadvance=29 page=0 chnl=0 letter="_" +char id=96 x=45 y=80 width=14 height=13 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="`" +char id=97 x=192 y=37 width=32 height=30 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="a" +char id=98 x=186 y=141 width=32 height=36 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=0 letter="b" +char id=99 x=219 y=172 width=31 height=31 xoffset=0 yoffset=21 xadvance=31 page=0 chnl=0 letter="c" +char id=100 x=192 y=0 width=32 height=36 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=0 letter="d" +char id=101 x=187 y=106 width=32 height=30 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="e" +char id=102 x=251 y=148 width=29 height=36 xoffset=0 yoffset=16 xadvance=29 page=0 chnl=0 letter="f" +char id=103 x=185 y=232 width=32 height=44 xoffset=0 yoffset=21 xadvance=32 page=0 chnl=0 letter="g" +char id=104 x=219 y=137 width=31 height=34 xoffset=0 yoffset=18 xadvance=31 page=0 chnl=0 letter="h" +char id=105 x=310 y=40 width=17 height=36 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 letter="i" +char id=106 x=305 y=275 width=20 height=49 xoffset=0 yoffset=16 xadvance=20 page=0 chnl=0 letter="j" +char id=107 x=159 y=32 width=32 height=37 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="k" +char id=108 x=305 y=0 width=18 height=39 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="l" +char id=109 x=0 y=39 width=49 height=29 xoffset=0 yoffset=23 xadvance=49 page=0 chnl=0 letter="m" +char id=110 x=58 y=0 width=35 height=29 xoffset=0 yoffset=23 xadvance=35 page=0 chnl=0 letter="n" +char id=111 x=159 y=0 width=32 height=31 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="o" +char id=112 x=151 y=237 width=33 height=38 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="p" +char id=113 x=151 y=276 width=33 height=38 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="q" +char id=114 x=78 y=316 width=32 height=28 xoffset=0 yoffset=24 xadvance=32 page=0 chnl=0 letter="r" +char id=115 x=251 y=225 width=26 height=30 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="s" +char id=116 x=281 y=161 width=26 height=34 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="t" +char id=117 x=153 y=70 width=33 height=30 xoffset=0 yoffset=23 xadvance=33 page=0 chnl=0 letter="u" +char id=118 x=151 y=315 width=32 height=29 xoffset=0 yoffset=23 xadvance=32 page=0 chnl=0 letter="v" +char id=119 x=0 y=69 width=44 height=29 xoffset=0 yoffset=24 xadvance=44 page=0 chnl=0 letter="w" +char id=120 x=124 y=40 width=34 height=29 xoffset=0 yoffset=23 xadvance=34 page=0 chnl=0 letter="x" +char id=121 x=116 y=260 width=34 height=40 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="y" +char id=122 x=218 y=258 width=31 height=29 xoffset=0 yoffset=23 xadvance=31 page=0 chnl=0 letter="z" +char id=123 x=326 y=119 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="{" +char id=124 x=326 y=283 width=11 height=40 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=308 y=160 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="}" +char id=126 x=0 y=178 width=42 height=22 xoffset=0 yoffset=19 xadvance=42 page=0 chnl=0 letter="~" +char id=8226 x=117 y=237 width=21 height=22 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 letter="•" +char id=169 x=0 y=282 width=38 height=40 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=160 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button-export.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button-export.png new file mode 100644 index 0000000..9b9b0e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button.png new file mode 100644 index 0000000..0170bbb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-export.fnt new file mode 100644 index 0000000..96d59f0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=18 base=18 scaleW=127 scaleH=129 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=116 y=31 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=74 y=52 width=9 height=5 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=86 y=93 width=10 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=85 y=102 width=11 height=21 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=52 y=0 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=16 y=72 width=15 height=15 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=109 y=47 width=5 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=122 y=79 width=4 height=15 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=118 y=47 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=98 y=57 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=97 y=119 width=9 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=91 y=0 width=6 height=6 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=20 y=16 width=10 height=3 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="-" +char id=46 x=117 y=95 width=4 height=4 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=32 y=71 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="/" +char id=48 x=73 y=73 width=12 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=108 y=85 width=8 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=73 y=58 width=12 height=14 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="2" +char id=51 x=23 y=0 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="3" +char id=52 x=16 y=103 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=86 y=26 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="5" +char id=54 x=86 y=42 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=33 y=46 width=13 height=14 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="7" +char id=56 x=86 y=58 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="8" +char id=57 x=86 y=74 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=117 y=85 width=4 height=9 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=109 y=0 width=6 height=12 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=31 y=103 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="<" +char id=61 x=98 y=67 width=9 height=6 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=33 y=16 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=98 y=13 width=10 height=15 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=0 y=102 width=15 height=14 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="@" +char id=65 x=18 y=24 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=73 y=88 width=12 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=60 y=70 width=12 height=15 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=61 y=14 width=12 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="D" +char id=69 x=97 y=105 width=10 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=108 y=57 width=9 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=47 y=14 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=45 y=87 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="H" +char id=73 x=109 y=13 width=6 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=98 y=42 width=10 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=33 y=32 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=108 y=71 width=9 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=0 y=24 width=17 height=14 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=38 y=0 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="N" +char id=79 x=18 y=40 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="O" +char id=80 x=74 y=25 width=11 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=0 y=87 width=15 height=14 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=59 y=87 width=13 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="R" +char id=83 x=97 y=90 width=10 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=86 y=12 width=11 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=47 y=44 width=13 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=16 y=88 width=14 height=14 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=22 height=13 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="W" +char id=88 x=0 y=50 width=17 height=13 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="X" +char id=89 x=18 y=56 width=14 height=14 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=47 y=30 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="Z" +char id=91 x=116 y=0 width=6 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=45 y=101 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=118 y=63 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=0 y=117 width=15 height=11 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="^" +char id=95 x=86 y=90 width=10 height=2 xoffset=0 yoffset=15 xadvance=12 page=0 chnl=0 letter="_" +char id=96 x=109 y=53 width=4 height=3 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=47 y=59 width=12 height=10 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=61 y=44 width=12 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="b" +char id=99 x=79 y=0 width=11 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=66 y=0 width=12 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="d" +char id=101 x=74 y=40 width=11 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=98 y=0 width=10 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=72 y=102 width=12 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=59 y=116 width=12 height=12 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=116 y=116 width=5 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=108 y=100 width=7 height=18 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=59 y=102 width=12 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=116 y=16 width=6 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=14 width=19 height=9 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="m" +char id=110 x=16 y=119 width=13 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=60 y=59 width=12 height=10 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="o" +char id=112 x=31 y=88 width=13 height=14 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=61 y=29 width=12 height=14 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="q" +char id=114 x=72 y=119 width=12 height=9 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="r" +char id=115 x=98 y=74 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=98 y=29 width=10 height=12 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="t" +char id=117 x=44 y=117 width=13 height=10 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=30 y=119 width=13 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="v" +char id=119 x=0 y=39 width=17 height=10 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="w" +char id=120 x=33 y=61 width=13 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="x" +char id=121 x=46 y=71 width=13 height=15 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="y" +char id=122 x=74 y=14 width=11 height=10 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="z" +char id=123 x=109 y=27 width=6 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=122 y=95 width=3 height=15 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=116 y=100 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=64 width=16 height=7 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="~" +char id=8226 x=107 y=119 width=7 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=72 width=15 height=14 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-export.png new file mode 100644 index 0000000..008a6f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title-export.fnt new file mode 100644 index 0000000..9e5344e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title-export.fnt @@ -0,0 +1,102 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=52 base=52 scaleW=356 scaleH=357 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=96 +char id=33 x=328 y=313 width=19 height=40 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="!" +char id=34 x=258 y=199 width=28 height=14 xoffset=0 yoffset=6 xadvance=32 page=0 chnl=0 letter=""" +char id=35 x=298 y=41 width=22 height=33 xoffset=0 yoffset=19 xadvance=26 page=0 chnl=0 letter="#" +char id=36 x=322 y=216 width=20 height=41 xoffset=0 yoffset=15 xadvance=24 page=0 chnl=0 letter="$" +char id=37 x=0 y=322 width=37 height=34 xoffset=0 yoffset=18 xadvance=41 page=0 chnl=0 letter="%" +char id=38 x=184 y=37 width=38 height=40 xoffset=0 yoffset=12 xadvance=42 page=0 chnl=0 letter="&" +char id=39 x=310 y=258 width=14 height=14 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="'" +char id=40 x=343 y=159 width=12 height=41 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=343 y=117 width=12 height=41 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=70 y=330 width=18 height=19 xoffset=0 yoffset=17 xadvance=22 page=0 chnl=0 letter="*" +char id=43 x=178 y=317 width=39 height=39 xoffset=0 yoffset=12 xadvance=43 page=0 chnl=0 letter="+" +char id=44 x=302 y=197 width=13 height=15 xoffset=0 yoffset=42 xadvance=17 page=0 chnl=0 letter="," +char id=45 x=38 y=330 width=31 height=19 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="-" +char id=46 x=287 y=199 width=14 height=11 xoffset=0 yoffset=41 xadvance=18 page=0 chnl=0 letter="." +char id=47 x=329 y=41 width=19 height=37 xoffset=0 yoffset=17 xadvance=23 page=0 chnl=0 letter="/" +char id=48 x=257 y=233 width=37 height=39 xoffset=0 yoffset=13 xadvance=41 page=0 chnl=0 letter="0" +char id=49 x=320 y=139 width=22 height=39 xoffset=0 yoffset=13 xadvance=26 page=0 chnl=0 letter="1" +char id=50 x=219 y=156 width=38 height=39 xoffset=0 yoffset=13 xadvance=42 page=0 chnl=0 letter="2" +char id=51 x=294 y=273 width=35 height=39 xoffset=0 yoffset=13 xadvance=39 page=0 chnl=0 letter="3" +char id=52 x=93 y=201 width=42 height=39 xoffset=0 yoffset=13 xadvance=46 page=0 chnl=0 letter="4" +char id=53 x=258 y=118 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="5" +char id=54 x=261 y=37 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="6" +char id=55 x=218 y=317 width=38 height=39 xoffset=0 yoffset=13 xadvance=42 page=0 chnl=0 letter="7" +char id=56 x=257 y=273 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="8" +char id=57 x=258 y=78 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="9" +char id=58 x=330 y=286 width=13 height=23 xoffset=0 yoffset=21 xadvance=17 page=0 chnl=0 letter=":" +char id=59 x=330 y=258 width=14 height=27 xoffset=0 yoffset=30 xadvance=18 page=0 chnl=0 letter=";" +char id=60 x=295 y=139 width=24 height=28 xoffset=0 yoffset=24 xadvance=28 page=0 chnl=0 letter="<" +char id=61 x=295 y=224 width=26 height=32 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="=" +char id=62 x=295 y=168 width=24 height=28 xoffset=0 yoffset=24 xadvance=28 page=0 chnl=0 letter=">" +char id=63 x=219 y=270 width=37 height=39 xoffset=0 yoffset=13 xadvance=41 page=0 chnl=0 letter="?" +char id=65 x=0 y=281 width=46 height=40 xoffset=0 yoffset=12 xadvance=50 page=0 chnl=0 letter="A" +char id=66 x=48 y=160 width=44 height=40 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0 letter="B" +char id=67 x=136 y=239 width=41 height=40 xoffset=0 yoffset=12 xadvance=45 page=0 chnl=0 letter="C" +char id=68 x=52 y=78 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="D" +char id=69 x=223 y=37 width=37 height=40 xoffset=0 yoffset=12 xadvance=41 page=0 chnl=0 letter="E" +char id=70 x=258 y=158 width=36 height=40 xoffset=0 yoffset=12 xadvance=40 page=0 chnl=0 letter="F" +char id=71 x=94 y=119 width=43 height=40 xoffset=0 yoffset=12 xadvance=47 page=0 chnl=0 letter="G" +char id=72 x=0 y=202 width=46 height=40 xoffset=0 yoffset=12 xadvance=50 page=0 chnl=0 letter="H" +char id=73 x=306 y=0 width=23 height=40 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="I" +char id=74 x=136 y=280 width=41 height=40 xoffset=0 yoffset=12 xadvance=45 page=0 chnl=0 letter="J" +char id=75 x=93 y=160 width=44 height=40 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0 letter="K" +char id=76 x=178 y=235 width=40 height=40 xoffset=0 yoffset=12 xadvance=44 page=0 chnl=0 letter="L" +char id=77 x=0 y=78 width=51 height=40 xoffset=0 yoffset=12 xadvance=55 page=0 chnl=0 letter="M" +char id=78 x=0 y=119 width=47 height=41 xoffset=0 yoffset=11 xadvance=51 page=0 chnl=0 letter="N" +char id=79 x=47 y=289 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="O" +char id=80 x=109 y=0 width=42 height=40 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="P" +char id=81 x=47 y=202 width=45 height=45 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="Q" +char id=82 x=93 y=241 width=42 height=40 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="R" +char id=83 x=219 y=78 width=38 height=40 xoffset=0 yoffset=12 xadvance=42 page=0 chnl=0 letter="S" +char id=84 x=178 y=276 width=40 height=40 xoffset=0 yoffset=12 xadvance=44 page=0 chnl=0 letter="T" +char id=85 x=0 y=161 width=47 height=40 xoffset=0 yoffset=12 xadvance=51 page=0 chnl=0 letter="U" +char id=86 x=64 y=0 width=44 height=40 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=63 height=40 xoffset=0 yoffset=12 xadvance=67 page=0 chnl=0 letter="W" +char id=88 x=47 y=248 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="X" +char id=89 x=48 y=119 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="Y" +char id=90 x=98 y=78 width=42 height=40 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="Z" +char id=91 x=258 y=214 width=27 height=14 xoffset=0 yoffset=6 xadvance=31 page=0 chnl=0 letter="[" +char id=92 x=329 y=79 width=18 height=37 xoffset=0 yoffset=17 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=295 y=258 width=14 height=14 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="]" +char id=94 x=295 y=114 width=25 height=24 xoffset=0 yoffset=19 xadvance=29 page=0 chnl=0 letter="^" +char id=95 x=179 y=193 width=25 height=4 xoffset=0 yoffset=54 xadvance=29 page=0 chnl=0 letter="_" +char id=97 x=138 y=119 width=41 height=36 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="a" +char id=98 x=179 y=156 width=39 height=36 xoffset=0 yoffset=16 xadvance=43 page=0 chnl=0 letter="b" +char id=99 x=193 y=0 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="c" +char id=100 x=101 y=41 width=41 height=36 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="d" +char id=101 x=294 y=313 width=33 height=36 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="e" +char id=102 x=295 y=77 width=33 height=36 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="f" +char id=103 x=219 y=196 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="g" +char id=104 x=93 y=320 width=41 height=36 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="h" +char id=105 x=320 y=179 width=21 height=36 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="i" +char id=106 x=219 y=119 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="j" +char id=107 x=178 y=198 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="k" +char id=108 x=182 y=78 width=36 height=36 xoffset=0 yoffset=16 xadvance=40 page=0 chnl=0 letter="l" +char id=109 x=0 y=243 width=46 height=37 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0 letter="m" +char id=110 x=93 y=282 width=42 height=37 xoffset=0 yoffset=15 xadvance=46 page=0 chnl=0 letter="n" +char id=111 x=143 y=41 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="o" +char id=112 x=219 y=233 width=37 height=36 xoffset=0 yoffset=16 xadvance=41 page=0 chnl=0 letter="p" +char id=113 x=138 y=156 width=40 height=41 xoffset=0 yoffset=11 xadvance=44 page=0 chnl=0 letter="q" +char id=114 x=180 y=115 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="r" +char id=115 x=270 y=0 width=35 height=36 xoffset=0 yoffset=16 xadvance=39 page=0 chnl=0 letter="s" +char id=116 x=257 y=313 width=36 height=36 xoffset=0 yoffset=16 xadvance=40 page=0 chnl=0 letter="t" +char id=117 x=58 y=41 width=42 height=36 xoffset=0 yoffset=16 xadvance=46 page=0 chnl=0 letter="u" +char id=118 x=152 y=0 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="v" +char id=119 x=0 y=41 width=57 height=36 xoffset=0 yoffset=16 xadvance=61 page=0 chnl=0 letter="w" +char id=120 x=136 y=201 width=41 height=37 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="x" +char id=121 x=141 y=78 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="y" +char id=122 x=232 y=0 width=37 height=36 xoffset=0 yoffset=16 xadvance=41 page=0 chnl=0 letter="z" +char id=123 x=343 y=0 width=12 height=40 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter="{" +char id=124 x=343 y=201 width=5 height=50 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=330 y=0 width=12 height=40 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter="}" +char id=126 x=286 y=214 width=26 height=9 xoffset=0 yoffset=33 xadvance=30 page=0 chnl=0 letter="~" +char id=8226 x=321 y=117 width=12 height=11 xoffset=0 yoffset=33 xadvance=16 page=0 chnl=0 letter="•" +char id=169 x=135 y=321 width=31 height=31 xoffset=0 yoffset=19 xadvance=35 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=23 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=184 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title-export.png new file mode 100644 index 0000000..24deb71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title.png new file mode 100644 index 0000000..ed3822a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/font.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font.png new file mode 100644 index 0000000..73cafac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/hover.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/hover.png new file mode 100644 index 0000000..75b3ba6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/hover.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/list.9.png new file mode 100644 index 0000000..27f0d23 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/list.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/list.png new file mode 100644 index 0000000..d456125 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-background.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-background.9.png new file mode 100644 index 0000000..8063df1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-background.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-before.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-before.png new file mode 100644 index 0000000..849640b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-before.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-cloud-back.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-cloud-back.png new file mode 100644 index 0000000..8aec270 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-cloud-back.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-cloud.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-cloud.png new file mode 100644 index 0000000..2ae531b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-cloud.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-heart-back.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-heart-back.png new file mode 100644 index 0000000..faa20a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-heart-back.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-heart.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-heart.png new file mode 100644 index 0000000..4e65b5c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-heart.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-knob.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-knob.png new file mode 100644 index 0000000..fb464c1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-star-back.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-star-back.png new file mode 100644 index 0000000..cb5d114 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-star-back.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-star.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-star.png new file mode 100644 index 0000000..5617ecd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/progress-bar-star.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-horizontal.9.png new file mode 100644 index 0000000..daaf6f8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..7e121a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..7210b5b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-vertical.png new file mode 100644 index 0000000..5843351 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box-pressed.9.png new file mode 100644 index 0000000..fead64d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box-pressed.png new file mode 100644 index 0000000..d200f5c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box.9.png new file mode 100644 index 0000000..7c11452 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box.png new file mode 100644 index 0000000..8ef39bf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/splitpane-horizontal.png new file mode 100644 index 0000000..f8aff46 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/splitpane-vertical.png new file mode 100644 index 0000000..41b03af Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/textfield.9.png new file mode 100644 index 0000000..5794d17 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/textfield.png new file mode 100644 index 0000000..9d63e5c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/title-box.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/title-box.9.png new file mode 100644 index 0000000..363637d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/title-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/title-box.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/title-box.png new file mode 100644 index 0000000..256b6da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/title-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/touchpad-knob.png new file mode 100644 index 0000000..30563ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/touchpad.png new file mode 100644 index 0000000..0786af1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/white.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/window.9.png new file mode 100644 index 0000000..a9c239c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/raw/window.png b/src/main/resources/omni_power/gdx-skins/rainbow/raw/window.png new file mode 100644 index 0000000..c5aec6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-button-export.fnt b/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-button-export.fnt new file mode 100644 index 0000000..27aaaed --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-button-export.fnt @@ -0,0 +1,104 @@ +info face="font-button-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=52 base=52 scaleW=344 scaleH=345 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button-export.png" +chars count=98 +char id=33 x=326 y=242 width=14 height=40 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="!" +char id=34 x=82 y=158 width=27 height=19 xoffset=0 yoffset=14 xadvance=27 page=0 chnl=0 letter=""" +char id=35 x=94 y=0 width=26 height=25 xoffset=0 yoffset=21 xadvance=26 page=0 chnl=0 letter="#" +char id=36 x=252 y=41 width=28 height=54 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="$" +char id=37 x=187 y=70 width=32 height=35 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="%" +char id=38 x=0 y=201 width=40 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="&" +char id=39 x=282 y=315 width=18 height=19 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="'" +char id=40 x=326 y=201 width=15 height=40 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter="(" +char id=41 x=326 y=160 width=15 height=40 xoffset=0 yoffset=13 xadvance=15 page=0 chnl=0 letter=")" +char id=42 x=220 y=109 width=25 height=26 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="*" +char id=43 x=184 y=316 width=25 height=26 xoffset=0 yoffset=20 xadvance=25 page=0 chnl=0 letter="+" +char id=44 x=43 y=178 width=18 height=20 xoffset=0 yoffset=38 xadvance=18 page=0 chnl=0 letter="," +char id=45 x=0 y=323 width=29 height=13 xoffset=0 yoffset=27 xadvance=29 page=0 chnl=0 letter="-" +char id=46 x=60 y=80 width=14 height=15 xoffset=0 yoffset=38 xadvance=14 page=0 chnl=0 letter="." +char id=47 x=118 y=71 width=34 height=40 xoffset=0 yoffset=13 xadvance=34 page=0 chnl=0 letter="/" +char id=48 x=220 y=68 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="0" +char id=49 x=282 y=275 width=22 height=39 xoffset=0 yoffset=13 xadvance=22 page=0 chnl=0 letter="1" +char id=50 x=218 y=218 width=32 height=39 xoffset=0 yoffset=13 xadvance=32 page=0 chnl=0 letter="2" +char id=51 x=80 y=219 width=36 height=40 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="3" +char id=52 x=78 y=275 width=37 height=40 xoffset=0 yoffset=13 xadvance=37 page=0 chnl=0 letter="4" +char id=53 x=225 y=0 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="5" +char id=54 x=250 y=258 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="6" +char id=55 x=82 y=80 width=35 height=38 xoffset=0 yoffset=14 xadvance=35 page=0 chnl=0 letter="7" +char id=56 x=257 y=0 width=28 height=40 xoffset=0 yoffset=13 xadvance=28 page=0 chnl=0 letter="8" +char id=57 x=250 y=299 width=31 height=40 xoffset=0 yoffset=13 xadvance=31 page=0 chnl=0 letter="9" +char id=58 x=308 y=242 width=14 height=27 xoffset=0 yoffset=26 xadvance=14 page=0 chnl=0 letter=":" +char id=59 x=286 y=0 width=18 height=32 xoffset=0 yoffset=26 xadvance=18 page=0 chnl=0 letter=";" +char id=60 x=153 y=101 width=33 height=39 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=225 y=41 width=26 height=21 xoffset=0 yoffset=23 xadvance=26 page=0 chnl=0 letter="=" +char id=62 x=116 y=301 width=34 height=40 xoffset=0 yoffset=13 xadvance=34 page=0 chnl=0 letter=">" +char id=63 x=281 y=119 width=26 height=41 xoffset=0 yoffset=12 xadvance=26 page=0 chnl=0 letter="?" +char id=64 x=0 y=241 width=40 height=40 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="@" +char id=65 x=50 y=39 width=37 height=40 xoffset=0 yoffset=13 xadvance=37 page=0 chnl=0 letter="A" +char id=66 x=185 y=277 width=32 height=38 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0 letter="B" +char id=67 x=186 y=178 width=32 height=39 xoffset=0 yoffset=14 xadvance=32 page=0 chnl=0 letter="C" +char id=68 x=117 y=158 width=34 height=39 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="D" +char id=69 x=281 y=80 width=27 height=38 xoffset=0 yoffset=14 xadvance=27 page=0 chnl=0 letter="E" +char id=70 x=281 y=196 width=25 height=38 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter="F" +char id=71 x=80 y=178 width=36 height=40 xoffset=0 yoffset=13 xadvance=36 page=0 chnl=0 letter="G" +char id=72 x=152 y=192 width=33 height=39 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="H" +char id=73 x=309 y=80 width=17 height=38 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="I" +char id=74 x=281 y=41 width=28 height=38 xoffset=0 yoffset=14 xadvance=28 page=0 chnl=0 letter="J" +char id=75 x=82 y=119 width=35 height=38 xoffset=0 yoffset=14 xadvance=35 page=0 chnl=0 letter="K" +char id=76 x=282 y=235 width=25 height=39 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="L" +char id=77 x=0 y=99 width=43 height=39 xoffset=0 yoffset=14 xadvance=43 page=0 chnl=0 letter="M" +char id=78 x=118 y=112 width=34 height=38 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="N" +char id=79 x=41 y=201 width=38 height=40 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="O" +char id=80 x=218 y=288 width=31 height=38 xoffset=0 yoffset=14 xadvance=31 page=0 chnl=0 letter="P" +char id=81 x=39 y=282 width=38 height=40 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="Q" +char id=82 x=124 y=0 width=34 height=39 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="R" +char id=83 x=251 y=185 width=29 height=39 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="S" +char id=84 x=251 y=109 width=29 height=38 xoffset=0 yoffset=14 xadvance=29 page=0 chnl=0 letter="T" +char id=85 x=88 y=30 width=35 height=40 xoffset=0 yoffset=13 xadvance=35 page=0 chnl=0 letter="U" +char id=86 x=44 y=99 width=37 height=38 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=57 height=38 xoffset=0 yoffset=14 xadvance=57 page=0 chnl=0 letter="W" +char id=88 x=0 y=139 width=43 height=38 xoffset=0 yoffset=14 xadvance=43 page=0 chnl=0 letter="X" +char id=89 x=44 y=138 width=37 height=39 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="Y" +char id=90 x=117 y=198 width=34 height=38 xoffset=0 yoffset=14 xadvance=34 page=0 chnl=0 letter="Z" +char id=91 x=308 y=119 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=152 y=151 width=33 height=40 xoffset=0 yoffset=13 xadvance=33 page=0 chnl=0 letter="\" +char id=93 x=308 y=201 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="]" +char id=94 x=41 y=242 width=38 height=32 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="^" +char id=95 x=30 y=323 width=29 height=13 xoffset=0 yoffset=39 xadvance=29 page=0 chnl=0 letter="_" +char id=96 x=45 y=80 width=14 height=13 xoffset=0 yoffset=14 xadvance=14 page=0 chnl=0 letter="`" +char id=97 x=192 y=37 width=32 height=30 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="a" +char id=98 x=186 y=141 width=32 height=36 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=0 letter="b" +char id=99 x=219 y=172 width=31 height=31 xoffset=0 yoffset=21 xadvance=31 page=0 chnl=0 letter="c" +char id=100 x=192 y=0 width=32 height=36 xoffset=0 yoffset=16 xadvance=32 page=0 chnl=0 letter="d" +char id=101 x=187 y=106 width=32 height=30 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="e" +char id=102 x=251 y=148 width=29 height=36 xoffset=0 yoffset=16 xadvance=29 page=0 chnl=0 letter="f" +char id=103 x=185 y=232 width=32 height=44 xoffset=0 yoffset=21 xadvance=32 page=0 chnl=0 letter="g" +char id=104 x=219 y=137 width=31 height=34 xoffset=0 yoffset=18 xadvance=31 page=0 chnl=0 letter="h" +char id=105 x=310 y=40 width=17 height=36 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 letter="i" +char id=106 x=305 y=275 width=20 height=49 xoffset=0 yoffset=16 xadvance=20 page=0 chnl=0 letter="j" +char id=107 x=159 y=32 width=32 height=37 xoffset=0 yoffset=15 xadvance=32 page=0 chnl=0 letter="k" +char id=108 x=305 y=0 width=18 height=39 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="l" +char id=109 x=0 y=39 width=49 height=29 xoffset=0 yoffset=23 xadvance=49 page=0 chnl=0 letter="m" +char id=110 x=58 y=0 width=35 height=29 xoffset=0 yoffset=23 xadvance=35 page=0 chnl=0 letter="n" +char id=111 x=159 y=0 width=32 height=31 xoffset=0 yoffset=22 xadvance=32 page=0 chnl=0 letter="o" +char id=112 x=151 y=237 width=33 height=38 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="p" +char id=113 x=151 y=276 width=33 height=38 xoffset=0 yoffset=22 xadvance=33 page=0 chnl=0 letter="q" +char id=114 x=78 y=316 width=32 height=28 xoffset=0 yoffset=24 xadvance=32 page=0 chnl=0 letter="r" +char id=115 x=251 y=225 width=26 height=30 xoffset=0 yoffset=22 xadvance=26 page=0 chnl=0 letter="s" +char id=116 x=281 y=161 width=26 height=34 xoffset=0 yoffset=18 xadvance=26 page=0 chnl=0 letter="t" +char id=117 x=153 y=70 width=33 height=30 xoffset=0 yoffset=23 xadvance=33 page=0 chnl=0 letter="u" +char id=118 x=151 y=315 width=32 height=29 xoffset=0 yoffset=23 xadvance=32 page=0 chnl=0 letter="v" +char id=119 x=0 y=69 width=44 height=29 xoffset=0 yoffset=24 xadvance=44 page=0 chnl=0 letter="w" +char id=120 x=124 y=40 width=34 height=29 xoffset=0 yoffset=23 xadvance=34 page=0 chnl=0 letter="x" +char id=121 x=116 y=260 width=34 height=40 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="y" +char id=122 x=218 y=258 width=31 height=29 xoffset=0 yoffset=23 xadvance=31 page=0 chnl=0 letter="z" +char id=123 x=326 y=119 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="{" +char id=124 x=326 y=283 width=11 height=40 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=308 y=160 width=17 height=40 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="}" +char id=126 x=0 y=178 width=42 height=22 xoffset=0 yoffset=19 xadvance=42 page=0 chnl=0 letter="~" +char id=8226 x=117 y=237 width=21 height=22 xoffset=0 yoffset=22 xadvance=21 page=0 chnl=0 letter="•" +char id=169 x=0 y=282 width=38 height=40 xoffset=0 yoffset=13 xadvance=38 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=20 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=160 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-export.fnt new file mode 100644 index 0000000..96d59f0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=18 base=18 scaleW=127 scaleH=129 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=116 y=31 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=74 y=52 width=9 height=5 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=86 y=93 width=10 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=85 y=102 width=11 height=21 xoffset=0 yoffset=0 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=52 y=0 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=16 y=72 width=15 height=15 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=109 y=47 width=5 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="'" +char id=40 x=122 y=79 width=4 height=15 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=118 y=47 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=98 y=57 width=9 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=97 y=119 width=9 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=91 y=0 width=6 height=6 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=20 y=16 width=10 height=3 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="-" +char id=46 x=117 y=95 width=4 height=4 xoffset=0 yoffset=14 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=32 y=71 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="/" +char id=48 x=73 y=73 width=12 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=108 y=85 width=8 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=73 y=58 width=12 height=14 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="2" +char id=51 x=23 y=0 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="3" +char id=52 x=16 y=103 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="4" +char id=53 x=86 y=26 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="5" +char id=54 x=86 y=42 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=33 y=46 width=13 height=14 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="7" +char id=56 x=86 y=58 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="8" +char id=57 x=86 y=74 width=11 height=15 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=117 y=85 width=4 height=9 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=109 y=0 width=6 height=12 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=31 y=103 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="<" +char id=61 x=98 y=67 width=9 height=6 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=33 y=16 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter=">" +char id=63 x=98 y=13 width=10 height=15 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="?" +char id=64 x=0 y=102 width=15 height=14 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="@" +char id=65 x=18 y=24 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=73 y=88 width=12 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=60 y=70 width=12 height=15 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 letter="C" +char id=68 x=61 y=14 width=12 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="D" +char id=69 x=97 y=105 width=10 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=108 y=57 width=9 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=47 y=14 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=45 y=87 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="H" +char id=73 x=109 y=13 width=6 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="I" +char id=74 x=98 y=42 width=10 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=33 y=32 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=108 y=71 width=9 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=0 y=24 width=17 height=14 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=38 y=0 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="N" +char id=79 x=18 y=40 width=14 height=15 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="O" +char id=80 x=74 y=25 width=11 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=0 y=87 width=15 height=14 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=59 y=87 width=13 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="R" +char id=83 x=97 y=90 width=10 height=14 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=86 y=12 width=11 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=47 y=44 width=13 height=14 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=16 y=88 width=14 height=14 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=22 height=13 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="W" +char id=88 x=0 y=50 width=17 height=13 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="X" +char id=89 x=18 y=56 width=14 height=14 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="Y" +char id=90 x=47 y=30 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="Z" +char id=91 x=116 y=0 width=6 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=45 y=101 width=13 height=15 xoffset=0 yoffset=3 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=118 y=63 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=0 y=117 width=15 height=11 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="^" +char id=95 x=86 y=90 width=10 height=2 xoffset=0 yoffset=15 xadvance=12 page=0 chnl=0 letter="_" +char id=96 x=109 y=53 width=4 height=3 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=47 y=59 width=12 height=10 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="a" +char id=98 x=61 y=44 width=12 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="b" +char id=99 x=79 y=0 width=11 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=66 y=0 width=12 height=13 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="d" +char id=101 x=74 y=40 width=11 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=98 y=0 width=10 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="f" +char id=103 x=72 y=102 width=12 height=16 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="g" +char id=104 x=59 y=116 width=12 height=12 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="h" +char id=105 x=116 y=116 width=5 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=108 y=100 width=7 height=18 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="j" +char id=107 x=59 y=102 width=12 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=116 y=16 width=6 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="l" +char id=109 x=0 y=14 width=19 height=9 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="m" +char id=110 x=16 y=119 width=13 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=60 y=59 width=12 height=10 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="o" +char id=112 x=31 y=88 width=13 height=14 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=61 y=29 width=12 height=14 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="q" +char id=114 x=72 y=119 width=12 height=9 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="r" +char id=115 x=98 y=74 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=98 y=29 width=10 height=12 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="t" +char id=117 x=44 y=117 width=13 height=10 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="u" +char id=118 x=30 y=119 width=13 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="v" +char id=119 x=0 y=39 width=17 height=10 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="w" +char id=120 x=33 y=61 width=13 height=9 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="x" +char id=121 x=46 y=71 width=13 height=15 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="y" +char id=122 x=74 y=14 width=11 height=10 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="z" +char id=123 x=109 y=27 width=6 height=15 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=122 y=95 width=3 height=15 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=116 y=100 width=5 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=64 width=16 height=7 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="~" +char id=8226 x=107 y=119 width=7 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=72 width=15 height=14 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-title-export.fnt new file mode 100644 index 0000000..9e5344e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/skin/font-title-export.fnt @@ -0,0 +1,102 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=52 base=52 scaleW=356 scaleH=357 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=96 +char id=33 x=328 y=313 width=19 height=40 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="!" +char id=34 x=258 y=199 width=28 height=14 xoffset=0 yoffset=6 xadvance=32 page=0 chnl=0 letter=""" +char id=35 x=298 y=41 width=22 height=33 xoffset=0 yoffset=19 xadvance=26 page=0 chnl=0 letter="#" +char id=36 x=322 y=216 width=20 height=41 xoffset=0 yoffset=15 xadvance=24 page=0 chnl=0 letter="$" +char id=37 x=0 y=322 width=37 height=34 xoffset=0 yoffset=18 xadvance=41 page=0 chnl=0 letter="%" +char id=38 x=184 y=37 width=38 height=40 xoffset=0 yoffset=12 xadvance=42 page=0 chnl=0 letter="&" +char id=39 x=310 y=258 width=14 height=14 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="'" +char id=40 x=343 y=159 width=12 height=41 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=343 y=117 width=12 height=41 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=70 y=330 width=18 height=19 xoffset=0 yoffset=17 xadvance=22 page=0 chnl=0 letter="*" +char id=43 x=178 y=317 width=39 height=39 xoffset=0 yoffset=12 xadvance=43 page=0 chnl=0 letter="+" +char id=44 x=302 y=197 width=13 height=15 xoffset=0 yoffset=42 xadvance=17 page=0 chnl=0 letter="," +char id=45 x=38 y=330 width=31 height=19 xoffset=0 yoffset=22 xadvance=35 page=0 chnl=0 letter="-" +char id=46 x=287 y=199 width=14 height=11 xoffset=0 yoffset=41 xadvance=18 page=0 chnl=0 letter="." +char id=47 x=329 y=41 width=19 height=37 xoffset=0 yoffset=17 xadvance=23 page=0 chnl=0 letter="/" +char id=48 x=257 y=233 width=37 height=39 xoffset=0 yoffset=13 xadvance=41 page=0 chnl=0 letter="0" +char id=49 x=320 y=139 width=22 height=39 xoffset=0 yoffset=13 xadvance=26 page=0 chnl=0 letter="1" +char id=50 x=219 y=156 width=38 height=39 xoffset=0 yoffset=13 xadvance=42 page=0 chnl=0 letter="2" +char id=51 x=294 y=273 width=35 height=39 xoffset=0 yoffset=13 xadvance=39 page=0 chnl=0 letter="3" +char id=52 x=93 y=201 width=42 height=39 xoffset=0 yoffset=13 xadvance=46 page=0 chnl=0 letter="4" +char id=53 x=258 y=118 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="5" +char id=54 x=261 y=37 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="6" +char id=55 x=218 y=317 width=38 height=39 xoffset=0 yoffset=13 xadvance=42 page=0 chnl=0 letter="7" +char id=56 x=257 y=273 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="8" +char id=57 x=258 y=78 width=36 height=39 xoffset=0 yoffset=13 xadvance=40 page=0 chnl=0 letter="9" +char id=58 x=330 y=286 width=13 height=23 xoffset=0 yoffset=21 xadvance=17 page=0 chnl=0 letter=":" +char id=59 x=330 y=258 width=14 height=27 xoffset=0 yoffset=30 xadvance=18 page=0 chnl=0 letter=";" +char id=60 x=295 y=139 width=24 height=28 xoffset=0 yoffset=24 xadvance=28 page=0 chnl=0 letter="<" +char id=61 x=295 y=224 width=26 height=32 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="=" +char id=62 x=295 y=168 width=24 height=28 xoffset=0 yoffset=24 xadvance=28 page=0 chnl=0 letter=">" +char id=63 x=219 y=270 width=37 height=39 xoffset=0 yoffset=13 xadvance=41 page=0 chnl=0 letter="?" +char id=65 x=0 y=281 width=46 height=40 xoffset=0 yoffset=12 xadvance=50 page=0 chnl=0 letter="A" +char id=66 x=48 y=160 width=44 height=40 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0 letter="B" +char id=67 x=136 y=239 width=41 height=40 xoffset=0 yoffset=12 xadvance=45 page=0 chnl=0 letter="C" +char id=68 x=52 y=78 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="D" +char id=69 x=223 y=37 width=37 height=40 xoffset=0 yoffset=12 xadvance=41 page=0 chnl=0 letter="E" +char id=70 x=258 y=158 width=36 height=40 xoffset=0 yoffset=12 xadvance=40 page=0 chnl=0 letter="F" +char id=71 x=94 y=119 width=43 height=40 xoffset=0 yoffset=12 xadvance=47 page=0 chnl=0 letter="G" +char id=72 x=0 y=202 width=46 height=40 xoffset=0 yoffset=12 xadvance=50 page=0 chnl=0 letter="H" +char id=73 x=306 y=0 width=23 height=40 xoffset=0 yoffset=12 xadvance=27 page=0 chnl=0 letter="I" +char id=74 x=136 y=280 width=41 height=40 xoffset=0 yoffset=12 xadvance=45 page=0 chnl=0 letter="J" +char id=75 x=93 y=160 width=44 height=40 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0 letter="K" +char id=76 x=178 y=235 width=40 height=40 xoffset=0 yoffset=12 xadvance=44 page=0 chnl=0 letter="L" +char id=77 x=0 y=78 width=51 height=40 xoffset=0 yoffset=12 xadvance=55 page=0 chnl=0 letter="M" +char id=78 x=0 y=119 width=47 height=41 xoffset=0 yoffset=11 xadvance=51 page=0 chnl=0 letter="N" +char id=79 x=47 y=289 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="O" +char id=80 x=109 y=0 width=42 height=40 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="P" +char id=81 x=47 y=202 width=45 height=45 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="Q" +char id=82 x=93 y=241 width=42 height=40 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="R" +char id=83 x=219 y=78 width=38 height=40 xoffset=0 yoffset=12 xadvance=42 page=0 chnl=0 letter="S" +char id=84 x=178 y=276 width=40 height=40 xoffset=0 yoffset=12 xadvance=44 page=0 chnl=0 letter="T" +char id=85 x=0 y=161 width=47 height=40 xoffset=0 yoffset=12 xadvance=51 page=0 chnl=0 letter="U" +char id=86 x=64 y=0 width=44 height=40 xoffset=0 yoffset=12 xadvance=48 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=63 height=40 xoffset=0 yoffset=12 xadvance=67 page=0 chnl=0 letter="W" +char id=88 x=47 y=248 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="X" +char id=89 x=48 y=119 width=45 height=40 xoffset=0 yoffset=12 xadvance=49 page=0 chnl=0 letter="Y" +char id=90 x=98 y=78 width=42 height=40 xoffset=0 yoffset=12 xadvance=46 page=0 chnl=0 letter="Z" +char id=91 x=258 y=214 width=27 height=14 xoffset=0 yoffset=6 xadvance=31 page=0 chnl=0 letter="[" +char id=92 x=329 y=79 width=18 height=37 xoffset=0 yoffset=17 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=295 y=258 width=14 height=14 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="]" +char id=94 x=295 y=114 width=25 height=24 xoffset=0 yoffset=19 xadvance=29 page=0 chnl=0 letter="^" +char id=95 x=179 y=193 width=25 height=4 xoffset=0 yoffset=54 xadvance=29 page=0 chnl=0 letter="_" +char id=97 x=138 y=119 width=41 height=36 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="a" +char id=98 x=179 y=156 width=39 height=36 xoffset=0 yoffset=16 xadvance=43 page=0 chnl=0 letter="b" +char id=99 x=193 y=0 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="c" +char id=100 x=101 y=41 width=41 height=36 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="d" +char id=101 x=294 y=313 width=33 height=36 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="e" +char id=102 x=295 y=77 width=33 height=36 xoffset=0 yoffset=16 xadvance=37 page=0 chnl=0 letter="f" +char id=103 x=219 y=196 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="g" +char id=104 x=93 y=320 width=41 height=36 xoffset=0 yoffset=16 xadvance=45 page=0 chnl=0 letter="h" +char id=105 x=320 y=179 width=21 height=36 xoffset=0 yoffset=16 xadvance=25 page=0 chnl=0 letter="i" +char id=106 x=219 y=119 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="j" +char id=107 x=178 y=198 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="k" +char id=108 x=182 y=78 width=36 height=36 xoffset=0 yoffset=16 xadvance=40 page=0 chnl=0 letter="l" +char id=109 x=0 y=243 width=46 height=37 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0 letter="m" +char id=110 x=93 y=282 width=42 height=37 xoffset=0 yoffset=15 xadvance=46 page=0 chnl=0 letter="n" +char id=111 x=143 y=41 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="o" +char id=112 x=219 y=233 width=37 height=36 xoffset=0 yoffset=16 xadvance=41 page=0 chnl=0 letter="p" +char id=113 x=138 y=156 width=40 height=41 xoffset=0 yoffset=11 xadvance=44 page=0 chnl=0 letter="q" +char id=114 x=180 y=115 width=38 height=36 xoffset=0 yoffset=16 xadvance=42 page=0 chnl=0 letter="r" +char id=115 x=270 y=0 width=35 height=36 xoffset=0 yoffset=16 xadvance=39 page=0 chnl=0 letter="s" +char id=116 x=257 y=313 width=36 height=36 xoffset=0 yoffset=16 xadvance=40 page=0 chnl=0 letter="t" +char id=117 x=58 y=41 width=42 height=36 xoffset=0 yoffset=16 xadvance=46 page=0 chnl=0 letter="u" +char id=118 x=152 y=0 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="v" +char id=119 x=0 y=41 width=57 height=36 xoffset=0 yoffset=16 xadvance=61 page=0 chnl=0 letter="w" +char id=120 x=136 y=201 width=41 height=37 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="x" +char id=121 x=141 y=78 width=40 height=36 xoffset=0 yoffset=16 xadvance=44 page=0 chnl=0 letter="y" +char id=122 x=232 y=0 width=37 height=36 xoffset=0 yoffset=16 xadvance=41 page=0 chnl=0 letter="z" +char id=123 x=343 y=0 width=12 height=40 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter="{" +char id=124 x=343 y=201 width=5 height=50 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=330 y=0 width=12 height=40 xoffset=0 yoffset=17 xadvance=16 page=0 chnl=0 letter="}" +char id=126 x=286 y=214 width=26 height=9 xoffset=0 yoffset=33 xadvance=30 page=0 chnl=0 letter="~" +char id=8226 x=321 y=117 width=12 height=11 xoffset=0 yoffset=33 xadvance=16 page=0 chnl=0 letter="•" +char id=169 x=135 y=321 width=31 height=31 xoffset=0 yoffset=19 xadvance=35 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=23 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=184 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.atlas b/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.atlas new file mode 100644 index 0000000..a815bee --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.atlas @@ -0,0 +1,350 @@ + +rainbow-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bg + rotate: false + xy: 359, 832 + size: 352, 191 + split: 148, 172, 93, 93 + pad: 0, 0, 0, 0 + orig: 352, 191 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 484, 575 + size: 111, 64 + split: 66, 29, 0, 0 + pad: 64, 27, 7, 12 + orig: 111, 64 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 685, 554 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +button-close-over + rotate: false + xy: 347, 146 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 484, 509 + size: 111, 64 + split: 66, 29, 0, 0 + pad: 64, 27, 7, 12 + orig: 111, 64 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 854, 885 + size: 111, 64 + split: 66, 29, 0, 0 + pad: 64, 27, 7, 12 + orig: 111, 64 + offset: 0, 0 + index: -1 +button-pressed-over + rotate: false + xy: 597, 575 + size: 111, 64 + split: 66, 29, 0, 0 + pad: 64, 27, 7, 12 + orig: 111, 64 + offset: 0, 0 + index: -1 +button-small + rotate: false + xy: 274, 1 + size: 47, 32 + split: 15, 15, 0, 0 + pad: 15, 15, 4, 4 + orig: 47, 32 + offset: 0, 0 + index: -1 +button-small-pressed + rotate: false + xy: 323, 1 + size: 47, 32 + split: 15, 15, 0, 0 + pad: 15, 15, 4, 4 + orig: 47, 32 + offset: 0, 0 + index: -1 +check-heart + rotate: false + xy: 442, 472 + size: 37, 36 + orig: 37, 36 + offset: 0, 0 + index: -1 +check-heart-over + rotate: false + xy: 929, 847 + size: 37, 36 + orig: 37, 36 + offset: 0, 0 + index: -1 +check-heart-pressed + rotate: false + xy: 481, 471 + size: 37, 36 + orig: 37, 36 + offset: 0, 0 + index: -1 +check-heart-pressed-over + rotate: false + xy: 520, 471 + size: 37, 36 + orig: 37, 36 + offset: 0, 0 + index: -1 +check-star + rotate: false + xy: 679, 788 + size: 47, 42 + orig: 47, 42 + offset: 0, 0 + index: -1 +check-star-over + rotate: false + xy: 679, 744 + size: 47, 42 + orig: 47, 42 + offset: 0, 0 + index: -1 +check-star-pressed + rotate: false + xy: 679, 700 + size: 47, 42 + orig: 47, 42 + offset: 0, 0 + index: -1 +check-star-pressed-over + rotate: false + xy: 679, 656 + size: 47, 42 + orig: 47, 42 + offset: 0, 0 + index: -1 +clear + rotate: false + xy: 355, 663 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +cloud-1 + rotate: false + xy: 1, 480 + size: 352, 184 + orig: 352, 184 + offset: 0, 0 + index: -1 +cloud-2 + rotate: false + xy: 359, 641 + size: 318, 189 + orig: 318, 189 + offset: 0, 0 + index: -1 +font-button-export + rotate: false + xy: 1, 133 + size: 344, 345 + orig: 344, 345 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 355, 510 + size: 127, 129 + orig: 127, 129 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 666 + size: 356, 357 + orig: 356, 357 + offset: 0, 0 + index: -1 +hover + rotate: false + xy: 713, 843 + size: 132, 55 + orig: 132, 55 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 973, 973 + size: 50, 50 + split: 9, 9, 9, 9 + orig: 50, 50 + offset: 0, 0 + index: -1 +progress-bar-before + rotate: false + xy: 421, 296 + size: 1, 71 + orig: 1, 71 + offset: 0, 0 + index: -1 +progress-bar-cloud + rotate: false + xy: 713, 900 + size: 139, 123 + orig: 139, 123 + offset: 0, 0 + index: -1 +progress-bar-cloud-back + rotate: false + xy: 1, 8 + size: 139, 123 + orig: 139, 123 + offset: 0, 0 + index: -1 +progress-bar-heart + rotate: false + xy: 274, 35 + size: 85, 34 + orig: 85, 34 + offset: 0, 0 + index: -1 +progress-bar-heart-back + rotate: false + xy: 355, 474 + size: 85, 34 + orig: 85, 34 + offset: 0, 0 + index: -1 +progress-bar-knob + rotate: false + xy: 854, 951 + size: 117, 72 + orig: 117, 72 + offset: 0, 0 + index: -1 +progress-bar-star + rotate: false + xy: 847, 849 + size: 80, 34 + orig: 80, 34 + offset: 0, 0 + index: -1 +progress-bar-star-back + rotate: false + xy: 347, 438 + size: 80, 34 + orig: 80, 34 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 973, 953 + size: 50, 18 + split: 11, 11, 0, 0 + pad: 0, 0, 0, 0 + orig: 50, 18 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 401, 219 + size: 18, 50 + split: 0, 0, 10, 10 + pad: 0, 0, 0, 0 + orig: 18, 50 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 597, 513 + size: 86, 60 + split: 28, 44, 0, 0 + pad: 28, 46, 7, 6 + orig: 86, 60 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 274, 71 + size: 86, 60 + split: 28, 44, 0, 0 + pad: 28, 46, 7, 6 + orig: 86, 60 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 1, 5 + size: 4, 1 + orig: 4, 1 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 347, 474 + size: 1, 4 + orig: 1, 4 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 347, 167 + size: 48, 48 + split: 6, 6, 6, 6 + pad: 8, 8, 8, 8 + orig: 48, 48 + offset: 0, 0 + index: -1 +title-box + rotate: false + xy: 347, 217 + size: 52, 52 + split: 18, 18, 18, 18 + pad: 18, 18, 4, 4 + orig: 52, 52 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 142, 1 + size: 130, 130 + orig: 130, 130 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 347, 369 + size: 73, 67 + orig: 73, 67 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 597, 510 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 347, 271 + size: 72, 96 + split: 25, 25, 40, 23 + pad: 5, 5, 41, 3 + orig: 72, 96 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.json b/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.json new file mode 100644 index 0000000..153e4a3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.json @@ -0,0 +1,303 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + button: { + file: font-button-export.fnt + } + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + cursor: { + r: 0 + g: 0.011111021 + b: 1 + a: 1 + } + selection: { + r: 0 + g: 0.72911096 + b: 1 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + selection: { + name: white + color: selection + } + cursor: { + name: white + color: cursor + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed-over + over: button-over + } + toggle: { + up: button + down: button-pressed-over + over: button-over + checked: button-pressed + checkedOver: button-pressed-over + } + close: { + up: button-close-over + down: button-close + } + small: { + up: button-small + down: button-small-pressed + } + small-toggle: { + up: button-small + down: button-small-pressed + checked: button-small-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-star-pressed + checkboxOff: check-star + checkboxOver: check-star-over + font: button + } + heart: { + checkboxOn: check-heart-pressed + checkboxOff: check-heart + checkboxOver: check-heart-over + font: button + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed-over + over: button-over + } + toggle: { + up: button + down: button-pressed-over + over: button-over + checked: button-pressed + checkedOver: button-pressed-over + } + small: { + up: button-small + down: button-small-pressed + } + small-toggle: { + up: button-small + down: button-small-pressed + checked: button-small-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: button + up: button + down: button-pressed-over + over: button-over + } + heart: { + imageUp: check-heart + imageDown: check-heart + imageOver: check-heart-over + imageChecked: check-heart-pressed + imageCheckedOver: check-heart-pressed-over + font: button + } + star: { + imageUp: check-star + imageDown: check-star + imageOver: check-star-over + imageChecked: check-star-pressed + imageCheckedOver: check-star-pressed-over + font: button + } + toggle: { + font: button + up: button + down: button-pressed-over + over: button-over + checked: button-pressed + checkedOver: button-pressed-over + } + small: { + font: font + fontColor: black + downFontColor: white + up: button-small + down: button-small-pressed + } + small-toggle: { + font: font + fontColor: black + downFontColor: white + checkedFontColor: white + up: button-small + down: button-small-pressed + checked: button-small-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + button: { + font: button + } + title: { + font: title + background: title-box + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: selection + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: clear + knobBefore: progress-bar-before + } + default-vertical: { + background: clear + } + heart: { + background: progress-bar-heart-back + knobBefore: progress-bar-heart + } + star: { + background: progress-bar-star-back + knobBefore: progress-bar-star + } + unicorn: { + background: clear + knob: progress-bar-knob + knobBefore: progress-bar-before + } + cloud: { + background: progress-bar-cloud-back + knobBefore: progress-bar-cloud + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-horizontal + vScrollKnob: scrollbar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: button + fontColor: white + background: select-box + scrollStyle: default + listStyle: default + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: clear + knob: progress-bar-knob + knobBefore: progress-bar-before + } + default-vertical: { + background: clear + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: button + up: button + down: button-pressed-over + over: button-over + } + toggle: { + font: button + up: button + down: button-pressed-over + over: button-over + checked: button-pressed + checkedOver: button-pressed-over + } + small: { + font: font + fontColor: black + downFontColor: white + up: button-small + down: button-small-pressed + } + small-toggle: { + font: font + fontColor: black + downFontColor: white + checkedFontColor: white + up: button-small + down: button-small-pressed + checked: button-small-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + cursor: cursor + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: hover + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad + knob: touchpad-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: white + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.png b/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.png new file mode 100644 index 0000000..ae0242e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rainbow/skin/rainbow-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/README.md b/src/main/resources/omni_power/gdx-skins/rusty-robot/README.md new file mode 100644 index 0000000..ccad633 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/README.md @@ -0,0 +1,22 @@ +# Rusty Robot UI + +``` +Rusty Robot UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Rusty Robot UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Steampunk(ish) GUI skin. + +![Rusty Robot](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/rusty-robot-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/preview.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/preview.png new file mode 100644 index 0000000..917f157 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button-pressed.9.png new file mode 100644 index 0000000..706b5f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button-pressed.png new file mode 100644 index 0000000..5cb3ea1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button.9.png new file mode 100644 index 0000000..5ed8d34 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button.png new file mode 100644 index 0000000..4775932 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/checkbox-pressed.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/checkbox-pressed.png new file mode 100644 index 0000000..3e4825b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/checkbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/checkbox.png new file mode 100644 index 0000000..471d90e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog1.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog1.png new file mode 100644 index 0000000..9f51019 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog2.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog2.png new file mode 100644 index 0000000..21e2de3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog3.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog3.png new file mode 100644 index 0000000..da795a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/cog3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-export.fnt new file mode 100644 index 0000000..07a3ef8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-export.fnt @@ -0,0 +1,710 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=112 scaleH=112 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=105 y=53 width=4 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=95 y=105 width=7 height=6 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=86 y=49 width=9 height=15 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=23 y=80 width=10 height=15 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=12 y=65 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=12 y=53 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=103 y=105 width=4 height=6 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=96 y=90 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=105 y=12 width=6 height=14 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=76 y=103 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=29 y=12 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=35 y=68 width=5 height=6 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=45 y=109 width=9 height=2 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="-" +char id=46 x=40 y=24 width=5 height=4 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=45 y=68 width=10 height=15 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=87 y=14 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=105 y=0 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=96 y=78 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=96 y=64 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=86 y=65 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=96 y=38 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=77 y=36 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=45 y=96 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=40 y=12 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=87 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=97 y=15 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=105 y=42 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=86 y=90 width=9 height=10 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=0 y=105 width=9 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=86 y=79 width=9 height=10 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=96 y=26 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=16 width=28 height=15 xoffset=0 yoffset=1 xadvance=29 page=0 chnl=0 letter="@" +char id=65 x=46 y=36 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=51 y=0 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=77 y=10 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=40 y=0 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=76 y=82 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=34 y=76 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=76 y=58 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=45 y=84 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=67 y=46 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="I" +char id=74 x=67 y=34 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=0 y=44 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="K" +char id=76 x=46 y=24 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=0 y=56 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=51 y=12 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=46 y=48 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=66 y=60 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=77 y=22 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Q" +char id=82 x=0 y=92 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=96 y=52 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=76 y=70 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=35 y=56 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=35 y=32 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=29 y=21 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="W" +char id=88 x=0 y=68 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="X" +char id=89 x=24 y=64 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=62 y=0 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=87 y=26 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=56 y=93 width=9 height=15 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=105 y=27 width=5 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=10 y=105 width=8 height=5 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=32 width=13 height=2 xoffset=0 yoffset=17 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=19 y=105 width=6 height=5 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=56 y=72 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=24 y=52 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=57 y=24 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=35 y=44 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=72 y=0 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=34 y=100 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=56 y=81 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=34 y=88 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="h" +char id=105 x=67 y=13 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="i" +char id=106 x=97 y=0 width=7 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=29 y=0 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="k" +char id=108 x=66 y=72 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="l" +char id=109 x=0 y=35 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=12 y=44 width=11 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=77 y=49 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=66 y=84 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=56 y=60 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=23 y=96 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=86 y=101 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=57 y=33 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="t" +char id=117 x=13 y=35 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=12 y=96 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=24 y=43 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=24 y=32 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=0 y=80 width=11 height=11 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=76 y=94 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=57 y=45 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=12 y=80 width=10 height=15 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=66 y=96 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=67 y=25 width=9 height=8 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=26 y=105 width=5 height=4 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=28 height=15 xoffset=0 yoffset=2 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=84 amount=-2 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-3 +kerning first=66 second=65 amount=-2 +kerning first=66 second=69 amount=-2 +kerning first=66 second=76 amount=-2 +kerning first=66 second=80 amount=-2 +kerning first=66 second=82 amount=-2 +kerning first=66 second=85 amount=-2 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-2 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-2 +kerning first=68 second=65 amount=-2 +kerning first=68 second=68 amount=-2 +kerning first=68 second=69 amount=-2 +kerning first=68 second=73 amount=-2 +kerning first=68 second=76 amount=-2 +kerning first=68 second=77 amount=-2 +kerning first=68 second=78 amount=-2 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-2 +kerning first=68 second=82 amount=-2 +kerning first=68 second=85 amount=-2 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-2 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-4 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-2 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-2 +kerning first=71 second=85 amount=-2 +kerning first=72 second=79 amount=-2 +kerning first=73 second=67 amount=-2 +kerning first=73 second=71 amount=-2 +kerning first=73 second=79 amount=-2 +kerning first=74 second=65 amount=-3 +kerning first=74 second=79 amount=-2 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-4 +kerning first=76 second=67 amount=-1 +kerning first=76 second=84 amount=-2 +kerning first=76 second=86 amount=-3 +kerning first=76 second=87 amount=-2 +kerning first=76 second=89 amount=-3 +kerning first=76 second=71 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=77 second=79 amount=-2 +kerning first=78 second=67 amount=-2 +kerning first=78 second=71 amount=-2 +kerning first=78 second=79 amount=-2 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-2 +kerning first=79 second=68 amount=-2 +kerning first=79 second=69 amount=-2 +kerning first=79 second=70 amount=-3 +kerning first=79 second=72 amount=-2 +kerning first=79 second=73 amount=-2 +kerning first=79 second=75 amount=-3 +kerning first=79 second=76 amount=-3 +kerning first=79 second=77 amount=-2 +kerning first=79 second=78 amount=-2 +kerning first=79 second=80 amount=-2 +kerning first=79 second=82 amount=-3 +kerning first=79 second=84 amount=-2 +kerning first=79 second=85 amount=-2 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-3 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-3 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-4 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-1 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-2 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=89 amount=-3 +kerning first=82 second=84 amount=-2 +kerning first=82 second=85 amount=-3 +kerning first=82 second=86 amount=-3 +kerning first=82 second=87 amount=-3 +kerning first=82 second=89 amount=-3 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-1 +kerning first=84 second=67 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=85 second=65 amount=-2 +kerning first=85 second=67 amount=-2 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-2 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-4 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-1 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-2 +kerning first=89 second=67 amount=-2 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=65 second=99 amount=-2 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-2 +kerning first=65 second=113 amount=-1 +kerning first=65 second=116 amount=-4 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-3 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-1 +kerning first=66 second=98 amount=-2 +kerning first=66 second=105 amount=-2 +kerning first=66 second=107 amount=-2 +kerning first=66 second=108 amount=-2 +kerning first=66 second=114 amount=-2 +kerning first=66 second=117 amount=-2 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-2 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-1 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-2 +kerning first=72 second=101 amount=-2 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-2 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-2 +kerning first=73 second=100 amount=-2 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-4 +kerning first=74 second=97 amount=-3 +kerning first=74 second=101 amount=-3 +kerning first=74 second=111 amount=-3 +kerning first=74 second=117 amount=-3 +kerning first=74 second=46 amount=-3 +kerning first=74 second=44 amount=-3 +kerning first=75 second=101 amount=-2 +kerning first=75 second=111 amount=-1 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-2 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-2 +kerning first=77 second=100 amount=-2 +kerning first=77 second=101 amount=-2 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-2 +kerning first=78 second=97 amount=-2 +kerning first=78 second=101 amount=-2 +kerning first=78 second=105 amount=-2 +kerning first=78 second=111 amount=-2 +kerning first=78 second=117 amount=-2 +kerning first=78 second=46 amount=-2 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-2 +kerning first=79 second=98 amount=-2 +kerning first=79 second=104 amount=-2 +kerning first=79 second=107 amount=-2 +kerning first=79 second=108 amount=-2 +kerning first=79 second=46 amount=-2 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-2 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-3 +kerning first=82 second=101 amount=-3 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-2 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-2 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=84 second=46 amount=-2 +kerning first=84 second=44 amount=-1 +kerning first=84 second=59 amount=-1 +kerning first=84 second=58 amount=-1 +kerning first=85 second=97 amount=-2 +kerning first=85 second=103 amount=-2 +kerning first=85 second=109 amount=-3 +kerning first=85 second=110 amount=-2 +kerning first=85 second=112 amount=-2 +kerning first=85 second=115 amount=-2 +kerning first=85 second=46 amount=-2 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-3 +kerning first=86 second=101 amount=-4 +kerning first=86 second=105 amount=-3 +kerning first=86 second=111 amount=-3 +kerning first=86 second=114 amount=-3 +kerning first=86 second=117 amount=-3 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-3 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-2 +kerning first=87 second=109 amount=-3 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-2 +kerning first=87 second=46 amount=-2 +kerning first=87 second=44 amount=-2 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-2 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-3 +kerning first=89 second=46 amount=-2 +kerning first=89 second=44 amount=-2 +kerning first=89 second=59 amount=-2 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-2 +kerning first=97 second=100 amount=-2 +kerning first=97 second=101 amount=-2 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-2 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-3 +kerning first=97 second=117 amount=-2 +kerning first=97 second=118 amount=-3 +kerning first=97 second=119 amount=-2 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-2 +kerning first=98 second=108 amount=-2 +kerning first=98 second=114 amount=-2 +kerning first=98 second=117 amount=-2 +kerning first=98 second=121 amount=-2 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-3 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-2 +kerning first=100 second=101 amount=-2 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-2 +kerning first=100 second=117 amount=-2 +kerning first=100 second=118 amount=-2 +kerning first=100 second=119 amount=-2 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-2 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-2 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-2 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-2 +kerning first=102 second=44 amount=-2 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-2 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-2 +kerning first=104 second=100 amount=-2 +kerning first=104 second=101 amount=-2 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-2 +kerning first=104 second=116 amount=-3 +kerning first=104 second=117 amount=-2 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-2 +kerning first=105 second=100 amount=-2 +kerning first=105 second=101 amount=-2 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-2 +kerning first=105 second=116 amount=-4 +kerning first=105 second=117 amount=-2 +kerning first=105 second=118 amount=-4 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-2 +kerning first=108 second=100 amount=-2 +kerning first=108 second=101 amount=-2 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-2 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-2 +kerning first=108 second=118 amount=-4 +kerning first=108 second=119 amount=-3 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-2 +kerning first=109 second=100 amount=-2 +kerning first=109 second=101 amount=-2 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-2 +kerning first=109 second=112 amount=-2 +kerning first=109 second=116 amount=-3 +kerning first=109 second=117 amount=-2 +kerning first=109 second=118 amount=-2 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-2 +kerning first=110 second=100 amount=-2 +kerning first=110 second=101 amount=-2 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-2 +kerning first=110 second=116 amount=-3 +kerning first=110 second=117 amount=-2 +kerning first=110 second=118 amount=-3 +kerning first=110 second=119 amount=-3 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-2 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-3 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-2 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-2 +kerning first=112 second=105 amount=-2 +kerning first=112 second=108 amount=-2 +kerning first=112 second=112 amount=-2 +kerning first=112 second=117 amount=-2 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=113 second=117 amount=-2 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-2 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-3 +kerning first=114 second=107 amount=-4 +kerning first=114 second=108 amount=-4 +kerning first=114 second=109 amount=-3 +kerning first=114 second=110 amount=-3 +kerning first=114 second=111 amount=-2 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-2 +kerning first=114 second=116 amount=-2 +kerning first=114 second=118 amount=-2 +kerning first=114 second=121 amount=-2 +kerning first=114 second=46 amount=-4 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-2 +kerning first=117 second=100 amount=-2 +kerning first=117 second=101 amount=-2 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-2 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-2 +kerning first=117 second=118 amount=-2 +kerning first=117 second=119 amount=-2 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-3 +kerning first=118 second=99 amount=-2 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-2 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-4 +kerning first=118 second=44 amount=-4 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-2 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-2 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-4 +kerning first=121 second=44 amount=-4 +kerning first=121 second=97 amount=-2 +kerning first=121 second=99 amount=-3 +kerning first=121 second=100 amount=-3 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-2 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-2 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-2 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-2 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-2 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-2 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-2 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-2 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-3 +kerning first=101 second=98 amount=-3 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-2 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-2 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-2 +kerning first=79 second=112 amount=-2 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-export.png new file mode 100644 index 0000000..6c8723e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title-export.fnt new file mode 100644 index 0000000..a87c3bb --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title-export.fnt @@ -0,0 +1,710 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=62 base=62 scaleW=410 scaleH=410 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=375 y=127 width=16 height=47 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="!" +char id=34 x=174 y=387 width=24 height=22 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter=""" +char id=35 x=54 y=145 width=48 height=48 xoffset=0 yoffset=14 xadvance=49 page=0 chnl=0 letter="#" +char id=36 x=106 y=85 width=43 height=56 xoffset=0 yoffset=10 xadvance=44 page=0 chnl=0 letter="$" +char id=37 x=0 y=96 width=57 height=48 xoffset=0 yoffset=16 xadvance=58 page=0 chnl=0 letter="%" +char id=38 x=101 y=243 width=45 height=48 xoffset=0 yoffset=14 xadvance=46 page=0 chnl=0 letter="&" +char id=39 x=364 y=104 width=16 height=22 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="'" +char id=40 x=346 y=38 width=27 height=56 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter="(" +char id=41 x=345 y=280 width=27 height=56 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter=")" +char id=42 x=344 y=216 width=27 height=26 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="*" +char id=43 x=310 y=209 width=33 height=33 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="+" +char id=44 x=345 y=98 width=18 height=22 xoffset=0 yoffset=46 xadvance=19 page=0 chnl=0 letter="," +char id=45 x=45 y=393 width=33 height=15 xoffset=0 yoffset=31 xadvance=34 page=0 chnl=0 letter="-" +char id=46 x=79 y=393 width=16 height=16 xoffset=0 yoffset=46 xadvance=17 page=0 chnl=0 letter="." +char id=47 x=232 y=183 width=39 height=48 xoffset=0 yoffset=15 xadvance=40 page=0 chnl=0 letter="/" +char id=48 x=190 y=239 width=41 height=49 xoffset=0 yoffset=14 xadvance=42 page=0 chnl=0 letter="0" +char id=49 x=374 y=55 width=20 height=48 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="1" +char id=50 x=272 y=49 width=36 height=48 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="2" +char id=51 x=190 y=289 width=40 height=48 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="3" +char id=52 x=190 y=190 width=41 height=48 xoffset=0 yoffset=14 xadvance=42 page=0 chnl=0 letter="4" +char id=53 x=190 y=338 width=40 height=48 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="5" +char id=54 x=231 y=339 width=39 height=49 xoffset=0 yoffset=14 xadvance=40 page=0 chnl=0 letter="6" +char id=55 x=271 y=281 width=37 height=47 xoffset=0 yoffset=15 xadvance=38 page=0 chnl=0 letter="7" +char id=56 x=232 y=232 width=38 height=49 xoffset=0 yoffset=14 xadvance=39 page=0 chnl=0 letter="8" +char id=57 x=231 y=289 width=39 height=49 xoffset=0 yoffset=14 xadvance=40 page=0 chnl=0 letter="9" +char id=58 x=392 y=104 width=16 height=36 xoffset=0 yoffset=26 xadvance=17 page=0 chnl=0 letter=":" +char id=59 x=374 y=233 width=18 height=42 xoffset=0 yoffset=26 xadvance=19 page=0 chnl=0 letter=";" +char id=60 x=344 y=135 width=30 height=43 xoffset=0 yoffset=22 xadvance=31 page=0 chnl=0 letter="<" +char id=61 x=234 y=49 width=34 height=23 xoffset=0 yoffset=27 xadvance=35 page=0 chnl=0 letter="=" +char id=62 x=344 y=356 width=29 height=43 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter=">" +char id=63 x=309 y=48 width=36 height=49 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="?" +char id=64 x=0 y=145 width=53 height=49 xoffset=0 yoffset=14 xadvance=54 page=0 chnl=0 letter="@" +char id=65 x=0 y=343 width=49 height=48 xoffset=0 yoffset=14 xadvance=50 page=0 chnl=0 letter="A" +char id=66 x=147 y=281 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="B" +char id=67 x=100 y=330 width=46 height=49 xoffset=0 yoffset=14 xadvance=47 page=0 chnl=0 letter="C" +char id=68 x=58 y=96 width=47 height=47 xoffset=0 yoffset=15 xadvance=48 page=0 chnl=0 letter="D" +char id=69 x=233 y=122 width=38 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="E" +char id=70 x=273 y=0 width=36 height=47 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="F" +char id=71 x=103 y=144 width=45 height=49 xoffset=0 yoffset=14 xadvance=46 page=0 chnl=0 letter="G" +char id=72 x=147 y=329 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="H" +char id=73 x=394 y=201 width=15 height=47 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 letter="I" +char id=74 x=271 y=232 width=38 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="J" +char id=75 x=147 y=233 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="K" +char id=76 x=272 y=174 width=36 height=47 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="L" +char id=77 x=0 y=48 width=58 height=47 xoffset=0 yoffset=15 xadvance=59 page=0 chnl=0 letter="M" +char id=78 x=53 y=195 width=48 height=47 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="N" +char id=79 x=0 y=245 width=50 height=49 xoffset=0 yoffset=14 xadvance=51 page=0 chnl=0 letter="O" +char id=80 x=193 y=37 width=40 height=47 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="P" +char id=81 x=0 y=195 width=52 height=49 xoffset=0 yoffset=14 xadvance=53 page=0 chnl=0 letter="Q" +char id=82 x=107 y=0 width=43 height=47 xoffset=0 yoffset=15 xadvance=44 page=0 chnl=0 letter="R" +char id=83 x=150 y=48 width=42 height=49 xoffset=0 yoffset=14 xadvance=43 page=0 chnl=0 letter="S" +char id=84 x=149 y=142 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="T" +char id=85 x=102 y=194 width=44 height=48 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="U" +char id=86 x=51 y=282 width=49 height=47 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=61 height=47 xoffset=0 yoffset=15 xadvance=62 page=0 chnl=0 letter="W" +char id=88 x=0 y=295 width=50 height=47 xoffset=0 yoffset=15 xadvance=51 page=0 chnl=0 letter="X" +char id=89 x=62 y=0 width=44 height=47 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="Y" +char id=90 x=192 y=135 width=40 height=47 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="Z" +char id=91 x=374 y=335 width=19 height=53 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="[" +char id=92 x=234 y=0 width=38 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="\" +char id=93 x=374 y=179 width=19 height=53 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="]" +char id=94 x=138 y=380 width=35 height=26 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="^" +char id=95 x=0 y=392 width=44 height=14 xoffset=0 yoffset=54 xadvance=45 page=0 chnl=0 letter="_" +char id=96 x=223 y=389 width=23 height=16 xoffset=0 yoffset=5 xadvance=24 page=0 chnl=0 letter="`" +char id=97 x=101 y=292 width=42 height=37 xoffset=0 yoffset=25 xadvance=43 page=0 chnl=0 letter="a" +char id=98 x=309 y=98 width=35 height=36 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="b" +char id=99 x=272 y=98 width=36 height=38 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="c" +char id=100 x=192 y=98 width=40 height=36 xoffset=0 yoffset=26 xadvance=41 page=0 chnl=0 letter="d" +char id=101 x=310 y=243 width=32 height=36 xoffset=0 yoffset=26 xadvance=33 page=0 chnl=0 letter="e" +char id=102 x=343 y=243 width=30 height=36 xoffset=0 yoffset=26 xadvance=31 page=0 chnl=0 letter="f" +char id=103 x=271 y=329 width=37 height=38 xoffset=0 yoffset=25 xadvance=38 page=0 chnl=0 letter="g" +char id=104 x=309 y=135 width=34 height=36 xoffset=0 yoffset=26 xadvance=35 page=0 chnl=0 letter="h" +char id=105 x=394 y=335 width=15 height=36 xoffset=0 yoffset=26 xadvance=16 page=0 chnl=0 letter="i" +char id=106 x=342 y=0 width=30 height=37 xoffset=0 yoffset=26 xadvance=31 page=0 chnl=0 letter="j" +char id=107 x=272 y=137 width=36 height=36 xoffset=0 yoffset=26 xadvance=37 page=0 chnl=0 letter="k" +char id=108 x=344 y=179 width=29 height=36 xoffset=0 yoffset=26 xadvance=30 page=0 chnl=0 letter="l" +char id=109 x=59 y=48 width=47 height=36 xoffset=0 yoffset=26 xadvance=48 page=0 chnl=0 letter="m" +char id=110 x=233 y=85 width=38 height=36 xoffset=0 yoffset=26 xadvance=39 page=0 chnl=0 letter="n" +char id=111 x=150 y=98 width=41 height=38 xoffset=0 yoffset=25 xadvance=42 page=0 chnl=0 letter="o" +char id=112 x=309 y=319 width=35 height=36 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="p" +char id=113 x=147 y=194 width=42 height=38 xoffset=0 yoffset=25 xadvance=43 page=0 chnl=0 letter="q" +char id=114 x=271 y=368 width=36 height=36 xoffset=0 yoffset=26 xadvance=37 page=0 chnl=0 letter="r" +char id=115 x=308 y=368 width=35 height=38 xoffset=0 yoffset=25 xadvance=36 page=0 chnl=0 letter="s" +char id=116 x=309 y=172 width=34 height=36 xoffset=0 yoffset=26 xadvance=35 page=0 chnl=0 letter="t" +char id=117 x=309 y=281 width=35 height=37 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="u" +char id=118 x=151 y=0 width=41 height=36 xoffset=0 yoffset=26 xadvance=42 page=0 chnl=0 letter="v" +char id=119 x=51 y=245 width=49 height=36 xoffset=0 yoffset=26 xadvance=50 page=0 chnl=0 letter="w" +char id=120 x=107 y=48 width=42 height=36 xoffset=0 yoffset=26 xadvance=43 page=0 chnl=0 letter="x" +char id=121 x=193 y=0 width=40 height=36 xoffset=0 yoffset=26 xadvance=41 page=0 chnl=0 letter="y" +char id=122 x=310 y=0 width=31 height=36 xoffset=0 yoffset=26 xadvance=32 page=0 chnl=0 letter="z" +char id=123 x=373 y=280 width=23 height=54 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="{" +char id=124 x=394 y=141 width=15 height=59 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 letter="|" +char id=125 x=374 y=0 width=23 height=54 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="}" +char id=126 x=100 y=389 width=37 height=20 xoffset=0 yoffset=33 xadvance=38 page=0 chnl=0 letter="~" +char id=8226 x=199 y=387 width=23 height=22 xoffset=0 yoffset=25 xadvance=24 page=0 chnl=0 letter="•" +char id=169 x=50 y=343 width=49 height=49 xoffset=0 yoffset=14 xadvance=50 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=25 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=200 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-13 +kerning first=65 second=67 amount=-7 +kerning first=65 second=71 amount=-6 +kerning first=65 second=79 amount=-7 +kerning first=65 second=81 amount=-7 +kerning first=65 second=84 amount=-15 +kerning first=65 second=85 amount=-5 +kerning first=65 second=86 amount=-16 +kerning first=65 second=87 amount=-13 +kerning first=65 second=89 amount=-15 +kerning first=66 second=65 amount=-3 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-6 +kerning first=66 second=87 amount=-5 +kerning first=66 second=89 amount=-5 +kerning first=67 second=65 amount=-3 +kerning first=67 second=79 amount=-4 +kerning first=67 second=82 amount=-2 +kerning first=68 second=65 amount=-7 +kerning first=68 second=68 amount=-7 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-7 +kerning first=68 second=78 amount=-7 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-7 +kerning first=68 second=87 amount=-5 +kerning first=68 second=89 amount=-6 +kerning first=69 second=67 amount=-3 +kerning first=69 second=79 amount=-3 +kerning first=70 second=65 amount=-15 +kerning first=70 second=67 amount=-4 +kerning first=70 second=71 amount=-4 +kerning first=70 second=79 amount=-4 +kerning first=70 second=46 amount=-17 +kerning first=70 second=44 amount=-19 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-5 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-3 +kerning first=76 second=39 amount=-17 +kerning first=76 second=67 amount=-3 +kerning first=76 second=84 amount=-15 +kerning first=76 second=86 amount=-13 +kerning first=76 second=87 amount=-11 +kerning first=76 second=89 amount=-15 +kerning first=76 second=71 amount=-3 +kerning first=76 second=79 amount=-3 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-7 +kerning first=77 second=79 amount=-7 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-7 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-7 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-7 +kerning first=79 second=78 amount=-7 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-4 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-7 +kerning first=79 second=87 amount=-5 +kerning first=79 second=88 amount=-8 +kerning first=79 second=89 amount=-6 +kerning first=80 second=65 amount=-12 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-2 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-4 +kerning first=80 second=46 amount=-17 +kerning first=80 second=44 amount=-19 +kerning first=80 second=59 amount=-3 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-3 +kerning first=82 second=67 amount=-3 +kerning first=82 second=71 amount=-3 +kerning first=82 second=89 amount=-5 +kerning first=82 second=84 amount=-3 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-6 +kerning first=82 second=87 amount=-5 +kerning first=82 second=89 amount=-5 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-5 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-14 +kerning first=84 second=67 amount=-4 +kerning first=84 second=79 amount=-4 +kerning first=85 second=65 amount=-5 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-2 +kerning first=86 second=65 amount=-16 +kerning first=86 second=67 amount=-6 +kerning first=86 second=71 amount=-6 +kerning first=86 second=79 amount=-6 +kerning first=86 second=83 amount=-6 +kerning first=87 second=65 amount=-13 +kerning first=87 second=67 amount=-5 +kerning first=87 second=71 amount=-4 +kerning first=87 second=79 amount=-5 +kerning first=89 second=65 amount=-15 +kerning first=89 second=67 amount=-6 +kerning first=89 second=79 amount=-6 +kerning first=89 second=83 amount=-6 +kerning first=90 second=79 amount=-3 +kerning first=65 second=99 amount=-4 +kerning first=65 second=100 amount=-8 +kerning first=65 second=101 amount=-1 +kerning first=65 second=103 amount=-5 +kerning first=65 second=111 amount=-5 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-5 +kerning first=65 second=116 amount=-10 +kerning first=65 second=117 amount=-3 +kerning first=65 second=118 amount=-12 +kerning first=65 second=119 amount=-10 +kerning first=65 second=121 amount=-14 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-4 +kerning first=66 second=46 amount=-2 +kerning first=66 second=44 amount=-3 +kerning first=67 second=97 amount=-3 +kerning first=67 second=114 amount=-2 +kerning first=67 second=46 amount=-2 +kerning first=67 second=44 amount=-3 +kerning first=68 second=97 amount=-7 +kerning first=68 second=46 amount=-4 +kerning first=68 second=44 amount=-6 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-8 +kerning first=70 second=97 amount=-13 +kerning first=70 second=101 amount=-7 +kerning first=70 second=105 amount=-7 +kerning first=70 second=111 amount=-7 +kerning first=70 second=114 amount=-7 +kerning first=70 second=116 amount=-7 +kerning first=70 second=117 amount=-7 +kerning first=70 second=121 amount=-10 +kerning first=70 second=46 amount=-17 +kerning first=70 second=44 amount=-19 +kerning first=70 second=59 amount=-9 +kerning first=70 second=58 amount=-7 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-2 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-2 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-5 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-3 +kerning first=74 second=44 amount=-5 +kerning first=75 second=101 amount=-1 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-14 +kerning first=77 second=97 amount=-7 +kerning first=77 second=99 amount=-7 +kerning first=77 second=100 amount=-8 +kerning first=77 second=101 amount=-7 +kerning first=77 second=111 amount=-7 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-7 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-4 +kerning first=79 second=44 amount=-6 +kerning first=80 second=97 amount=-11 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-4 +kerning first=82 second=100 amount=-4 +kerning first=82 second=101 amount=-1 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-3 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=83 second=44 amount=-3 +kerning first=84 second=97 amount=-13 +kerning first=84 second=99 amount=-14 +kerning first=84 second=101 amount=-14 +kerning first=84 second=105 amount=-14 +kerning first=84 second=111 amount=-14 +kerning first=84 second=114 amount=-14 +kerning first=84 second=115 amount=-13 +kerning first=84 second=117 amount=-14 +kerning first=84 second=119 amount=-14 +kerning first=84 second=121 amount=-15 +kerning first=84 second=46 amount=-14 +kerning first=84 second=44 amount=-15 +kerning first=84 second=59 amount=-16 +kerning first=84 second=58 amount=-14 +kerning first=85 second=97 amount=-5 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-2 +kerning first=85 second=46 amount=-3 +kerning first=85 second=44 amount=-5 +kerning first=86 second=97 amount=-15 +kerning first=86 second=101 amount=-6 +kerning first=86 second=105 amount=-6 +kerning first=86 second=111 amount=-9 +kerning first=86 second=114 amount=-6 +kerning first=86 second=117 amount=-6 +kerning first=86 second=46 amount=-14 +kerning first=86 second=44 amount=-16 +kerning first=86 second=59 amount=-8 +kerning first=86 second=58 amount=-6 +kerning first=87 second=100 amount=-5 +kerning first=87 second=105 amount=-4 +kerning first=87 second=109 amount=-4 +kerning first=87 second=114 amount=-4 +kerning first=87 second=116 amount=-4 +kerning first=87 second=117 amount=-4 +kerning first=87 second=121 amount=-5 +kerning first=87 second=46 amount=-11 +kerning first=87 second=44 amount=-13 +kerning first=87 second=59 amount=-6 +kerning first=87 second=58 amount=-4 +kerning first=88 second=97 amount=-2 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-7 +kerning first=88 second=117 amount=-5 +kerning first=88 second=121 amount=-13 +kerning first=89 second=100 amount=-7 +kerning first=89 second=101 amount=-6 +kerning first=89 second=105 amount=-6 +kerning first=89 second=112 amount=-6 +kerning first=89 second=117 amount=-6 +kerning first=89 second=118 amount=-6 +kerning first=89 second=46 amount=-15 +kerning first=89 second=44 amount=-16 +kerning first=89 second=59 amount=-8 +kerning first=89 second=58 amount=-6 +kerning first=97 second=99 amount=-5 +kerning first=97 second=100 amount=-9 +kerning first=97 second=101 amount=-2 +kerning first=97 second=103 amount=-6 +kerning first=97 second=112 amount=-2 +kerning first=97 second=102 amount=-2 +kerning first=97 second=116 amount=-11 +kerning first=97 second=117 amount=-4 +kerning first=97 second=118 amount=-13 +kerning first=97 second=119 amount=-11 +kerning first=97 second=121 amount=-15 +kerning first=97 second=112 amount=-2 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-5 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-4 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-2 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-4 +kerning first=100 second=119 amount=-4 +kerning first=100 second=121 amount=-6 +kerning first=100 second=46 amount=-2 +kerning first=100 second=44 amount=-4 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-2 +kerning first=101 second=110 amount=-2 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-2 +kerning first=101 second=121 amount=-3 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-9 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-6 +kerning first=102 second=44 amount=-8 +kerning first=103 second=97 amount=-3 +kerning first=103 second=101 amount=-2 +kerning first=103 second=104 amount=-2 +kerning first=103 second=108 amount=-2 +kerning first=103 second=111 amount=-2 +kerning first=103 second=103 amount=-2 +kerning first=103 second=46 amount=-2 +kerning first=103 second=44 amount=-3 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-2 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-2 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-2 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-3 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=106 second=44 amount=-3 +kerning first=107 second=97 amount=-2 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-3 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-3 +kerning first=107 second=111 amount=-3 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-2 +kerning first=108 second=100 amount=-8 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-3 +kerning first=108 second=111 amount=-3 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=108 second=118 amount=-9 +kerning first=108 second=119 amount=-8 +kerning first=108 second=121 amount=-14 +kerning first=109 second=97 amount=-5 +kerning first=109 second=99 amount=-5 +kerning first=109 second=100 amount=-3 +kerning first=109 second=101 amount=-2 +kerning first=109 second=103 amount=-5 +kerning first=109 second=110 amount=-2 +kerning first=109 second=111 amount=-5 +kerning first=109 second=112 amount=-2 +kerning first=109 second=116 amount=-2 +kerning first=109 second=117 amount=-2 +kerning first=109 second=118 amount=-2 +kerning first=109 second=121 amount=-3 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-2 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-5 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-4 +kerning first=111 second=110 amount=-4 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-4 +kerning first=111 second=119 amount=-4 +kerning first=111 second=120 amount=-7 +kerning first=111 second=121 amount=-6 +kerning first=111 second=46 amount=-3 +kerning first=111 second=44 amount=-5 +kerning first=112 second=97 amount=-8 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-6 +kerning first=112 second=44 amount=-8 +kerning first=113 second=117 amount=-2 +kerning first=116 second=46 amount=-11 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-5 +kerning first=114 second=101 amount=-1 +kerning first=114 second=103 amount=-2 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-4 +kerning first=114 second=110 amount=-4 +kerning first=114 second=111 amount=-2 +kerning first=114 second=113 amount=-1 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-3 +kerning first=114 second=118 amount=-4 +kerning first=114 second=121 amount=-6 +kerning first=114 second=46 amount=-1 +kerning first=114 second=44 amount=-2 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-2 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-2 +kerning first=115 second=44 amount=-3 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-11 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-2 +kerning first=116 second=46 amount=-11 +kerning first=116 second=44 amount=-12 +kerning first=117 second=97 amount=-3 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-2 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-2 +kerning first=118 second=97 amount=-12 +kerning first=118 second=98 amount=-2 +kerning first=118 second=99 amount=-5 +kerning first=118 second=100 amount=-3 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-6 +kerning first=118 second=111 amount=-5 +kerning first=118 second=118 amount=-2 +kerning first=118 second=121 amount=-3 +kerning first=118 second=46 amount=-10 +kerning first=118 second=44 amount=-12 +kerning first=119 second=97 amount=-10 +kerning first=119 second=120 amount=-3 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-5 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-4 +kerning first=119 second=46 amount=-8 +kerning first=119 second=44 amount=-10 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=120 second=111 amount=-6 +kerning first=121 second=46 amount=-13 +kerning first=121 second=44 amount=-14 +kerning first=121 second=97 amount=-12 +kerning first=121 second=99 amount=-6 +kerning first=121 second=100 amount=-3 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-6 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-14 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-2 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-3 +kerning first=102 second=103 amount=-3 +kerning first=118 second=119 amount=-2 +kerning first=120 second=121 amount=-3 +kerning first=121 second=122 amount=-2 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-2 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-5 +kerning first=89 second=90 amount=-3 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-3 +kerning first=116 second=111 amount=-2 +kerning first=87 second=104 amount=-4 +kerning first=107 second=110 amount=-2 +kerning first=119 second=115 amount=-4 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-4 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-2 +kerning first=67 second=68 amount=-4 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-11 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-3 +kerning first=116 second=115 amount=-3 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-3 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-2 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-4 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-2 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-2 +kerning first=111 second=97 amount=-5 +kerning first=68 second=88 amount=-8 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-3 +kerning first=97 second=120 amount=-3 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-4 +kerning first=107 second=108 amount=-2 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-2 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-3 diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title-export.png new file mode 100644 index 0000000..b404e51 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title.png new file mode 100644 index 0000000..c8b21c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font.png new file mode 100644 index 0000000..92a8093 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/label-bg.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/label-bg.9.png new file mode 100644 index 0000000..a6e2059 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/label-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/label-bg.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/label-bg.png new file mode 100644 index 0000000..b41ccd6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/label-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/list.9.png new file mode 100644 index 0000000..7dbd788 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/list.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/list.png new file mode 100644 index 0000000..8e6cb95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter-front.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter-front.png new file mode 100644 index 0000000..3300508 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter-front.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter-needle.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter-needle.png new file mode 100644 index 0000000..58791a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter-needle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter.png new file mode 100644 index 0000000..4996a02 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/meter.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/minus.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/minus.png new file mode 100644 index 0000000..9f73404 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/plus.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/plus.png new file mode 100644 index 0000000..45b54bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-horizontal.9.png new file mode 100644 index 0000000..95ec559 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..72077d8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-knob-horizontal.png new file mode 100644 index 0000000..9c15884 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-knob-vertical.png new file mode 100644 index 0000000..02515e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-vertical.9.png new file mode 100644 index 0000000..ab6d29c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-vertical.png new file mode 100644 index 0000000..ac27b30 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/radio-pressed.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/radio-pressed.png new file mode 100644 index 0000000..915f5ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/radio-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/radio.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/radio.png new file mode 100644 index 0000000..fcf7e51 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/robot.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/robot.png new file mode 100644 index 0000000..976ca13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/robot.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-horizontal.9.png new file mode 100644 index 0000000..62c86eb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-horizontal.png new file mode 100644 index 0000000..73f5395 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-knob-horizontal.png new file mode 100644 index 0000000..8e5e70b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-knob-vertical.png new file mode 100644 index 0000000..483cbac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-vertical.9.png new file mode 100644 index 0000000..a3a0a8a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-vertical.png new file mode 100644 index 0000000..1703789 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/scrollbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/select-box.9.png new file mode 100644 index 0000000..b8285c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/select-box.png new file mode 100644 index 0000000..86ec851 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-horizontal.png new file mode 100644 index 0000000..d2a3a18 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-knob-horizontal.png new file mode 100644 index 0000000..9c3a50a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-knob-vertical.png new file mode 100644 index 0000000..cfc080a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-vertical.png new file mode 100644 index 0000000..73f7229 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-horizontal.9.png new file mode 100644 index 0000000..f5d61e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-horizontal.png new file mode 100644 index 0000000..f677523 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-vertical.9.png new file mode 100644 index 0000000..541a9db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-vertical.png new file mode 100644 index 0000000..03dfdec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/text-field.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/text-field.9.png new file mode 100644 index 0000000..f7accbd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/text-field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/text-field.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/text-field.png new file mode 100644 index 0000000..fc341f7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/text-field.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/white.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/window.9.png new file mode 100644 index 0000000..7c4be5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/window.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/window.png new file mode 100644 index 0000000..9f005c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/font-export.fnt new file mode 100644 index 0000000..07a3ef8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/font-export.fnt @@ -0,0 +1,710 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=112 scaleH=112 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=105 y=53 width=4 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=95 y=105 width=7 height=6 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter=""" +char id=35 x=86 y=49 width=9 height=15 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=23 y=80 width=10 height=15 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=12 y=65 width=11 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=12 y=53 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=103 y=105 width=4 height=6 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=96 y=90 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=105 y=12 width=6 height=14 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=76 y=103 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="*" +char id=43 x=29 y=12 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=35 y=68 width=5 height=6 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=45 y=109 width=9 height=2 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="-" +char id=46 x=40 y=24 width=5 height=4 xoffset=0 yoffset=11 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=45 y=68 width=10 height=15 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=87 y=14 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=105 y=0 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=96 y=78 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=96 y=64 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=86 y=65 width=9 height=13 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=96 y=38 width=8 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=77 y=36 width=9 height=12 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=45 y=96 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=40 y=12 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=87 y=0 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=97 y=15 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=105 y=42 width=5 height=10 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=86 y=90 width=9 height=10 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=0 y=105 width=9 height=5 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=86 y=79 width=9 height=10 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=96 y=26 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=16 width=28 height=15 xoffset=0 yoffset=1 xadvance=29 page=0 chnl=0 letter="@" +char id=65 x=46 y=36 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=51 y=0 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=77 y=10 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=40 y=0 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=76 y=82 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=34 y=76 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=76 y=58 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=45 y=84 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=67 y=46 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="I" +char id=74 x=67 y=34 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=0 y=44 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="K" +char id=76 x=46 y=24 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=0 y=56 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=51 y=12 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=46 y=48 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=66 y=60 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="P" +char id=81 x=77 y=22 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Q" +char id=82 x=0 y=92 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=96 y=52 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=76 y=70 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=35 y=56 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=35 y=32 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=29 y=21 width=10 height=10 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="W" +char id=88 x=0 y=68 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="X" +char id=89 x=24 y=64 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=62 y=0 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=87 y=26 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="[" +char id=92 x=56 y=93 width=9 height=15 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=105 y=27 width=5 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=10 y=105 width=8 height=5 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=32 width=13 height=2 xoffset=0 yoffset=17 xadvance=14 page=0 chnl=0 letter="_" +char id=96 x=19 y=105 width=6 height=5 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=56 y=72 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=24 y=52 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=57 y=24 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=35 y=44 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=72 y=0 width=9 height=9 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=34 y=100 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="f" +char id=103 x=56 y=81 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=34 y=88 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="h" +char id=105 x=67 y=13 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="i" +char id=106 x=97 y=0 width=7 height=14 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=29 y=0 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="k" +char id=108 x=66 y=72 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="l" +char id=109 x=0 y=35 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=12 y=44 width=11 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=77 y=49 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=66 y=84 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=56 y=60 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=23 y=96 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="r" +char id=115 x=86 y=101 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=57 y=33 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="t" +char id=117 x=13 y=35 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=12 y=96 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=24 y=43 width=10 height=8 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=24 y=32 width=10 height=10 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=0 y=80 width=11 height=11 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=76 y=94 width=9 height=8 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=57 y=45 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=12 y=80 width=10 height=15 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=66 y=96 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=67 y=25 width=9 height=8 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=26 y=105 width=5 height=4 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=28 height=15 xoffset=0 yoffset=2 xadvance=29 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-3 +kerning first=65 second=67 amount=-2 +kerning first=65 second=71 amount=-2 +kerning first=65 second=79 amount=-2 +kerning first=65 second=81 amount=-2 +kerning first=65 second=84 amount=-2 +kerning first=65 second=85 amount=-2 +kerning first=65 second=86 amount=-4 +kerning first=65 second=87 amount=-3 +kerning first=65 second=89 amount=-3 +kerning first=66 second=65 amount=-2 +kerning first=66 second=69 amount=-2 +kerning first=66 second=76 amount=-2 +kerning first=66 second=80 amount=-2 +kerning first=66 second=82 amount=-2 +kerning first=66 second=85 amount=-2 +kerning first=66 second=86 amount=-2 +kerning first=66 second=87 amount=-2 +kerning first=66 second=89 amount=-2 +kerning first=67 second=65 amount=-2 +kerning first=67 second=79 amount=-1 +kerning first=67 second=82 amount=-2 +kerning first=68 second=65 amount=-2 +kerning first=68 second=68 amount=-2 +kerning first=68 second=69 amount=-2 +kerning first=68 second=73 amount=-2 +kerning first=68 second=76 amount=-2 +kerning first=68 second=77 amount=-2 +kerning first=68 second=78 amount=-2 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-2 +kerning first=68 second=82 amount=-2 +kerning first=68 second=85 amount=-2 +kerning first=68 second=86 amount=-2 +kerning first=68 second=87 amount=-2 +kerning first=68 second=89 amount=-2 +kerning first=69 second=67 amount=-1 +kerning first=69 second=79 amount=-1 +kerning first=70 second=65 amount=-4 +kerning first=70 second=67 amount=-1 +kerning first=70 second=71 amount=-1 +kerning first=70 second=79 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=71 second=69 amount=-2 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-2 +kerning first=71 second=85 amount=-2 +kerning first=72 second=79 amount=-2 +kerning first=73 second=67 amount=-2 +kerning first=73 second=71 amount=-2 +kerning first=73 second=79 amount=-2 +kerning first=74 second=65 amount=-3 +kerning first=74 second=79 amount=-2 +kerning first=75 second=79 amount=-2 +kerning first=76 second=39 amount=-4 +kerning first=76 second=67 amount=-1 +kerning first=76 second=84 amount=-2 +kerning first=76 second=86 amount=-3 +kerning first=76 second=87 amount=-2 +kerning first=76 second=89 amount=-3 +kerning first=76 second=71 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-2 +kerning first=77 second=79 amount=-2 +kerning first=78 second=67 amount=-2 +kerning first=78 second=71 amount=-2 +kerning first=78 second=79 amount=-2 +kerning first=79 second=65 amount=-3 +kerning first=79 second=66 amount=-2 +kerning first=79 second=68 amount=-2 +kerning first=79 second=69 amount=-2 +kerning first=79 second=70 amount=-3 +kerning first=79 second=72 amount=-2 +kerning first=79 second=73 amount=-2 +kerning first=79 second=75 amount=-3 +kerning first=79 second=76 amount=-3 +kerning first=79 second=77 amount=-2 +kerning first=79 second=78 amount=-2 +kerning first=79 second=80 amount=-2 +kerning first=79 second=82 amount=-3 +kerning first=79 second=84 amount=-2 +kerning first=79 second=85 amount=-2 +kerning first=79 second=86 amount=-2 +kerning first=79 second=87 amount=-2 +kerning first=79 second=88 amount=-3 +kerning first=79 second=89 amount=-2 +kerning first=80 second=65 amount=-3 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-1 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-1 +kerning first=80 second=46 amount=-4 +kerning first=80 second=44 amount=-3 +kerning first=80 second=59 amount=-1 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-2 +kerning first=82 second=67 amount=-2 +kerning first=82 second=71 amount=-2 +kerning first=82 second=89 amount=-3 +kerning first=82 second=84 amount=-2 +kerning first=82 second=85 amount=-3 +kerning first=82 second=86 amount=-3 +kerning first=82 second=87 amount=-3 +kerning first=82 second=89 amount=-3 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-1 +kerning first=83 second=84 amount=-1 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-1 +kerning first=84 second=67 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=85 second=65 amount=-2 +kerning first=85 second=67 amount=-2 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-2 +kerning first=85 second=83 amount=-1 +kerning first=86 second=65 amount=-4 +kerning first=86 second=67 amount=-2 +kerning first=86 second=71 amount=-2 +kerning first=86 second=79 amount=-2 +kerning first=86 second=83 amount=-1 +kerning first=87 second=65 amount=-3 +kerning first=87 second=67 amount=-2 +kerning first=87 second=71 amount=-1 +kerning first=87 second=79 amount=-2 +kerning first=89 second=65 amount=-2 +kerning first=89 second=67 amount=-2 +kerning first=89 second=79 amount=-2 +kerning first=89 second=83 amount=-1 +kerning first=90 second=79 amount=-1 +kerning first=65 second=99 amount=-2 +kerning first=65 second=100 amount=-2 +kerning first=65 second=101 amount=-2 +kerning first=65 second=103 amount=-1 +kerning first=65 second=111 amount=-1 +kerning first=65 second=112 amount=-2 +kerning first=65 second=113 amount=-1 +kerning first=65 second=116 amount=-4 +kerning first=65 second=117 amount=-2 +kerning first=65 second=118 amount=-3 +kerning first=65 second=119 amount=-3 +kerning first=65 second=121 amount=-1 +kerning first=66 second=98 amount=-2 +kerning first=66 second=105 amount=-2 +kerning first=66 second=107 amount=-2 +kerning first=66 second=108 amount=-2 +kerning first=66 second=114 amount=-2 +kerning first=66 second=117 amount=-2 +kerning first=66 second=121 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=67 second=97 amount=-1 +kerning first=67 second=114 amount=-1 +kerning first=67 second=46 amount=-1 +kerning first=67 second=44 amount=-1 +kerning first=68 second=97 amount=-1 +kerning first=68 second=46 amount=-2 +kerning first=68 second=44 amount=-2 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-1 +kerning first=70 second=97 amount=-1 +kerning first=70 second=101 amount=-2 +kerning first=70 second=105 amount=-1 +kerning first=70 second=111 amount=-1 +kerning first=70 second=114 amount=-1 +kerning first=70 second=116 amount=-1 +kerning first=70 second=117 amount=-1 +kerning first=70 second=121 amount=-1 +kerning first=70 second=46 amount=-3 +kerning first=70 second=44 amount=-3 +kerning first=70 second=59 amount=-1 +kerning first=70 second=58 amount=-1 +kerning first=71 second=117 amount=-2 +kerning first=72 second=101 amount=-2 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-2 +kerning first=72 second=121 amount=-1 +kerning first=73 second=99 amount=-2 +kerning first=73 second=100 amount=-2 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-4 +kerning first=74 second=97 amount=-3 +kerning first=74 second=101 amount=-3 +kerning first=74 second=111 amount=-3 +kerning first=74 second=117 amount=-3 +kerning first=74 second=46 amount=-3 +kerning first=74 second=44 amount=-3 +kerning first=75 second=101 amount=-2 +kerning first=75 second=111 amount=-1 +kerning first=75 second=117 amount=-2 +kerning first=76 second=117 amount=-2 +kerning first=76 second=121 amount=-2 +kerning first=77 second=97 amount=-1 +kerning first=77 second=99 amount=-2 +kerning first=77 second=100 amount=-2 +kerning first=77 second=101 amount=-2 +kerning first=77 second=111 amount=-1 +kerning first=78 second=117 amount=-2 +kerning first=78 second=97 amount=-2 +kerning first=78 second=101 amount=-2 +kerning first=78 second=105 amount=-2 +kerning first=78 second=111 amount=-2 +kerning first=78 second=117 amount=-2 +kerning first=78 second=46 amount=-2 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-2 +kerning first=79 second=98 amount=-2 +kerning first=79 second=104 amount=-2 +kerning first=79 second=107 amount=-2 +kerning first=79 second=108 amount=-2 +kerning first=79 second=46 amount=-2 +kerning first=79 second=44 amount=-2 +kerning first=80 second=97 amount=-1 +kerning first=80 second=101 amount=-2 +kerning first=80 second=111 amount=-1 +kerning first=82 second=100 amount=-3 +kerning first=82 second=101 amount=-3 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-2 +kerning first=82 second=117 amount=-2 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-1 +kerning first=83 second=44 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=84 second=101 amount=-2 +kerning first=84 second=105 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=119 amount=-1 +kerning first=84 second=121 amount=-1 +kerning first=84 second=46 amount=-2 +kerning first=84 second=44 amount=-1 +kerning first=84 second=59 amount=-1 +kerning first=84 second=58 amount=-1 +kerning first=85 second=97 amount=-2 +kerning first=85 second=103 amount=-2 +kerning first=85 second=109 amount=-3 +kerning first=85 second=110 amount=-2 +kerning first=85 second=112 amount=-2 +kerning first=85 second=115 amount=-2 +kerning first=85 second=46 amount=-2 +kerning first=85 second=44 amount=-2 +kerning first=86 second=97 amount=-3 +kerning first=86 second=101 amount=-4 +kerning first=86 second=105 amount=-3 +kerning first=86 second=111 amount=-3 +kerning first=86 second=114 amount=-3 +kerning first=86 second=117 amount=-3 +kerning first=86 second=46 amount=-4 +kerning first=86 second=44 amount=-4 +kerning first=86 second=59 amount=-3 +kerning first=86 second=58 amount=-3 +kerning first=87 second=100 amount=-2 +kerning first=87 second=105 amount=-2 +kerning first=87 second=109 amount=-3 +kerning first=87 second=114 amount=-2 +kerning first=87 second=116 amount=-2 +kerning first=87 second=117 amount=-2 +kerning first=87 second=121 amount=-2 +kerning first=87 second=46 amount=-2 +kerning first=87 second=44 amount=-2 +kerning first=87 second=59 amount=-2 +kerning first=87 second=58 amount=-2 +kerning first=88 second=97 amount=-1 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-1 +kerning first=88 second=117 amount=-2 +kerning first=88 second=121 amount=-1 +kerning first=89 second=100 amount=-3 +kerning first=89 second=101 amount=-3 +kerning first=89 second=105 amount=-2 +kerning first=89 second=112 amount=-3 +kerning first=89 second=117 amount=-3 +kerning first=89 second=118 amount=-3 +kerning first=89 second=46 amount=-2 +kerning first=89 second=44 amount=-2 +kerning first=89 second=59 amount=-2 +kerning first=89 second=58 amount=-2 +kerning first=97 second=99 amount=-2 +kerning first=97 second=100 amount=-2 +kerning first=97 second=101 amount=-2 +kerning first=97 second=103 amount=-1 +kerning first=97 second=112 amount=-2 +kerning first=97 second=102 amount=-1 +kerning first=97 second=116 amount=-3 +kerning first=97 second=117 amount=-2 +kerning first=97 second=118 amount=-3 +kerning first=97 second=119 amount=-2 +kerning first=97 second=121 amount=-1 +kerning first=97 second=112 amount=-2 +kerning first=98 second=108 amount=-2 +kerning first=98 second=114 amount=-2 +kerning first=98 second=117 amount=-2 +kerning first=98 second=121 amount=-2 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-1 +kerning first=99 second=97 amount=-1 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-3 +kerning first=100 second=97 amount=-1 +kerning first=100 second=99 amount=-2 +kerning first=100 second=101 amount=-2 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-2 +kerning first=100 second=117 amount=-2 +kerning first=100 second=118 amount=-2 +kerning first=100 second=119 amount=-2 +kerning first=100 second=121 amount=-1 +kerning first=100 second=46 amount=-1 +kerning first=100 second=44 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-2 +kerning first=101 second=110 amount=-1 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-1 +kerning first=102 second=97 amount=-2 +kerning first=102 second=101 amount=-3 +kerning first=102 second=102 amount=-2 +kerning first=102 second=105 amount=-2 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-2 +kerning first=102 second=44 amount=-2 +kerning first=103 second=97 amount=-1 +kerning first=103 second=101 amount=-2 +kerning first=103 second=104 amount=-1 +kerning first=103 second=108 amount=-1 +kerning first=103 second=111 amount=-1 +kerning first=103 second=103 amount=-1 +kerning first=103 second=46 amount=-1 +kerning first=103 second=44 amount=-1 +kerning first=104 second=99 amount=-2 +kerning first=104 second=100 amount=-2 +kerning first=104 second=101 amount=-2 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-2 +kerning first=104 second=116 amount=-3 +kerning first=104 second=117 amount=-2 +kerning first=104 second=118 amount=-2 +kerning first=104 second=119 amount=-2 +kerning first=104 second=121 amount=-1 +kerning first=105 second=99 amount=-2 +kerning first=105 second=100 amount=-2 +kerning first=105 second=101 amount=-2 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-2 +kerning first=105 second=116 amount=-4 +kerning first=105 second=117 amount=-2 +kerning first=105 second=118 amount=-4 +kerning first=106 second=97 amount=-1 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-1 +kerning first=106 second=44 amount=-1 +kerning first=107 second=97 amount=-1 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-2 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-2 +kerning first=108 second=100 amount=-2 +kerning first=108 second=101 amount=-2 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-1 +kerning first=108 second=111 amount=-1 +kerning first=108 second=112 amount=-2 +kerning first=108 second=113 amount=-1 +kerning first=108 second=117 amount=-2 +kerning first=108 second=118 amount=-4 +kerning first=108 second=119 amount=-3 +kerning first=108 second=121 amount=-1 +kerning first=109 second=97 amount=-1 +kerning first=109 second=99 amount=-2 +kerning first=109 second=100 amount=-2 +kerning first=109 second=101 amount=-2 +kerning first=109 second=103 amount=-1 +kerning first=109 second=110 amount=-1 +kerning first=109 second=111 amount=-2 +kerning first=109 second=112 amount=-2 +kerning first=109 second=116 amount=-3 +kerning first=109 second=117 amount=-2 +kerning first=109 second=118 amount=-2 +kerning first=109 second=121 amount=-1 +kerning first=110 second=99 amount=-2 +kerning first=110 second=100 amount=-2 +kerning first=110 second=101 amount=-2 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-2 +kerning first=110 second=116 amount=-3 +kerning first=110 second=117 amount=-2 +kerning first=110 second=118 amount=-3 +kerning first=110 second=119 amount=-3 +kerning first=110 second=121 amount=-1 +kerning first=111 second=98 amount=-2 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-2 +kerning first=111 second=107 amount=-3 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-2 +kerning first=111 second=110 amount=-1 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=111 second=46 amount=-1 +kerning first=111 second=44 amount=-1 +kerning first=112 second=97 amount=-1 +kerning first=112 second=104 amount=-2 +kerning first=112 second=105 amount=-2 +kerning first=112 second=108 amount=-2 +kerning first=112 second=112 amount=-2 +kerning first=112 second=117 amount=-2 +kerning first=112 second=46 amount=-1 +kerning first=112 second=44 amount=-1 +kerning first=113 second=117 amount=-2 +kerning first=116 second=46 amount=-1 +kerning first=114 second=97 amount=-2 +kerning first=114 second=100 amount=-2 +kerning first=114 second=101 amount=-2 +kerning first=114 second=103 amount=-3 +kerning first=114 second=107 amount=-4 +kerning first=114 second=108 amount=-4 +kerning first=114 second=109 amount=-3 +kerning first=114 second=110 amount=-3 +kerning first=114 second=111 amount=-2 +kerning first=114 second=113 amount=-2 +kerning first=114 second=114 amount=-2 +kerning first=114 second=116 amount=-2 +kerning first=114 second=118 amount=-2 +kerning first=114 second=121 amount=-2 +kerning first=114 second=46 amount=-4 +kerning first=114 second=44 amount=-4 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-1 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-1 +kerning first=115 second=44 amount=-1 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-1 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-1 +kerning first=116 second=46 amount=-1 +kerning first=116 second=44 amount=-1 +kerning first=117 second=97 amount=-1 +kerning first=117 second=99 amount=-2 +kerning first=117 second=100 amount=-2 +kerning first=117 second=101 amount=-2 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-2 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-2 +kerning first=117 second=118 amount=-2 +kerning first=117 second=119 amount=-2 +kerning first=117 second=121 amount=-1 +kerning first=118 second=97 amount=-1 +kerning first=118 second=98 amount=-3 +kerning first=118 second=99 amount=-2 +kerning first=118 second=100 amount=-2 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-2 +kerning first=118 second=111 amount=-1 +kerning first=118 second=118 amount=-1 +kerning first=118 second=121 amount=-1 +kerning first=118 second=46 amount=-4 +kerning first=118 second=44 amount=-4 +kerning first=119 second=97 amount=-1 +kerning first=119 second=120 amount=-1 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-2 +kerning first=119 second=103 amount=-2 +kerning first=119 second=104 amount=-2 +kerning first=119 second=111 amount=-1 +kerning first=119 second=46 amount=-2 +kerning first=119 second=44 amount=-2 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-2 +kerning first=120 second=111 amount=-1 +kerning first=121 second=46 amount=-4 +kerning first=121 second=44 amount=-4 +kerning first=121 second=97 amount=-2 +kerning first=121 second=99 amount=-3 +kerning first=121 second=100 amount=-3 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-2 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-1 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-2 +kerning first=112 second=115 amount=-1 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-1 +kerning first=102 second=103 amount=-2 +kerning first=118 second=119 amount=-1 +kerning first=120 second=121 amount=-1 +kerning first=121 second=122 amount=-2 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-2 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-1 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-2 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-1 +kerning first=89 second=90 amount=-2 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-2 +kerning first=116 second=111 amount=-1 +kerning first=87 second=104 amount=-1 +kerning first=107 second=110 amount=-1 +kerning first=119 second=115 amount=-1 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-2 +kerning first=65 second=110 amount=-1 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-1 +kerning first=67 second=68 amount=-1 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-2 +kerning first=102 second=117 amount=-2 +kerning first=67 second=111 amount=-1 +kerning first=116 second=115 amount=-1 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-1 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-2 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-2 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-1 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-2 +kerning first=98 second=106 amount=-3 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-1 +kerning first=111 second=97 amount=-1 +kerning first=68 second=88 amount=-3 +kerning first=101 second=98 amount=-3 +kerning first=115 second=119 amount=-1 +kerning first=97 second=120 amount=-1 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-1 +kerning first=107 second=108 amount=-1 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-2 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-2 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-2 +kerning first=79 second=112 amount=-2 +kerning first=101 second=103 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/font-title-export.fnt new file mode 100644 index 0000000..a87c3bb --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/font-title-export.fnt @@ -0,0 +1,710 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=62 base=62 scaleW=410 scaleH=410 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=375 y=127 width=16 height=47 xoffset=0 yoffset=15 xadvance=17 page=0 chnl=0 letter="!" +char id=34 x=174 y=387 width=24 height=22 xoffset=0 yoffset=14 xadvance=25 page=0 chnl=0 letter=""" +char id=35 x=54 y=145 width=48 height=48 xoffset=0 yoffset=14 xadvance=49 page=0 chnl=0 letter="#" +char id=36 x=106 y=85 width=43 height=56 xoffset=0 yoffset=10 xadvance=44 page=0 chnl=0 letter="$" +char id=37 x=0 y=96 width=57 height=48 xoffset=0 yoffset=16 xadvance=58 page=0 chnl=0 letter="%" +char id=38 x=101 y=243 width=45 height=48 xoffset=0 yoffset=14 xadvance=46 page=0 chnl=0 letter="&" +char id=39 x=364 y=104 width=16 height=22 xoffset=0 yoffset=14 xadvance=17 page=0 chnl=0 letter="'" +char id=40 x=346 y=38 width=27 height=56 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter="(" +char id=41 x=345 y=280 width=27 height=56 xoffset=0 yoffset=10 xadvance=28 page=0 chnl=0 letter=")" +char id=42 x=344 y=216 width=27 height=26 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="*" +char id=43 x=310 y=209 width=33 height=33 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="+" +char id=44 x=345 y=98 width=18 height=22 xoffset=0 yoffset=46 xadvance=19 page=0 chnl=0 letter="," +char id=45 x=45 y=393 width=33 height=15 xoffset=0 yoffset=31 xadvance=34 page=0 chnl=0 letter="-" +char id=46 x=79 y=393 width=16 height=16 xoffset=0 yoffset=46 xadvance=17 page=0 chnl=0 letter="." +char id=47 x=232 y=183 width=39 height=48 xoffset=0 yoffset=15 xadvance=40 page=0 chnl=0 letter="/" +char id=48 x=190 y=239 width=41 height=49 xoffset=0 yoffset=14 xadvance=42 page=0 chnl=0 letter="0" +char id=49 x=374 y=55 width=20 height=48 xoffset=0 yoffset=14 xadvance=21 page=0 chnl=0 letter="1" +char id=50 x=272 y=49 width=36 height=48 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="2" +char id=51 x=190 y=289 width=40 height=48 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="3" +char id=52 x=190 y=190 width=41 height=48 xoffset=0 yoffset=14 xadvance=42 page=0 chnl=0 letter="4" +char id=53 x=190 y=338 width=40 height=48 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="5" +char id=54 x=231 y=339 width=39 height=49 xoffset=0 yoffset=14 xadvance=40 page=0 chnl=0 letter="6" +char id=55 x=271 y=281 width=37 height=47 xoffset=0 yoffset=15 xadvance=38 page=0 chnl=0 letter="7" +char id=56 x=232 y=232 width=38 height=49 xoffset=0 yoffset=14 xadvance=39 page=0 chnl=0 letter="8" +char id=57 x=231 y=289 width=39 height=49 xoffset=0 yoffset=14 xadvance=40 page=0 chnl=0 letter="9" +char id=58 x=392 y=104 width=16 height=36 xoffset=0 yoffset=26 xadvance=17 page=0 chnl=0 letter=":" +char id=59 x=374 y=233 width=18 height=42 xoffset=0 yoffset=26 xadvance=19 page=0 chnl=0 letter=";" +char id=60 x=344 y=135 width=30 height=43 xoffset=0 yoffset=22 xadvance=31 page=0 chnl=0 letter="<" +char id=61 x=234 y=49 width=34 height=23 xoffset=0 yoffset=27 xadvance=35 page=0 chnl=0 letter="=" +char id=62 x=344 y=356 width=29 height=43 xoffset=0 yoffset=22 xadvance=30 page=0 chnl=0 letter=">" +char id=63 x=309 y=48 width=36 height=49 xoffset=0 yoffset=14 xadvance=37 page=0 chnl=0 letter="?" +char id=64 x=0 y=145 width=53 height=49 xoffset=0 yoffset=14 xadvance=54 page=0 chnl=0 letter="@" +char id=65 x=0 y=343 width=49 height=48 xoffset=0 yoffset=14 xadvance=50 page=0 chnl=0 letter="A" +char id=66 x=147 y=281 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="B" +char id=67 x=100 y=330 width=46 height=49 xoffset=0 yoffset=14 xadvance=47 page=0 chnl=0 letter="C" +char id=68 x=58 y=96 width=47 height=47 xoffset=0 yoffset=15 xadvance=48 page=0 chnl=0 letter="D" +char id=69 x=233 y=122 width=38 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="E" +char id=70 x=273 y=0 width=36 height=47 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="F" +char id=71 x=103 y=144 width=45 height=49 xoffset=0 yoffset=14 xadvance=46 page=0 chnl=0 letter="G" +char id=72 x=147 y=329 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="H" +char id=73 x=394 y=201 width=15 height=47 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 letter="I" +char id=74 x=271 y=232 width=38 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="J" +char id=75 x=147 y=233 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="K" +char id=76 x=272 y=174 width=36 height=47 xoffset=0 yoffset=15 xadvance=37 page=0 chnl=0 letter="L" +char id=77 x=0 y=48 width=58 height=47 xoffset=0 yoffset=15 xadvance=59 page=0 chnl=0 letter="M" +char id=78 x=53 y=195 width=48 height=47 xoffset=0 yoffset=15 xadvance=49 page=0 chnl=0 letter="N" +char id=79 x=0 y=245 width=50 height=49 xoffset=0 yoffset=14 xadvance=51 page=0 chnl=0 letter="O" +char id=80 x=193 y=37 width=40 height=47 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="P" +char id=81 x=0 y=195 width=52 height=49 xoffset=0 yoffset=14 xadvance=53 page=0 chnl=0 letter="Q" +char id=82 x=107 y=0 width=43 height=47 xoffset=0 yoffset=15 xadvance=44 page=0 chnl=0 letter="R" +char id=83 x=150 y=48 width=42 height=49 xoffset=0 yoffset=14 xadvance=43 page=0 chnl=0 letter="S" +char id=84 x=149 y=142 width=42 height=47 xoffset=0 yoffset=15 xadvance=43 page=0 chnl=0 letter="T" +char id=85 x=102 y=194 width=44 height=48 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="U" +char id=86 x=51 y=282 width=49 height=47 xoffset=0 yoffset=15 xadvance=50 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=61 height=47 xoffset=0 yoffset=15 xadvance=62 page=0 chnl=0 letter="W" +char id=88 x=0 y=295 width=50 height=47 xoffset=0 yoffset=15 xadvance=51 page=0 chnl=0 letter="X" +char id=89 x=62 y=0 width=44 height=47 xoffset=0 yoffset=15 xadvance=45 page=0 chnl=0 letter="Y" +char id=90 x=192 y=135 width=40 height=47 xoffset=0 yoffset=15 xadvance=41 page=0 chnl=0 letter="Z" +char id=91 x=374 y=335 width=19 height=53 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="[" +char id=92 x=234 y=0 width=38 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="\" +char id=93 x=374 y=179 width=19 height=53 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="]" +char id=94 x=138 y=380 width=35 height=26 xoffset=0 yoffset=14 xadvance=36 page=0 chnl=0 letter="^" +char id=95 x=0 y=392 width=44 height=14 xoffset=0 yoffset=54 xadvance=45 page=0 chnl=0 letter="_" +char id=96 x=223 y=389 width=23 height=16 xoffset=0 yoffset=5 xadvance=24 page=0 chnl=0 letter="`" +char id=97 x=101 y=292 width=42 height=37 xoffset=0 yoffset=25 xadvance=43 page=0 chnl=0 letter="a" +char id=98 x=309 y=98 width=35 height=36 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="b" +char id=99 x=272 y=98 width=36 height=38 xoffset=0 yoffset=25 xadvance=37 page=0 chnl=0 letter="c" +char id=100 x=192 y=98 width=40 height=36 xoffset=0 yoffset=26 xadvance=41 page=0 chnl=0 letter="d" +char id=101 x=310 y=243 width=32 height=36 xoffset=0 yoffset=26 xadvance=33 page=0 chnl=0 letter="e" +char id=102 x=343 y=243 width=30 height=36 xoffset=0 yoffset=26 xadvance=31 page=0 chnl=0 letter="f" +char id=103 x=271 y=329 width=37 height=38 xoffset=0 yoffset=25 xadvance=38 page=0 chnl=0 letter="g" +char id=104 x=309 y=135 width=34 height=36 xoffset=0 yoffset=26 xadvance=35 page=0 chnl=0 letter="h" +char id=105 x=394 y=335 width=15 height=36 xoffset=0 yoffset=26 xadvance=16 page=0 chnl=0 letter="i" +char id=106 x=342 y=0 width=30 height=37 xoffset=0 yoffset=26 xadvance=31 page=0 chnl=0 letter="j" +char id=107 x=272 y=137 width=36 height=36 xoffset=0 yoffset=26 xadvance=37 page=0 chnl=0 letter="k" +char id=108 x=344 y=179 width=29 height=36 xoffset=0 yoffset=26 xadvance=30 page=0 chnl=0 letter="l" +char id=109 x=59 y=48 width=47 height=36 xoffset=0 yoffset=26 xadvance=48 page=0 chnl=0 letter="m" +char id=110 x=233 y=85 width=38 height=36 xoffset=0 yoffset=26 xadvance=39 page=0 chnl=0 letter="n" +char id=111 x=150 y=98 width=41 height=38 xoffset=0 yoffset=25 xadvance=42 page=0 chnl=0 letter="o" +char id=112 x=309 y=319 width=35 height=36 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="p" +char id=113 x=147 y=194 width=42 height=38 xoffset=0 yoffset=25 xadvance=43 page=0 chnl=0 letter="q" +char id=114 x=271 y=368 width=36 height=36 xoffset=0 yoffset=26 xadvance=37 page=0 chnl=0 letter="r" +char id=115 x=308 y=368 width=35 height=38 xoffset=0 yoffset=25 xadvance=36 page=0 chnl=0 letter="s" +char id=116 x=309 y=172 width=34 height=36 xoffset=0 yoffset=26 xadvance=35 page=0 chnl=0 letter="t" +char id=117 x=309 y=281 width=35 height=37 xoffset=0 yoffset=26 xadvance=36 page=0 chnl=0 letter="u" +char id=118 x=151 y=0 width=41 height=36 xoffset=0 yoffset=26 xadvance=42 page=0 chnl=0 letter="v" +char id=119 x=51 y=245 width=49 height=36 xoffset=0 yoffset=26 xadvance=50 page=0 chnl=0 letter="w" +char id=120 x=107 y=48 width=42 height=36 xoffset=0 yoffset=26 xadvance=43 page=0 chnl=0 letter="x" +char id=121 x=193 y=0 width=40 height=36 xoffset=0 yoffset=26 xadvance=41 page=0 chnl=0 letter="y" +char id=122 x=310 y=0 width=31 height=36 xoffset=0 yoffset=26 xadvance=32 page=0 chnl=0 letter="z" +char id=123 x=373 y=280 width=23 height=54 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="{" +char id=124 x=394 y=141 width=15 height=59 xoffset=0 yoffset=15 xadvance=16 page=0 chnl=0 letter="|" +char id=125 x=374 y=0 width=23 height=54 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="}" +char id=126 x=100 y=389 width=37 height=20 xoffset=0 yoffset=33 xadvance=38 page=0 chnl=0 letter="~" +char id=8226 x=199 y=387 width=23 height=22 xoffset=0 yoffset=25 xadvance=24 page=0 chnl=0 letter="•" +char id=169 x=50 y=343 width=49 height=49 xoffset=0 yoffset=14 xadvance=50 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=25 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=200 page=0 chnl=0 letter=" " + +kernings count=606 +kerning first=65 second=39 amount=-13 +kerning first=65 second=67 amount=-7 +kerning first=65 second=71 amount=-6 +kerning first=65 second=79 amount=-7 +kerning first=65 second=81 amount=-7 +kerning first=65 second=84 amount=-15 +kerning first=65 second=85 amount=-5 +kerning first=65 second=86 amount=-16 +kerning first=65 second=87 amount=-13 +kerning first=65 second=89 amount=-15 +kerning first=66 second=65 amount=-3 +kerning first=66 second=69 amount=-1 +kerning first=66 second=76 amount=-1 +kerning first=66 second=80 amount=-1 +kerning first=66 second=82 amount=-1 +kerning first=66 second=85 amount=-1 +kerning first=66 second=86 amount=-6 +kerning first=66 second=87 amount=-5 +kerning first=66 second=89 amount=-5 +kerning first=67 second=65 amount=-3 +kerning first=67 second=79 amount=-4 +kerning first=67 second=82 amount=-2 +kerning first=68 second=65 amount=-7 +kerning first=68 second=68 amount=-7 +kerning first=68 second=69 amount=-1 +kerning first=68 second=73 amount=-1 +kerning first=68 second=76 amount=-1 +kerning first=68 second=77 amount=-7 +kerning first=68 second=78 amount=-7 +kerning first=68 second=79 amount=-1 +kerning first=68 second=80 amount=-1 +kerning first=68 second=82 amount=-1 +kerning first=68 second=85 amount=-1 +kerning first=68 second=86 amount=-7 +kerning first=68 second=87 amount=-5 +kerning first=68 second=89 amount=-6 +kerning first=69 second=67 amount=-3 +kerning first=69 second=79 amount=-3 +kerning first=70 second=65 amount=-15 +kerning first=70 second=67 amount=-4 +kerning first=70 second=71 amount=-4 +kerning first=70 second=79 amount=-4 +kerning first=70 second=46 amount=-17 +kerning first=70 second=44 amount=-19 +kerning first=71 second=69 amount=-1 +kerning first=71 second=79 amount=-1 +kerning first=71 second=82 amount=-1 +kerning first=71 second=85 amount=-1 +kerning first=72 second=79 amount=-1 +kerning first=73 second=67 amount=-1 +kerning first=73 second=71 amount=-1 +kerning first=73 second=79 amount=-1 +kerning first=74 second=65 amount=-5 +kerning first=74 second=79 amount=-1 +kerning first=75 second=79 amount=-3 +kerning first=76 second=39 amount=-17 +kerning first=76 second=67 amount=-3 +kerning first=76 second=84 amount=-15 +kerning first=76 second=86 amount=-13 +kerning first=76 second=87 amount=-11 +kerning first=76 second=89 amount=-15 +kerning first=76 second=71 amount=-3 +kerning first=76 second=79 amount=-3 +kerning first=76 second=85 amount=-2 +kerning first=77 second=71 amount=-7 +kerning first=77 second=79 amount=-7 +kerning first=78 second=67 amount=-1 +kerning first=78 second=71 amount=-1 +kerning first=78 second=79 amount=-1 +kerning first=79 second=65 amount=-7 +kerning first=79 second=66 amount=-1 +kerning first=79 second=68 amount=-7 +kerning first=79 second=69 amount=-1 +kerning first=79 second=70 amount=-1 +kerning first=79 second=72 amount=-1 +kerning first=79 second=73 amount=-1 +kerning first=79 second=75 amount=-1 +kerning first=79 second=76 amount=-1 +kerning first=79 second=77 amount=-7 +kerning first=79 second=78 amount=-7 +kerning first=79 second=80 amount=-1 +kerning first=79 second=82 amount=-1 +kerning first=79 second=84 amount=-4 +kerning first=79 second=85 amount=-1 +kerning first=79 second=86 amount=-7 +kerning first=79 second=87 amount=-5 +kerning first=79 second=88 amount=-8 +kerning first=79 second=89 amount=-6 +kerning first=80 second=65 amount=-12 +kerning first=80 second=69 amount=-1 +kerning first=80 second=76 amount=-1 +kerning first=80 second=79 amount=-2 +kerning first=80 second=80 amount=-1 +kerning first=80 second=85 amount=-1 +kerning first=80 second=89 amount=-4 +kerning first=80 second=46 amount=-17 +kerning first=80 second=44 amount=-19 +kerning first=80 second=59 amount=-3 +kerning first=80 second=58 amount=-1 +kerning first=81 second=85 amount=-3 +kerning first=82 second=67 amount=-3 +kerning first=82 second=71 amount=-3 +kerning first=82 second=89 amount=-5 +kerning first=82 second=84 amount=-3 +kerning first=82 second=85 amount=-2 +kerning first=82 second=86 amount=-6 +kerning first=82 second=87 amount=-5 +kerning first=82 second=89 amount=-5 +kerning first=83 second=73 amount=-1 +kerning first=83 second=77 amount=-5 +kerning first=83 second=84 amount=-2 +kerning first=83 second=85 amount=-1 +kerning first=84 second=65 amount=-14 +kerning first=84 second=67 amount=-4 +kerning first=84 second=79 amount=-4 +kerning first=85 second=65 amount=-5 +kerning first=85 second=67 amount=-1 +kerning first=85 second=71 amount=-1 +kerning first=85 second=79 amount=-1 +kerning first=85 second=83 amount=-2 +kerning first=86 second=65 amount=-16 +kerning first=86 second=67 amount=-6 +kerning first=86 second=71 amount=-6 +kerning first=86 second=79 amount=-6 +kerning first=86 second=83 amount=-6 +kerning first=87 second=65 amount=-13 +kerning first=87 second=67 amount=-5 +kerning first=87 second=71 amount=-4 +kerning first=87 second=79 amount=-5 +kerning first=89 second=65 amount=-15 +kerning first=89 second=67 amount=-6 +kerning first=89 second=79 amount=-6 +kerning first=89 second=83 amount=-6 +kerning first=90 second=79 amount=-3 +kerning first=65 second=99 amount=-4 +kerning first=65 second=100 amount=-8 +kerning first=65 second=101 amount=-1 +kerning first=65 second=103 amount=-5 +kerning first=65 second=111 amount=-5 +kerning first=65 second=112 amount=-1 +kerning first=65 second=113 amount=-5 +kerning first=65 second=116 amount=-10 +kerning first=65 second=117 amount=-3 +kerning first=65 second=118 amount=-12 +kerning first=65 second=119 amount=-10 +kerning first=65 second=121 amount=-14 +kerning first=66 second=98 amount=-1 +kerning first=66 second=105 amount=-1 +kerning first=66 second=107 amount=-1 +kerning first=66 second=108 amount=-1 +kerning first=66 second=114 amount=-1 +kerning first=66 second=117 amount=-1 +kerning first=66 second=121 amount=-4 +kerning first=66 second=46 amount=-2 +kerning first=66 second=44 amount=-3 +kerning first=67 second=97 amount=-3 +kerning first=67 second=114 amount=-2 +kerning first=67 second=46 amount=-2 +kerning first=67 second=44 amount=-3 +kerning first=68 second=97 amount=-7 +kerning first=68 second=46 amount=-4 +kerning first=68 second=44 amount=-6 +kerning first=69 second=117 amount=-1 +kerning first=69 second=118 amount=-8 +kerning first=70 second=97 amount=-13 +kerning first=70 second=101 amount=-7 +kerning first=70 second=105 amount=-7 +kerning first=70 second=111 amount=-7 +kerning first=70 second=114 amount=-7 +kerning first=70 second=116 amount=-7 +kerning first=70 second=117 amount=-7 +kerning first=70 second=121 amount=-10 +kerning first=70 second=46 amount=-17 +kerning first=70 second=44 amount=-19 +kerning first=70 second=59 amount=-9 +kerning first=70 second=58 amount=-7 +kerning first=71 second=117 amount=-1 +kerning first=72 second=101 amount=-1 +kerning first=72 second=111 amount=-1 +kerning first=72 second=117 amount=-1 +kerning first=72 second=121 amount=-2 +kerning first=73 second=99 amount=-1 +kerning first=73 second=100 amount=-2 +kerning first=73 second=113 amount=-1 +kerning first=73 second=111 amount=-1 +kerning first=73 second=116 amount=-1 +kerning first=74 second=97 amount=-5 +kerning first=74 second=101 amount=-1 +kerning first=74 second=111 amount=-1 +kerning first=74 second=117 amount=-1 +kerning first=74 second=46 amount=-3 +kerning first=74 second=44 amount=-5 +kerning first=75 second=101 amount=-1 +kerning first=75 second=111 amount=-2 +kerning first=75 second=117 amount=-1 +kerning first=76 second=117 amount=-1 +kerning first=76 second=121 amount=-14 +kerning first=77 second=97 amount=-7 +kerning first=77 second=99 amount=-7 +kerning first=77 second=100 amount=-8 +kerning first=77 second=101 amount=-7 +kerning first=77 second=111 amount=-7 +kerning first=78 second=117 amount=-1 +kerning first=78 second=97 amount=-1 +kerning first=78 second=101 amount=-1 +kerning first=78 second=105 amount=-1 +kerning first=78 second=111 amount=-1 +kerning first=78 second=117 amount=-1 +kerning first=78 second=46 amount=-1 +kerning first=78 second=44 amount=-2 +kerning first=79 second=97 amount=-7 +kerning first=79 second=98 amount=-1 +kerning first=79 second=104 amount=-1 +kerning first=79 second=107 amount=-1 +kerning first=79 second=108 amount=-1 +kerning first=79 second=46 amount=-4 +kerning first=79 second=44 amount=-6 +kerning first=80 second=97 amount=-11 +kerning first=80 second=101 amount=-1 +kerning first=80 second=111 amount=-4 +kerning first=82 second=100 amount=-4 +kerning first=82 second=101 amount=-1 +kerning first=82 second=111 amount=-2 +kerning first=82 second=116 amount=-3 +kerning first=82 second=117 amount=-1 +kerning first=83 second=105 amount=-1 +kerning first=83 second=112 amount=-1 +kerning first=83 second=117 amount=-1 +kerning first=83 second=46 amount=-2 +kerning first=83 second=44 amount=-3 +kerning first=84 second=97 amount=-13 +kerning first=84 second=99 amount=-14 +kerning first=84 second=101 amount=-14 +kerning first=84 second=105 amount=-14 +kerning first=84 second=111 amount=-14 +kerning first=84 second=114 amount=-14 +kerning first=84 second=115 amount=-13 +kerning first=84 second=117 amount=-14 +kerning first=84 second=119 amount=-14 +kerning first=84 second=121 amount=-15 +kerning first=84 second=46 amount=-14 +kerning first=84 second=44 amount=-15 +kerning first=84 second=59 amount=-16 +kerning first=84 second=58 amount=-14 +kerning first=85 second=97 amount=-5 +kerning first=85 second=103 amount=-1 +kerning first=85 second=109 amount=-1 +kerning first=85 second=110 amount=-1 +kerning first=85 second=112 amount=-1 +kerning first=85 second=115 amount=-2 +kerning first=85 second=46 amount=-3 +kerning first=85 second=44 amount=-5 +kerning first=86 second=97 amount=-15 +kerning first=86 second=101 amount=-6 +kerning first=86 second=105 amount=-6 +kerning first=86 second=111 amount=-9 +kerning first=86 second=114 amount=-6 +kerning first=86 second=117 amount=-6 +kerning first=86 second=46 amount=-14 +kerning first=86 second=44 amount=-16 +kerning first=86 second=59 amount=-8 +kerning first=86 second=58 amount=-6 +kerning first=87 second=100 amount=-5 +kerning first=87 second=105 amount=-4 +kerning first=87 second=109 amount=-4 +kerning first=87 second=114 amount=-4 +kerning first=87 second=116 amount=-4 +kerning first=87 second=117 amount=-4 +kerning first=87 second=121 amount=-5 +kerning first=87 second=46 amount=-11 +kerning first=87 second=44 amount=-13 +kerning first=87 second=59 amount=-6 +kerning first=87 second=58 amount=-4 +kerning first=88 second=97 amount=-2 +kerning first=88 second=101 amount=-2 +kerning first=88 second=111 amount=-7 +kerning first=88 second=117 amount=-5 +kerning first=88 second=121 amount=-13 +kerning first=89 second=100 amount=-7 +kerning first=89 second=101 amount=-6 +kerning first=89 second=105 amount=-6 +kerning first=89 second=112 amount=-6 +kerning first=89 second=117 amount=-6 +kerning first=89 second=118 amount=-6 +kerning first=89 second=46 amount=-15 +kerning first=89 second=44 amount=-16 +kerning first=89 second=59 amount=-8 +kerning first=89 second=58 amount=-6 +kerning first=97 second=99 amount=-5 +kerning first=97 second=100 amount=-9 +kerning first=97 second=101 amount=-2 +kerning first=97 second=103 amount=-6 +kerning first=97 second=112 amount=-2 +kerning first=97 second=102 amount=-2 +kerning first=97 second=116 amount=-11 +kerning first=97 second=117 amount=-4 +kerning first=97 second=118 amount=-13 +kerning first=97 second=119 amount=-11 +kerning first=97 second=121 amount=-15 +kerning first=97 second=112 amount=-2 +kerning first=98 second=108 amount=-1 +kerning first=98 second=114 amount=-1 +kerning first=98 second=117 amount=-1 +kerning first=98 second=121 amount=-5 +kerning first=98 second=46 amount=-1 +kerning first=98 second=44 amount=-2 +kerning first=99 second=97 amount=-2 +kerning first=99 second=104 amount=-1 +kerning first=99 second=107 amount=-1 +kerning first=100 second=97 amount=-4 +kerning first=100 second=99 amount=-1 +kerning first=100 second=101 amount=-1 +kerning first=100 second=103 amount=-1 +kerning first=100 second=111 amount=-1 +kerning first=100 second=116 amount=-2 +kerning first=100 second=117 amount=-1 +kerning first=100 second=118 amount=-4 +kerning first=100 second=119 amount=-4 +kerning first=100 second=121 amount=-6 +kerning first=100 second=46 amount=-2 +kerning first=100 second=44 amount=-4 +kerning first=101 second=97 amount=-1 +kerning first=101 second=105 amount=-1 +kerning first=101 second=108 amount=-1 +kerning first=101 second=109 amount=-2 +kerning first=101 second=110 amount=-2 +kerning first=101 second=112 amount=-1 +kerning first=101 second=114 amount=-1 +kerning first=101 second=116 amount=-2 +kerning first=101 second=117 amount=-2 +kerning first=101 second=118 amount=-2 +kerning first=101 second=119 amount=-2 +kerning first=101 second=121 amount=-3 +kerning first=101 second=46 amount=-1 +kerning first=101 second=44 amount=-2 +kerning first=102 second=97 amount=-9 +kerning first=102 second=101 amount=-1 +kerning first=102 second=102 amount=-1 +kerning first=102 second=105 amount=-1 +kerning first=102 second=108 amount=-1 +kerning first=102 second=111 amount=-2 +kerning first=102 second=46 amount=-6 +kerning first=102 second=44 amount=-8 +kerning first=103 second=97 amount=-3 +kerning first=103 second=101 amount=-2 +kerning first=103 second=104 amount=-2 +kerning first=103 second=108 amount=-2 +kerning first=103 second=111 amount=-2 +kerning first=103 second=103 amount=-2 +kerning first=103 second=46 amount=-2 +kerning first=103 second=44 amount=-3 +kerning first=104 second=99 amount=-1 +kerning first=104 second=100 amount=-2 +kerning first=104 second=101 amount=-1 +kerning first=104 second=103 amount=-1 +kerning first=104 second=111 amount=-1 +kerning first=104 second=112 amount=-1 +kerning first=104 second=116 amount=-1 +kerning first=104 second=117 amount=-1 +kerning first=104 second=118 amount=-1 +kerning first=104 second=119 amount=-1 +kerning first=104 second=121 amount=-2 +kerning first=105 second=99 amount=-1 +kerning first=105 second=100 amount=-2 +kerning first=105 second=101 amount=-1 +kerning first=105 second=103 amount=-1 +kerning first=105 second=111 amount=-1 +kerning first=105 second=112 amount=-1 +kerning first=105 second=116 amount=-1 +kerning first=105 second=117 amount=-1 +kerning first=105 second=118 amount=-1 +kerning first=106 second=97 amount=-3 +kerning first=106 second=101 amount=-1 +kerning first=106 second=111 amount=-1 +kerning first=106 second=117 amount=-1 +kerning first=106 second=46 amount=-2 +kerning first=106 second=44 amount=-3 +kerning first=107 second=97 amount=-2 +kerning first=107 second=99 amount=-2 +kerning first=107 second=100 amount=-3 +kerning first=107 second=101 amount=-2 +kerning first=107 second=103 amount=-3 +kerning first=107 second=111 amount=-3 +kerning first=108 second=97 amount=-1 +kerning first=108 second=99 amount=-2 +kerning first=108 second=100 amount=-8 +kerning first=108 second=101 amount=-1 +kerning first=108 second=102 amount=-1 +kerning first=108 second=103 amount=-3 +kerning first=108 second=111 amount=-3 +kerning first=108 second=112 amount=-1 +kerning first=108 second=113 amount=-2 +kerning first=108 second=117 amount=-2 +kerning first=108 second=118 amount=-9 +kerning first=108 second=119 amount=-8 +kerning first=108 second=121 amount=-14 +kerning first=109 second=97 amount=-5 +kerning first=109 second=99 amount=-5 +kerning first=109 second=100 amount=-3 +kerning first=109 second=101 amount=-2 +kerning first=109 second=103 amount=-5 +kerning first=109 second=110 amount=-2 +kerning first=109 second=111 amount=-5 +kerning first=109 second=112 amount=-2 +kerning first=109 second=116 amount=-2 +kerning first=109 second=117 amount=-2 +kerning first=109 second=118 amount=-2 +kerning first=109 second=121 amount=-3 +kerning first=110 second=99 amount=-1 +kerning first=110 second=100 amount=-2 +kerning first=110 second=101 amount=-1 +kerning first=110 second=103 amount=-1 +kerning first=110 second=111 amount=-1 +kerning first=110 second=112 amount=-1 +kerning first=110 second=116 amount=-1 +kerning first=110 second=117 amount=-1 +kerning first=110 second=118 amount=-1 +kerning first=110 second=119 amount=-1 +kerning first=110 second=121 amount=-2 +kerning first=111 second=98 amount=-1 +kerning first=111 second=102 amount=-1 +kerning first=111 second=104 amount=-1 +kerning first=111 second=106 amount=-5 +kerning first=111 second=107 amount=-1 +kerning first=111 second=108 amount=-1 +kerning first=111 second=109 amount=-4 +kerning first=111 second=110 amount=-4 +kerning first=111 second=112 amount=-1 +kerning first=111 second=114 amount=-1 +kerning first=111 second=117 amount=-1 +kerning first=111 second=118 amount=-4 +kerning first=111 second=119 amount=-4 +kerning first=111 second=120 amount=-7 +kerning first=111 second=121 amount=-6 +kerning first=111 second=46 amount=-3 +kerning first=111 second=44 amount=-5 +kerning first=112 second=97 amount=-8 +kerning first=112 second=104 amount=-1 +kerning first=112 second=105 amount=-1 +kerning first=112 second=108 amount=-1 +kerning first=112 second=112 amount=-1 +kerning first=112 second=117 amount=-1 +kerning first=112 second=46 amount=-6 +kerning first=112 second=44 amount=-8 +kerning first=113 second=117 amount=-2 +kerning first=116 second=46 amount=-11 +kerning first=114 second=97 amount=-1 +kerning first=114 second=100 amount=-5 +kerning first=114 second=101 amount=-1 +kerning first=114 second=103 amount=-2 +kerning first=114 second=107 amount=-1 +kerning first=114 second=108 amount=-1 +kerning first=114 second=109 amount=-4 +kerning first=114 second=110 amount=-4 +kerning first=114 second=111 amount=-2 +kerning first=114 second=113 amount=-1 +kerning first=114 second=114 amount=-1 +kerning first=114 second=116 amount=-3 +kerning first=114 second=118 amount=-4 +kerning first=114 second=121 amount=-6 +kerning first=114 second=46 amount=-1 +kerning first=114 second=44 amount=-2 +kerning first=115 second=104 amount=-1 +kerning first=115 second=116 amount=-2 +kerning first=115 second=117 amount=-1 +kerning first=115 second=46 amount=-2 +kerning first=115 second=44 amount=-3 +kerning first=116 second=100 amount=-2 +kerning first=116 second=97 amount=-11 +kerning first=116 second=101 amount=-1 +kerning first=116 second=111 amount=-2 +kerning first=116 second=46 amount=-11 +kerning first=116 second=44 amount=-12 +kerning first=117 second=97 amount=-3 +kerning first=117 second=99 amount=-1 +kerning first=117 second=100 amount=-2 +kerning first=117 second=101 amount=-1 +kerning first=117 second=103 amount=-1 +kerning first=117 second=111 amount=-1 +kerning first=117 second=112 amount=-1 +kerning first=117 second=113 amount=-1 +kerning first=117 second=116 amount=-1 +kerning first=117 second=118 amount=-1 +kerning first=117 second=119 amount=-1 +kerning first=117 second=121 amount=-2 +kerning first=118 second=97 amount=-12 +kerning first=118 second=98 amount=-2 +kerning first=118 second=99 amount=-5 +kerning first=118 second=100 amount=-3 +kerning first=118 second=101 amount=-2 +kerning first=118 second=103 amount=-6 +kerning first=118 second=111 amount=-5 +kerning first=118 second=118 amount=-2 +kerning first=118 second=121 amount=-3 +kerning first=118 second=46 amount=-10 +kerning first=118 second=44 amount=-12 +kerning first=119 second=97 amount=-10 +kerning first=119 second=120 amount=-3 +kerning first=119 second=100 amount=-2 +kerning first=119 second=101 amount=-1 +kerning first=119 second=103 amount=-5 +kerning first=119 second=104 amount=-1 +kerning first=119 second=111 amount=-4 +kerning first=119 second=46 amount=-8 +kerning first=119 second=44 amount=-10 +kerning first=120 second=97 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=120 second=111 amount=-6 +kerning first=121 second=46 amount=-13 +kerning first=121 second=44 amount=-14 +kerning first=121 second=97 amount=-12 +kerning first=121 second=99 amount=-6 +kerning first=121 second=100 amount=-3 +kerning first=121 second=101 amount=-2 +kerning first=121 second=111 amount=-6 +kerning first=117 second=109 amount=-1 +kerning first=84 second=104 amount=-14 +kerning first=118 second=101 amount=-2 +kerning first=119 second=110 amount=-1 +kerning first=112 second=115 amount=-2 +kerning first=76 second=97 amount=-1 +kerning first=117 second=105 amount=-1 +kerning first=98 second=101 amount=-1 +kerning first=99 second=111 amount=-3 +kerning first=102 second=103 amount=-3 +kerning first=118 second=119 amount=-2 +kerning first=120 second=121 amount=-3 +kerning first=121 second=122 amount=-2 +kerning first=119 second=119 amount=-1 +kerning first=99 second=101 amount=-1 +kerning first=101 second=115 amount=-1 +kerning first=101 second=102 amount=-1 +kerning first=98 second=97 amount=-2 +kerning first=116 second=104 amount=-1 +kerning first=116 second=105 amount=-1 +kerning first=101 second=101 amount=-1 +kerning first=104 second=97 amount=-1 +kerning first=111 second=101 amount=-1 +kerning first=119 second=105 amount=-1 +kerning first=88 second=89 amount=-5 +kerning first=89 second=90 amount=-3 +kerning first=82 second=83 amount=-1 +kerning first=75 second=76 amount=-1 +kerning first=101 second=100 amount=-3 +kerning first=116 second=111 amount=-2 +kerning first=87 second=104 amount=-4 +kerning first=107 second=110 amount=-2 +kerning first=119 second=115 amount=-4 +kerning first=116 second=114 amount=-1 +kerning first=102 second=114 amount=-1 +kerning first=65 second=110 amount=-4 +kerning first=116 second=116 amount=-1 +kerning first=66 second=67 amount=-2 +kerning first=67 second=68 amount=-4 +kerning first=65 second=66 amount=-1 +kerning first=89 second=111 amount=-11 +kerning first=102 second=117 amount=-1 +kerning first=67 second=111 amount=-3 +kerning first=116 second=115 amount=-3 +kerning first=111 second=111 amount=-1 +kerning first=68 second=111 amount=-1 +kerning first=101 second=97 amount=-1 +kerning first=76 second=111 amount=-2 +kerning first=115 second=105 amount=-1 +kerning first=111 second=116 amount=-3 +kerning first=111 second=103 amount=-1 +kerning first=82 second=97 amount=-1 +kerning first=101 second=99 amount=-2 +kerning first=66 second=111 amount=-1 +kerning first=111 second=99 amount=-1 +kerning first=115 second=111 amount=-1 +kerning first=83 second=119 amount=-4 +kerning first=66 second=101 amount=-1 +kerning first=99 second=116 amount=-1 +kerning first=98 second=106 amount=-2 +kerning first=115 second=101 amount=-1 +kerning first=121 second=119 amount=-2 +kerning first=111 second=97 amount=-5 +kerning first=68 second=88 amount=-8 +kerning first=101 second=98 amount=-1 +kerning first=115 second=119 amount=-3 +kerning first=97 second=120 amount=-3 +kerning first=73 second=110 amount=-1 +kerning first=73 second=74 amount=-1 +kerning first=116 second=112 amount=-1 +kerning first=104 second=105 amount=-1 +kerning first=105 second=115 amount=-1 +kerning first=98 second=99 amount=-1 +kerning first=115 second=112 amount=-1 +kerning first=100 second=105 amount=-1 +kerning first=105 second=106 amount=-1 +kerning first=108 second=109 amount=-4 +kerning first=107 second=108 amount=-2 +kerning first=108 second=105 amount=-1 +kerning first=112 second=113 amount=-1 +kerning first=108 second=108 amount=-1 +kerning first=49 second=50 amount=-1 +kerning first=106 second=107 amount=-1 +kerning first=117 second=110 amount=-1 +kerning first=113 second=114 amount=-2 +kerning first=116 second=117 amount=-1 +kerning first=114 second=115 amount=-1 +kerning first=117 second=114 amount=-1 +kerning first=73 second=112 amount=-1 +kerning first=79 second=112 amount=-1 +kerning first=101 second=103 amount=-3 diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.atlas b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.atlas new file mode 100644 index 0000000..524b02a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.atlas @@ -0,0 +1,291 @@ + +rusty-robot-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 901, 655 + size: 122, 100 + split: 40, 14, 36, 36 + pad: 41, 15, 30, 30 + orig: 122, 100 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 269, 263 + size: 122, 100 + split: 40, 14, 36, 36 + pad: 41, 15, 30, 30 + orig: 122, 100 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 698, 890 + size: 35, 30 + orig: 35, 30 + offset: 0, 0 + index: -1 +checkbox-pressed + rotate: false + xy: 698, 858 + size: 35, 30 + orig: 35, 30 + offset: 0, 0 + index: -1 +cog1 + rotate: false + xy: 747, 234 + size: 45, 45 + orig: 45, 45 + offset: 0, 0 + index: -1 +cog2 + rotate: false + xy: 812, 645 + size: 69, 69 + orig: 69, 69 + offset: 0, 0 + index: -1 +cog3 + rotate: false + xy: 269, 158 + size: 103, 103 + orig: 103, 103 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 698, 602 + size: 112, 112 + orig: 112, 112 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 613 + size: 410, 410 + orig: 410, 410 + offset: 0, 0 + index: -1 +label-bg + rotate: false + xy: 698, 575 + size: 95, 25 + split: 13, 13, 2, 2 + pad: 15, 15, 2, 2 + orig: 95, 25 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 1, 10 + size: 201, 17 + split: 55, 54, 3, 3 + pad: 57, 57, 5, 5 + orig: 201, 17 + offset: 0, 0 + index: -1 +meter + rotate: false + xy: 411, 308 + size: 265, 265 + orig: 265, 265 + offset: 0, 0 + index: -1 +meter-front + rotate: false + xy: 741, 757 + size: 265, 266 + orig: 265, 266 + offset: 0, 0 + index: -1 +meter-needle + rotate: false + xy: 1, 98 + size: 266, 265 + orig: 266, 265 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 204, 10 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 374, 244 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 413, 956 + size: 326, 67 + split: 0, 0, 1, 0 + pad: 35, 35, 0, 0 + orig: 326, 67 + offset: 0, 0 + index: -1 +progress-bar-knob-horizontal + rotate: false + xy: 393, 296 + size: 1, 67 + orig: 1, 67 + offset: 0, 0 + index: -1 +progress-bar-knob-vertical + rotate: false + xy: 1, 7 + size: 67, 1 + orig: 67, 1 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 678, 203 + size: 67, 326 + split: 1, 0, 0, 0 + pad: 0, 0, 35, 35 + orig: 67, 326 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 756, 541 + size: 37, 32 + orig: 37, 32 + offset: 0, 0 + index: -1 +radio-pressed + rotate: false + xy: 698, 922 + size: 37, 32 + orig: 37, 32 + offset: 0, 0 + index: -1 +robot + rotate: false + xy: 413, 575 + size: 283, 379 + orig: 283, 379 + offset: 0, 0 + index: -1 +scrollbar-horizontal + rotate: false + xy: 747, 207 + size: 42, 25 + split: 16, 16, 0, 0 + pad: 0, 0, 0, 0 + orig: 42, 25 + offset: 0, 0 + index: -1 +scrollbar-knob-horizontal + rotate: false + xy: 812, 618 + size: 47, 25 + orig: 47, 25 + offset: 0, 0 + index: -1 +scrollbar-knob-vertical + rotate: false + xy: 243, 48 + size: 24, 48 + orig: 24, 48 + offset: 0, 0 + index: -1 +scrollbar-vertical + rotate: false + xy: 269, 72 + size: 24, 42 + split: 0, 0, 16, 16 + pad: 0, 0, 0, 0 + orig: 24, 42 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 698, 716 + size: 201, 39 + split: 45, 44, 3, 3 + pad: 48, 47, 3, 3 + orig: 201, 39 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 1, 29 + size: 240, 67 + orig: 240, 67 + offset: 0, 0 + index: -1 +slider-knob-horizontal + rotate: false + xy: 698, 790 + size: 25, 66 + orig: 25, 66 + offset: 0, 0 + index: -1 +slider-knob-vertical + rotate: false + xy: 269, 132 + size: 64, 24 + orig: 64, 24 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 747, 281 + size: 64, 248 + orig: 64, 248 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 1008, 973 + size: 15, 50 + split: 3, 3, 12, 12 + pad: 0, 0, 0, 0 + orig: 15, 50 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 269, 116 + size: 51, 14 + split: 13, 13, 2, 2 + pad: 0, 0, 0, 0 + orig: 51, 14 + offset: 0, 0 + index: -1 +text-field + rotate: false + xy: 678, 531 + size: 76, 42 + split: 16, 16, 10, 9 + pad: 17, 17, 10, 10 + orig: 76, 42 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 883, 713 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 365 + size: 408, 246 + split: 0, 0, 1, 0 + pad: 88, 68, 25, 124 + orig: 408, 246 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.json b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.json new file mode 100644 index 0000000..a6fc57a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.json @@ -0,0 +1,211 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + tan: { + name: white + color: { + r: 1 + g: 0.909659 + b: 0.7633333 + a: 1 + } + } + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } + clear: { + name: white + color: { + r: 1 + g: 1 + b: 1 + a: 0 + } + } + dialog-bg: { + name: white + color: { + r: 0.98333335 + g: 0.8546715 + b: 0.55722225 + a: 0.52666664 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-pressed + checkboxOff: checkbox + font: font + fontColor: black + } + radio: { + checkboxOn: radio-pressed + checkboxOff: radio + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + title: { + font: title + } + bg: { + font: font + fontColor: black + background: label-bg + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: black + fontColorUnselected: black + selection: tan + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-horizontal + knobBefore: progress-bar-knob-horizontal + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-knob-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollbar-horizontal + hScrollKnob: scrollbar-knob-horizontal + vScroll: scrollbar-vertical + vScrollKnob: scrollbar-knob-vertical + } + empty: { + background: clear + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box + scrollStyle: empty + listStyle: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider-horizontal + knob: slider-knob-horizontal + } + default-vertical: { + background: slider-vertical + knob: slider-knob-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal + } + default-vertical: { + handle: splitpane-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: text-field + cursor: black + selection: tan + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: label-bg + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + selection: tan + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + } + empty: { + background: clear + titleFont: font + } + dialog: { + background: window + titleFont: font + stageBackground: dialog-bg + } + empty-bg: { + background: clear + titleFont: font + stageBackground: dialog-bg + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.png b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.png new file mode 100644 index 0000000..ac50190 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/rusty-robot/skin/rusty-robot-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/PlayFont.txt b/src/main/resources/omni_power/gdx-skins/sgx/PlayFont.txt new file mode 100644 index 0000000..ff73ddc --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/PlayFont.txt @@ -0,0 +1,92 @@ +Copyright (c) 2011, Jonas Hecksher, Playtypes, e-types AS (lasse@e-types.com), with Reserved Font Name 'Play', 'Playtype', 'Playtype Sans'. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/sgx/QuestrialFont.txt b/src/main/resources/omni_power/gdx-skins/sgx/QuestrialFont.txt new file mode 100644 index 0000000..96f705e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/QuestrialFont.txt @@ -0,0 +1,92 @@ +Copyright (c) 2011, Admix Designs (http://www.admixdesigns.com/) with Reserved Font Name Questrial. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/sgx/README.md b/src/main/resources/omni_power/gdx-skins/sgx/README.md new file mode 100644 index 0000000..7827bfc --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/README.md @@ -0,0 +1,24 @@ +# SGX UI + +``` +SGX UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2017 Raymond Buckley + +SGX UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** and a few **Skin Composer** widgets. Designed for an upcoming game: *Supergalactix* by *Betalord*. + +![SGX](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/sgx-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font](PlayFont.txt) [licenses](QuestrialFont.txt). + diff --git a/src/main/resources/omni_power/gdx-skins/sgx/preview.png b/src/main/resources/omni_power/gdx-skins/sgx/preview.png new file mode 100644 index 0000000..a357ffc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/back.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/back.png new file mode 100644 index 0000000..a56cfa0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/back.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/background.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/background.png new file mode 100644 index 0000000..a50105f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/background.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close-over.png new file mode 100644 index 0000000..24100db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close-pressed.png new file mode 100644 index 0000000..e14bae0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close.png new file mode 100644 index 0000000..2aef98a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-disabled.9.png new file mode 100644 index 0000000..1460e29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-disabled.png new file mode 100644 index 0000000..8c17143 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-disabled.9.png new file mode 100644 index 0000000..78ae196 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-disabled.png new file mode 100644 index 0000000..ffffdc1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-over.9.png new file mode 100644 index 0000000..eedd42c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-over.png new file mode 100644 index 0000000..75914cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-pressed.9.png new file mode 100644 index 0000000..ce19fcf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-pressed.png new file mode 100644 index 0000000..6279d8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color.9.png new file mode 100644 index 0000000..97225d2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color.png new file mode 100644 index 0000000..03c9566 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-color.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-disabled.9.png new file mode 100644 index 0000000..d22f977 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-disabled.png new file mode 100644 index 0000000..3e3cc5b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-over.9.png new file mode 100644 index 0000000..3d010bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-over.png new file mode 100644 index 0000000..aede524 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-pressed.9.png new file mode 100644 index 0000000..ac0cf04 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-pressed.png new file mode 100644 index 0000000..acc30d8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis.9.png new file mode 100644 index 0000000..48a315b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis.png new file mode 100644 index 0000000..dc6c3ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-emphasis.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-disabled.9.png new file mode 100644 index 0000000..d209b8f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-disabled.png new file mode 100644 index 0000000..04604ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-over.9.png new file mode 100644 index 0000000..b33c386 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-over.png new file mode 100644 index 0000000..016eddc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-pressed.9.png new file mode 100644 index 0000000..8bde03d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-pressed.png new file mode 100644 index 0000000..4d040a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon.9.png new file mode 100644 index 0000000..f30d3f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon.png new file mode 100644 index 0000000..3832013 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-icon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-disabled.9.png new file mode 100644 index 0000000..ee061da Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-disabled.png new file mode 100644 index 0000000..9c2ded0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-over.9.png new file mode 100644 index 0000000..5d162a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-over.png new file mode 100644 index 0000000..8d9be9d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-pressed.9.png new file mode 100644 index 0000000..4f60bf4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-pressed.png new file mode 100644 index 0000000..40dcae1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus.9.png new file mode 100644 index 0000000..2d0422d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus.png new file mode 100644 index 0000000..083cba1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-disabled.9.png new file mode 100644 index 0000000..81dc021 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-disabled.png new file mode 100644 index 0000000..e54870e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-over.9.png new file mode 100644 index 0000000..1674019 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-over.png new file mode 100644 index 0000000..bfc8820 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-pressed.9.png new file mode 100644 index 0000000..a134d04 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-pressed.png new file mode 100644 index 0000000..662db53 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number.9.png new file mode 100644 index 0000000..8ddd013 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number.png new file mode 100644 index 0000000..0ee8345 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-number.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-over.9.png new file mode 100644 index 0000000..913054a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-over.png new file mode 100644 index 0000000..a89277b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-disabled.9.png new file mode 100644 index 0000000..4386693 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-disabled.png new file mode 100644 index 0000000..e35b883 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-over.9.png new file mode 100644 index 0000000..b383246 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-over.png new file mode 100644 index 0000000..265fda3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-pressed.9.png new file mode 100644 index 0000000..cdff2b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-pressed.png new file mode 100644 index 0000000..6e61ad1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus.9.png new file mode 100644 index 0000000..f23da20 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus.png new file mode 100644 index 0000000..647f431 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-pressed.9.png new file mode 100644 index 0000000..6791e9a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-pressed.png new file mode 100644 index 0000000..1b4d043 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked-over.9.png new file mode 100644 index 0000000..03c0adc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked-over.png new file mode 100644 index 0000000..13d4a68 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked.9.png new file mode 100644 index 0000000..9888982 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked.png new file mode 100644 index 0000000..766cccc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-checked.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-disabled.9.png new file mode 100644 index 0000000..3d73725 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-disabled.png new file mode 100644 index 0000000..36c6c29 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-over.9.png new file mode 100644 index 0000000..b8fc080 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-over.png new file mode 100644 index 0000000..7052bbd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-pressed.9.png new file mode 100644 index 0000000..4ae71dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-pressed.png new file mode 100644 index 0000000..29809ac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small.9.png new file mode 100644 index 0000000..a3f3a42 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small.png new file mode 100644 index 0000000..1b9dd3c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button.9.png new file mode 100644 index 0000000..be7e17d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/button.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/button.png new file mode 100644 index 0000000..e8f5510 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-alt.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-alt.png new file mode 100644 index 0000000..00294c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-alt.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked-disabled.png new file mode 100644 index 0000000..2c560d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked-over.png new file mode 100644 index 0000000..d28255d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked.png new file mode 100644 index 0000000..e655eec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-checked.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-disabled.png new file mode 100644 index 0000000..7e2c52b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-over.png new file mode 100644 index 0000000..00931e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox.png new file mode 100644 index 0000000..2a79abc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-dialog-table.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-dialog-table.9.png new file mode 100644 index 0000000..89fbd72 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-dialog-table.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-dialog-table.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-dialog-table.png new file mode 100644 index 0000000..c3299f0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-dialog-table.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-bar.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-bar.9.png new file mode 100644 index 0000000..e6a63a1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-bar.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-bar.png new file mode 100644 index 0000000..747cb2d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-over.9.png new file mode 100644 index 0000000..1bf9aa1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-over.png new file mode 100644 index 0000000..919606e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-pressed.9.png new file mode 100644 index 0000000..b590a54 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-pressed.png new file mode 100644 index 0000000..a21e475 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button.9.png new file mode 100644 index 0000000..08127f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button.png new file mode 100644 index 0000000..14fc1fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-over.9.png new file mode 100644 index 0000000..ce3d5a9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-over.png new file mode 100644 index 0000000..cd76288 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-pressed.9.png new file mode 100644 index 0000000..e02faa9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-pressed.png new file mode 100644 index 0000000..e5880b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button.9.png new file mode 100644 index 0000000..29d1ec5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button.png new file mode 100644 index 0000000..30acff9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list.9.png new file mode 100644 index 0000000..31a1e86 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list.png new file mode 100644 index 0000000..6be253d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/file-menu-list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-export.fnt new file mode 100644 index 0000000..a70e595 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=24 base=24 scaleW=167 scaleH=168 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=152 y=34 width=7 height=19 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=87 y=158 width=9 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=103 y=20 width=14 height=16 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=55 y=141 width=15 height=22 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=20 width=20 height=19 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="%" +char id=38 x=42 y=0 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=152 y=118 width=7 height=9 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=143 y=0 width=9 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=143 y=34 width=8 height=22 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=143 y=23 width=9 height=10 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=88 y=15 width=14 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=143 y=57 width=8 height=9 xoffset=0 yoffset=17 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=16 y=159 width=9 height=7 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=35 y=159 width=7 height=7 xoffset=0 yoffset=17 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=131 y=106 width=10 height=19 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=103 y=0 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=143 y=86 width=9 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=87 y=97 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=87 y=77 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=72 y=77 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=118 y=20 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="5" +char id=54 x=87 y=138 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="6" +char id=55 x=117 y=144 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=88 y=31 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=56 y=41 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=144 y=67 width=7 height=16 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=152 y=149 width=7 height=18 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=74 y=0 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=103 y=52 width=13 height=11 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=103 y=37 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter=">" +char id=63 x=118 y=0 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=57 width=20 height=21 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="@" +char id=65 x=20 y=79 width=18 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=39 y=60 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=24 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="C" +char id=68 x=21 y=20 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=102 y=109 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=102 y=68 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=20 y=99 width=18 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="G" +char id=72 x=72 y=17 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="H" +char id=73 x=153 y=0 width=7 height=19 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=117 y=107 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=72 y=57 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=102 y=146 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="L" +char id=77 x=20 y=119 width=18 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=38 y=139 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=122 width=19 height=19 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="O" +char id=80 x=72 y=37 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=0 y=99 width=19 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=39 y=100 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="R" +char id=83 x=39 y=40 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="S" +char id=84 x=56 y=82 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=21 y=40 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=20 y=139 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=23 height=19 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=39 y=20 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=39 y=80 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=71 y=144 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=142 y=118 width=9 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=132 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=142 y=141 width=9 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=118 y=40 width=11 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=159 width=15 height=7 xoffset=0 yoffset=20 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=26 y=159 width=8 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=58 y=0 width=15 height=16 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=71 y=102 width=15 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=56 y=102 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=56 y=61 width=15 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=39 y=120 width=15 height=16 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=132 y=42 width=10 height=20 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=56 y=20 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=87 y=117 width=14 height=20 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=160 y=20 width=6 height=19 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=152 y=54 width=7 height=23 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=117 y=86 width=13 height=20 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="k" +char id=108 x=152 y=128 width=7 height=20 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=40 width=20 height=16 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="m" +char id=110 x=88 y=51 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=21 y=60 width=15 height=16 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="o" +char id=112 x=55 y=120 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=71 y=123 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=131 y=148 width=10 height=16 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=117 y=69 width=13 height=16 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=131 y=86 width=11 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=102 y=129 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=117 y=52 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=142 width=19 height=16 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="w" +char id=120 x=117 y=127 width=13 height=16 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=102 y=88 width=14 height=20 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=131 y=69 width=12 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=132 y=20 width=10 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=153 y=78 width=7 height=24 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=131 y=126 width=10 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=89 y=0 width=13 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=142 y=106 width=10 height=11 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=0 y=79 width=19 height=19 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-export.png new file mode 100644 index 0000000..34e6698 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium-export.fnt new file mode 100644 index 0000000..a1e4622 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium-export.fnt @@ -0,0 +1,104 @@ +info face="font-medium-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=145 scaleH=145 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-medium-export.png" +chars count=98 +char id=33 x=137 y=0 width=6 height=15 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=119 y=14 width=8 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=64 y=130 width=13 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=35 y=31 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=16 width=18 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=35 y=51 width=14 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=27 y=136 width=6 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=137 y=91 width=7 height=19 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=128 y=14 width=8 height=19 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=106 y=133 width=9 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=93 y=97 width=12 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=126 y=129 width=7 height=9 xoffset=0 yoffset=16 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=119 y=122 width=9 height=6 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=119 y=23 width=7 height=6 xoffset=0 yoffset=16 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=118 y=30 width=9 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=65 y=89 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=129 y=74 width=8 height=16 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=106 y=49 width=12 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=106 y=67 width=12 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=79 y=0 width=13 height=15 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=106 y=85 width=12 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=79 y=16 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="6" +char id=55 x=79 y=52 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=92 y=122 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=79 y=86 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=138 y=33 width=6 height=13 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=129 y=112 width=7 height=16 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=106 y=103 width=12 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=34 y=133 width=12 height=10 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=35 y=87 width=13 height=12 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=93 y=80 width=12 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=18 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=0 y=118 width=16 height=15 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=35 y=69 width=14 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=19 y=16 width=15 height=17 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="C" +char id=68 x=19 y=34 width=15 height=17 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=79 y=104 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="E" +char id=70 x=93 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=18 y=66 width=16 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="G" +char id=72 x=50 y=16 width=14 height=15 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=134 y=129 width=7 height=15 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=93 y=49 width=12 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=37 y=0 width=14 height=15 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="K" +char id=76 x=93 y=17 width=13 height=16 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=18 y=84 width=16 height=15 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=18 y=100 width=15 height=15 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="N" +char id=79 x=17 y=118 width=16 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=50 y=32 width=14 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=84 width=17 height=19 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=50 y=49 width=14 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=50 y=66 width=14 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=79 y=69 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=34 y=116 width=15 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=34 y=100 width=15 height=15 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=20 height=15 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="W" +char id=88 x=50 y=84 width=14 height=15 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="X" +char id=89 x=21 y=0 width=15 height=15 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="Y" +char id=90 x=65 y=107 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=129 y=54 width=8 height=19 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=107 y=30 width=10 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=129 y=34 width=8 height=19 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=93 y=110 width=10 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=0 y=136 width=13 height=6 xoffset=0 yoffset=19 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=129 y=0 width=7 height=7 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=50 y=115 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=65 y=17 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=50 y=130 width=13 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=65 y=53 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=50 y=100 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="e" +char id=102 x=119 y=68 width=9 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=65 y=35 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=65 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="h" +char id=105 x=137 y=16 width=6 height=16 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=129 y=91 width=7 height=20 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=106 y=116 width=12 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=137 y=111 width=6 height=16 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=34 width=18 height=13 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="m" +char id=110 x=19 y=52 width=13 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="n" +char id=111 x=35 y=16 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=78 y=125 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=79 y=34 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=119 y=0 width=9 height=13 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=107 y=0 width=11 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=119 y=105 width=9 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=93 y=34 width=13 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=93 y=66 width=12 height=13 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=104 width=17 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=52 y=0 width=12 height=13 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=65 y=71 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=107 y=15 width=11 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=119 y=48 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=138 y=47 width=6 height=21 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=119 y=85 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=14 y=136 width=12 height=7 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=116 y=133 width=9 height=9 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=66 width=17 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium-export.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium-export.png new file mode 100644 index 0000000..9a902bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium.png new file mode 100644 index 0000000..49c5c44 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-medium.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small-export.fnt new file mode 100644 index 0000000..d2a8ea5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small-export.fnt @@ -0,0 +1,104 @@ +info face="font-small-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=18 base=18 scaleW=135 scaleH=140 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-small-export.png" +chars count=98 +char id=33 x=127 y=89 width=7 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=110 y=50 width=8 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=59 y=116 width=12 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=32 y=34 width=13 height=18 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=0 y=50 width=16 height=16 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=72 y=98 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=128 y=40 width=6 height=8 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=127 y=70 width=7 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=119 y=14 width=8 height=18 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=119 y=33 width=8 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=98 y=65 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=119 y=124 width=6 height=8 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=109 y=132 width=9 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=78 y=132 width=6 height=7 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=109 y=115 width=9 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=72 y=68 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=110 y=60 width=8 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=47 y=0 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=73 y=14 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=59 y=99 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=98 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=85 y=62 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=98 y=31 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=60 y=0 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=60 y=17 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=120 y=0 width=6 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=119 y=108 width=7 height=15 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=97 y=127 width=11 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=85 y=127 width=11 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=72 y=85 width=12 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=98 y=48 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=67 width=16 height=17 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=17 y=65 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=45 y=104 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=16 y=119 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=16 y=102 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=85 y=79 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=85 y=96 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="F" +char id=71 x=0 y=116 width=15 height=16 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="G" +char id=72 x=46 y=34 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=128 y=49 width=6 height=16 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=86 y=34 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=32 y=53 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=86 y=17 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=17 y=31 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=19 y=0 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=0 y=85 width=15 height=16 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=32 y=17 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=0 y=31 width=16 height=18 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="Q" +char id=82 x=46 y=17 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=45 y=87 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="S" +char id=84 x=33 y=0 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=32 y=70 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=17 y=48 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=18 height=16 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=45 y=121 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=46 y=51 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=60 y=34 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=119 y=70 width=7 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=110 y=33 width=8 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="\" +char id=93 x=119 y=89 width=7 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=86 y=51 width=9 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=0 y=133 width=12 height=6 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=71 y=132 width=6 height=7 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=73 y=48 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=31 y=102 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=59 y=68 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=46 y=68 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=32 y=87 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=119 y=53 width=8 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=59 y=82 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=60 y=51 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=127 y=123 width=6 height=16 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=128 y=0 width=6 height=19 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=86 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=127 y=106 width=7 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=17 width=17 height=13 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=73 y=0 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=18 y=17 width=13 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="o" +char id=112 x=31 y=119 width=13 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=72 y=115 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=110 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=98 y=93 width=10 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=109 y=98 width=9 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=85 y=113 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=97 y=113 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=102 width=15 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=98 y=17 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=73 y=31 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=98 y=79 width=10 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=109 y=79 width=9 height=18 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=128 y=20 width=6 height=19 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=110 y=14 width=8 height=18 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=59 y=130 width=11 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="~" +char id=8226 x=119 y=43 width=8 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=16 y=85 width=15 height=16 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small-export.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small-export.png new file mode 100644 index 0000000..563c238 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small.png new file mode 100644 index 0000000..039fb46 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-export.fnt new file mode 100644 index 0000000..a8f45be --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=40 base=40 scaleW=293 scaleH=297 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=256 y=0 width=15 height=34 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="!" +char id=34 x=237 y=258 width=20 height=19 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=185 y=142 width=26 height=32 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="#" +char id=36 x=102 y=35 width=28 height=40 xoffset=0 yoffset=5 xadvance=26 page=0 chnl=0 letter="$" +char id=37 x=0 y=35 width=38 height=34 xoffset=0 yoffset=6 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=67 y=233 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="&" +char id=39 x=275 y=37 width=13 height=17 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="'" +char id=40 x=237 y=134 width=18 height=39 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=260 y=205 width=18 height=39 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=128 y=274 width=21 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=186 y=35 width=25 height=26 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="+" +char id=44 x=244 y=278 width=15 height=18 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=0 letter="," +char id=45 x=185 y=283 width=20 height=13 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=228 y=281 width=15 height=15 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=217 y=0 width=22 height=34 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="/" +char id=48 x=164 y=0 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=237 y=99 width=21 height=34 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="1" +char id=50 x=185 y=107 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="2" +char id=51 x=211 y=246 width=25 height=34 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="3" +char id=52 x=157 y=183 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="4" +char id=53 x=191 y=0 width=25 height=34 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="5" +char id=54 x=159 y=35 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=158 y=70 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="7" +char id=56 x=136 y=0 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="8" +char id=57 x=131 y=35 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="9" +char id=58 x=260 y=37 width=14 height=28 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=240 y=0 width=15 height=31 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter=";" +char id=60 x=212 y=70 width=24 height=23 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="<" +char id=61 x=79 y=274 width=25 height=20 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="=" +char id=62 x=212 y=123 width=24 height=23 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter=">" +char id=63 x=212 y=35 width=25 height=34 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="?" +char id=64 x=0 y=233 width=33 height=34 xoffset=0 yoffset=6 xadvance=31 page=0 chnl=0 letter="@" +char id=65 x=34 y=233 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="A" +char id=66 x=128 y=239 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="B" +char id=67 x=157 y=148 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="C" +char id=68 x=39 y=35 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="D" +char id=69 x=157 y=255 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="E" +char id=70 x=129 y=76 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="F" +char id=71 x=44 y=0 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="G" +char id=72 x=71 y=35 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="H" +char id=73 x=278 y=245 width=14 height=34 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="I" +char id=74 x=238 y=35 width=21 height=34 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="J" +char id=75 x=68 y=169 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="K" +char id=76 x=185 y=211 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="L" +char id=77 x=0 y=99 width=37 height=34 xoffset=0 yoffset=6 xadvance=35 page=0 chnl=0 letter="M" +char id=78 x=35 y=198 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="N" +char id=79 x=35 y=163 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="O" +char id=80 x=107 y=0 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="P" +char id=81 x=0 y=198 width=34 height=34 xoffset=0 yoffset=6 xadvance=32 page=0 chnl=0 letter="Q" +char id=82 x=99 y=204 width=29 height=34 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="R" +char id=83 x=100 y=105 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="S" +char id=84 x=99 y=169 width=29 height=34 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="T" +char id=85 x=76 y=0 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="U" +char id=86 x=38 y=99 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=43 height=34 xoffset=0 yoffset=6 xadvance=41 page=0 chnl=0 letter="W" +char id=88 x=68 y=134 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="X" +char id=89 x=71 y=70 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="Y" +char id=90 x=99 y=239 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="Z" +char id=91 x=259 y=115 width=19 height=44 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=212 y=210 width=22 height=34 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="\" +char id=93 x=259 y=160 width=18 height=44 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="]" +char id=94 x=129 y=220 width=19 height=17 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="^" +char id=95 x=27 y=268 width=25 height=13 xoffset=0 yoffset=33 xadvance=23 page=0 chnl=0 letter="_" +char id=96 x=211 y=281 width=16 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="`" +char id=97 x=0 y=268 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="a" +char id=98 x=157 y=111 width=27 height=36 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="b" +char id=99 x=212 y=147 width=24 height=28 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=157 y=218 width=27 height=36 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="d" +char id=101 x=102 y=76 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="e" +char id=102 x=237 y=221 width=22 height=36 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=129 y=147 width=27 height=36 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="g" +char id=104 x=185 y=70 width=26 height=36 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="h" +char id=105 x=278 y=160 width=14 height=34 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="i" +char id=106 x=260 y=245 width=17 height=42 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="j" +char id=107 x=185 y=246 width=25 height=36 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 letter="k" +char id=108 x=272 y=0 width=14 height=36 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="l" +char id=109 x=0 y=134 width=36 height=28 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="m" +char id=110 x=68 y=204 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=100 y=140 width=27 height=28 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="o" +char id=112 x=129 y=184 width=27 height=35 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="p" +char id=113 x=129 y=111 width=27 height=35 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="q" +char id=114 x=237 y=70 width=21 height=28 xoffset=0 yoffset=12 xadvance=19 page=0 chnl=0 letter="r" +char id=115 x=53 y=268 width=25 height=28 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="s" +char id=116 x=212 y=176 width=23 height=33 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="t" +char id=117 x=37 y=134 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="u" +char id=118 x=71 y=105 width=27 height=28 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=0 y=70 width=38 height=28 xoffset=0 yoffset=12 xadvance=36 page=0 chnl=0 letter="w" +char id=120 x=39 y=70 width=27 height=28 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="x" +char id=121 x=185 y=175 width=26 height=35 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="y" +char id=122 x=212 y=94 width=24 height=28 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=259 y=70 width=21 height=44 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=0 letter="{" +char id=124 x=279 y=195 width=11 height=33 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=236 y=176 width=22 height=44 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="}" +char id=126 x=27 y=282 width=25 height=14 xoffset=0 yoffset=17 xadvance=23 page=0 chnl=0 letter="~" +char id=8226 x=105 y=274 width=22 height=22 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="•" +char id=169 x=0 y=163 width=34 height=34 xoffset=0 yoffset=6 xadvance=32 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=136 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-export.png new file mode 100644 index 0000000..254e7a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large-export.fnt new file mode 100644 index 0000000..50538c7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-large-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=75 base=75 scaleW=512 scaleH=1024 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-large-export.png" +chars count=98 +char id=33 x=297 y=574 width=32 height=68 xoffset=0 yoffset=7 xadvance=27 page=0 chnl=0 letter="!" +char id=34 x=258 y=0 width=42 height=39 xoffset=0 yoffset=7 xadvance=37 page=0 chnl=0 letter=""" +char id=35 x=193 y=209 width=54 height=67 xoffset=0 yoffset=8 xadvance=49 page=0 chnl=0 letter="#" +char id=36 x=71 y=321 width=60 height=82 xoffset=0 yoffset=3 xadvance=55 page=0 chnl=0 letter="$" +char id=37 x=0 y=69 width=78 height=69 xoffset=0 yoffset=7 xadvance=73 page=0 chnl=0 letter="%" +char id=38 x=0 y=949 width=64 height=70 xoffset=0 yoffset=6 xadvance=59 page=0 chnl=0 letter="&" +char id=39 x=301 y=0 width=29 height=39 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="'" +char id=40 x=297 y=40 width=37 height=79 xoffset=0 yoffset=5 xadvance=32 page=0 chnl=0 letter="(" +char id=41 x=297 y=824 width=38 height=79 xoffset=0 yoffset=5 xadvance=33 page=0 chnl=0 letter=")" +char id=42 x=189 y=578 width=44 height=43 xoffset=0 yoffset=7 xadvance=39 page=0 chnl=0 letter="*" +char id=43 x=243 y=907 width=52 height=54 xoffset=0 yoffset=15 xadvance=47 page=0 chnl=0 letter="+" +char id=44 x=294 y=304 width=32 height=38 xoffset=0 yoffset=45 xadvance=27 page=0 chnl=0 letter="," +char id=45 x=136 y=282 width=42 height=28 xoffset=0 yoffset=30 xadvance=37 page=0 chnl=0 letter="-" +char id=46 x=296 y=218 width=31 height=30 xoffset=0 yoffset=45 xadvance=26 page=0 chnl=0 letter="." +char id=47 x=248 y=197 width=47 height=69 xoffset=0 yoffset=7 xadvance=42 page=0 chnl=0 letter="/" +char id=48 x=189 y=392 width=55 height=70 xoffset=0 yoffset=6 xadvance=50 page=0 chnl=0 letter="0" +char id=49 x=293 y=440 width=44 height=68 xoffset=0 yoffset=7 xadvance=39 page=0 chnl=0 letter="1" +char id=50 x=243 y=767 width=53 height=69 xoffset=0 yoffset=6 xadvance=48 page=0 chnl=0 letter="2" +char id=51 x=195 y=69 width=54 height=70 xoffset=0 yoffset=6 xadvance=49 page=0 chnl=0 letter="3" +char id=52 x=129 y=955 width=57 height=68 xoffset=0 yoffset=7 xadvance=52 page=0 chnl=0 letter="4" +char id=53 x=244 y=520 width=52 height=69 xoffset=0 yoffset=7 xadvance=47 page=0 chnl=0 letter="5" +char id=54 x=188 y=624 width=55 height=70 xoffset=0 yoffset=6 xadvance=50 page=0 chnl=0 letter="6" +char id=55 x=149 y=0 width=55 height=68 xoffset=0 yoffset=7 xadvance=50 page=0 chnl=0 letter="7" +char id=56 x=138 y=69 width=56 height=70 xoffset=0 yoffset=6 xadvance=51 page=0 chnl=0 letter="8" +char id=57 x=187 y=887 width=55 height=70 xoffset=0 yoffset=6 xadvance=50 page=0 chnl=0 letter="9" +char id=58 x=331 y=509 width=31 height=56 xoffset=0 yoffset=19 xadvance=26 page=0 chnl=0 letter=":" +char id=59 x=297 y=509 width=33 height=64 xoffset=0 yoffset=19 xadvance=28 page=0 chnl=0 letter=";" +char id=60 x=190 y=340 width=53 height=48 xoffset=0 yoffset=18 xadvance=48 page=0 chnl=0 letter="<" +char id=61 x=188 y=767 width=52 height=43 xoffset=0 yoffset=20 xadvance=47 page=0 chnl=0 letter="=" +char id=62 x=243 y=962 width=52 height=48 xoffset=0 yoffset=18 xadvance=47 page=0 chnl=0 letter=">" +char id=63 x=243 y=837 width=53 height=69 xoffset=0 yoffset=6 xadvance=48 page=0 chnl=0 letter="?" +char id=64 x=0 y=462 width=70 height=70 xoffset=0 yoffset=6 xadvance=65 page=0 chnl=0 letter="@" +char id=65 x=0 y=533 width=66 height=68 xoffset=0 yoffset=7 xadvance=61 page=0 chnl=0 letter="A" +char id=66 x=71 y=404 width=59 height=68 xoffset=0 yoffset=7 xadvance=54 page=0 chnl=0 letter="B" +char id=67 x=132 y=321 width=57 height=70 xoffset=0 yoffset=6 xadvance=52 page=0 chnl=0 letter="C" +char id=68 x=65 y=882 width=63 height=68 xoffset=0 yoffset=7 xadvance=58 page=0 chnl=0 letter="D" +char id=69 x=79 y=69 width=58 height=68 xoffset=0 yoffset=7 xadvance=53 page=0 chnl=0 letter="E" +char id=70 x=129 y=672 width=58 height=68 xoffset=0 yoffset=7 xadvance=53 page=0 chnl=0 letter="F" +char id=71 x=65 y=811 width=64 height=70 xoffset=0 yoffset=6 xadvance=59 page=0 chnl=0 letter="G" +char id=72 x=0 y=880 width=64 height=68 xoffset=0 yoffset=7 xadvance=59 page=0 chnl=0 letter="H" +char id=73 x=330 y=574 width=32 height=68 xoffset=0 yoffset=7 xadvance=27 page=0 chnl=0 letter="I" +char id=74 x=250 y=58 width=46 height=69 xoffset=0 yoffset=7 xadvance=41 page=0 chnl=0 letter="J" +char id=75 x=67 y=533 width=63 height=68 xoffset=0 yoffset=7 xadvance=58 page=0 chnl=0 letter="K" +char id=76 x=138 y=140 width=55 height=68 xoffset=0 yoffset=7 xadvance=50 page=0 chnl=0 letter="L" +char id=77 x=0 y=252 width=75 height=68 xoffset=0 yoffset=7 xadvance=70 page=0 chnl=0 letter="M" +char id=78 x=0 y=671 width=66 height=68 xoffset=0 yoffset=7 xadvance=61 page=0 chnl=0 letter="N" +char id=79 x=0 y=740 width=66 height=70 xoffset=0 yoffset=6 xadvance=61 page=0 chnl=0 letter="O" +char id=80 x=90 y=0 width=58 height=68 xoffset=0 yoffset=7 xadvance=53 page=0 chnl=0 letter="P" +char id=81 x=0 y=391 width=70 height=70 xoffset=0 yoffset=6 xadvance=65 page=0 chnl=0 letter="Q" +char id=82 x=67 y=672 width=61 height=68 xoffset=0 yoffset=7 xadvance=56 page=0 chnl=0 letter="R" +char id=83 x=78 y=139 width=59 height=70 xoffset=0 yoffset=6 xadvance=54 page=0 chnl=0 letter="S" +char id=84 x=67 y=741 width=61 height=68 xoffset=0 yoffset=7 xadvance=56 page=0 chnl=0 letter="T" +char id=85 x=67 y=602 width=62 height=69 xoffset=0 yoffset=7 xadvance=57 page=0 chnl=0 letter="U" +char id=86 x=0 y=602 width=66 height=68 xoffset=0 yoffset=7 xadvance=61 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=89 height=68 xoffset=0 yoffset=7 xadvance=84 page=0 chnl=0 letter="W" +char id=88 x=0 y=811 width=64 height=68 xoffset=0 yoffset=7 xadvance=59 page=0 chnl=0 letter="X" +char id=89 x=65 y=951 width=63 height=68 xoffset=0 yoffset=7 xadvance=58 page=0 chnl=0 letter="Y" +char id=90 x=76 y=252 width=59 height=68 xoffset=0 yoffset=7 xadvance=54 page=0 chnl=0 letter="Z" +char id=91 x=296 y=128 width=39 height=89 xoffset=0 yoffset=0 xadvance=34 page=0 chnl=0 letter="[" +char id=92 x=245 y=350 width=47 height=69 xoffset=0 yoffset=7 xadvance=42 page=0 chnl=0 letter="\" +char id=93 x=296 y=907 width=39 height=89 xoffset=0 yoffset=0 xadvance=34 page=0 chnl=0 letter="]" +char id=94 x=294 y=267 width=40 height=36 xoffset=0 yoffset=5 xadvance=35 page=0 chnl=0 letter="^" +char id=95 x=77 y=210 width=52 height=28 xoffset=0 yoffset=59 xadvance=47 page=0 chnl=0 letter="_" +char id=96 x=245 y=488 width=34 height=29 xoffset=0 yoffset=5 xadvance=29 page=0 chnl=0 letter="`" +char id=97 x=190 y=282 width=54 height=57 xoffset=0 yoffset=18 xadvance=49 page=0 chnl=0 letter="a" +char id=98 x=131 y=404 width=57 height=72 xoffset=0 yoffset=3 xadvance=52 page=0 chnl=0 letter="b" +char id=99 x=244 y=648 width=50 height=57 xoffset=0 yoffset=18 xadvance=45 page=0 chnl=0 letter="c" +char id=100 x=129 y=882 width=57 height=72 xoffset=0 yoffset=3 xadvance=52 page=0 chnl=0 letter="d" +char id=101 x=189 y=520 width=54 height=57 xoffset=0 yoffset=18 xadvance=49 page=0 chnl=0 letter="e" +char id=102 x=245 y=277 width=48 height=72 xoffset=0 yoffset=2 xadvance=43 page=0 chnl=0 letter="f" +char id=103 x=131 y=477 width=57 height=73 xoffset=0 yoffset=18 xadvance=52 page=0 chnl=0 letter="g" +char id=104 x=188 y=695 width=55 height=71 xoffset=0 yoffset=3 xadvance=50 page=0 chnl=0 letter="h" +char id=105 x=335 y=0 width=31 height=68 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="i" +char id=106 x=297 y=738 width=38 height=85 xoffset=0 yoffset=6 xadvance=33 page=0 chnl=0 letter="j" +char id=107 x=187 y=814 width=55 height=72 xoffset=0 yoffset=3 xadvance=50 page=0 chnl=0 letter="k" +char id=108 x=335 y=218 width=31 height=71 xoffset=0 yoffset=3 xadvance=26 page=0 chnl=0 letter="l" +char id=109 x=0 y=195 width=76 height=56 xoffset=0 yoffset=18 xadvance=71 page=0 chnl=0 letter="m" +char id=110 x=189 y=463 width=55 height=56 xoffset=0 yoffset=18 xadvance=50 page=0 chnl=0 letter="n" +char id=111 x=130 y=814 width=56 height=57 xoffset=0 yoffset=18 xadvance=51 page=0 chnl=0 letter="o" +char id=112 x=131 y=551 width=57 height=72 xoffset=0 yoffset=18 xadvance=52 page=0 chnl=0 letter="p" +char id=113 x=130 y=741 width=57 height=72 xoffset=0 yoffset=18 xadvance=52 page=0 chnl=0 letter="q" +char id=114 x=249 y=140 width=44 height=56 xoffset=0 yoffset=18 xadvance=39 page=0 chnl=0 letter="r" +char id=115 x=205 y=0 width=52 height=57 xoffset=0 yoffset=18 xadvance=47 page=0 chnl=0 letter="s" +char id=116 x=245 y=420 width=47 height=67 xoffset=0 yoffset=8 xadvance=42 page=0 chnl=0 letter="t" +char id=117 x=194 y=140 width=54 height=56 xoffset=0 yoffset=19 xadvance=49 page=0 chnl=0 letter="u" +char id=118 x=187 y=958 width=55 height=55 xoffset=0 yoffset=19 xadvance=50 page=0 chnl=0 letter="v" +char id=119 x=0 y=139 width=77 height=55 xoffset=0 yoffset=19 xadvance=72 page=0 chnl=0 letter="w" +char id=120 x=71 y=473 width=56 height=57 xoffset=0 yoffset=18 xadvance=51 page=0 chnl=0 letter="x" +char id=121 x=136 y=210 width=56 height=71 xoffset=0 yoffset=19 xadvance=51 page=0 chnl=0 letter="y" +char id=122 x=244 y=590 width=51 height=57 xoffset=0 yoffset=18 xadvance=46 page=0 chnl=0 letter="z" +char id=123 x=295 y=648 width=46 height=89 xoffset=0 yoffset=0 xadvance=41 page=0 chnl=0 letter="{" +char id=124 x=336 y=738 width=25 height=67 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="|" +char id=125 x=293 y=350 width=46 height=89 xoffset=0 yoffset=0 xadvance=41 page=0 chnl=0 letter="}" +char id=126 x=130 y=624 width=52 height=31 xoffset=0 yoffset=27 xadvance=47 page=0 chnl=0 letter="~" +char id=8226 x=244 y=706 width=47 height=47 xoffset=0 yoffset=20 xadvance=42 page=0 chnl=0 letter="•" +char id=169 x=0 y=321 width=70 height=69 xoffset=0 yoffset=6 xadvance=65 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=33 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=264 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large-export.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large-export.png new file mode 100644 index 0000000..327dcc8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large.png new file mode 100644 index 0000000..3ac0336 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title-large.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title.png new file mode 100644 index 0000000..fbfe2ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/font.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/font.png new file mode 100644 index 0000000..2e97d4f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/list-selection.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/list-selection.9.png new file mode 100644 index 0000000..c948eeb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/list-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/list-selection.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/list-selection.png new file mode 100644 index 0000000..4408cb6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/list-selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/list.9.png new file mode 100644 index 0000000..20381ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/list.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/list.png new file mode 100644 index 0000000..3af783f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked-disabled.png new file mode 100644 index 0000000..cd9ef37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked-over.png new file mode 100644 index 0000000..dec96e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked.png new file mode 100644 index 0000000..a103f8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-checked.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-disabled.png new file mode 100644 index 0000000..f1e4377 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-over.png new file mode 100644 index 0000000..7e0af13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/radio.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio.png new file mode 100644 index 0000000..6d14c88 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-horizontal.9.png new file mode 100644 index 0000000..5176769 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-horizontal.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-horizontal.png new file mode 100644 index 0000000..1cacf00 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-vertical.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-vertical.9.png new file mode 100644 index 0000000..d90895c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-vertical.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-vertical.png new file mode 100644 index 0000000..589f39e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-back-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-horizontal.9.png new file mode 100644 index 0000000..bae152b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-horizontal.png new file mode 100644 index 0000000..f2911ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-vertical.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-vertical.9.png new file mode 100644 index 0000000..be338b1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-vertical.png new file mode 100644 index 0000000..c0e4751 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/scroll-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-disabled.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-disabled.9.png new file mode 100644 index 0000000..15fe917 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-disabled.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-disabled.png new file mode 100644 index 0000000..e5c99bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-over.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-over.9.png new file mode 100644 index 0000000..4c019c3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-over.png new file mode 100644 index 0000000..7cace4d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed-alt.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed-alt.9.png new file mode 100644 index 0000000..4623ffe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed-alt.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed-alt.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed-alt.png new file mode 100644 index 0000000..06ef880 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed-alt.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed.9.png new file mode 100644 index 0000000..bb35d64 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed.png new file mode 100644 index 0000000..cfea540 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box.9.png new file mode 100644 index 0000000..8dccc7d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box.png new file mode 100644 index 0000000..96f8a71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/selection.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/selection.png new file mode 100644 index 0000000..b28cf6d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-horizontal.9.png new file mode 100644 index 0000000..0015f5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-horizontal.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-horizontal.png new file mode 100644 index 0000000..2766c3c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-vertical.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-vertical.9.png new file mode 100644 index 0000000..fdeba25 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-vertical.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-vertical.png new file mode 100644 index 0000000..23c876a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-disabled-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-horizontal.9.png new file mode 100644 index 0000000..87b2607 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-horizontal.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-horizontal.png new file mode 100644 index 0000000..ccc718f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-vertical.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-vertical.9.png new file mode 100644 index 0000000..7fe6373 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-vertical.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-vertical.png new file mode 100644 index 0000000..6b75571 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-background-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-backgrround-disabled-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-backgrround-disabled-horizontal.9.png new file mode 100644 index 0000000..d816687 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-backgrround-disabled-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-backgrround-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-backgrround-horizontal.9.png new file mode 100644 index 0000000..8e084c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-backgrround-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-horizontal.9.png new file mode 100644 index 0000000..6293d8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-horizontal.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-horizontal.png new file mode 100644 index 0000000..e8d6665 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-vertical.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-vertical.9.png new file mode 100644 index 0000000..33278a4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-vertical.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-vertical.png new file mode 100644 index 0000000..9b4ebe1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-disabled-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-horizontal.9.png new file mode 100644 index 0000000..a1eff5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-horizontal.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-horizontal.png new file mode 100644 index 0000000..313cde6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-vertical.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-vertical.9.png new file mode 100644 index 0000000..0ccd116 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-vertical.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-vertical.png new file mode 100644 index 0000000..0aa95a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-before-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-disabled.png new file mode 100644 index 0000000..3dbb0a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-pressed.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-pressed.png new file mode 100644 index 0000000..24f671d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob.png new file mode 100644 index 0000000..81bd55f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off-disabled.png new file mode 100644 index 0000000..71906be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off-over.png new file mode 100644 index 0000000..047b2cd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off.png new file mode 100644 index 0000000..24d15d9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on-disabled.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on-disabled.png new file mode 100644 index 0000000..a971c41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on-over.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on-over.png new file mode 100644 index 0000000..ec19273 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on.png new file mode 100644 index 0000000..8a44a70 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/switch-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-after.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-after.png new file mode 100644 index 0000000..68de687 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-after.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-before.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-before.png new file mode 100644 index 0000000..3dfb780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-before.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-checked.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-checked.9.png new file mode 100644 index 0000000..d9c1275 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-checked.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-checked.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-checked.png new file mode 100644 index 0000000..4d13ebd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-checked.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-pane.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-pane.9.png new file mode 100644 index 0000000..13a791d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-pane.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-pane.png new file mode 100644 index 0000000..6d6ed79 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab-pane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab.9.png new file mode 100644 index 0000000..6bff9d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/tab.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab.png new file mode 100644 index 0000000..cbefd56 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/tab.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field-spinner.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field-spinner.9.png new file mode 100644 index 0000000..c8acc1d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field-spinner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field-spinner.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field-spinner.png new file mode 100644 index 0000000..133d1bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field-spinner.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field.9.png new file mode 100644 index 0000000..6006b8d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field.png new file mode 100644 index 0000000..120ca49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/text-field.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/white.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/window-tool.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/window-tool.9.png new file mode 100644 index 0000000..50a1c8e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/window-tool.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/window-tool.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/window-tool.png new file mode 100644 index 0000000..7d60c04 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/window-tool.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/window.9.png new file mode 100644 index 0000000..b8b4ff1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/raw/window.png b/src/main/resources/omni_power/gdx-skins/sgx/raw/window.png new file mode 100644 index 0000000..b0169de Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-export.fnt new file mode 100644 index 0000000..a70e595 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=24 base=24 scaleW=167 scaleH=168 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=152 y=34 width=7 height=19 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=87 y=158 width=9 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=103 y=20 width=14 height=16 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="#" +char id=36 x=55 y=141 width=15 height=22 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=20 width=20 height=19 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="%" +char id=38 x=42 y=0 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=152 y=118 width=7 height=9 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=143 y=0 width=9 height=22 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=143 y=34 width=8 height=22 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=143 y=23 width=9 height=10 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=88 y=15 width=14 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=143 y=57 width=8 height=9 xoffset=0 yoffset=17 xadvance=6 page=0 chnl=0 letter="," +char id=45 x=16 y=159 width=9 height=7 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=35 y=159 width=7 height=7 xoffset=0 yoffset=17 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=131 y=106 width=10 height=19 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="/" +char id=48 x=103 y=0 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=143 y=86 width=9 height=19 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=87 y=97 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=87 y=77 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="3" +char id=52 x=72 y=77 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=118 y=20 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="5" +char id=54 x=87 y=138 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="6" +char id=55 x=117 y=144 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=88 y=31 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="8" +char id=57 x=56 y=41 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=144 y=67 width=7 height=16 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=":" +char id=59 x=152 y=149 width=7 height=18 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=74 y=0 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=103 y=52 width=13 height=11 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=103 y=37 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter=">" +char id=63 x=118 y=0 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=57 width=20 height=21 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="@" +char id=65 x=20 y=79 width=18 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=39 y=60 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="B" +char id=67 x=24 y=0 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="C" +char id=68 x=21 y=20 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=102 y=109 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=102 y=68 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=20 y=99 width=18 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="G" +char id=72 x=72 y=17 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="H" +char id=73 x=153 y=0 width=7 height=19 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=117 y=107 width=13 height=19 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=72 y=57 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=102 y=146 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="L" +char id=77 x=20 y=119 width=18 height=19 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=38 y=139 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="N" +char id=79 x=0 y=122 width=19 height=19 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="O" +char id=80 x=72 y=37 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=0 y=99 width=19 height=22 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=39 y=100 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="R" +char id=83 x=39 y=40 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="S" +char id=84 x=56 y=82 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="T" +char id=85 x=21 y=40 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=20 y=139 width=17 height=19 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=23 height=19 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=39 y=20 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="X" +char id=89 x=39 y=80 width=16 height=19 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=71 y=144 width=15 height=19 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=142 y=118 width=9 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=132 y=0 width=10 height=19 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=142 y=141 width=9 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="]" +char id=94 x=118 y=40 width=11 height=11 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=0 y=159 width=15 height=7 xoffset=0 yoffset=20 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=26 y=159 width=8 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="`" +char id=97 x=58 y=0 width=15 height=16 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=71 y=102 width=15 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=56 y=102 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=56 y=61 width=15 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=39 y=120 width=15 height=16 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=132 y=42 width=10 height=20 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=56 y=20 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=87 y=117 width=14 height=20 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="h" +char id=105 x=160 y=20 width=6 height=19 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=152 y=54 width=7 height=23 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=117 y=86 width=13 height=20 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="k" +char id=108 x=152 y=128 width=7 height=20 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=40 width=20 height=16 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="m" +char id=110 x=88 y=51 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=21 y=60 width=15 height=16 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="o" +char id=112 x=55 y=120 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=71 y=123 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=131 y=148 width=10 height=16 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=117 y=69 width=13 height=16 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=131 y=86 width=11 height=19 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=102 y=129 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=117 y=52 width=14 height=16 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=0 y=142 width=19 height=16 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="w" +char id=120 x=117 y=127 width=13 height=16 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=102 y=88 width=14 height=20 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=131 y=69 width=12 height=16 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=132 y=20 width=10 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="{" +char id=124 x=153 y=78 width=7 height=24 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=131 y=126 width=10 height=21 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="}" +char id=126 x=89 y=0 width=13 height=7 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=142 y=106 width=10 height=11 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=0 y=79 width=19 height=19 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/font-medium-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-medium-export.fnt new file mode 100644 index 0000000..a1e4622 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-medium-export.fnt @@ -0,0 +1,104 @@ +info face="font-medium-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=145 scaleH=145 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-medium-export.png" +chars count=98 +char id=33 x=137 y=0 width=6 height=15 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=119 y=14 width=8 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=64 y=130 width=13 height=14 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=35 y=31 width=14 height=19 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="$" +char id=37 x=0 y=16 width=18 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=35 y=51 width=14 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="&" +char id=39 x=27 y=136 width=6 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=137 y=91 width=7 height=19 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=128 y=14 width=8 height=19 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=106 y=133 width=9 height=8 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=93 y=97 width=12 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="+" +char id=44 x=126 y=129 width=7 height=9 xoffset=0 yoffset=16 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=119 y=122 width=9 height=6 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=119 y=23 width=7 height=6 xoffset=0 yoffset=16 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=118 y=30 width=9 height=17 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=65 y=89 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=129 y=74 width=8 height=16 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=106 y=49 width=12 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=106 y=67 width=12 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=79 y=0 width=13 height=15 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=106 y=85 width=12 height=17 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=79 y=16 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="6" +char id=55 x=79 y=52 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=92 y=122 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="8" +char id=57 x=79 y=86 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=138 y=33 width=6 height=13 xoffset=0 yoffset=9 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=129 y=112 width=7 height=16 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=106 y=103 width=12 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="<" +char id=61 x=34 y=133 width=12 height=10 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=35 y=87 width=13 height=12 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=93 y=80 width=12 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="?" +char id=64 x=0 y=48 width=18 height=17 xoffset=0 yoffset=6 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=0 y=118 width=16 height=15 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="A" +char id=66 x=35 y=69 width=14 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=19 y=16 width=15 height=17 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="C" +char id=68 x=19 y=34 width=15 height=17 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="D" +char id=69 x=79 y=104 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="E" +char id=70 x=93 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="F" +char id=71 x=18 y=66 width=16 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="G" +char id=72 x=50 y=16 width=14 height=15 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=134 y=129 width=7 height=15 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="I" +char id=74 x=93 y=49 width=12 height=16 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="J" +char id=75 x=37 y=0 width=14 height=15 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="K" +char id=76 x=93 y=17 width=13 height=16 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="L" +char id=77 x=18 y=84 width=16 height=15 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=18 y=100 width=15 height=15 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="N" +char id=79 x=17 y=118 width=16 height=17 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=50 y=32 width=14 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=84 width=17 height=19 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="Q" +char id=82 x=50 y=49 width=14 height=16 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=50 y=66 width=14 height=17 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="S" +char id=84 x=79 y=69 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=34 y=116 width=15 height=16 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=34 y=100 width=15 height=15 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=20 height=15 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="W" +char id=88 x=50 y=84 width=14 height=15 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="X" +char id=89 x=21 y=0 width=15 height=15 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="Y" +char id=90 x=65 y=107 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=129 y=54 width=8 height=19 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=107 y=30 width=10 height=17 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=129 y=34 width=8 height=19 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=93 y=110 width=10 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=0 y=136 width=13 height=6 xoffset=0 yoffset=19 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=129 y=0 width=7 height=7 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=50 y=115 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="a" +char id=98 x=65 y=17 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=50 y=130 width=13 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="c" +char id=100 x=65 y=53 width=13 height=17 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="d" +char id=101 x=50 y=100 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="e" +char id=102 x=119 y=68 width=9 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=65 y=35 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="g" +char id=104 x=65 y=0 width=13 height=16 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="h" +char id=105 x=137 y=16 width=6 height=16 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=129 y=91 width=7 height=20 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=106 y=116 width=12 height=16 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter="k" +char id=108 x=137 y=111 width=6 height=16 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=34 width=18 height=13 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="m" +char id=110 x=19 y=52 width=13 height=13 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="n" +char id=111 x=35 y=16 width=14 height=14 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="o" +char id=112 x=78 y=125 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=79 y=34 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=119 y=0 width=9 height=13 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=107 y=0 width=11 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=119 y=105 width=9 height=16 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=93 y=34 width=13 height=14 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="u" +char id=118 x=93 y=66 width=12 height=13 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=104 width=17 height=13 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=52 y=0 width=12 height=13 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="x" +char id=121 x=65 y=71 width=13 height=17 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="y" +char id=122 x=107 y=15 width=11 height=14 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=119 y=48 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=138 y=47 width=6 height=21 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=119 y=85 width=9 height=19 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=14 y=136 width=12 height=7 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter="~" +char id=8226 x=116 y=133 width=9 height=9 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=66 width=17 height=17 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/font-small-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-small-export.fnt new file mode 100644 index 0000000..d2a8ea5 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-small-export.fnt @@ -0,0 +1,104 @@ +info face="font-small-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=18 base=18 scaleW=135 scaleH=140 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-small-export.png" +chars count=98 +char id=33 x=127 y=89 width=7 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="!" +char id=34 x=110 y=50 width=8 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=59 y=116 width=12 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="#" +char id=36 x=32 y=34 width=13 height=18 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=0 y=50 width=16 height=16 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=72 y=98 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="&" +char id=39 x=128 y=40 width=6 height=8 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=127 y=70 width=7 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=119 y=14 width=8 height=18 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=119 y=33 width=8 height=9 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=98 y=65 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=119 y=124 width=6 height=8 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=109 y=132 width=9 height=7 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=78 y=132 width=6 height=7 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=109 y=115 width=9 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=72 y=68 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="0" +char id=49 x=110 y=60 width=8 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=47 y=0 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=73 y=14 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=59 y=99 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=98 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=85 y=62 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=98 y=31 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=60 y=0 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=60 y=17 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=120 y=0 width=6 height=13 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=119 y=108 width=7 height=15 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=97 y=127 width=11 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=85 y=127 width=11 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=72 y=85 width=12 height=12 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=">" +char id=63 x=98 y=48 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=67 width=16 height=17 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=17 y=65 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=45 y=104 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=16 y=119 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=16 y=102 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=85 y=79 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=85 y=96 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="F" +char id=71 x=0 y=116 width=15 height=16 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="G" +char id=72 x=46 y=34 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=128 y=49 width=6 height=16 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=86 y=34 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=32 y=53 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=86 y=17 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=17 y=31 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=19 y=0 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=0 y=85 width=15 height=16 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=32 y=17 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=0 y=31 width=16 height=18 xoffset=0 yoffset=2 xadvance=14 page=0 chnl=0 letter="Q" +char id=82 x=46 y=17 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=45 y=87 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="S" +char id=84 x=33 y=0 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=32 y=70 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=17 y=48 width=14 height=16 xoffset=0 yoffset=2 xadvance=12 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=18 height=16 xoffset=0 yoffset=2 xadvance=16 page=0 chnl=0 letter="W" +char id=88 x=45 y=121 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=46 y=51 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=60 y=34 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="Z" +char id=91 x=119 y=70 width=7 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=110 y=33 width=8 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="\" +char id=93 x=119 y=89 width=7 height=18 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=86 y=51 width=9 height=10 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=0 y=133 width=12 height=6 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter="_" +char id=96 x=71 y=132 width=6 height=7 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=73 y=48 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=31 y=102 width=13 height=16 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=59 y=68 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=46 y=68 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=32 y=87 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=119 y=53 width=8 height=16 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=59 y=82 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=60 y=51 width=12 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=127 y=123 width=6 height=16 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=128 y=0 width=6 height=19 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=86 y=0 width=11 height=16 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=127 y=106 width=7 height=16 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=17 width=17 height=13 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=73 y=0 width=12 height=13 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=18 y=17 width=13 height=13 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="o" +char id=112 x=31 y=119 width=13 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="p" +char id=113 x=72 y=115 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="q" +char id=114 x=110 y=0 width=9 height=13 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=98 y=93 width=10 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=109 y=98 width=9 height=16 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=85 y=113 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=97 y=113 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=102 width=15 height=13 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=98 y=17 width=11 height=13 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=73 y=31 width=12 height=16 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=98 y=79 width=10 height=13 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=109 y=79 width=9 height=18 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=128 y=20 width=6 height=19 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=110 y=14 width=8 height=18 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=59 y=130 width=11 height=7 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="~" +char id=8226 x=119 y=43 width=8 height=9 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 letter="•" +char id=169 x=16 y=85 width=15 height=16 xoffset=0 yoffset=2 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-title-export.fnt new file mode 100644 index 0000000..a8f45be --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=40 base=40 scaleW=293 scaleH=297 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=256 y=0 width=15 height=34 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 letter="!" +char id=34 x=237 y=258 width=20 height=19 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=185 y=142 width=26 height=32 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="#" +char id=36 x=102 y=35 width=28 height=40 xoffset=0 yoffset=5 xadvance=26 page=0 chnl=0 letter="$" +char id=37 x=0 y=35 width=38 height=34 xoffset=0 yoffset=6 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=67 y=233 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="&" +char id=39 x=275 y=37 width=13 height=17 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="'" +char id=40 x=237 y=134 width=18 height=39 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="(" +char id=41 x=260 y=205 width=18 height=39 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter=")" +char id=42 x=128 y=274 width=21 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=186 y=35 width=25 height=26 xoffset=0 yoffset=10 xadvance=23 page=0 chnl=0 letter="+" +char id=44 x=244 y=278 width=15 height=18 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=0 letter="," +char id=45 x=185 y=283 width=20 height=13 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=228 y=281 width=15 height=15 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=0 letter="." +char id=47 x=217 y=0 width=22 height=34 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="/" +char id=48 x=164 y=0 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="0" +char id=49 x=237 y=99 width=21 height=34 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="1" +char id=50 x=185 y=107 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="2" +char id=51 x=211 y=246 width=25 height=34 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="3" +char id=52 x=157 y=183 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="4" +char id=53 x=191 y=0 width=25 height=34 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="5" +char id=54 x=159 y=35 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="6" +char id=55 x=158 y=70 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="7" +char id=56 x=136 y=0 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="8" +char id=57 x=131 y=35 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="9" +char id=58 x=260 y=37 width=14 height=28 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=240 y=0 width=15 height=31 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter=";" +char id=60 x=212 y=70 width=24 height=23 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="<" +char id=61 x=79 y=274 width=25 height=20 xoffset=0 yoffset=13 xadvance=23 page=0 chnl=0 letter="=" +char id=62 x=212 y=123 width=24 height=23 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter=">" +char id=63 x=212 y=35 width=25 height=34 xoffset=0 yoffset=6 xadvance=23 page=0 chnl=0 letter="?" +char id=64 x=0 y=233 width=33 height=34 xoffset=0 yoffset=6 xadvance=31 page=0 chnl=0 letter="@" +char id=65 x=34 y=233 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="A" +char id=66 x=128 y=239 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="B" +char id=67 x=157 y=148 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="C" +char id=68 x=39 y=35 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="D" +char id=69 x=157 y=255 width=27 height=34 xoffset=0 yoffset=6 xadvance=25 page=0 chnl=0 letter="E" +char id=70 x=129 y=76 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="F" +char id=71 x=44 y=0 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="G" +char id=72 x=71 y=35 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="H" +char id=73 x=278 y=245 width=14 height=34 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="I" +char id=74 x=238 y=35 width=21 height=34 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 letter="J" +char id=75 x=68 y=169 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="K" +char id=76 x=185 y=211 width=26 height=34 xoffset=0 yoffset=6 xadvance=24 page=0 chnl=0 letter="L" +char id=77 x=0 y=99 width=37 height=34 xoffset=0 yoffset=6 xadvance=35 page=0 chnl=0 letter="M" +char id=78 x=35 y=198 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="N" +char id=79 x=35 y=163 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="O" +char id=80 x=107 y=0 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="P" +char id=81 x=0 y=198 width=34 height=34 xoffset=0 yoffset=6 xadvance=32 page=0 chnl=0 letter="Q" +char id=82 x=99 y=204 width=29 height=34 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="R" +char id=83 x=100 y=105 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="S" +char id=84 x=99 y=169 width=29 height=34 xoffset=0 yoffset=6 xadvance=27 page=0 chnl=0 letter="T" +char id=85 x=76 y=0 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="U" +char id=86 x=38 y=99 width=32 height=34 xoffset=0 yoffset=6 xadvance=30 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=43 height=34 xoffset=0 yoffset=6 xadvance=41 page=0 chnl=0 letter="W" +char id=88 x=68 y=134 width=31 height=34 xoffset=0 yoffset=6 xadvance=29 page=0 chnl=0 letter="X" +char id=89 x=71 y=70 width=30 height=34 xoffset=0 yoffset=6 xadvance=28 page=0 chnl=0 letter="Y" +char id=90 x=99 y=239 width=28 height=34 xoffset=0 yoffset=6 xadvance=26 page=0 chnl=0 letter="Z" +char id=91 x=259 y=115 width=19 height=44 xoffset=0 yoffset=3 xadvance=17 page=0 chnl=0 letter="[" +char id=92 x=212 y=210 width=22 height=34 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 letter="\" +char id=93 x=259 y=160 width=18 height=44 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="]" +char id=94 x=129 y=220 width=19 height=17 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="^" +char id=95 x=27 y=268 width=25 height=13 xoffset=0 yoffset=33 xadvance=23 page=0 chnl=0 letter="_" +char id=96 x=211 y=281 width=16 height=14 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="`" +char id=97 x=0 y=268 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="a" +char id=98 x=157 y=111 width=27 height=36 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="b" +char id=99 x=212 y=147 width=24 height=28 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=157 y=218 width=27 height=36 xoffset=0 yoffset=4 xadvance=25 page=0 chnl=0 letter="d" +char id=101 x=102 y=76 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="e" +char id=102 x=237 y=221 width=22 height=36 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=129 y=147 width=27 height=36 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="g" +char id=104 x=185 y=70 width=26 height=36 xoffset=0 yoffset=4 xadvance=24 page=0 chnl=0 letter="h" +char id=105 x=278 y=160 width=14 height=34 xoffset=0 yoffset=6 xadvance=12 page=0 chnl=0 letter="i" +char id=106 x=260 y=245 width=17 height=42 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 letter="j" +char id=107 x=185 y=246 width=25 height=36 xoffset=0 yoffset=4 xadvance=23 page=0 chnl=0 letter="k" +char id=108 x=272 y=0 width=14 height=36 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="l" +char id=109 x=0 y=134 width=36 height=28 xoffset=0 yoffset=12 xadvance=34 page=0 chnl=0 letter="m" +char id=110 x=68 y=204 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="n" +char id=111 x=100 y=140 width=27 height=28 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="o" +char id=112 x=129 y=184 width=27 height=35 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="p" +char id=113 x=129 y=111 width=27 height=35 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="q" +char id=114 x=237 y=70 width=21 height=28 xoffset=0 yoffset=12 xadvance=19 page=0 chnl=0 letter="r" +char id=115 x=53 y=268 width=25 height=28 xoffset=0 yoffset=12 xadvance=23 page=0 chnl=0 letter="s" +char id=116 x=212 y=176 width=23 height=33 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="t" +char id=117 x=37 y=134 width=26 height=28 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="u" +char id=118 x=71 y=105 width=27 height=28 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="v" +char id=119 x=0 y=70 width=38 height=28 xoffset=0 yoffset=12 xadvance=36 page=0 chnl=0 letter="w" +char id=120 x=39 y=70 width=27 height=28 xoffset=0 yoffset=12 xadvance=25 page=0 chnl=0 letter="x" +char id=121 x=185 y=175 width=26 height=35 xoffset=0 yoffset=12 xadvance=24 page=0 chnl=0 letter="y" +char id=122 x=212 y=94 width=24 height=28 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=259 y=70 width=21 height=44 xoffset=0 yoffset=3 xadvance=19 page=0 chnl=0 letter="{" +char id=124 x=279 y=195 width=11 height=33 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="|" +char id=125 x=236 y=176 width=22 height=44 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="}" +char id=126 x=27 y=282 width=25 height=14 xoffset=0 yoffset=17 xadvance=23 page=0 chnl=0 letter="~" +char id=8226 x=105 y=274 width=22 height=22 xoffset=0 yoffset=13 xadvance=20 page=0 chnl=0 letter="•" +char id=169 x=0 y=163 width=34 height=34 xoffset=0 yoffset=6 xadvance=32 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=17 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=136 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.atlas b/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.atlas new file mode 100644 index 0000000..4cf859f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.atlas @@ -0,0 +1,795 @@ + +sgx-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 1, 336 + size: 52, 50 + split: 8, 8, 7, 8 + pad: 4, 4, 4, 5 + orig: 52, 50 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 227, 495 + size: 19, 20 + orig: 19, 20 + offset: 0, 0 + index: -1 +button-close-over + rotate: false + xy: 223, 451 + size: 19, 20 + orig: 19, 20 + offset: 0, 0 + index: -1 +button-close-pressed + rotate: false + xy: 223, 473 + size: 19, 20 + orig: 19, 20 + offset: 0, 0 + index: -1 +button-disabled + rotate: false + xy: 296, 759 + size: 52, 50 + split: 8, 8, 7, 8 + pad: 4, 4, 4, 5 + orig: 52, 50 + offset: 0, 0 + index: -1 +button-emphasis + rotate: false + xy: 282, 693 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-color + rotate: false + xy: 443, 888 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-color-disabled + rotate: false + xy: 1, 251 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-color-over + rotate: false + xy: 282, 660 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-color-pressed + rotate: false + xy: 1, 218 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-disabled + rotate: false + xy: 1, 185 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-over + rotate: false + xy: 282, 627 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-emphasis-pressed + rotate: false + xy: 296, 726 + size: 51, 31 + split: 8, 7, 9, 10 + pad: 7, 9, 4, 6 + orig: 51, 31 + offset: 0, 0 + index: -1 +button-icon + rotate: false + xy: 1, 25 + size: 44, 42 + split: 8, 8, 9, 9 + pad: 4, 4, 3, 3 + orig: 44, 42 + offset: 0, 0 + index: -1 +button-icon-disabled + rotate: false + xy: 138, 512 + size: 44, 42 + split: 8, 8, 9, 9 + pad: 4, 4, 3, 3 + orig: 44, 42 + offset: 0, 0 + index: -1 +button-icon-over + rotate: false + xy: 138, 468 + size: 44, 42 + split: 8, 8, 9, 9 + pad: 4, 4, 3, 3 + orig: 44, 42 + offset: 0, 0 + index: -1 +button-icon-pressed + rotate: false + xy: 138, 424 + size: 44, 42 + split: 8, 8, 9, 9 + pad: 4, 4, 3, 3 + orig: 44, 42 + offset: 0, 0 + index: -1 +button-minus + rotate: false + xy: 815, 992 + size: 27, 31 + split: 9, 8, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-minus-disabled + rotate: false + xy: 844, 992 + size: 27, 31 + split: 9, 8, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-minus-over + rotate: false + xy: 873, 992 + size: 27, 31 + split: 9, 8, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-minus-pressed + rotate: false + xy: 902, 992 + size: 27, 31 + split: 9, 8, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-number + rotate: false + xy: 635, 994 + size: 28, 29 + split: 1, 1, 2, 3 + pad: 2, 2, 2, 4 + orig: 28, 29 + offset: 0, 0 + index: -1 +button-number-disabled + rotate: false + xy: 665, 994 + size: 28, 29 + split: 1, 1, 2, 3 + pad: 2, 2, 2, 4 + orig: 28, 29 + offset: 0, 0 + index: -1 +button-number-over + rotate: false + xy: 695, 994 + size: 28, 29 + split: 1, 1, 2, 3 + pad: 2, 2, 2, 4 + orig: 28, 29 + offset: 0, 0 + index: -1 +button-number-pressed + rotate: false + xy: 725, 994 + size: 28, 29 + split: 1, 1, 2, 3 + pad: 2, 2, 2, 4 + orig: 28, 29 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 443, 921 + size: 52, 50 + split: 8, 8, 7, 8 + pad: 4, 4, 4, 5 + orig: 52, 50 + offset: 0, 0 + index: -1 +button-plus + rotate: false + xy: 931, 992 + size: 27, 31 + split: 7, 10, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-plus-disabled + rotate: false + xy: 960, 992 + size: 27, 31 + split: 7, 10, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-plus-over + rotate: false + xy: 989, 992 + size: 27, 31 + split: 7, 10, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-plus-pressed + rotate: false + xy: 476, 855 + size: 27, 31 + split: 7, 10, 10, 10 + pad: 3, 3, 2, 3 + orig: 27, 31 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 1, 284 + size: 52, 50 + split: 8, 8, 7, 8 + pad: 4, 4, 4, 5 + orig: 52, 50 + offset: 0, 0 + index: -1 +button-small + rotate: false + xy: 235, 584 + size: 29, 27 + split: 8, 8, 9, 9 + pad: 6, 8, 3, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +button-small-checked + rotate: false + xy: 573, 996 + size: 29, 27 + split: 8, 8, 9, 9 + pad: 6, 8, 3, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +button-small-checked-over + rotate: false + xy: 604, 996 + size: 29, 27 + split: 8, 8, 9, 9 + pad: 6, 8, 3, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +button-small-disabled + rotate: false + xy: 361, 808 + size: 29, 27 + split: 8, 8, 9, 9 + pad: 6, 8, 3, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +button-small-over + rotate: false + xy: 508, 970 + size: 29, 27 + split: 8, 8, 9, 9 + pad: 6, 8, 3, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +button-small-pressed + rotate: false + xy: 539, 970 + size: 29, 27 + split: 8, 8, 9, 9 + pad: 6, 8, 3, 4 + orig: 29, 27 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 570, 970 + size: 25, 24 + orig: 25, 24 + offset: 0, 0 + index: -1 +checkbox-alt + rotate: false + xy: 218, 558 + size: 25, 24 + orig: 25, 24 + offset: 0, 0 + index: -1 +checkbox-checked + rotate: false + xy: 597, 970 + size: 25, 24 + orig: 25, 24 + offset: 0, 0 + index: -1 +file-dialog-table + rotate: false + xy: 282, 613 + size: 12, 12 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 12, 12 + offset: 0, 0 + index: -1 +file-menu-bar + rotate: false + xy: 408, 843 + size: 33, 33 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 33, 33 + offset: 0, 0 + index: -1 +file-menu-button + rotate: false + xy: 413, 811 + size: 18, 30 + split: 4, 4, 1, 2 + pad: 2, 2, 2, 2 + orig: 18, 30 + offset: 0, 0 + index: -1 +file-menu-button-over + rotate: false + xy: 335, 694 + size: 18, 30 + split: 4, 4, 1, 2 + pad: 2, 2, 2, 2 + orig: 18, 30 + offset: 0, 0 + index: -1 +file-menu-button-pressed + rotate: false + xy: 335, 662 + size: 18, 30 + split: 4, 4, 1, 2 + pad: 2, 2, 2, 2 + orig: 18, 30 + offset: 0, 0 + index: -1 +file-menu-list + rotate: false + xy: 335, 630 + size: 18, 30 + split: 4, 4, 1, 2 + pad: 2, 2, 2, 2 + orig: 18, 30 + offset: 0, 0 + index: -1 +file-menu-list-button + rotate: false + xy: 98, 382 + size: 30, 30 + split: 1, 1, 1, 1 + pad: 2, 2, 3, 2 + orig: 30, 30 + offset: 0, 0 + index: -1 +file-menu-list-button-over + rotate: false + xy: 184, 423 + size: 30, 30 + split: 1, 1, 1, 1 + pad: 2, 2, 3, 2 + orig: 30, 30 + offset: 0, 0 + index: -1 +file-menu-list-button-pressed + rotate: false + xy: 66, 382 + size: 30, 30 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 30, 30 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 556 + size: 167, 168 + orig: 167, 168 + offset: 0, 0 + index: -1 +font-medium-export + rotate: false + xy: 296, 878 + size: 145, 145 + orig: 145, 145 + offset: 0, 0 + index: -1 +font-small-export + rotate: false + xy: 1, 414 + size: 135, 140 + orig: 135, 140 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 726 + size: 293, 297 + orig: 293, 297 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 184, 496 + size: 41, 60 + split: 4, 3, 2, 3 + pad: 1, 1, 2, 2 + orig: 41, 60 + offset: 0, 0 + index: -1 +list-selection + rotate: false + xy: 31, 1 + size: 27, 22 + split: 0, 0, 0, 0 + pad: 2, 2, 0, 1 + orig: 27, 22 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 245, 560 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +radio-checked + rotate: false + xy: 227, 534 + size: 23, 22 + orig: 23, 22 + offset: 0, 0 + index: -1 +scroll-bar-back-horizontal + rotate: false + xy: 266, 592 + size: 19, 19 + split: 3, 3, 0, 0 + pad: 0, 0, 0, 0 + orig: 19, 19 + offset: 0, 0 + index: -1 +scroll-bar-back-vertical + rotate: false + xy: 252, 539 + size: 19, 19 + split: 0, 0, 3, 3 + pad: 0, 0, 0, 0 + orig: 19, 19 + offset: 0, 0 + index: -1 +scroll-bar-horizontal + rotate: false + xy: 1, 4 + size: 28, 19 + split: 7, 8, 0, 0 + pad: 0, 0, 0, 0 + orig: 28, 19 + offset: 0, 0 + index: -1 +scroll-bar-vertical + rotate: false + xy: 392, 807 + size: 19, 28 + split: 0, 0, 8, 7 + pad: 0, 0, 0, 0 + orig: 19, 28 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 170, 558 + size: 46, 27 + split: 5, 12, 4, 18 + pad: 4, 15, 3, 2 + orig: 46, 27 + offset: 0, 0 + index: -1 +select-box-disabled + rotate: false + xy: 1, 156 + size: 46, 27 + split: 5, 12, 4, 18 + pad: 4, 15, 3, 2 + orig: 46, 27 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 1, 127 + size: 46, 27 + split: 5, 12, 4, 18 + pad: 4, 15, 3, 2 + orig: 46, 27 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 1, 98 + size: 46, 27 + split: 5, 12, 4, 18 + pad: 4, 15, 3, 2 + orig: 46, 27 + offset: 0, 0 + index: -1 +select-box-pressed-alt + rotate: false + xy: 1, 69 + size: 46, 27 + split: 5, 12, 4, 18 + pad: 4, 15, 3, 2 + orig: 46, 27 + offset: 0, 0 + index: -1 +slider-background-disabled-horizontal + rotate: false + xy: 1018, 1019 + size: 5, 4 + split: 2, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 5, 4 + offset: 0, 0 + index: -1 +slider-background-disabled-vertical + rotate: false + xy: 130, 407 + size: 4, 5 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 4, 5 + offset: 0, 0 + index: -1 +slider-background-horizontal + rotate: false + xy: 1018, 1013 + size: 5, 4 + split: 2, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 5, 4 + offset: 0, 0 + index: -1 +slider-background-vertical + rotate: false + xy: 55, 381 + size: 4, 5 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 4, 5 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 443, 843 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +slider-knob-before-disabled-horizontal + rotate: false + xy: 1018, 1007 + size: 5, 4 + split: 2, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 5, 4 + offset: 0, 0 + index: -1 +slider-knob-before-disabled-vertical + rotate: false + xy: 497, 966 + size: 4, 5 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 4, 5 + offset: 0, 0 + index: -1 +slider-knob-before-horizontal + rotate: false + xy: 1018, 1001 + size: 5, 4 + split: 2, 2, 1, 1 + pad: 0, 0, 0, 0 + orig: 5, 4 + offset: 0, 0 + index: -1 +slider-knob-before-vertical + rotate: false + xy: 138, 417 + size: 4, 5 + split: 1, 1, 2, 2 + pad: 0, 0, 0, 0 + orig: 4, 5 + offset: 0, 0 + index: -1 +slider-knob-disabled + rotate: false + xy: 433, 831 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +slider-knob-pressed + rotate: false + xy: 296, 615 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +switch-off + rotate: false + xy: 443, 999 + size: 63, 24 + orig: 63, 24 + offset: 0, 0 + index: -1 +switch-off-disabled + rotate: false + xy: 1, 388 + size: 63, 24 + orig: 63, 24 + offset: 0, 0 + index: -1 +switch-off-over + rotate: false + xy: 170, 587 + size: 63, 24 + orig: 63, 24 + offset: 0, 0 + index: -1 +switch-on + rotate: false + xy: 296, 811 + size: 63, 24 + orig: 63, 24 + offset: 0, 0 + index: -1 +switch-on-disabled + rotate: false + xy: 443, 973 + size: 63, 24 + orig: 63, 24 + offset: 0, 0 + index: -1 +switch-on-over + rotate: false + xy: 508, 999 + size: 63, 24 + orig: 63, 24 + offset: 0, 0 + index: -1 +tab + rotate: false + xy: 755, 999 + size: 28, 24 + split: 7, 6, 4, 6 + pad: 5, 5, 2, 2 + orig: 28, 24 + offset: 0, 0 + index: -1 +tab-after + rotate: false + xy: 570, 996 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tab-before + rotate: false + xy: 218, 584 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tab-checked + rotate: false + xy: 785, 999 + size: 28, 24 + split: 7, 6, 4, 6 + pad: 5, 5, 2, 2 + orig: 28, 24 + offset: 0, 0 + index: -1 +tab-pane + rotate: false + xy: 227, 517 + size: 22, 15 + split: 8, 5, 0, 7 + pad: 3, 2, 1, 3 + orig: 22, 15 + offset: 0, 0 + index: -1 +text-field + rotate: false + xy: 184, 455 + size: 37, 39 + split: 11, 11, 12, 12 + pad: 8, 8, 9, 9 + orig: 37, 39 + offset: 0, 0 + index: -1 +text-field-spinner + rotate: false + xy: 443, 855 + size: 31, 31 + split: 8, 8, 8, 8 + pad: 3, 6, 3, 3 + orig: 31, 31 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 170, 613 + size: 110, 111 + split: 5, 5, 33, 9 + pad: 3, 3, 34, 2 + orig: 110, 111 + offset: 0, 0 + index: -1 +window-tool + rotate: false + xy: 296, 837 + size: 110, 39 + split: 5, 5, 25, 8 + pad: 3, 3, 26, 2 + orig: 110, 39 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.json b/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.json new file mode 100644 index 0000000..e0e7a4b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.json @@ -0,0 +1,570 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + medium: { + file: font-medium-export.fnt + } + small: { + file: font-small-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + check-box: { + r: 0.2 + g: 0.38039216 + b: 0.7411765 + a: 1 + } + checkbox-disabled: { + r: 0.2901961 + g: 0.2901961 + b: 0.2901961 + a: 1 + } + checkbox-over: { + r: 0.27058825 + g: 0.5137255 + b: 1 + a: 1 + } + font: { + r: 0.6 + g: 0.74509805 + b: 1 + a: 1 + } + font-disabled: { + r: 0.42745098 + g: 0.42745098 + b: 0.42745098 + a: 1 + } + font-disabled-alt: { + r: 0.40784314 + g: 0.5411765 + b: 0.6784314 + a: 1 + } + font-over: { + r: 1 + g: 1 + b: 1 + a: 1 + } + font-text-field: { + r: 0.27058825 + g: 0.3372549 + b: 0.4392157 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + checkbox-t: { + name: checkbox + color: check-box + } + checkbox-checked-t: { + name: checkbox-checked + color: check-box + } + radio-t: { + name: radio + color: check-box + } + radio-checked-t: { + name: radio-checked + color: check-box + } + radio-o: { + name: radio + color: checkbox-over + } + radio-checked-o: { + name: radio-checked + color: checkbox-over + } + checkbox-o: { + name: checkbox + color: checkbox-over + } + checkbox-checked-o: { + name: checkbox-checked + color: checkbox-over + } + checkbox-checked-d: { + name: checkbox-checked + color: checkbox-disabled + } + checkbox-d: { + name: checkbox + color: checkbox-disabled + } + radio-d: { + name: radio + color: checkbox-disabled + } + radio-checked-d: { + name: radio-checked + color: checkbox-disabled + } + black: { + name: white + color: black + } + text-field-selection: { + name: white + color: checkbox-over + } + checkbox-alt-d: { + name: checkbox-alt + color: checkbox-disabled + } + checkbox-alt-o: { + name: checkbox-alt + color: checkbox-over + } + checkbox-alt-t: { + name: checkbox-alt + color: check-box + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-small + down: button-small-pressed + over: button-small-over + disabled: button-small-disabled + } + close: { + up: button-close + down: button-close-pressed + over: button-close-over + } + switch: { + up: switch-off + over: switch-off-over + checked: switch-on + checkedOver: switch-on-over + disabled: switch-off-disabled + } + big: { + up: button + down: button-pressed + over: button-over + disabled: button-disabled + } + plus: { + up: button-plus + down: button-plus-pressed + over: button-plus-over + disabled: button-plus-disabled + } + minus: { + up: button-minus + down: button-minus-pressed + over: button-minus-over + disabled: button-minus-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-checked-t + checkboxOff: checkbox-t + checkboxOnDisabled: checkbox-checked-d + checkboxOffDisabled: checkbox-d + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } + radio: { + checkboxOn: radio-checked-t + checkboxOff: radio-t + checkboxOnDisabled: radio-checked-d + checkboxOffDisabled: radio-d + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } + alt: { + checkboxOn: checkbox-alt-t + checkboxOff: checkbox-t + checkboxOnDisabled: checkbox-checked-d + checkboxOffDisabled: checkbox-d + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } + switch: { + checkboxOn: switch-on + checkboxOff: switch-off + checkboxOnDisabled: switch-on-disabled + checkboxOffDisabled: switch-off-disabled + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-icon + down: button-icon-pressed + over: button-icon-over + disabled: button-icon-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-small + down: button-small-pressed + over: button-small-over + disabled: button-small-disabled + } + checkbox: { + imageUp: checkbox-t + imageDown: checkbox-o + imageOver: checkbox-o + imageChecked: checkbox-checked-t + imageCheckedOver: checkbox-checked-o + imageDisabled: checkbox-d + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } + radio: { + imageUp: radio-t + imageDown: radio-o + imageOver: radio-o + imageChecked: radio-checked-t + imageCheckedOver: radio-checked-o + imageDisabled: radio-d + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } + checkbox-alt: { + imageUp: checkbox-t + imageDown: checkbox-o + imageOver: checkbox-o + imageChecked: checkbox-alt-t + imageCheckedOver: checkbox-alt-o + imageDisabled: checkbox-d + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + } + switch: { + imageUp: switch-off + imageDown: switch-on + imageOver: switch-off-over + imageChecked: switch-on + imageCheckedOver: switch-on-over + imageDisabled: switch-off-disabled + font: small + } + big: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button + down: button-pressed + over: button-over + disabled: button-icon-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: font + } + white: { + font: font + fontColor: font-over + } + small: { + font: small + fontColor: font + } + small-white: { + font: small + fontColor: font-over + } + title: { + font: title + fontColor: font + } + title-white: { + font: title + fontColor: font-over + } + medium: { + font: medium + fontColor: font + } + medium-white: { + font: medium + fontColor: font-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: small + fontColorSelected: font-over + fontColorUnselected: font-over + selection: list-selection + } + bg: { + font: small + fontColorSelected: font-over + fontColorUnselected: font-over + selection: list-selection + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: list + hScroll: scroll-bar-back-horizontal + hScrollKnob: scroll-bar-horizontal + vScroll: scroll-bar-back-vertical + vScrollKnob: scroll-bar-vertical + } + no-bg: { + hScroll: scroll-bar-back-horizontal + hScrollKnob: scroll-bar-horizontal + vScroll: scroll-bar-back-vertical + vScrollKnob: scroll-bar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: small + fontColor: font + disabledFontColor: font-disabled-alt + background: select-box + scrollStyle: default + listStyle: default + backgroundOver: select-box-over + backgroundOpen: select-box-pressed-alt + backgroundDisabled: select-box-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-pressed + knobDown: slider-knob-pressed + background: slider-background-horizontal + disabledBackground: slider-background-disabled-horizontal + knob: slider-knob + disabledKnob: slider-knob-disabled + knobBefore: slider-knob-before-horizontal + disabledKnobBefore: slider-knob-before-disabled-horizontal + } + default-vertical: { + knobOver: slider-knob-pressed + knobDown: slider-knob-pressed + background: slider-background-vertical + disabledBackground: slider-background-disabled-vertical + knob: slider-knob + disabledKnob: slider-knob-disabled + knobBefore: slider-knob-before-vertical + disabledKnobBefore: slider-knob-before-disabled-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-small + down: button-small-pressed + over: button-small-over + disabled: button-small-disabled + } + number: { + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-number + down: button-number-pressed + over: button-number-over + disabled: button-number-disabled + } + small: { + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-small + down: button-small-pressed + over: button-small-over + disabled: button-small-disabled + } + menu-button: { + font: font + fontColor: font + overFontColor: font-over + up: file-menu-button + down: file-menu-button-pressed + over: file-menu-button-over + } + menu-list-button: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: file-menu-button + down: file-menu-button-pressed + over: file-menu-button-over + } + emphasis: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-emphasis + down: button-emphasis-pressed + over: button-emphasis-over + disabled: button-emphasis-disabled + } + emphasis-colored: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-emphasis-color + down: button-emphasis-color-pressed + over: button-emphasis-color-over + disabled: button-emphasis-color-disabled + } + big: { + font: font + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button + down: button-pressed + over: button-over + disabled: button-disabled + } + small-toggle-green: { + font: small + fontColor: font + overFontColor: font-over + disabledFontColor: font-disabled + up: button-small + down: button-small-pressed + over: button-small-over + checked: button-small-checked + checkedOver: button-small-checked-over + disabled: button-small-disabled + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: small + fontColor: font-text-field + background: text-field + cursor: black + selection: text-field-selection + } + spinner: { + font: small + fontColor: font-text-field + background: text-field-spinner + cursor: black + selection: text-field-selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: font-over + } + tool: { + background: window-tool + titleFont: small + titleFontColor: font-over + } +} +com.ray3k.skincomposer.MenuList$MenuListStyle: { + default: { + background: file-menu-list + textButtonStyle: menu-list-button + labelStyle: default + disabledLabelStyle: default + } +} +com.ray3k.skincomposer.MenuButton$MenuButtonStyle: { + default: { + menuListStyle: default + font: font + fontColor: font + downFontColor: font + overFontColor: font-over + checkedFontColor: font-over + disabledFontColor: font-disabled + up: file-menu-button + down: file-menu-button-pressed + over: file-menu-button-over + checked: file-menu-button-pressed + pressedOffsetX: 0 + pressedOffsetY: 0 + unpressedOffsetX: 0 + unpressedOffsetY: 0 + checkedOffsetX: 0 + checkedOffsetY: 0 + } +} +com.badlogic.gdx.ai.tests.utils.scene2d.TabbedPane$TabbedPaneStyle: { + default: { + titleBegin: tab-before + titleEnd: tab-after + bodyBackground: tab-pane + titleButtonSelected: tab-checked + titleButtonUnselected: tab + font: font + fontColor: font + overFontColor: font-over + checkedFontColor: font-over + disabledFontColor: font-over + } +} +com.ray3k.skincomposer.Spinner$SpinnerStyle: { + default: { + buttonMinusStyle: minus + buttonPlusStyle: plus + textFieldStyle: spinner + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.png b/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.png new file mode 100644 index 0000000..3b04119 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/sgx/skin/sgx-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/README.md b/src/main/resources/omni_power/gdx-skins/shade/README.md new file mode 100644 index 0000000..1a4d06a --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/README.md @@ -0,0 +1,22 @@ +# Shade UI + +``` +Shade UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.com for games, tutorials, and much more! + +Shade UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Looks kind of like the so-called *default* LibGDX skin, but updated and fancier. + +![Shade](preview.png) + +### Style guide + +![Guide](style-guide.png) + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=21568). diff --git a/src/main/resources/omni_power/gdx-skins/shade/preview.png b/src/main/resources/omni_power/gdx-skins/shade/preview.png new file mode 100644 index 0000000..89162ff Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/README.md b/src/main/resources/omni_power/gdx-skins/shade/raw/README.md new file mode 100644 index 0000000..7ace26f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/raw/README.md @@ -0,0 +1 @@ +Raw assets were extracted using [Skin Composer](https://github.com/raeleus/skin-composer). diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/android-horizontal-scrollbar-knob.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/android-horizontal-scrollbar-knob.9.png new file mode 100644 index 0000000..3432281 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/android-horizontal-scrollbar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/android-horizontal-scrollbar.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/android-horizontal-scrollbar.9.png new file mode 100644 index 0000000..94582a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/android-horizontal-scrollbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/android-vertical-scrollbar-knob.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/android-vertical-scrollbar-knob.9.png new file mode 100644 index 0000000..138e52f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/android-vertical-scrollbar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/android-vertical-scrollbar.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/android-vertical-scrollbar.9.png new file mode 100644 index 0000000..8717768 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/android-vertical-scrollbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/button-down.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/button-down.9.png new file mode 100644 index 0000000..53d9b55 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/button.9.png new file mode 100644 index 0000000..6ac00ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/check-off.png b/src/main/resources/omni_power/gdx-skins/shade/raw/check-off.png new file mode 100644 index 0000000..2262287 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/check-on.png b/src/main/resources/omni_power/gdx-skins/shade/raw/check-on.png new file mode 100644 index 0000000..ab9ee35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/cursor.9.png new file mode 100644 index 0000000..9b799a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/font-button.fnt b/src/main/resources/omni_power/gdx-skins/shade/raw/font-button.fnt new file mode 100644 index 0000000..b6e8100 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/raw/font-button.fnt @@ -0,0 +1,102 @@ +info face="font-button" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=96 scaleH=96 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button.png" +chars count=96 +char id=33 x=90 y=45 width=2 height=12 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=13 y=74 width=4 height=4 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=52 y=84 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=53 y=24 width=8 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=13 y=37 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=13 y=62 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=81 y=89 width=2 height=4 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=89 y=68 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=90 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=75 y=89 width=5 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=44 y=24 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=18 y=74 width=3 height=4 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=62 y=49 width=5 height=2 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=24 y=89 width=3 height=3 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=77 y=63 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=44 y=33 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=84 y=68 width=4 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=52 y=59 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=70 y=12 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=52 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=70 y=38 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="5" +char id=54 x=69 y=73 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=44 y=46 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=53 y=39 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=70 y=25 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="9" +char id=58 x=70 y=63 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=85 y=15 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=61 y=52 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=43 y=91 width=8 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=34 y=87 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=62 y=36 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=81 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=12 y=81 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=70 y=51 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=13 y=24 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=14 y=0 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=69 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=77 y=77 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=0 y=59 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="G" +char id=72 x=53 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=89 y=83 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=78 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=61 y=61 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=78 y=26 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=12 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=24 y=77 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=37 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=43 y=79 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=24 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=44 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=78 y=13 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=61 y=73 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=52 y=71 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=13 y=50 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=34 y=57 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=24 y=0 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=61 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=84 y=80 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=24 y=50 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=90 y=15 width=3 height=14 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=43 y=69 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=43 y=10 width=8 height=1 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=28 y=89 width=3 height=3 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=43 y=0 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=24 y=64 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=24 y=12 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=25 y=22 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=25 y=35 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=84 y=56 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=34 y=45 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=62 y=24 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=92 y=83 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=85 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=62 y=12 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=30 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=72 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=35 y=36 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=14 y=12 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=35 y=12 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=34 y=0 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=69 y=86 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=78 y=50 width=5 height=9 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=78 y=38 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=61 y=86 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=34 y=78 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=50 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=34 y=69 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=35 y=24 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=44 y=59 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=84 y=26 width=5 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=90 y=30 width=2 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=84 y=41 width=5 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=25 y=45 width=8 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="~" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/font-button.png b/src/main/resources/omni_power/gdx-skins/shade/raw/font-button.png new file mode 100644 index 0000000..b5df0c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/font-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/font-label.fnt b/src/main/resources/omni_power/gdx-skins/shade/raw/font-label.fnt new file mode 100644 index 0000000..2fef163 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/raw/font-label.fnt @@ -0,0 +1,102 @@ +info face="font-label" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=13 base=13 scaleW=84 scaleH=84 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-label.png" +chars count=96 +char id=33 x=78 y=36 width=2 height=10 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=37 y=79 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=12 y=0 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=45 y=70 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=31 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=11 y=64 width=8 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=51 y=21 width=2 height=3 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=78 y=13 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=78 y=0 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=62 y=14 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=38 y=0 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=47 y=21 width=3 height=4 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=62 y=11 width=5 height=2 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=42 y=79 width=2 height=3 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=61 y=31 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=39 y=8 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=74 y=26 width=3 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=60 y=63 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=29 y=64 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=30 y=32 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=67 y=43 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=67 y=54 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=22 y=32 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=30 y=0 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=62 y=0 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=78 y=70 width=2 height=8 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=74 y=49 width=3 height=9 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=31 y=11 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=31 y=27 width=7 height=4 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=39 y=19 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=61 y=20 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=11 y=20 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=0 y=42 width=10 height=9 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=60 y=73 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="B" +char id=67 x=11 y=43 width=9 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=11 y=54 width=9 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=55 y=10 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=67 y=65 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=0 y=20 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=38 y=32 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=78 y=26 width=2 height=9 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=54 y=21 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=47 y=0 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=61 y=43 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=10 width=11 height=9 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=21 y=54 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=0 y=52 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=60 y=53 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=11 y=32 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=46 y=27 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=53 y=54 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=53 y=65 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=54 y=32 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="U" +char id=86 x=22 y=22 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=11 height=9 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=38 y=52 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=38 y=42 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=55 y=0 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="Z" +char id=91 x=74 y=0 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=37 y=63 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=74 y=13 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=31 y=19 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=0 y=79 width=7 height=2 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=39 y=27 width=4 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=12 y=11 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=21 y=0 width=8 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=29 y=75 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=22 y=11 width=8 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=20 y=75 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=68 y=24 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=21 y=43 width=8 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=30 y=42 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=78 y=47 width=2 height=9 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=74 y=36 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=54 y=43 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=81 y=26 width=2 height=9 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=63 width=10 height=7 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=53 y=75 width=6 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=11 y=75 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=20 y=64 width=8 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=30 y=52 width=7 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=67 y=75 width=4 height=7 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="r" +char id=115 x=68 y=34 width=4 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="s" +char id=116 x=69 y=0 width=4 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=46 y=37 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=46 y=46 width=7 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=71 width=10 height=7 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=45 y=62 width=7 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=47 y=10 width=7 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=46 y=54 width=6 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=73 y=65 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=78 y=57 width=2 height=12 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=68 y=11 width=5 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=37 y=75 width=7 height=3 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="~" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/font-label.png b/src/main/resources/omni_power/gdx-skins/shade/raw/font-label.png new file mode 100644 index 0000000..87b7a9a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/font-label.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/font-title.fnt b/src/main/resources/omni_power/gdx-skins/shade/raw/font-title.fnt new file mode 100644 index 0000000..76f48a0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/raw/font-title.fnt @@ -0,0 +1,102 @@ +info face="font-title" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=29 base=29 scaleW=173 scaleH=185 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title.png" +chars count=96 +char id=33 x=152 y=161 width=9 height=21 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=60 y=112 width=12 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter=""" +char id=35 x=94 y=44 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="#" +char id=36 x=94 y=0 width=15 height=25 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=23 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="%" +char id=38 x=22 y=148 width=17 height=20 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="&" +char id=39 x=163 y=105 width=7 height=10 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=140 y=48 width=11 height=25 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=140 y=22 width=11 height=25 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=58 y=171 width=13 height=12 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=22 y=169 width=16 height=15 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="+" +char id=44 x=78 y=66 width=9 height=10 xoffset=0 yoffset=21 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=124 y=177 width=11 height=7 xoffset=0 yoffset=17 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=92 y=176 width=8 height=8 xoffset=0 yoffset=20 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=125 y=84 width=13 height=23 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=75 y=143 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=153 y=0 width=11 height=21 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=61 y=58 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="2" +char id=51 x=108 y=134 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="3" +char id=52 x=58 y=148 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=93 y=112 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="5" +char id=54 x=109 y=109 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=78 y=44 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=76 y=112 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=93 y=66 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=163 y=67 width=8 height=15 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=162 y=164 width=8 height=18 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=93 y=26 width=15 height=17 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="<" +char id=61 x=77 y=99 width=15 height=12 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=59 y=22 width=16 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter=">" +char id=63 x=109 y=87 width=15 height=21 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="?" +char id=64 x=0 y=85 width=21 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="@" +char id=65 x=22 y=126 width=18 height=21 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=110 y=0 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="B" +char id=67 x=22 y=103 width=19 height=22 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="C" +char id=68 x=41 y=126 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=125 y=22 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=140 y=0 width=12 height=21 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="F" +char id=71 x=0 y=131 width=21 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="G" +char id=72 x=77 y=0 width=16 height=21 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=163 y=83 width=8 height=21 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=125 y=108 width=13 height=21 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=108 y=157 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=139 y=84 width=12 height=21 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=0 y=23 width=22 height=21 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="M" +char id=78 x=42 y=103 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="N" +char id=79 x=0 y=108 width=21 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="O" +char id=80 x=125 y=62 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=154 width=21 height=23 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="Q" +char id=82 x=124 y=155 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=93 y=89 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=126 y=0 width=13 height=21 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=109 y=65 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=42 y=0 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=45 width=22 height=21 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="W" +char id=88 x=41 y=44 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="X" +char id=89 x=60 y=0 width=16 height=21 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=110 y=22 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="Z" +char id=91 x=162 y=138 width=9 height=25 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=124 y=131 width=14 height=23 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="\" +char id=93 x=152 y=94 width=10 height=25 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=125 y=44 width=14 height=17 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="^" +char id=95 x=61 y=81 width=15 height=7 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=140 y=74 width=10 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=40 y=166 width=17 height=17 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="a" +char id=98 x=43 y=66 width=17 height=22 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="b" +char id=99 x=59 y=40 width=16 height=17 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="c" +char id=100 x=23 y=23 width=17 height=22 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=59 y=125 width=16 height=17 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="e" +char id=102 x=152 y=45 width=10 height=22 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=41 y=22 width=17 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="g" +char id=104 x=92 y=135 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=163 y=45 width=8 height=21 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=152 y=68 width=10 height=25 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=60 y=89 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=152 y=138 width=9 height=22 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=67 width=22 height=17 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="m" +char id=110 x=77 y=81 width=15 height=17 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="n" +char id=111 x=40 y=148 width=17 height=17 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=24 y=0 width=17 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=23 y=46 width=17 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="q" +char id=114 x=152 y=120 width=10 height=17 xoffset=0 yoffset=12 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=139 y=158 width=12 height=17 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter="s" +char id=116 x=152 y=22 width=11 height=22 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=92 y=158 width=15 height=17 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=23 y=68 width=16 height=16 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=22 y=85 width=20 height=17 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="w" +char id=120 x=75 y=166 width=16 height=17 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="x" +char id=121 x=76 y=22 width=16 height=21 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=110 y=44 width=14 height=17 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=139 y=106 width=12 height=25 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=165 y=0 width=7 height=25 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=139 y=132 width=12 height=25 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=43 y=89 width=15 height=9 xoffset=0 yoffset=14 xadvance=13 page=0 chnl=0 letter="~" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/shade/raw/font-title.png new file mode 100644 index 0000000..e628198 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-scrollbar-knob.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-scrollbar-knob.9.png new file mode 100644 index 0000000..03da7a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-scrollbar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-scrollbar.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-scrollbar.9.png new file mode 100644 index 0000000..d895069 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-scrollbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-splitplane.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-splitplane.9.png new file mode 100644 index 0000000..fe05bd9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/horizontal-splitplane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/label.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/label.9.png new file mode 100644 index 0000000..56b0524 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/label.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/left-button-down.png b/src/main/resources/omni_power/gdx-skins/shade/raw/left-button-down.png new file mode 100644 index 0000000..29d6713 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/left-button-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/left-button.png b/src/main/resources/omni_power/gdx-skins/shade/raw/left-button.png new file mode 100644 index 0000000..0b9d854 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/left-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/list-selection.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/list-selection.9.png new file mode 100644 index 0000000..63e730f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/list-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/list.9.png new file mode 100644 index 0000000..908e933 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar-fill.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar-fill.9.png new file mode 100644 index 0000000..9419019 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar-fill.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar-knob.png b/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar-knob.png new file mode 100644 index 0000000..9e8c9fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar.9.png new file mode 100644 index 0000000..750c5c8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/loading-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/minus.png b/src/main/resources/omni_power/gdx-skins/shade/raw/minus.png new file mode 100644 index 0000000..ff60af5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/music-down.png b/src/main/resources/omni_power/gdx-skins/shade/raw/music-down.png new file mode 100644 index 0000000..1fad182 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/music-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/music-off.png b/src/main/resources/omni_power/gdx-skins/shade/raw/music-off.png new file mode 100644 index 0000000..382fa49 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/music-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/music.png b/src/main/resources/omni_power/gdx-skins/shade/raw/music.png new file mode 100644 index 0000000..573bec9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/music.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/panel1.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/panel1.9.png new file mode 100644 index 0000000..94e868f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/panel1.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/panel2.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/panel2.9.png new file mode 100644 index 0000000..295faa8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/panel2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/plus.png b/src/main/resources/omni_power/gdx-skins/shade/raw/plus.png new file mode 100644 index 0000000..a7947fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/radio-button-off.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/radio-button-off.9.png new file mode 100644 index 0000000..8ae1a69 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/radio-button-off.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/radio-button.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/radio-button.9.png new file mode 100644 index 0000000..f1a93d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/radio-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/right-button-down.png b/src/main/resources/omni_power/gdx-skins/shade/raw/right-button-down.png new file mode 100644 index 0000000..44e44e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/right-button-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/right-button.png b/src/main/resources/omni_power/gdx-skins/shade/raw/right-button.png new file mode 100644 index 0000000..fc1beb4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/right-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/round-button-down.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/round-button-down.9.png new file mode 100644 index 0000000..b06de95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/round-button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/round-button.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/round-button.9.png new file mode 100644 index 0000000..0883347 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/round-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/select-box-down.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/select-box-down.9.png new file mode 100644 index 0000000..11adfe4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/select-box-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/select-box.9.png new file mode 100644 index 0000000..f58ba4b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar-fill.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar-fill.9.png new file mode 100644 index 0000000..8985ede Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar-fill.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar-knob.png b/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar-knob.png new file mode 100644 index 0000000..95736d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar.9.png new file mode 100644 index 0000000..d26e51c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/slider-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/sound-down.png b/src/main/resources/omni_power/gdx-skins/shade/raw/sound-down.png new file mode 100644 index 0000000..6f3e07c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/sound-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/sound-off.png b/src/main/resources/omni_power/gdx-skins/shade/raw/sound-off.png new file mode 100644 index 0000000..fe81b14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/sound-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/sound.png b/src/main/resources/omni_power/gdx-skins/shade/raw/sound.png new file mode 100644 index 0000000..ec92dfa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/sound.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/switch-off.png b/src/main/resources/omni_power/gdx-skins/shade/raw/switch-off.png new file mode 100644 index 0000000..017188d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/switch-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/switch.png b/src/main/resources/omni_power/gdx-skins/shade/raw/switch.png new file mode 100644 index 0000000..c3c5560 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/switch.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/text-selection.png b/src/main/resources/omni_power/gdx-skins/shade/raw/text-selection.png new file mode 100644 index 0000000..e892a8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/text-selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/textfield.9.png new file mode 100644 index 0000000..7169a1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button-down.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button-down.9.png new file mode 100644 index 0000000..ce5987d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button-off.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button-off.9.png new file mode 100644 index 0000000..a693b58 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button-off.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button.9.png new file mode 100644 index 0000000..3877439 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/toggle-button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/shade/raw/touchpad-knob.png new file mode 100644 index 0000000..d166f4d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/shade/raw/touchpad.png new file mode 100644 index 0000000..0b35e01 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/shade/raw/tree-minus.png new file mode 100644 index 0000000..99924c9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/shade/raw/tree-plus.png new file mode 100644 index 0000000..a4a5876 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-scrollbar-knob.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-scrollbar-knob.9.png new file mode 100644 index 0000000..a88c007 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-scrollbar-knob.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-scrollbar.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-scrollbar.9.png new file mode 100644 index 0000000..07abefe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-scrollbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-splitpane.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-splitpane.9.png new file mode 100644 index 0000000..9017218 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/vertical-splitpane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/white.png b/src/main/resources/omni_power/gdx-skins/shade/raw/white.png new file mode 100644 index 0000000..39c2d98 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/shade/raw/window.9.png new file mode 100644 index 0000000..25d1156 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/skin/font-button.fnt b/src/main/resources/omni_power/gdx-skins/shade/skin/font-button.fnt new file mode 100644 index 0000000..b6e8100 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/skin/font-button.fnt @@ -0,0 +1,102 @@ +info face="font-button" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=96 scaleH=96 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-button.png" +chars count=96 +char id=33 x=90 y=45 width=2 height=12 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=13 y=74 width=4 height=4 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=52 y=84 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=53 y=24 width=8 height=14 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=13 y=37 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="%" +char id=38 x=13 y=62 width=10 height=11 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=81 y=89 width=2 height=4 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=89 y=68 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=90 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=75 y=89 width=5 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=44 y=24 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=18 y=74 width=3 height=4 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=62 y=49 width=5 height=2 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=24 y=89 width=3 height=3 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=77 y=63 width=6 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=44 y=33 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=84 y=68 width=4 height=11 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=52 y=59 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=70 y=12 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=52 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="4" +char id=53 x=70 y=38 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="5" +char id=54 x=69 y=73 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=44 y=46 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=53 y=39 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=70 y=25 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="9" +char id=58 x=70 y=63 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=85 y=15 width=3 height=10 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=61 y=52 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=43 y=91 width=8 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=34 y=87 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=62 y=36 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=81 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="@" +char id=65 x=12 y=81 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="A" +char id=66 x=70 y=51 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=13 y=24 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=14 y=0 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=69 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=77 y=77 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=0 y=59 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="G" +char id=72 x=53 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=89 y=83 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=78 y=0 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=61 y=61 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=78 y=26 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=12 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="M" +char id=78 x=24 y=77 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="N" +char id=79 x=0 y=37 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="O" +char id=80 x=43 y=79 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=24 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Q" +char id=82 x=44 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=78 y=13 width=6 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=61 y=73 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=52 y=71 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=13 y=50 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="W" +char id=88 x=34 y=57 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=24 y=0 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=61 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=84 y=80 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=24 y=50 width=9 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="\" +char id=93 x=90 y=15 width=3 height=14 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=43 y=69 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=43 y=10 width=8 height=1 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=28 y=89 width=3 height=3 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=43 y=0 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=24 y=64 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="b" +char id=99 x=24 y=12 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="c" +char id=100 x=25 y=22 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=25 y=35 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="e" +char id=102 x=84 y=56 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=34 y=45 width=9 height=11 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=62 y=24 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=92 y=83 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=85 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=62 y=12 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=93 y=30 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=72 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=35 y=36 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=14 y=12 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=35 y=12 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=34 y=0 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=69 y=86 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=78 y=50 width=5 height=9 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=78 y=38 width=5 height=11 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="t" +char id=117 x=61 y=86 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=34 y=78 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=50 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=34 y=69 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=35 y=24 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=44 y=59 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=84 y=26 width=5 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=90 y=30 width=2 height=14 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=84 y=41 width=5 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=25 y=45 width=8 height=4 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="~" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/shade/skin/font-label.fnt b/src/main/resources/omni_power/gdx-skins/shade/skin/font-label.fnt new file mode 100644 index 0000000..2fef163 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/skin/font-label.fnt @@ -0,0 +1,102 @@ +info face="font-label" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=13 base=13 scaleW=84 scaleH=84 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-label.png" +chars count=96 +char id=33 x=78 y=36 width=2 height=10 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=37 y=79 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=12 y=0 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=45 y=70 width=7 height=13 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=31 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=11 y=64 width=8 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=51 y=21 width=2 height=3 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=78 y=13 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=78 y=0 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=62 y=14 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=38 y=0 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=47 y=21 width=3 height=4 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=62 y=11 width=5 height=2 xoffset=0 yoffset=9 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=42 y=79 width=2 height=3 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=61 y=31 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=39 y=8 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=74 y=26 width=3 height=9 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=60 y=63 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=29 y=64 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=30 y=32 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=67 y=43 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="5" +char id=54 x=67 y=54 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=22 y=32 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=30 y=0 width=7 height=10 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=62 y=0 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=78 y=70 width=2 height=8 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=74 y=49 width=3 height=9 xoffset=0 yoffset=6 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=31 y=11 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=31 y=27 width=7 height=4 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=39 y=19 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=61 y=20 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=11 y=20 width=10 height=11 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=0 y=42 width=10 height=9 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="A" +char id=66 x=60 y=73 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="B" +char id=67 x=11 y=43 width=9 height=10 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=11 y=54 width=9 height=9 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="D" +char id=69 x=55 y=10 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=67 y=65 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="F" +char id=71 x=0 y=20 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=38 y=32 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=78 y=26 width=2 height=9 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=54 y=21 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=47 y=0 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=61 y=43 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="L" +char id=77 x=0 y=10 width=11 height=9 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="M" +char id=78 x=21 y=54 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=0 y=52 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=60 y=53 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="P" +char id=81 x=11 y=32 width=10 height=10 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=46 y=27 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=53 y=54 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=53 y=65 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="T" +char id=85 x=54 y=32 width=6 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="U" +char id=86 x=22 y=22 width=8 height=9 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=11 height=9 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="W" +char id=88 x=38 y=52 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=38 y=42 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=55 y=0 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="Z" +char id=91 x=74 y=0 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=37 y=63 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=74 y=13 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=31 y=19 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=0 y=79 width=7 height=2 xoffset=0 yoffset=13 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=39 y=27 width=4 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=12 y=11 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=21 y=0 width=8 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=29 y=75 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=22 y=11 width=8 height=10 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=20 y=75 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=68 y=24 width=5 height=9 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=21 y=43 width=8 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=30 y=42 width=7 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=78 y=47 width=2 height=9 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=74 y=36 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=54 y=43 width=6 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=81 y=26 width=2 height=9 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=63 width=10 height=7 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=53 y=75 width=6 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=11 y=75 width=8 height=8 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=20 y=64 width=8 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=30 y=52 width=7 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=67 y=75 width=4 height=7 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="r" +char id=115 x=68 y=34 width=4 height=8 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="s" +char id=116 x=69 y=0 width=4 height=9 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=46 y=37 width=7 height=8 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=46 y=46 width=7 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=0 y=71 width=10 height=7 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="w" +char id=120 x=45 y=62 width=7 height=7 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=47 y=10 width=7 height=10 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=46 y=54 width=6 height=7 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="z" +char id=123 x=73 y=65 width=4 height=12 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=78 y=57 width=2 height=12 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=68 y=11 width=5 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=37 y=75 width=7 height=3 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="~" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/shade/skin/font-title.fnt b/src/main/resources/omni_power/gdx-skins/shade/skin/font-title.fnt new file mode 100644 index 0000000..76f48a0 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/skin/font-title.fnt @@ -0,0 +1,102 @@ +info face="font-title" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=29 base=29 scaleW=173 scaleH=185 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title.png" +chars count=96 +char id=33 x=152 y=161 width=9 height=21 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=60 y=112 width=12 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter=""" +char id=35 x=94 y=44 width=15 height=20 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="#" +char id=36 x=94 y=0 width=15 height=25 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=23 height=22 xoffset=0 yoffset=7 xadvance=21 page=0 chnl=0 letter="%" +char id=38 x=22 y=148 width=17 height=20 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="&" +char id=39 x=163 y=105 width=7 height=10 xoffset=0 yoffset=7 xadvance=5 page=0 chnl=0 letter="'" +char id=40 x=140 y=48 width=11 height=25 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=140 y=22 width=11 height=25 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter=")" +char id=42 x=58 y=171 width=13 height=12 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=22 y=169 width=16 height=15 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="+" +char id=44 x=78 y=66 width=9 height=10 xoffset=0 yoffset=21 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=124 y=177 width=11 height=7 xoffset=0 yoffset=17 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=92 y=176 width=8 height=8 xoffset=0 yoffset=20 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=125 y=84 width=13 height=23 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=75 y=143 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=153 y=0 width=11 height=21 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 letter="1" +char id=50 x=61 y=58 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="2" +char id=51 x=108 y=134 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="3" +char id=52 x=58 y=148 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=93 y=112 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="5" +char id=54 x=109 y=109 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="6" +char id=55 x=78 y=44 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="7" +char id=56 x=76 y=112 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=93 y=66 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=163 y=67 width=8 height=15 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=162 y=164 width=8 height=18 xoffset=0 yoffset=13 xadvance=6 page=0 chnl=0 letter=";" +char id=60 x=93 y=26 width=15 height=17 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="<" +char id=61 x=77 y=99 width=15 height=12 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=59 y=22 width=16 height=17 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter=">" +char id=63 x=109 y=87 width=15 height=21 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="?" +char id=64 x=0 y=85 width=21 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="@" +char id=65 x=22 y=126 width=18 height=21 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=110 y=0 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="B" +char id=67 x=22 y=103 width=19 height=22 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="C" +char id=68 x=41 y=126 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="D" +char id=69 x=125 y=22 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="E" +char id=70 x=140 y=0 width=12 height=21 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="F" +char id=71 x=0 y=131 width=21 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="G" +char id=72 x=77 y=0 width=16 height=21 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="H" +char id=73 x=163 y=83 width=8 height=21 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=125 y=108 width=13 height=21 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="J" +char id=75 x=108 y=157 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=139 y=84 width=12 height=21 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=0 y=23 width=22 height=21 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="M" +char id=78 x=42 y=103 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="N" +char id=79 x=0 y=108 width=21 height=22 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="O" +char id=80 x=125 y=62 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="P" +char id=81 x=0 y=154 width=21 height=23 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 letter="Q" +char id=82 x=124 y=155 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=93 y=89 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="S" +char id=84 x=126 y=0 width=13 height=21 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=109 y=65 width=15 height=21 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=42 y=0 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="V" +char id=87 x=0 y=45 width=22 height=21 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="W" +char id=88 x=41 y=44 width=17 height=21 xoffset=0 yoffset=8 xadvance=15 page=0 chnl=0 letter="X" +char id=89 x=60 y=0 width=16 height=21 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="Y" +char id=90 x=110 y=22 width=14 height=21 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="Z" +char id=91 x=162 y=138 width=9 height=25 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="[" +char id=92 x=124 y=131 width=14 height=23 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="\" +char id=93 x=152 y=94 width=10 height=25 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=125 y=44 width=14 height=17 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="^" +char id=95 x=61 y=81 width=15 height=7 xoffset=0 yoffset=25 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=140 y=74 width=10 height=9 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=40 y=166 width=17 height=17 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="a" +char id=98 x=43 y=66 width=17 height=22 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="b" +char id=99 x=59 y=40 width=16 height=17 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="c" +char id=100 x=23 y=23 width=17 height=22 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="d" +char id=101 x=59 y=125 width=16 height=17 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="e" +char id=102 x=152 y=45 width=10 height=22 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=41 y=22 width=17 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="g" +char id=104 x=92 y=135 width=15 height=22 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=163 y=45 width=8 height=21 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=152 y=68 width=10 height=25 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="j" +char id=107 x=60 y=89 width=16 height=22 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="k" +char id=108 x=152 y=138 width=9 height=22 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=67 width=22 height=17 xoffset=0 yoffset=12 xadvance=20 page=0 chnl=0 letter="m" +char id=110 x=77 y=81 width=15 height=17 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="n" +char id=111 x=40 y=148 width=17 height=17 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="o" +char id=112 x=24 y=0 width=17 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="p" +char id=113 x=23 y=46 width=17 height=21 xoffset=0 yoffset=12 xadvance=15 page=0 chnl=0 letter="q" +char id=114 x=152 y=120 width=10 height=17 xoffset=0 yoffset=12 xadvance=8 page=0 chnl=0 letter="r" +char id=115 x=139 y=158 width=12 height=17 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter="s" +char id=116 x=152 y=22 width=11 height=22 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="t" +char id=117 x=92 y=158 width=15 height=17 xoffset=0 yoffset=12 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=23 y=68 width=16 height=16 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=22 y=85 width=20 height=17 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="w" +char id=120 x=75 y=166 width=16 height=17 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="x" +char id=121 x=76 y=22 width=16 height=21 xoffset=0 yoffset=12 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=110 y=44 width=14 height=17 xoffset=0 yoffset=12 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=139 y=106 width=12 height=25 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=165 y=0 width=7 height=25 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=139 y=132 width=12 height=25 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=43 y=89 width=15 height=9 xoffset=0 yoffset=14 xadvance=13 page=0 chnl=0 letter="~" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.atlas new file mode 100644 index 0000000..b051b81 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.atlas @@ -0,0 +1,490 @@ + +uiskin.png +size: 1023,255 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +android-horizontal-scrollbar + rotate: false + xy: 558, 153 + size: 10, 4 + split: 1, 1, 1, 1 + pad: 1, 1, 0, 0 + orig: 10, 4 + offset: 0, 0 + index: -1 +android-horizontal-scrollbar-knob + rotate: false + xy: 558, 232 + size: 10, 4 + split: 1, 1, 1, 1 + pad: 1, 1, 0, 0 + orig: 10, 4 + offset: 0, 0 + index: -1 +android-vertical-scrollbar + rotate: false + xy: 6, 1 + size: 4, 10 + split: 1, 1, 1, 1 + pad: 0, 0, 1, 1 + orig: 4, 10 + offset: 0, 0 + index: -1 +android-vertical-scrollbar-knob + rotate: false + xy: 1, 1 + size: 4, 10 + split: 1, 1, 1, 1 + pad: 0, 0, 1, 1 + orig: 4, 10 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 641, 224 + size: 61, 31 + split: 3, 3, 3, 3 + pad: 4, 4, 4, 4 + orig: 61, 31 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 579, 224 + size: 61, 31 + split: 3, 3, 3, 3 + pad: 4, 4, 4, 4 + orig: 61, 31 + offset: 0, 0 + index: -1 +check-off + rotate: false + xy: 238, 9 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-on + rotate: false + xy: 318, 55 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 473, 140 + size: 3, 11 + split: 1, 1, 2, 2 + pad: 1, 1, 1, 1 + orig: 3, 11 + offset: 0, 0 + index: -1 +font-button + rotate: false + xy: 376, 140 + size: 96, 96 + orig: 96, 96 + offset: 0, 0 + index: -1 +font-label + rotate: false + xy: 473, 152 + size: 84, 84 + orig: 84, 84 + offset: 0, 0 + index: -1 +font-title + rotate: false + xy: 202, 70 + size: 173, 185 + orig: 173, 185 + offset: 0, 0 + index: -1 +horizontal-scrollbar + rotate: false + xy: 296, 53 + size: 21, 16 + split: 10, 10, 7, 7 + pad: 0, 0, 0, 0 + orig: 21, 16 + offset: 0, 0 + index: -1 +horizontal-scrollbar-knob + rotate: false + xy: 212, 7 + size: 25, 16 + split: 13, 11, 7, 7 + pad: 0, 0, 0, 0 + orig: 25, 16 + offset: 0, 0 + index: -1 +horizontal-splitplane + rotate: false + xy: 255, 31 + size: 9, 20 + split: 4, 4, 0, 0 + pad: -1, -1, 0, 0 + orig: 9, 20 + offset: 0, 0 + index: -1 +label + rotate: false + xy: 202, 52 + size: 62, 17 + split: 11, 11, 8, 8 + pad: 11, 11, 0, 2 + orig: 62, 17 + offset: 0, 0 + index: -1 +left-button + rotate: false + xy: 171, 27 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +left-button-down + rotate: false + xy: 199, 24 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 188, 1 + size: 23, 22 + split: 9, 8, 9, 8 + pad: 5, 4, 4, 5 + orig: 23, 22 + offset: 0, 0 + index: -1 +list-selection + rotate: false + xy: 630, 159 + size: 18, 17 + split: 8, 7, 7, 7 + pad: 4, 4, 4, 4 + orig: 18, 17 + offset: 0, 0 + index: -1 +loading-bar + rotate: false + xy: 376, 237 + size: 202, 18 + split: 0, 0, 0, 0 + pad: 5, 0, 0, 0 + orig: 202, 18 + offset: 0, 0 + index: -1 +loading-bar-fill + rotate: false + xy: 902, 199 + size: 12, 18 + split: 0, 11, 0, 0 + orig: 12, 18 + offset: 0, 0 + index: -1 +loading-bar-knob + rotate: false + xy: 915, 199 + size: 12, 18 + orig: 12, 18 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 649, 162 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +music + rotate: false + xy: 504, 105 + size: 45, 46 + orig: 45, 46 + offset: 0, 0 + index: -1 +music-down + rotate: false + xy: 504, 58 + size: 45, 46 + orig: 45, 46 + offset: 0, 0 + index: -1 +music-off + rotate: false + xy: 558, 177 + size: 45, 46 + orig: 45, 46 + offset: 0, 0 + index: -1 +panel1 + rotate: false + xy: 742, 180 + size: 37, 43 + split: 16, 14, 13, 12 + pad: 9, 7, 10, 9 + orig: 37, 43 + offset: 0, 0 + index: -1 +panel2 + rotate: false + xy: 780, 187 + size: 35, 36 + split: 15, 14, 16, 15 + orig: 35, 36 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 928, 203 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-button + rotate: false + xy: 599, 160 + size: 30, 16 + split: 16, 0, 0, 15 + pad: 21, 0, 0, 0 + orig: 30, 16 + offset: 0, 0 + index: -1 +radio-button-off + rotate: false + xy: 265, 53 + size: 30, 16 + split: 16, 0, 0, 15 + pad: 21, 0, 0, 0 + orig: 30, 16 + offset: 0, 0 + index: -1 +right-button + rotate: false + xy: 227, 24 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +right-button-down + rotate: false + xy: 857, 196 + size: 27, 27 + orig: 27, 27 + offset: 0, 0 + index: -1 +round-button + rotate: false + xy: 86, 12 + size: 84, 42 + split: 29, 26, 21, 20 + pad: 17, 19, 4, 3 + orig: 84, 42 + offset: 0, 0 + index: -1 +round-button-down + rotate: false + xy: 1, 12 + size: 84, 42 + split: 29, 26, 21, 20 + pad: 17, 19, 4, 3 + orig: 84, 42 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 946, 218 + size: 56, 37 + split: 9, 32, 7, 6 + pad: 6, 34, 5, 4 + orig: 56, 37 + offset: 0, 0 + index: -1 +select-box-down + rotate: false + xy: 889, 218 + size: 56, 37 + split: 9, 32, 7, 6 + pad: 6, 34, 5, 4 + orig: 56, 37 + offset: 0, 0 + index: -1 +slider-bar + rotate: false + xy: 816, 186 + size: 19, 18 + split: 7, 9, 8, 9 + pad: 0, 0, 5, 5 + orig: 19, 18 + offset: 0, 0 + index: -1 +slider-bar-fill + rotate: false + xy: 1003, 227 + size: 19, 18 + split: 4, 2, 9, 8 + pad: 4, 2, 8, 8 + orig: 19, 18 + offset: 0, 0 + index: -1 +slider-bar-knob + rotate: false + xy: 836, 186 + size: 18, 18 + orig: 18, 18 + offset: 0, 0 + index: -1 +sound + rotate: false + xy: 604, 177 + size: 45, 46 + orig: 45, 46 + offset: 0, 0 + index: -1 +sound-down + rotate: false + xy: 650, 177 + size: 45, 46 + orig: 45, 46 + offset: 0, 0 + index: -1 +sound-off + rotate: false + xy: 696, 177 + size: 45, 46 + orig: 45, 46 + offset: 0, 0 + index: -1 +switch + rotate: false + xy: 558, 158 + size: 40, 18 + orig: 40, 18 + offset: 0, 0 + index: -1 +switch-off + rotate: false + xy: 816, 205 + size: 40, 18 + orig: 40, 18 + offset: 0, 0 + index: -1 +text-selection + rotate: false + xy: 199, 52 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 265, 37 + size: 14, 15 + split: 6, 7, 7, 7 + pad: 3, 3, 2, 2 + orig: 14, 15 + offset: 0, 0 + index: -1 +toggle-button + rotate: false + xy: 827, 224 + size: 61, 31 + split: 29, 24, 6, 24 + pad: 19, 4, 4, 3 + orig: 61, 31 + offset: 0, 0 + index: -1 +toggle-button-down + rotate: false + xy: 703, 224 + size: 61, 31 + split: 29, 24, 6, 24 + pad: 19, 4, 4, 3 + orig: 61, 31 + offset: 0, 0 + index: -1 +toggle-button-off + rotate: false + xy: 765, 224 + size: 61, 31 + split: 29, 24, 6, 24 + pad: 19, 4, 4, 3 + orig: 61, 31 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 1, 55 + size: 200, 200 + orig: 200, 200 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 376, 73 + size: 66, 66 + orig: 66, 66 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 280, 38 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +tree-plus + rotate: false + xy: 333, 55 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +vertical-scrollbar + rotate: false + xy: 885, 196 + size: 16, 21 + split: 7, 7, 10, 10 + pad: 0, 0, 0, 0 + orig: 16, 21 + offset: 0, 0 + index: -1 +vertical-scrollbar-knob + rotate: false + xy: 171, 1 + size: 16, 25 + split: 7, 7, 12, 12 + pad: 0, 0, 0, 0 + orig: 16, 25 + offset: 0, 0 + index: -1 +vertical-splitpane + rotate: false + xy: 1003, 246 + size: 20, 9 + split: 0, 0, 4, 4 + pad: 0, 0, 2, 2 + orig: 20, 9 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 855, 203 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 443, 65 + size: 60, 74 + split: 30, 29, 42, 31 + pad: 19, 19, 33, 23 + orig: 60, 74 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.json b/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.json new file mode 100644 index 0000000..cf87746 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.json @@ -0,0 +1,192 @@ +{ +com.badlogic.gdx.graphics.Color: { + green: { g: 1, a: 1 }, + light_grey: { r: 0.8, g: 0.8, b: 0.8, a: 1 }, + white: { r: 1, g: 1, b: 1, a: 1 }, + red: { r: 1, a: 1 }, + grey: { r: 0.7, g: 0.7, b: 0.7, a: 1 }, + Flamingo: { r: 1, g: 0.2, b: 1, a: 1 }, + black: { a: 1 } +}, +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font-button: { file: font-button.fnt }, + font-label: { file: font-label.fnt }, + font-title: { file: font-title.fnt } +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: { + name: white, + color: { a: 1, b: 0.2, g: 0.2, r: 0.2 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { background: loading-bar, knob: loading-bar-knob, knobBefore: loading-bar-fill } + default-vertical: { background: loading-bar, knob: loading-bar-knob, knobBefore: loading-bar-fill } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font-button, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 1, g: 0.2, r: 1 }, + disabledFontColor: { a: 1, b: 0.8, g: 0.8, r: 0.8 }, + up: button, + down: button-down + }, + round: { + font: font-title, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 1, g: 0.2, r: 1 }, + up: round-button, + down: round-button-down + }, + toggle: { + font: font-button, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 1, g: 0.2, r: 1 }, + up: toggle-button-off, + down: toggle-button-down, + checked: toggle-button + }, + radio: { + font: font-label, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 1, g: 0.2, r: 1 }, + up: radio-button-off, + down: radio-button, + checked: radio-button + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { up: button, down: button-down } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: { handle: vertical-splitpane }, + default-horizontal: { handle: horizontal-splitplane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { background: touchpad, knob: touchpad-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { up: button, down: button-down }, + music: { up: music-off, down: music-down, checked: music }, + left: { up: left-button, down: left-button-down }, + sound: { up: sound-off, down: sound-down, checked: sound }, + toggle: { up: toggle-button-off, down: toggle-button-down, checked: toggle-button }, + right: { up: right-button, down: right-button-down } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window, + titleFont: font-title, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + dialog: { + background: window, + titleFont: font-title, + titleFontColor: { a: 1, b: 1, g: 1, r: 1 }, + stageBackground: list + } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font-label, + fontColor: { a: 1 }, + background: textfield, + cursor: cursor, + selection: text-selection, + messageFont: font-label + } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + background: panel1, + hScroll: horizontal-scrollbar, + hScrollKnob: horizontal-scrollbar-knob, + vScroll: vertical-scrollbar, + vScrollKnob: vertical-scrollbar-knob + }, + android: { + background: panel1, + hScroll: android-horizontal-scrollbar, + hScrollKnob: android-horizontal-scrollbar-knob, + vScroll: android-vertical-scrollbar, + vScrollKnob: android-vertical-scrollbar-knob + } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + optional: { + font: font-label, + fontColor: { a: 1, b: 0.8, g: 0.8, r: 0.8 } + }, + default: { + font: font-label, + fontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + error: { + font: font-label, + fontColor: { a: 1, r: 1 } + }, + title-plain: { + font: font-title, + fontColor: { a: 1, b: 1, g: 1, r: 1 } + }, + subtitle: { + font: font-label, + fontColor: { a: 1 }, + background: label + }, + title: { + font: font-title, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + background: panel2 + } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font-label, + fontColorSelected: { a: 1, b: 1, g: 0.2, r: 1 }, + fontColorUnselected: { a: 1, b: 1, g: 1, r: 1 }, + selection: list-selection + }, + dimmed: { + font: font-label, + fontColorSelected: { a: 1, b: 1, g: 0.2, r: 1 }, + fontColorUnselected: { a: 1, b: 1, g: 1, r: 1 }, + selection: list-selection, + background: list + } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check-on, + checkboxOff: check-off, + font: font-label, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 1, g: 0.2, r: 1 } + }, + switch: { + checkboxOn: switch, + checkboxOff: switch-off, + font: font-label, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + downFontColor: { a: 1, b: 1, g: 0.2, r: 1 } + } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { plus: plus, minus: minus, selection: list-selection, background: list } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-vertical: { background: slider-bar, knob: slider-bar-knob, knobBefore: slider-bar-fill }, + default-horizontal: { background: slider-bar, knob: slider-bar-knob, knobBefore: slider-bar-fill } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font-button, + fontColor: { a: 1, b: 1, g: 1, r: 1 }, + background: select-box, + scrollStyle: default, + listStyle: default, + backgroundOpen: select-box-down + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.png b/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.png new file mode 100644 index 0000000..9fae01b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/skin/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/shade/style-guide.png b/src/main/resources/omni_power/gdx-skins/shade/style-guide.png new file mode 100644 index 0000000..ec3a0e4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/shade/style-guide.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/README.md b/src/main/resources/omni_power/gdx-skins/skin-composer/README.md new file mode 100644 index 0000000..5576cb8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/README.md @@ -0,0 +1,22 @@ +# Skin Composer UI + +``` +Skin Composer UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Skin Composer UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Originally used by the [Skin Composer](https://github.com/raeleus/skin-composer) application. + +![Skin Composer](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/skin-composer-ui/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font license](SourceSansPro.txt). diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/SourceSansPro.txt b/src/main/resources/omni_power/gdx-skins/skin-composer/SourceSansPro.txt new file mode 100644 index 0000000..a9b845e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/SourceSansPro.txt @@ -0,0 +1,92 @@ +Copyright 2010, 2012 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. All Rights Reserved. Source is a trademark of Adobe Systems Incorporated in the United States and/or other countries. +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/preview.png b/src/main/resources/omni_power/gdx-skins/skin-composer/preview.png new file mode 100644 index 0000000..0a2e846 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close-over.png new file mode 100644 index 0000000..f694e9c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close-pressed.png new file mode 100644 index 0000000..ad0b20c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close.png new file mode 100644 index 0000000..5998713 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel-over.png new file mode 100644 index 0000000..8e696a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel-pressed.png new file mode 100644 index 0000000..6cb7ad7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel.png new file mode 100644 index 0000000..11e9d2f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-colorwheel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-disabled.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-disabled.png new file mode 100644 index 0000000..154bb41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-over.png new file mode 100644 index 0000000..0ea2101 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-pressed.png new file mode 100644 index 0000000..8fce64c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete.png new file mode 100644 index 0000000..cd608b2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-delete.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate-over.png new file mode 100644 index 0000000..116480d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate-pressed.png new file mode 100644 index 0000000..0277e6a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate.png new file mode 100644 index 0000000..6cb5397 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-duplicate.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-over.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-over.9.png new file mode 100644 index 0000000..744bfb3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-over.png new file mode 100644 index 0000000..deb802c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-pressed.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-pressed.9.png new file mode 100644 index 0000000..5fddaf1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-pressed.png new file mode 100644 index 0000000..75e9274 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file.9.png new file mode 100644 index 0000000..b6e3fd3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file.png new file mode 100644 index 0000000..d0985e6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-file.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize-over.png new file mode 100644 index 0000000..0b3ce79 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize-pressed.png new file mode 100644 index 0000000..ba1eee8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize.png new file mode 100644 index 0000000..326a1a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-maximize.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize-over copy.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize-over copy.png new file mode 100644 index 0000000..990ac97 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize-over copy.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize-over.png new file mode 100644 index 0000000..70858d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize.png new file mode 100644 index 0000000..b6cee95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-minimize.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new-over.png new file mode 100644 index 0000000..a048082 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new-pressed.png new file mode 100644 index 0000000..ad644fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new.png new file mode 100644 index 0000000..2524c62 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-new.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-over.9.png new file mode 100644 index 0000000..cb3af84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-over.png new file mode 100644 index 0000000..b70d6b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-over.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-over.9.png new file mode 100644 index 0000000..2b73672 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-over.png new file mode 100644 index 0000000..964984c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-pressed.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-pressed.9.png new file mode 100644 index 0000000..5122a53 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-pressed.png new file mode 100644 index 0000000..aacc65e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus.9.png new file mode 100644 index 0000000..0d0f64d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus.png new file mode 100644 index 0000000..0e0e9e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-pressed.9.png new file mode 100644 index 0000000..5093f14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-pressed.png new file mode 100644 index 0000000..19298ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore-over.png new file mode 100644 index 0000000..09657df Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore-pressed.png new file mode 100644 index 0000000..387e0d9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore.png new file mode 100644 index 0000000..864269d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-restore.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-disabled.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-disabled.png new file mode 100644 index 0000000..691ce5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-over.png new file mode 100644 index 0000000..238e01a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-pressed.png new file mode 100644 index 0000000..7baaad6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small-over.png new file mode 100644 index 0000000..3046dc8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small-pressed.png new file mode 100644 index 0000000..52b9398 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small.png new file mode 100644 index 0000000..d2004b5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings.png new file mode 100644 index 0000000..ee6640b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-settings.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h-over.png new file mode 100644 index 0000000..aeb10f4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h-pressed.png new file mode 100644 index 0000000..7b8da28 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h.png new file mode 100644 index 0000000..fdacfac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v-over.png new file mode 100644 index 0000000..a950833 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v-pressed.png new file mode 100644 index 0000000..5104b46 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v.png new file mode 100644 index 0000000..aa900d6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-minus-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h-over.png new file mode 100644 index 0000000..ae47b48 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h-pressed.png new file mode 100644 index 0000000..9f7853e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h.png new file mode 100644 index 0000000..38ffb13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-h.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v-over.png new file mode 100644 index 0000000..b214208 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v-pressed.png new file mode 100644 index 0000000..b22d0a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v.png new file mode 100644 index 0000000..8ca2a07 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-spinner-plus-v.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches-over.png new file mode 100644 index 0000000..f296921 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches-pressed.png new file mode 100644 index 0000000..f43d06c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches.png new file mode 100644 index 0000000..5579ce7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button-swatches.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button.9.png new file mode 100644 index 0000000..4ff2082 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button.png new file mode 100644 index 0000000..46239b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off-over.png new file mode 100644 index 0000000..74590f4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off-pressed.png new file mode 100644 index 0000000..30ce74e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off.png new file mode 100644 index 0000000..ee4847e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on-over.png new file mode 100644 index 0000000..c68e00b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on-pressed.png new file mode 100644 index 0000000..7c03e1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on.png new file mode 100644 index 0000000..ff3f747 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/class-bar.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/class-bar.9.png new file mode 100644 index 0000000..a6176f6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/class-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/class-bar.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/class-bar.png new file mode 100644 index 0000000..633fe14 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/class-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-export.fnt new file mode 100644 index 0000000..dbb5cc2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=95 scaleH=95 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=88 y=62 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=75 y=65 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=23 y=36 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=67 y=45 width=7 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=15 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=11 y=81 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=88 y=88 width=2 height=5 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=87 y=30 width=4 height=15 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=87 y=46 width=4 height=15 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=59 y=77 width=5 height=5 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=0 y=84 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=82 y=57 width=3 height=6 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=22 y=92 width=4 height=2 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=79 y=90 width=3 height=3 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=75 y=12 width=6 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=23 y=48 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=67 y=33 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=24 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=24 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=14 y=12 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=32 y=73 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=75 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=33 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=67 y=60 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=73 y=72 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="9" +char id=58 x=83 y=0 width=3 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=84 y=81 width=3 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=22 y=84 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=31 y=85 width=8 height=5 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=40 y=85 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=75 y=41 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=13 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=23 y=24 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=42 y=24 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=50 y=36 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=41 y=72 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=67 y=12 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=67 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=22 y=72 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=50 y=48 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=92 y=30 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=59 y=43 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=13 y=27 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=59 y=22 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=11 y=69 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="M" +char id=78 x=41 y=60 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=12 y=48 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=41 y=48 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=69 width=10 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=50 y=72 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=42 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=14 y=0 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=50 y=60 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=22 y=60 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=27 width=12 height=11 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=33 y=24 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=33 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=42 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=87 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=81 y=65 width=6 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=82 y=12 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=65 y=86 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=14 y=24 width=8 height=2 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=67 y=72 width=3 height=3 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=51 y=26 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=51 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=59 y=0 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=59 y=9 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=59 y=68 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=75 y=28 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=32 y=60 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=51 y=13 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=92 y=18 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=82 y=27 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=59 y=55 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=88 y=75 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=39 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=65 y=77 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=13 y=39 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=32 y=48 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=32 y=36 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=73 y=84 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=49 y=84 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=75 y=53 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=57 y=84 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=12 y=60 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=60 width=11 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=59 y=34 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=41 y=36 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=67 y=24 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=82 y=42 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=92 y=0 width=2 height=17 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=87 y=15 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=31 y=91 width=7 height=3 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=79 y=84 width=4 height=5 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=48 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-export.png new file mode 100644 index 0000000..83b162b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title-export.fnt new file mode 100644 index 0000000..0558572 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=185 scaleH=191 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=171 y=75 width=6 height=23 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="!" +char id=34 x=146 y=23 width=11 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter=""" +char id=35 x=95 y=84 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="#" +char id=36 x=128 y=115 width=15 height=28 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="$" +char id=37 x=0 y=28 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="%" +char id=38 x=0 y=167 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="&" +char id=39 x=171 y=99 width=6 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=169 y=32 width=9 height=30 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=169 y=141 width=8 height=30 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter=")" +char id=42 x=98 y=48 width=12 height=12 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="*" +char id=43 x=24 y=119 width=16 height=17 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=169 y=63 width=8 height=11 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=63 y=91 width=10 height=4 xoffset=0 yoffset=20 xadvance=12 page=0 chnl=0 letter="-" +char id=46 x=171 y=111 width=6 height=6 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=0 letter="." +char id=47 x=144 y=62 width=14 height=29 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=78 y=97 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=143 y=168 width=14 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="1" +char id=50 x=78 y=120 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=112 y=144 width=15 height=22 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="3" +char id=52 x=64 y=0 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=95 y=130 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=112 y=121 width=15 height=22 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="6" +char id=55 x=78 y=168 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=95 y=153 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="8" +char id=57 x=95 y=107 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=169 y=172 width=7 height=17 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=169 y=118 width=8 height=22 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=98 y=32 width=16 height=15 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="<" +char id=61 x=95 y=176 width=16 height=11 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=81 y=25 width=16 height=15 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter=">" +char id=63 x=143 y=144 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=25 height=27 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="@" +char id=65 x=21 y=162 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=112 y=48 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="B" +char id=67 x=41 y=119 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="C" +char id=68 x=26 y=48 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=112 y=167 width=15 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=129 y=40 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=41 y=167 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=45 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="H" +char id=73 x=178 y=88 width=5 height=23 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=128 y=144 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="J" +char id=75 x=41 y=143 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=144 y=38 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="L" +char id=77 x=21 y=138 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="M" +char id=78 x=45 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=24 y=95 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="O" +char id=80 x=112 y=72 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=0 y=138 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=63 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="R" +char id=83 x=98 y=0 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=44 y=72 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="T" +char id=85 x=63 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="U" +char id=86 x=45 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="V" +char id=87 x=0 y=52 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="W" +char id=88 x=26 y=24 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="X" +char id=89 x=26 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Y" +char id=90 x=81 y=41 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=159 y=32 width=9 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="[" +char id=92 x=144 y=92 width=13 height=29 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=159 y=62 width=9 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="]" +char id=94 x=115 y=0 width=15 height=14 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="^" +char id=95 x=60 y=166 width=17 height=5 xoffset=0 yoffset=30 xadvance=19 page=0 chnl=0 letter="_" +char id=96 x=115 y=40 width=9 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="`" +char id=97 x=131 y=0 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="a" +char id=98 x=78 y=143 width=16 height=24 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="b" +char id=99 x=44 y=96 width=15 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=112 y=96 width=15 height=24 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=60 y=172 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="e" +char id=102 x=158 y=92 width=12 height=25 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="f" +char id=103 x=60 y=121 width=17 height=25 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="g" +char id=104 x=129 y=64 width=14 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="h" +char id=105 x=178 y=63 width=6 height=24 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="i" +char id=106 x=159 y=0 width=10 height=31 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=78 y=72 width=16 height=24 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="k" +char id=108 x=170 y=0 width=7 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="l" +char id=109 x=0 y=119 width=23 height=18 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="m" +char id=110 x=63 y=72 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="n" +char id=111 x=25 y=76 width=17 height=18 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="o" +char id=112 x=115 y=15 width=15 height=24 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=81 y=0 width=16 height=24 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="q" +char id=114 x=144 y=122 width=11 height=18 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="r" +char id=115 x=131 y=19 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="s" +char id=116 x=146 y=0 width=12 height=22 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="t" +char id=117 x=128 y=96 width=15 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=95 y=65 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="v" +char id=119 x=0 y=76 width=24 height=18 xoffset=0 yoffset=13 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=60 y=147 width=17 height=18 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="x" +char id=121 x=60 y=96 width=17 height=24 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=128 y=168 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="z" +char id=123 x=158 y=160 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="{" +char id=124 x=178 y=112 width=5 height=32 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="|" +char id=125 x=158 y=118 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="}" +char id=126 x=98 y=24 width=16 height=7 xoffset=0 yoffset=16 xadvance=18 page=0 chnl=0 letter="~" +char id=8226 x=158 y=148 width=10 height=11 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter="•" +char id=169 x=0 y=95 width=23 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title-export.png new file mode 100644 index 0000000..cf15225 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title.png new file mode 100644 index 0000000..d5ae439 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font.png new file mode 100644 index 0000000..803c7e2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-colorwheel-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-colorwheel-over.png new file mode 100644 index 0000000..a21a04e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-colorwheel-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-colorwheel.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-colorwheel.png new file mode 100644 index 0000000..b714c54 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-colorwheel.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-portrait-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-portrait-over.png new file mode 100644 index 0000000..e458d3b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-portrait-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-portrait.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-portrait.png new file mode 100644 index 0000000..0a35747 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-portrait.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-text-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-text-over.png new file mode 100644 index 0000000..29bfc73 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-text-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-text.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-text.png new file mode 100644 index 0000000..14568af Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/icon-text.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/list.9.png new file mode 100644 index 0000000..2b1194d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/list.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/list.png new file mode 100644 index 0000000..b946cdd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/scrollpane-knob.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/scrollpane-knob.png new file mode 100644 index 0000000..76c937f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/scrollpane-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/scrollpane.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/scrollpane.png new file mode 100644 index 0000000..1afc082 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/scrollpane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-over.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-over.9.png new file mode 100644 index 0000000..4128717 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-over.png new file mode 100644 index 0000000..758fe54 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-pressed.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-pressed.9.png new file mode 100644 index 0000000..b62dd85 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-pressed.png new file mode 100644 index 0000000..3246d32 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox.9.png new file mode 100644 index 0000000..e01a066 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox.png new file mode 100644 index 0000000..1e01b5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/selectbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-horizontal.9.png new file mode 100644 index 0000000..3cda856 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-horizontal.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-horizontal.png new file mode 100644 index 0000000..9778d65 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob-over.png new file mode 100644 index 0000000..21f2719 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob-pressed.png new file mode 100644 index 0000000..fe0e28f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob.png new file mode 100644 index 0000000..24980f8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-vertical.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-vertical.9.png new file mode 100644 index 0000000..5346657 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-vertical.png new file mode 100644 index 0000000..164cd96 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/splitpane.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/splitpane.9.png new file mode 100644 index 0000000..fef0fa7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/splitpane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/splitpane.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/splitpane.png new file mode 100644 index 0000000..dd1413b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/splitpane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/status-bar.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/status-bar.png new file mode 100644 index 0000000..eb4e5bc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/status-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-pressed.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-pressed.9.png new file mode 100644 index 0000000..4cb028d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-pressed.png new file mode 100644 index 0000000..3ffd1ce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-over.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-over.9.png new file mode 100644 index 0000000..24cee13 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-over.png new file mode 100644 index 0000000..fbd13c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-pressed.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-pressed.9.png new file mode 100644 index 0000000..750284f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-pressed.png new file mode 100644 index 0000000..146d13f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner.9.png new file mode 100644 index 0000000..618e7e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner.png new file mode 100644 index 0000000..db7b309 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield-spinner.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield.9.png new file mode 100644 index 0000000..9527dd2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield.png new file mode 100644 index 0000000..824491f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off-over.png new file mode 100644 index 0000000..85738b7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off-pressed.png new file mode 100644 index 0000000..4e19ca1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off.png new file mode 100644 index 0000000..d1faa83 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on-over.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on-over.png new file mode 100644 index 0000000..ac34979 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on-pressed.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on-pressed.png new file mode 100644 index 0000000..a7aa586 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on.png new file mode 100644 index 0000000..6ca49df Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/toggle-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/white.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window-main.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window-main.9.png new file mode 100644 index 0000000..9aca3dd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window-main.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window-main.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window-main.png new file mode 100644 index 0000000..9347e6f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window-main.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window.9.png new file mode 100644 index 0000000..ef72776 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window.png new file mode 100644 index 0000000..4d45d66 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window2.9.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window2.9.png new file mode 100644 index 0000000..f96772f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window2.png b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window2.png new file mode 100644 index 0000000..2a1e336 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/raw/window2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/font-export.fnt new file mode 100644 index 0000000..dbb5cc2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=15 base=15 scaleW=95 scaleH=95 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=88 y=62 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=75 y=65 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=23 y=36 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=67 y=45 width=7 height=14 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=15 width=13 height=11 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="%" +char id=38 x=11 y=81 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=88 y=88 width=2 height=5 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=87 y=30 width=4 height=15 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=87 y=46 width=4 height=15 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=59 y=77 width=5 height=5 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=0 y=84 width=8 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="+" +char id=44 x=82 y=57 width=3 height=6 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=22 y=92 width=4 height=2 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=79 y=90 width=3 height=3 xoffset=0 yoffset=12 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=75 y=12 width=6 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=23 y=48 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=67 y=33 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="1" +char id=50 x=24 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=24 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=14 y=12 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="4" +char id=53 x=32 y=73 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=75 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="6" +char id=55 x=33 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=67 y=60 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=73 y=72 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="9" +char id=58 x=83 y=0 width=3 height=8 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=84 y=81 width=3 height=11 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=22 y=84 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter="<" +char id=61 x=31 y=85 width=8 height=5 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="=" +char id=62 x=40 y=85 width=8 height=7 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 letter=">" +char id=63 x=75 y=41 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=13 height=14 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=23 y=24 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=42 y=24 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=50 y=36 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="C" +char id=68 x=41 y=72 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=67 y=12 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="E" +char id=70 x=67 y=0 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=22 y=72 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=50 y=48 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=92 y=30 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=59 y=43 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="J" +char id=75 x=13 y=27 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="K" +char id=76 x=59 y=22 width=7 height=11 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="L" +char id=77 x=11 y=69 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="M" +char id=78 x=41 y=60 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=12 y=48 width=10 height=11 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=41 y=48 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=69 width=10 height=14 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=50 y=72 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=42 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=14 y=0 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="T" +char id=85 x=50 y=60 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="U" +char id=86 x=22 y=60 width=9 height=11 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=27 width=12 height=11 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=33 y=24 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="X" +char id=89 x=33 y=12 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Y" +char id=90 x=42 y=0 width=8 height=11 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=87 y=0 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=81 y=65 width=6 height=15 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=82 y=12 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=65 y=86 width=7 height=7 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="^" +char id=95 x=14 y=24 width=8 height=2 xoffset=0 yoffset=16 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=67 y=72 width=3 height=3 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=51 y=26 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="a" +char id=98 x=51 y=0 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="b" +char id=99 x=59 y=0 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="c" +char id=100 x=59 y=9 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="d" +char id=101 x=59 y=68 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="e" +char id=102 x=75 y=28 width=6 height=12 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=32 y=60 width=8 height=12 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=51 y=13 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="h" +char id=105 x=92 y=18 width=2 height=11 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=82 y=27 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=59 y=55 width=7 height=12 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="k" +char id=108 x=88 y=75 width=3 height=12 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="l" +char id=109 x=0 y=39 width=12 height=8 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=65 y=77 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="n" +char id=111 x=13 y=39 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=32 y=48 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=32 y=36 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=73 y=84 width=5 height=8 xoffset=0 yoffset=7 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=49 y=84 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=75 y=53 width=6 height=11 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=57 y=84 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=12 y=60 width=8 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="v" +char id=119 x=0 y=60 width=11 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="w" +char id=120 x=59 y=34 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=41 y=36 width=8 height=11 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=67 y=24 width=7 height=8 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=82 y=42 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=92 y=0 width=2 height=17 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=87 y=15 width=4 height=14 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=31 y=91 width=7 height=3 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=79 y=84 width=4 height=5 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=48 width=11 height=11 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/font-title-export.fnt new file mode 100644 index 0000000..0558572 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=31 base=31 scaleW=185 scaleH=191 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=171 y=75 width=6 height=23 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="!" +char id=34 x=146 y=23 width=11 height=11 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 letter=""" +char id=35 x=95 y=84 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="#" +char id=36 x=128 y=115 width=15 height=28 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 letter="$" +char id=37 x=0 y=28 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="%" +char id=38 x=0 y=167 width=20 height=23 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="&" +char id=39 x=171 y=99 width=6 height=11 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=169 y=32 width=9 height=30 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="(" +char id=41 x=169 y=141 width=8 height=30 xoffset=0 yoffset=6 xadvance=10 page=0 chnl=0 letter=")" +char id=42 x=98 y=48 width=12 height=12 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="*" +char id=43 x=24 y=119 width=16 height=17 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=169 y=63 width=8 height=11 xoffset=0 yoffset=25 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=63 y=91 width=10 height=4 xoffset=0 yoffset=20 xadvance=12 page=0 chnl=0 letter="-" +char id=46 x=171 y=111 width=6 height=6 xoffset=0 yoffset=25 xadvance=8 page=0 chnl=0 letter="." +char id=47 x=144 y=62 width=14 height=29 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=78 y=97 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=143 y=168 width=14 height=22 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="1" +char id=50 x=78 y=120 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=112 y=144 width=15 height=22 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="3" +char id=52 x=64 y=0 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=95 y=130 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=112 y=121 width=15 height=22 xoffset=0 yoffset=9 xadvance=17 page=0 chnl=0 letter="6" +char id=55 x=78 y=168 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=95 y=153 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="8" +char id=57 x=95 y=107 width=16 height=22 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=169 y=172 width=7 height=17 xoffset=0 yoffset=14 xadvance=9 page=0 chnl=0 letter=":" +char id=59 x=169 y=118 width=8 height=22 xoffset=0 yoffset=14 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=98 y=32 width=16 height=15 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter="<" +char id=61 x=95 y=176 width=16 height=11 xoffset=0 yoffset=14 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=81 y=25 width=16 height=15 xoffset=0 yoffset=12 xadvance=18 page=0 chnl=0 letter=">" +char id=63 x=143 y=144 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=25 height=27 xoffset=0 yoffset=9 xadvance=27 page=0 chnl=0 letter="@" +char id=65 x=21 y=162 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="A" +char id=66 x=112 y=48 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="B" +char id=67 x=41 y=119 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="C" +char id=68 x=26 y=48 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="D" +char id=69 x=112 y=167 width=15 height=23 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="E" +char id=70 x=129 y=40 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="F" +char id=71 x=41 y=167 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=45 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="H" +char id=73 x=178 y=88 width=5 height=23 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=128 y=144 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="J" +char id=75 x=41 y=143 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="K" +char id=76 x=144 y=38 width=14 height=23 xoffset=0 yoffset=8 xadvance=16 page=0 chnl=0 letter="L" +char id=77 x=21 y=138 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="M" +char id=78 x=45 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=24 y=95 width=19 height=23 xoffset=0 yoffset=8 xadvance=21 page=0 chnl=0 letter="O" +char id=80 x=112 y=72 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=0 y=138 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=63 y=48 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="R" +char id=83 x=98 y=0 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=44 y=72 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="T" +char id=85 x=63 y=24 width=17 height=23 xoffset=0 yoffset=8 xadvance=19 page=0 chnl=0 letter="U" +char id=86 x=45 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="V" +char id=87 x=0 y=52 width=25 height=23 xoffset=0 yoffset=8 xadvance=27 page=0 chnl=0 letter="W" +char id=88 x=26 y=24 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="X" +char id=89 x=26 y=0 width=18 height=23 xoffset=0 yoffset=8 xadvance=20 page=0 chnl=0 letter="Y" +char id=90 x=81 y=41 width=16 height=23 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=159 y=32 width=9 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="[" +char id=92 x=144 y=92 width=13 height=29 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="\" +char id=93 x=159 y=62 width=9 height=29 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="]" +char id=94 x=115 y=0 width=15 height=14 xoffset=0 yoffset=8 xadvance=17 page=0 chnl=0 letter="^" +char id=95 x=60 y=166 width=17 height=5 xoffset=0 yoffset=30 xadvance=19 page=0 chnl=0 letter="_" +char id=96 x=115 y=40 width=9 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="`" +char id=97 x=131 y=0 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="a" +char id=98 x=78 y=143 width=16 height=24 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="b" +char id=99 x=44 y=96 width=15 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=112 y=96 width=15 height=24 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=60 y=172 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="e" +char id=102 x=158 y=92 width=12 height=25 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="f" +char id=103 x=60 y=121 width=17 height=25 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="g" +char id=104 x=129 y=64 width=14 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 letter="h" +char id=105 x=178 y=63 width=6 height=24 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="i" +char id=106 x=159 y=0 width=10 height=31 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="j" +char id=107 x=78 y=72 width=16 height=24 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="k" +char id=108 x=170 y=0 width=7 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="l" +char id=109 x=0 y=119 width=23 height=18 xoffset=0 yoffset=13 xadvance=25 page=0 chnl=0 letter="m" +char id=110 x=63 y=72 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="n" +char id=111 x=25 y=76 width=17 height=18 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="o" +char id=112 x=115 y=15 width=15 height=24 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=81 y=0 width=16 height=24 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="q" +char id=114 x=144 y=122 width=11 height=18 xoffset=0 yoffset=13 xadvance=13 page=0 chnl=0 letter="r" +char id=115 x=131 y=19 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="s" +char id=116 x=146 y=0 width=12 height=22 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="t" +char id=117 x=128 y=96 width=15 height=18 xoffset=0 yoffset=13 xadvance=17 page=0 chnl=0 letter="u" +char id=118 x=95 y=65 width=16 height=18 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="v" +char id=119 x=0 y=76 width=24 height=18 xoffset=0 yoffset=13 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=60 y=147 width=17 height=18 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="x" +char id=121 x=60 y=96 width=17 height=24 xoffset=0 yoffset=13 xadvance=19 page=0 chnl=0 letter="y" +char id=122 x=128 y=168 width=14 height=18 xoffset=0 yoffset=13 xadvance=16 page=0 chnl=0 letter="z" +char id=123 x=158 y=160 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="{" +char id=124 x=178 y=112 width=5 height=32 xoffset=0 yoffset=6 xadvance=7 page=0 chnl=0 letter="|" +char id=125 x=158 y=118 width=10 height=29 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="}" +char id=126 x=98 y=24 width=16 height=7 xoffset=0 yoffset=16 xadvance=18 page=0 chnl=0 letter="~" +char id=8226 x=158 y=148 width=10 height=11 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter="•" +char id=169 x=0 y=95 width=23 height=23 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=10 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=80 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.atlas b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.atlas new file mode 100644 index 0000000..426c9cd --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.atlas @@ -0,0 +1,748 @@ + +skin-composer-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 219, 251 + size: 27, 27 + split: 5, 5, 4, 4 + pad: 5, 5, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-close + rotate: false + xy: 318, 490 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-close-over + rotate: false + xy: 350, 490 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-close-pressed + rotate: false + xy: 155, 297 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-colorwheel + rotate: false + xy: 163, 248 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-colorwheel-over + rotate: false + xy: 260, 339 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-colorwheel-pressed + rotate: false + xy: 260, 313 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-delete + rotate: false + xy: 98, 237 + size: 34, 35 + orig: 34, 35 + offset: 0, 0 + index: -1 +button-delete-disabled + rotate: false + xy: 1, 73 + size: 34, 35 + orig: 34, 35 + offset: 0, 0 + index: -1 +button-delete-over + rotate: false + xy: 188, 347 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-delete-pressed + rotate: false + xy: 1, 37 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-duplicate + rotate: false + xy: 1, 1 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-duplicate-over + rotate: false + xy: 188, 311 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-duplicate-pressed + rotate: false + xy: 225, 448 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-file + rotate: false + xy: 261, 448 + size: 27, 27 + split: 1, 1, 1, 1 + pad: 5, 5, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-file-over + rotate: false + xy: 261, 419 + size: 27, 27 + split: 1, 1, 1, 1 + pad: 5, 5, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-file-pressed + rotate: false + xy: 134, 245 + size: 27, 27 + split: 1, 1, 1, 1 + pad: 5, 5, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-maximize + rotate: false + xy: 187, 288 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-maximize-over + rotate: false + xy: 187, 265 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-maximize-pressed + rotate: false + xy: 155, 274 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-minimize + rotate: false + xy: 446, 490 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-minimize-over + rotate: false + xy: 478, 490 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-minimize-over copy + rotate: false + xy: 98, 214 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-new + rotate: false + xy: 225, 412 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-new-over + rotate: false + xy: 225, 376 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-new-pressed + rotate: false + xy: 224, 340 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 318, 461 + size: 27, 27 + split: 5, 5, 5, 5 + pad: 5, 5, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-plus + rotate: false + xy: 347, 461 + size: 27, 27 + split: 5, 15, 4, 19 + pad: 5, 19, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-plus-over + rotate: false + xy: 376, 461 + size: 27, 27 + split: 5, 15, 5, 19 + pad: 5, 19, 3, 3 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-plus-pressed + rotate: false + xy: 405, 461 + size: 27, 27 + split: 5, 15, 4, 19 + pad: 5, 19, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 434, 461 + size: 27, 27 + split: 5, 5, 5, 5 + pad: 5, 5, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +button-restore + rotate: false + xy: 382, 490 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-restore-over + rotate: false + xy: 414, 490 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-restore-pressed + rotate: false + xy: 219, 280 + size: 30, 21 + orig: 30, 21 + offset: 0, 0 + index: -1 +button-settings + rotate: false + xy: 224, 303 + size: 34, 35 + orig: 34, 35 + offset: 0, 0 + index: -1 +button-settings-disabled + rotate: false + xy: 38, 157 + size: 34, 35 + orig: 34, 35 + offset: 0, 0 + index: -1 +button-settings-over + rotate: false + xy: 38, 121 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-settings-pressed + rotate: false + xy: 282, 477 + size: 34, 34 + orig: 34, 34 + offset: 0, 0 + index: -1 +button-settings-small + rotate: false + xy: 284, 339 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-settings-small-over + rotate: false + xy: 284, 313 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-settings-small-pressed + rotate: false + xy: 187, 239 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-spinner-minus-h + rotate: false + xy: 290, 448 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +button-spinner-minus-h-over + rotate: false + xy: 261, 390 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +button-spinner-minus-h-pressed + rotate: false + xy: 290, 419 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +button-spinner-minus-v + rotate: false + xy: 463, 465 + size: 27, 23 + orig: 27, 23 + offset: 0, 0 + index: -1 +button-spinner-minus-v-over + rotate: false + xy: 38, 96 + size: 27, 23 + orig: 27, 23 + offset: 0, 0 + index: -1 +button-spinner-minus-v-pressed + rotate: false + xy: 37, 71 + size: 27, 23 + orig: 27, 23 + offset: 0, 0 + index: -1 +button-spinner-plus-h + rotate: false + xy: 286, 390 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +button-spinner-plus-h-over + rotate: false + xy: 315, 432 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +button-spinner-plus-h-pressed + rotate: false + xy: 340, 432 + size: 23, 27 + orig: 23, 27 + offset: 0, 0 + index: -1 +button-spinner-plus-v + rotate: false + xy: 37, 46 + size: 27, 23 + orig: 27, 23 + offset: 0, 0 + index: -1 +button-spinner-plus-v-over + rotate: false + xy: 37, 21 + size: 27, 23 + orig: 27, 23 + offset: 0, 0 + index: -1 +button-spinner-plus-v-pressed + rotate: false + xy: 74, 181 + size: 27, 23 + orig: 27, 23 + offset: 0, 0 + index: -1 +button-swatches + rotate: false + xy: 315, 406 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-swatches-over + rotate: false + xy: 339, 406 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +button-swatches-pressed + rotate: false + xy: 311, 380 + size: 22, 24 + orig: 22, 24 + offset: 0, 0 + index: -1 +checkbox-off + rotate: false + xy: 492, 473 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +checkbox-off-over + rotate: false + xy: 492, 456 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +checkbox-off-pressed + rotate: false + xy: 490, 439 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 261, 479 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +checkbox-on-over + rotate: false + xy: 335, 389 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +checkbox-on-pressed + rotate: false + xy: 311, 363 + size: 19, 15 + orig: 19, 15 + offset: 0, 0 + index: -1 +class-bar + rotate: false + xy: 251, 295 + size: 7, 6 + split: 0, 0, 0, 1 + pad: 2, 2, 2, 3 + orig: 7, 6 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 223 + size: 95, 95 + orig: 95, 95 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 320 + size: 185, 191 + orig: 185, 191 + offset: 0, 0 + index: -1 +icon-colorwheel + rotate: false + xy: 365, 436 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +icon-colorwheel-over + rotate: false + xy: 390, 436 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +icon-portrait + rotate: false + xy: 415, 436 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +icon-portrait-over + rotate: false + xy: 440, 436 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +icon-text + rotate: false + xy: 465, 440 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +icon-text-over + rotate: false + xy: 261, 365 + size: 23, 23 + orig: 23, 23 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 135, 275 + size: 14, 14 + split: 2, 2, 2, 2 + pad: 3, 3, 3, 3 + orig: 14, 14 + offset: 0, 0 + index: -1 +scrollpane + rotate: false + xy: 308, 326 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +scrollpane-knob + rotate: false + xy: 308, 310 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +selectbox + rotate: false + xy: 188, 484 + size: 55, 27 + split: 5, 23, 11, 11 + pad: 3, 25, 3, 3 + orig: 55, 27 + offset: 0, 0 + index: -1 +selectbox-over + rotate: false + xy: 1, 194 + size: 55, 27 + split: 5, 23, 11, 11 + pad: 3, 25, 3, 3 + orig: 55, 27 + offset: 0, 0 + index: -1 +selectbox-pressed + rotate: false + xy: 98, 291 + size: 55, 27 + split: 5, 23, 11, 11 + pad: 3, 25, 3, 3 + orig: 55, 27 + offset: 0, 0 + index: -1 +slider-horizontal + rotate: false + xy: 37, 7 + size: 20, 12 + split: 2, 2, 4, 4 + pad: 0, 0, 0, 0 + orig: 20, 12 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 260, 299 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +slider-knob-over + rotate: false + xy: 274, 299 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +slider-knob-pressed + rotate: false + xy: 288, 299 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 67, 99 + size: 12, 20 + split: 4, 4, 2, 2 + pad: 0, 0, 0, 0 + orig: 12, 20 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 95, 206 + size: 6, 6 + split: 2, 2, 2, 2 + pad: 0, 0, 0, 0 + orig: 6, 6 + offset: 0, 0 + index: -1 +status-bar + rotate: false + xy: 308, 342 + size: 19, 19 + orig: 19, 19 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 74, 152 + size: 27, 27 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +textfield-pressed + rotate: false + xy: 74, 123 + size: 27, 27 + split: 1, 1, 1, 2 + pad: 2, 2, 2, 2 + orig: 27, 27 + offset: 0, 0 + index: -1 +textfield-spinner + rotate: false + xy: 103, 185 + size: 27, 27 + split: 5, 5, 5, 5 + pad: 3, 3, 3, 3 + orig: 27, 27 + offset: 0, 0 + index: -1 +textfield-spinner-over + rotate: false + xy: 103, 156 + size: 27, 27 + split: 5, 5, 5, 5 + pad: 3, 3, 3, 3 + orig: 27, 27 + offset: 0, 0 + index: -1 +textfield-spinner-pressed + rotate: false + xy: 103, 127 + size: 27, 27 + split: 5, 5, 5, 5 + pad: 3, 3, 3, 3 + orig: 27, 27 + offset: 0, 0 + index: -1 +toggle-off + rotate: false + xy: 98, 274 + size: 35, 15 + orig: 35, 15 + offset: 0, 0 + index: -1 +toggle-off-over + rotate: false + xy: 188, 450 + size: 35, 15 + orig: 35, 15 + offset: 0, 0 + index: -1 +toggle-off-pressed + rotate: false + xy: 188, 467 + size: 35, 15 + orig: 35, 15 + offset: 0, 0 + index: -1 +toggle-on + rotate: false + xy: 245, 496 + size: 35, 15 + orig: 35, 15 + offset: 0, 0 + index: -1 +toggle-on-over + rotate: false + xy: 1, 177 + size: 35, 15 + orig: 35, 15 + offset: 0, 0 + index: -1 +toggle-on-pressed + rotate: false + xy: 58, 206 + size: 35, 15 + orig: 35, 15 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 315, 474 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 1, 110 + size: 35, 65 + split: 2, 2, 31, 4 + pad: 1, 1, 31, 0 + orig: 35, 65 + offset: 0, 0 + index: -1 +window-main + rotate: false + xy: 188, 383 + size: 35, 65 + split: 1, 1, 31, 1 + orig: 35, 65 + offset: 0, 0 + index: -1 +window2 + rotate: false + xy: 286, 365 + size: 23, 23 + split: 6, 6, 6, 6 + pad: 2, 2, 2, 2 + orig: 23, 23 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.json b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.json new file mode 100644 index 0000000..111c7fe --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.json @@ -0,0 +1,337 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + button: { + r: 0.27450982 + g: 0.54901963 + b: 0.49411765 + a: 1 + } + pressed: { + r: 0.07450981 + g: 0.24705882 + b: 0.21960784 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + pressed: { + name: white + color: pressed + } + black: { + name: white + color: black + } + button-color: { + name: white + color: button + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } + colorwheel: { + up: button-colorwheel + down: button-colorwheel-pressed + over: button-colorwheel-over + } + delete: { + up: button-delete + down: button-delete-pressed + over: button-delete-over + disabled: button-delete-disabled + } + duplicate: { + up: button-duplicate + down: button-duplicate-pressed + over: button-duplicate-over + } + new: { + up: button-new + down: button-new-pressed + over: button-new-over + } + close: { + up: button-close + down: button-close-pressed + over: button-close-over + } + settings: { + up: button-settings + down: button-settings-pressed + over: button-settings-over + disabled: button-settings-disabled + } + settings-small: { + up: button-settings-small + down: button-settings-small-pressed + over: button-settings-small-over + } + spinner-minus-h: { + up: button-spinner-minus-h + down: button-spinner-minus-h-pressed + over: button-spinner-minus-h-over + } + spinner-plus-h: { + up: button-spinner-plus-h + down: button-spinner-plus-h-pressed + over: button-spinner-plus-h-over + } + spinner-minus-v: { + up: button-spinner-minus-v + down: button-spinner-minus-v-pressed + over: button-spinner-minus-v-over + } + spinner-plus-v: { + up: button-spinner-plus-v + down: button-spinner-plus-v-pressed + over: button-spinner-plus-v-over + } + swatches: { + up: button-swatches + down: button-swatches-pressed + over: button-swatches-over + } + switch: { + up: toggle-off + down: toggle-off-pressed + over: toggle-off-over + checked: toggle-on + checkedOver: toggle-on-over + } + minimize: { + up: button-minimize + down: button-minimize-over copy + over: button-minimize-over + } + maximize: { + up: button-maximize + down: button-maximize-pressed + over: button-maximize-over + } + restore: { + up: button-restore + down: button-restore-pressed + over: button-restore-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox-off + checkboxOver: checkbox-off-over + font: font + fontColor: white + } + switch: { + checkboxOn: toggle-on + checkboxOff: toggle-off + checkboxOver: toggle-off-over + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } + font: { + imageUp: icon-text + imageOver: icon-text-over + up: button + down: button-pressed + over: button-over + } + color: { + imageUp: icon-colorwheel + imageOver: icon-colorwheel-over + up: button + down: button-pressed + over: button-over + } + drawable: { + imageUp: icon-portrait + imageOver: icon-portrait-over + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: white + up: button + down: button-pressed + over: button-over + } + checkbox: { + imageUp: checkbox-off + imageDown: checkbox-on-pressed + imageOver: checkbox-off-over + imageChecked: checkbox-on + imageCheckedOver: checkbox-on-over + font: font + } + switch: { + imageUp: toggle-off + imageDown: toggle-on-pressed + imageOver: toggle-off-over + imageChecked: toggle-on + imageCheckedOver: toggle-on-over + font: font + fontColor: white + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: button + } + title: { + font: title + fontColor: button + background: class-bar + } + white: { + font: font + fontColor: white + } + title-white: { + font: title + fontColor: white + } + required: { + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: white + selection: pressed + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScroll: scrollpane + hScrollKnob: scrollpane-knob + vScroll: scrollpane + vScrollKnob: scrollpane-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: button + background: selectbox + scrollStyle: default + listStyle: default + backgroundOver: selectbox-over + backgroundOpen: selectbox-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob-over + knobDown: slider-knob-pressed + background: slider-horizontal + knob: slider-knob + } + default-vertical: { + knobOver: slider-knob-over + knobDown: slider-knob-pressed + background: slider-vertical + knob: slider-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane + } + default-vertical: { + handle: splitpane + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: white + up: button + down: button-pressed + over: button-over + } + new: { + font: font + fontColor: white + up: button-plus + down: button-plus-pressed + over: button-plus-over + } + file: { + font: font + up: button-file + down: button-file-pressed + over: button-file-over + checked: button-file-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: pressed + background: textfield + cursor: black + selection: button-color + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: white + } + dialog: { + background: window2 + titleFont: font + titleFontColor: white + } + main: { + background: window-main + titleFont: font + titleFontColor: white + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.png b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.png new file mode 100644 index 0000000..4412896 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/skin-composer/skin/skin-composer-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/README.md b/src/main/resources/omni_power/gdx-skins/star-soldier/README.md new file mode 100644 index 0000000..cc79661 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/README.md @@ -0,0 +1,22 @@ +# Star Soldier UI + +``` +Star Soldier UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Star Soldier UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Sci-fi feel. + +![Star Soldier](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/artwork/star-soldier-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/preview.png b/src/main/resources/omni_power/gdx-skins/star-soldier/preview.png new file mode 100644 index 0000000..6d01363 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/README.md b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/README.md new file mode 100644 index 0000000..7ace26f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/README.md @@ -0,0 +1 @@ +Raw assets were extracted using [Skin Composer](https://github.com/raeleus/skin-composer). diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button-selected.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button-selected.9.png new file mode 100644 index 0000000..d62f8cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button-selected.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button-slim.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button-slim.9.png new file mode 100644 index 0000000..8ce8bc6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button-slim.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button.9.png new file mode 100644 index 0000000..99cf7a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/check-off.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/check-off.png new file mode 100644 index 0000000..1b4a87d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/check.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/check.png new file mode 100644 index 0000000..5fe4e8a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/check.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/cursor.png new file mode 100644 index 0000000..06f7bd9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-export.fnt new file mode 100644 index 0000000..e143284 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=129 scaleH=130 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=120 y=79 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=121 y=66 width=5 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=0 y=0 width=18 height=14 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="#" +char id=36 x=112 y=27 width=7 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=101 y=65 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=102 y=13 width=11 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=123 y=55 width=2 height=5 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=122 y=107 width=4 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=121 y=0 width=4 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=41 y=122 width=7 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=102 y=27 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=116 y=122 width=5 height=4 xoffset=0 yoffset=13 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=110 y=47 width=5 height=2 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=110 y=43 width=5 height=3 xoffset=0 yoffset=13 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=102 y=38 width=7 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=34 y=80 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=116 y=94 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=36 y=0 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=51 y=117 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=17 y=93 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=53 y=13 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=0 y=106 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=101 y=52 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="7" +char id=56 x=68 y=117 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="8" +char id=57 x=84 y=104 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="9" +char id=58 x=115 y=0 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=115 y=65 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=21 y=119 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=0 y=123 width=9 height=5 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=11 y=119 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=102 y=0 width=12 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=101 y=79 width=12 height=12 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=19 y=0 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="A" +char id=66 x=17 y=67 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="B" +char id=67 x=35 y=52 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=36 y=26 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=19 y=26 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=53 y=0 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=19 y=39 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=19 y=13 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="H" +char id=73 x=117 y=43 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=34 y=106 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=34 y=67 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=34 y=93 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=15 width=18 height=12 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="M" +char id=78 x=0 y=93 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="N" +char id=79 x=36 y=39 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=52 y=52 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=0 y=67 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=51 y=65 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="R" +char id=83 x=53 y=26 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=51 y=78 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=51 y=91 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="U" +char id=86 x=68 y=91 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=41 width=18 height=12 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="W" +char id=88 x=68 y=65 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=53 y=39 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=68 y=78 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=122 y=92 width=4 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=114 y=13 width=6 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=123 y=40 width=4 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=31 y=119 width=9 height=8 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=41 y=119 width=9 height=2 xoffset=0 yoffset=17 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=117 y=56 width=5 height=4 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=51 y=104 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="a" +char id=98 x=69 y=52 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=70 y=0 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=70 y=26 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=70 y=39 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="e" +char id=102 x=70 y=13 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="f" +char id=103 x=84 y=117 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=36 y=13 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="h" +char id=105 x=120 y=27 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=85 y=52 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="j" +char id=107 x=85 y=91 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="k" +char id=108 x=85 y=65 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="l" +char id=109 x=0 y=54 width=17 height=12 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="m" +char id=110 x=68 y=104 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="n" +char id=111 x=86 y=13 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=86 y=26 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=86 y=0 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="q" +char id=114 x=100 y=104 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="r" +char id=115 x=17 y=106 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=86 y=39 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="t" +char id=117 x=17 y=80 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="u" +char id=118 x=18 y=54 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="v" +char id=119 x=0 y=28 width=18 height=12 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=100 y=117 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=85 y=78 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=0 y=80 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="z" +char id=123 x=114 y=79 width=5 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=126 y=0 width=2 height=17 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=116 y=107 width=5 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=119 width=10 height=3 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=121 y=61 width=5 height=4 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=101 y=92 width=11 height=11 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-export.png new file mode 100644 index 0000000..7a95ef4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-title-export.fnt new file mode 100644 index 0000000..6769bba --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=75 base=75 scaleW=547 scaleH=560 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=494 y=119 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="!" +char id=34 x=71 y=527 width=61 height=13 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter=""" +char id=35 x=0 y=224 width=80 height=55 xoffset=0 yoffset=20 xadvance=86 page=0 chnl=0 letter="#" +char id=36 x=89 y=112 width=64 height=65 xoffset=0 yoffset=14 xadvance=70 page=0 chnl=0 letter="$" +char id=37 x=0 y=280 width=73 height=55 xoffset=0 yoffset=20 xadvance=79 page=0 chnl=0 letter="%" +char id=38 x=0 y=392 width=70 height=55 xoffset=0 yoffset=20 xadvance=76 page=0 chnl=0 letter="&" +char id=39 x=441 y=231 width=35 height=13 xoffset=0 yoffset=20 xadvance=41 page=0 chnl=0 letter="'" +char id=40 x=452 y=63 width=33 height=62 xoffset=0 yoffset=17 xadvance=39 page=0 chnl=0 letter="(" +char id=41 x=452 y=0 width=33 height=62 xoffset=0 yoffset=17 xadvance=39 page=0 chnl=0 letter=")" +char id=42 x=89 y=178 width=57 height=42 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="*" +char id=43 x=203 y=346 width=58 height=39 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="+" +char id=44 x=441 y=245 width=30 height=29 xoffset=0 yoffset=56 xadvance=36 page=0 chnl=0 letter="," +char id=45 x=139 y=448 width=50 height=13 xoffset=0 yoffset=33 xadvance=56 page=0 chnl=0 letter="-" +char id=46 x=451 y=126 width=22 height=19 xoffset=0 yoffset=56 xadvance=28 page=0 chnl=0 letter="." +char id=47 x=382 y=448 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="/" +char id=48 x=263 y=290 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="0" +char id=49 x=486 y=0 width=33 height=55 xoffset=0 yoffset=20 xadvance=39 page=0 chnl=0 letter="1" +char id=50 x=336 y=112 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="2" +char id=51 x=382 y=336 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="3" +char id=52 x=71 y=415 width=67 height=55 xoffset=0 yoffset=20 xadvance=73 page=0 chnl=0 letter="4" +char id=53 x=395 y=56 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="5" +char id=54 x=217 y=56 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="6" +char id=55 x=389 y=168 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="7" +char id=56 x=324 y=224 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="8" +char id=57 x=395 y=0 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="9" +char id=58 x=494 y=459 width=22 height=42 xoffset=0 yoffset=33 xadvance=28 page=0 chnl=0 letter=":" +char id=59 x=487 y=294 width=30 height=52 xoffset=0 yoffset=33 xadvance=36 page=0 chnl=0 letter=";" +char id=60 x=264 y=514 width=44 height=35 xoffset=0 yoffset=27 xadvance=50 page=0 chnl=0 letter="<" +char id=61 x=147 y=234 width=50 height=26 xoffset=0 yoffset=33 xadvance=56 page=0 chnl=0 letter="=" +char id=62 x=440 y=343 width=44 height=35 xoffset=0 yoffset=27 xadvance=50 page=0 chnl=0 letter=">" +char id=63 x=439 y=392 width=54 height=55 xoffset=0 yoffset=20 xadvance=60 page=0 chnl=0 letter="?" +char id=64 x=72 y=336 width=66 height=55 xoffset=0 yoffset=20 xadvance=72 page=0 chnl=0 letter="@" +char id=65 x=323 y=392 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="A" +char id=66 x=154 y=112 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="B" +char id=67 x=270 y=168 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="C" +char id=68 x=81 y=224 width=65 height=55 xoffset=0 yoffset=20 xadvance=71 page=0 chnl=0 letter="D" +char id=69 x=382 y=504 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="E" +char id=70 x=217 y=0 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="F" +char id=71 x=323 y=280 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="G" +char id=72 x=336 y=56 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="H" +char id=73 x=494 y=175 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="I" +char id=74 x=382 y=280 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="J" +char id=75 x=330 y=168 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="K" +char id=76 x=439 y=504 width=53 height=55 xoffset=0 yoffset=20 xadvance=59 page=0 chnl=0 letter="L" +char id=77 x=0 y=168 width=88 height=55 xoffset=0 yoffset=20 xadvance=94 page=0 chnl=0 letter="M" +char id=78 x=323 y=448 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="N" +char id=79 x=139 y=392 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="O" +char id=80 x=323 y=336 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="P" +char id=81 x=140 y=280 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="Q" +char id=82 x=277 y=56 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="R" +char id=83 x=202 y=504 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="S" +char id=84 x=89 y=56 width=64 height=55 xoffset=0 yoffset=20 xadvance=70 page=0 chnl=0 letter="T" +char id=85 x=264 y=402 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="U" +char id=86 x=264 y=458 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="V" +char id=87 x=0 y=112 width=88 height=55 xoffset=0 yoffset=20 xadvance=94 page=0 chnl=0 letter="W" +char id=88 x=0 y=336 width=71 height=55 xoffset=0 yoffset=20 xadvance=77 page=0 chnl=0 letter="X" +char id=89 x=0 y=448 width=70 height=55 xoffset=0 yoffset=20 xadvance=76 page=0 chnl=0 letter="Y" +char id=90 x=154 y=56 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="Z" +char id=91 x=487 y=231 width=32 height=62 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="[" +char id=92 x=382 y=392 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="\" +char id=93 x=486 y=56 width=32 height=62 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="]" +char id=94 x=133 y=527 width=60 height=26 xoffset=0 yoffset=20 xadvance=66 page=0 chnl=0 letter="^" +char id=95 x=71 y=541 width=57 height=12 xoffset=0 yoffset=63 xadvance=63 page=0 chnl=0 letter="_" +char id=96 x=147 y=261 width=40 height=16 xoffset=0 yoffset=18 xadvance=46 page=0 chnl=0 letter="`" +char id=97 x=210 y=168 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="a" +char id=98 x=147 y=178 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="b" +char id=99 x=202 y=448 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="c" +char id=100 x=74 y=280 width=65 height=55 xoffset=0 yoffset=20 xadvance=71 page=0 chnl=0 letter="d" +char id=101 x=155 y=0 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="e" +char id=102 x=203 y=290 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="f" +char id=103 x=216 y=112 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="g" +char id=104 x=323 y=504 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="h" +char id=105 x=494 y=347 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="i" +char id=106 x=383 y=224 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="j" +char id=107 x=336 y=0 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="k" +char id=108 x=493 y=504 width=53 height=55 xoffset=0 yoffset=20 xadvance=59 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=88 height=55 xoffset=0 yoffset=20 xadvance=94 page=0 chnl=0 letter="m" +char id=110 x=264 y=346 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="n" +char id=111 x=264 y=224 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="o" +char id=112 x=277 y=0 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="p" +char id=113 x=138 y=471 width=63 height=55 xoffset=0 yoffset=20 xadvance=69 page=0 chnl=0 letter="q" +char id=114 x=394 y=112 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="r" +char id=115 x=202 y=392 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="s" +char id=116 x=139 y=336 width=63 height=55 xoffset=0 yoffset=20 xadvance=69 page=0 chnl=0 letter="t" +char id=117 x=276 y=112 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="u" +char id=118 x=203 y=234 width=60 height=55 xoffset=0 yoffset=20 xadvance=66 page=0 chnl=0 letter="v" +char id=119 x=0 y=0 width=89 height=55 xoffset=0 yoffset=20 xadvance=95 page=0 chnl=0 letter="w" +char id=120 x=90 y=0 width=64 height=55 xoffset=0 yoffset=20 xadvance=70 page=0 chnl=0 letter="x" +char id=121 x=0 y=504 width=70 height=55 xoffset=0 yoffset=20 xadvance=76 page=0 chnl=0 letter="y" +char id=122 x=71 y=471 width=66 height=55 xoffset=0 yoffset=20 xadvance=72 page=0 chnl=0 letter="z" +char id=123 x=440 y=280 width=46 height=62 xoffset=0 yoffset=16 xadvance=52 page=0 chnl=0 letter="{" +char id=124 x=494 y=403 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="|" +char id=125 x=447 y=168 width=46 height=62 xoffset=0 yoffset=16 xadvance=52 page=0 chnl=0 letter="}" +char id=126 x=71 y=392 width=67 height=22 xoffset=0 yoffset=-3 xadvance=73 page=0 chnl=0 letter="~" +char id=8226 x=451 y=146 width=20 height=20 xoffset=0 yoffset=41 xadvance=26 page=0 chnl=0 letter="•" +char id=169 x=439 y=448 width=54 height=55 xoffset=0 yoffset=17 xadvance=60 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=304 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-title-export.png new file mode 100644 index 0000000..a19bda7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/left-arrow-down.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/left-arrow-down.png new file mode 100644 index 0000000..8c61049 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/left-arrow-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/left-arrow.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/left-arrow.png new file mode 100644 index 0000000..b0bd67d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/left-arrow.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/list.9.png new file mode 100644 index 0000000..3caea3c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/minus.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/minus.png new file mode 100644 index 0000000..9028c66 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/plus.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/plus.png new file mode 100644 index 0000000..e1e1efa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/progress-bar-back.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/progress-bar-back.9.png new file mode 100644 index 0000000..2beb724 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/progress-bar-back.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/progress-bar.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/progress-bar.9.png new file mode 100644 index 0000000..4631359 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/progress-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/radio-off.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/radio-off.png new file mode 100644 index 0000000..c7d4346 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/radio.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/radio.png new file mode 100644 index 0000000..b7ab4a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/right-arrow-down.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/right-arrow-down.png new file mode 100644 index 0000000..9695a5b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/right-arrow-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/right-arrow.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/right-arrow.png new file mode 100644 index 0000000..b0abd88 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/right-arrow.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/scrollbar-h.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/scrollbar-h.9.png new file mode 100644 index 0000000..6522d56 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/scrollbar-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/scrollbar-v.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/scrollbar-v.9.png new file mode 100644 index 0000000..c4a1d12 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/scrollbar-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/select-box.9.png new file mode 100644 index 0000000..4e8191f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/selection.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/selection.png new file mode 100644 index 0000000..144d15c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-back.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-back.9.png new file mode 100644 index 0000000..0f99b6d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-back.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-knob.png new file mode 100644 index 0000000..7e8328c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-v.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-v.9.png new file mode 100644 index 0000000..d5732d9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider.9.png new file mode 100644 index 0000000..0ad4b5b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/slider.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/soldier.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/soldier.png new file mode 100644 index 0000000..fff8136 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/soldier.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/splitpane-h.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/splitpane-h.9.png new file mode 100644 index 0000000..8d5d1de Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/splitpane-h.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/splitpane-v.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/splitpane-v.9.png new file mode 100644 index 0000000..809ef88 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/splitpane-v.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/textfield.9.png new file mode 100644 index 0000000..6a2a0db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/white.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/white.png new file mode 100644 index 0000000..e5b7b80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/window-special.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/window-special.9.png new file mode 100644 index 0000000..74d1b77 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/window-special.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/window.9.png new file mode 100644 index 0000000..8598d6e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/font-export.fnt new file mode 100644 index 0000000..e143284 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=129 scaleH=130 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=120 y=79 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="!" +char id=34 x=121 y=66 width=5 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=0 y=0 width=18 height=14 xoffset=0 yoffset=3 xadvance=20 page=0 chnl=0 letter="#" +char id=36 x=112 y=27 width=7 height=15 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=101 y=65 width=13 height=13 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 letter="%" +char id=38 x=102 y=13 width=11 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=123 y=55 width=2 height=5 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=122 y=107 width=4 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=121 y=0 width=4 height=15 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=41 y=122 width=7 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=102 y=27 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=116 y=122 width=5 height=4 xoffset=0 yoffset=13 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=110 y=47 width=5 height=2 xoffset=0 yoffset=11 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=110 y=43 width=5 height=3 xoffset=0 yoffset=13 xadvance=7 page=0 chnl=0 letter="." +char id=47 x=102 y=38 width=7 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=34 y=80 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=116 y=94 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="1" +char id=50 x=36 y=0 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=51 y=117 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=17 y=93 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=53 y=13 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=0 y=106 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=101 y=52 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="7" +char id=56 x=68 y=117 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="8" +char id=57 x=84 y=104 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="9" +char id=58 x=115 y=0 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=115 y=65 width=5 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=21 y=119 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=0 y=123 width=9 height=5 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=11 y=119 width=9 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=102 y=0 width=12 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="?" +char id=64 x=101 y=79 width=12 height=12 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="@" +char id=65 x=19 y=0 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="A" +char id=66 x=17 y=67 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="B" +char id=67 x=35 y=52 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=36 y=26 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=19 y=26 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=53 y=0 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=19 y=39 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=19 y=13 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="H" +char id=73 x=117 y=43 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="I" +char id=74 x=34 y=106 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=34 y=67 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=34 y=93 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=15 width=18 height=12 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="M" +char id=78 x=0 y=93 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="N" +char id=79 x=36 y=39 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=52 y=52 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=0 y=67 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=51 y=65 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="R" +char id=83 x=53 y=26 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=51 y=78 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=51 y=91 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="U" +char id=86 x=68 y=91 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=41 width=18 height=12 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="W" +char id=88 x=68 y=65 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=53 y=39 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=68 y=78 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=122 y=92 width=4 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=114 y=13 width=6 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="\" +char id=93 x=123 y=40 width=4 height=14 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=31 y=119 width=9 height=8 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=41 y=119 width=9 height=2 xoffset=0 yoffset=17 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=117 y=56 width=5 height=4 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=51 y=104 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="a" +char id=98 x=69 y=52 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="b" +char id=99 x=70 y=0 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="c" +char id=100 x=70 y=26 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="d" +char id=101 x=70 y=39 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="e" +char id=102 x=70 y=13 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="f" +char id=103 x=84 y=117 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="g" +char id=104 x=36 y=13 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="h" +char id=105 x=120 y=27 width=5 height=12 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="i" +char id=106 x=85 y=52 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="j" +char id=107 x=85 y=91 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="k" +char id=108 x=85 y=65 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="l" +char id=109 x=0 y=54 width=17 height=12 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 letter="m" +char id=110 x=68 y=104 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="n" +char id=111 x=86 y=13 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="o" +char id=112 x=86 y=26 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="p" +char id=113 x=86 y=0 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="q" +char id=114 x=100 y=104 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="r" +char id=115 x=17 y=106 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=86 y=39 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="t" +char id=117 x=17 y=80 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="u" +char id=118 x=18 y=54 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="v" +char id=119 x=0 y=28 width=18 height=12 xoffset=0 yoffset=4 xadvance=20 page=0 chnl=0 letter="w" +char id=120 x=100 y=117 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="x" +char id=121 x=85 y=78 width=15 height=12 xoffset=0 yoffset=4 xadvance=17 page=0 chnl=0 letter="y" +char id=122 x=0 y=80 width=16 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="z" +char id=123 x=114 y=79 width=5 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=126 y=0 width=2 height=17 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=116 y=107 width=5 height=14 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=119 width=10 height=3 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=121 y=61 width=5 height=4 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=101 y=92 width=11 height=11 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=8 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=64 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/font-title-export.fnt new file mode 100644 index 0000000..6769bba --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=75 base=75 scaleW=547 scaleH=560 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=494 y=119 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="!" +char id=34 x=71 y=527 width=61 height=13 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter=""" +char id=35 x=0 y=224 width=80 height=55 xoffset=0 yoffset=20 xadvance=86 page=0 chnl=0 letter="#" +char id=36 x=89 y=112 width=64 height=65 xoffset=0 yoffset=14 xadvance=70 page=0 chnl=0 letter="$" +char id=37 x=0 y=280 width=73 height=55 xoffset=0 yoffset=20 xadvance=79 page=0 chnl=0 letter="%" +char id=38 x=0 y=392 width=70 height=55 xoffset=0 yoffset=20 xadvance=76 page=0 chnl=0 letter="&" +char id=39 x=441 y=231 width=35 height=13 xoffset=0 yoffset=20 xadvance=41 page=0 chnl=0 letter="'" +char id=40 x=452 y=63 width=33 height=62 xoffset=0 yoffset=17 xadvance=39 page=0 chnl=0 letter="(" +char id=41 x=452 y=0 width=33 height=62 xoffset=0 yoffset=17 xadvance=39 page=0 chnl=0 letter=")" +char id=42 x=89 y=178 width=57 height=42 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="*" +char id=43 x=203 y=346 width=58 height=39 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="+" +char id=44 x=441 y=245 width=30 height=29 xoffset=0 yoffset=56 xadvance=36 page=0 chnl=0 letter="," +char id=45 x=139 y=448 width=50 height=13 xoffset=0 yoffset=33 xadvance=56 page=0 chnl=0 letter="-" +char id=46 x=451 y=126 width=22 height=19 xoffset=0 yoffset=56 xadvance=28 page=0 chnl=0 letter="." +char id=47 x=382 y=448 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="/" +char id=48 x=263 y=290 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="0" +char id=49 x=486 y=0 width=33 height=55 xoffset=0 yoffset=20 xadvance=39 page=0 chnl=0 letter="1" +char id=50 x=336 y=112 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="2" +char id=51 x=382 y=336 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="3" +char id=52 x=71 y=415 width=67 height=55 xoffset=0 yoffset=20 xadvance=73 page=0 chnl=0 letter="4" +char id=53 x=395 y=56 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="5" +char id=54 x=217 y=56 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="6" +char id=55 x=389 y=168 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="7" +char id=56 x=324 y=224 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="8" +char id=57 x=395 y=0 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="9" +char id=58 x=494 y=459 width=22 height=42 xoffset=0 yoffset=33 xadvance=28 page=0 chnl=0 letter=":" +char id=59 x=487 y=294 width=30 height=52 xoffset=0 yoffset=33 xadvance=36 page=0 chnl=0 letter=";" +char id=60 x=264 y=514 width=44 height=35 xoffset=0 yoffset=27 xadvance=50 page=0 chnl=0 letter="<" +char id=61 x=147 y=234 width=50 height=26 xoffset=0 yoffset=33 xadvance=56 page=0 chnl=0 letter="=" +char id=62 x=440 y=343 width=44 height=35 xoffset=0 yoffset=27 xadvance=50 page=0 chnl=0 letter=">" +char id=63 x=439 y=392 width=54 height=55 xoffset=0 yoffset=20 xadvance=60 page=0 chnl=0 letter="?" +char id=64 x=72 y=336 width=66 height=55 xoffset=0 yoffset=20 xadvance=72 page=0 chnl=0 letter="@" +char id=65 x=323 y=392 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="A" +char id=66 x=154 y=112 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="B" +char id=67 x=270 y=168 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="C" +char id=68 x=81 y=224 width=65 height=55 xoffset=0 yoffset=20 xadvance=71 page=0 chnl=0 letter="D" +char id=69 x=382 y=504 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="E" +char id=70 x=217 y=0 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="F" +char id=71 x=323 y=280 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="G" +char id=72 x=336 y=56 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="H" +char id=73 x=494 y=175 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="I" +char id=74 x=382 y=280 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="J" +char id=75 x=330 y=168 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="K" +char id=76 x=439 y=504 width=53 height=55 xoffset=0 yoffset=20 xadvance=59 page=0 chnl=0 letter="L" +char id=77 x=0 y=168 width=88 height=55 xoffset=0 yoffset=20 xadvance=94 page=0 chnl=0 letter="M" +char id=78 x=323 y=448 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="N" +char id=79 x=139 y=392 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="O" +char id=80 x=323 y=336 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="P" +char id=81 x=140 y=280 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="Q" +char id=82 x=277 y=56 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="R" +char id=83 x=202 y=504 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="S" +char id=84 x=89 y=56 width=64 height=55 xoffset=0 yoffset=20 xadvance=70 page=0 chnl=0 letter="T" +char id=85 x=264 y=402 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="U" +char id=86 x=264 y=458 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="V" +char id=87 x=0 y=112 width=88 height=55 xoffset=0 yoffset=20 xadvance=94 page=0 chnl=0 letter="W" +char id=88 x=0 y=336 width=71 height=55 xoffset=0 yoffset=20 xadvance=77 page=0 chnl=0 letter="X" +char id=89 x=0 y=448 width=70 height=55 xoffset=0 yoffset=20 xadvance=76 page=0 chnl=0 letter="Y" +char id=90 x=154 y=56 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="Z" +char id=91 x=487 y=231 width=32 height=62 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="[" +char id=92 x=382 y=392 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="\" +char id=93 x=486 y=56 width=32 height=62 xoffset=0 yoffset=17 xadvance=38 page=0 chnl=0 letter="]" +char id=94 x=133 y=527 width=60 height=26 xoffset=0 yoffset=20 xadvance=66 page=0 chnl=0 letter="^" +char id=95 x=71 y=541 width=57 height=12 xoffset=0 yoffset=63 xadvance=63 page=0 chnl=0 letter="_" +char id=96 x=147 y=261 width=40 height=16 xoffset=0 yoffset=18 xadvance=46 page=0 chnl=0 letter="`" +char id=97 x=210 y=168 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="a" +char id=98 x=147 y=178 width=62 height=55 xoffset=0 yoffset=20 xadvance=68 page=0 chnl=0 letter="b" +char id=99 x=202 y=448 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="c" +char id=100 x=74 y=280 width=65 height=55 xoffset=0 yoffset=20 xadvance=71 page=0 chnl=0 letter="d" +char id=101 x=155 y=0 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="e" +char id=102 x=203 y=290 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="f" +char id=103 x=216 y=112 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="g" +char id=104 x=323 y=504 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="h" +char id=105 x=494 y=347 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="i" +char id=106 x=383 y=224 width=57 height=55 xoffset=0 yoffset=20 xadvance=63 page=0 chnl=0 letter="j" +char id=107 x=336 y=0 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="k" +char id=108 x=493 y=504 width=53 height=55 xoffset=0 yoffset=20 xadvance=59 page=0 chnl=0 letter="l" +char id=109 x=0 y=56 width=88 height=55 xoffset=0 yoffset=20 xadvance=94 page=0 chnl=0 letter="m" +char id=110 x=264 y=346 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="n" +char id=111 x=264 y=224 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="o" +char id=112 x=277 y=0 width=58 height=55 xoffset=0 yoffset=20 xadvance=64 page=0 chnl=0 letter="p" +char id=113 x=138 y=471 width=63 height=55 xoffset=0 yoffset=20 xadvance=69 page=0 chnl=0 letter="q" +char id=114 x=394 y=112 width=56 height=55 xoffset=0 yoffset=20 xadvance=62 page=0 chnl=0 letter="r" +char id=115 x=202 y=392 width=61 height=55 xoffset=0 yoffset=20 xadvance=67 page=0 chnl=0 letter="s" +char id=116 x=139 y=336 width=63 height=55 xoffset=0 yoffset=20 xadvance=69 page=0 chnl=0 letter="t" +char id=117 x=276 y=112 width=59 height=55 xoffset=0 yoffset=20 xadvance=65 page=0 chnl=0 letter="u" +char id=118 x=203 y=234 width=60 height=55 xoffset=0 yoffset=20 xadvance=66 page=0 chnl=0 letter="v" +char id=119 x=0 y=0 width=89 height=55 xoffset=0 yoffset=20 xadvance=95 page=0 chnl=0 letter="w" +char id=120 x=90 y=0 width=64 height=55 xoffset=0 yoffset=20 xadvance=70 page=0 chnl=0 letter="x" +char id=121 x=0 y=504 width=70 height=55 xoffset=0 yoffset=20 xadvance=76 page=0 chnl=0 letter="y" +char id=122 x=71 y=471 width=66 height=55 xoffset=0 yoffset=20 xadvance=72 page=0 chnl=0 letter="z" +char id=123 x=440 y=280 width=46 height=62 xoffset=0 yoffset=16 xadvance=52 page=0 chnl=0 letter="{" +char id=124 x=494 y=403 width=22 height=55 xoffset=0 yoffset=20 xadvance=28 page=0 chnl=0 letter="|" +char id=125 x=447 y=168 width=46 height=62 xoffset=0 yoffset=16 xadvance=52 page=0 chnl=0 letter="}" +char id=126 x=71 y=392 width=67 height=22 xoffset=0 yoffset=-3 xadvance=73 page=0 chnl=0 letter="~" +char id=8226 x=451 y=146 width=20 height=20 xoffset=0 yoffset=41 xadvance=26 page=0 chnl=0 letter="•" +char id=169 x=439 y=448 width=54 height=55 xoffset=0 yoffset=17 xadvance=60 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=38 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=304 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.atlas b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.atlas new file mode 100644 index 0000000..c7d3ff4 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.atlas @@ -0,0 +1,276 @@ + +star-soldier-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 1, 21 + size: 75, 57 + split: 33, 34, 25, 24 + pad: 33, 34, 22, 21 + orig: 75, 57 + offset: 0, 0 + index: -1 +button-selected + rotate: false + xy: 188, 95 + size: 75, 57 + split: 33, 34, 25, 24 + pad: 33, 34, 22, 21 + orig: 75, 57 + offset: 0, 0 + index: -1 +button-slim + rotate: false + xy: 314, 165 + size: 30, 30 + split: 11, 11, 11, 11 + pad: 11, 11, 8, 8 + orig: 30, 30 + offset: 0, 0 + index: -1 +check + rotate: false + xy: 681, 925 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +check-off + rotate: false + xy: 705, 949 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 24, 17 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 550, 835 + size: 129, 130 + orig: 129, 130 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 463 + size: 547, 560 + orig: 547, 560 + offset: 0, 0 + index: -1 +left-arrow + rotate: false + xy: 265, 115 + size: 19, 37 + orig: 19, 37 + offset: 0, 0 + index: -1 +left-arrow-down + rotate: false + xy: 621, 796 + size: 19, 37 + orig: 19, 37 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 772, 991 + size: 69, 32 + split: 7, 7, 2, 7 + pad: 9, 9, 4, 9 + orig: 69, 32 + offset: 0, 0 + index: -1 +minus + rotate: false + xy: 78, 37 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +plus + rotate: false + xy: 102, 62 + size: 15, 16 + orig: 15, 16 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 550, 694 + size: 1, 50 + split: 0, 0, 5, 3 + pad: 0, 0, 0, 0 + orig: 1, 50 + offset: 0, 0 + index: -1 +progress-bar-back + rotate: false + xy: 1, 80 + size: 185, 72 + split: 87, 86, 12, 11 + pad: 5, 5, 11, 11 + orig: 185, 72 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 843, 1006 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +radio-off + rotate: false + xy: 346, 178 + size: 17, 17 + orig: 17, 17 + offset: 0, 0 + index: -1 +right-arrow + rotate: false + xy: 550, 746 + size: 19, 37 + orig: 19, 37 + offset: 0, 0 + index: -1 +right-arrow-down + rotate: false + xy: 510, 389 + size: 19, 37 + orig: 19, 37 + offset: 0, 0 + index: -1 +scrollbar-h + rotate: false + xy: 772, 968 + size: 19, 21 + split: 5, 4, 4, 4 + pad: 0, 0, 0, 0 + orig: 19, 21 + offset: 0, 0 + index: -1 +scrollbar-v + rotate: false + xy: 1, 1 + size: 21, 18 + split: 4, 4, 4, 2 + pad: 0, 1, 0, 0 + orig: 21, 18 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 550, 785 + size: 69, 48 + split: 11, 37, 11, 34 + pad: 11, 44, 8, 3 + orig: 69, 48 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 286, 151 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 265, 100 + size: 1, 13 + split: 0, 0, 0, 0 + orig: 1, 13 + offset: 0, 0 + index: -1 +slider-back + rotate: false + xy: 78, 55 + size: 22, 23 + split: 8, 8, 7, 8 + pad: 5, 2, 5, 5 + orig: 22, 23 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 681, 943 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +slider-v + rotate: false + xy: 188, 92 + size: 13, 1 + split: 0, 0, 0, 0 + orig: 13, 1 + offset: 0, 0 + index: -1 +soldier + rotate: false + xy: 314, 197 + size: 194, 264 + orig: 194, 264 + offset: 0, 0 + index: -1 +splitpane-h + rotate: false + xy: 314, 159 + size: 4, 4 + split: 1, 1, 1, 1 + pad: 1, 1, 0, 0 + orig: 4, 4 + offset: 0, 0 + index: -1 +splitpane-v + rotate: false + xy: 536, 457 + size: 4, 4 + split: 1, 1, 1, 1 + pad: 0, 0, 1, 1 + orig: 4, 4 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 510, 428 + size: 24, 33 + split: 6, 16, 7, 14 + pad: 6, 10, 9, 8 + orig: 24, 33 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 571, 782 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 550, 967 + size: 220, 56 + split: 78, 76, 41, 4 + pad: 11, 9, 35, 4 + orig: 220, 56 + offset: 0, 0 + index: -1 +window-special + rotate: false + xy: 1, 154 + size: 311, 307 + split: 157, 153, 158, 148 + pad: 23, 21, 23, 22 + orig: 311, 307 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.json b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.json new file mode 100644 index 0000000..e59d43d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.json @@ -0,0 +1,213 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + sky-blue: { + r: 0.2733333 + g: 0.68720984 + b: 1 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dark-blue: { + name: white + color: { + r: 0.09466666 + g: 0.11323714 + b: 0.23666666 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-selected + } + toggle: { + up: button + down: button-selected + checked: button-selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: check + checkboxOff: check-off + font: font + fontColor: white + downFontColor: sky-blue + checkedFontColor: sky-blue + } + radio: { + checkboxOn: radio + checkboxOff: radio-off + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-selected + } + toggle: { + up: button + down: button-selected + checked: button-selected + } + left: { + imageUp: left-arrow + imageDown: left-arrow-down + } + right: { + imageUp: right-arrow + imageDown: right-arrow-down + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + up: button + down: button-selected + } + toggle: { + font: font + up: button + down: button-selected + checked: button-selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + title: { + font: title + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: sky-blue + fontColorUnselected: white + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollbar-h + vScrollKnob: scrollbar-v + } + list: { + background: list + hScrollKnob: scrollbar-h + vScrollKnob: scrollbar-v + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box + scrollStyle: list + listStyle: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: slider-back + knob: slider-knob + knobBefore: slider + } + default-vertical: { + background: slider-back + knob: slider-knob + knobBefore: slider-v + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-h + } + default-vertical: { + handle: splitpane-v + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + up: button + down: button-selected + } + toggle: { + font: font + up: button + down: button-selected + checked: button-selected + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: black + background: textfield + cursor: cursor + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: button-slim + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: plus + minus: minus + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window + titleFont: font + titleFontColor: black + } + dialog: { + background: window + titleFont: font + titleFontColor: black + stageBackground: dark-blue + } + special: { + background: window-special + titleFont: font + titleFontColor: black + } + special-dialog: { + background: window-special + titleFont: font + titleFontColor: black + stageBackground: dark-blue + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.png b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.png new file mode 100644 index 0000000..0b9a8c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/star-soldier/skin/star-soldier-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/README.md b/src/main/resources/omni_power/gdx-skins/terra-mother/README.md new file mode 100644 index 0000000..9152a11 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/README.md @@ -0,0 +1,21 @@ +# Terra Mother UI + +``` +Terra Mother UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2016 Raymond Buckley + +Terra Mother UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most common **Scene2D** widgets. A tribute to [EarthBound](https://en.wikipedia.org/wiki/EarthBound). + +![Tubular](preview.png) + +You can find an example project [here](https://ray3k.wordpress.com/terra-mother-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=22887). diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/preview.png b/src/main/resources/omni_power/gdx-skins/terra-mother/preview.png new file mode 100644 index 0000000..d1d17e9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x-export.fnt new file mode 100644 index 0000000..ca0f536 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x-export.fnt @@ -0,0 +1,104 @@ +info face="199x-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=129 scaleH=129 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="199x-export.png" +chars count=98 +char id=33 x=123 y=86 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=54 y=121 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=0 y=93 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="#" +char id=36 x=93 y=0 width=8 height=20 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=36 width=18 height=17 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="%" +char id=38 x=18 y=54 width=17 height=14 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="&" +char id=39 x=102 y=121 width=2 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=111 y=55 width=6 height=20 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=111 y=34 width=6 height=20 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=63 y=36 width=11 height=10 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=62 y=0 width=11 height=11 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=63 y=47 width=3 height=6 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=18 y=125 width=6 height=2 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=25 y=125 width=2 height=3 xoffset=0 yoffset=19 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=111 y=16 width=6 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=61 y=83 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=122 y=105 width=3 height=17 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=50 y=18 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=74 y=13 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=49 y=67 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=73 y=65 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=73 y=47 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=62 y=101 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="7" +char id=56 x=73 y=83 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=83 y=67 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=126 y=104 width=2 height=11 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=118 y=105 width=3 height=14 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=61 y=72 width=11 height=10 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=35 y=121 width=11 height=6 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter="=" +char id=62 x=62 y=25 width=11 height=10 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter=">" +char id=63 x=83 y=31 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="?" +char id=64 x=0 y=111 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="@" +char id=65 x=18 y=72 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="A" +char id=66 x=102 y=18 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=36 y=67 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="C" +char id=68 x=51 y=36 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=93 y=93 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=93 y=75 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=35 y=31 width=14 height=17 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=61 y=54 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=124 y=39 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=118 y=21 width=5 height=20 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=49 y=0 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=84 y=13 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=20 height=17 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="M" +char id=78 x=19 y=36 width=15 height=17 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="N" +char id=79 x=0 y=75 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=84 y=85 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=54 width=17 height=20 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=74 y=101 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=102 y=103 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=36 y=49 width=14 height=17 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=36 y=0 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=18 y=90 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=18 width=20 height=17 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=21 y=13 width=14 height=17 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="X" +char id=89 x=50 y=103 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Y" +char id=90 x=36 y=85 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=118 y=63 width=4 height=20 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=111 y=76 width=6 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=118 y=84 width=4 height=20 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=62 y=119 width=8 height=9 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=18 y=69 width=17 height=2 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="_" +char id=96 x=75 y=31 width=7 height=5 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=51 y=54 width=9 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=102 y=85 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=84 y=116 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=93 y=39 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=93 y=111 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=102 y=49 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=83 y=49 width=9 height=17 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=93 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=124 y=21 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=123 y=63 width=3 height=22 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=102 y=67 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=126 y=86 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=35 y=108 width=14 height=12 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=102 y=36 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=74 y=0 width=9 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=93 y=57 width=8 height=17 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=102 y=0 width=8 height=17 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=111 y=94 width=6 height=12 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=111 y=107 width=6 height=12 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=111 y=0 width=6 height=15 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=84 y=0 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=62 y=12 width=11 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=21 y=0 width=14 height=12 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=36 y=18 width=11 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=49 y=85 width=11 height=17 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=84 y=103 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=118 y=42 width=5 height=20 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=124 y=0 width=2 height=20 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=118 y=0 width=5 height=20 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=36 y=103 width=11 height=4 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=47 y=121 width=6 height=6 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=18 y=108 width=16 height=16 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x-export.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x-export.png new file mode 100644 index 0000000..9ac7103 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x.png new file mode 100644 index 0000000..6b60daa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/199x.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cat.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cat.png new file mode 100644 index 0000000..321c331 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cat.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cents.9.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cents.9.png new file mode 100644 index 0000000..4cb0207 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cents.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cents.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cents.png new file mode 100644 index 0000000..76aa0a6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cents.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor.9.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor.9.png new file mode 100644 index 0000000..7766eac Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor.png new file mode 100644 index 0000000..5dbde9e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor2.9.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor2.9.png new file mode 100644 index 0000000..19a7d6b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor2.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor2.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor2.png new file mode 100644 index 0000000..c86c4ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/cursor2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/digit-box.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/digit-box.png new file mode 100644 index 0000000..129bc9c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/digit-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font-export.fnt new file mode 100644 index 0000000..91a36ad --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=21 base=21 scaleW=119 scaleH=120 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=114 y=91 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=84 y=113 width=6 height=6 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=15 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=24 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=26 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=35 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=111 y=40 width=2 height=6 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=102 y=72 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=104 y=17 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=68 y=96 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=35 y=85 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=109 y=74 width=4 height=6 xoffset=0 yoffset=19 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=35 y=113 width=10 height=2 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=21 y=17 width=2 height=2 xoffset=0 yoffset=19 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=46 y=98 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=95 y=34 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=109 y=98 width=4 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=86 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=86 y=51 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=15 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=92 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=86 y=34 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=93 y=102 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=95 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=93 y=85 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=114 y=57 width=2 height=10 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=108 y=0 width=4 height=16 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=13 y=109 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=57 y=85 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=57 y=96 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=86 y=68 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=37 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=0 y=86 width=12 height=16 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=26 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=37 y=17 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=26 y=17 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=77 y=79 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=77 y=62 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=24 y=85 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=24 y=102 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=113 y=0 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=74 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=32 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=84 y=96 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=21 width=14 height=16 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=35 y=96 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=48 y=17 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=37 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=13 y=81 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=43 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=46 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="S" +char id=84 x=54 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=48 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=0 y=103 width=12 height=16 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=51 width=14 height=16 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="W" +char id=88 x=57 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=48 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=83 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=109 y=57 width=4 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=21 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=109 y=81 width=4 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=13 y=98 width=10 height=10 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=35 y=116 width=10 height=2 xoffset=0 yoffset=19 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=86 y=85 width=6 height=6 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=46 y=85 width=10 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="a" +char id=98 x=59 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=57 y=107 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=68 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=66 y=107 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=104 y=40 width=6 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=68 y=34 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=68 y=53 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=114 y=40 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=111 y=17 width=4 height=22 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=65 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=116 y=0 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=68 width=14 height=12 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=68 y=70 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=59 y=53 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=77 y=17 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=59 y=34 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=102 y=59 width=6 height=12 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=77 y=36 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=101 y=0 width=6 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=77 y=49 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=15 y=21 width=10 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=0 y=38 width=14 height=12 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=68 y=83 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=75 y=96 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=15 y=68 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=95 y=59 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=114 y=68 width=2 height=22 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=102 y=95 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=81 width=12 height=4 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="~" +char id=8226 x=95 y=51 width=7 height=7 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=20 height=20 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font-export.png new file mode 100644 index 0000000..fb1e628 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font.png new file mode 100644 index 0000000..b085350 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas-export.fnt new file mode 100644 index 0000000..35f68ba --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas-export.fnt @@ -0,0 +1,103 @@ +info face="giygas-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=50 base=50 scaleW=221 scaleH=222 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="giygas-export.png" +chars count=98 +char id=33 x=210 y=40 width=6 height=45 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="!" +char id=34 x=21 y=215 width=13 height=6 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter=""" +char id=35 x=0 y=189 width=20 height=32 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="#" +char id=36 x=35 y=0 width=17 height=40 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=34 height=32 xoffset=0 yoffset=18 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=0 y=67 width=27 height=33 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 letter="&" +char id=39 x=148 y=209 width=6 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=197 y=92 width=10 height=39 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=204 y=0 width=10 height=39 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=28 y=67 width=17 height=16 xoffset=0 yoffset=17 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=43 y=204 width=16 height=16 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=35 y=215 width=6 height=6 xoffset=0 yoffset=44 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=21 y=208 width=16 height=6 xoffset=0 yoffset=23 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=138 y=184 width=6 height=6 xoffset=0 yoffset=44 xadvance=8 page=0 chnl=0 letter="." +char id=47 x=189 y=0 width=14 height=45 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=180 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=196 y=46 width=13 height=45 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="1" +char id=50 x=95 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=78 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=87 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=62 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=155 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=70 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=78 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="8" +char id=57 x=79 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=155 y=184 width=6 height=24 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=":" +char id=59 x=148 y=184 width=6 height=24 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=0 y=135 width=23 height=26 xoffset=0 yoffset=24 xadvance=25 page=0 chnl=0 letter="<" +char id=61 x=33 y=46 width=16 height=18 xoffset=0 yoffset=17 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=0 y=162 width=22 height=26 xoffset=0 yoffset=24 xadvance=24 page=0 chnl=0 letter=">" +char id=63 x=180 y=138 width=15 height=45 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="?" +char id=64 x=0 y=33 width=32 height=33 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="@" +char id=65 x=95 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="A" +char id=66 x=96 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="B" +char id=67 x=104 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=112 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=121 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=129 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=163 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=61 y=130 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="H" +char id=73 x=209 y=131 width=7 height=45 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="I" +char id=74 x=130 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=146 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=163 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=23 y=162 width=19 height=45 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="M" +char id=78 x=43 y=158 width=17 height=45 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=172 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=53 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=44 y=84 width=17 height=45 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="Q" +char id=82 x=61 y=176 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="R" +char id=83 x=164 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=147 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=113 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="U" +char id=86 x=129 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=24 y=112 width=19 height=45 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=112 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=146 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=138 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=208 y=177 width=8 height=38 xoffset=0 yoffset=17 xadvance=10 page=0 chnl=0 letter="[" +char id=92 x=181 y=46 width=14 height=45 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="\" +char id=93 x=208 y=92 width=8 height=38 xoffset=0 yoffset=17 xadvance=10 page=0 chnl=0 letter="]" +char id=94 x=0 y=112 width=23 height=22 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="^" +char id=95 x=0 y=101 width=24 height=2 xoffset=0 yoffset=54 xadvance=26 page=0 chnl=0 letter="_" +char id=96 x=155 y=209 width=6 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=50 y=58 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=78 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=62 y=92 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=62 y=104 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=114 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=78 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="f" +char id=103 x=90 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=90 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=90 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="i" +char id=106 x=102 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="j" +char id=107 x=102 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="k" +char id=108 x=102 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="l" +char id=109 x=50 y=46 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=44 y=130 width=13 height=11 xoffset=0 yoffset=39 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=44 y=142 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="o" +char id=112 x=114 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=28 y=84 width=13 height=11 xoffset=0 yoffset=39 xadvance=15 page=0 chnl=0 letter="q" +char id=114 x=46 y=70 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="r" +char id=115 x=28 y=96 width=13 height=11 xoffset=0 yoffset=39 xadvance=15 page=0 chnl=0 letter="s" +char id=116 x=114 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="t" +char id=117 x=78 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=137 y=208 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=62 y=116 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=137 y=196 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=126 y=196 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=126 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="z" +char id=123 x=196 y=138 width=12 height=38 xoffset=0 yoffset=17 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=217 y=0 width=3 height=48 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=196 y=177 width=11 height=38 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="}" +char id=126 x=0 y=104 width=24 height=7 xoffset=0 yoffset=33 xadvance=26 page=0 chnl=0 letter="~" +char id=8226 x=126 y=208 width=10 height=10 xoffset=0 yoffset=32 xadvance=12 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas-export.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas-export.png new file mode 100644 index 0000000..ceaa13c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas.png new file mode 100644 index 0000000..f4c8e53 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/giygas.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-hp.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-hp.png new file mode 100644 index 0000000..6bf32c5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-hp.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-pp.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-pp.png new file mode 100644 index 0000000..f254d9d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-pp.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-title.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-title.png new file mode 100644 index 0000000..80a0922 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/label-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-1.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-1.png new file mode 100644 index 0000000..a4eace0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-1.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-2.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-2.png new file mode 100644 index 0000000..29a2471 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-2.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-3.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-3.png new file mode 100644 index 0000000..c5feeb7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-3.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-4.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-4.png new file mode 100644 index 0000000..f3af5d4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/pc-4.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn-export.fnt new file mode 100644 index 0000000..b8fe9c3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn-export.fnt @@ -0,0 +1,104 @@ +info face="saturn-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=29 base=29 scaleW=193 scaleH=193 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="saturn-export.png" +chars count=98 +char id=33 x=173 y=157 width=10 height=24 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="!" +char id=34 x=69 y=138 width=18 height=8 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=25 y=146 width=22 height=20 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="#" +char id=36 x=128 y=0 width=16 height=28 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="$" +char id=37 x=0 y=170 width=22 height=22 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="%" +char id=38 x=160 y=57 width=14 height=26 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="&" +char id=39 x=173 y=182 width=10 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="'" +char id=40 x=175 y=45 width=8 height=26 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="(" +char id=41 x=175 y=101 width=8 height=26 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=")" +char id=42 x=175 y=15 width=10 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=90 y=125 width=14 height=12 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=173 y=0 width=10 height=14 xoffset=0 yoffset=21 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=126 y=188 width=12 height=4 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="-" +char id=46 x=162 y=11 width=10 height=8 xoffset=0 yoffset=21 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=143 y=142 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="/" +char id=48 x=46 y=167 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="0" +char id=49 x=109 y=77 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="1" +char id=50 x=50 y=0 width=20 height=20 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="2" +char id=51 x=109 y=100 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="3" +char id=52 x=50 y=21 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="4" +char id=53 x=67 y=170 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="5" +char id=54 x=71 y=0 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="6" +char id=55 x=128 y=77 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=50 y=67 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=67 y=147 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="9" +char id=58 x=175 y=26 width=10 height=18 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=173 y=132 width=10 height=24 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=145 y=115 width=14 height=14 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=160 y=182 width=12 height=10 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="=" +char id=62 x=160 y=42 width=14 height=14 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=145 y=90 width=14 height=24 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=88 y=163 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="@" +char id=65 x=145 y=23 width=14 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=145 y=61 width=14 height=28 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=71 y=23 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=88 y=138 width=20 height=24 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="D" +char id=69 x=0 y=106 width=24 height=18 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="E" +char id=70 x=109 y=46 width=18 height=30 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="F" +char id=71 x=92 y=23 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=0 y=38 width=28 height=22 xoffset=0 yoffset=7 xadvance=30 page=0 chnl=0 letter="H" +char id=73 x=160 y=157 width=12 height=24 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="I" +char id=74 x=0 y=61 width=28 height=14 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="J" +char id=75 x=71 y=46 width=20 height=22 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=126 y=148 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=76 width=26 height=14 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="M" +char id=78 x=109 y=173 width=16 height=16 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="N" +char id=79 x=69 y=115 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="O" +char id=80 x=109 y=148 width=16 height=24 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=48 y=95 width=20 height=28 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=109 y=123 width=18 height=24 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="R" +char id=83 x=111 y=0 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=160 y=23 width=14 height=18 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="T" +char id=85 x=48 y=147 width=18 height=18 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=92 y=46 width=16 height=18 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=157 width=24 height=12 xoffset=0 yoffset=15 xadvance=26 page=0 chnl=0 letter="W" +char id=88 x=23 y=170 width=22 height=20 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="X" +char id=89 x=145 y=0 width=16 height=22 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=25 y=106 width=22 height=18 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="Z" +char id=91 x=184 y=111 width=6 height=28 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=128 y=119 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="\" +char id=93 x=184 y=82 width=6 height=28 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=162 y=0 width=10 height=10 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="^" +char id=95 x=50 y=90 width=18 height=4 xoffset=0 yoffset=25 xadvance=20 page=0 chnl=0 letter="_" +char id=96 x=145 y=132 width=12 height=8 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="`" +char id=97 x=160 y=84 width=14 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="a" +char id=98 x=160 y=103 width=14 height=28 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=50 y=44 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=69 y=90 width=20 height=24 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="d" +char id=101 x=0 y=138 width=24 height=18 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="e" +char id=102 x=90 y=94 width=18 height=30 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=92 y=0 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="g" +char id=104 x=0 y=15 width=28 height=22 xoffset=0 yoffset=7 xadvance=30 page=0 chnl=0 letter="h" +char id=105 x=160 y=132 width=12 height=24 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="i" +char id=106 x=0 y=0 width=28 height=14 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="j" +char id=107 x=48 y=124 width=20 height=22 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="k" +char id=108 x=143 y=165 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="l" +char id=109 x=0 y=91 width=26 height=14 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="m" +char id=110 x=126 y=171 width=16 height=16 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="n" +char id=111 x=29 y=21 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="o" +char id=112 x=128 y=52 width=16 height=24 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="p" +char id=113 x=29 y=44 width=20 height=28 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="q" +char id=114 x=90 y=69 width=18 height=24 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="r" +char id=115 x=128 y=29 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=145 y=42 width=14 height=18 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=71 y=69 width=18 height=18 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="u" +char id=118 x=128 y=100 width=16 height=18 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="v" +char id=119 x=0 y=125 width=24 height=12 xoffset=0 yoffset=15 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=25 y=125 width=22 height=20 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="x" +char id=121 x=111 y=23 width=16 height=22 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="y" +char id=122 x=27 y=76 width=22 height=18 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="z" +char id=123 x=184 y=45 width=8 height=28 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=184 y=140 width=2 height=28 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=175 y=72 width=8 height=28 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=27 y=95 width=16 height=4 xoffset=0 yoffset=15 xadvance=18 page=0 chnl=0 letter="~" +char id=8226 x=184 y=74 width=7 height=7 xoffset=0 yoffset=17 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=29 y=0 width=20 height=20 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=88 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn-export.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn-export.png new file mode 100644 index 0000000..a69e68e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn.png new file mode 100644 index 0000000..c28e07b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/saturn.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/selector-off.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/selector-off.png new file mode 100644 index 0000000..6661eca Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/selector-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/selector.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/selector.png new file mode 100644 index 0000000..996fb71 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/selector.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/smash.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/smash.png new file mode 100644 index 0000000..903ca6c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/smash.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile-a.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile-a.png new file mode 100644 index 0000000..a5fc4cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile-a.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile-b.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile-b.png new file mode 100644 index 0000000..66ebc15 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile-b.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile.png new file mode 100644 index 0000000..cac63a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/tile.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/white.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window-player.9.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window-player.9.png new file mode 100644 index 0000000..aae4b35 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window-player.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window-player.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window-player.png new file mode 100644 index 0000000..5df9308 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window-player.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window.9.png new file mode 100644 index 0000000..5586b40 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window.png b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window.png new file mode 100644 index 0000000..b264f3a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/199x-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/199x-export.fnt new file mode 100644 index 0000000..ca0f536 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/199x-export.fnt @@ -0,0 +1,104 @@ +info face="199x-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=22 base=22 scaleW=129 scaleH=129 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="199x-export.png" +chars count=98 +char id=33 x=123 y=86 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=54 y=121 width=5 height=7 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter=""" +char id=35 x=0 y=93 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="#" +char id=36 x=93 y=0 width=8 height=20 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="$" +char id=37 x=0 y=36 width=18 height=17 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="%" +char id=38 x=18 y=54 width=17 height=14 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="&" +char id=39 x=102 y=121 width=2 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=111 y=55 width=6 height=20 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=111 y=34 width=6 height=20 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=63 y=36 width=11 height=10 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=62 y=0 width=11 height=11 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=63 y=47 width=3 height=6 xoffset=0 yoffset=19 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=18 y=125 width=6 height=2 xoffset=0 yoffset=16 xadvance=7 page=0 chnl=0 letter="-" +char id=46 x=25 y=125 width=2 height=3 xoffset=0 yoffset=19 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=111 y=16 width=6 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="/" +char id=48 x=61 y=83 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="0" +char id=49 x=122 y=105 width=3 height=17 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="1" +char id=50 x=50 y=18 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="2" +char id=51 x=74 y=13 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=49 y=67 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="4" +char id=53 x=73 y=65 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="5" +char id=54 x=73 y=47 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=62 y=101 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="7" +char id=56 x=73 y=83 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=83 y=67 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="9" +char id=58 x=126 y=104 width=2 height=11 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=118 y=105 width=3 height=14 xoffset=0 yoffset=10 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=61 y=72 width=11 height=10 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter="<" +char id=61 x=35 y=121 width=11 height=6 xoffset=0 yoffset=13 xadvance=12 page=0 chnl=0 letter="=" +char id=62 x=62 y=25 width=11 height=10 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter=">" +char id=63 x=83 y=31 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="?" +char id=64 x=0 y=111 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="@" +char id=65 x=18 y=72 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="A" +char id=66 x=102 y=18 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="B" +char id=67 x=36 y=67 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="C" +char id=68 x=51 y=36 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=93 y=93 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=93 y=75 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=35 y=31 width=14 height=17 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=61 y=54 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=124 y=39 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=118 y=21 width=5 height=20 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=49 y=0 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="K" +char id=76 x=84 y=13 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=0 width=20 height=17 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="M" +char id=78 x=19 y=36 width=15 height=17 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="N" +char id=79 x=0 y=75 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=84 y=85 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="P" +char id=81 x=0 y=54 width=17 height=20 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="Q" +char id=82 x=74 y=101 width=9 height=17 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="R" +char id=83 x=102 y=103 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=36 y=49 width=14 height=17 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=36 y=0 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="U" +char id=86 x=18 y=90 width=17 height=17 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=18 width=20 height=17 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=21 y=13 width=14 height=17 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="X" +char id=89 x=50 y=103 width=11 height=17 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="Y" +char id=90 x=36 y=85 width=12 height=17 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="Z" +char id=91 x=118 y=63 width=4 height=20 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=111 y=76 width=6 height=17 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=118 y=84 width=4 height=20 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=62 y=119 width=8 height=9 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 letter="^" +char id=95 x=18 y=69 width=17 height=2 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="_" +char id=96 x=75 y=31 width=7 height=5 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=51 y=54 width=9 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="a" +char id=98 x=102 y=85 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=84 y=116 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=93 y=39 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=93 y=111 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=102 y=49 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="f" +char id=103 x=83 y=49 width=9 height=17 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=93 y=21 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=124 y=21 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=123 y=63 width=3 height=22 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="j" +char id=107 x=102 y=67 width=8 height=17 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=126 y=86 width=2 height=17 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=35 y=108 width=14 height=12 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=102 y=36 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=74 y=0 width=9 height=12 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 letter="o" +char id=112 x=93 y=57 width=8 height=17 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=102 y=0 width=8 height=17 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=111 y=94 width=6 height=12 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=111 y=107 width=6 height=12 xoffset=0 yoffset=10 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=111 y=0 width=6 height=15 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=84 y=0 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=62 y=12 width=11 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=21 y=0 width=14 height=12 xoffset=0 yoffset=10 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=36 y=18 width=11 height=12 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=49 y=85 width=11 height=17 xoffset=0 yoffset=10 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=84 y=103 width=8 height=12 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=118 y=42 width=5 height=20 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=124 y=0 width=2 height=20 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=118 y=0 width=5 height=20 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="}" +char id=126 x=36 y=103 width=11 height=4 xoffset=0 yoffset=14 xadvance=12 page=0 chnl=0 letter="~" +char id=8226 x=47 y=121 width=6 height=6 xoffset=0 yoffset=12 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=18 y=108 width=16 height=16 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/font-export.fnt new file mode 100644 index 0000000..91a36ad --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=21 base=21 scaleW=119 scaleH=120 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=114 y=91 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=84 y=113 width=6 height=6 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=15 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="#" +char id=36 x=24 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="$" +char id=37 x=26 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=35 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="&" +char id=39 x=111 y=40 width=2 height=6 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="'" +char id=40 x=102 y=72 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="(" +char id=41 x=104 y=17 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter=")" +char id=42 x=68 y=96 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="*" +char id=43 x=35 y=85 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=109 y=74 width=4 height=6 xoffset=0 yoffset=19 xadvance=5 page=0 chnl=0 letter="," +char id=45 x=35 y=113 width=10 height=2 xoffset=0 yoffset=13 xadvance=11 page=0 chnl=0 letter="-" +char id=46 x=21 y=17 width=2 height=2 xoffset=0 yoffset=19 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=46 y=98 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="/" +char id=48 x=95 y=34 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="0" +char id=49 x=109 y=98 width=4 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=86 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="2" +char id=51 x=86 y=51 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="3" +char id=52 x=15 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=92 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=86 y=34 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="6" +char id=55 x=93 y=102 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="7" +char id=56 x=95 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="8" +char id=57 x=93 y=85 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="9" +char id=58 x=114 y=57 width=2 height=10 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=108 y=0 width=4 height=16 xoffset=0 yoffset=9 xadvance=5 page=0 chnl=0 letter=";" +char id=60 x=13 y=109 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=57 y=85 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="=" +char id=62 x=57 y=96 width=10 height=10 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=86 y=68 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=37 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=0 y=86 width=12 height=16 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=26 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="B" +char id=67 x=37 y=17 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="C" +char id=68 x=26 y=17 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="D" +char id=69 x=77 y=79 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=77 y=62 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=24 y=85 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="G" +char id=72 x=24 y=102 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="H" +char id=73 x=113 y=0 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=74 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=32 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="K" +char id=76 x=84 y=96 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="L" +char id=77 x=0 y=21 width=14 height=16 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="M" +char id=78 x=35 y=96 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="N" +char id=79 x=48 y=17 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=37 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=13 y=81 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=43 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="R" +char id=83 x=46 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="S" +char id=84 x=54 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="T" +char id=85 x=48 y=34 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="U" +char id=86 x=0 y=103 width=12 height=16 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=51 width=14 height=16 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="W" +char id=88 x=57 y=68 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="X" +char id=89 x=48 y=51 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="Y" +char id=90 x=83 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=109 y=57 width=4 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=21 y=0 width=10 height=16 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="\" +char id=93 x=109 y=81 width=4 height=16 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="]" +char id=94 x=13 y=98 width=10 height=10 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=35 y=116 width=10 height=2 xoffset=0 yoffset=19 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=86 y=85 width=6 height=6 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=46 y=85 width=10 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="a" +char id=98 x=59 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="b" +char id=99 x=57 y=107 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=68 y=17 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="d" +char id=101 x=66 y=107 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="e" +char id=102 x=104 y=40 width=6 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="f" +char id=103 x=68 y=34 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="g" +char id=104 x=68 y=53 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="h" +char id=105 x=114 y=40 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="i" +char id=106 x=111 y=17 width=4 height=22 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=65 y=0 width=8 height=16 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=116 y=0 width=2 height=16 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=68 width=14 height=12 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="m" +char id=110 x=68 y=70 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="n" +char id=111 x=59 y=53 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="o" +char id=112 x=77 y=17 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="p" +char id=113 x=59 y=34 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="q" +char id=114 x=102 y=59 width=6 height=12 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=77 y=36 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="s" +char id=116 x=101 y=0 width=6 height=16 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="t" +char id=117 x=77 y=49 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=15 y=21 width=10 height=12 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="v" +char id=119 x=0 y=38 width=14 height=12 xoffset=0 yoffset=9 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=68 y=83 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="x" +char id=121 x=75 y=96 width=8 height=18 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="y" +char id=122 x=15 y=68 width=8 height=12 xoffset=0 yoffset=9 xadvance=9 page=0 chnl=0 letter="z" +char id=123 x=95 y=59 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=114 y=68 width=2 height=22 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=102 y=95 width=6 height=22 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=81 width=12 height=4 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 letter="~" +char id=8226 x=95 y=51 width=7 height=7 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 letter="•" +char id=169 x=0 y=0 width=20 height=20 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=5 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=40 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/giygas-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/giygas-export.fnt new file mode 100644 index 0000000..35f68ba --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/giygas-export.fnt @@ -0,0 +1,103 @@ +info face="giygas-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=50 base=50 scaleW=221 scaleH=222 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="giygas-export.png" +chars count=98 +char id=33 x=210 y=40 width=6 height=45 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="!" +char id=34 x=21 y=215 width=13 height=6 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter=""" +char id=35 x=0 y=189 width=20 height=32 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="#" +char id=36 x=35 y=0 width=17 height=40 xoffset=0 yoffset=14 xadvance=19 page=0 chnl=0 letter="$" +char id=37 x=0 y=0 width=34 height=32 xoffset=0 yoffset=18 xadvance=36 page=0 chnl=0 letter="%" +char id=38 x=0 y=67 width=27 height=33 xoffset=0 yoffset=17 xadvance=29 page=0 chnl=0 letter="&" +char id=39 x=148 y=209 width=6 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=197 y=92 width=10 height=39 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=204 y=0 width=10 height=39 xoffset=0 yoffset=16 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=28 y=67 width=17 height=16 xoffset=0 yoffset=17 xadvance=19 page=0 chnl=0 letter="*" +char id=43 x=43 y=204 width=16 height=16 xoffset=0 yoffset=18 xadvance=18 page=0 chnl=0 letter="+" +char id=44 x=35 y=215 width=6 height=6 xoffset=0 yoffset=44 xadvance=8 page=0 chnl=0 letter="," +char id=45 x=21 y=208 width=16 height=6 xoffset=0 yoffset=23 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=138 y=184 width=6 height=6 xoffset=0 yoffset=44 xadvance=8 page=0 chnl=0 letter="." +char id=47 x=189 y=0 width=14 height=45 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="/" +char id=48 x=180 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="0" +char id=49 x=196 y=46 width=13 height=45 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="1" +char id=50 x=95 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="2" +char id=51 x=78 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="3" +char id=52 x=87 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="4" +char id=53 x=62 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="5" +char id=54 x=155 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="6" +char id=55 x=70 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=78 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="8" +char id=57 x=79 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="9" +char id=58 x=155 y=184 width=6 height=24 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=":" +char id=59 x=148 y=184 width=6 height=24 xoffset=0 yoffset=14 xadvance=8 page=0 chnl=0 letter=";" +char id=60 x=0 y=135 width=23 height=26 xoffset=0 yoffset=24 xadvance=25 page=0 chnl=0 letter="<" +char id=61 x=33 y=46 width=16 height=18 xoffset=0 yoffset=17 xadvance=18 page=0 chnl=0 letter="=" +char id=62 x=0 y=162 width=22 height=26 xoffset=0 yoffset=24 xadvance=24 page=0 chnl=0 letter=">" +char id=63 x=180 y=138 width=15 height=45 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="?" +char id=64 x=0 y=33 width=32 height=33 xoffset=0 yoffset=22 xadvance=34 page=0 chnl=0 letter="@" +char id=65 x=95 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="A" +char id=66 x=96 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="B" +char id=67 x=104 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="C" +char id=68 x=112 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="D" +char id=69 x=121 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="E" +char id=70 x=129 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="F" +char id=71 x=163 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="G" +char id=72 x=61 y=130 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="H" +char id=73 x=209 y=131 width=7 height=45 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 letter="I" +char id=74 x=130 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="J" +char id=75 x=146 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="K" +char id=76 x=163 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=23 y=162 width=19 height=45 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="M" +char id=78 x=43 y=158 width=17 height=45 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="N" +char id=79 x=172 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=53 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=44 y=84 width=17 height=45 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="Q" +char id=82 x=61 y=176 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="R" +char id=83 x=164 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=147 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="T" +char id=85 x=113 y=46 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="U" +char id=86 x=129 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=24 y=112 width=19 height=45 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="W" +char id=88 x=112 y=138 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="X" +char id=89 x=146 y=92 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=138 y=0 width=16 height=45 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="Z" +char id=91 x=208 y=177 width=8 height=38 xoffset=0 yoffset=17 xadvance=10 page=0 chnl=0 letter="[" +char id=92 x=181 y=46 width=14 height=45 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="\" +char id=93 x=208 y=92 width=8 height=38 xoffset=0 yoffset=17 xadvance=10 page=0 chnl=0 letter="]" +char id=94 x=0 y=112 width=23 height=22 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="^" +char id=95 x=0 y=101 width=24 height=2 xoffset=0 yoffset=54 xadvance=26 page=0 chnl=0 letter="_" +char id=96 x=155 y=209 width=6 height=6 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="`" +char id=97 x=50 y=58 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=78 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=62 y=92 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="c" +char id=100 x=62 y=104 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=114 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="e" +char id=102 x=78 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="f" +char id=103 x=90 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="g" +char id=104 x=90 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=90 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="i" +char id=106 x=102 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="j" +char id=107 x=102 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="k" +char id=108 x=102 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="l" +char id=109 x=50 y=46 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="m" +char id=110 x=44 y=130 width=13 height=11 xoffset=0 yoffset=39 xadvance=15 page=0 chnl=0 letter="n" +char id=111 x=44 y=142 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="o" +char id=112 x=114 y=208 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=28 y=84 width=13 height=11 xoffset=0 yoffset=39 xadvance=15 page=0 chnl=0 letter="q" +char id=114 x=46 y=70 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="r" +char id=115 x=28 y=96 width=13 height=11 xoffset=0 yoffset=39 xadvance=15 page=0 chnl=0 letter="s" +char id=116 x=114 y=196 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="t" +char id=117 x=78 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="u" +char id=118 x=137 y=208 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="v" +char id=119 x=62 y=116 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="w" +char id=120 x=137 y=196 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="x" +char id=121 x=126 y=196 width=10 height=11 xoffset=0 yoffset=39 xadvance=12 page=0 chnl=0 letter="y" +char id=122 x=126 y=184 width=11 height=11 xoffset=0 yoffset=39 xadvance=13 page=0 chnl=0 letter="z" +char id=123 x=196 y=138 width=12 height=38 xoffset=0 yoffset=17 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=217 y=0 width=3 height=48 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="|" +char id=125 x=196 y=177 width=11 height=38 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 letter="}" +char id=126 x=0 y=104 width=24 height=7 xoffset=0 yoffset=33 xadvance=26 page=0 chnl=0 letter="~" +char id=8226 x=126 y=208 width=10 height=10 xoffset=0 yoffset=32 xadvance=12 page=0 chnl=0 letter="•" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=9 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=72 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/saturn-export.fnt b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/saturn-export.fnt new file mode 100644 index 0000000..b8fe9c3 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/saturn-export.fnt @@ -0,0 +1,104 @@ +info face="saturn-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=29 base=29 scaleW=193 scaleH=193 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="saturn-export.png" +chars count=98 +char id=33 x=173 y=157 width=10 height=24 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="!" +char id=34 x=69 y=138 width=18 height=8 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter=""" +char id=35 x=25 y=146 width=22 height=20 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="#" +char id=36 x=128 y=0 width=16 height=28 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="$" +char id=37 x=0 y=170 width=22 height=22 xoffset=0 yoffset=7 xadvance=24 page=0 chnl=0 letter="%" +char id=38 x=160 y=57 width=14 height=26 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="&" +char id=39 x=173 y=182 width=10 height=8 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="'" +char id=40 x=175 y=45 width=8 height=26 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="(" +char id=41 x=175 y=101 width=8 height=26 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter=")" +char id=42 x=175 y=15 width=10 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 letter="*" +char id=43 x=90 y=125 width=14 height=12 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="+" +char id=44 x=173 y=0 width=10 height=14 xoffset=0 yoffset=21 xadvance=12 page=0 chnl=0 letter="," +char id=45 x=126 y=188 width=12 height=4 xoffset=0 yoffset=15 xadvance=14 page=0 chnl=0 letter="-" +char id=46 x=162 y=11 width=10 height=8 xoffset=0 yoffset=21 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=143 y=142 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="/" +char id=48 x=46 y=167 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="0" +char id=49 x=109 y=77 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="1" +char id=50 x=50 y=0 width=20 height=20 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="2" +char id=51 x=109 y=100 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="3" +char id=52 x=50 y=21 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="4" +char id=53 x=67 y=170 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="5" +char id=54 x=71 y=0 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="6" +char id=55 x=128 y=77 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="7" +char id=56 x=50 y=67 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=67 y=147 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="9" +char id=58 x=175 y=26 width=10 height=18 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=173 y=132 width=10 height=24 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 letter=";" +char id=60 x=145 y=115 width=14 height=14 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="<" +char id=61 x=160 y=182 width=12 height=10 xoffset=0 yoffset=13 xadvance=14 page=0 chnl=0 letter="=" +char id=62 x=160 y=42 width=14 height=14 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter=">" +char id=63 x=145 y=90 width=14 height=24 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="?" +char id=64 x=88 y=163 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="@" +char id=65 x=145 y=23 width=14 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="A" +char id=66 x=145 y=61 width=14 height=28 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="B" +char id=67 x=71 y=23 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=88 y=138 width=20 height=24 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="D" +char id=69 x=0 y=106 width=24 height=18 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="E" +char id=70 x=109 y=46 width=18 height=30 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="F" +char id=71 x=92 y=23 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="G" +char id=72 x=0 y=38 width=28 height=22 xoffset=0 yoffset=7 xadvance=30 page=0 chnl=0 letter="H" +char id=73 x=160 y=157 width=12 height=24 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="I" +char id=74 x=0 y=61 width=28 height=14 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="J" +char id=75 x=71 y=46 width=20 height=22 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=126 y=148 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="L" +char id=77 x=0 y=76 width=26 height=14 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="M" +char id=78 x=109 y=173 width=16 height=16 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="N" +char id=79 x=69 y=115 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="O" +char id=80 x=109 y=148 width=16 height=24 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="P" +char id=81 x=48 y=95 width=20 height=28 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=109 y=123 width=18 height=24 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="R" +char id=83 x=111 y=0 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="S" +char id=84 x=160 y=23 width=14 height=18 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="T" +char id=85 x=48 y=147 width=18 height=18 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="U" +char id=86 x=92 y=46 width=16 height=18 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="V" +char id=87 x=0 y=157 width=24 height=12 xoffset=0 yoffset=15 xadvance=26 page=0 chnl=0 letter="W" +char id=88 x=23 y=170 width=22 height=20 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="X" +char id=89 x=145 y=0 width=16 height=22 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="Y" +char id=90 x=25 y=106 width=22 height=18 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="Z" +char id=91 x=184 y=111 width=6 height=28 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=128 y=119 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="\" +char id=93 x=184 y=82 width=6 height=28 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="]" +char id=94 x=162 y=0 width=10 height=10 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="^" +char id=95 x=50 y=90 width=18 height=4 xoffset=0 yoffset=25 xadvance=20 page=0 chnl=0 letter="_" +char id=96 x=145 y=132 width=12 height=8 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="`" +char id=97 x=160 y=84 width=14 height=18 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 letter="a" +char id=98 x=160 y=103 width=14 height=28 xoffset=0 yoffset=3 xadvance=16 page=0 chnl=0 letter="b" +char id=99 x=50 y=44 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=69 y=90 width=20 height=24 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="d" +char id=101 x=0 y=138 width=24 height=18 xoffset=0 yoffset=9 xadvance=26 page=0 chnl=0 letter="e" +char id=102 x=90 y=94 width=18 height=30 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="f" +char id=103 x=92 y=0 width=18 height=22 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 letter="g" +char id=104 x=0 y=15 width=28 height=22 xoffset=0 yoffset=7 xadvance=30 page=0 chnl=0 letter="h" +char id=105 x=160 y=132 width=12 height=24 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="i" +char id=106 x=0 y=0 width=28 height=14 xoffset=0 yoffset=15 xadvance=30 page=0 chnl=0 letter="j" +char id=107 x=48 y=124 width=20 height=22 xoffset=0 yoffset=9 xadvance=22 page=0 chnl=0 letter="k" +char id=108 x=143 y=165 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="l" +char id=109 x=0 y=91 width=26 height=14 xoffset=0 yoffset=15 xadvance=28 page=0 chnl=0 letter="m" +char id=110 x=126 y=171 width=16 height=16 xoffset=0 yoffset=13 xadvance=18 page=0 chnl=0 letter="n" +char id=111 x=29 y=21 width=20 height=22 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="o" +char id=112 x=128 y=52 width=16 height=24 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="p" +char id=113 x=29 y=44 width=20 height=28 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 letter="q" +char id=114 x=90 y=69 width=18 height=24 xoffset=0 yoffset=5 xadvance=20 page=0 chnl=0 letter="r" +char id=115 x=128 y=29 width=16 height=22 xoffset=0 yoffset=7 xadvance=18 page=0 chnl=0 letter="s" +char id=116 x=145 y=42 width=14 height=18 xoffset=0 yoffset=9 xadvance=16 page=0 chnl=0 letter="t" +char id=117 x=71 y=69 width=18 height=18 xoffset=0 yoffset=11 xadvance=20 page=0 chnl=0 letter="u" +char id=118 x=128 y=100 width=16 height=18 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="v" +char id=119 x=0 y=125 width=24 height=12 xoffset=0 yoffset=15 xadvance=26 page=0 chnl=0 letter="w" +char id=120 x=25 y=125 width=22 height=20 xoffset=0 yoffset=9 xadvance=24 page=0 chnl=0 letter="x" +char id=121 x=111 y=23 width=16 height=22 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 letter="y" +char id=122 x=27 y=76 width=22 height=18 xoffset=0 yoffset=11 xadvance=24 page=0 chnl=0 letter="z" +char id=123 x=184 y=45 width=8 height=28 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="{" +char id=124 x=184 y=140 width=2 height=28 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=175 y=72 width=8 height=28 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="}" +char id=126 x=27 y=95 width=16 height=4 xoffset=0 yoffset=15 xadvance=18 page=0 chnl=0 letter="~" +char id=8226 x=184 y=74 width=7 height=7 xoffset=0 yoffset=17 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=29 y=0 width=20 height=20 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=11 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=88 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.atlas b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.atlas new file mode 100644 index 0000000..dcc8c2b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.atlas @@ -0,0 +1,191 @@ + +terra-mother-ui.png +size: 512,512 +format: RGBA8888 +filter: Linear,Linear +repeat: none +199x-export + rotate: false + xy: 1, 26 + size: 129, 129 + orig: 129, 129 + offset: 0, 0 + index: -1 +cat + rotate: false + xy: 1, 4 + size: 32, 20 + orig: 32, 20 + offset: 0, 0 + index: -1 +cents + rotate: false + xy: 224, 203 + size: 48, 25 + split: 10, 12, 22, 0 + pad: 12, 32, 0, 0 + orig: 48, 25 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 58, 5 + size: 8, 19 + split: 0, 7, 0, 17 + pad: 0, 0, 0, 0 + orig: 8, 19 + offset: 0, 0 + index: -1 +cursor2 + rotate: false + xy: 231, 19 + size: 18, 14 + split: 0, 17, 0, 3 + pad: 0, 0, 0, 0 + orig: 18, 14 + offset: 0, 0 + index: -1 +digit-box + rotate: false + xy: 439, 270 + size: 13, 26 + orig: 13, 26 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 132, 35 + size: 119, 120 + orig: 119, 120 + offset: 0, 0 + index: -1 +giygas-export + rotate: false + xy: 1, 157 + size: 221, 222 + orig: 221, 222 + offset: 0, 0 + index: -1 +label-hp + rotate: false + xy: 35, 6 + size: 21, 18 + orig: 21, 18 + offset: 0, 0 + index: -1 +label-pp + rotate: false + xy: 439, 298 + size: 21, 18 + orig: 21, 18 + offset: 0, 0 + index: -1 +label-title + rotate: false + xy: 1, 381 + size: 310, 130 + orig: 310, 130 + offset: 0, 0 + index: -1 +pc-1 + rotate: false + xy: 353, 273 + size: 29, 43 + orig: 29, 43 + offset: 0, 0 + index: -1 +pc-2 + rotate: false + xy: 413, 274 + size: 24, 42 + orig: 24, 42 + offset: 0, 0 + index: -1 +pc-3 + rotate: false + xy: 384, 273 + size: 27, 43 + orig: 27, 43 + offset: 0, 0 + index: -1 +pc-4 + rotate: false + xy: 318, 235 + size: 27, 39 + orig: 27, 39 + offset: 0, 0 + index: -1 +saturn-export + rotate: false + xy: 313, 318 + size: 193, 193 + orig: 193, 193 + offset: 0, 0 + index: -1 +selector + rotate: false + xy: 266, 189 + size: 6, 12 + orig: 6, 12 + offset: 0, 0 + index: -1 +selector-off + rotate: false + xy: 462, 304 + size: 6, 12 + orig: 6, 12 + offset: 0, 0 + index: -1 +smash + rotate: false + xy: 132, 2 + size: 97, 31 + orig: 97, 31 + offset: 0, 0 + index: -1 +tile + rotate: false + xy: 224, 161 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +tile-a + rotate: false + xy: 311, 276 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +tile-b + rotate: false + xy: 276, 234 + size: 40, 40 + orig: 40, 40 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 1, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 224, 230 + size: 50, 44 + split: 14, 15, 17, 20 + pad: 8, 8, 8, 8 + orig: 50, 44 + offset: 0, 0 + index: -1 +window-player + rotate: false + xy: 224, 276 + size: 85, 103 + split: 17, 18, 18, 18 + pad: 12, 12, 12, 12 + orig: 85, 103 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.json b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.json new file mode 100644 index 0000000..26db519 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.json @@ -0,0 +1,125 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + giygas: { + file: giygas-export.fnt + } + saturn: { + file: saturn-export.fnt + } + year199x: { + file: 199x-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + color: { + r: 0.41960785 + g: 0.827451 + b: 0.7411765 + a: 1 + } + selection: { + r: 0.7733333 + g: 0.7733333 + b: 0.7733333 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + selection: { + name: white + color: selection + } + window-c: { + name: window + color: color + } + window-player-c: { + name: window-player + color: color + } + label-hp-black: { + name: label-hp + color: black + } + label-pp-black: { + name: label-pp + color: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + imageUp: selector-off + imageDown: selector + imageOver: selector + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + year199x: { + font: year199x + } + giygas: { + font: giygas + } + saturn: { + font: saturn + } + black: { + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: white + cursor: cursor + selection: selection + } + number: { + font: font + fontColor: white + background: cents + cursor: cursor2 + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-c + titleFont: font + } + window-player: { + background: window-player-c + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.png b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.png new file mode 100644 index 0000000..0e7ea93 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/terra-mother/skin/terra-mother-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/README.md b/src/main/resources/omni_power/gdx-skins/tracer/README.md new file mode 100644 index 0000000..d384a0d --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/README.md @@ -0,0 +1,22 @@ +# Tracer UI + +``` +Tracer UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +Tracer UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most of **Scene2D** widgets. Modern skin with futuristic feel. Can be recolored with JSON parameters. + +![Tracer](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/tracer-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). Also, see the [font license](UbuntuFont.txt). diff --git a/src/main/resources/omni_power/gdx-skins/tracer/UbuntuFont.txt b/src/main/resources/omni_power/gdx-skins/tracer/UbuntuFont.txt new file mode 100644 index 0000000..ae78a8f --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/UbuntuFont.txt @@ -0,0 +1,96 @@ +------------------------------- +UBUNTU FONT LICENCE Version 1.0 +------------------------------- + +PREAMBLE +This licence allows the licensed fonts to be used, studied, modified and +redistributed freely. The fonts, including any derivative works, can be +bundled, embedded, and redistributed provided the terms of this licence +are met. The fonts and derivatives, however, cannot be released under +any other licence. The requirement for fonts to remain under this +licence does not require any document created using the fonts or their +derivatives to be published under this licence, as long as the primary +purpose of the document is not to be a vehicle for the distribution of +the fonts. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this licence and clearly marked as such. This may +include source files, build scripts and documentation. + +"Original Version" refers to the collection of Font Software components +as received under this licence. + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to +a new environment. + +"Copyright Holder(s)" refers to all individuals and companies who have a +copyright ownership of the Font Software. + +"Substantially Changed" refers to Modified Versions which can be easily +identified as dissimilar to the Font Software by users of the Font +Software comparing the Original Version with the Modified Version. + +To "Propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification and with or without charging +a redistribution fee), making available to the public, and in some +countries other activities as well. + +PERMISSION & CONDITIONS +This licence does not grant any rights under trademark law and all such +rights are reserved. + +Permission is hereby granted, free of charge, to any person obtaining a +copy of the Font Software, to propagate the Font Software, subject to +the below conditions: + +1) Each copy of the Font Software must contain the above copyright +notice and this licence. These can be included either as stand-alone +text files, human-readable headers or in the appropriate machine- +readable metadata fields within text or binary files as long as those +fields can be easily viewed by the user. + +2) The font name complies with the following: +(a) The Original Version must retain its name, unmodified. +(b) Modified Versions which are Substantially Changed must be renamed to +avoid use of the name of the Original Version or similar names entirely. +(c) Modified Versions which are not Substantially Changed must be +renamed to both (i) retain the name of the Original Version and (ii) add +additional naming elements to distinguish the Modified Version from the +Original Version. The name of such Modified Versions must be the name of +the Original Version, with "derivative X" where X represents the name of +the new work, appended to that name. + +3) The name(s) of the Copyright Holder(s) and any contributor to the +Font Software shall not be used to promote, endorse or advertise any +Modified Version, except (i) as required by this licence, (ii) to +acknowledge the contribution(s) of the Copyright Holder(s) or (iii) with +their explicit written permission. + +4) The Font Software, modified or unmodified, in part or in whole, must +be distributed entirely under this licence, and must not be distributed +under any other licence. The requirement for fonts to remain under this +licence does not affect any document created using the Font Software, +except any version of the Font Software extracted from a document +created using the Font Software may only be distributed under this +licence. + +TERMINATION +This licence becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF +COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER +DEALINGS IN THE FONT SOFTWARE. diff --git a/src/main/resources/omni_power/gdx-skins/tracer/preview.png b/src/main/resources/omni_power/gdx-skins/tracer/preview.png new file mode 100644 index 0000000..f57e2ea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/bg.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/bg.png new file mode 100644 index 0000000..ca244af Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new-icon.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new-icon.png new file mode 100644 index 0000000..14f5a04 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new-icon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new-pressed.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new-pressed.png new file mode 100644 index 0000000..8befa37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new.png new file mode 100644 index 0000000..b352786 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-new.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-over.9.png new file mode 100644 index 0000000..797bff7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-over.png new file mode 100644 index 0000000..f28371d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-pressed.9.png new file mode 100644 index 0000000..35ff8bf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-pressed.png new file mode 100644 index 0000000..9d086b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button.9.png new file mode 100644 index 0000000..01632ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/button.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/button.png new file mode 100644 index 0000000..bf614d6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/checkbox-on.png new file mode 100644 index 0000000..8bf29ad Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/checkbox.png new file mode 100644 index 0000000..1d76b7f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button-icon.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button-icon.png new file mode 100644 index 0000000..9d4a57c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button-icon.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button-pressed.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button-pressed.png new file mode 100644 index 0000000..841ab84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button.png new file mode 100644 index 0000000..1f035d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/close-button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/tracer/raw/font-export.fnt new file mode 100644 index 0000000..370f1c9 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=110 scaleH=110 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=105 y=49 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=91 y=104 width=6 height=5 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=14 y=77 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="#" +char id=36 x=72 y=26 width=9 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=0 y=13 width=15 height=12 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=16 y=39 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=42 y=104 width=3 height=5 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=99 y=31 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=100 y=0 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=82 y=23 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=51 y=72 width=10 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=38 y=104 width=3 height=5 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=16 y=52 width=5 height=1 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=28 y=104 width=4 height=2 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=91 y=13 width=8 height=17 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=52 y=13 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=93 y=0 width=5 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=72 y=66 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=41 y=39 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=40 y=52 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=82 y=97 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=72 y=53 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=43 y=0 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=63 y=13 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=41 y=13 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=99 y=49 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=105 y=36 width=3 height=12 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=51 y=90 width=10 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=11 y=104 width=9 height=4 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=51 y=80 width=10 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=82 y=66 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=26 width=15 height=14 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=18 y=0 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=29 y=26 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=31 y=0 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=28 y=52 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=72 y=92 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=84 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=27 y=77 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=27 y=90 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=100 y=18 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=75 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=29 y=13 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="K" +char id=76 x=62 y=95 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=0 y=41 width=15 height=12 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=14 y=90 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="N" +char id=79 x=14 y=64 width=13 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=54 y=0 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=0 y=77 width=13 height=15 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="Q" +char id=82 x=39 y=78 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=62 y=67 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=39 y=65 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="T" +char id=85 x=29 y=39 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="U" +char id=86 x=16 y=13 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=17 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="W" +char id=88 x=39 y=91 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="X" +char id=89 x=16 y=26 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Y" +char id=90 x=52 y=26 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=104 y=77 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=82 y=79 width=8 height=17 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="\" +char id=93 x=98 y=77 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=51 y=64 width=10 height=7 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=104 width=10 height=1 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=33 y=104 width=4 height=4 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=82 y=56 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=51 y=39 width=10 height=14 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=82 y=46 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=62 y=39 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=15 y=54 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=91 y=44 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=62 y=54 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=62 y=80 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=103 y=95 width=3 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=91 y=87 width=6 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=82 y=31 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=98 y=95 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=93 width=13 height=9 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=72 y=43 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=51 y=54 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="o" +char id=112 x=65 y=0 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=41 y=26 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=91 y=59 width=6 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=83 y=13 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=91 y=31 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=63 y=26 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=73 y=13 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=54 width=14 height=9 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=28 y=65 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=72 y=79 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=51 y=100 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=91 y=69 width=6 height=17 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=105 y=18 width=3 height=17 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=98 y=59 width=6 height=17 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=106 width=10 height=3 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=21 y=104 width=6 height=5 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=64 width=13 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/font-export.png new file mode 100644 index 0000000..37c167f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/font.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/font.png new file mode 100644 index 0000000..07d3bbf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/home-selected.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/home-selected.png new file mode 100644 index 0000000..8cad0a1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/home-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/home.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/home.png new file mode 100644 index 0000000..427fc85 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/home.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/info-selected.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/info-selected.png new file mode 100644 index 0000000..d29656c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/info-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/info.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/info.png new file mode 100644 index 0000000..07f9196 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/info.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/list.9.png new file mode 100644 index 0000000..ec0c042 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/list.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/list.png new file mode 100644 index 0000000..085d638 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/menu-bg.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/menu-bg.9.png new file mode 100644 index 0000000..3a896c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/menu-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/menu-bg.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/menu-bg.png new file mode 100644 index 0000000..1e5784e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/menu-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/progress-bar.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/progress-bar.png new file mode 100644 index 0000000..d80f189 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/progress-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/radio-on.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/radio-on.png new file mode 100644 index 0000000..e7604e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/radio.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/radio.png new file mode 100644 index 0000000..acba4d6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/radio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/scrollpane-knob.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/scrollpane-knob.png new file mode 100644 index 0000000..a8c8399 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/scrollpane-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-over.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-over.9.png new file mode 100644 index 0000000..338384d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-over.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-over.png new file mode 100644 index 0000000..c8dd606 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-pressed.9.png new file mode 100644 index 0000000..9eeb7d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-pressed.png new file mode 100644 index 0000000..c1a5c8f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box.9.png new file mode 100644 index 0000000..4a5d35a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box.png new file mode 100644 index 0000000..da0b9fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/settings-selected.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/settings-selected.png new file mode 100644 index 0000000..289f5bf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/settings-selected.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/settings.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/settings.png new file mode 100644 index 0000000..2857de6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/settings.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/slider-knob-horizontal.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/slider-knob-horizontal.png new file mode 100644 index 0000000..eddc0c1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/slider-knob-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/slider-knob-vertical.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/slider-knob-vertical.png new file mode 100644 index 0000000..cb43de3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/slider-knob-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-horizontal.9.png new file mode 100644 index 0000000..2fd7312 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-horizontal.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-horizontal.png new file mode 100644 index 0000000..a5b714c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-vertical.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-vertical.9.png new file mode 100644 index 0000000..98a9fd6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-vertical.png new file mode 100644 index 0000000..9ddf44a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font-export.fnt new file mode 100644 index 0000000..01ad1e2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font-export.fnt @@ -0,0 +1,104 @@ +info face="sub-title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=9 base=9 scaleW=73 scaleH=73 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="sub-title-font-export.png" +chars count=98 +char id=33 x=65 y=0 width=3 height=7 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=34 y=20 width=4 height=3 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=9 y=55 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="#" +char id=36 x=41 y=8 width=6 height=11 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter="$" +char id=37 x=0 y=11 width=10 height=7 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=17 y=63 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="&" +char id=39 x=10 y=35 width=3 height=3 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=65 y=33 width=3 height=10 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=60 y=56 width=4 height=10 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=54 y=50 width=5 height=4 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=40 y=28 width=6 height=6 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="+" +char id=44 x=60 y=67 width=3 height=4 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=40 y=71 width=4 height=1 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=29 y=70 width=3 height=2 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=54 y=39 width=5 height=10 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=27 y=0 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="0" +char id=49 x=60 y=28 width=4 height=7 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=33 y=41 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=54 y=63 width=5 height=7 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="3" +char id=52 x=47 y=34 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="4" +char id=53 x=54 y=55 width=5 height=7 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="5" +char id=54 x=47 y=20 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=33 y=33 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=33 y=64 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=40 y=35 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=65 y=17 width=3 height=6 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=65 y=24 width=3 height=8 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=54 y=33 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="<" +char id=61 x=47 y=28 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="=" +char id=62 x=54 y=21 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=54 y=12 width=5 height=8 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=10 height=10 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=10 y=27 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="A" +char id=66 x=11 y=0 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=25 y=54 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="C" +char id=68 x=18 y=22 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=47 y=50 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=47 y=42 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=9 y=63 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=11 y=8 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=69 y=0 width=3 height=7 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=48 y=9 width=5 height=7 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=18 y=30 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=41 y=0 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=0 y=57 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="M" +char id=78 x=0 y=65 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=9 y=47 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="O" +char id=80 x=17 y=55 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=47 width=8 height=9 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Q" +char id=82 x=19 y=8 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=40 y=20 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=25 y=62 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=26 y=16 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=9 y=39 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=19 width=10 height=7 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="W" +char id=88 x=19 y=0 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=18 y=38 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=18 y=46 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=65 y=44 width=3 height=10 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=47 y=58 width=6 height=10 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=65 y=55 width=3 height=10 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=11 y=22 width=6 height=4 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=9 y=71 width=7 height=1 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=25 y=70 width=3 height=2 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=33 y=58 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=33 y=49 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=27 y=8 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=26 y=24 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=19 y=16 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=48 y=0 width=5 height=8 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=26 y=33 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=26 y=41 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=65 y=8 width=3 height=8 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=60 y=36 width=4 height=10 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=33 y=24 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=60 y=47 width=4 height=8 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=27 width=9 height=5 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=34 y=14 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=11 y=16 width=7 height=5 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=34 y=6 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=40 y=43 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=54 y=6 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=54 y=0 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=60 y=20 width=4 height=7 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=34 y=0 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=40 y=51 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=0 y=33 width=9 height=5 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=40 y=57 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=40 y=63 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="y" +char id=122 x=54 y=27 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=60 y=10 width=4 height=9 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=69 y=8 width=2 height=10 xoffset=0 yoffset=1 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=60 y=0 width=4 height=9 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=26 y=50 width=6 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=47 y=69 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=39 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font-export.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font-export.png new file mode 100644 index 0000000..231af6b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font.png new file mode 100644 index 0000000..a48ca65 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/sub-title-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/textfield.9.png new file mode 100644 index 0000000..93cfdf7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/textfield.png new file mode 100644 index 0000000..0dbf20b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/title-bg.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-bg.9.png new file mode 100644 index 0000000..4017ff0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/title-bg.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-bg.png new file mode 100644 index 0000000..199aeda Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font-export.fnt new file mode 100644 index 0000000..37d7c61 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font-export.fnt @@ -0,0 +1,104 @@ +info face="title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=20 base=20 scaleW=133 scaleH=135 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="title-font-export.png" +chars count=98 +char id=33 x=127 y=96 width=4 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=47 y=128 width=9 height=6 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=33 y=67 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="#" +char id=36 x=97 y=70 width=11 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=16 width=19 height=15 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="%" +char id=38 x=20 y=16 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=119 y=42 width=4 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=119 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=119 y=21 width=6 height=20 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=63 y=38 width=9 height=8 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=97 y=106 width=10 height=11 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=110 y=16 width=5 height=6 xoffset=0 yoffset=17 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=61 y=76 width=7 height=3 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=75 y=33 width=4 height=4 xoffset=0 yoffset=16 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=86 y=33 width=11 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="/" +char id=48 x=47 y=96 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=110 y=0 width=8 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=85 y=88 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=85 y=104 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="3" +char id=52 x=47 y=80 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=87 y=0 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="5" +char id=54 x=50 y=16 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="6" +char id=55 x=50 y=0 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="7" +char id=56 x=50 y=32 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=97 y=90 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=118 y=122 width=5 height=11 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=124 y=119 width=5 height=14 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=73 y=120 width=11 height=11 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="<" +char id=61 x=87 y=16 width=11 height=8 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=85 y=120 width=11 height=11 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=109 y=39 width=9 height=16 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=32 width=19 height=18 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="@" +char id=65 x=17 y=98 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="A" +char id=66 x=34 y=48 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="B" +char id=67 x=47 y=64 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="C" +char id=68 x=21 y=0 width=14 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="D" +char id=69 x=86 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="E" +char id=70 x=108 y=106 width=10 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=33 y=115 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=36 y=0 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="H" +char id=73 x=126 y=80 width=4 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=98 y=41 width=10 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=48 y=48 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=85 y=72 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=63 width=17 height=15 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=36 y=32 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="N" +char id=79 x=0 y=107 width=16 height=15 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=75 y=17 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=17 y=79 width=15 height=18 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=36 y=16 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="R" +char id=83 x=60 y=102 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="S" +char id=84 x=33 y=99 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=33 y=83 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=18 y=51 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=20 height=15 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="W" +char id=88 x=20 y=32 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="X" +char id=89 x=17 y=114 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="Y" +char id=90 x=60 y=118 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="Z" +char id=91 x=126 y=21 width=6 height=20 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=63 y=0 width=11 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=118 y=56 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=60 y=92 width=12 height=9 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="^" +char id=95 x=62 y=60 width=11 height=3 xoffset=0 yoffset=21 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=0 y=129 width=5 height=5 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=62 y=48 width=11 height=11 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=63 y=21 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=99 y=0 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=75 y=0 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=60 y=80 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="e" +char id=102 x=109 y=77 width=8 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="f" +char id=103 x=98 y=25 width=10 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="g" +char id=104 x=74 y=38 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=127 y=0 width=4 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=109 y=56 width=8 height=20 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=74 y=55 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="k" +char id=108 x=126 y=42 width=5 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=95 width=16 height=11 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="m" +char id=110 x=99 y=12 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=73 y=76 width=11 height=11 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="o" +char id=112 x=73 y=88 width=11 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=73 y=104 width=11 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=109 y=94 width=8 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=108 y=122 width=9 height=11 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=109 y=24 width=9 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=97 y=118 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=18 y=67 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=51 width=17 height=11 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="w" +char id=120 x=61 y=64 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="x" +char id=121 x=47 y=112 width=12 height=15 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=98 y=57 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=118 y=77 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=126 y=59 width=4 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=119 y=98 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=0 y=123 width=12 height=5 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=87 y=25 width=7 height=6 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=79 width=16 height=15 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font-export.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font-export.png new file mode 100644 index 0000000..29c000e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font.png new file mode 100644 index 0000000..6dc2e4b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/title-font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/tooltip.9.png new file mode 100644 index 0000000..378041e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/tooltip.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/tooltip.png new file mode 100644 index 0000000..33b6dce Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/tooltip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/touchpad-knob.png new file mode 100644 index 0000000..3c37728 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/touchpad.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/touchpad.png new file mode 100644 index 0000000..bc38935 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/touchpad.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/tree-minus.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/tree-minus.png new file mode 100644 index 0000000..5962dc5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/tree-plus.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/tree-plus.png new file mode 100644 index 0000000..fff5f00 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/white.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/window.9.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/window.9.png new file mode 100644 index 0000000..7e8bb58 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/raw/window.png b/src/main/resources/omni_power/gdx-skins/tracer/raw/window.png new file mode 100644 index 0000000..181aa64 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/raw/window.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tracer/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/tracer/skin/font-export.fnt new file mode 100644 index 0000000..370f1c9 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=16 base=16 scaleW=110 scaleH=110 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=105 y=49 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=91 y=104 width=6 height=5 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter=""" +char id=35 x=14 y=77 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="#" +char id=36 x=72 y=26 width=9 height=16 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="$" +char id=37 x=0 y=13 width=15 height=12 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="%" +char id=38 x=16 y=39 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="&" +char id=39 x=42 y=104 width=3 height=5 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=99 y=31 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="(" +char id=41 x=100 y=0 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter=")" +char id=42 x=82 y=23 width=8 height=7 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="*" +char id=43 x=51 y=72 width=10 height=7 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="+" +char id=44 x=38 y=104 width=3 height=5 xoffset=0 yoffset=14 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=16 y=52 width=5 height=1 xoffset=0 yoffset=10 xadvance=6 page=0 chnl=0 letter="-" +char id=46 x=28 y=104 width=4 height=2 xoffset=0 yoffset=14 xadvance=5 page=0 chnl=0 letter="." +char id=47 x=91 y=13 width=8 height=17 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="/" +char id=48 x=52 y=13 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="0" +char id=49 x=93 y=0 width=5 height=12 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="1" +char id=50 x=72 y=66 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="2" +char id=51 x=41 y=39 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="3" +char id=52 x=40 y=52 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="4" +char id=53 x=82 y=97 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="5" +char id=54 x=72 y=53 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="6" +char id=55 x=43 y=0 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="7" +char id=56 x=63 y=13 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="8" +char id=57 x=41 y=13 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="9" +char id=58 x=99 y=49 width=3 height=9 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=105 y=36 width=3 height=12 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=51 y=90 width=10 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="<" +char id=61 x=11 y=104 width=9 height=4 xoffset=0 yoffset=8 xadvance=10 page=0 chnl=0 letter="=" +char id=62 x=51 y=80 width=10 height=9 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter=">" +char id=63 x=82 y=66 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="?" +char id=64 x=0 y=26 width=15 height=14 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="@" +char id=65 x=18 y=0 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="A" +char id=66 x=29 y=26 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="B" +char id=67 x=31 y=0 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="C" +char id=68 x=28 y=52 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="D" +char id=69 x=72 y=92 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="E" +char id=70 x=84 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="F" +char id=71 x=27 y=77 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="G" +char id=72 x=27 y=90 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="H" +char id=73 x=100 y=18 width=3 height=12 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=75 y=0 width=8 height=12 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="J" +char id=75 x=29 y=13 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="K" +char id=76 x=62 y=95 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="L" +char id=77 x=0 y=41 width=15 height=12 xoffset=0 yoffset=4 xadvance=16 page=0 chnl=0 letter="M" +char id=78 x=14 y=90 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="N" +char id=79 x=14 y=64 width=13 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="O" +char id=80 x=54 y=0 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="P" +char id=81 x=0 y=77 width=13 height=15 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="Q" +char id=82 x=39 y=78 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="R" +char id=83 x=62 y=67 width=9 height=12 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="S" +char id=84 x=39 y=65 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="T" +char id=85 x=29 y=39 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="U" +char id=86 x=16 y=13 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=17 height=12 xoffset=0 yoffset=4 xadvance=18 page=0 chnl=0 letter="W" +char id=88 x=39 y=91 width=11 height=12 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="X" +char id=89 x=16 y=26 width=12 height=12 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="Y" +char id=90 x=52 y=26 width=10 height=12 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="Z" +char id=91 x=104 y=77 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="[" +char id=92 x=82 y=79 width=8 height=17 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="\" +char id=93 x=98 y=77 width=5 height=17 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="]" +char id=94 x=51 y=64 width=10 height=7 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="^" +char id=95 x=0 y=104 width=10 height=1 xoffset=0 yoffset=18 xadvance=11 page=0 chnl=0 letter="_" +char id=96 x=33 y=104 width=4 height=4 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="`" +char id=97 x=82 y=56 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="a" +char id=98 x=51 y=39 width=10 height=14 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="b" +char id=99 x=82 y=46 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="c" +char id=100 x=62 y=39 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="d" +char id=101 x=15 y=54 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="e" +char id=102 x=91 y=44 width=7 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="f" +char id=103 x=62 y=54 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="g" +char id=104 x=62 y=80 width=9 height=14 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 letter="h" +char id=105 x=103 y=95 width=3 height=13 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=91 y=87 width=6 height=16 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="j" +char id=107 x=82 y=31 width=8 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="k" +char id=108 x=98 y=95 width=4 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=93 width=13 height=9 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 letter="m" +char id=110 x=72 y=43 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="n" +char id=111 x=51 y=54 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="o" +char id=112 x=65 y=0 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="p" +char id=113 x=41 y=26 width=10 height=12 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="q" +char id=114 x=91 y=59 width=6 height=9 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="r" +char id=115 x=83 y=13 width=7 height=9 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="s" +char id=116 x=91 y=31 width=7 height=12 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="t" +char id=117 x=63 y=26 width=8 height=9 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 letter="u" +char id=118 x=73 y=13 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="v" +char id=119 x=0 y=54 width=14 height=9 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 letter="w" +char id=120 x=28 y=65 width=10 height=9 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 letter="x" +char id=121 x=72 y=79 width=9 height=12 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="y" +char id=122 x=51 y=100 width=9 height=9 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 letter="z" +char id=123 x=91 y=69 width=6 height=17 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="{" +char id=124 x=105 y=18 width=3 height=17 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="|" +char id=125 x=98 y=59 width=6 height=17 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="}" +char id=126 x=0 y=106 width=10 height=3 xoffset=0 yoffset=10 xadvance=11 page=0 chnl=0 letter="~" +char id=8226 x=21 y=104 width=6 height=5 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 letter="•" +char id=169 x=0 y=64 width=13 height=12 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=6 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=48 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/skin/sub-title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/tracer/skin/sub-title-font-export.fnt new file mode 100644 index 0000000..01ad1e2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/skin/sub-title-font-export.fnt @@ -0,0 +1,104 @@ +info face="sub-title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=9 base=9 scaleW=73 scaleH=73 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="sub-title-font-export.png" +chars count=98 +char id=33 x=65 y=0 width=3 height=7 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="!" +char id=34 x=34 y=20 width=4 height=3 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=9 y=55 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="#" +char id=36 x=41 y=8 width=6 height=11 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter="$" +char id=37 x=0 y=11 width=10 height=7 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=17 y=63 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="&" +char id=39 x=10 y=35 width=3 height=3 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=65 y=33 width=3 height=10 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="(" +char id=41 x=60 y=56 width=4 height=10 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter=")" +char id=42 x=54 y=50 width=5 height=4 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=40 y=28 width=6 height=6 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="+" +char id=44 x=60 y=67 width=3 height=4 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=40 y=71 width=4 height=1 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=29 y=70 width=3 height=2 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 letter="." +char id=47 x=54 y=39 width=5 height=10 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="/" +char id=48 x=27 y=0 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="0" +char id=49 x=60 y=28 width=4 height=7 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=33 y=41 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="2" +char id=51 x=54 y=63 width=5 height=7 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="3" +char id=52 x=47 y=34 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="4" +char id=53 x=54 y=55 width=5 height=7 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="5" +char id=54 x=47 y=20 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=33 y=33 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="7" +char id=56 x=33 y=64 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="8" +char id=57 x=40 y=35 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=65 y=17 width=3 height=6 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter=":" +char id=59 x=65 y=24 width=3 height=8 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=54 y=33 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="<" +char id=61 x=47 y=28 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="=" +char id=62 x=54 y=21 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter=">" +char id=63 x=54 y=12 width=5 height=8 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=10 height=10 xoffset=0 yoffset=1 xadvance=11 page=0 chnl=0 letter="@" +char id=65 x=10 y=27 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="A" +char id=66 x=11 y=0 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=25 y=54 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="C" +char id=68 x=18 y=22 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="D" +char id=69 x=47 y=50 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="E" +char id=70 x=47 y=42 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="F" +char id=71 x=9 y=63 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="G" +char id=72 x=11 y=8 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="H" +char id=73 x=69 y=0 width=3 height=7 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 letter="I" +char id=74 x=48 y=9 width=5 height=7 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 letter="J" +char id=75 x=18 y=30 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="K" +char id=76 x=41 y=0 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=0 y=57 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="M" +char id=78 x=0 y=65 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=9 y=47 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="O" +char id=80 x=17 y=55 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=47 width=8 height=9 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="Q" +char id=82 x=19 y=8 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="R" +char id=83 x=40 y=20 width=6 height=7 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="S" +char id=84 x=25 y=62 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="T" +char id=85 x=26 y=16 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=9 y=39 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="V" +char id=87 x=0 y=19 width=10 height=7 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 letter="W" +char id=88 x=19 y=0 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="X" +char id=89 x=18 y=38 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="Y" +char id=90 x=18 y=46 width=7 height=7 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 letter="Z" +char id=91 x=65 y=44 width=3 height=10 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="[" +char id=92 x=47 y=58 width=6 height=10 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="\" +char id=93 x=65 y=55 width=3 height=10 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=11 y=22 width=6 height=4 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=9 y=71 width=7 height=1 xoffset=0 yoffset=10 xadvance=8 page=0 chnl=0 letter="_" +char id=96 x=25 y=70 width=3 height=2 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=33 y=58 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=33 y=49 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=27 y=8 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=26 y=24 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=19 y=16 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=48 y=0 width=5 height=8 xoffset=0 yoffset=1 xadvance=6 page=0 chnl=0 letter="f" +char id=103 x=26 y=33 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="g" +char id=104 x=26 y=41 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=65 y=8 width=3 height=8 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=60 y=36 width=4 height=10 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=33 y=24 width=6 height=8 xoffset=0 yoffset=1 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=60 y=47 width=4 height=8 xoffset=0 yoffset=1 xadvance=5 page=0 chnl=0 letter="l" +char id=109 x=0 y=27 width=9 height=5 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="m" +char id=110 x=34 y=14 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=11 y=16 width=7 height=5 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="o" +char id=112 x=34 y=6 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=40 y=43 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="q" +char id=114 x=54 y=6 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="r" +char id=115 x=54 y=0 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="s" +char id=116 x=60 y=20 width=4 height=7 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=34 y=0 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="u" +char id=118 x=40 y=51 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="v" +char id=119 x=0 y=33 width=9 height=5 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=40 y=57 width=6 height=5 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="x" +char id=121 x=40 y=63 width=6 height=7 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="y" +char id=122 x=54 y=27 width=5 height=5 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="z" +char id=123 x=60 y=10 width=4 height=9 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="{" +char id=124 x=69 y=8 width=2 height=10 xoffset=0 yoffset=1 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=60 y=0 width=4 height=9 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=26 y=50 width=6 height=3 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="~" +char id=8226 x=47 y=69 width=4 height=3 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=39 width=8 height=7 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/skin/title-font-export.fnt b/src/main/resources/omni_power/gdx-skins/tracer/skin/title-font-export.fnt new file mode 100644 index 0000000..37d7c61 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/skin/title-font-export.fnt @@ -0,0 +1,104 @@ +info face="title-font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=20 base=20 scaleW=133 scaleH=135 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="title-font-export.png" +chars count=98 +char id=33 x=127 y=96 width=4 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=47 y=128 width=9 height=6 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter=""" +char id=35 x=33 y=67 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="#" +char id=36 x=97 y=70 width=11 height=19 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="$" +char id=37 x=0 y=16 width=19 height=15 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="%" +char id=38 x=20 y=16 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="&" +char id=39 x=119 y=42 width=4 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="'" +char id=40 x=119 y=0 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="(" +char id=41 x=119 y=21 width=6 height=20 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter=")" +char id=42 x=63 y=38 width=9 height=8 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="*" +char id=43 x=97 y=106 width=10 height=11 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="+" +char id=44 x=110 y=16 width=5 height=6 xoffset=0 yoffset=17 xadvance=7 page=0 chnl=0 letter="," +char id=45 x=61 y=76 width=7 height=3 xoffset=0 yoffset=12 xadvance=9 page=0 chnl=0 letter="-" +char id=46 x=75 y=33 width=4 height=4 xoffset=0 yoffset=16 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=86 y=33 width=11 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="/" +char id=48 x=47 y=96 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="0" +char id=49 x=110 y=0 width=8 height=15 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="1" +char id=50 x=85 y=88 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="2" +char id=51 x=85 y=104 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="3" +char id=52 x=47 y=80 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="4" +char id=53 x=87 y=0 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="5" +char id=54 x=50 y=16 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="6" +char id=55 x=50 y=0 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="7" +char id=56 x=50 y=32 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="8" +char id=57 x=97 y=90 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="9" +char id=58 x=118 y=122 width=5 height=11 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=":" +char id=59 x=124 y=119 width=5 height=14 xoffset=0 yoffset=9 xadvance=7 page=0 chnl=0 letter=";" +char id=60 x=73 y=120 width=11 height=11 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter="<" +char id=61 x=87 y=16 width=11 height=8 xoffset=0 yoffset=10 xadvance=13 page=0 chnl=0 letter="=" +char id=62 x=85 y=120 width=11 height=11 xoffset=0 yoffset=8 xadvance=13 page=0 chnl=0 letter=">" +char id=63 x=109 y=39 width=9 height=16 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 letter="?" +char id=64 x=0 y=32 width=19 height=18 xoffset=0 yoffset=5 xadvance=21 page=0 chnl=0 letter="@" +char id=65 x=17 y=98 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="A" +char id=66 x=34 y=48 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="B" +char id=67 x=47 y=64 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="C" +char id=68 x=21 y=0 width=14 height=15 xoffset=0 yoffset=5 xadvance=16 page=0 chnl=0 letter="D" +char id=69 x=86 y=54 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="E" +char id=70 x=108 y=106 width=10 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="F" +char id=71 x=33 y=115 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="G" +char id=72 x=36 y=0 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="H" +char id=73 x=126 y=80 width=4 height=15 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 letter="I" +char id=74 x=98 y=41 width=10 height=15 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 letter="J" +char id=75 x=48 y=48 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="K" +char id=76 x=85 y=72 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="L" +char id=77 x=0 y=63 width=17 height=15 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 letter="M" +char id=78 x=36 y=32 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="N" +char id=79 x=0 y=107 width=16 height=15 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="O" +char id=80 x=75 y=17 width=11 height=15 xoffset=0 yoffset=5 xadvance=13 page=0 chnl=0 letter="P" +char id=81 x=17 y=79 width=15 height=18 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="Q" +char id=82 x=36 y=16 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="R" +char id=83 x=60 y=102 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="S" +char id=84 x=33 y=99 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="T" +char id=85 x=33 y=83 width=13 height=15 xoffset=0 yoffset=5 xadvance=15 page=0 chnl=0 letter="U" +char id=86 x=18 y=51 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="V" +char id=87 x=0 y=0 width=20 height=15 xoffset=0 yoffset=5 xadvance=22 page=0 chnl=0 letter="W" +char id=88 x=20 y=32 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="X" +char id=89 x=17 y=114 width=15 height=15 xoffset=0 yoffset=5 xadvance=17 page=0 chnl=0 letter="Y" +char id=90 x=60 y=118 width=12 height=15 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="Z" +char id=91 x=126 y=21 width=6 height=20 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 letter="[" +char id=92 x=63 y=0 width=11 height=20 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="\" +char id=93 x=118 y=56 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="]" +char id=94 x=60 y=92 width=12 height=9 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 letter="^" +char id=95 x=62 y=60 width=11 height=3 xoffset=0 yoffset=21 xadvance=13 page=0 chnl=0 letter="_" +char id=96 x=0 y=129 width=5 height=5 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="`" +char id=97 x=62 y=48 width=11 height=11 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="a" +char id=98 x=63 y=21 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="b" +char id=99 x=99 y=0 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="c" +char id=100 x=75 y=0 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="d" +char id=101 x=60 y=80 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="e" +char id=102 x=109 y=77 width=8 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="f" +char id=103 x=98 y=25 width=10 height=15 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="g" +char id=104 x=74 y=38 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="h" +char id=105 x=127 y=0 width=4 height=16 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="i" +char id=106 x=109 y=56 width=8 height=20 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 letter="j" +char id=107 x=74 y=55 width=11 height=16 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 letter="k" +char id=108 x=126 y=42 width=5 height=16 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 letter="l" +char id=109 x=0 y=95 width=16 height=11 xoffset=0 yoffset=9 xadvance=18 page=0 chnl=0 letter="m" +char id=110 x=99 y=12 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="n" +char id=111 x=73 y=76 width=11 height=11 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="o" +char id=112 x=73 y=88 width=11 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="p" +char id=113 x=73 y=104 width=11 height=15 xoffset=0 yoffset=9 xadvance=13 page=0 chnl=0 letter="q" +char id=114 x=109 y=94 width=8 height=11 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 letter="r" +char id=115 x=108 y=122 width=9 height=11 xoffset=0 yoffset=9 xadvance=11 page=0 chnl=0 letter="s" +char id=116 x=109 y=24 width=9 height=14 xoffset=0 yoffset=6 xadvance=11 page=0 chnl=0 letter="t" +char id=117 x=97 y=118 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="u" +char id=118 x=18 y=67 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="v" +char id=119 x=0 y=51 width=17 height=11 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 letter="w" +char id=120 x=61 y=64 width=12 height=11 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="x" +char id=121 x=47 y=112 width=12 height=15 xoffset=0 yoffset=9 xadvance=14 page=0 chnl=0 letter="y" +char id=122 x=98 y=57 width=10 height=11 xoffset=0 yoffset=9 xadvance=12 page=0 chnl=0 letter="z" +char id=123 x=118 y=77 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="{" +char id=124 x=126 y=59 width=4 height=20 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=119 y=98 width=7 height=20 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 letter="}" +char id=126 x=0 y=123 width=12 height=5 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 letter="~" +char id=8226 x=87 y=25 width=7 height=6 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 letter="•" +char id=169 x=0 y=79 width=16 height=15 xoffset=0 yoffset=5 xadvance=18 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=56 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.atlas b/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.atlas new file mode 100644 index 0000000..4ddf251 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.atlas @@ -0,0 +1,334 @@ + +tracer-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bg + rotate: false + xy: 1, 223 + size: 800, 800 + orig: 800, 800 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 1, 18 + size: 85, 33 + split: 1, 1, 1, 1 + pad: 5, 5, 5, 5 + orig: 85, 33 + offset: 0, 0 + index: -1 +button-new + rotate: false + xy: 803, 652 + size: 36, 36 + orig: 36, 36 + offset: 0, 0 + index: -1 +button-new-icon + rotate: false + xy: 259, 170 + size: 17, 17 + orig: 36, 36 + offset: 17, 2 + index: -1 +button-new-pressed + rotate: false + xy: 803, 614 + size: 36, 36 + orig: 36, 36 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 803, 845 + size: 85, 33 + split: 1, 1, 1, 1 + pad: 5, 5, 5, 5 + orig: 85, 33 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 803, 810 + size: 85, 33 + split: 1, 1, 1, 1 + pad: 5, 5, 5, 5 + orig: 85, 33 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 890, 843 + size: 13, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 282, 196 + size: 13, 13 + orig: 17, 13 + offset: 0, 0 + index: -1 +close-button + rotate: false + xy: 22, 1 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +close-button-icon + rotate: false + xy: 877, 797 + size: 11, 11 + orig: 11, 11 + offset: 0, 0 + index: -1 +close-button-pressed + rotate: false + xy: 39, 1 + size: 15, 15 + orig: 15, 15 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 803, 880 + size: 109, 109 + orig: 110, 110 + offset: 0, 1 + index: -1 +home + rotate: false + xy: 1, 2 + size: 19, 14 + orig: 21, 40 + offset: 1, 24 + index: -1 +home-selected + rotate: false + xy: 803, 574 + size: 19, 38 + orig: 21, 40 + offset: 1, 0 + index: -1 +info + rotate: false + xy: 890, 858 + size: 20, 20 + orig: 21, 40 + offset: 0, 20 + index: -1 +info-selected + rotate: false + xy: 848, 694 + size: 20, 40 + orig: 21, 40 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 224, 154 + size: 33, 33 + split: 1, 1, 1, 1 + pad: 3, 3, 3, 3 + orig: 33, 33 + offset: 0, 0 + index: -1 +menu-bg + rotate: false + xy: 114, 41 + size: 10, 10 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 10, 10 + offset: 0, 0 + index: -1 +progress-bar + rotate: false + xy: 175, 109 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +radio + rotate: false + xy: 1007, 1007 + size: 16, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 1007, 989 + size: 16, 16 + orig: 20, 16 + offset: 0, 0 + index: -1 +scrollpane-knob + rotate: false + xy: 803, 559 + size: 13, 13 + orig: 13, 13 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 803, 991 + size: 123, 32 + split: 1, 1, 1, 9 + pad: 3, 3, 3, 11 + orig: 123, 32 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 1, 53 + size: 123, 32 + split: 1, 1, 1, 9 + pad: 3, 3, 3, 11 + orig: 123, 32 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 135, 189 + size: 123, 32 + split: 1, 1, 1, 9 + pad: 3, 3, 3, 11 + orig: 123, 32 + offset: 0, 0 + index: -1 +settings + rotate: false + xy: 135, 90 + size: 19, 14 + orig: 21, 40 + offset: 1, 23 + index: -1 +settings-selected + rotate: false + xy: 224, 115 + size: 19, 37 + orig: 21, 40 + offset: 1, 0 + index: -1 +slider-knob-horizontal + rotate: false + xy: 260, 211 + size: 41, 10 + orig: 41, 10 + offset: 0, 0 + index: -1 +slider-knob-vertical + rotate: false + xy: 914, 947 + size: 11, 42 + orig: 11, 42 + offset: 0, 0 + index: -1 +splitpane-horizontal + rotate: false + xy: 841, 649 + size: 5, 39 + split: 0, 0, 1, 20 + pad: 0, 0, 0, 0 + orig: 5, 39 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 135, 106 + size: 38, 5 + split: 20, 0, 0, 0 + pad: 0, 0, 0, 0 + orig: 38, 5 + offset: 0, 0 + index: -1 +sub-title-font-export + rotate: false + xy: 803, 736 + size: 72, 72 + orig: 73, 73 + offset: 0, 1 + index: -1 +textfield + rotate: false + xy: 928, 993 + size: 77, 30 + split: 3, 3, 1, 6 + pad: 5, 5, 3, 8 + orig: 77, 30 + offset: 0, 0 + index: -1 +title-bg + rotate: false + xy: 126, 77 + size: 7, 8 + split: 1, 1, 0, 1 + pad: 1, 1, 0, 3 + orig: 7, 8 + offset: 0, 0 + index: -1 +title-font-export + rotate: false + xy: 1, 87 + size: 132, 134 + orig: 133, 135 + offset: 0, 1 + index: -1 +tooltip + rotate: false + xy: 803, 690 + size: 43, 44 + split: 9, 10, 9, 10 + pad: 10, 11, 10, 11 + orig: 43, 44 + offset: 0, 0 + index: -1 +touchpad + rotate: false + xy: 135, 113 + size: 87, 74 + orig: 87, 74 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 88, 29 + size: 24, 22 + orig: 26, 22 + offset: 1, 0 + index: -1 +tree-minus + rotate: false + xy: 303, 214 + size: 14, 7 + orig: 14, 17 + offset: 0, 5 + index: -1 +tree-plus + rotate: false + xy: 824, 596 + size: 12, 16 + orig: 14, 16 + offset: 1, 0 + index: -1 +white + rotate: false + xy: 88, 26 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 260, 189 + size: 20, 20 + split: 5, 5, 5, 5 + orig: 20, 20 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.json b/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.json new file mode 100644 index 0000000..e6ec60c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.json @@ -0,0 +1,445 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + sub-title: { + file: sub-title-font-export.fnt + } + title: { + file: title-font-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + bg: { + r: 0 + g: 0 + b: 0 + a: 0.9019608 + } + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + clear: { + r: 1 + g: 0 + b: 0 + a: 0 + } + color: { + r: 1 + g: 0 + b: 0 + a: 1 + } + pressed: { + r: 0.2784314 + g: 0 + b: 0 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + button-c: { + name: button + color: color + } + button-pressed-c: { + name: button-pressed + color: color + } + button-over-c: { + name: button-over + color: color + } + title-bg-c: { + name: title-bg + color: color + } + checkbox-on-c: { + name: checkbox-on + color: color + } + checkbox-c: { + name: checkbox + color: color + } + close-button-c: { + name: close-button + color: color + } + checkbox-on-p: { + name: checkbox-on + color: pressed + } + radio-c: { + name: radio + color: color + } + radio-on-p: { + name: radio-on + color: pressed + } + radio-on-c: { + name: radio-on + color: color + } + list-c: { + name: list + color: color + } + color: { + name: white + color: color + } + progress-bar-c: { + name: progress-bar + color: color + } + clear: { + name: white + color: clear + } + scrollpane-knob-c: { + name: scrollpane-knob + color: color + } + select-box-c: { + name: select-box + color: color + } + select-box-over-c: { + name: select-box-over + color: color + } + select-box-pressed-c: { + name: select-box-pressed + color: color + } + slider-knob-horizontal-c: { + name: slider-knob-horizontal + color: color + } + slider-knob-vertical-c: { + name: slider-knob-vertical + color: color + } + splitpane-vertical-c: { + name: splitpane-vertical + color: color + } + splitpane-horizontal-c: { + name: splitpane-horizontal + color: color + } + textfield-c: { + name: textfield + color: color + } + pressed: { + name: white + color: pressed + } + tooltip-c: { + name: tooltip + color: color + } + touchpad-c: { + name: touchpad + color: color + } + touchpad-knob-c: { + name: touchpad-knob + color: color + } + tree-plus-c: { + name: tree-plus + color: color + } + tree-minus-c: { + name: tree-minus + color: color + } + window-bg: { + name: window + color: bg + } + menu-bg-c: { + name: menu-bg + color: color + } + close-button-pressed-c: { + name: close-button-pressed + color: color + } + close-button-icon-c: { + name: close-button-icon + color: color + } + close-button-icon-b: { + name: close-button-icon + color: black + } + home-c: { + name: home + color: color + } + home-selected-c: { + name: home-selected + color: color + } + home-p: { + name: home + color: pressed + } + settings-c: { + name: settings + color: color + } + settings-p: { + name: settings + color: pressed + } + settings-selected-c: { + name: settings-selected + color: color + } + info-c: { + name: info + color: color + } + info-p: { + name: info + color: pressed + } + info-selected-c: { + name: info-selected + color: color + } + button-new-c: { + name: button-new + color: color + } + button-new-pressed-c: { + name: button-new-pressed + color: color + } + button-new-icon-c: { + name: button-new-icon + color: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button-c + down: button-pressed-c + over: button-over-c + } + home: { + up: home-c + down: home-p + checked: home-selected-c + } + settings: { + up: settings-c + down: settings-p + checked: settings-selected-c + } + info: { + up: info-c + down: info-p + checked: info-selected-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on-c + checkboxOff: checkbox-c + font: font + fontColor: color + downFontColor: pressed + } + radio: { + checkboxOn: radio-on-c + checkboxOff: radio-c + font: font + fontColor: color + downFontColor: pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button-c + down: button-pressed-c + over: button-over-c + } + close: { + imageUp: close-button-icon-b + imageDown: close-button-icon + imageOver: close-button-icon + up: close-button-c + down: close-button-pressed-c + } + new: { + imageUp: button-new-icon + imageDown: button-new-icon-c + up: button-new-c + down: button-new-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: color + downFontColor: white + overFontColor: white + up: button-c + down: button-pressed-c + over: button-over-c + } + checkbox: { + imageUp: checkbox-c + imageDown: checkbox-on-p + imageChecked: checkbox-on-c + font: font + fontColor: color + downFontColor: pressed + } + radio: { + imageUp: radio-c + imageDown: radio-on-p + imageChecked: radio-on-c + font: font + fontColor: color + downFontColor: pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: color + } + title: { + font: title + fontColor: color + background: title-bg-c + } + sub-title: { + font: sub-title + fontColor: color + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: color + selection: color + background: list-c + } + menu: { + font: font + fontColorSelected: white + fontColorUnselected: color + selection: color + background: menu-bg-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: clear + knobBefore: progress-bar-c + } + default-vertical: { + background: clear + knobBefore: progress-bar-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scrollpane-knob-c + vScrollKnob: scrollpane-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: white + background: select-box-over-c + scrollStyle: default + listStyle: default + backgroundOpen: select-box-pressed-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: progress-bar-c + knob: slider-knob-horizontal-c + } + default-vertical: { + background: progress-bar-c + knob: slider-knob-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: splitpane-horizontal-c + } + default-vertical: { + handle: splitpane-vertical-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: color + downFontColor: white + overFontColor: white + up: button-c + down: button-pressed-c + over: button-over-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: color + background: textfield-c + cursor: color + selection: pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + background: tooltip-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: touchpad-c + knob: touchpad-knob-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: { + plus: tree-plus-c + minus: tree-minus-c + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: window-bg + titleFont: font + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.png b/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.png new file mode 100644 index 0000000..c325126 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tracer/skin/tracer-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/README.md b/src/main/resources/omni_power/gdx-skins/tubular/README.md new file mode 100644 index 0000000..b0b3c46 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tubular/README.md @@ -0,0 +1,21 @@ +# Tubular UI + +``` +Tubular UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! +© Copyright 2016 Raymond Buckley + +Tubular UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of most common **Scene2D** widgets. Mimics YouTube GUI. + +![Tubular](preview.png) + +You can find an example project [here](https://ray3k.wordpress.com/tubular-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](http://www.badlogicgames.com/forum/viewtopic.php?f=22&t=22887). diff --git a/src/main/resources/omni_power/gdx-skins/tubular/preview.png b/src/main/resources/omni_power/gdx-skins/tubular/preview.png new file mode 100644 index 0000000..a39015f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/bottom-bar.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/bottom-bar.9.png new file mode 100644 index 0000000..447fd4b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/bottom-bar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/bottom-bar.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/bottom-bar.png new file mode 100644 index 0000000..984f5c2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/bottom-bar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike-over.png new file mode 100644 index 0000000..ebf0151 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike-pressed.png new file mode 100644 index 0000000..1239a45 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike.png new file mode 100644 index 0000000..6efb236 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-dislike.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen-over.png new file mode 100644 index 0000000..c7b1ccd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen-pressed.png new file mode 100644 index 0000000..f246568 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen.png new file mode 100644 index 0000000..9f4e983 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-full-screen.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left-over.png new file mode 100644 index 0000000..1eaf1ab Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left-pressed.png new file mode 100644 index 0000000..334ecdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left.png new file mode 100644 index 0000000..eab0db7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like-over.png new file mode 100644 index 0000000..be7d9a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like-pressed.png new file mode 100644 index 0000000..20aabd9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like.png new file mode 100644 index 0000000..818049d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-like.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-menu-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-menu-pressed.png new file mode 100644 index 0000000..4738b0b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-menu-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-menu.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-menu.png new file mode 100644 index 0000000..913d720 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-over.9.png new file mode 100644 index 0000000..2a7f1f6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-over.png new file mode 100644 index 0000000..a2bb93b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause-over.png new file mode 100644 index 0000000..9a94637 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause-pressed.png new file mode 100644 index 0000000..90401cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause.png new file mode 100644 index 0000000..17d4359 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pause.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play-over.png new file mode 100644 index 0000000..f6e04a1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play-pressed.png new file mode 100644 index 0000000..3afb809 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play.png new file mode 100644 index 0000000..451bda5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-play.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pressed.9.png new file mode 100644 index 0000000..ee4dbb8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pressed.png new file mode 100644 index 0000000..ce1cb8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right-over.png new file mode 100644 index 0000000..04e85cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right-pressed.png new file mode 100644 index 0000000..9ac99b8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right.png new file mode 100644 index 0000000..4c4a018 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search-over.png new file mode 100644 index 0000000..d1703fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search-pressed.png new file mode 100644 index 0000000..2a34979 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search.png new file mode 100644 index 0000000..7cee0e3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-search.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings-over.png new file mode 100644 index 0000000..4478773 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings-pressed.png new file mode 100644 index 0000000..ea802bf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings.png new file mode 100644 index 0000000..aac56a4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-settings.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-over.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-over.9.png new file mode 100644 index 0000000..bef77c9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-over.png new file mode 100644 index 0000000..9ad4a52 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-pressed.9.png new file mode 100644 index 0000000..f8f676e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-pressed.png new file mode 100644 index 0000000..ba41ec8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar.9.png new file mode 100644 index 0000000..5db0a76 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar.png new file mode 100644 index 0000000..efe9e8b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-sidebar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker-over.png new file mode 100644 index 0000000..66e8f39 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker-pressed.png new file mode 100644 index 0000000..6db4943 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker.png new file mode 100644 index 0000000..40eb5ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-speaker.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu-pressed.9.png new file mode 100644 index 0000000..d11c539 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu-pressed.png new file mode 100644 index 0000000..6938234 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu.9.png new file mode 100644 index 0000000..2dc9709 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu.png new file mode 100644 index 0000000..315ae2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button-text-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button.9.png new file mode 100644 index 0000000..64ff3f3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/button.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/button.png new file mode 100644 index 0000000..1222a0b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/checkbox-off.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/checkbox-off.png new file mode 100644 index 0000000..33ddeb6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/checkbox-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/checkbox-on.png new file mode 100644 index 0000000..151b510 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/tubular/raw/font-export.fnt new file mode 100644 index 0000000..e3a36de --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tubular/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=82 scaleH=82 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=79 y=22 width=2 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=62 y=64 width=4 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=21 y=22 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=46 y=59 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=54 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=21 y=32 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=73 y=74 width=3 height=3 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=74 y=52 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=75 y=10 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=56 y=0 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=54 y=56 width=7 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=69 y=60 width=3 height=3 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=69 y=58 width=4 height=1 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=55 y=26 width=2 height=1 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=74 y=32 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="/" +char id=48 x=38 y=68 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=74 y=42 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=46 y=43 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=39 y=18 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=54 y=46 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=47 y=18 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="5" +char id=54 x=62 y=54 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=38 y=48 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=38 y=58 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=62 y=44 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=79 y=32 width=2 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=74 y=64 width=3 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=30 y=56 width=7 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=46 y=38 width=7 height=4 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=46 y=53 width=7 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=54 y=28 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=0 y=72 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=47 y=8 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=11 y=23 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=21 y=42 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=21 y=52 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=54 y=62 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=10 y=72 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=22 y=10 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=79 y=40 width=2 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=62 y=34 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=20 y=71 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=62 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=11 y=33 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=13 y=10 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=0 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=38 y=38 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=33 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=23 y=0 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=29 y=62 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=30 y=20 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=46 y=28 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=11 y=43 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=13 width=12 height=9 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=11 y=53 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=13 y=0 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=29 y=72 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=69 y=22 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=68 y=64 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="\" +char id=93 x=78 y=64 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=62 y=18 width=6 height=5 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=13 y=20 width=8 height=1 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=56 y=5 width=3 height=2 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=30 y=38 width=7 height=7 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=62 y=24 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=55 y=8 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=61 y=72 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=30 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=69 y=12 width=5 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=31 y=10 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=54 y=72 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=75 y=0 width=3 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=69 y=46 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=55 y=16 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=79 y=0 width=2 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=64 width=10 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=62 y=10 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=21 y=62 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=32 y=0 width=7 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=30 y=46 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=68 y=74 width=4 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="r" +char id=115 x=39 y=10 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=74 y=22 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=40 y=0 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=48 y=0 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=11 y=63 width=9 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=54 y=38 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=46 y=70 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=38 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=69 y=0 width=5 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=79 y=10 width=2 height=11 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=69 y=34 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=38 y=78 width=7 height=3 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=62 y=68 width=4 height=3 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=23 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/font-export.png new file mode 100644 index 0000000..9026204 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/font.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/font.png new file mode 100644 index 0000000..a19f6c6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/list.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/list.9.png new file mode 100644 index 0000000..dffd95f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/list.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/list.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/list.png new file mode 100644 index 0000000..9656dc2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/list.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/logo small.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/logo small.png new file mode 100644 index 0000000..b747887 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/logo small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/logo.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/logo.png new file mode 100644 index 0000000..5048642 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/logo.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-horizontal-knob.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-horizontal-knob.png new file mode 100644 index 0000000..491db3e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-horizontal-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-horizontal.png new file mode 100644 index 0000000..53d2844 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-vertical-knob.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-vertical-knob.png new file mode 100644 index 0000000..5e5d3fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-vertical-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-vertical.png new file mode 100644 index 0000000..9e293a4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/progress-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bar-horizontal.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bar-horizontal.png new file mode 100644 index 0000000..9e3f5c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bar-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bar-vertical.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bar-vertical.png new file mode 100644 index 0000000..90abcd0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bg.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bg.9.png new file mode 100644 index 0000000..2a8b992 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bg.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bg.png new file mode 100644 index 0000000..c0e8214 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/scroll-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-over.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-over.9.png new file mode 100644 index 0000000..c16e0b0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-over.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-over.png new file mode 100644 index 0000000..f224fbf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-pressed.9.png new file mode 100644 index 0000000..917af6d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-pressed.png new file mode 100644 index 0000000..34c620e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box.9.png new file mode 100644 index 0000000..3f3c8b4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box.png new file mode 100644 index 0000000..fad93cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/select-box.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-knob.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-knob.png new file mode 100644 index 0000000..f8c3488 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-horizontal.9.png new file mode 100644 index 0000000..3fa0780 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-horizontal.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-horizontal.png new file mode 100644 index 0000000..c175189 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-knob.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-knob.png new file mode 100644 index 0000000..64ffd67 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-vertical.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-vertical.9.png new file mode 100644 index 0000000..dc09e84 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-vertical.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-vertical.png new file mode 100644 index 0000000..fdecbda Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/slider-volume-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/super-click-bait.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/super-click-bait.png new file mode 100644 index 0000000..1527a91 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/super-click-bait.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield-pressed.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield-pressed.9.png new file mode 100644 index 0000000..ae6f794 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield-pressed.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield-pressed.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield-pressed.png new file mode 100644 index 0000000..0146d86 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield-pressed.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield.9.png new file mode 100644 index 0000000..ddb1d34 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield.png new file mode 100644 index 0000000..43ac31e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/toolbar.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/toolbar.9.png new file mode 100644 index 0000000..3262f4f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/toolbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/toolbar.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/toolbar.png new file mode 100644 index 0000000..7a59eb4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/toolbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/tooltip.9.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/tooltip.9.png new file mode 100644 index 0000000..36a3847 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/tooltip.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/tooltip.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/tooltip.png new file mode 100644 index 0000000..84ce75a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/tooltip.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/user.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/user.png new file mode 100644 index 0000000..d684327 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/user.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/raw/white.png b/src/main/resources/omni_power/gdx-skins/tubular/raw/white.png new file mode 100644 index 0000000..b8c9304 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/raw/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/tubular/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/tubular/skin/font-export.fnt new file mode 100644 index 0000000..e3a36de --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tubular/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=12 base=12 scaleW=82 scaleH=82 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=79 y=22 width=2 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="!" +char id=34 x=62 y=64 width=4 height=3 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter=""" +char id=35 x=21 y=22 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="#" +char id=36 x=46 y=59 width=7 height=10 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="$" +char id=37 x=0 y=54 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="%" +char id=38 x=21 y=32 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="&" +char id=39 x=73 y=74 width=3 height=3 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="'" +char id=40 x=74 y=52 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="(" +char id=41 x=75 y=10 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter=")" +char id=42 x=56 y=0 width=5 height=4 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="*" +char id=43 x=54 y=56 width=7 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="+" +char id=44 x=69 y=60 width=3 height=3 xoffset=0 yoffset=11 xadvance=4 page=0 chnl=0 letter="," +char id=45 x=69 y=58 width=4 height=1 xoffset=0 yoffset=8 xadvance=5 page=0 chnl=0 letter="-" +char id=46 x=55 y=26 width=2 height=1 xoffset=0 yoffset=11 xadvance=3 page=0 chnl=0 letter="." +char id=47 x=74 y=32 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="/" +char id=48 x=38 y=68 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="0" +char id=49 x=74 y=42 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="1" +char id=50 x=46 y=43 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="2" +char id=51 x=39 y=18 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="3" +char id=52 x=54 y=46 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="4" +char id=53 x=47 y=18 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="5" +char id=54 x=62 y=54 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="6" +char id=55 x=38 y=48 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="7" +char id=56 x=38 y=58 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="8" +char id=57 x=62 y=44 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="9" +char id=58 x=79 y=32 width=2 height=7 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 letter=":" +char id=59 x=74 y=64 width=3 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 letter=";" +char id=60 x=30 y=56 width=7 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="<" +char id=61 x=46 y=38 width=7 height=4 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 letter="=" +char id=62 x=46 y=53 width=7 height=5 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter=">" +char id=63 x=54 y=28 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="?" +char id=64 x=0 y=0 width=12 height=12 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="@" +char id=65 x=0 y=72 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="A" +char id=66 x=47 y=8 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="B" +char id=67 x=11 y=23 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="C" +char id=68 x=21 y=42 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="D" +char id=69 x=21 y=52 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="E" +char id=70 x=54 y=62 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="F" +char id=71 x=10 y=72 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="G" +char id=72 x=22 y=10 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="H" +char id=73 x=79 y=40 width=2 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="I" +char id=74 x=62 y=34 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="J" +char id=75 x=20 y=71 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="K" +char id=76 x=62 y=0 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="L" +char id=77 x=11 y=33 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="M" +char id=78 x=13 y=10 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="N" +char id=79 x=0 y=44 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="O" +char id=80 x=38 y=38 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="P" +char id=81 x=0 y=33 width=10 height=10 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="Q" +char id=82 x=23 y=0 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="R" +char id=83 x=29 y=62 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="S" +char id=84 x=30 y=20 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="T" +char id=85 x=46 y=28 width=7 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 letter="U" +char id=86 x=11 y=43 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="V" +char id=87 x=0 y=13 width=12 height=9 xoffset=0 yoffset=3 xadvance=13 page=0 chnl=0 letter="W" +char id=88 x=11 y=53 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="X" +char id=89 x=13 y=0 width=9 height=9 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 letter="Y" +char id=90 x=29 y=72 width=8 height=9 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 letter="Z" +char id=91 x=69 y=22 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="[" +char id=92 x=68 y=64 width=5 height=9 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="\" +char id=93 x=78 y=64 width=3 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="]" +char id=94 x=62 y=18 width=6 height=5 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="^" +char id=95 x=13 y=20 width=8 height=1 xoffset=0 yoffset=13 xadvance=9 page=0 chnl=0 letter="_" +char id=96 x=56 y=5 width=3 height=2 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="`" +char id=97 x=30 y=38 width=7 height=7 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 letter="a" +char id=98 x=62 y=24 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="b" +char id=99 x=55 y=8 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="c" +char id=100 x=61 y=72 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="d" +char id=101 x=30 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="e" +char id=102 x=69 y=12 width=5 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="f" +char id=103 x=31 y=10 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="g" +char id=104 x=54 y=72 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="h" +char id=105 x=75 y=0 width=3 height=9 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 letter="i" +char id=106 x=69 y=46 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="j" +char id=107 x=55 y=16 width=6 height=9 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 letter="k" +char id=108 x=79 y=0 width=2 height=9 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="l" +char id=109 x=0 y=64 width=10 height=7 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 letter="m" +char id=110 x=62 y=10 width=6 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="n" +char id=111 x=21 y=62 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="o" +char id=112 x=32 y=0 width=7 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="p" +char id=113 x=30 y=46 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="q" +char id=114 x=68 y=74 width=4 height=7 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 letter="r" +char id=115 x=39 y=10 width=7 height=7 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 letter="s" +char id=116 x=74 y=22 width=4 height=9 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="t" +char id=117 x=40 y=0 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="u" +char id=118 x=48 y=0 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="v" +char id=119 x=11 y=63 width=9 height=7 xoffset=0 yoffset=5 xadvance=10 page=0 chnl=0 letter="w" +char id=120 x=54 y=38 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="x" +char id=121 x=46 y=70 width=7 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="y" +char id=122 x=38 y=30 width=7 height=7 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 letter="z" +char id=123 x=69 y=0 width=5 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 letter="{" +char id=124 x=79 y=10 width=2 height=11 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 letter="|" +char id=125 x=69 y=34 width=4 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 letter="}" +char id=126 x=38 y=78 width=7 height=3 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 letter="~" +char id=8226 x=62 y=68 width=4 height=3 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 letter="•" +char id=169 x=0 y=23 width=10 height=9 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=4 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=32 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.atlas b/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.atlas new file mode 100644 index 0000000..07ce89b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.atlas @@ -0,0 +1,520 @@ + +tubular-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +bottom-bar + rotate: false + xy: 570, 519 + size: 1, 38 + split: 0, 0, 0, 37 + pad: 0, 0, 1, 0 + orig: 1, 38 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 612, 633 + size: 6, 19 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 6, 19 + offset: 0, 0 + index: -1 +button-dislike + rotate: false + xy: 598, 640 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +button-dislike-over + rotate: false + xy: 633, 661 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +button-dislike-pressed + rotate: false + xy: 654, 706 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +button-full-screen + rotate: false + xy: 100, 389 + size: 13, 16 + orig: 13, 16 + offset: 0, 0 + index: -1 +button-full-screen-over + rotate: false + xy: 200, 415 + size: 13, 16 + orig: 13, 16 + offset: 0, 0 + index: -1 +button-full-screen-pressed + rotate: false + xy: 228, 441 + size: 13, 16 + orig: 13, 16 + offset: 0, 0 + index: -1 +button-left + rotate: false + xy: 672, 720 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-left-over + rotate: false + xy: 717, 741 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-left-pressed + rotate: false + xy: 1, 317 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-like + rotate: false + xy: 17, 342 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +button-like-over + rotate: false + xy: 115, 393 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +button-like-pressed + rotate: false + xy: 295, 497 + size: 12, 12 + orig: 12, 12 + offset: 0, 0 + index: -1 +button-menu + rotate: false + xy: 570, 598 + size: 12, 10 + orig: 12, 10 + offset: 0, 0 + index: -1 +button-menu-pressed + rotate: false + xy: 598, 628 + size: 12, 10 + orig: 12, 10 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 570, 559 + size: 6, 19 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 6, 19 + offset: 0, 0 + index: -1 +button-pause + rotate: false + xy: 267, 467 + size: 10, 16 + orig: 10, 16 + offset: 0, 0 + index: -1 +button-pause-over + rotate: false + xy: 686, 720 + size: 10, 16 + orig: 10, 16 + offset: 0, 0 + index: -1 +button-pause-pressed + rotate: false + xy: 599, 610 + size: 10, 16 + orig: 10, 16 + offset: 0, 0 + index: -1 +button-play + rotate: false + xy: 585, 610 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-play-over + rotate: false + xy: 654, 688 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-play-pressed + rotate: false + xy: 668, 702 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-pressed + rotate: false + xy: 1, 260 + size: 6, 19 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 6, 19 + offset: 0, 0 + index: -1 +button-right + rotate: false + xy: 731, 741 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-right-over + rotate: false + xy: 1, 299 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-right-pressed + rotate: false + xy: 570, 580 + size: 12, 16 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-search + rotate: false + xy: 570, 654 + size: 43, 19 + orig: 43, 19 + offset: 0, 0 + index: -1 +button-search-over + rotate: false + xy: 654, 738 + size: 43, 19 + orig: 43, 19 + offset: 0, 0 + index: -1 +button-search-pressed + rotate: false + xy: 1, 356 + size: 43, 19 + orig: 43, 19 + offset: 0, 0 + index: -1 +button-settings + rotate: false + xy: 252, 467 + size: 13, 16 + orig: 13, 16 + offset: 0, 0 + index: -1 +button-settings-over + rotate: false + xy: 280, 493 + size: 13, 16 + orig: 13, 16 + offset: 0, 0 + index: -1 +button-settings-pressed + rotate: false + xy: 570, 610 + size: 13, 16 + orig: 13, 16 + offset: 0, 0 + index: -1 +button-sidebar + rotate: false + xy: 745, 741 + size: 12, 16 + split: 0, 0, 0, 0 + pad: 3, 3, 3, 3 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-sidebar-over + rotate: false + xy: 1, 281 + size: 12, 16 + split: 0, 0, 0, 0 + pad: 3, 3, 3, 3 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-sidebar-pressed + rotate: false + xy: 584, 592 + size: 12, 16 + split: 0, 0, 0, 0 + pad: 3, 3, 3, 3 + orig: 12, 16 + offset: 0, 0 + index: -1 +button-speaker + rotate: false + xy: 615, 657 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +button-speaker-over + rotate: false + xy: 654, 720 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +button-speaker-pressed + rotate: false + xy: 699, 741 + size: 16, 16 + orig: 16, 16 + offset: 0, 0 + index: -1 +button-text-menu + rotate: false + xy: 243, 445 + size: 7, 12 + split: 1, 1, 0, 2 + pad: 1, 1, 0, 3 + orig: 7, 12 + offset: 0, 0 + index: -1 +button-text-menu-pressed + rotate: false + xy: 252, 453 + size: 7, 12 + split: 1, 1, 0, 2 + pad: 1, 1, 0, 3 + orig: 7, 12 + offset: 0, 0 + index: -1 +checkbox-off + rotate: false + xy: 215, 420 + size: 11, 11 + orig: 11, 11 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 228, 428 + size: 11, 11 + orig: 11, 11 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 570, 675 + size: 82, 82 + orig: 82, 82 + offset: 0, 0 + index: -1 +list + rotate: false + xy: 31, 345 + size: 10, 9 + split: 1, 1, 1, 1 + orig: 10, 9 + offset: 0, 0 + index: -1 +logo + rotate: false + xy: 1, 407 + size: 197, 102 + orig: 197, 102 + offset: 0, 0 + index: -1 +logo small + rotate: false + xy: 1, 377 + size: 62, 28 + orig: 62, 28 + offset: 0, 0 + index: -1 +progress-bar-horizontal + rotate: false + xy: 62, 367 + size: 1, 8 + orig: 1, 8 + offset: 0, 0 + index: -1 +progress-bar-horizontal-knob + rotate: false + xy: 65, 369 + size: 1, 8 + orig: 1, 8 + offset: 0, 0 + index: -1 +progress-bar-vertical + rotate: false + xy: 615, 654 + size: 8, 1 + orig: 8, 1 + offset: 0, 0 + index: -1 +progress-bar-vertical-knob + rotate: false + xy: 699, 738 + size: 8, 1 + orig: 8, 1 + offset: 0, 0 + index: -1 +scroll-bar-horizontal + rotate: false + xy: 129, 393 + size: 6, 12 + orig: 6, 12 + offset: 0, 0 + index: -1 +scroll-bar-vertical + rotate: false + xy: 100, 381 + size: 12, 6 + orig: 12, 6 + offset: 0, 0 + index: -1 +scroll-bg + rotate: false + xy: 309, 505 + size: 3, 4 + split: 0, 1, 0, 0 + orig: 3, 4 + offset: 0, 0 + index: -1 +select-box + rotate: false + xy: 200, 433 + size: 26, 24 + split: 1, 15, 1, 14 + pad: 2, 16, 2, 2 + orig: 26, 24 + offset: 0, 0 + index: -1 +select-box-over + rotate: false + xy: 252, 485 + size: 26, 24 + split: 1, 15, 1, 14 + pad: 2, 16, 2, 2 + orig: 26, 24 + offset: 0, 0 + index: -1 +select-box-pressed + rotate: false + xy: 570, 628 + size: 26, 24 + split: 1, 15, 1, 14 + pad: 2, 16, 2, 2 + orig: 26, 24 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 200, 407 + size: 6, 6 + orig: 6, 6 + offset: 0, 0 + index: -1 +slider-volume-horizontal + rotate: false + xy: 15, 329 + size: 3, 4 + split: 1, 1, 1, 1 + pad: 0, 0, 0, 0 + orig: 3, 4 + offset: 0, 0 + index: -1 +slider-volume-knob + rotate: false + xy: 280, 485 + size: 6, 6 + orig: 6, 6 + offset: 0, 0 + index: -1 +slider-volume-vertical + rotate: false + xy: 647, 670 + size: 4, 3 + split: 1, 1, 1, 1 + pad: 0, 0, 0, 0 + orig: 4, 3 + offset: 0, 0 + index: -1 +super-click-bait + rotate: false + xy: 1, 511 + size: 567, 246 + orig: 567, 246 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 1, 335 + size: 14, 19 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 14, 19 + offset: 0, 0 + index: -1 +textfield-pressed + rotate: false + xy: 46, 356 + size: 14, 19 + split: 1, 1, 1, 1 + pad: 2, 2, 2, 2 + orig: 14, 19 + offset: 0, 0 + index: -1 +toolbar + rotate: false + xy: 17, 335 + size: 6, 5 + split: 0, 0, 0, 1 + pad: 1, 1, 0, 2 + orig: 6, 5 + offset: 0, 0 + index: -1 +tooltip + rotate: false + xy: 65, 379 + size: 33, 26 + split: 1, 1, 0, 5 + pad: 1, 1, 1, 6 + orig: 33, 26 + offset: 0, 0 + index: -1 +user + rotate: false + xy: 200, 459 + size: 50, 50 + orig: 50, 50 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 633, 658 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.json b/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.json new file mode 100644 index 0000000..d76e703 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.json @@ -0,0 +1,359 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + black: { + r: 0 + g: 0 + b: 0 + a: 1 + } + dark-gray: { + r: 0.6 + g: 0.6 + b: 0.6 + a: 1 + } + font-gray: { + r: 0.15333334 + g: 0.15333334 + b: 0.15333334 + a: 1 + } + highlight: { + r: 0 + g: 0.6431373 + b: 0.8666667 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + selection: { + name: white + color: { + r: 0 + g: 0.6431373 + b: 0.8666667 + a: 1 + } + } + gray: { + name: white + color: { + r: 0.7870588 + g: 0.7870588 + b: 0.7870588 + a: 1 + } + } + black: { + name: white + color: { + r: 0 + g: 0 + b: 0 + a: 1 + } + } + highlight: { + name: white + color: { + r: 0 + g: 0.6431373 + b: 0.8666667 + a: 1 + } + } + user-red: { + name: user + color: { + r: 1 + g: 0 + b: 0 + a: 1 + } + } + user-green: { + name: user + color: { + r: 0 + g: 1 + b: 0.13405561 + a: 1 + } + } + user-blue: { + name: user + color: { + r: 0 + g: 0.05099988 + b: 1 + a: 1 + } + } + user-yellow: { + name: user + color: { + r: 0.9828334 + g: 1 + b: 0 + a: 1 + } + } + user-violet: { + name: user + color: { + r: 1 + g: 0 + b: 0.8942218 + a: 1 + } + } +} +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } + toggle: { + up: button + down: button-pressed + over: button-over + checked: button-pressed + } + dislike: { + up: button-dislike + down: button-dislike-pressed + over: button-dislike-over + } + like: { + up: button-like + down: button-like-pressed + over: button-like-over + } + full-screen: { + up: button-full-screen + down: button-full-screen-pressed + over: button-full-screen-over + } + left: { + up: button-left + down: button-left-pressed + over: button-left-over + } + play: { + up: button-play + down: button-play-pressed + over: button-play-over + checked: button-pause + checkedOver: button-pause-over + } + right: { + up: button-right + down: button-right-pressed + over: button-right-over + } + menu: { + up: button-menu + down: button-menu-pressed + } + search: { + up: button-search + down: button-search-pressed + over: button-search-over + } + settings: { + up: button-settings + down: button-settings-pressed + over: button-settings-over + } + speaker: { + up: button-speaker + down: button-speaker-pressed + over: button-speaker-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox-off + font: font + fontColor: black + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: { + default: { + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.ImageTextButton$ImageTextButtonStyle: { + default: { + font: font + fontColor: black + up: button + down: button-pressed + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + fontColor: black + } + name: { + font: font + fontColor: highlight + } +} +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: { + font: font + fontColorSelected: white + fontColorUnselected: black + selection: selection + background: list + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progress-bar-horizontal + knobBefore: progress-bar-horizontal-knob + } + default-vertical: { + background: progress-bar-vertical + knobBefore: progress-bar-vertical-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + default: { + hScrollKnob: scroll-bar-horizontal + vScrollKnob: scroll-bar-vertical + } + bg: { + background: scroll-bg + hScrollKnob: scroll-bar-horizontal + vScrollKnob: scroll-bar-vertical + } +} +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: { + font: font + fontColor: black + background: select-box + scrollStyle: default + listStyle: default + backgroundOver: select-box-over + backgroundOpen: select-box-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + knobOver: slider-knob + knobDown: slider-knob + background: progress-bar-horizontal + knobBefore: progress-bar-horizontal-knob + } + default-vertical: { + knobOver: slider-knob + knobDown: slider-knob + background: progress-bar-vertical + knobBefore: progress-bar-vertical-knob + } + volume-horizontal: { + background: slider-volume-horizontal + knob: slider-volume-knob + } + volume-vertical: { + background: slider-volume-vertical + knob: slider-volume-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-horizontal: { + handle: gray + } + default-vertical: { + handle: gray + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + fontColor: font-gray + up: button + down: button-pressed + over: button-over + } + toggle: { + font: font + fontColor: font-gray + up: button + down: button-pressed + over: button-over + checked: button-pressed + } + sidebar: { + font: font + fontColor: dark-gray + downFontColor: dark-gray + overFontColor: white + checkedFontColor: white + checkedOverFontColor: white + up: button-sidebar + down: button-sidebar-over + over: button-sidebar-over + checked: button-sidebar-pressed + } + topbar: { + font: font + fontColor: dark-gray + downFontColor: black + overFontColor: dark-gray + checkedFontColor: black + checkedOverFontColor: black + up: button-text-menu + over: button-text-menu-pressed + checked: button-text-menu-pressed + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: font-gray + background: textfield + focusedBackground: textfield-pressed + cursor: black + selection: highlight + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: { + background: textfield + knob: button-full-screen + } +} +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: { + background: white + titleFont: font + titleFontColor: black + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.png b/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.png new file mode 100644 index 0000000..8accaea Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/tubular/skin/tubular-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/README.md b/src/main/resources/omni_power/gdx-skins/vhs/README.md new file mode 100644 index 0000000..93c183c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/README.md @@ -0,0 +1,22 @@ +# VHS UI + +``` +VHS UI Ver. 1 + +Created by Raymond "Raeleus" Buckley +Visit ray3k.wordpress.com for games, tutorials, and much more! + +VHS UI can be used under the CC BY license. +http://creativecommons.org/licenses/by/4.0/ +``` + +Features styles of some **Scene2D** widgets. A simple skin inspired by the good old VHS days. + +![VHS](preview.png) + +### About + +Created with [Skin Composer](https://github.com/raeleus/skin-composer) by [**Raeleus**](https://ray3k.wordpress.com/vhs-ui-skin-for-libgdx/). + +### License +[CC BY 4.0](http://creativecommons.org/licenses/by/4.0/). Give credit to [***Raymond "Raeleus" Buckley***](https://ray3k.wordpress.com/software/skin-composer-for-libgdx/). diff --git a/src/main/resources/omni_power/gdx-skins/vhs/preview.png b/src/main/resources/omni_power/gdx-skins/vhs/preview.png new file mode 100644 index 0000000..a3f1bae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/button-over.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/button-over.9.png new file mode 100644 index 0000000..2ef8a5f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/button-over.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/button-over.png new file mode 100644 index 0000000..4a5c854 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/button-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/button.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/button.9.png new file mode 100644 index 0000000..a27bccb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/button.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/button.png new file mode 100644 index 0000000..d4d98fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/button.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/checkbox-on.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/checkbox-on.png new file mode 100644 index 0000000..6fad458 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/checkbox-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/checkbox.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/checkbox.png new file mode 100644 index 0000000..5d3c007 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/checkbox.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/cursor.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/cursor.png new file mode 100644 index 0000000..d80f189 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/cursor.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/font-export.fnt b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-export.fnt new file mode 100644 index 0000000..a4e3116 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=36 base=36 scaleW=256 scaleH=256 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=177 y=64 width=4 height=28 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=122 y=232 width=16 height=8 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=21 y=222 width=20 height=26 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="#" +char id=36 x=63 y=54 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="$" +char id=37 x=105 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=147 y=58 width=20 height=32 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 letter="&" +char id=39 x=139 y=232 width=6 height=8 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=173 y=213 width=10 height=32 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=173 y=180 width=10 height=32 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=105 y=232 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="*" +char id=43 x=84 y=232 width=20 height=20 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="+" +char id=44 x=135 y=241 width=8 height=8 xoffset=0 yoffset=28 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=105 y=251 width=16 height=4 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=25 y=0 width=4 height=4 xoffset=0 yoffset=32 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=105 y=116 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=147 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="0" +char id=49 x=160 y=211 width=12 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=105 y=145 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="2" +char id=51 x=105 y=174 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="3" +char id=52 x=126 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="4" +char id=53 x=126 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="5" +char id=54 x=126 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="6" +char id=55 x=126 y=203 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="7" +char id=56 x=147 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=126 y=174 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="9" +char id=58 x=177 y=93 width=4 height=20 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=168 y=64 width=8 height=24 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=147 y=120 width=16 height=30 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="<" +char id=61 x=0 y=241 width=20 height=12 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="=" +char id=62 x=147 y=151 width=16 height=30 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter=">" +char id=63 x=105 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="?" +char id=64 x=63 y=228 width=20 height=24 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="@" +char id=65 x=105 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=126 y=145 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="B" +char id=67 x=126 y=116 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=126 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="D" +char id=69 x=84 y=145 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="E" +char id=70 x=63 y=170 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="F" +char id=71 x=63 y=112 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="G" +char id=72 x=105 y=203 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="H" +char id=73 x=160 y=182 width=12 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="I" +char id=74 x=63 y=83 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="J" +char id=75 x=42 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=42 y=141 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="L" +char id=77 x=105 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="M" +char id=78 x=0 y=95 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="N" +char id=79 x=0 y=66 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="O" +char id=80 x=42 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="P" +char id=81 x=0 y=37 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=84 y=203 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="R" +char id=83 x=84 y=174 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="S" +char id=84 x=21 y=28 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="T" +char id=85 x=84 y=116 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="U" +char id=86 x=84 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=84 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="W" +char id=88 x=84 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="X" +char id=89 x=84 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Y" +char id=90 x=63 y=199 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Z" +char id=91 x=147 y=215 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=63 y=141 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=147 y=182 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=42 y=245 width=20 height=10 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=0 y=0 width=24 height=4 xoffset=0 yoffset=34 xadvance=26 page=0 chnl=0 letter="_" +char id=96 x=21 y=249 width=10 height=6 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=63 y=29 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="a" +char id=98 x=63 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="b" +char id=99 x=42 y=222 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=42 y=193 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="d" +char id=101 x=42 y=170 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=147 y=91 width=16 height=28 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="f" +char id=103 x=42 y=116 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="g" +char id=104 x=42 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="h" +char id=105 x=164 y=153 width=12 height=26 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="i" +char id=106 x=168 y=0 width=12 height=30 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="j" +char id=107 x=42 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="k" +char id=108 x=177 y=114 width=4 height=28 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=21 y=199 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="m" +char id=110 x=21 y=176 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="n" +char id=111 x=21 y=153 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="o" +char id=112 x=21 y=128 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="p" +char id=113 x=21 y=103 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="q" +char id=114 x=21 y=80 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="r" +char id=115 x=21 y=57 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="s" +char id=116 x=164 y=124 width=12 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="t" +char id=117 x=21 y=5 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="u" +char id=118 x=0 y=218 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="v" +char id=119 x=0 y=195 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="w" +char id=120 x=0 y=172 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="x" +char id=121 x=0 y=147 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="y" +char id=122 x=0 y=124 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=168 y=31 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=177 y=143 width=4 height=32 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=164 y=91 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=0 y=28 width=20 height=8 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="~" +char id=8226 x=122 y=241 width=12 height=10 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 letter="•" +char id=169 x=0 y=5 width=20 height=22 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=96 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/font-export.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-export.png new file mode 100644 index 0000000..22b6050 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title-export.fnt new file mode 100644 index 0000000..8239623 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=63 base=63 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=260 y=358 width=8 height=48 xoffset=0 yoffset=15 xadvance=12 page=0 chnl=0 letter="!" +char id=34 x=108 y=487 width=29 height=14 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter=""" +char id=35 x=36 y=286 width=35 height=44 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="#" +char id=36 x=72 y=355 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="$" +char id=37 x=144 y=49 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="%" +char id=38 x=216 y=48 width=35 height=55 xoffset=0 yoffset=8 xadvance=39 page=0 chnl=0 letter="&" +char id=39 x=232 y=475 width=11 height=13 xoffset=0 yoffset=15 xadvance=15 page=0 chnl=0 letter="'" +char id=40 x=252 y=0 width=18 height=55 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="(" +char id=41 x=246 y=159 width=18 height=55 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter=")" +char id=42 x=144 y=468 width=29 height=31 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="*" +char id=43 x=144 y=335 width=35 height=34 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="+" +char id=44 x=196 y=485 width=14 height=14 xoffset=0 yoffset=49 xadvance=18 page=0 chnl=0 letter="," +char id=45 x=36 y=500 width=29 height=7 xoffset=0 yoffset=35 xadvance=33 page=0 chnl=0 letter="-" +char id=46 x=42 y=0 width=8 height=7 xoffset=0 yoffset=56 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=144 y=286 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="/" +char id=48 x=180 y=437 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="0" +char id=49 x=216 y=420 width=21 height=48 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="1" +char id=50 x=144 y=370 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="2" +char id=51 x=144 y=419 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="3" +char id=52 x=180 y=49 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="4" +char id=53 x=180 y=98 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="5" +char id=54 x=180 y=146 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="6" +char id=55 x=180 y=388 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="7" +char id=56 x=216 y=0 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="8" +char id=57 x=180 y=340 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="9" +char id=58 x=244 y=475 width=8 height=34 xoffset=0 yoffset=22 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=216 y=469 width=15 height=41 xoffset=0 yoffset=22 xadvance=19 page=0 chnl=0 letter=";" +char id=60 x=216 y=153 width=29 height=52 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=36 y=478 width=35 height=21 xoffset=0 yoffset=28 xadvance=39 page=0 chnl=0 letter="=" +char id=62 x=216 y=206 width=29 height=52 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter=">" +char id=63 x=144 y=147 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="?" +char id=64 x=144 y=196 width=35 height=40 xoffset=0 yoffset=19 xadvance=39 page=0 chnl=0 letter="@" +char id=65 x=144 y=98 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="A" +char id=66 x=180 y=291 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="B" +char id=67 x=180 y=243 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="C" +char id=68 x=180 y=194 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="D" +char id=69 x=108 y=389 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="E" +char id=70 x=108 y=49 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="F" +char id=71 x=72 y=452 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="G" +char id=72 x=180 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="H" +char id=73 x=216 y=371 width=21 height=48 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="I" +char id=74 x=72 y=404 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="J" +char id=75 x=36 y=429 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="K" +char id=76 x=72 y=91 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="L" +char id=77 x=144 y=237 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="M" +char id=78 x=0 y=158 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="N" +char id=79 x=0 y=110 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="O" +char id=80 x=36 y=380 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="P" +char id=81 x=0 y=61 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="Q" +char id=82 x=144 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="R" +char id=83 x=108 y=438 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="S" +char id=84 x=0 y=441 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="T" +char id=85 x=108 y=341 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="U" +char id=86 x=108 y=293 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="V" +char id=87 x=108 y=245 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="W" +char id=88 x=108 y=196 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="X" +char id=89 x=108 y=147 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="Y" +char id=90 x=108 y=98 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="Z" +char id=91 x=216 y=315 width=22 height=55 xoffset=0 yoffset=8 xadvance=26 page=0 chnl=0 letter="[" +char id=92 x=108 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="\" +char id=93 x=216 y=259 width=22 height=55 xoffset=0 yoffset=8 xadvance=26 page=0 chnl=0 letter="]" +char id=94 x=0 y=490 width=35 height=17 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="^" +char id=95 x=0 y=0 width=41 height=7 xoffset=0 yoffset=59 xadvance=45 page=0 chnl=0 letter="_" +char id=96 x=66 y=500 width=18 height=10 xoffset=0 yoffset=15 xadvance=22 page=0 chnl=0 letter="`" +char id=97 x=72 y=313 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="a" +char id=98 x=72 y=265 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="b" +char id=99 x=72 y=227 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="c" +char id=100 x=72 y=179 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="d" +char id=101 x=72 y=140 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="e" +char id=102 x=216 y=104 width=29 height=48 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="f" +char id=103 x=72 y=49 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="g" +char id=104 x=72 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="h" +char id=105 x=239 y=259 width=21 height=45 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="i" +char id=106 x=239 y=305 width=21 height=52 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 letter="j" +char id=107 x=36 y=331 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="k" +char id=108 x=260 y=407 width=7 height=48 xoffset=0 yoffset=15 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=36 y=247 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="m" +char id=110 x=36 y=208 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="n" +char id=111 x=36 y=170 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="o" +char id=112 x=36 y=128 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="p" +char id=113 x=36 y=86 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="q" +char id=114 x=36 y=47 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="r" +char id=115 x=36 y=8 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="s" +char id=116 x=238 y=426 width=21 height=48 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="t" +char id=117 x=0 y=403 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="u" +char id=118 x=0 y=365 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="v" +char id=119 x=0 y=327 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="w" +char id=120 x=0 y=288 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="x" +char id=121 x=0 y=246 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="y" +char id=122 x=0 y=207 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="z" +char id=123 x=246 y=104 width=21 height=54 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="{" +char id=124 x=260 y=456 width=7 height=55 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=238 y=371 width=21 height=54 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="}" +char id=126 x=0 y=46 width=35 height=14 xoffset=0 yoffset=32 xadvance=39 page=0 chnl=0 letter="~" +char id=8226 x=174 y=485 width=21 height=17 xoffset=0 yoffset=28 xadvance=25 page=0 chnl=0 letter="•" +char id=169 x=0 y=8 width=35 height=37 xoffset=0 yoffset=19 xadvance=39 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=168 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title-export.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title-export.png new file mode 100644 index 0000000..b8eef2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title-export.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title.png new file mode 100644 index 0000000..d60b7d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/font-title.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/font.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/font.png new file mode 100644 index 0000000..714f28e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/font.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-fastforward.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-fastforward.9.png new file mode 100644 index 0000000..c6fa01e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-fastforward.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-fastforward.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-fastforward.png new file mode 100644 index 0000000..16959a3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-fastforward.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-pause.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-pause.9.png new file mode 100644 index 0000000..6e0c8c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-pause.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-pause.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-pause.png new file mode 100644 index 0000000..aa801ed Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-pause.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-play.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-play.9.png new file mode 100644 index 0000000..b5a4e48 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-play.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-play.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-play.png new file mode 100644 index 0000000..e6b6da2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-play.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-reverse.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-reverse.9.png new file mode 100644 index 0000000..3d0900d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-reverse.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-reverse.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-reverse.png new file mode 100644 index 0000000..0970fc0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-reverse.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-stop.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-stop.9.png new file mode 100644 index 0000000..85990b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-stop.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/label-stop.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-stop.png new file mode 100644 index 0000000..a22cdb8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/label-stop.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar-knob.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar-knob.png new file mode 100644 index 0000000..8fa3284 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar.9.png new file mode 100644 index 0000000..23476ba Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar.png new file mode 100644 index 0000000..80c98d5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/progressbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/textfield.9.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/textfield.9.png new file mode 100644 index 0000000..6cc44f4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/raw/textfield.png b/src/main/resources/omni_power/gdx-skins/vhs/raw/textfield.png new file mode 100644 index 0000000..7c11404 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/raw/textfield.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vhs/skin/font-export.fnt b/src/main/resources/omni_power/gdx-skins/vhs/skin/font-export.fnt new file mode 100644 index 0000000..a4e3116 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/skin/font-export.fnt @@ -0,0 +1,104 @@ +info face="font-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=36 base=36 scaleW=256 scaleH=256 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-export.png" +chars count=98 +char id=33 x=177 y=64 width=4 height=28 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="!" +char id=34 x=122 y=232 width=16 height=8 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter=""" +char id=35 x=21 y=222 width=20 height=26 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="#" +char id=36 x=63 y=54 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="$" +char id=37 x=105 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="%" +char id=38 x=147 y=58 width=20 height=32 xoffset=0 yoffset=4 xadvance=22 page=0 chnl=0 letter="&" +char id=39 x=139 y=232 width=6 height=8 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 letter="'" +char id=40 x=173 y=213 width=10 height=32 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter="(" +char id=41 x=173 y=180 width=10 height=32 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 letter=")" +char id=42 x=105 y=232 width=16 height=18 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="*" +char id=43 x=84 y=232 width=20 height=20 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="+" +char id=44 x=135 y=241 width=8 height=8 xoffset=0 yoffset=28 xadvance=10 page=0 chnl=0 letter="," +char id=45 x=105 y=251 width=16 height=4 xoffset=0 yoffset=20 xadvance=18 page=0 chnl=0 letter="-" +char id=46 x=25 y=0 width=4 height=4 xoffset=0 yoffset=32 xadvance=6 page=0 chnl=0 letter="." +char id=47 x=105 y=116 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="/" +char id=48 x=147 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="0" +char id=49 x=160 y=211 width=12 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="1" +char id=50 x=105 y=145 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="2" +char id=51 x=105 y=174 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="3" +char id=52 x=126 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="4" +char id=53 x=126 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="5" +char id=54 x=126 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="6" +char id=55 x=126 y=203 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="7" +char id=56 x=147 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="8" +char id=57 x=126 y=174 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="9" +char id=58 x=177 y=93 width=4 height=20 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 letter=":" +char id=59 x=168 y=64 width=8 height=24 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 letter=";" +char id=60 x=147 y=120 width=16 height=30 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter="<" +char id=61 x=0 y=241 width=20 height=12 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 letter="=" +char id=62 x=147 y=151 width=16 height=30 xoffset=0 yoffset=6 xadvance=18 page=0 chnl=0 letter=">" +char id=63 x=105 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="?" +char id=64 x=63 y=228 width=20 height=24 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="@" +char id=65 x=105 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="A" +char id=66 x=126 y=145 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="B" +char id=67 x=126 y=116 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="C" +char id=68 x=126 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="D" +char id=69 x=84 y=145 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="E" +char id=70 x=63 y=170 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="F" +char id=71 x=63 y=112 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="G" +char id=72 x=105 y=203 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="H" +char id=73 x=160 y=182 width=12 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="I" +char id=74 x=63 y=83 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="J" +char id=75 x=42 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="K" +char id=76 x=42 y=141 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="L" +char id=77 x=105 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="M" +char id=78 x=0 y=95 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="N" +char id=79 x=0 y=66 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="O" +char id=80 x=42 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="P" +char id=81 x=0 y=37 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Q" +char id=82 x=84 y=203 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="R" +char id=83 x=84 y=174 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="S" +char id=84 x=21 y=28 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="T" +char id=85 x=84 y=116 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="U" +char id=86 x=84 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="V" +char id=87 x=84 y=58 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="W" +char id=88 x=84 y=29 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="X" +char id=89 x=84 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Y" +char id=90 x=63 y=199 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="Z" +char id=91 x=147 y=215 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="[" +char id=92 x=63 y=141 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="\" +char id=93 x=147 y=182 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="]" +char id=94 x=42 y=245 width=20 height=10 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="^" +char id=95 x=0 y=0 width=24 height=4 xoffset=0 yoffset=34 xadvance=26 page=0 chnl=0 letter="_" +char id=96 x=21 y=249 width=10 height=6 xoffset=0 yoffset=8 xadvance=12 page=0 chnl=0 letter="`" +char id=97 x=63 y=29 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="a" +char id=98 x=63 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="b" +char id=99 x=42 y=222 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="c" +char id=100 x=42 y=193 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="d" +char id=101 x=42 y=170 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="e" +char id=102 x=147 y=91 width=16 height=28 xoffset=0 yoffset=8 xadvance=18 page=0 chnl=0 letter="f" +char id=103 x=42 y=116 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="g" +char id=104 x=42 y=87 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="h" +char id=105 x=164 y=153 width=12 height=26 xoffset=0 yoffset=10 xadvance=14 page=0 chnl=0 letter="i" +char id=106 x=168 y=0 width=12 height=30 xoffset=0 yoffset=6 xadvance=14 page=0 chnl=0 letter="j" +char id=107 x=42 y=0 width=20 height=28 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="k" +char id=108 x=177 y=114 width=4 height=28 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 letter="l" +char id=109 x=21 y=199 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="m" +char id=110 x=21 y=176 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="n" +char id=111 x=21 y=153 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="o" +char id=112 x=21 y=128 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="p" +char id=113 x=21 y=103 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="q" +char id=114 x=21 y=80 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="r" +char id=115 x=21 y=57 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="s" +char id=116 x=164 y=124 width=12 height=28 xoffset=0 yoffset=8 xadvance=14 page=0 chnl=0 letter="t" +char id=117 x=21 y=5 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="u" +char id=118 x=0 y=218 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="v" +char id=119 x=0 y=195 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="w" +char id=120 x=0 y=172 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="x" +char id=121 x=0 y=147 width=20 height=24 xoffset=0 yoffset=12 xadvance=22 page=0 chnl=0 letter="y" +char id=122 x=0 y=124 width=20 height=22 xoffset=0 yoffset=14 xadvance=22 page=0 chnl=0 letter="z" +char id=123 x=168 y=31 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="{" +char id=124 x=177 y=143 width=4 height=32 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 letter="|" +char id=125 x=164 y=91 width=12 height=32 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 letter="}" +char id=126 x=0 y=28 width=20 height=8 xoffset=0 yoffset=18 xadvance=22 page=0 chnl=0 letter="~" +char id=8226 x=122 y=241 width=12 height=10 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 letter="•" +char id=169 x=0 y=5 width=20 height=22 xoffset=0 yoffset=10 xadvance=22 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=12 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=96 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/vhs/skin/font-title-export.fnt b/src/main/resources/omni_power/gdx-skins/vhs/skin/font-title-export.fnt new file mode 100644 index 0000000..8239623 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/skin/font-title-export.fnt @@ -0,0 +1,104 @@ +info face="font-title-export" size=32 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=1,1 +common lineHeight=63 base=63 scaleW=512 scaleH=512 pages=1 packed=0 alphaChnl=1 redChnl=0 greenChnl=0 blueChnl=0 +page id=0 file="font-title-export.png" +chars count=98 +char id=33 x=260 y=358 width=8 height=48 xoffset=0 yoffset=15 xadvance=12 page=0 chnl=0 letter="!" +char id=34 x=108 y=487 width=29 height=14 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter=""" +char id=35 x=36 y=286 width=35 height=44 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="#" +char id=36 x=72 y=355 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="$" +char id=37 x=144 y=49 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="%" +char id=38 x=216 y=48 width=35 height=55 xoffset=0 yoffset=8 xadvance=39 page=0 chnl=0 letter="&" +char id=39 x=232 y=475 width=11 height=13 xoffset=0 yoffset=15 xadvance=15 page=0 chnl=0 letter="'" +char id=40 x=252 y=0 width=18 height=55 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter="(" +char id=41 x=246 y=159 width=18 height=55 xoffset=0 yoffset=8 xadvance=22 page=0 chnl=0 letter=")" +char id=42 x=144 y=468 width=29 height=31 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="*" +char id=43 x=144 y=335 width=35 height=34 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="+" +char id=44 x=196 y=485 width=14 height=14 xoffset=0 yoffset=49 xadvance=18 page=0 chnl=0 letter="," +char id=45 x=36 y=500 width=29 height=7 xoffset=0 yoffset=35 xadvance=33 page=0 chnl=0 letter="-" +char id=46 x=42 y=0 width=8 height=7 xoffset=0 yoffset=56 xadvance=12 page=0 chnl=0 letter="." +char id=47 x=144 y=286 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="/" +char id=48 x=180 y=437 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="0" +char id=49 x=216 y=420 width=21 height=48 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="1" +char id=50 x=144 y=370 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="2" +char id=51 x=144 y=419 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="3" +char id=52 x=180 y=49 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="4" +char id=53 x=180 y=98 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="5" +char id=54 x=180 y=146 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="6" +char id=55 x=180 y=388 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="7" +char id=56 x=216 y=0 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="8" +char id=57 x=180 y=340 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="9" +char id=58 x=244 y=475 width=8 height=34 xoffset=0 yoffset=22 xadvance=12 page=0 chnl=0 letter=":" +char id=59 x=216 y=469 width=15 height=41 xoffset=0 yoffset=22 xadvance=19 page=0 chnl=0 letter=";" +char id=60 x=216 y=153 width=29 height=52 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter="<" +char id=61 x=36 y=478 width=35 height=21 xoffset=0 yoffset=28 xadvance=39 page=0 chnl=0 letter="=" +char id=62 x=216 y=206 width=29 height=52 xoffset=0 yoffset=11 xadvance=33 page=0 chnl=0 letter=">" +char id=63 x=144 y=147 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="?" +char id=64 x=144 y=196 width=35 height=40 xoffset=0 yoffset=19 xadvance=39 page=0 chnl=0 letter="@" +char id=65 x=144 y=98 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="A" +char id=66 x=180 y=291 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="B" +char id=67 x=180 y=243 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="C" +char id=68 x=180 y=194 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="D" +char id=69 x=108 y=389 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="E" +char id=70 x=108 y=49 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="F" +char id=71 x=72 y=452 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="G" +char id=72 x=180 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="H" +char id=73 x=216 y=371 width=21 height=48 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="I" +char id=74 x=72 y=404 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="J" +char id=75 x=36 y=429 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="K" +char id=76 x=72 y=91 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="L" +char id=77 x=144 y=237 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="M" +char id=78 x=0 y=158 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="N" +char id=79 x=0 y=110 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="O" +char id=80 x=36 y=380 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="P" +char id=81 x=0 y=61 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="Q" +char id=82 x=144 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="R" +char id=83 x=108 y=438 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="S" +char id=84 x=0 y=441 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="T" +char id=85 x=108 y=341 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="U" +char id=86 x=108 y=293 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="V" +char id=87 x=108 y=245 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="W" +char id=88 x=108 y=196 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="X" +char id=89 x=108 y=147 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="Y" +char id=90 x=108 y=98 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="Z" +char id=91 x=216 y=315 width=22 height=55 xoffset=0 yoffset=8 xadvance=26 page=0 chnl=0 letter="[" +char id=92 x=108 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="\" +char id=93 x=216 y=259 width=22 height=55 xoffset=0 yoffset=8 xadvance=26 page=0 chnl=0 letter="]" +char id=94 x=0 y=490 width=35 height=17 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="^" +char id=95 x=0 y=0 width=41 height=7 xoffset=0 yoffset=59 xadvance=45 page=0 chnl=0 letter="_" +char id=96 x=66 y=500 width=18 height=10 xoffset=0 yoffset=15 xadvance=22 page=0 chnl=0 letter="`" +char id=97 x=72 y=313 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="a" +char id=98 x=72 y=265 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="b" +char id=99 x=72 y=227 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="c" +char id=100 x=72 y=179 width=35 height=47 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="d" +char id=101 x=72 y=140 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="e" +char id=102 x=216 y=104 width=29 height=48 xoffset=0 yoffset=15 xadvance=33 page=0 chnl=0 letter="f" +char id=103 x=72 y=49 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="g" +char id=104 x=72 y=0 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="h" +char id=105 x=239 y=259 width=21 height=45 xoffset=0 yoffset=18 xadvance=25 page=0 chnl=0 letter="i" +char id=106 x=239 y=305 width=21 height=52 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 letter="j" +char id=107 x=36 y=331 width=35 height=48 xoffset=0 yoffset=15 xadvance=39 page=0 chnl=0 letter="k" +char id=108 x=260 y=407 width=7 height=48 xoffset=0 yoffset=15 xadvance=11 page=0 chnl=0 letter="l" +char id=109 x=36 y=247 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="m" +char id=110 x=36 y=208 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="n" +char id=111 x=36 y=170 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="o" +char id=112 x=36 y=128 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="p" +char id=113 x=36 y=86 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="q" +char id=114 x=36 y=47 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="r" +char id=115 x=36 y=8 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="s" +char id=116 x=238 y=426 width=21 height=48 xoffset=0 yoffset=15 xadvance=25 page=0 chnl=0 letter="t" +char id=117 x=0 y=403 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="u" +char id=118 x=0 y=365 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="v" +char id=119 x=0 y=327 width=35 height=37 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="w" +char id=120 x=0 y=288 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="x" +char id=121 x=0 y=246 width=35 height=41 xoffset=0 yoffset=22 xadvance=39 page=0 chnl=0 letter="y" +char id=122 x=0 y=207 width=35 height=38 xoffset=0 yoffset=25 xadvance=39 page=0 chnl=0 letter="z" +char id=123 x=246 y=104 width=21 height=54 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="{" +char id=124 x=260 y=456 width=7 height=55 xoffset=0 yoffset=8 xadvance=11 page=0 chnl=0 letter="|" +char id=125 x=238 y=371 width=21 height=54 xoffset=0 yoffset=8 xadvance=25 page=0 chnl=0 letter="}" +char id=126 x=0 y=46 width=35 height=14 xoffset=0 yoffset=32 xadvance=39 page=0 chnl=0 letter="~" +char id=8226 x=174 y=485 width=21 height=17 xoffset=0 yoffset=28 xadvance=25 page=0 chnl=0 letter="•" +char id=169 x=0 y=8 width=35 height=37 xoffset=0 yoffset=19 xadvance=39 page=0 chnl=0 letter="©" +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=21 page=0 chnl=0 letter=" " +char id=9 x=0 y=0 width=0 height=0 xoffset=0 yoffset=0 xadvance=168 page=0 chnl=0 letter=" " + +kernings count=0 diff --git a/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.atlas b/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.atlas new file mode 100644 index 0000000..81d5a84 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.atlas @@ -0,0 +1,129 @@ + +vhs-ui.png +size: 1024,1024 +format: RGBA8888 +filter: Linear,Linear +repeat: none +button + rotate: false + xy: 259, 289 + size: 34, 31 + split: 16, 0, 0, 0 + pad: 25, 8, 0, 0 + orig: 34, 31 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 322, 350 + size: 34, 31 + split: 16, 0, 0, 0 + pad: 25, 8, 0, 0 + orig: 34, 31 + offset: 0, 0 + index: -1 +checkbox + rotate: false + xy: 515, 750 + size: 31, 23 + orig: 31, 23 + offset: 0, 0 + index: -1 +checkbox-on + rotate: false + xy: 578, 811 + size: 31, 23 + orig: 31, 23 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 1, 1 + size: 2, 2 + orig: 2, 2 + offset: 0, 0 + index: -1 +font-export + rotate: false + xy: 1, 125 + size: 256, 256 + orig: 256, 256 + offset: 0, 0 + index: -1 +font-title-export + rotate: false + xy: 1, 383 + size: 512, 512 + orig: 512, 512 + offset: 0, 0 + index: -1 +label-fastforward + rotate: false + xy: 515, 836 + size: 61, 59 + split: 0, 55, 0, 0 + pad: 0, 60, 0, 0 + orig: 61, 59 + offset: 0, 0 + index: -1 +label-pause + rotate: false + xy: 1, 64 + size: 61, 59 + split: 0, 55, 0, 0 + pad: 0, 60, 0, 0 + orig: 61, 59 + offset: 0, 0 + index: -1 +label-play + rotate: false + xy: 578, 836 + size: 61, 59 + split: 0, 55, 0, 0 + pad: 0, 60, 0, 0 + orig: 61, 59 + offset: 0, 0 + index: -1 +label-reverse + rotate: false + xy: 259, 322 + size: 61, 59 + split: 0, 55, 0, 0 + pad: 0, 60, 0, 0 + orig: 61, 59 + offset: 0, 0 + index: -1 +label-stop + rotate: false + xy: 515, 775 + size: 61, 59 + split: 0, 57, 0, 0 + pad: 0, 60, 0, 0 + orig: 61, 59 + offset: 0, 0 + index: -1 +progressbar + rotate: false + xy: 1, 5 + size: 51, 57 + split: 5, 5, 5, 5 + pad: 5, 5, 0, 0 + orig: 51, 57 + offset: 0, 0 + index: -1 +progressbar-knob + rotate: false + xy: 641, 838 + size: 8, 57 + orig: 8, 57 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 64, 90 + size: 42, 33 + split: 0, 0, 0, 4 + pad: 3, 4, 0, 6 + orig: 42, 33 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.json b/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.json new file mode 100644 index 0000000..74f6e0e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.json @@ -0,0 +1,106 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + font: { + file: font-export.fnt + } + title: { + file: font-title-export.fnt + } +} +com.badlogic.gdx.graphics.Color: { + selection: { + r: 0 + g: 0.94850016 + b: 1 + a: 1 + } + white: { + r: 1 + g: 1 + b: 1 + a: 1 + } +} +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + selection: { + name: cursor + color: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: { + checkboxOn: checkbox-on + checkboxOff: checkbox + font: font + } +} +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: { + font: font + } + play: { + font: title + background: label-play + } + pause: { + font: title + background: label-pause + } + stop: { + font: title + background: label-stop + } + fast-forward: { + font: title + background: label-fastforward + } + reverse: { + font: title + background: label-reverse + } + title: { + font: title + } +} +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: { + background: progressbar + knob: progressbar-knob + } + default-vertical: { + background: progressbar + knob: progressbar-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: { + background: progressbar + knob: progressbar-knob + } + default-vertical: { + background: progressbar + knob: progressbar-knob + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: { + font: font + up: button + over: button-over + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: { + font: font + fontColor: white + background: textfield + cursor: cursor + selection: selection + } +} +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: { + label: default + } +} +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.png b/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.png new file mode 100644 index 0000000..e4ea911 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vhs/skin/vhs-ui.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/README.md b/src/main/resources/omni_power/gdx-skins/vis/README.md new file mode 100644 index 0000000..c35a046 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/README.md @@ -0,0 +1,17 @@ +# VisUI skin + +This is the default flat design skin provided by the [VisUI](https://github.com/kotcrab/vis-editor/wiki/VisUI) library. It supports every widget style from regular **Scene2D**, as well as custom **VisUI** actor styles. Comes in **two** sizes. Raw assets include *TTF* and *SVG* files. + +If you really want to use this skin without **VisUI** extension, delete the additional styles of widgets absent in vanilla **Scene2D** and it should *just work*. + +![VisUI](preview.png) + +The latest skin version is always shipped with the [VisUI library](https://github.com/kotcrab/vis-editor/tree/master/ui). You can find raw assets [here](https://github.com/kotcrab/vis-editor/tree/master/ui/assets-raw). This repository might not be up-to-date. + +### Extras + +Additional, modified skins for **VisUI** are available in the [`vis-ui-contrib` repository](https://github.com/kotcrab/vis-ui-contrib). + +### License + +Seems to be the same as the one used by [related libraries](https://github.com/kotcrab/vis-editor), which basically matches **LibGDX** license. diff --git a/src/main/resources/omni_power/gdx-skins/vis/preview.png b/src/main/resources/omni_power/gdx-skins/vis/preview.png new file mode 100644 index 0000000..1809adf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/preview.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/VisOpenSans.ttf b/src/main/resources/omni_power/gdx-skins/vis/raw/VisOpenSans.ttf new file mode 100644 index 0000000..ae962a4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/VisOpenSans.ttf differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/VisOpenSansKerned.ttf b/src/main/resources/omni_power/gdx-skins/vis/raw/VisOpenSansKerned.ttf new file mode 100644 index 0000000..973e555 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/VisOpenSansKerned.ttf differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/icon-folder-new.svg b/src/main/resources/omni_power/gdx-skins/vis/raw/icon-folder-new.svg new file mode 100644 index 0000000..686bb49 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/icon-folder-new.svg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:234d5b53747ef6adbdec73b2d7b7e6f5baa3aabfc3bb5059b13eb2a02d9495c6 +size 5847 diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/uiskin.usl b/src/main/resources/omni_power/gdx-skins/vis/raw/uiskin.usl new file mode 100644 index 0000000..17b343b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/uiskin.usl @@ -0,0 +1,4 @@ +//The VisUI skin is kept inside USL project for easier including and extending in other files, this is just a dummy +//file to tell USL to use default VisUI skin. + +include diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/vis-ui.svg b/src/main/resources/omni_power/gdx-skins/vis/raw/vis-ui.svg new file mode 100644 index 0000000..593d1a7 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/vis-ui.svg @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b9daa3c0909e31c62266f87e0e33b166742b42a25d845a4b2c6d9390d48bc0f5 +size 252505 diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1-fonts/default.hiero b/src/main/resources/omni_power/gdx-skins/vis/raw/x1-fonts/default.hiero new file mode 100644 index 0000000..da31a4e --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/x1-fonts/default.hiero @@ -0,0 +1,23 @@ +font.name=Vis Open Sans +font.size=15 +font.bold=false +font.italic=false + +font2.file=E:\Git\VisSceneEditor\UI\assets-raw\VisOpenSansKerned.ttf +font2.use=true + +pad.top=0 +pad.right=0 +pad.bottom=0 +pad.left=0 +pad.advance.x=0 +pad.advance.y=0 + +glyph.native.rendering=false +glyph.page.width=256 +glyph.page.height=256 +glyph.text=ABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n1234567890•\n"!`?¿'.,;:()[]{}<>|/@\^$-%+=#_&~*\nñÑąćęłńóśźżĄĆĘŁŃÓŚŹŻÄäÖöÜüß\náéíóúàèìòùÁÉÍÓÚÀÈÌÒÙ\nАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ\nабвгдеёжзийклмнопрстуфхцчшщъыьэюя\nΑΆΒΓΔΕΈΖΗΉΘΙΊΚΛΜΝΞΟΌΠΡΣΤΥΎΦΧΨΩΏ·\nαάβγδεέζηήθιίκλμνξοόπρστυύφχψωώ\nϊΐςϋΰ⌘⌥⇧ + +effect.class=com.badlogic.gdx.tools.hiero.unicodefont.effects.ColorEffect +effect.Color=ffffff + diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1-fonts/font-small.hiero b/src/main/resources/omni_power/gdx-skins/vis/raw/x1-fonts/font-small.hiero new file mode 100644 index 0000000..c8d4208 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/x1-fonts/font-small.hiero @@ -0,0 +1,28 @@ +font.name=Vis Open Sans +font.size=12 +font.bold=false +font.italic=false + +font2.file=E:\Git\VisSceneEditor\UI\assets-raw\VisOpenSansKerned.ttf +font2.use=true + +pad.top=1 +pad.right=0 +pad.bottom=0 +pad.left=0 +pad.advance.x=0 +pad.advance.y=0 + +glyph.native.rendering=false +glyph.page.width=256 +glyph.page.height=128 +glyph.text=ABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n1234567890•\n"!`?¿'.,;:()[]{}<>|/@\^$-%+=#_&~*\nñÑąćęłńóśźżĄĆĘŁŃÓŚŹŻÄäÖöÜüß\náéíóúàèìòùÁÉÍÓÚÀÈÌÒÙ\nАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ\nабвгдеёжзийклмнопрстуфхцчшщъыьэюя\nΑΆΒΓΔΕΈΖΗΉΘΙΊΚΛΜΝΞΟΌΠΡΣΤΥΎΦΧΨΩΏ·\nαάβγδεέζηήθιίκλμνξοόπρστυύφχψωώ\nϊΐςϋΰ⌘⌥⇧ + +effect.class=com.badlogic.gdx.tools.hiero.unicodefont.effects.ColorEffect +effect.Color=ffffff + +effect.class=com.badlogic.gdx.tools.hiero.unicodefont.effects.OutlineEffect +effect.Color=ffffff +effect.Width=0.3 +effect.Join=2 + diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-circle-error.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-circle-error.png new file mode 100644 index 0000000..d3fd944 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-circle-error.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-circle.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-circle.png new file mode 100644 index 0000000..86ed43d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-circle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-dark-blue.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-dark-blue.9.png new file mode 100644 index 0000000..33e4885 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-dark-blue.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-error.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-error.9.png new file mode 100644 index 0000000..051d500 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border-error.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border.9.png new file mode 100644 index 0000000..7e9a849 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/border.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue-down.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue-down.9.png new file mode 100644 index 0000000..fe035b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue-over.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue-over.9.png new file mode 100644 index 0000000..4c9dd3c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue.9.png new file mode 100644 index 0000000..4437d76 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-blue.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-down.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-down.9.png new file mode 100644 index 0000000..4437d76 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-over.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-over.9.png new file mode 100644 index 0000000..b520952 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-red.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-red.9.png new file mode 100644 index 0000000..f957170 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-red.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-window-bg.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-window-bg.9.png new file mode 100644 index 0000000..8e6bdf3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button-window-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button.9.png new file mode 100644 index 0000000..444fd82 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-down-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-down-on.png new file mode 100644 index 0000000..02975fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-down-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-down.png new file mode 100644 index 0000000..ad07c4c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-off.png new file mode 100644 index 0000000..9ca53e1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-on-disabled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-on-disabled.png new file mode 100644 index 0000000..6993b60 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-on-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-on.png new file mode 100644 index 0000000..10a16cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-over-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-over-off.png new file mode 100644 index 0000000..fbeb1f2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-over-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-over-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-over-on.png new file mode 100644 index 0000000..9ec936b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/check-over-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-bar-selector.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-bar-selector.png new file mode 100644 index 0000000..efc1238 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-bar-selector.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-cross.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-cross.png new file mode 100644 index 0000000..6d97640 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-cross.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-selector-horizontal.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-selector-horizontal.png new file mode 100644 index 0000000..ad355cf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-selector-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-selector-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-selector-vertical.png new file mode 100644 index 0000000..1617b25 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/color-picker-selector-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/cursor.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/cursor.9.png new file mode 100644 index 0000000..aeed93c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-pane-noborder.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-pane-noborder.9.png new file mode 100644 index 0000000..d2c3e66 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-pane-noborder.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-pane.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-pane.9.png new file mode 100644 index 0000000..6b3f904 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-select-selection.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-select-selection.9.png new file mode 100644 index 0000000..1d24aa7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-select-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-select.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-select.9.png new file mode 100644 index 0000000..eb6e851 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default-select.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default.png new file mode 100644 index 0000000..23d7337 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/default.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/font-small.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/font-small.png new file mode 100644 index 0000000..099012e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/font-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/grey.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/grey.png new file mode 100644 index 0000000..1443387 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/grey.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-arrow-left.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-arrow-left.png new file mode 100644 index 0000000..c0ba569 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-arrow-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-arrow-right.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-arrow-right.png new file mode 100644 index 0000000..716db01 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-arrow-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-close.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-close.png new file mode 100644 index 0000000..2687a41 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-drive.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-drive.png new file mode 100644 index 0000000..af41d3a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-drive.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-audio.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-audio.png new file mode 100644 index 0000000..ffb3199 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-audio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-image.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-image.png new file mode 100644 index 0000000..0ead27f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-image.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-pdf.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-pdf.png new file mode 100644 index 0000000..9985f11 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-pdf.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-text.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-text.png new file mode 100644 index 0000000..02053c7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-file-text.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-new.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-new.png new file mode 100644 index 0000000..2ec050e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-new.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-parent.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-parent.png new file mode 100644 index 0000000..083850d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-parent.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-star.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-star.png new file mode 100644 index 0000000..8ebda46 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder-star.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder.png new file mode 100644 index 0000000..5053005 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-folder.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-trash.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-trash.png new file mode 100644 index 0000000..a863c79 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/icon-trash.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/list-selection.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/list-selection.png new file mode 100644 index 0000000..bd73d87 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/list-selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/menu-bg.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/menu-bg.png new file mode 100644 index 0000000..1443387 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/menu-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/pack.json b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/pack.json new file mode 100644 index 0000000..92820d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/pack.json @@ -0,0 +1,7 @@ +{ + duplicatePadding: false, + paddingX: 1, + paddingY: 1, + stripWhitespaceX: true, + stripWhitespaceY: true +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/padded-list-selection.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/padded-list-selection.9.png new file mode 100644 index 0000000..3ac4734 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/padded-list-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-filled-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-filled-vertical.png new file mode 100644 index 0000000..b7423f1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-filled-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-filled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-filled.png new file mode 100644 index 0000000..289fa46 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-filled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-vertical.png new file mode 100644 index 0000000..03d57ee Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar.png new file mode 100644 index 0000000..e79ba63 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/progressbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-down-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-down-on.png new file mode 100644 index 0000000..638b830 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-down-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-down.png new file mode 100644 index 0000000..5f1d1a7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-off.png new file mode 100644 index 0000000..5ae729d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-on-disabled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-on-disabled.png new file mode 100644 index 0000000..19f1a4a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-on-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-on.png new file mode 100644 index 0000000..e4b33db Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-over-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-over-off.png new file mode 100644 index 0000000..5e18ddc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-over-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-over-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-over-on.png new file mode 100644 index 0000000..65d005e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/radio-over-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-horizontal.9.png new file mode 100644 index 0000000..dcd648f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-knob-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-knob-horizontal.9.png new file mode 100644 index 0000000..12235bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-knob-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-knob-vertical.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-knob-vertical.9.png new file mode 100644 index 0000000..28859fd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll-knob-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll.9.png new file mode 100644 index 0000000..dc53b25 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-box-list-bg.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-box-list-bg.png new file mode 100644 index 0000000..66a8b95 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-box-list-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-down.png new file mode 100644 index 0000000..08ab966 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-up.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-up.png new file mode 100644 index 0000000..e9ee328 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/select-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/selection.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/selection.png new file mode 100644 index 0000000..d82b0bb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/separator-menu.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/separator-menu.png new file mode 100644 index 0000000..73a51fe Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/separator-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/separator.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/separator.png new file mode 100644 index 0000000..449057e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/separator.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-disabled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-disabled.png new file mode 100644 index 0000000..0051523 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-down.png new file mode 100644 index 0000000..019dad1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-over.png new file mode 100644 index 0000000..fc99072 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob.png new file mode 100644 index 0000000..297fee4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-vertical.png new file mode 100644 index 0000000..15215af Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider.png new file mode 100644 index 0000000..b34acc3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-over.png new file mode 100644 index 0000000..3436d8c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-vertical-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-vertical-over.png new file mode 100644 index 0000000..c39ce36 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-vertical-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-vertical.png new file mode 100644 index 0000000..0b5cd80 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane.png new file mode 100644 index 0000000..ebf9ca6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/splitpane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/sub-menu.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/sub-menu.png new file mode 100644 index 0000000..4d7b493 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/sub-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/textfield-over.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/textfield-over.9.png new file mode 100644 index 0000000..2b992bd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/textfield-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/textfield.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/textfield.9.png new file mode 100644 index 0000000..f9b1df1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tooltip-bg.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tooltip-bg.9.png new file mode 100644 index 0000000..9cd6756 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tooltip-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/touchpad-knob.png new file mode 100644 index 0000000..0a0c980 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-minus.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-minus.png new file mode 100644 index 0000000..c19ecfb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-over.png new file mode 100644 index 0000000..a3ec9cd Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-plus.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-plus.png new file mode 100644 index 0000000..e41bd8a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-selection.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-selection.9.png new file mode 100644 index 0000000..f1c6755 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/tree-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/vis-blue.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/vis-blue.png new file mode 100644 index 0000000..ef51bde Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/vis-blue.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/vis-red.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/vis-red.png new file mode 100644 index 0000000..e4663d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/vis-red.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/white.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/white.png new file mode 100644 index 0000000..5c94704 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-bg.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-bg.png new file mode 100644 index 0000000..cd316d1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-noborder.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-noborder.9.png new file mode 100644 index 0000000..c83d7be Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-noborder.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-resizable.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-resizable.9.png new file mode 100644 index 0000000..e47a2fb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window-resizable.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window.9.png new file mode 100644 index 0000000..554808d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x1/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2-fonts/default.hiero b/src/main/resources/omni_power/gdx-skins/vis/raw/x2-fonts/default.hiero new file mode 100644 index 0000000..c44c485 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/x2-fonts/default.hiero @@ -0,0 +1,23 @@ +font.name=Vis Open Sans +font.size=30 +font.bold=false +font.italic=false + +font2.file=E:\Git\VisSceneEditor\UI\assets-raw\VisOpenSans.ttf +font2.use=true + +pad.top=0 +pad.right=0 +pad.bottom=0 +pad.left=0 +pad.advance.x=0 +pad.advance.y=0 + +glyph.native.rendering=false +glyph.page.width=512 +glyph.page.height=256 +glyph.text=ABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n1234567890•\n"!`?¿'.,;:()[]{}<>|/@\^$-%+=#_&~*\nñÑąćęłńóśźżĄĆĘŁŃÓŚŹŻÄäÖöÜüß\náéíóúàèìòùÁÉÍÓÚÀÈÌÒÙ\nАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ\nабвгдеёжзийклмнопрстуфхцчшщъыьэюя\nΑΆΒΓΔΕΈΖΗΉΘΙΊΚΛΜΝΞΟΌΠΡΣΤΥΎΦΧΨΩΏ·\nαάβγδεέζηήθιίκλμνξοόπρστυύφχψωώ\nϊΐςϋΰ⌘⌥⇧ + +effect.class=com.badlogic.gdx.tools.hiero.unicodefont.effects.ColorEffect +effect.Color=ffffff + diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2-fonts/font-small.hiero b/src/main/resources/omni_power/gdx-skins/vis/raw/x2-fonts/font-small.hiero new file mode 100644 index 0000000..cec594b --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/x2-fonts/font-small.hiero @@ -0,0 +1,23 @@ +font.name=Vis Open Sans +font.size=24 +font.bold=false +font.italic=false + +font2.file=E:\Git\VisSceneEditor\UI\assets-raw\VisOpenSansKerned.ttf +font2.use=true + +pad.top=1 +pad.right=0 +pad.bottom=0 +pad.left=0 +pad.advance.x=0 +pad.advance.y=0 + +glyph.native.rendering=false +glyph.page.width=512 +glyph.page.height=256 +glyph.text=ABCDEFGHIJKLMNOPQRSTUVWXYZ\nabcdefghijklmnopqrstuvwxyz\n1234567890•\n"!`?¿'.,;:()[]{}<>|/@\^$-%+=#_&~*\nñÑąćęłńóśźżĄĆĘŁŃÓŚŹŻÄäÖöÜüß\náéíóúàèìòùÁÉÍÓÚÀÈÌÒÙ\nАБВГДЕЁЖЗИЙКЛМНОПРСТУФХЦЧШЩЪЫЬЭЮЯ\nабвгдеёжзийклмнопрстуфхцчшщъыьэюя\nΑΆΒΓΔΕΈΖΗΉΘΙΊΚΛΜΝΞΟΌΠΡΣΤΥΎΦΧΨΩΏ·\nαάβγδεέζηήθιίκλμνξοόπρστυύφχψωώ\nϊΐςϋΰ⌘⌥⇧ + +effect.class=com.badlogic.gdx.tools.hiero.unicodefont.effects.ColorEffect +effect.Color=ffffff + diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-circle-error.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-circle-error.png new file mode 100644 index 0000000..9d9f83d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-circle-error.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-circle.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-circle.png new file mode 100644 index 0000000..3f58771 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-circle.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-dark-blue.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-dark-blue.9.png new file mode 100644 index 0000000..56353a2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-dark-blue.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-error.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-error.9.png new file mode 100644 index 0000000..7c8568b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border-error.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border.9.png new file mode 100644 index 0000000..5ee617c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/border.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue-down.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue-down.9.png new file mode 100644 index 0000000..b2faa60 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue-over.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue-over.9.png new file mode 100644 index 0000000..d40a60c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue.9.png new file mode 100644 index 0000000..b1bc686 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-blue.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-down.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-down.9.png new file mode 100644 index 0000000..b1bc686 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-down.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-over.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-over.9.png new file mode 100644 index 0000000..be77292 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-red.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-red.9.png new file mode 100644 index 0000000..c646845 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-red.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-window-bg.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-window-bg.9.png new file mode 100644 index 0000000..1e489ec Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button-window-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button.9.png new file mode 100644 index 0000000..b06dd1e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/button.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-down-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-down-on.png new file mode 100644 index 0000000..8499382 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-down-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-down.png new file mode 100644 index 0000000..a2e780b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-off.png new file mode 100644 index 0000000..73a2177 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-on-disabled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-on-disabled.png new file mode 100644 index 0000000..818a4c0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-on-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-on.png new file mode 100644 index 0000000..8cd93d7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-over-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-over-off.png new file mode 100644 index 0000000..adf255e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-over-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-over-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-over-on.png new file mode 100644 index 0000000..4fca420 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/check-over-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-bar-selector.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-bar-selector.png new file mode 100644 index 0000000..3fb211e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-bar-selector.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-cross.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-cross.png new file mode 100644 index 0000000..d1d7091 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-cross.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-selector-horizontal.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-selector-horizontal.png new file mode 100644 index 0000000..056f7a0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-selector-horizontal.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-selector-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-selector-vertical.png new file mode 100644 index 0000000..deff5fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/color-picker-selector-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/cursor.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/cursor.9.png new file mode 100644 index 0000000..683e9ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/cursor.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-pane-no-border.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-pane-no-border.9.png new file mode 100644 index 0000000..b3cac6e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-pane-no-border.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-pane.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-pane.9.png new file mode 100644 index 0000000..20e388e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-pane.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-select-selection.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-select-selection.9.png new file mode 100644 index 0000000..1a2e641 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-select-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-select.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-select.9.png new file mode 100644 index 0000000..da916cb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default-select.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default.png new file mode 100644 index 0000000..e23ec37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/default.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/font-small.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/font-small.png new file mode 100644 index 0000000..18fef36 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/font-small.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/grey.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/grey.png new file mode 100644 index 0000000..1443387 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/grey.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-arrow-left.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-arrow-left.png new file mode 100644 index 0000000..06e8d39 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-arrow-left.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-arrow-right.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-arrow-right.png new file mode 100644 index 0000000..d9760ca Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-arrow-right.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-close.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-close.png new file mode 100644 index 0000000..5cda3e7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-close.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-drive.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-drive.png new file mode 100644 index 0000000..b6e3d8b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-drive.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-audio.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-audio.png new file mode 100644 index 0000000..67e1fe7 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-audio.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-image.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-image.png new file mode 100644 index 0000000..30ff13e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-image.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-pdf.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-pdf.png new file mode 100644 index 0000000..5be1828 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-pdf.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-text.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-text.png new file mode 100644 index 0000000..f7d9d17 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-file-text.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-new.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-new.png new file mode 100644 index 0000000..608ccfa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-new.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-parent.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-parent.png new file mode 100644 index 0000000..5924335 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-parent.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-star.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-star.png new file mode 100644 index 0000000..93f98ae Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder-star.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder.png new file mode 100644 index 0000000..cdf411b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-folder.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-trash.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-trash.png new file mode 100644 index 0000000..bfffd79 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/icon-trash.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/list-selection.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/list-selection.png new file mode 100644 index 0000000..aebaff8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/list-selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/menu-bg.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/menu-bg.png new file mode 100644 index 0000000..52daed2 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/menu-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/pack.json b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/pack.json new file mode 100644 index 0000000..92820d8 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/pack.json @@ -0,0 +1,7 @@ +{ + duplicatePadding: false, + paddingX: 1, + paddingY: 1, + stripWhitespaceX: true, + stripWhitespaceY: true +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/padded-list-selection.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/padded-list-selection.9.png new file mode 100644 index 0000000..8238fda Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/padded-list-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-filled-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-filled-vertical.png new file mode 100644 index 0000000..7a4cac4 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-filled-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-filled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-filled.png new file mode 100644 index 0000000..761a2cc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-filled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-vertical.png new file mode 100644 index 0000000..0e5b667 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar.png new file mode 100644 index 0000000..5c43673 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/progressbar.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-down-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-down-on.png new file mode 100644 index 0000000..3263390 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-down-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-down.png new file mode 100644 index 0000000..0dedd0f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-off.png new file mode 100644 index 0000000..0f1e8e0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-on-disabled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-on-disabled.png new file mode 100644 index 0000000..374c201 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-on-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-on.png new file mode 100644 index 0000000..09afb5e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-over-off.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-over-off.png new file mode 100644 index 0000000..59382a5 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-over-off.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-over-on.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-over-on.png new file mode 100644 index 0000000..c4f370a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/radio-over-on.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-horizontal.9.png new file mode 100644 index 0000000..26378b6 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-knob-horizontal.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-knob-horizontal.9.png new file mode 100644 index 0000000..26b0e10 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-knob-horizontal.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-knob-vertical.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-knob-vertical.9.png new file mode 100644 index 0000000..09565a1 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll-knob-vertical.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll.9.png new file mode 100644 index 0000000..5db7f10 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/scroll.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-box-list-bg.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-box-list-bg.png new file mode 100644 index 0000000..a252a37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-box-list-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-down.png new file mode 100644 index 0000000..d862bfc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-up.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-up.png new file mode 100644 index 0000000..834b546 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/select-up.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/selection.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/selection.png new file mode 100644 index 0000000..a36773a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/selection.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/separator-menu.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/separator-menu.png new file mode 100644 index 0000000..8f2c97a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/separator-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/separator.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/separator.png new file mode 100644 index 0000000..89fa7a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/separator.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-disabled.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-disabled.png new file mode 100644 index 0000000..56eec5a Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-disabled.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-down.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-down.png new file mode 100644 index 0000000..9e68972 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-down.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-over.png new file mode 100644 index 0000000..ce9d3fc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob.png new file mode 100644 index 0000000..9a4ce5f Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-vertical.png new file mode 100644 index 0000000..5a39e44 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider.png new file mode 100644 index 0000000..87bb78c Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/slider.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-over.png new file mode 100644 index 0000000..4e5dcdb Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-vertical-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-vertical-over.png new file mode 100644 index 0000000..d98c26b Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-vertical-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-vertical.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-vertical.png new file mode 100644 index 0000000..22c40fa Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane-vertical.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane.png new file mode 100644 index 0000000..b48c369 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/splitpane.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/sub-menu.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/sub-menu.png new file mode 100644 index 0000000..9296be3 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/sub-menu.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/textfield-over.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/textfield-over.9.png new file mode 100644 index 0000000..24c46ef Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/textfield-over.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/textfield.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/textfield.9.png new file mode 100644 index 0000000..62e0ae9 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/textfield.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tooltip-bg.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tooltip-bg.9.png new file mode 100644 index 0000000..f56bcaf Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tooltip-bg.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/touchpad-knob.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/touchpad-knob.png new file mode 100644 index 0000000..6b2af2e Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/touchpad-knob.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-minus.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-minus.png new file mode 100644 index 0000000..257dabc Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-minus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-over.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-over.png new file mode 100644 index 0000000..89fa7a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-over.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-plus.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-plus.png new file mode 100644 index 0000000..1be135d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-plus.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-selection.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-selection.9.png new file mode 100644 index 0000000..4177e3d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/tree-selection.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/vis-blue.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/vis-blue.png new file mode 100644 index 0000000..ef51bde Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/vis-blue.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/vis-red.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/vis-red.png new file mode 100644 index 0000000..e4663d0 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/vis-red.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/white.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/white.png new file mode 100644 index 0000000..1ee9496 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/white.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-bg.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-bg.png new file mode 100644 index 0000000..a252a37 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-bg.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-noborder.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-noborder.9.png new file mode 100644 index 0000000..a90251d Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-noborder.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-resizable.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-resizable.9.png new file mode 100644 index 0000000..6f7ee23 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window-resizable.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window.9.png b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window.9.png new file mode 100644 index 0000000..9da1680 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/raw/x2/window.9.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x1/default.fnt b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/default.fnt new file mode 100644 index 0000000..503ec35 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/default.fnt @@ -0,0 +1,877 @@ +info face="Vis Open Sans" size=15 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=21 base=16 scaleW=256 scaleH=256 pages=1 packed=0 +page id=0 file="default.png" +chars count=279 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=16 xadvance=4 page=0 chnl=0 +char id=968 x=0 y=0 width=11 height=18 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=942 x=11 y=0 width=8 height=18 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=1092 x=19 y=0 width=12 height=18 xoffset=0 yoffset=3 xadvance=11 page=0 chnl=0 +char id=124 x=31 y=0 width=3 height=18 xoffset=3 yoffset=3 xadvance=8 page=0 chnl=0 +char id=958 x=34 y=0 width=8 height=17 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=950 x=42 y=0 width=8 height=17 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=946 x=50 y=0 width=9 height=17 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1065 x=59 y=0 width=16 height=16 xoffset=1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1062 x=75 y=0 width=11 height=16 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1049 x=86 y=0 width=10 height=16 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=1044 x=96 y=0 width=11 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=217 x=107 y=0 width=10 height=16 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=210 x=117 y=0 width=13 height=16 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=204 x=130 y=0 width=4 height=16 xoffset=0 yoffset=1 xadvance=4 page=0 chnl=0 +char id=200 x=134 y=0 width=8 height=16 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=192 x=142 y=0 width=11 height=16 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=218 x=153 y=0 width=10 height=16 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=205 x=163 y=0 width=4 height=16 xoffset=1 yoffset=1 xadvance=4 page=0 chnl=0 +char id=201 x=167 y=0 width=8 height=16 xoffset=1 yoffset=1 xadvance=8 page=0 chnl=0 +char id=193 x=175 y=0 width=11 height=16 xoffset=0 yoffset=1 xadvance=10 page=0 chnl=0 +char id=377 x=186 y=0 width=10 height=16 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=346 x=196 y=0 width=9 height=16 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 +char id=211 x=205 y=0 width=13 height=16 xoffset=0 yoffset=1 xadvance=12 page=0 chnl=0 +char id=323 x=218 y=0 width=10 height=16 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=280 x=228 y=0 width=8 height=16 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=262 x=236 y=0 width=10 height=16 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=260 x=0 y=18 width=11 height=16 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=209 x=11 y=18 width=10 height=16 xoffset=1 yoffset=1 xadvance=11 page=0 chnl=0 +char id=106 x=21 y=18 width=5 height=16 xoffset=-1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=74 x=26 y=18 width=7 height=16 xoffset=-2 yoffset=4 xadvance=4 page=0 chnl=0 +char id=379 x=33 y=18 width=10 height=15 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=93 x=43 y=18 width=5 height=15 xoffset=0 yoffset=4 xadvance=5 page=0 chnl=0 +char id=91 x=48 y=18 width=5 height=15 xoffset=1 yoffset=4 xadvance=5 page=0 chnl=0 +char id=41 x=53 y=18 width=5 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=40 x=58 y=18 width=5 height=15 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=81 x=63 y=18 width=13 height=15 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=944 x=76 y=18 width=9 height=14 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=912 x=85 y=18 width=6 height=14 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=974 x=91 y=18 width=13 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=967 x=104 y=18 width=10 height=14 xoffset=-1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=966 x=114 y=18 width=12 height=14 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=973 x=126 y=18 width=9 height=14 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=961 x=135 y=18 width=9 height=14 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=972 x=144 y=18 width=10 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=956 x=154 y=18 width=8 height=14 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=943 x=162 y=18 width=5 height=14 xoffset=1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=952 x=167 y=18 width=10 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=951 x=177 y=18 width=8 height=14 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=941 x=185 y=18 width=8 height=14 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=948 x=193 y=18 width=10 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=947 x=203 y=18 width=9 height=14 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=940 x=212 y=18 width=10 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=911 x=222 y=18 width=14 height=14 xoffset=-1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=910 x=236 y=18 width=12 height=14 xoffset=-1 yoffset=3 xadvance=10 page=0 chnl=0 +char id=908 x=0 y=34 width=15 height=14 xoffset=-1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=906 x=15 y=34 width=6 height=14 xoffset=-1 yoffset=3 xadvance=5 page=0 chnl=0 +char id=905 x=21 y=34 width=13 height=14 xoffset=-1 yoffset=3 xadvance=12 page=0 chnl=0 +char id=904 x=34 y=34 width=11 height=14 xoffset=-1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=902 x=45 y=34 width=11 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +char id=1091 x=56 y=34 width=9 height=14 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1088 x=65 y=34 width=9 height=14 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1073 x=74 y=34 width=10 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=1025 x=84 y=34 width=8 height=14 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=220 x=92 y=34 width=10 height=14 xoffset=1 yoffset=3 xadvance=11 page=0 chnl=0 +char id=214 x=102 y=34 width=13 height=14 xoffset=0 yoffset=3 xadvance=12 page=0 chnl=0 +char id=196 x=115 y=34 width=11 height=14 xoffset=0 yoffset=3 xadvance=10 page=0 chnl=0 +char id=322 x=126 y=34 width=6 height=14 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=36 x=132 y=34 width=8 height=14 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=64 x=140 y=34 width=14 height=14 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=125 x=154 y=34 width=7 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=123 x=161 y=34 width=7 height=14 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=121 x=168 y=34 width=9 height=14 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=113 x=177 y=34 width=9 height=14 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=112 x=186 y=34 width=9 height=14 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=108 x=195 y=34 width=3 height=14 xoffset=1 yoffset=3 xadvance=4 page=0 chnl=0 +char id=107 x=198 y=34 width=8 height=14 xoffset=1 yoffset=3 xadvance=8 page=0 chnl=0 +char id=104 x=206 y=34 width=8 height=14 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=103 x=214 y=34 width=9 height=14 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=102 x=223 y=34 width=7 height=14 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=100 x=230 y=34 width=9 height=14 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=98 x=239 y=34 width=9 height=14 xoffset=1 yoffset=3 xadvance=9 page=0 chnl=0 +char id=8679 x=0 y=48 width=9 height=13 xoffset=2 yoffset=4 xadvance=13 page=0 chnl=0 +char id=8984 x=9 y=48 width=14 height=13 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=962 x=23 y=48 width=8 height=13 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=955 x=31 y=48 width=11 height=13 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=936 x=42 y=48 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=935 x=55 y=48 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=934 x=65 y=48 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=933 x=78 y=48 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=932 x=87 y=48 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=931 x=96 y=48 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=929 x=106 y=48 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=928 x=115 y=48 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=927 x=125 y=48 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=926 x=138 y=48 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=925 x=147 y=48 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=924 x=157 y=48 width=13 height=13 xoffset=1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=923 x=170 y=48 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=922 x=180 y=48 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=921 x=189 y=48 width=3 height=13 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=920 x=192 y=48 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=919 x=205 y=48 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=918 x=215 y=48 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=917 x=225 y=48 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=916 x=233 y=48 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=915 x=243 y=48 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=914 x=0 y=61 width=10 height=13 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=913 x=10 y=61 width=11 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1097 x=21 y=61 width=13 height=13 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=1094 x=34 y=61 width=9 height=13 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1081 x=43 y=61 width=9 height=13 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1076 x=52 y=61 width=10 height=13 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1071 x=62 y=61 width=10 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1070 x=72 y=61 width=16 height=13 xoffset=1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=1069 x=88 y=61 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1068 x=98 y=61 width=10 height=13 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1067 x=108 y=61 width=12 height=13 xoffset=1 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1066 x=120 y=61 width=11 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1064 x=131 y=61 width=14 height=13 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1063 x=145 y=61 width=9 height=13 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1061 x=154 y=61 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1060 x=164 y=61 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1059 x=177 y=61 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1058 x=187 y=61 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1057 x=196 y=61 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1056 x=206 y=61 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1055 x=215 y=61 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1054 x=225 y=61 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=1053 x=238 y=61 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1052 x=0 y=74 width=13 height=13 xoffset=1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=1051 x=13 y=74 width=11 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1050 x=24 y=74 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1048 x=33 y=74 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=1047 x=43 y=74 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1046 x=53 y=74 width=14 height=13 xoffset=0 yoffset=4 xadvance=13 page=0 chnl=0 +char id=1045 x=67 y=74 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1043 x=75 y=74 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=1042 x=83 y=74 width=10 height=13 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=1041 x=93 y=74 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=1040 x=102 y=74 width=11 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=249 x=113 y=74 width=8 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=242 x=121 y=74 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=236 x=131 y=74 width=4 height=13 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=232 x=135 y=74 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=224 x=144 y=74 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=250 x=152 y=74 width=8 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=237 x=160 y=74 width=4 height=13 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=233 x=164 y=74 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=225 x=173 y=74 width=8 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=223 x=181 y=74 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=321 x=190 y=74 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=378 x=199 y=74 width=8 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=347 x=207 y=74 width=8 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=243 x=215 y=74 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=324 x=225 y=74 width=8 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=281 x=233 y=74 width=9 height=13 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=263 x=242 y=74 width=8 height=13 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=261 x=0 y=87 width=9 height=13 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=241 x=9 y=87 width=8 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=127 x=17 y=87 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=38 x=26 y=87 width=12 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=35 x=38 y=87 width=11 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=37 x=49 y=87 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=92 x=62 y=87 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=47 x=69 y=87 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=63 x=76 y=87 width=7 height=13 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=33 x=83 y=87 width=3 height=13 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=48 x=86 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=56 x=96 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=55 x=106 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=54 x=116 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=53 x=126 y=87 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=52 x=135 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=51 x=145 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=49 x=155 y=87 width=6 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=90 x=161 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=89 x=171 y=87 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=88 x=180 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=87 x=190 y=87 width=15 height=13 xoffset=0 yoffset=4 xadvance=14 page=0 chnl=0 +char id=86 x=205 y=87 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=85 x=215 y=87 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=84 x=225 y=87 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=83 x=234 y=87 width=9 height=13 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=82 x=243 y=87 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=80 x=0 y=100 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=79 x=9 y=100 width=13 height=13 xoffset=0 yoffset=4 xadvance=12 page=0 chnl=0 +char id=78 x=22 y=100 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=77 x=32 y=100 width=13 height=13 xoffset=1 yoffset=4 xadvance=14 page=0 chnl=0 +char id=76 x=45 y=100 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=75 x=53 y=100 width=9 height=13 xoffset=1 yoffset=4 xadvance=9 page=0 chnl=0 +char id=73 x=62 y=100 width=3 height=13 xoffset=1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=72 x=65 y=100 width=10 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=71 x=75 y=100 width=11 height=13 xoffset=0 yoffset=4 xadvance=11 page=0 chnl=0 +char id=70 x=86 y=100 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=69 x=94 y=100 width=8 height=13 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=68 x=102 y=100 width=11 height=13 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=67 x=113 y=100 width=10 height=13 xoffset=0 yoffset=4 xadvance=9 page=0 chnl=0 +char id=66 x=123 y=100 width=10 height=13 xoffset=1 yoffset=4 xadvance=10 page=0 chnl=0 +char id=65 x=133 y=100 width=11 height=13 xoffset=0 yoffset=4 xadvance=10 page=0 chnl=0 +char id=937 x=144 y=100 width=13 height=12 xoffset=0 yoffset=5 xadvance=12 page=0 chnl=0 +char id=380 x=157 y=100 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=191 x=165 y=100 width=7 height=12 xoffset=0 yoffset=8 xadvance=6 page=0 chnl=0 +char id=57 x=172 y=100 width=10 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=50 x=182 y=100 width=10 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=116 x=192 y=100 width=6 height=12 xoffset=0 yoffset=5 xadvance=5 page=0 chnl=0 +char id=105 x=198 y=100 width=3 height=12 xoffset=1 yoffset=5 xadvance=4 page=0 chnl=0 +char id=971 x=201 y=100 width=9 height=11 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0 +char id=970 x=210 y=100 width=6 height=11 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=1105 x=216 y=100 width=9 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=252 x=225 y=100 width=8 height=11 xoffset=1 yoffset=6 xadvance=9 page=0 chnl=0 +char id=246 x=233 y=100 width=10 height=11 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=228 x=243 y=100 width=8 height=11 xoffset=0 yoffset=6 xadvance=8 page=0 chnl=0 +char id=59 x=251 y=100 width=4 height=11 xoffset=0 yoffset=8 xadvance=4 page=0 chnl=0 +char id=8997 x=0 y=113 width=17 height=10 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=969 x=17 y=113 width=13 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=965 x=30 y=113 width=9 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=964 x=39 y=113 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=963 x=47 y=113 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=960 x=57 y=113 width=11 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=959 x=68 y=113 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=957 x=78 y=113 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=954 x=87 y=113 width=8 height=10 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=953 x=95 y=113 width=5 height=10 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=949 x=100 y=113 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=945 x=108 y=113 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1103 x=118 y=113 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1102 x=126 y=113 width=12 height=10 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1101 x=138 y=113 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1100 x=146 y=113 width=9 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1099 x=155 y=113 width=11 height=10 xoffset=1 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1098 x=166 y=113 width=11 height=10 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1096 x=177 y=113 width=12 height=10 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=1095 x=189 y=113 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1093 x=197 y=113 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1090 x=206 y=113 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1089 x=214 y=113 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1087 x=222 y=113 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1086 x=230 y=113 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1085 x=240 y=113 width=9 height=10 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1084 x=0 y=123 width=10 height=10 xoffset=1 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1083 x=10 y=123 width=9 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1082 x=19 y=123 width=8 height=10 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1080 x=27 y=123 width=9 height=10 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=1079 x=36 y=123 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=1078 x=44 y=123 width=12 height=10 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=1077 x=56 y=123 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=1075 x=65 y=123 width=6 height=10 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=1074 x=71 y=123 width=9 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=1072 x=80 y=123 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=43 x=88 y=123 width=9 height=10 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=122 x=97 y=123 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=120 x=105 y=123 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=119 x=114 y=123 width=13 height=10 xoffset=0 yoffset=7 xadvance=12 page=0 chnl=0 +char id=118 x=127 y=123 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=117 x=136 y=123 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=114 x=144 y=123 width=6 height=10 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=111 x=150 y=123 width=10 height=10 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=110 x=160 y=123 width=8 height=10 xoffset=1 yoffset=7 xadvance=9 page=0 chnl=0 +char id=109 x=168 y=123 width=13 height=10 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=101 x=181 y=123 width=9 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=99 x=190 y=123 width=8 height=10 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=97 x=198 y=123 width=8 height=10 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=42 x=206 y=123 width=9 height=9 xoffset=0 yoffset=3 xadvance=8 page=0 chnl=0 +char id=94 x=215 y=123 width=9 height=9 xoffset=0 yoffset=4 xadvance=8 page=0 chnl=0 +char id=58 x=224 y=123 width=3 height=9 xoffset=1 yoffset=8 xadvance=4 page=0 chnl=0 +char id=115 x=227 y=123 width=8 height=9 xoffset=0 yoffset=8 xadvance=7 page=0 chnl=0 +char id=62 x=235 y=123 width=10 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=60 x=245 y=123 width=10 height=8 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=61 x=0 y=133 width=10 height=6 xoffset=0 yoffset=8 xadvance=9 page=0 chnl=0 +char id=44 x=10 y=133 width=4 height=6 xoffset=0 yoffset=13 xadvance=4 page=0 chnl=0 +char id=39 x=14 y=133 width=4 height=6 xoffset=0 yoffset=4 xadvance=3 page=0 chnl=0 +char id=34 x=18 y=133 width=7 height=6 xoffset=0 yoffset=4 xadvance=6 page=0 chnl=0 +char id=8226 x=25 y=133 width=5 height=5 xoffset=1 yoffset=9 xadvance=6 page=0 chnl=0 +char id=45 x=30 y=133 width=6 height=4 xoffset=0 yoffset=10 xadvance=5 page=0 chnl=0 +char id=96 x=36 y=133 width=4 height=4 xoffset=3 yoffset=4 xadvance=9 page=0 chnl=0 +char id=903 x=40 y=133 width=3 height=3 xoffset=1 yoffset=10 xadvance=4 page=0 chnl=0 +char id=126 x=43 y=133 width=10 height=3 xoffset=0 yoffset=10 xadvance=9 page=0 chnl=0 +char id=95 x=53 y=133 width=10 height=3 xoffset=-1 yoffset=16 xadvance=7 page=0 chnl=0 +char id=46 x=63 y=133 width=3 height=3 xoffset=1 yoffset=14 xadvance=4 page=0 chnl=0 +kernings count=592 +kerning first=943 second=39 amount=-1 +kerning first=39 second=246 amount=-1 +kerning first=34 second=1076 amount=-1 +kerning first=44 second=67 amount=-1 +kerning first=44 second=71 amount=-1 +kerning first=46 second=81 amount=-1 +kerning first=65 second=87 amount=-1 +kerning first=46 second=84 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=77 second=105 amount=-1 +kerning first=84 second=112 amount=-1 +kerning first=39 second=113 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=89 second=115 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=40 second=74 amount=1 +kerning first=46 second=210 amount=-1 +kerning first=1066 second=1066 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=34 second=225 amount=-1 +kerning first=77 second=236 amount=-1 +kerning first=77 second=237 amount=-1 +kerning first=84 second=249 amount=-1 +kerning first=84 second=250 amount=-1 +kerning first=89 second=260 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=44 second=262 amount=-1 +kerning first=34 second=263 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=1058 second=1105 amount=-1 +kerning first=39 second=916 amount=-1 +kerning first=1060 second=44 amount=-1 +kerning first=1058 second=1060 amount=-1 +kerning first=77 second=281 amount=-2 +kerning first=910 second=902 amount=-1 +kerning first=34 second=913 amount=-1 +kerning first=44 second=920 amount=-1 +kerning first=34 second=923 amount=-1 +kerning first=44 second=927 amount=-1 +kerning first=45 second=932 amount=-1 +kerning first=46 second=933 amount=-1 +kerning first=44 second=934 amount=-1 +kerning first=34 second=940 amount=-1 +kerning first=910 second=941 amount=-1 +kerning first=915 second=942 amount=-1 +kerning first=915 second=943 amount=-1 +kerning first=915 second=944 amount=-1 +kerning first=932 second=953 amount=-1 +kerning first=915 second=949 amount=-1 +kerning first=915 second=954 amount=-1 +kerning first=915 second=956 amount=-1 +kerning first=932 second=961 amount=-1 +kerning first=34 second=962 amount=-1 +kerning first=915 second=965 amount=-1 +kerning first=34 second=966 amount=-1 +kerning first=915 second=968 amount=-1 +kerning first=915 second=969 amount=-1 +kerning first=915 second=971 amount=-1 +kerning first=932 second=973 amount=-1 +kerning first=915 second=974 amount=-1 +kerning first=46 second=1054 amount=-1 +kerning first=44 second=1057 amount=-1 +kerning first=46 second=1063 amount=-1 +kerning first=932 second=966 amount=-1 +kerning first=1058 second=1080 amount=-1 +kerning first=1043 second=1081 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=39 second=225 amount=-1 +kerning first=44 second=1095 amount=-1 +kerning first=46 second=1098 amount=-1 +kerning first=929 second=46 amount=-2 +kerning first=39 second=196 amount=-1 +kerning first=84 second=109 amount=-1 +kerning first=65 second=74 amount=2 +kerning first=932 second=923 amount=-1 +kerning first=1100 second=39 amount=-1 +kerning first=1058 second=1089 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=321 second=34 amount=-1 +kerning first=1043 second=1094 amount=-1 +kerning first=1043 second=1060 amount=-1 +kerning first=932 second=45 amount=-1 +kerning first=915 second=913 amount=-1 +kerning first=34 second=97 amount=-1 +kerning first=932 second=969 amount=-1 +kerning first=193 second=74 amount=2 +kerning first=1058 second=1102 amount=-1 +kerning first=1056 second=1051 amount=-1 +kerning first=260 second=34 amount=-1 +kerning first=119 second=34 amount=1 +kerning first=953 second=39 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=1058 second=1044 amount=-1 +kerning first=34 second=232 amount=-1 +kerning first=34 second=228 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=927 second=44 amount=-1 +kerning first=913 second=932 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=39 second=228 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=1058 second=1076 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=1058 second=45 amount=-1 +kerning first=933 second=940 amount=-1 +kerning first=947 second=46 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=46 second=211 amount=-1 +kerning first=915 second=973 amount=-1 +kerning first=44 second=79 amount=-1 +kerning first=932 second=956 amount=-1 +kerning first=65 second=84 amount=-1 +kerning first=916 second=932 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=77 second=233 amount=-2 +kerning first=932 second=913 amount=-1 +kerning first=1090 second=46 amount=-1 +kerning first=1058 second=1099 amount=-1 +kerning first=932 second=902 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=192 second=84 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=46 second=1057 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=933 second=945 amount=-1 +kerning first=45 second=1066 amount=-1 +kerning first=1042 second=44 amount=-1 +kerning first=46 second=1090 amount=-1 +kerning first=933 second=941 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=46 second=927 amount=-1 +kerning first=46 second=71 amount=-1 +kerning first=1040 second=1058 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=65 second=39 amount=-1 +kerning first=44 second=1060 amount=-1 +kerning first=916 second=936 amount=-1 +kerning first=913 second=34 amount=-1 +kerning first=1043 second=1084 amount=-1 +kerning first=192 second=39 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=34 second=281 amount=-1 +kerning first=929 second=902 amount=-1 +kerning first=34 second=972 amount=-1 +kerning first=39 second=261 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=932 second=963 amount=-1 +kerning first=910 second=945 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=34 second=1089 amount=-1 +kerning first=70 second=44 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=76 second=39 amount=-1 +kerning first=39 second=962 amount=-1 +kerning first=34 second=1092 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=46 second=920 amount=-1 +kerning first=932 second=940 amount=-1 +kerning first=932 second=944 amount=-1 +kerning first=927 second=46 amount=-1 +kerning first=932 second=934 amount=-1 +kerning first=1059 second=46 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=34 second=1044 amount=-1 +kerning first=932 second=959 amount=-1 +kerning first=192 second=87 amount=-1 +kerning first=1043 second=1091 amount=-1 +kerning first=916 second=34 amount=-1 +kerning first=953 second=34 amount=-1 +kerning first=34 second=196 amount=-1 +kerning first=934 second=44 amount=-1 +kerning first=44 second=1058 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=1100 second=1090 amount=-1 +kerning first=34 second=242 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=46 second=1060 amount=-1 +kerning first=201 second=74 amount=1 +kerning first=1075 second=44 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=936 second=46 amount=-1 +kerning first=1054 second=46 amount=-1 +kerning first=84 second=99 amount=-1 +kerning first=34 second=1040 amount=-1 +kerning first=932 second=46 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=1066 second=34 amount=-1 +kerning first=193 second=84 amount=-1 +kerning first=84 second=196 amount=-1 +kerning first=1098 second=39 amount=-1 +kerning first=933 second=44 amount=-1 +kerning first=39 second=101 amount=-1 +kerning first=913 second=933 amount=-1 +kerning first=39 second=1092 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=920 second=46 amount=-1 +kerning first=957 second=46 amount=-1 +kerning first=39 second=111 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=915 second=45 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=1056 second=1044 amount=-1 +kerning first=39 second=193 amount=-1 +kerning first=947 second=44 amount=-1 +kerning first=910 second=44 amount=-1 +kerning first=34 second=100 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=84 second=193 amount=-1 +kerning first=915 second=953 amount=-1 +kerning first=955 second=39 amount=-1 +kerning first=932 second=962 amount=-1 +kerning first=80 second=44 amount=-2 +kerning first=913 second=936 amount=-1 +kerning first=1043 second=1040 amount=-1 +kerning first=915 second=966 amount=-1 +kerning first=39 second=263 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=44 second=936 amount=-1 +kerning first=1058 second=1098 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=908 second=46 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=932 second=916 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=910 second=949 amount=-1 +kerning first=39 second=242 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=193 second=39 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=39 second=972 amount=-1 +kerning first=44 second=211 amount=-1 +kerning first=920 second=44 amount=-1 +kerning first=39 second=224 amount=-1 +kerning first=34 second=963 amount=-1 +kerning first=1100 second=1095 amount=-1 +kerning first=1043 second=1077 amount=-1 +kerning first=1058 second=1083 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=933 second=902 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=932 second=954 amount=-1 +kerning first=44 second=81 amount=-1 +kerning first=934 second=932 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=902 second=39 amount=-1 +kerning first=39 second=1076 amount=-1 +kerning first=114 second=34 amount=1 +kerning first=84 second=100 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=915 second=945 amount=-1 +kerning first=1068 second=39 amount=-1 +kerning first=916 second=933 amount=-1 +kerning first=39 second=1040 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=915 second=951 amount=-1 +kerning first=936 second=902 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=1058 second=1074 amount=-1 +kerning first=1042 second=46 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=932 second=968 amount=-1 +kerning first=260 second=89 amount=-1 +kerning first=39 second=232 amount=-1 +kerning first=34 second=1105 amount=-1 +kerning first=1058 second=1092 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=84 second=260 amount=-1 +kerning first=39 second=97 amount=-1 +kerning first=192 second=74 amount=2 +kerning first=46 second=1095 amount=-1 +kerning first=34 second=916 amount=-1 +kerning first=933 second=966 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=914 second=46 amount=-1 +kerning first=91 second=74 amount=1 +kerning first=196 second=74 amount=2 +kerning first=1058 second=1090 amount=-1 +kerning first=321 second=39 amount=-1 +kerning first=1075 second=46 amount=-1 +kerning first=1058 second=1075 amount=-1 +kerning first=955 second=34 amount=-1 +kerning first=121 second=39 amount=1 +kerning first=39 second=65 amount=-1 +kerning first=1054 second=44 amount=-1 +kerning first=936 second=44 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=44 second=89 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=1056 second=46 amount=-2 +kerning first=34 second=101 amount=-1 +kerning first=933 second=972 amount=-1 +kerning first=929 second=913 amount=-1 +kerning first=1043 second=44 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=46 second=214 amount=-1 +kerning first=1058 second=1082 amount=-1 +kerning first=915 second=961 amount=-1 +kerning first=910 second=46 amount=-1 +kerning first=34 second=260 amount=-1 +kerning first=1043 second=1100 amount=-1 +kerning first=69 second=74 amount=1 +kerning first=923 second=39 amount=-1 +kerning first=118 second=39 amount=1 +kerning first=87 second=193 amount=-1 +kerning first=34 second=1083 amount=-1 +kerning first=39 second=1077 amount=-1 +kerning first=915 second=941 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=34 second=261 amount=-1 +kerning first=89 second=65 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=46 second=1058 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=915 second=959 amount=-1 +kerning first=260 second=87 amount=-1 +kerning first=1058 second=1097 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=39 second=902 amount=-1 +kerning first=39 second=963 amount=-1 +kerning first=932 second=974 amount=-1 +kerning first=1043 second=1086 amount=-1 +kerning first=916 second=39 amount=-1 +kerning first=1058 second=1087 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=84 second=192 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=902 second=933 amount=-1 +kerning first=933 second=913 amount=-1 +kerning first=1066 second=1058 amount=-1 +kerning first=932 second=945 amount=-1 +kerning first=34 second=224 amount=-1 +kerning first=934 second=46 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=70 second=46 amount=-1 +kerning first=39 second=1083 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=1056 second=44 amount=-2 +kerning first=39 second=233 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=929 second=916 amount=-1 +kerning first=44 second=1063 amount=-1 +kerning first=46 second=89 amount=-1 +kerning first=902 second=936 amount=-1 +kerning first=1040 second=1063 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=910 second=972 amount=-1 +kerning first=932 second=971 amount=-1 +kerning first=1098 second=1095 amount=-1 +kerning first=950 second=45 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=1091 second=46 amount=-1 +kerning first=65 second=34 amount=-1 +kerning first=943 second=34 amount=-1 +kerning first=76 second=34 amount=-1 +kerning first=915 second=962 amount=-1 +kerning first=910 second=913 amount=-1 +kerning first=1058 second=1094 amount=-1 +kerning first=908 second=44 amount=-1 +kerning first=1058 second=1100 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=1043 second=45 amount=-1 +kerning first=910 second=940 amount=-1 +kerning first=910 second=966 amount=-1 +kerning first=45 second=1058 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=1043 second=1099 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=1058 second=1081 amount=-1 +kerning first=39 second=1086 amount=-1 +kerning first=913 second=39 amount=-1 +kerning first=915 second=916 amount=-1 +kerning first=192 second=34 amount=-1 +kerning first=39 second=100 amount=-1 +kerning first=77 second=232 amount=-2 +kerning first=34 second=246 amount=-1 +kerning first=44 second=1054 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=260 second=84 amount=-1 +kerning first=1059 second=44 amount=-1 +kerning first=933 second=949 amount=-1 +kerning first=44 second=933 amount=-1 +kerning first=34 second=65 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=1069 second=46 amount=-1 +kerning first=196 second=87 amount=-1 +kerning first=39 second=923 amount=-1 +kerning first=260 second=39 amount=-1 +kerning first=119 second=39 amount=1 +kerning first=1040 second=1066 amount=-1 +kerning first=46 second=79 amount=-1 +kerning first=46 second=1066 amount=-1 +kerning first=260 second=74 amount=2 +kerning first=44 second=84 amount=-1 +kerning first=34 second=1077 amount=-1 +kerning first=923 second=936 amount=-1 +kerning first=932 second=951 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=102 second=39 amount=1 +kerning first=910 second=959 amount=-1 +kerning first=1058 second=1091 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=1058 second=46 amount=-1 +kerning first=1100 second=34 amount=-1 +kerning first=34 second=111 amount=-1 +kerning first=44 second=87 amount=-1 +kerning first=1100 second=1098 amount=-1 +kerning first=118 second=34 amount=1 +kerning first=44 second=1066 amount=-1 +kerning first=923 second=34 amount=-1 +kerning first=936 second=913 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=39 second=940 amount=-1 +kerning first=1043 second=1085 amount=-1 +kerning first=1040 second=39 amount=-1 +kerning first=1059 second=1044 amount=-1 +kerning first=196 second=84 amount=-1 +kerning first=39 second=966 amount=-1 +kerning first=1058 second=1077 amount=-1 +kerning first=1066 second=1063 amount=-1 +kerning first=121 second=44 amount=-1 +kerning first=1059 second=1040 amount=-1 +kerning first=39 second=1105 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=1047 second=46 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=46 second=86 amount=-1 +kerning first=1070 second=44 amount=-1 +kerning first=915 second=44 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=923 second=932 amount=-1 +kerning first=915 second=972 amount=-1 +kerning first=1043 second=1102 amount=-1 +kerning first=910 second=963 amount=-1 +kerning first=34 second=192 amount=-1 +kerning first=196 second=39 amount=-1 +kerning first=46 second=932 amount=-1 +kerning first=46 second=934 amount=-1 +kerning first=46 second=67 amount=-1 +kerning first=34 second=233 amount=-1 +kerning first=1047 second=44 amount=-1 +kerning first=34 second=1051 amount=-1 +kerning first=44 second=210 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=932 second=941 amount=-1 +kerning first=915 second=923 amount=-1 +kerning first=1043 second=1090 amount=-1 +kerning first=280 second=74 amount=1 +kerning first=44 second=214 amount=-1 +kerning first=84 second=97 amount=-1 +kerning first=1043 second=1082 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=39 second=959 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=914 second=44 amount=-1 +kerning first=39 second=192 amount=-1 +kerning first=1069 second=44 amount=-1 +kerning first=1068 second=1066 amount=-1 +kerning first=34 second=99 amount=-1 +kerning first=1043 second=1098 amount=-1 +kerning first=1070 second=46 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=84 second=252 amount=-1 +kerning first=1043 second=46 amount=-1 +kerning first=34 second=945 amount=-1 +kerning first=933 second=963 amount=-1 +kerning first=77 second=228 amount=-1 +kerning first=1068 second=1063 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=39 second=913 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=902 second=34 amount=-1 +kerning first=915 second=940 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=34 second=113 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=1058 second=44 amount=-1 +kerning first=44 second=86 amount=-1 +kerning first=34 second=902 amount=-1 +kerning first=193 second=34 amount=-1 +kerning first=932 second=949 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=44 second=1098 amount=-1 +kerning first=260 second=86 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=932 second=943 amount=-1 +kerning first=193 second=87 amount=-1 +kerning first=929 second=923 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=121 second=34 amount=1 +kerning first=34 second=1086 amount=-1 +kerning first=932 second=965 amount=-1 +kerning first=1066 second=39 amount=-1 +kerning first=1091 second=44 amount=-1 +kerning first=89 second=192 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=84 second=228 amount=-1 +kerning first=923 second=933 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=933 second=46 amount=-1 +kerning first=1068 second=1058 amount=-1 +kerning first=34 second=193 amount=-1 +kerning first=1068 second=34 amount=-1 +kerning first=200 second=74 amount=1 +kerning first=84 second=44 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=39 second=1089 amount=-1 +kerning first=932 second=44 amount=-1 +kerning first=1043 second=1088 amount=-1 +kerning first=932 second=972 amount=-1 +kerning first=39 second=260 amount=-1 +kerning first=1059 second=1076 amount=-1 +kerning first=1098 second=1098 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=1098 second=1090 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=1060 second=46 amount=-1 +kerning first=34 second=243 amount=-1 +kerning first=936 second=916 amount=-1 +kerning first=915 second=963 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=39 second=281 amount=-1 +kerning first=46 second=87 amount=-1 +kerning first=39 second=1044 amount=-1 +kerning first=46 second=936 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=1040 second=34 amount=-1 +kerning first=84 second=65 amount=-1 +kerning first=910 second=962 amount=-1 +kerning first=1043 second=1083 amount=-1 +kerning first=933 second=961 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=933 second=962 amount=-1 +kerning first=114 second=39 amount=1 +kerning first=89 second=113 amount=-1 +kerning first=915 second=902 amount=-1 +kerning first=89 second=228 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=1043 second=1074 amount=-1 +kerning first=915 second=934 amount=-1 +kerning first=933 second=923 amount=-1 +kerning first=915 second=46 amount=-1 +kerning first=196 second=34 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=44 second=1090 amount=-1 +kerning first=902 second=932 amount=-1 +kerning first=910 second=916 amount=-1 +kerning first=932 second=942 amount=-1 +kerning first=1098 second=34 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=46 second=262 amount=-1 +kerning first=933 second=916 amount=-1 +kerning first=34 second=959 amount=-1 +kerning first=44 second=932 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=957 second=44 amount=-1 +kerning first=910 second=961 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=1058 second=1086 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=102 second=34 amount=1 +kerning first=936 second=923 amount=-1 +kerning first=39 second=1051 amount=-1 +kerning first=1043 second=1044 amount=-1 +kerning first=123 second=74 amount=1 +kerning first=39 second=945 amount=-1 +kerning first=1090 second=44 amount=-1 +kerning first=929 second=44 amount=-2 +kerning first=77 second=101 amount=-2 +kerning first=1059 second=1083 amount=-1 +kerning first=933 second=959 amount=-1 +kerning first=84 second=45 amount=-1 +kerning first=39 second=243 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=910 second=923 amount=-1 +kerning first=39 second=99 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x1/font-small.fnt b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/font-small.fnt new file mode 100644 index 0000000..25472c2 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/font-small.fnt @@ -0,0 +1,724 @@ +info face="Vis Open Sans" size=12 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,0,0,0 spacing=0,0 +common lineHeight=18 base=13 scaleW=256 scaleH=128 pages=1 packed=0 +page id=0 file="font-small.png" +chars count=279 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=13 xadvance=3 page=0 chnl=0 +char id=968 x=0 y=0 width=10 height=15 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=942 x=10 y=0 width=8 height=15 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=946 x=18 y=0 width=8 height=15 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1092 x=26 y=0 width=10 height=15 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1049 x=36 y=0 width=8 height=15 xoffset=1 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=217 x=44 y=0 width=8 height=15 xoffset=1 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=210 x=52 y=0 width=10 height=15 xoffset=0 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=204 x=62 y=0 width=4 height=15 xoffset=0 yoffset=-1 xadvance=3 page=0 chnl=0 +char id=200 x=66 y=0 width=7 height=15 xoffset=1 yoffset=-1 xadvance=7 page=0 chnl=0 +char id=192 x=73 y=0 width=9 height=15 xoffset=0 yoffset=-1 xadvance=8 page=0 chnl=0 +char id=218 x=82 y=0 width=8 height=15 xoffset=1 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=205 x=90 y=0 width=4 height=15 xoffset=1 yoffset=-1 xadvance=3 page=0 chnl=0 +char id=201 x=94 y=0 width=7 height=15 xoffset=1 yoffset=-1 xadvance=7 page=0 chnl=0 +char id=193 x=101 y=0 width=9 height=15 xoffset=0 yoffset=-1 xadvance=8 page=0 chnl=0 +char id=377 x=110 y=0 width=8 height=15 xoffset=0 yoffset=-1 xadvance=7 page=0 chnl=0 +char id=346 x=118 y=0 width=8 height=15 xoffset=0 yoffset=-1 xadvance=7 page=0 chnl=0 +char id=211 x=126 y=0 width=10 height=15 xoffset=0 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=323 x=136 y=0 width=8 height=15 xoffset=1 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=280 x=144 y=0 width=7 height=15 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=262 x=151 y=0 width=9 height=15 xoffset=0 yoffset=-1 xadvance=8 page=0 chnl=0 +char id=260 x=160 y=0 width=9 height=15 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=209 x=169 y=0 width=8 height=15 xoffset=1 yoffset=-1 xadvance=9 page=0 chnl=0 +char id=124 x=177 y=0 width=2 height=15 xoffset=3 yoffset=2 xadvance=7 page=0 chnl=0 +char id=958 x=179 y=0 width=7 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=950 x=186 y=0 width=7 height=14 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=1065 x=193 y=0 width=12 height=14 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=1062 x=205 y=0 width=9 height=14 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1044 x=214 y=0 width=9 height=14 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=379 x=223 y=0 width=8 height=14 xoffset=0 yoffset=0 xadvance=7 page=0 chnl=0 +char id=125 x=231 y=0 width=6 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=123 x=237 y=0 width=6 height=14 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=93 x=243 y=0 width=5 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=91 x=248 y=0 width=5 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=41 x=0 y=15 width=5 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=40 x=5 y=15 width=5 height=14 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=106 x=10 y=15 width=5 height=14 xoffset=-1 yoffset=3 xadvance=3 page=0 chnl=0 +char id=81 x=15 y=15 width=10 height=14 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=74 x=25 y=15 width=5 height=14 xoffset=-1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=1025 x=30 y=15 width=7 height=13 xoffset=1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=220 x=37 y=15 width=8 height=13 xoffset=1 yoffset=1 xadvance=9 page=0 chnl=0 +char id=214 x=45 y=15 width=10 height=13 xoffset=0 yoffset=1 xadvance=9 page=0 chnl=0 +char id=196 x=55 y=15 width=9 height=13 xoffset=0 yoffset=1 xadvance=8 page=0 chnl=0 +char id=36 x=64 y=15 width=8 height=13 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=64 x=72 y=15 width=12 height=13 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=8984 x=84 y=15 width=11 height=12 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=944 x=95 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=912 x=103 y=15 width=6 height=12 xoffset=-1 yoffset=2 xadvance=4 page=0 chnl=0 +char id=974 x=109 y=15 width=10 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=967 x=119 y=15 width=9 height=12 xoffset=-1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=966 x=128 y=15 width=10 height=12 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=973 x=138 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=961 x=146 y=15 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=972 x=154 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=956 x=162 y=15 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=955 x=170 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=943 x=178 y=15 width=5 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=952 x=183 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=951 x=191 y=15 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=941 x=199 y=15 width=7 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=948 x=206 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=947 x=214 y=15 width=7 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=940 x=221 y=15 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=911 x=229 y=15 width=10 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=937 x=239 y=15 width=10 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=936 x=0 y=29 width=11 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=935 x=11 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=934 x=19 y=29 width=11 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=910 x=30 y=29 width=10 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=933 x=40 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=932 x=48 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=931 x=56 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=929 x=64 y=29 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=928 x=71 y=29 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=908 x=79 y=29 width=10 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=927 x=89 y=29 width=10 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=926 x=99 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=925 x=107 y=29 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=924 x=115 y=29 width=10 height=12 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=923 x=125 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=922 x=133 y=29 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=906 x=140 y=29 width=5 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=921 x=145 y=29 width=3 height=12 xoffset=1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=920 x=148 y=29 width=10 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=905 x=158 y=29 width=10 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=919 x=168 y=29 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=918 x=176 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=904 x=184 y=29 width=9 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=917 x=193 y=29 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=916 x=200 y=29 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=915 x=208 y=29 width=6 height=12 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0 +char id=914 x=214 y=29 width=8 height=12 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=902 x=222 y=29 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=913 x=231 y=29 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1091 x=240 y=29 width=7 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1088 x=247 y=29 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1081 x=0 y=41 width=7 height=12 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1071 x=7 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1070 x=15 y=41 width=13 height=12 xoffset=1 yoffset=2 xadvance=13 page=0 chnl=0 +char id=1069 x=28 y=41 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1068 x=37 y=41 width=8 height=12 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1067 x=45 y=41 width=9 height=12 xoffset=1 yoffset=2 xadvance=10 page=0 chnl=0 +char id=1066 x=54 y=41 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1064 x=63 y=41 width=11 height=12 xoffset=1 yoffset=2 xadvance=12 page=0 chnl=0 +char id=1063 x=74 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1061 x=82 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1060 x=90 y=41 width=11 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=1059 x=101 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1058 x=109 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1057 x=117 y=41 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1056 x=126 y=41 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1055 x=133 y=41 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1054 x=141 y=41 width=10 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1053 x=151 y=41 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1052 x=159 y=41 width=10 height=12 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=1051 x=169 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1050 x=177 y=41 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1048 x=184 y=41 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=1046 x=192 y=41 width=11 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=1045 x=203 y=41 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1043 x=210 y=41 width=6 height=12 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0 +char id=1042 x=216 y=41 width=8 height=12 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=1041 x=224 y=41 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=1040 x=231 y=41 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=249 x=240 y=41 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=242 x=0 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=236 x=8 y=53 width=4 height=12 xoffset=-1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=232 x=12 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=224 x=20 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=250 x=27 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=237 x=35 y=53 width=4 height=12 xoffset=1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=233 x=39 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=225 x=47 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=321 x=54 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=378 x=61 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=347 x=68 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=243 x=75 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=324 x=83 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=322 x=91 y=53 width=5 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 +char id=281 x=96 y=53 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=263 x=104 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=261 x=111 y=53 width=7 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=241 x=118 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=127 x=126 y=53 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=35 x=133 y=53 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=37 x=142 y=53 width=11 height=12 xoffset=0 yoffset=2 xadvance=10 page=0 chnl=0 +char id=92 x=153 y=53 width=5 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=47 x=158 y=53 width=5 height=12 xoffset=0 yoffset=2 xadvance=4 page=0 chnl=0 +char id=33 x=163 y=53 width=4 height=12 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 +char id=48 x=167 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=56 x=175 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=55 x=183 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=54 x=191 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=53 x=199 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=52 x=207 y=53 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=49 x=215 y=53 width=5 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=121 x=220 y=53 width=7 height=12 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=113 x=227 y=53 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=112 x=235 y=53 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=108 x=243 y=53 width=2 height=12 xoffset=1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=107 x=245 y=53 width=7 height=12 xoffset=0 yoffset=2 xadvance=6 page=0 chnl=0 +char id=104 x=0 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=103 x=8 y=65 width=8 height=12 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=100 x=16 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=98 x=24 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=90 x=32 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=89 x=40 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=88 x=48 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=87 x=56 y=65 width=12 height=12 xoffset=0 yoffset=2 xadvance=11 page=0 chnl=0 +char id=86 x=68 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=85 x=76 y=65 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=84 x=84 y=65 width=8 height=12 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=82 x=92 y=65 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=80 x=99 y=65 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=79 x=106 y=65 width=10 height=12 xoffset=0 yoffset=2 xadvance=9 page=0 chnl=0 +char id=78 x=116 y=65 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=77 x=124 y=65 width=10 height=12 xoffset=1 yoffset=2 xadvance=11 page=0 chnl=0 +char id=76 x=134 y=65 width=6 height=12 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0 +char id=75 x=140 y=65 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=73 x=147 y=65 width=3 height=12 xoffset=1 yoffset=2 xadvance=3 page=0 chnl=0 +char id=72 x=150 y=65 width=8 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=70 x=158 y=65 width=6 height=12 xoffset=1 yoffset=2 xadvance=6 page=0 chnl=0 +char id=69 x=164 y=65 width=7 height=12 xoffset=1 yoffset=2 xadvance=7 page=0 chnl=0 +char id=68 x=171 y=65 width=9 height=12 xoffset=1 yoffset=2 xadvance=9 page=0 chnl=0 +char id=67 x=180 y=65 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=66 x=189 y=65 width=8 height=12 xoffset=1 yoffset=2 xadvance=8 page=0 chnl=0 +char id=65 x=197 y=65 width=9 height=12 xoffset=0 yoffset=2 xadvance=8 page=0 chnl=0 +char id=8679 x=206 y=65 width=7 height=11 xoffset=2 yoffset=3 xadvance=10 page=0 chnl=0 +char id=962 x=213 y=65 width=7 height=11 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1097 x=220 y=65 width=11 height=11 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=1094 x=231 y=65 width=8 height=11 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1076 x=239 y=65 width=8 height=11 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1073 x=247 y=65 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=1047 x=0 y=77 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=223 x=8 y=77 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=380 x=16 y=77 width=7 height=11 xoffset=0 yoffset=3 xadvance=6 page=0 chnl=0 +char id=38 x=23 y=77 width=10 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=59 x=33 y=77 width=4 height=11 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 +char id=63 x=37 y=77 width=6 height=11 xoffset=0 yoffset=3 xadvance=5 page=0 chnl=0 +char id=57 x=43 y=77 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=51 x=51 y=77 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=50 x=59 y=77 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=105 x=67 y=77 width=4 height=11 xoffset=0 yoffset=3 xadvance=3 page=0 chnl=0 +char id=102 x=71 y=77 width=6 height=11 xoffset=0 yoffset=3 xadvance=4 page=0 chnl=0 +char id=83 x=77 y=77 width=8 height=11 xoffset=0 yoffset=3 xadvance=7 page=0 chnl=0 +char id=71 x=85 y=77 width=10 height=11 xoffset=0 yoffset=3 xadvance=9 page=0 chnl=0 +char id=971 x=95 y=77 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=970 x=103 y=77 width=6 height=10 xoffset=-1 yoffset=4 xadvance=4 page=0 chnl=0 +char id=1105 x=109 y=77 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=252 x=117 y=77 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=246 x=125 y=77 width=8 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=228 x=133 y=77 width=7 height=10 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=191 x=140 y=77 width=6 height=10 xoffset=0 yoffset=6 xadvance=5 page=0 chnl=0 +char id=116 x=146 y=77 width=5 height=10 xoffset=0 yoffset=4 xadvance=4 page=0 chnl=0 +char id=8997 x=151 y=77 width=14 height=9 xoffset=0 yoffset=5 xadvance=14 page=0 chnl=0 +char id=969 x=165 y=77 width=10 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=965 x=175 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=964 x=183 y=77 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=963 x=190 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=960 x=198 y=77 width=9 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=959 x=207 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=957 x=215 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=954 x=223 y=77 width=6 height=9 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=953 x=229 y=77 width=5 height=9 xoffset=0 yoffset=5 xadvance=4 page=0 chnl=0 +char id=945 x=234 y=77 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1103 x=242 y=77 width=7 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1102 x=0 y=88 width=10 height=9 xoffset=1 yoffset=5 xadvance=10 page=0 chnl=0 +char id=1101 x=10 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1100 x=17 y=88 width=7 height=9 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1099 x=24 y=88 width=9 height=9 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=1098 x=33 y=88 width=9 height=9 xoffset=0 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1096 x=42 y=88 width=10 height=9 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=1095 x=52 y=88 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1093 x=60 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1090 x=67 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1089 x=74 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1087 x=81 y=88 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1086 x=89 y=88 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1085 x=97 y=88 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1084 x=104 y=88 width=8 height=9 xoffset=1 yoffset=5 xadvance=9 page=0 chnl=0 +char id=1083 x=112 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1082 x=119 y=88 width=6 height=9 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1080 x=125 y=88 width=7 height=9 xoffset=1 yoffset=5 xadvance=8 page=0 chnl=0 +char id=1079 x=132 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=1078 x=139 y=88 width=10 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=1077 x=149 y=88 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1075 x=157 y=88 width=5 height=9 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=1074 x=162 y=88 width=7 height=9 xoffset=1 yoffset=5 xadvance=7 page=0 chnl=0 +char id=1072 x=169 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=43 x=176 y=88 width=8 height=9 xoffset=0 yoffset=4 xadvance=7 page=0 chnl=0 +char id=94 x=184 y=88 width=8 height=9 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=58 x=192 y=88 width=4 height=9 xoffset=0 yoffset=5 xadvance=3 page=0 chnl=0 +char id=122 x=196 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=120 x=203 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=119 x=210 y=88 width=10 height=9 xoffset=0 yoffset=5 xadvance=9 page=0 chnl=0 +char id=118 x=220 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=117 x=227 y=88 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=115 x=235 y=88 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=114 x=242 y=88 width=5 height=9 xoffset=1 yoffset=5 xadvance=5 page=0 chnl=0 +char id=111 x=247 y=88 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=110 x=0 y=97 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=109 x=8 y=97 width=11 height=9 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=101 x=19 y=97 width=8 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=99 x=27 y=97 width=7 height=9 xoffset=0 yoffset=5 xadvance=6 page=0 chnl=0 +char id=97 x=34 y=97 width=7 height=9 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=949 x=41 y=97 width=7 height=8 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=42 x=48 y=97 width=8 height=8 xoffset=0 yoffset=2 xadvance=7 page=0 chnl=0 +char id=62 x=56 y=97 width=8 height=8 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=60 x=64 y=97 width=8 height=8 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=61 x=72 y=97 width=8 height=6 xoffset=0 yoffset=5 xadvance=7 page=0 chnl=0 +char id=44 x=80 y=97 width=4 height=6 xoffset=0 yoffset=10 xadvance=3 page=0 chnl=0 +char id=39 x=84 y=97 width=3 height=6 xoffset=0 yoffset=2 xadvance=3 page=0 chnl=0 +char id=34 x=87 y=97 width=6 height=6 xoffset=0 yoffset=2 xadvance=5 page=0 chnl=0 +char id=903 x=93 y=97 width=4 height=5 xoffset=0 yoffset=6 xadvance=3 page=0 chnl=0 +char id=46 x=97 y=97 width=4 height=5 xoffset=0 yoffset=9 xadvance=3 page=0 chnl=0 +char id=96 x=101 y=97 width=4 height=5 xoffset=2 yoffset=2 xadvance=7 page=0 chnl=0 +char id=8226 x=105 y=97 width=4 height=5 xoffset=1 yoffset=6 xadvance=5 page=0 chnl=0 +char id=126 x=109 y=97 width=8 height=4 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=95 x=117 y=97 width=8 height=4 xoffset=-1 yoffset=12 xadvance=5 page=0 chnl=0 +char id=45 x=125 y=97 width=5 height=4 xoffset=0 yoffset=7 xadvance=4 page=0 chnl=0 +kernings count=439 +kerning first=950 second=45 amount=-1 +kerning first=1090 second=46 amount=-1 +kerning first=39 second=246 amount=-1 +kerning first=44 second=67 amount=-1 +kerning first=44 second=71 amount=-1 +kerning first=44 second=79 amount=-1 +kerning first=44 second=81 amount=-1 +kerning first=44 second=86 amount=-1 +kerning first=44 second=87 amount=-1 +kerning first=77 second=105 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=40 second=74 amount=1 +kerning first=89 second=192 amount=-1 +kerning first=44 second=210 amount=-1 +kerning first=46 second=211 amount=-1 +kerning first=44 second=214 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=77 second=236 amount=-1 +kerning first=77 second=237 amount=-1 +kerning first=84 second=250 amount=-1 +kerning first=39 second=260 amount=-1 +kerning first=84 second=261 amount=-1 +kerning first=46 second=262 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=1058 second=1105 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=46 second=81 amount=-1 +kerning first=910 second=913 amount=-1 +kerning first=34 second=916 amount=-1 +kerning first=915 second=923 amount=-1 +kerning first=913 second=932 amount=-1 +kerning first=923 second=933 amount=-1 +kerning first=932 second=934 amount=-1 +kerning first=933 second=940 amount=-1 +kerning first=915 second=941 amount=-1 +kerning first=915 second=942 amount=-1 +kerning first=932 second=944 amount=-1 +kerning first=932 second=949 amount=-1 +kerning first=915 second=951 amount=-1 +kerning first=915 second=954 amount=-1 +kerning first=932 second=956 amount=-1 +kerning first=910 second=959 amount=-1 +kerning first=933 second=962 amount=-1 +kerning first=915 second=965 amount=-1 +kerning first=910 second=966 amount=-1 +kerning first=915 second=969 amount=-1 +kerning first=915 second=971 amount=-1 +kerning first=915 second=973 amount=-1 +kerning first=932 second=974 amount=-1 +kerning first=46 second=1054 amount=-1 +kerning first=46 second=1057 amount=-1 +kerning first=44 second=1066 amount=-1 +kerning first=932 second=966 amount=-1 +kerning first=1058 second=1074 amount=-1 +kerning first=1058 second=1080 amount=-1 +kerning first=1058 second=1081 amount=-1 +kerning first=34 second=1083 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=1043 second=1088 amount=-1 +kerning first=1100 second=1090 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=44 second=1098 amount=-1 +kerning first=1043 second=1102 amount=-1 +kerning first=84 second=109 amount=-1 +kerning first=65 second=74 amount=2 +kerning first=39 second=196 amount=-1 +kerning first=932 second=923 amount=-1 +kerning first=1100 second=39 amount=-1 +kerning first=1058 second=1089 amount=-1 +kerning first=89 second=44 amount=-1 +kerning first=77 second=224 amount=-1 +kerning first=321 second=34 amount=-1 +kerning first=1043 second=1094 amount=-1 +kerning first=915 second=913 amount=-1 +kerning first=932 second=969 amount=-1 +kerning first=1058 second=1102 amount=-1 +kerning first=260 second=34 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=1058 second=1044 amount=-1 +kerning first=34 second=232 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=86 second=44 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=1058 second=1076 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=65 second=84 amount=-1 +kerning first=916 second=932 amount=-1 +kerning first=77 second=233 amount=-1 +kerning first=932 second=913 amount=-1 +kerning first=1058 second=1099 amount=-1 +kerning first=192 second=84 amount=-1 +kerning first=933 second=945 amount=-1 +kerning first=46 second=1090 amount=-1 +kerning first=84 second=281 amount=-1 +kerning first=80 second=44 amount=-2 +kerning first=46 second=71 amount=-1 +kerning first=1040 second=1058 amount=-1 +kerning first=84 second=232 amount=-1 +kerning first=65 second=39 amount=-1 +kerning first=913 second=34 amount=-1 +kerning first=1043 second=1084 amount=-1 +kerning first=192 second=39 amount=-1 +kerning first=84 second=263 amount=-1 +kerning first=34 second=281 amount=-1 +kerning first=80 second=46 amount=-2 +kerning first=932 second=963 amount=-1 +kerning first=910 second=945 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=34 second=1089 amount=-1 +kerning first=70 second=44 amount=-1 +kerning first=929 second=46 amount=-2 +kerning first=76 second=39 amount=-1 +kerning first=34 second=1092 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=39 second=99 amount=-1 +kerning first=932 second=940 amount=-1 +kerning first=1059 second=46 amount=-1 +kerning first=910 second=46 amount=-1 +kerning first=34 second=1044 amount=-1 +kerning first=932 second=959 amount=-1 +kerning first=916 second=34 amount=-1 +kerning first=89 second=260 amount=-1 +kerning first=34 second=196 amount=-1 +kerning first=934 second=44 amount=-1 +kerning first=39 second=916 amount=-1 +kerning first=44 second=1058 amount=-1 +kerning first=201 second=74 amount=1 +kerning first=1075 second=44 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=936 second=46 amount=-1 +kerning first=84 second=99 amount=-1 +kerning first=34 second=1040 amount=-1 +kerning first=910 second=902 amount=-1 +kerning first=932 second=46 amount=-1 +kerning first=102 second=39 amount=1 +kerning first=193 second=84 amount=-1 +kerning first=1043 second=1081 amount=-1 +kerning first=1098 second=39 amount=-1 +kerning first=933 second=44 amount=-1 +kerning first=39 second=101 amount=-1 +kerning first=913 second=933 amount=-1 +kerning first=39 second=1092 amount=-1 +kerning first=84 second=225 amount=-1 +kerning first=84 second=246 amount=-1 +kerning first=39 second=111 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=1056 second=1044 amount=-1 +kerning first=39 second=193 amount=-1 +kerning first=910 second=44 amount=-1 +kerning first=34 second=100 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=955 second=39 amount=-1 +kerning first=932 second=962 amount=-1 +kerning first=1043 second=1040 amount=-1 +kerning first=915 second=966 amount=-1 +kerning first=39 second=263 amount=-1 +kerning first=44 second=934 amount=-1 +kerning first=929 second=902 amount=-1 +kerning first=44 second=936 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=932 second=916 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=39 second=242 amount=-1 +kerning first=34 second=923 amount=-1 +kerning first=1068 second=1058 amount=-1 +kerning first=193 second=39 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=44 second=211 amount=-1 +kerning first=39 second=224 amount=-1 +kerning first=193 second=74 amount=2 +kerning first=1043 second=1077 amount=-1 +kerning first=77 second=228 amount=-1 +kerning first=1058 second=1083 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=933 second=902 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=932 second=954 amount=-1 +kerning first=34 second=260 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=902 second=39 amount=-1 +kerning first=39 second=1076 amount=-1 +kerning first=84 second=100 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=915 second=945 amount=-1 +kerning first=916 second=933 amount=-1 +kerning first=39 second=1040 amount=-1 +kerning first=1043 second=1092 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=932 second=968 amount=-1 +kerning first=260 second=89 amount=-1 +kerning first=39 second=232 amount=-1 +kerning first=34 second=1105 amount=-1 +kerning first=1058 second=1092 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=84 second=260 amount=-1 +kerning first=46 second=1066 amount=-1 +kerning first=192 second=74 amount=2 +kerning first=46 second=1095 amount=-1 +kerning first=34 second=1076 amount=-1 +kerning first=1058 second=44 amount=-1 +kerning first=933 second=966 amount=-1 +kerning first=91 second=74 amount=1 +kerning first=196 second=74 amount=2 +kerning first=1075 second=46 amount=-1 +kerning first=1058 second=1075 amount=-1 +kerning first=39 second=65 amount=-1 +kerning first=46 second=84 amount=-1 +kerning first=1043 second=1085 amount=-1 +kerning first=936 second=44 amount=-1 +kerning first=44 second=89 amount=-1 +kerning first=1056 second=46 amount=-2 +kerning first=34 second=101 amount=-1 +kerning first=929 second=913 amount=-1 +kerning first=1043 second=44 amount=-1 +kerning first=46 second=214 amount=-1 +kerning first=1058 second=1082 amount=-1 +kerning first=915 second=961 amount=-1 +kerning first=915 second=944 amount=-1 +kerning first=69 second=74 amount=1 +kerning first=923 second=39 amount=-1 +kerning first=915 second=974 amount=-1 +kerning first=39 second=1077 amount=-1 +kerning first=89 second=65 amount=-1 +kerning first=46 second=1058 amount=-1 +kerning first=34 second=913 amount=-1 +kerning first=915 second=959 amount=-1 +kerning first=1058 second=1097 amount=-1 +kerning first=39 second=902 amount=-1 +kerning first=1043 second=1086 amount=-1 +kerning first=916 second=39 amount=-1 +kerning first=84 second=101 amount=-1 +kerning first=84 second=192 amount=-1 +kerning first=902 second=933 amount=-1 +kerning first=933 second=913 amount=-1 +kerning first=1066 second=1058 amount=-1 +kerning first=932 second=945 amount=-1 +kerning first=34 second=224 amount=-1 +kerning first=934 second=46 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=260 second=74 amount=2 +kerning first=46 second=87 amount=-1 +kerning first=70 second=46 amount=-1 +kerning first=39 second=1083 amount=-1 +kerning first=1056 second=44 amount=-2 +kerning first=39 second=233 amount=-1 +kerning first=77 second=225 amount=-1 +kerning first=929 second=916 amount=-1 +kerning first=932 second=961 amount=-1 +kerning first=44 second=1063 amount=-1 +kerning first=1056 second=1051 amount=-1 +kerning first=46 second=89 amount=-1 +kerning first=1040 second=1063 amount=-1 +kerning first=89 second=243 amount=-1 +kerning first=910 second=972 amount=-1 +kerning first=932 second=971 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=39 second=243 amount=-1 +kerning first=84 second=103 amount=-1 +kerning first=65 second=34 amount=-1 +kerning first=76 second=34 amount=-1 +kerning first=915 second=962 amount=-1 +kerning first=1058 second=1094 amount=-1 +kerning first=84 second=224 amount=-1 +kerning first=1058 second=1100 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=910 second=940 amount=-1 +kerning first=1043 second=1099 amount=-1 +kerning first=44 second=1057 amount=-1 +kerning first=84 second=111 amount=-1 +kerning first=84 second=46 amount=-1 +kerning first=46 second=1098 amount=-1 +kerning first=39 second=1086 amount=-1 +kerning first=913 second=39 amount=-1 +kerning first=915 second=916 amount=-1 +kerning first=321 second=39 amount=-1 +kerning first=192 second=34 amount=-1 +kerning first=39 second=100 amount=-1 +kerning first=933 second=972 amount=-1 +kerning first=77 second=232 amount=-1 +kerning first=34 second=246 amount=-1 +kerning first=39 second=113 amount=-1 +kerning first=260 second=84 amount=-1 +kerning first=44 second=933 amount=-1 +kerning first=34 second=65 amount=-1 +kerning first=44 second=1095 amount=-1 +kerning first=915 second=949 amount=-1 +kerning first=77 second=281 amount=-1 +kerning first=39 second=923 amount=-1 +kerning first=933 second=916 amount=-1 +kerning first=1058 second=1087 amount=-1 +kerning first=260 second=39 amount=-1 +kerning first=1040 second=1066 amount=-1 +kerning first=46 second=79 amount=-1 +kerning first=915 second=968 amount=-1 +kerning first=1043 second=1105 amount=-1 +kerning first=44 second=84 amount=-1 +kerning first=46 second=936 amount=-1 +kerning first=929 second=44 amount=-2 +kerning first=34 second=1077 amount=-1 +kerning first=932 second=951 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=1058 second=46 amount=-1 +kerning first=1100 second=34 amount=-1 +kerning first=34 second=111 amount=-1 +kerning first=1100 second=1098 amount=-1 +kerning first=923 second=34 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=1040 second=39 amount=-1 +kerning first=1059 second=1044 amount=-1 +kerning first=1066 second=1063 amount=-1 +kerning first=1059 second=1040 amount=-1 +kerning first=39 second=1105 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=46 second=86 amount=-1 +kerning first=44 second=262 amount=-1 +kerning first=44 second=1054 amount=-1 +kerning first=915 second=44 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=923 second=932 amount=-1 +kerning first=915 second=972 amount=-1 +kerning first=910 second=963 amount=-1 +kerning first=34 second=192 amount=-1 +kerning first=196 second=39 amount=-1 +kerning first=46 second=932 amount=-1 +kerning first=46 second=934 amount=-1 +kerning first=46 second=67 amount=-1 +kerning first=34 second=233 amount=-1 +kerning first=34 second=1051 amount=-1 +kerning first=34 second=263 amount=-1 +kerning first=1066 second=1066 amount=-1 +kerning first=84 second=193 amount=-1 +kerning first=932 second=941 amount=-1 +kerning first=280 second=74 amount=1 +kerning first=84 second=97 amount=-1 +kerning first=1043 second=1082 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=39 second=192 amount=-1 +kerning first=84 second=113 amount=-1 +kerning first=46 second=1063 amount=-1 +kerning first=1068 second=1066 amount=-1 +kerning first=1043 second=1100 amount=-1 +kerning first=34 second=99 amount=-1 +kerning first=84 second=252 amount=-1 +kerning first=1043 second=46 amount=-1 +kerning first=123 second=74 amount=1 +kerning first=933 second=963 amount=-1 +kerning first=84 second=196 amount=-1 +kerning first=1068 second=1063 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=39 second=913 amount=-1 +kerning first=84 second=233 amount=-1 +kerning first=902 second=34 amount=-1 +kerning first=915 second=940 amount=-1 +kerning first=1058 second=1077 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=34 second=113 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=34 second=902 amount=-1 +kerning first=193 second=34 amount=-1 +kerning first=1058 second=1040 amount=-1 +kerning first=915 second=956 amount=-1 +kerning first=84 second=243 amount=-1 +kerning first=929 second=923 amount=-1 +kerning first=77 second=97 amount=-1 +kerning first=86 second=46 amount=-1 +kerning first=34 second=1086 amount=-1 +kerning first=932 second=965 amount=-1 +kerning first=196 second=84 amount=-1 +kerning first=932 second=973 amount=-1 +kerning first=902 second=932 amount=-1 +kerning first=84 second=228 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=46 second=933 amount=-1 +kerning first=933 second=46 amount=-1 +kerning first=34 second=193 amount=-1 +kerning first=200 second=74 amount=1 +kerning first=84 second=44 amount=-1 +kerning first=39 second=1089 amount=-1 +kerning first=932 second=44 amount=-1 +kerning first=932 second=972 amount=-1 +kerning first=1098 second=1098 amount=-1 +kerning first=1098 second=1090 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=34 second=243 amount=-1 +kerning first=915 second=963 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=39 second=281 amount=-1 +kerning first=39 second=1044 amount=-1 +kerning first=1040 second=34 amount=-1 +kerning first=84 second=65 amount=-1 +kerning first=910 second=962 amount=-1 +kerning first=1043 second=1083 amount=-1 +kerning first=933 second=961 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=915 second=902 amount=-1 +kerning first=89 second=228 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=915 second=934 amount=-1 +kerning first=933 second=923 amount=-1 +kerning first=915 second=46 amount=-1 +kerning first=196 second=34 amount=-1 +kerning first=84 second=249 amount=-1 +kerning first=44 second=1090 amount=-1 +kerning first=910 second=916 amount=-1 +kerning first=932 second=942 amount=-1 +kerning first=1098 second=34 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=34 second=242 amount=-1 +kerning first=44 second=932 amount=-1 +kerning first=77 second=261 amount=-1 +kerning first=1043 second=1089 amount=-1 +kerning first=932 second=902 amount=-1 +kerning first=910 second=961 amount=-1 +kerning first=1059 second=44 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=1058 second=1086 amount=-1 +kerning first=102 second=34 amount=1 +kerning first=39 second=1051 amount=-1 +kerning first=955 second=34 amount=-1 +kerning first=1043 second=1074 amount=-1 +kerning first=1043 second=1044 amount=-1 +kerning first=84 second=112 amount=-1 +kerning first=46 second=210 amount=-1 +kerning first=1090 second=44 amount=-1 +kerning first=77 second=101 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=933 second=959 amount=-1 +kerning first=84 second=242 amount=-1 +kerning first=910 second=923 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.atlas new file mode 100644 index 0000000..5fe2062 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.atlas @@ -0,0 +1,710 @@ + +uiskin.png +size: 512,256 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +border + rotate: false + xy: 307, 196 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +border-circle + rotate: false + xy: 391, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +border-circle-error + rotate: false + xy: 406, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +border-dark-blue + rotate: false + xy: 69, 1 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +border-error + rotate: false + xy: 303, 194 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 296, 161 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-blue + rotate: false + xy: 256, 25 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 256, 25 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-blue-down + rotate: false + xy: 307, 200 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-blue-over + rotate: false + xy: 256, 46 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 268, 115 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-red + rotate: false + xy: 268, 94 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +button-window-bg + rotate: false + xy: 268, 73 + size: 12, 20 + split: 5, 5, 5, 4 + pad: 4, 4, 1, 1 + orig: 12, 20 + offset: 0, 0 + index: -1 +check-down + rotate: false + xy: 421, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-down-on + rotate: false + xy: 436, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-off + rotate: false + xy: 451, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 451, 241 + size: 14, 14 + split: 1, 1, 1, 1 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-on + rotate: false + xy: 466, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-on-disabled + rotate: false + xy: 481, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-over-off + rotate: false + xy: 496, 241 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +textfield-over + rotate: false + xy: 496, 241 + size: 14, 14 + split: 1, 1, 1, 1 + orig: 14, 14 + offset: 0, 0 + index: -1 +check-over-on + rotate: false + xy: 256, 10 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +color-picker-bar-selector + rotate: false + xy: 278, 137 + size: 7, 14 + orig: 7, 14 + offset: 0, 0 + index: -1 +color-picker-cross + rotate: false + xy: 268, 67 + size: 5, 5 + orig: 5, 5 + offset: 0, 0 + index: -1 +color-picker-selector-horizontal + rotate: false + xy: 44, 1 + size: 3, 1 + orig: 3, 1 + offset: 0, 0 + index: -1 +color-picker-selector-vertical + rotate: false + xy: 405, 237 + size: 1, 3 + orig: 1, 3 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 320, 200 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default + rotate: false + xy: 1, 116 + size: 254, 139 + orig: 256, 256 + offset: 0, 117 + index: -1 +default-pane + rotate: false + xy: 63, 1 + size: 5, 3 + split: 1, 1, 1, 1 + orig: 5, 3 + offset: 0, 0 + index: -1 +default-pane-noborder + rotate: false + xy: 284, 152 + size: 1, 1 + split: 0, 0, 0, 0 + orig: 1, 1 + offset: 0, 0 + index: -1 +default-select + rotate: false + xy: 256, 152 + size: 27, 24 + split: 4, 16, 0, 24 + orig: 27, 24 + offset: 0, 0 + index: -1 +default-select-selection + rotate: false + xy: 389, 226 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +font-small + rotate: false + xy: 1, 10 + size: 254, 105 + orig: 256, 128 + offset: 0, 22 + index: -1 +grey + rotate: false + xy: 48, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +menu-bg + rotate: false + xy: 48, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +icon-arrow-left + rotate: false + xy: 312, 240 + size: 21, 15 + orig: 22, 22 + offset: 1, 4 + index: -1 +icon-arrow-right + rotate: false + xy: 256, 136 + size: 21, 15 + orig: 22, 22 + offset: 1, 4 + index: -1 +icon-close + rotate: false + xy: 389, 230 + size: 10, 10 + orig: 22, 22 + offset: 6, 6 + index: -1 +icon-drive + rotate: false + xy: 1, 4 + size: 18, 5 + orig: 22, 22 + offset: 2, 8 + index: -1 +icon-file-audio + rotate: false + xy: 312, 221 + size: 14, 18 + orig: 22, 22 + offset: 4, 2 + index: -1 +icon-file-image + rotate: false + xy: 320, 204 + size: 14, 16 + orig: 22, 22 + offset: 4, 3 + index: -1 +icon-file-pdf + rotate: false + xy: 327, 221 + size: 14, 18 + orig: 22, 22 + offset: 4, 2 + index: -1 +icon-file-text + rotate: false + xy: 342, 224 + size: 14, 16 + orig: 22, 22 + offset: 4, 3 + index: -1 +icon-folder + rotate: false + xy: 372, 242 + size: 18, 13 + orig: 22, 22 + offset: 2, 6 + index: -1 +icon-folder-new + rotate: false + xy: 284, 182 + size: 18, 15 + orig: 22, 22 + offset: 2, 3 + index: -1 +icon-folder-parent + rotate: false + xy: 334, 241 + size: 18, 14 + orig: 22, 22 + offset: 2, 5 + index: -1 +icon-folder-star + rotate: false + xy: 353, 241 + size: 18, 14 + orig: 22, 22 + offset: 2, 4 + index: -1 +icon-trash + rotate: false + xy: 357, 224 + size: 12, 16 + orig: 22, 22 + offset: 5, 3 + index: -1 +list-selection + rotate: false + xy: 50, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +vis-blue + rotate: false + xy: 50, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +padded-list-selection + rotate: false + xy: 18, 1 + size: 10, 1 + split: 4, 4, 0, 1 + orig: 10, 1 + offset: 0, 0 + index: -1 +progressbar + rotate: false + xy: 370, 224 + size: 1, 16 + orig: 1, 16 + offset: 0, 0 + index: -1 +progressbar-filled + rotate: false + xy: 387, 225 + size: 1, 16 + orig: 1, 16 + offset: 0, 0 + index: -1 +progressbar-filled-vertical + rotate: false + xy: 342, 207 + size: 16, 1 + orig: 16, 1 + offset: 0, 0 + index: -1 +progressbar-vertical + rotate: false + xy: 1, 2 + size: 16, 1 + orig: 16, 1 + offset: 0, 0 + index: -1 +radio-down + rotate: false + xy: 342, 209 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-down-on + rotate: false + xy: 357, 209 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-off + rotate: false + xy: 281, 104 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 281, 89 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-on-disabled + rotate: false + xy: 281, 74 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-over-off + rotate: false + xy: 372, 227 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +radio-over-on + rotate: false + xy: 372, 212 + size: 14, 14 + orig: 14, 14 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 38, 3 + size: 17, 6 + split: 2, 2, 2, 2 + orig: 17, 6 + offset: 0, 0 + index: -1 +scroll-horizontal + rotate: false + xy: 335, 203 + size: 6, 17 + split: 2, 2, 0, 17 + pad: -1, -1, 2, 2 + orig: 6, 17 + offset: 0, 0 + index: -1 +scroll-knob-horizontal + rotate: false + xy: 281, 119 + size: 6, 17 + split: 2, 2, 0, 17 + pad: -1, -1, 6, 6 + orig: 6, 17 + offset: 0, 0 + index: -1 +scroll-knob-vertical + rotate: false + xy: 20, 3 + size: 17, 6 + split: 6, 6, 2, 2 + orig: 17, 6 + offset: 0, 0 + index: -1 +select-box-list-bg + rotate: false + xy: 52, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window-bg + rotate: false + xy: 52, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +select-down + rotate: false + xy: 284, 154 + size: 7, 4 + orig: 7, 4 + offset: 0, 0 + index: -1 +select-up + rotate: false + xy: 63, 5 + size: 7, 4 + orig: 7, 4 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 54, 1 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +separator + rotate: false + xy: 372, 210 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree-over + rotate: false + xy: 372, 210 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +separator-menu + rotate: false + xy: 359, 207 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 71, 5 + size: 1, 4 + orig: 1, 4 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 256, 113 + size: 11, 22 + orig: 11, 22 + offset: 0, 0 + index: -1 +slider-knob-disabled + rotate: false + xy: 284, 159 + size: 11, 22 + orig: 11, 22 + offset: 0, 0 + index: -1 +slider-knob-down + rotate: false + xy: 256, 90 + size: 11, 22 + orig: 11, 22 + offset: 0, 0 + index: -1 +slider-knob-over + rotate: false + xy: 256, 67 + size: 11, 22 + orig: 11, 22 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 29, 1 + size: 4, 1 + orig: 4, 1 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 34, 1 + size: 4, 1 + orig: 4, 1 + offset: 0, 0 + index: -1 +splitpane-over + rotate: false + xy: 39, 1 + size: 4, 1 + orig: 4, 1 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 296, 156 + size: 1, 4 + orig: 1, 4 + offset: 0, 0 + index: -1 +splitpane-vertical-over + rotate: false + xy: 387, 220 + size: 1, 4 + orig: 1, 4 + offset: 0, 0 + index: -1 +sub-menu + rotate: false + xy: 400, 233 + size: 4, 7 + orig: 4, 7 + offset: 0, 0 + index: -1 +tooltip-bg + rotate: false + xy: 342, 203 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 284, 198 + size: 22, 22 + orig: 22, 22 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 274, 67 + size: 5, 5 + orig: 8, 8 + offset: 1, 2 + index: -1 +tree-plus + rotate: false + xy: 56, 1 + size: 6, 8 + orig: 8, 8 + offset: 1, 0 + index: -1 +tree-selection + rotate: false + xy: 269, 63 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +vis-red + rotate: false + xy: 286, 152 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 292, 155 + size: 3, 3 + orig: 3, 3 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 284, 221 + size: 27, 34 + split: 5, 4, 26, 3 + orig: 27, 34 + offset: 0, 0 + index: -1 +window-noborder + rotate: false + xy: 256, 177 + size: 27, 34 + split: 5, 4, 26, 3 + orig: 27, 34 + offset: 0, 0 + index: -1 +window-resizable + rotate: false + xy: 256, 212 + size: 27, 43 + split: 5, 12, 3, 12 + pad: 5, 5, 25, 3 + orig: 27, 43 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.json b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.json new file mode 100644 index 0000000..54aad2c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.json @@ -0,0 +1,169 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: default.fnt }, + small-font: {file: font-small.fnt } +}, +com.badlogic.gdx.graphics.Color: { + black: {a: 1, b: 0, g: 0, r: 0 }, + white: {a: 1, b: 1, g: 1, r: 1 }, + green: {a: 1, b: 0, g: 1, r: 0 }, + red: {a: 1, b: 0, g: 0, r: 1 }, + blue: {a: 1, b: 1, g: 0, r: 0 }, + grey: {a: 1, b: 0.32, g: 0.32, r: 0.32 }, + vis-blue: {a: 1, b: 0.886, g: 0.631, r: 0.105 }, + vis-red: {a: 1, b: 0.047, g: 0, r: 0.862 }, + menuitem: {a: 1, b: 0.65, g: 0.65, r: 0.65 }, + link-label: {a: 1, b: 0.886, g: 0.631, r: 0.105 } +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: {name: white, color: {r: 0, g: 0, b: 0, a: 0.45} } +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: {down: button-down, up: button }, + blue: {down: button-blue-down, up: button-blue }, + toggle: {checked: button-down, down: button-down, up: button } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: {over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, down: button-down, up: button }, + blue: {over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, down: button-blue-down, up: button-blue }, + toggle: {font: default-font, fontColor: white, checked: button-down, down: button-down, up: button, over: button-over, disabled: button, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + list: {vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal }, + default: {background: border, vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: {background: default-select, scrollStyle: default, listStyle: {font: default-font, selection: padded-list-selection, background: select-box-list-bg}, font: default-font, fontColor: white, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: {handle: splitpane-vertical }, + default-horizontal: {handle: splitpane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: {titleFont: default-font, background: window, titleFontColor: white }, + resizable: {background: window-resizable, titleFont: default-font, titleFontColor: white }, + noborder: {background: window-noborder, titleFont: default-font, titleFontColor: white }, + dialog: {stageBackground: dialogDim, titleFont: default-font, background: window, titleFontColor: white } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: {background: progressbar, knob: progressbar-filled, knobBefore: progressbar-filled }, + default-vertical: {background: progressbar-vertical, knob: progressbar-filled-vertical, knobBefore: progressbar-filled-vertical } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: {background: slider, knob: slider-knob, knobOver: slider-knob-over, knobDown: slider-knob-down, disabledKnob: slider-knob-disabled }, + default-vertical: {background: slider-vertical, knob: slider-knob, knobOver: slider-knob-over, knobDown: slider-knob-down, disabledKnob: slider-knob-disabled } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: {font: default-font, fontColor: white }, + link-label: {fontColor: link-label, font: default-font }, + small: {font: small-font, fontColor: white }, + menuitem-shortcut: {font: default-font, fontColor: menuitem } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: {font: default-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, cursor: cursor, messageFont: default-font, messageFontColor: grey }, + small: {font: small-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, cursor: cursor, messageFont: default-font, messageFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: {checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white, disabledFontColor: grey }, + radio: {checkboxOn: radio-on, checkboxOff: radio-off, font: default-font, fontColor: white, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: {fontColorUnselected: white, selection: padded-list-selection, fontColorSelected: white, font: default-font } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: {background: default-pane, knob: touchpad-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: {minus: tree-minus, plus: tree-plus, selection: tree-selection, over: tree-over } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: {background: default-pane, label: {font: default-font, fontColor: white} } +}, +com.kotcrab.vis.ui.Sizes: { + default: {scaleFactor: 1, spacingBottom: 8, spacingRight: 6, buttonBarSpacing: 10, menuItemIconSize: 22, numberSelectorButtonSize: 12, numberSelectorButtonsWidth: 12, numberSelectorFieldSize: 40, numberSelectorFieldRightPadding: 1 }, + x2: {scaleFactor: 2, spacingBottom: 8, spacingRight: 6, buttonBarSpacing: 10, menuItemIconSize: 44, numberSelectorButtonSize: 24, numberSelectorButtonsWidth: 20, numberSelectorFieldSize: 80, numberSelectorFieldRightPadding: 5 } +}, +com.kotcrab.vis.ui.widget.VisTextField$VisTextFieldStyle: { + default: {focusBorder: border, font: default-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, backgroundOver: textfield-over, errorBorder: border-error, cursor: cursor }, + small: {focusBorder: border, font: small-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, backgroundOver: textfield-over, errorBorder: border-error, cursor: cursor } +}, +com.kotcrab.vis.ui.widget.VisTextButton$VisTextButtonStyle: { + default: {focusBorder: border, down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + toggle: {focusBorder: border, checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey }, + blue: {focusBorder: border-dark-blue, down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + menu-bar: {over: button-down, font: default-font, fontColor: white, down: button-down, up: button, disabled: button, disabledFontColor: grey } +}, +com.kotcrab.vis.ui.widget.VisImageButton$VisImageButtonStyle: { + default: {down: button-down, up: button, over: button-over, disabled: button, focusBorder: border }, + blue: {down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button-blue, focusBorder: border-dark-blue }, + toggle: {checked: button-down, focusBorder: border, down: button-down, up: button, over: button-over, disabled: button }, + close: {down: button-red, up: button, over: button-over, imageUp: icon-close, disabled: button }, + close-active-tab: {down: button-red, imageUp: icon-close, up: button-blue, over: button-blue-over, disabled: button-blue }, + close-window: {up: button-window-bg, down: button-red, over: button-over, imageUp: icon-close, disabled: button } +}, +com.kotcrab.vis.ui.widget.VisImageTextButton$VisImageTextButtonStyle: { + default: {down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, focusBorder: border }, + toggle: {checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey, focusBorder: border }, + blue: {down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, focusBorder: border-dark-blue }, + default-noborder: {down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + toggle-noborder: {checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey }, + menu-bar: {over: button-down, font: default-font, fontColor: white, down: button-down, up: button, disabled: button, disabledFontColor: grey } +}, +com.kotcrab.vis.ui.widget.VisCheckBox$VisCheckBoxStyle: { + default: {checkboxOver: check-over-off, checkboxOnOver: check-over-on, checkboxOffDown: check-down, checkboxOnDown: check-down-on, checkboxOffDisabled: check-off, checkboxOnDisabled: check-on-disabled, errorBorder: border-error, focusBorder: border, checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white, disabledFontColor: grey }, + radio: {checkboxOver: radio-over-off, checkboxOnOver: radio-over-on, checkboxOffDown: radio-down, checkboxOnDown: radio-down-on, checkboxOffDisabled: radio-off, checkboxOnDisabled: radio-on-disabled, errorBorder: border-circle-error, focusBorder: border-circle, checkboxOn: radio-on, checkboxOff: radio-off, font: default-font, fontColor: white, disabledFontColor: grey } +}, +com.kotcrab.vis.ui.widget.PopupMenu$PopupMenuStyle: { + noborder: {background: button }, + default: {background: button, border: border } +}, +com.kotcrab.vis.ui.widget.Menu$MenuStyle: { + default: {background: button, border: border, openButtonStyleName: "menu-bar" }, + noborder: {background: button, openButtonStyleName: "menu-bar" } +}, +com.kotcrab.vis.ui.widget.MenuBar$MenuBarStyle: { + default: {background: menu-bg } +}, +com.kotcrab.vis.ui.widget.Separator$SeparatorStyle: { + default: {background: separator, thickness: 4 }, + menu: {background: separator-menu, thickness: 3 } +}, +com.kotcrab.vis.ui.widget.VisSplitPane$VisSplitPaneStyle: { + default-vertical: {handle: splitpane-vertical, handleOver: splitpane-vertical-over }, + default-horizontal: {handle: splitpane, handleOver: splitpane-over } +}, +com.kotcrab.vis.ui.widget.MenuItem$MenuItemStyle: { + default: {subMenu: sub-menu, down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + blue: {down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + toggle: {checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey, subMenu: sub-menu } +}, +com.kotcrab.vis.ui.widget.NumberSelector$NumberSelectorStyle: { + default: {down: select-down, up: select-up } +}, +com.kotcrab.vis.ui.widget.Tooltip$TooltipStyle: { + default: {background: tooltip-bg } +}, +com.kotcrab.vis.ui.widget.LinkLabel$LinkLabelStyle: { + default: {fontColor: link-label, underline: white, font: default-font } +}, +com.kotcrab.vis.ui.widget.tabbedpane.TabbedPane$TabbedPaneStyle: { + default: {background: menu-bg, separatorBar: list-selection, buttonStyle: {down: button-down, up: button, checked: button-down, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey} } +}, +com.kotcrab.vis.ui.widget.file.FileChooserStyle: { + default: {highlight: list-selection, popupMenuStyleName: "default", iconArrowLeft: icon-arrow-left, iconArrowRight: icon-arrow-right, iconFolder: icon-folder, iconFolderParent: icon-folder-parent, iconFolderNew: icon-folder-new, iconDrive: icon-drive, iconFolderStar: icon-folder-star, iconTrash: icon-trash, iconFileText: icon-file-text, iconFileImage: icon-file-image, iconFilePdf: icon-file-pdf, iconFileAudio: icon-file-audio } +}, +com.kotcrab.vis.ui.widget.color.ColorPickerWidgetStyle: { + default: {barSelector: color-picker-bar-selector, cross: color-picker-cross, iconArrowRight: icon-arrow-right, verticalSelector: color-picker-selector-vertical, horizontalSelector: color-picker-selector-horizontal } +}, +com.kotcrab.vis.ui.widget.color.ColorPickerStyle: { + default: {pickerStyle: {barSelector: color-picker-bar-selector, cross: color-picker-cross, iconArrowRight: icon-arrow-right, verticalSelector: color-picker-selector-vertical, horizontalSelector: color-picker-selector-horizontal}, titleFont: default-font, background: window, titleFontColor: white } +}, +com.kotcrab.vis.ui.util.form.SimpleFormValidator$FormValidatorStyle: { + default: {errorLabelColor: vis-red, validLabelColor: white }, + smooth: {colorTransitionDuration: 0.3, errorLabelColor: vis-red, validLabelColor: white } +}, +com.kotcrab.vis.ui.util.adapter.SimpleListAdapter$SimpleListAdapterStyle: { + default: {background: window-bg, selection: list-selection } +} + +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.png b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.png new file mode 100644 index 0000000..b165045 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/skin/x1/uiskin.png differ diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x2/default.fnt b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/default.fnt new file mode 100644 index 0000000..bd4a593 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/default.fnt @@ -0,0 +1,1534 @@ +info face="Vis Open Sans" size=30 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=0,0,0,0 spacing=0,0 +common lineHeight=42 base=33 scaleW=512 scaleH=256 pages=1 packed=0 +page id=0 file="default.png" +chars count=279 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=33 xadvance=8 page=0 chnl=0 +char id=942 x=0 y=0 width=15 height=33 xoffset=2 yoffset=8 xadvance=18 page=0 chnl=0 +char id=968 x=15 y=0 width=21 height=32 xoffset=2 yoffset=9 xadvance=23 page=0 chnl=0 +char id=946 x=36 y=0 width=17 height=32 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=1092 x=53 y=0 width=20 height=32 xoffset=1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=124 x=73 y=0 width=4 height=32 xoffset=7 yoffset=9 xadvance=17 page=0 chnl=0 +char id=958 x=77 y=0 width=14 height=31 xoffset=1 yoffset=9 xadvance=14 page=0 chnl=0 +char id=950 x=91 y=0 width=14 height=31 xoffset=1 yoffset=9 xadvance=14 page=0 chnl=0 +char id=1049 x=105 y=0 width=20 height=30 xoffset=2 yoffset=4 xadvance=23 page=0 chnl=0 +char id=217 x=125 y=0 width=19 height=30 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=210 x=144 y=0 width=22 height=30 xoffset=1 yoffset=4 xadvance=23 page=0 chnl=0 +char id=204 x=166 y=0 width=8 height=30 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=200 x=174 y=0 width=14 height=30 xoffset=3 yoffset=4 xadvance=17 page=0 chnl=0 +char id=192 x=188 y=0 width=20 height=30 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 +char id=218 x=208 y=0 width=19 height=30 xoffset=2 yoffset=4 xadvance=22 page=0 chnl=0 +char id=205 x=227 y=0 width=8 height=30 xoffset=2 yoffset=4 xadvance=8 page=0 chnl=0 +char id=201 x=235 y=0 width=14 height=30 xoffset=3 yoffset=4 xadvance=17 page=0 chnl=0 +char id=193 x=249 y=0 width=20 height=30 xoffset=0 yoffset=4 xadvance=19 page=0 chnl=0 +char id=377 x=269 y=0 width=16 height=30 xoffset=1 yoffset=4 xadvance=17 page=0 chnl=0 +char id=346 x=285 y=0 width=15 height=30 xoffset=1 yoffset=4 xadvance=16 page=0 chnl=0 +char id=211 x=300 y=0 width=22 height=30 xoffset=1 yoffset=4 xadvance=23 page=0 chnl=0 +char id=323 x=322 y=0 width=19 height=30 xoffset=3 yoffset=4 xadvance=23 page=0 chnl=0 +char id=280 x=341 y=0 width=14 height=30 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=0 +char id=262 x=355 y=0 width=19 height=30 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=260 x=374 y=0 width=21 height=30 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=106 x=395 y=0 width=10 height=30 xoffset=-2 yoffset=11 xadvance=8 page=0 chnl=0 +char id=1065 x=405 y=0 width=30 height=29 xoffset=2 yoffset=11 xadvance=31 page=0 chnl=0 +char id=1062 x=435 y=0 width=21 height=29 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=1025 x=456 y=0 width=14 height=29 xoffset=3 yoffset=5 xadvance=17 page=0 chnl=0 +char id=1044 x=470 y=0 width=22 height=29 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 +char id=220 x=492 y=0 width=19 height=29 xoffset=2 yoffset=5 xadvance=22 page=0 chnl=0 +char id=214 x=0 y=33 width=22 height=29 xoffset=1 yoffset=5 xadvance=23 page=0 chnl=0 +char id=196 x=22 y=33 width=20 height=29 xoffset=0 yoffset=5 xadvance=19 page=0 chnl=0 +char id=209 x=42 y=33 width=19 height=29 xoffset=3 yoffset=5 xadvance=23 page=0 chnl=0 +char id=74 x=61 y=33 width=12 height=29 xoffset=-3 yoffset=11 xadvance=8 page=0 chnl=0 +char id=379 x=73 y=33 width=16 height=28 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=125 x=89 y=33 width=11 height=28 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=93 x=100 y=33 width=9 height=28 xoffset=0 yoffset=11 xadvance=10 page=0 chnl=0 +char id=91 x=109 y=33 width=9 height=28 xoffset=2 yoffset=11 xadvance=10 page=0 chnl=0 +char id=41 x=118 y=33 width=8 height=28 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=0 +char id=40 x=126 y=33 width=8 height=28 xoffset=1 yoffset=11 xadvance=9 page=0 chnl=0 +char id=81 x=134 y=33 width=22 height=28 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=944 x=156 y=33 width=16 height=27 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=912 x=172 y=33 width=11 height=27 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=36 x=183 y=33 width=16 height=27 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=123 x=199 y=33 width=12 height=27 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 +char id=974 x=211 y=33 width=22 height=26 xoffset=1 yoffset=8 xadvance=23 page=0 chnl=0 +char id=973 x=233 y=33 width=16 height=26 xoffset=2 yoffset=8 xadvance=18 page=0 chnl=0 +char id=972 x=249 y=33 width=17 height=26 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=943 x=266 y=33 width=9 height=26 xoffset=2 yoffset=8 xadvance=10 page=0 chnl=0 +char id=941 x=275 y=33 width=13 height=26 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=940 x=288 y=33 width=18 height=26 xoffset=1 yoffset=8 xadvance=18 page=0 chnl=0 +char id=64 x=306 y=33 width=26 height=26 xoffset=1 yoffset=11 xadvance=27 page=0 chnl=0 +char id=967 x=332 y=33 width=18 height=25 xoffset=-1 yoffset=16 xadvance=16 page=0 chnl=0 +char id=961 x=350 y=33 width=16 height=25 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=956 x=366 y=33 width=16 height=25 xoffset=2 yoffset=16 xadvance=19 page=0 chnl=0 +char id=955 x=382 y=33 width=19 height=25 xoffset=-1 yoffset=9 xadvance=16 page=0 chnl=0 +char id=952 x=401 y=33 width=17 height=25 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=951 x=418 y=33 width=15 height=25 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=948 x=433 y=33 width=17 height=25 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=947 x=450 y=33 width=16 height=25 xoffset=0 yoffset=16 xadvance=15 page=0 chnl=0 +char id=911 x=466 y=33 width=25 height=25 xoffset=-1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=910 x=0 y=62 width=23 height=25 xoffset=-1 yoffset=9 xadvance=21 page=0 chnl=0 +char id=908 x=23 y=62 width=25 height=25 xoffset=-1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=906 x=48 y=62 width=10 height=25 xoffset=-1 yoffset=9 xadvance=11 page=0 chnl=0 +char id=905 x=58 y=62 width=24 height=25 xoffset=-1 yoffset=9 xadvance=24 page=0 chnl=0 +char id=904 x=82 y=62 width=20 height=25 xoffset=-1 yoffset=9 xadvance=19 page=0 chnl=0 +char id=902 x=102 y=62 width=20 height=25 xoffset=0 yoffset=9 xadvance=19 page=0 chnl=0 +char id=1091 x=122 y=62 width=16 height=25 xoffset=0 yoffset=16 xadvance=15 page=0 chnl=0 +char id=1088 x=138 y=62 width=16 height=25 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=1081 x=154 y=62 width=16 height=25 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=249 x=170 y=62 width=15 height=25 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=242 x=185 y=62 width=17 height=25 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=236 x=202 y=62 width=8 height=25 xoffset=-1 yoffset=9 xadvance=8 page=0 chnl=0 +char id=232 x=210 y=62 width=16 height=25 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=224 x=226 y=62 width=15 height=25 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=250 x=241 y=62 width=15 height=25 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=237 x=256 y=62 width=8 height=25 xoffset=2 yoffset=9 xadvance=8 page=0 chnl=0 +char id=233 x=264 y=62 width=16 height=25 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=225 x=280 y=62 width=15 height=25 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=223 x=295 y=62 width=17 height=25 xoffset=2 yoffset=9 xadvance=19 page=0 chnl=0 +char id=378 x=312 y=62 width=13 height=25 xoffset=1 yoffset=9 xadvance=14 page=0 chnl=0 +char id=347 x=325 y=62 width=13 height=25 xoffset=1 yoffset=9 xadvance=14 page=0 chnl=0 +char id=243 x=338 y=62 width=17 height=25 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=324 x=355 y=62 width=15 height=25 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=322 x=370 y=62 width=10 height=25 xoffset=0 yoffset=9 xadvance=8 page=0 chnl=0 +char id=281 x=380 y=62 width=16 height=25 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=263 x=396 y=62 width=14 height=25 xoffset=1 yoffset=9 xadvance=14 page=0 chnl=0 +char id=261 x=410 y=62 width=16 height=25 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=121 x=426 y=62 width=16 height=25 xoffset=0 yoffset=16 xadvance=15 page=0 chnl=0 +char id=113 x=442 y=62 width=16 height=25 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=112 x=458 y=62 width=16 height=25 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=108 x=474 y=62 width=5 height=25 xoffset=2 yoffset=9 xadvance=8 page=0 chnl=0 +char id=107 x=479 y=62 width=15 height=25 xoffset=2 yoffset=9 xadvance=16 page=0 chnl=0 +char id=104 x=494 y=62 width=15 height=25 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=103 x=0 y=87 width=17 height=25 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=102 x=17 y=87 width=14 height=25 xoffset=0 yoffset=9 xadvance=10 page=0 chnl=0 +char id=100 x=31 y=87 width=16 height=25 xoffset=1 yoffset=9 xadvance=18 page=0 chnl=0 +char id=98 x=47 y=87 width=16 height=25 xoffset=2 yoffset=9 xadvance=18 page=0 chnl=0 +char id=8679 x=63 y=87 width=16 height=24 xoffset=5 yoffset=10 xadvance=25 page=0 chnl=0 +char id=8984 x=79 y=87 width=25 height=24 xoffset=3 yoffset=10 xadvance=30 page=0 chnl=0 +char id=971 x=104 y=87 width=16 height=24 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=962 x=120 y=87 width=14 height=24 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=970 x=134 y=87 width=11 height=24 xoffset=0 yoffset=10 xadvance=10 page=0 chnl=0 +char id=966 x=145 y=87 width=21 height=24 xoffset=1 yoffset=17 xadvance=22 page=0 chnl=0 +char id=1097 x=166 y=87 width=26 height=24 xoffset=2 yoffset=16 xadvance=27 page=0 chnl=0 +char id=1094 x=192 y=87 width=18 height=24 xoffset=2 yoffset=16 xadvance=19 page=0 chnl=0 +char id=1105 x=210 y=87 width=16 height=24 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=1076 x=226 y=87 width=18 height=24 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 +char id=1073 x=244 y=87 width=17 height=24 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=252 x=261 y=87 width=15 height=24 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=246 x=276 y=87 width=17 height=24 xoffset=1 yoffset=10 xadvance=18 page=0 chnl=0 +char id=228 x=293 y=87 width=15 height=24 xoffset=1 yoffset=10 xadvance=17 page=0 chnl=0 +char id=241 x=308 y=87 width=15 height=24 xoffset=2 yoffset=10 xadvance=18 page=0 chnl=0 +char id=937 x=323 y=87 width=22 height=23 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=936 x=345 y=87 width=23 height=23 xoffset=1 yoffset=11 xadvance=24 page=0 chnl=0 +char id=935 x=368 y=87 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=934 x=386 y=87 width=23 height=23 xoffset=1 yoffset=11 xadvance=24 page=0 chnl=0 +char id=933 x=409 y=87 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=932 x=427 y=87 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=931 x=445 y=87 width=17 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=929 x=462 y=87 width=16 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=928 x=478 y=87 width=19 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=927 x=0 y=112 width=22 height=23 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=926 x=22 y=112 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=925 x=38 y=112 width=19 height=23 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=924 x=57 y=112 width=24 height=23 xoffset=2 yoffset=11 xadvance=27 page=0 chnl=0 +char id=923 x=81 y=112 width=19 height=23 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 +char id=922 x=100 y=112 width=17 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=921 x=117 y=112 width=5 height=23 xoffset=2 yoffset=11 xadvance=8 page=0 chnl=0 +char id=920 x=122 y=112 width=22 height=23 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=919 x=144 y=112 width=19 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=918 x=163 y=112 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=917 x=179 y=112 width=14 height=23 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=0 +char id=916 x=193 y=112 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=915 x=211 y=112 width=14 height=23 xoffset=3 yoffset=11 xadvance=16 page=0 chnl=0 +char id=914 x=225 y=112 width=17 height=23 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=913 x=242 y=112 width=20 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1071 x=262 y=112 width=18 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1070 x=280 y=112 width=30 height=23 xoffset=2 yoffset=11 xadvance=32 page=0 chnl=0 +char id=1069 x=310 y=112 width=19 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1068 x=329 y=112 width=17 height=23 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1067 x=346 y=112 width=23 height=23 xoffset=2 yoffset=11 xadvance=26 page=0 chnl=0 +char id=1066 x=369 y=112 width=21 height=23 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 +char id=1064 x=390 y=112 width=28 height=23 xoffset=2 yoffset=11 xadvance=31 page=0 chnl=0 +char id=1063 x=418 y=112 width=18 height=23 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=0 +char id=1061 x=436 y=112 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=1060 x=454 y=112 width=23 height=23 xoffset=1 yoffset=11 xadvance=24 page=0 chnl=0 +char id=1059 x=477 y=112 width=20 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1058 x=0 y=135 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=1057 x=18 y=135 width=19 height=23 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1056 x=37 y=135 width=16 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=1055 x=53 y=135 width=19 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=1054 x=72 y=135 width=22 height=23 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=1053 x=94 y=135 width=19 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=1052 x=113 y=135 width=24 height=23 xoffset=2 yoffset=11 xadvance=27 page=0 chnl=0 +char id=1051 x=137 y=135 width=20 height=23 xoffset=0 yoffset=11 xadvance=21 page=0 chnl=0 +char id=1050 x=157 y=135 width=17 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=1048 x=174 y=135 width=20 height=23 xoffset=2 yoffset=11 xadvance=23 page=0 chnl=0 +char id=1047 x=194 y=135 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=1046 x=210 y=135 width=26 height=23 xoffset=0 yoffset=11 xadvance=25 page=0 chnl=0 +char id=1045 x=236 y=135 width=14 height=23 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=0 +char id=1043 x=250 y=135 width=14 height=23 xoffset=3 yoffset=11 xadvance=16 page=0 chnl=0 +char id=1042 x=264 y=135 width=17 height=23 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=1041 x=281 y=135 width=16 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=1040 x=297 y=135 width=20 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=321 x=317 y=135 width=17 height=23 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 +char id=380 x=334 y=135 width=13 height=23 xoffset=1 yoffset=11 xadvance=14 page=0 chnl=0 +char id=127 x=347 y=135 width=14 height=23 xoffset=3 yoffset=11 xadvance=18 page=0 chnl=0 +char id=38 x=361 y=135 width=22 height=23 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=35 x=383 y=135 width=20 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=37 x=403 y=135 width=24 height=23 xoffset=1 yoffset=11 xadvance=25 page=0 chnl=0 +char id=92 x=427 y=135 width=12 height=23 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=47 x=439 y=135 width=12 height=23 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=191 x=451 y=135 width=14 height=23 xoffset=0 yoffset=17 xadvance=13 page=0 chnl=0 +char id=63 x=465 y=135 width=14 height=23 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=33 x=479 y=135 width=5 height=23 xoffset=2 yoffset=11 xadvance=8 page=0 chnl=0 +char id=48 x=484 y=135 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=57 x=0 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=56 x=16 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=55 x=32 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=54 x=48 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=53 x=64 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=52 x=80 y=158 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=51 x=98 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=50 x=114 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=49 x=130 y=158 width=10 height=23 xoffset=2 yoffset=11 xadvance=17 page=0 chnl=0 +char id=105 x=140 y=158 width=5 height=23 xoffset=2 yoffset=11 xadvance=8 page=0 chnl=0 +char id=90 x=145 y=158 width=16 height=23 xoffset=1 yoffset=11 xadvance=17 page=0 chnl=0 +char id=89 x=161 y=158 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=88 x=179 y=158 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=87 x=197 y=158 width=29 height=23 xoffset=0 yoffset=11 xadvance=28 page=0 chnl=0 +char id=86 x=226 y=158 width=19 height=23 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 +char id=85 x=245 y=158 width=19 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=84 x=264 y=158 width=18 height=23 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=83 x=282 y=158 width=15 height=23 xoffset=1 yoffset=11 xadvance=16 page=0 chnl=0 +char id=82 x=297 y=158 width=17 height=23 xoffset=3 yoffset=11 xadvance=19 page=0 chnl=0 +char id=80 x=314 y=158 width=16 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=79 x=330 y=158 width=22 height=23 xoffset=1 yoffset=11 xadvance=23 page=0 chnl=0 +char id=78 x=352 y=158 width=19 height=23 xoffset=3 yoffset=11 xadvance=23 page=0 chnl=0 +char id=77 x=371 y=158 width=24 height=23 xoffset=2 yoffset=11 xadvance=27 page=0 chnl=0 +char id=76 x=395 y=158 width=14 height=23 xoffset=3 yoffset=11 xadvance=16 page=0 chnl=0 +char id=75 x=409 y=158 width=17 height=23 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=73 x=426 y=158 width=5 height=23 xoffset=2 yoffset=11 xadvance=8 page=0 chnl=0 +char id=72 x=431 y=158 width=19 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=71 x=450 y=158 width=20 height=23 xoffset=1 yoffset=11 xadvance=22 page=0 chnl=0 +char id=70 x=470 y=158 width=14 height=23 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=69 x=484 y=158 width=14 height=23 xoffset=3 yoffset=11 xadvance=17 page=0 chnl=0 +char id=68 x=0 y=181 width=20 height=23 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=67 x=20 y=181 width=19 height=23 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=66 x=39 y=181 width=17 height=23 xoffset=2 yoffset=11 xadvance=19 page=0 chnl=0 +char id=65 x=56 y=181 width=20 height=23 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=116 x=76 y=181 width=12 height=22 xoffset=0 yoffset=12 xadvance=11 page=0 chnl=0 +char id=59 x=88 y=181 width=7 height=21 xoffset=0 yoffset=17 xadvance=8 page=0 chnl=0 +char id=8997 x=95 y=181 width=32 height=19 xoffset=2 yoffset=15 xadvance=35 page=0 chnl=0 +char id=969 x=127 y=181 width=22 height=18 xoffset=1 yoffset=16 xadvance=23 page=0 chnl=0 +char id=965 x=149 y=181 width=16 height=18 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=964 x=165 y=181 width=15 height=18 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=963 x=180 y=181 width=18 height=18 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=960 x=198 y=181 width=21 height=18 xoffset=0 yoffset=16 xadvance=20 page=0 chnl=0 +char id=959 x=219 y=181 width=17 height=18 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=957 x=236 y=181 width=16 height=18 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=954 x=252 y=181 width=15 height=18 xoffset=2 yoffset=16 xadvance=16 page=0 chnl=0 +char id=953 x=267 y=181 width=9 height=18 xoffset=2 yoffset=16 xadvance=10 page=0 chnl=0 +char id=949 x=276 y=181 width=13 height=18 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=945 x=289 y=181 width=18 height=18 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=1103 x=307 y=181 width=16 height=18 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 +char id=1102 x=323 y=181 width=23 height=18 xoffset=2 yoffset=16 xadvance=25 page=0 chnl=0 +char id=1101 x=346 y=181 width=15 height=18 xoffset=0 yoffset=16 xadvance=15 page=0 chnl=0 +char id=1100 x=361 y=181 width=16 height=18 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=1099 x=377 y=181 width=20 height=18 xoffset=2 yoffset=16 xadvance=23 page=0 chnl=0 +char id=1098 x=397 y=181 width=21 height=18 xoffset=0 yoffset=16 xadvance=21 page=0 chnl=0 +char id=1096 x=418 y=181 width=24 height=18 xoffset=2 yoffset=16 xadvance=27 page=0 chnl=0 +char id=1095 x=442 y=181 width=15 height=18 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=1093 x=457 y=181 width=17 height=18 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=1090 x=474 y=181 width=15 height=18 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=1087 x=489 y=181 width=16 height=18 xoffset=2 yoffset=16 xadvance=19 page=0 chnl=0 +char id=1086 x=0 y=204 width=17 height=18 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=1085 x=17 y=204 width=16 height=18 xoffset=2 yoffset=16 xadvance=19 page=0 chnl=0 +char id=1084 x=33 y=204 width=19 height=18 xoffset=2 yoffset=16 xadvance=22 page=0 chnl=0 +char id=1083 x=52 y=204 width=16 height=18 xoffset=0 yoffset=16 xadvance=17 page=0 chnl=0 +char id=1082 x=68 y=204 width=15 height=18 xoffset=2 yoffset=16 xadvance=16 page=0 chnl=0 +char id=1080 x=83 y=204 width=16 height=18 xoffset=2 yoffset=16 xadvance=19 page=0 chnl=0 +char id=1079 x=99 y=204 width=14 height=18 xoffset=0 yoffset=16 xadvance=14 page=0 chnl=0 +char id=1078 x=113 y=204 width=23 height=18 xoffset=0 yoffset=16 xadvance=22 page=0 chnl=0 +char id=1077 x=136 y=204 width=16 height=18 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=1075 x=152 y=204 width=12 height=18 xoffset=2 yoffset=16 xadvance=13 page=0 chnl=0 +char id=1074 x=164 y=204 width=16 height=18 xoffset=2 yoffset=16 xadvance=17 page=0 chnl=0 +char id=1072 x=180 y=204 width=15 height=18 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=122 x=195 y=204 width=13 height=18 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=120 x=208 y=204 width=17 height=18 xoffset=0 yoffset=16 xadvance=16 page=0 chnl=0 +char id=119 x=225 y=204 width=24 height=18 xoffset=0 yoffset=16 xadvance=23 page=0 chnl=0 +char id=118 x=249 y=204 width=16 height=18 xoffset=0 yoffset=16 xadvance=15 page=0 chnl=0 +char id=117 x=265 y=204 width=15 height=18 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=115 x=280 y=204 width=13 height=18 xoffset=1 yoffset=16 xadvance=14 page=0 chnl=0 +char id=114 x=293 y=204 width=11 height=18 xoffset=2 yoffset=16 xadvance=12 page=0 chnl=0 +char id=111 x=304 y=204 width=17 height=18 xoffset=1 yoffset=16 xadvance=18 page=0 chnl=0 +char id=110 x=321 y=204 width=15 height=18 xoffset=2 yoffset=16 xadvance=18 page=0 chnl=0 +char id=109 x=336 y=204 width=25 height=18 xoffset=2 yoffset=16 xadvance=28 page=0 chnl=0 +char id=101 x=361 y=204 width=16 height=18 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=97 x=377 y=204 width=15 height=18 xoffset=1 yoffset=16 xadvance=17 page=0 chnl=0 +char id=1089 x=392 y=204 width=14 height=17 xoffset=1 yoffset=17 xadvance=14 page=0 chnl=0 +char id=43 x=406 y=204 width=16 height=17 xoffset=1 yoffset=14 xadvance=17 page=0 chnl=0 +char id=58 x=422 y=204 width=5 height=17 xoffset=2 yoffset=17 xadvance=8 page=0 chnl=0 +char id=99 x=427 y=204 width=14 height=17 xoffset=1 yoffset=17 xadvance=14 page=0 chnl=0 +char id=94 x=441 y=204 width=17 height=16 xoffset=0 yoffset=10 xadvance=16 page=0 chnl=0 +char id=42 x=458 y=204 width=16 height=15 xoffset=1 yoffset=9 xadvance=17 page=0 chnl=0 +char id=62 x=474 y=204 width=16 height=15 xoffset=1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=60 x=490 y=204 width=16 height=15 xoffset=1 yoffset=15 xadvance=17 page=0 chnl=0 +char id=61 x=0 y=222 width=16 height=10 xoffset=1 yoffset=17 xadvance=17 page=0 chnl=0 +char id=39 x=16 y=222 width=4 height=10 xoffset=2 yoffset=11 xadvance=7 page=0 chnl=0 +char id=34 x=20 y=222 width=11 height=10 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=44 x=31 y=222 width=7 height=9 xoffset=0 yoffset=29 xadvance=7 page=0 chnl=0 +char id=8226 x=38 y=222 width=8 height=9 xoffset=2 yoffset=17 xadvance=11 page=0 chnl=0 +char id=96 x=46 y=222 width=8 height=7 xoffset=5 yoffset=9 xadvance=17 page=0 chnl=0 +char id=903 x=54 y=222 width=5 height=5 xoffset=2 yoffset=20 xadvance=8 page=0 chnl=0 +char id=126 x=59 y=222 width=16 height=5 xoffset=1 yoffset=20 xadvance=17 page=0 chnl=0 +char id=45 x=75 y=222 width=9 height=5 xoffset=1 yoffset=23 xadvance=10 page=0 chnl=0 +char id=46 x=84 y=222 width=5 height=5 xoffset=2 yoffset=29 xadvance=8 page=0 chnl=0 +char id=95 x=89 y=222 width=16 height=4 xoffset=-1 yoffset=35 xadvance=13 page=0 chnl=0 +kernings count=1249 +kerning first=84 second=45 amount=-1 +kerning first=44 second=85 amount=-1 +kerning first=34 second=86 amount=1 +kerning first=80 second=88 amount=-1 +kerning first=84 second=97 amount=-2 +kerning first=87 second=101 amount=-1 +kerning first=34 second=109 amount=-1 +kerning first=39 second=112 amount=-1 +kerning first=87 second=113 amount=-1 +kerning first=39 second=115 amount=-1 +kerning first=232 second=120 amount=-1 +kerning first=89 second=192 amount=-2 +kerning first=1043 second=1088 amount=-1 +kerning first=46 second=217 amount=-1 +kerning first=44 second=218 amount=-1 +kerning first=46 second=220 amount=-1 +kerning first=114 second=225 amount=-1 +kerning first=39 second=324 amount=-1 +kerning first=89 second=380 amount=-1 +kerning first=34 second=99 amount=-2 +kerning first=34 second=902 amount=-2 +kerning first=927 second=916 amount=-1 +kerning first=1102 second=1078 amount=-1 +kerning first=916 second=927 amount=-1 +kerning first=46 second=1060 amount=-1 +kerning first=923 second=932 amount=-2 +kerning first=902 second=933 amount=-2 +kerning first=927 second=935 amount=-1 +kerning first=916 second=936 amount=-1 +kerning first=932 second=937 amount=-1 +kerning first=910 second=941 amount=-1 +kerning first=932 second=942 amount=-1 +kerning first=910 second=944 amount=-1 +kerning first=39 second=945 amount=-1 +kerning first=972 second=947 amount=-1 +kerning first=34 second=948 amount=-1 +kerning first=34 second=949 amount=-1 +kerning first=34 second=950 amount=-1 +kerning first=44 second=952 amount=-1 +kerning first=933 second=953 amount=-1 +kerning first=929 second=955 amount=-1 +kerning first=910 second=956 amount=-1 +kerning first=915 second=957 amount=-1 +kerning first=955 second=960 amount=-1 +kerning first=915 second=961 amount=-1 +kerning first=34 second=962 amount=-1 +kerning first=34 second=963 amount=-1 +kerning first=955 second=964 amount=-1 +kerning first=910 second=965 amount=-1 +kerning first=915 second=967 amount=-1 +kerning first=932 second=968 amount=-1 +kerning first=910 second=969 amount=-1 +kerning first=915 second=971 amount=-1 +kerning first=910 second=973 amount=-1 +kerning first=910 second=974 amount=-1 +kerning first=1060 second=1047 amount=-1 +kerning first=1066 second=1091 amount=-1 +kerning first=1060 second=1069 amount=-1 +kerning first=39 second=1072 amount=-1 +kerning first=34 second=1076 amount=-2 +kerning first=1058 second=1080 amount=-1 +kerning first=34 second=1083 amount=-2 +kerning first=1058 second=1087 amount=-1 +kerning first=1082 second=1089 amount=-1 +kerning first=1043 second=1094 amount=-1 +kerning first=1058 second=1102 amount=-1 +kerning first=1058 second=1105 amount=-2 +kerning first=86 second=100 amount=-1 +kerning first=933 second=969 amount=-1 +kerning first=39 second=224 amount=-2 +kerning first=39 second=228 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=114 second=99 amount=-1 +kerning first=66 second=196 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=1082 second=1105 amount=-1 +kerning first=86 second=113 amount=-1 +kerning first=34 second=923 amount=-2 +kerning first=44 second=79 amount=-1 +kerning first=1040 second=1058 amount=-2 +kerning first=933 second=916 amount=-2 +kerning first=87 second=261 amount=-1 +kerning first=84 second=214 amount=-1 +kerning first=961 second=947 amount=-1 +kerning first=39 second=87 amount=1 +kerning first=118 second=63 amount=1 +kerning first=114 second=232 amount=-1 +kerning first=915 second=974 amount=-1 +kerning first=908 second=46 amount=-1 +kerning first=954 second=962 amount=-1 +kerning first=1070 second=1063 amount=-1 +kerning first=44 second=1060 amount=-1 +kerning first=65 second=81 amount=-1 +kerning first=1061 second=1060 amount=-1 +kerning first=967 second=972 amount=-1 +kerning first=934 second=933 amount=-1 +kerning first=1060 second=1040 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=1098 second=1093 amount=-1 +kerning first=39 second=100 amount=-2 +kerning first=910 second=943 amount=-1 +kerning first=1054 second=1058 amount=-1 +kerning first=98 second=120 amount=-1 +kerning first=932 second=949 amount=-1 +kerning first=913 second=934 amount=-1 +kerning first=46 second=89 amount=-2 +kerning first=86 second=228 amount=-1 +kerning first=1056 second=1046 amount=-1 +kerning first=1070 second=1059 amount=-1 +kerning first=84 second=378 amount=-1 +kerning first=950 second=964 amount=-1 +kerning first=1093 second=1092 amount=-1 +kerning first=915 second=948 amount=-1 +kerning first=86 second=224 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=79 second=196 amount=-1 +kerning first=39 second=1105 amount=-2 +kerning first=1058 second=1099 amount=-1 +kerning first=193 second=71 amount=-1 +kerning first=88 second=71 amount=-1 +kerning first=262 second=71 amount=-1 +kerning first=915 second=902 amount=-2 +kerning first=915 second=965 amount=-1 +kerning first=34 second=249 amount=-1 +kerning first=1059 second=44 amount=-2 +kerning first=932 second=940 amount=-2 +kerning first=67 second=262 amount=-1 +kerning first=321 second=87 amount=-1 +kerning first=120 second=99 amount=-1 +kerning first=929 second=935 amount=-1 +kerning first=1058 second=1060 amount=-1 +kerning first=34 second=954 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=1054 second=44 amount=-1 +kerning first=936 second=44 amount=-2 +kerning first=65 second=89 amount=-2 +kerning first=1088 second=1078 amount=-1 +kerning first=1060 second=1066 amount=-1 +kerning first=936 second=916 amount=-1 +kerning first=86 second=263 amount=-1 +kerning first=39 second=1083 amount=-2 +kerning first=1056 second=1076 amount=-1 +kerning first=34 second=103 amount=-1 +kerning first=67 second=210 amount=-1 +kerning first=101 second=120 amount=-1 +kerning first=242 second=120 amount=-1 +kerning first=243 second=118 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=967 second=948 amount=-1 +kerning first=89 second=262 amount=-1 +kerning first=46 second=67 amount=-1 +kerning first=214 second=192 amount=-1 +kerning first=913 second=920 amount=-1 +kerning first=934 second=923 amount=-1 +kerning first=910 second=916 amount=-2 +kerning first=321 second=79 amount=-1 +kerning first=1043 second=44 amount=-2 +kerning first=119 second=44 amount=-1 +kerning first=210 second=88 amount=-1 +kerning first=232 second=118 amount=-1 +kerning first=44 second=1058 amount=-2 +kerning first=121 second=63 amount=1 +kerning first=932 second=962 amount=-2 +kerning first=81 second=65 amount=-1 +kerning first=193 second=84 amount=-2 +kerning first=260 second=87 amount=-1 +kerning first=39 second=972 amount=-1 +kerning first=111 second=121 amount=-1 +kerning first=34 second=959 amount=-1 +kerning first=932 second=941 amount=-1 +kerning first=1090 second=44 amount=-1 +kerning first=967 second=963 amount=-1 +kerning first=1093 second=1105 amount=-1 +kerning first=112 second=120 amount=-1 +kerning first=1043 second=1084 amount=-1 +kerning first=75 second=211 amount=-1 +kerning first=114 second=39 amount=1 +kerning first=957 second=46 amount=-1 +kerning first=1075 second=46 amount=-1 +kerning first=1070 second=1046 amount=-1 +kerning first=220 second=46 amount=-1 +kerning first=260 second=79 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=84 second=192 amount=-2 +kerning first=39 second=113 amount=-2 +kerning first=1058 second=1077 amount=-2 +kerning first=1059 second=1076 amount=-1 +kerning first=84 second=262 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=1043 second=1060 amount=-1 +kerning first=211 second=192 amount=-1 +kerning first=70 second=192 amount=-1 +kerning first=916 second=920 amount=-1 +kerning first=34 second=192 amount=-2 +kerning first=114 second=100 amount=-1 +kerning first=34 second=65 amount=-2 +kerning first=70 second=65 amount=-1 +kerning first=920 second=902 amount=-1 +kerning first=211 second=65 amount=-1 +kerning first=84 second=249 amount=-1 +kerning first=44 second=71 amount=-1 +kerning first=44 second=1063 amount=-2 +kerning first=67 second=214 amount=-1 +kerning first=1058 second=1090 amount=-1 +kerning first=232 second=119 amount=-1 +kerning first=954 second=940 amount=-1 +kerning first=920 second=932 amount=-1 +kerning first=1066 second=39 amount=-1 +kerning first=1056 second=46 amount=-4 +kerning first=89 second=224 amount=-1 +kerning first=1040 second=1063 amount=-1 +kerning first=908 second=932 amount=-1 +kerning first=933 second=44 amount=-2 +kerning first=114 second=243 amount=-1 +kerning first=934 second=918 amount=-1 +kerning first=39 second=232 amount=-2 +kerning first=46 second=84 amount=-2 +kerning first=84 second=81 amount=-1 +kerning first=932 second=944 amount=-1 +kerning first=196 second=211 amount=-1 +kerning first=196 second=71 amount=-1 +kerning first=1069 second=1061 amount=-1 +kerning first=214 second=196 amount=-1 +kerning first=114 second=34 amount=1 +kerning first=910 second=951 amount=-1 +kerning first=89 second=210 amount=-1 +kerning first=933 second=961 amount=-1 +kerning first=932 second=971 amount=-1 +kerning first=46 second=85 amount=-1 +kerning first=1043 second=1083 amount=-2 +kerning first=88 second=67 amount=-1 +kerning first=1043 second=1093 amount=-1 +kerning first=970 second=34 amount=-1 +kerning first=933 second=934 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=85 second=46 amount=-1 +kerning first=932 second=945 amount=-2 +kerning first=260 second=74 amount=4 +kerning first=193 second=67 amount=-1 +kerning first=66 second=260 amount=-1 +kerning first=75 second=210 amount=-1 +kerning first=916 second=933 amount=-2 +kerning first=210 second=44 amount=-1 +kerning first=81 second=192 amount=-1 +kerning first=34 second=261 amount=-1 +kerning first=947 second=44 amount=-1 +kerning first=910 second=44 amount=-2 +kerning first=1090 second=1083 amount=-1 +kerning first=954 second=966 amount=-1 +kerning first=908 second=902 amount=-1 +kerning first=966 second=957 amount=-1 +kerning first=915 second=913 amount=-2 +kerning first=1041 second=39 amount=-1 +kerning first=76 second=81 amount=-1 +kerning first=955 second=947 amount=-1 +kerning first=80 second=44 amount=-4 +kerning first=114 second=224 amount=-1 +kerning first=1043 second=1040 amount=-2 +kerning first=934 second=46 amount=-1 +kerning first=950 second=972 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=39 second=959 amount=-1 +kerning first=1043 second=1044 amount=-1 +kerning first=34 second=942 amount=-1 +kerning first=39 second=263 amount=-2 +kerning first=44 second=934 amount=-1 +kerning first=84 second=103 amount=-2 +kerning first=950 second=960 amount=-1 +kerning first=84 second=65 amount=-2 +kerning first=214 second=84 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=1041 second=34 amount=-1 +kerning first=114 second=263 amount=-1 +kerning first=933 second=973 amount=-1 +kerning first=89 second=122 amount=-1 +kerning first=1078 second=1086 amount=-1 +kerning first=44 second=89 amount=-2 +kerning first=39 second=1044 amount=-2 +kerning first=913 second=933 amount=-2 +kerning first=1066 second=1095 amount=-1 +kerning first=75 second=79 amount=-1 +kerning first=89 second=214 amount=-1 +kerning first=915 second=45 amount=-1 +kerning first=955 second=957 amount=-1 +kerning first=929 second=913 amount=-1 +kerning first=1042 second=46 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=910 second=961 amount=-1 +kerning first=46 second=932 amount=-2 +kerning first=218 second=44 amount=-1 +kerning first=1058 second=1100 amount=-1 +kerning first=1058 second=1094 amount=-1 +kerning first=34 second=941 amount=-1 +kerning first=46 second=262 amount=-1 +kerning first=44 second=87 amount=-2 +kerning first=910 second=934 amount=-1 +kerning first=915 second=953 amount=-1 +kerning first=1069 second=1051 amount=-1 +kerning first=966 second=947 amount=-1 +kerning first=214 second=65 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=39 second=193 amount=-2 +kerning first=89 second=193 amount=-2 +kerning first=76 second=86 amount=-1 +kerning first=967 second=959 amount=-1 +kerning first=86 second=242 amount=-1 +kerning first=39 second=117 amount=-1 +kerning first=933 second=951 amount=-1 +kerning first=84 second=120 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=89 second=263 amount=-1 +kerning first=954 second=945 amount=-1 +kerning first=932 second=927 amount=-1 +kerning first=87 second=63 amount=1 +kerning first=260 second=211 amount=-1 +kerning first=1100 second=1098 amount=-1 +kerning first=1066 second=34 amount=-1 +kerning first=39 second=1092 amount=-2 +kerning first=914 second=923 amount=-1 +kerning first=84 second=196 amount=-2 +kerning first=84 second=261 amount=-2 +kerning first=86 second=101 amount=-1 +kerning first=1058 second=1078 amount=-1 +kerning first=932 second=966 amount=-2 +kerning first=1066 second=1090 amount=-1 +kerning first=46 second=1054 amount=-1 +kerning first=262 second=67 amount=-1 +kerning first=915 second=969 amount=-1 +kerning first=39 second=961 amount=-1 +kerning first=933 second=966 amount=-1 +kerning first=210 second=260 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=107 second=111 amount=-1 +kerning first=192 second=81 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=39 second=242 amount=-2 +kerning first=1068 second=1066 amount=-2 +kerning first=196 second=87 amount=-1 +kerning first=67 second=81 amount=-1 +kerning first=44 second=1057 amount=-1 +kerning first=112 second=121 amount=-1 +kerning first=910 second=959 amount=-1 +kerning first=87 second=193 amount=-1 +kerning first=1050 second=1060 amount=-1 +kerning first=34 second=252 amount=-1 +kerning first=81 second=44 amount=-1 +kerning first=89 second=232 amount=-1 +kerning first=86 second=281 amount=-1 +kerning first=114 second=246 amount=-1 +kerning first=1100 second=1093 amount=-1 +kerning first=39 second=954 amount=-1 +kerning first=932 second=963 amount=-2 +kerning first=39 second=1040 amount=-2 +kerning first=65 second=262 amount=-1 +kerning first=902 second=936 amount=-1 +kerning first=76 second=67 amount=-1 +kerning first=39 second=101 amount=-2 +kerning first=1054 second=1059 amount=-1 +kerning first=1043 second=1089 amount=-2 +kerning first=192 second=67 amount=-1 +kerning first=920 second=923 amount=-1 +kerning first=915 second=934 amount=-1 +kerning first=34 second=347 amount=-1 +kerning first=39 second=281 amount=-2 +kerning first=34 second=1077 amount=-2 +kerning first=89 second=79 amount=-1 +kerning first=1078 second=1095 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=933 second=942 amount=-1 +kerning first=46 second=1095 amount=-2 +kerning first=1075 second=45 amount=-1 +kerning first=211 second=84 amount=-1 +kerning first=1100 second=1078 amount=-1 +kerning first=910 second=902 amount=-2 +kerning first=321 second=71 amount=-1 +kerning first=75 second=214 amount=-1 +kerning first=116 second=39 amount=1 +kerning first=44 second=1098 amount=-1 +kerning first=915 second=949 amount=-1 +kerning first=1040 second=39 amount=-2 +kerning first=1050 second=1063 amount=-1 +kerning first=87 second=232 amount=-1 +kerning first=1040 second=1098 amount=-1 +kerning first=1061 second=1063 amount=-1 +kerning first=914 second=913 amount=-1 +kerning first=1060 second=1044 amount=-1 +kerning first=65 second=84 amount=-2 +kerning first=193 second=87 amount=-1 +kerning first=933 second=944 amount=-1 +kerning first=34 second=112 amount=-1 +kerning first=1046 second=1054 amount=-1 +kerning first=932 second=965 amount=-1 +kerning first=112 second=119 amount=-1 +kerning first=39 second=103 amount=-1 +kerning first=1069 second=1040 amount=-1 +kerning first=927 second=923 amount=-1 +kerning first=932 second=961 amount=-1 +kerning first=967 second=945 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=88 second=211 amount=-1 +kerning first=193 second=211 amount=-1 +kerning first=84 second=347 amount=-2 +kerning first=321 second=86 amount=-1 +kerning first=65 second=210 amount=-1 +kerning first=196 second=39 amount=-2 +kerning first=902 second=934 amount=-1 +kerning first=953 second=34 amount=-1 +kerning first=916 second=34 amount=-2 +kerning first=192 second=262 amount=-1 +kerning first=34 second=1092 amount=-2 +kerning first=66 second=46 amount=-1 +kerning first=34 second=113 amount=-2 +kerning first=89 second=242 amount=-1 +kerning first=908 second=923 amount=-1 +kerning first=76 second=84 amount=-1 +kerning first=70 second=44 amount=-2 +kerning first=46 second=218 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=34 second=101 amount=-2 +kerning first=1098 second=1090 amount=-1 +kerning first=1068 second=1091 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=936 second=902 amount=-1 +kerning first=119 second=39 amount=1 +kerning first=972 second=957 amount=-1 +kerning first=967 second=940 amount=-1 +kerning first=260 second=39 amount=-2 +kerning first=84 second=232 amount=-2 +kerning first=120 second=232 amount=-1 +kerning first=915 second=46 amount=-2 +kerning first=952 second=46 amount=-1 +kerning first=1070 second=46 amount=-1 +kerning first=1057 second=1054 amount=-1 +kerning first=1043 second=1098 amount=-1 +kerning first=1078 second=1077 amount=-1 +kerning first=101 second=119 amount=-1 +kerning first=242 second=119 amount=-1 +kerning first=243 second=119 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=1070 second=1051 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=98 second=121 amount=-1 +kerning first=954 second=963 amount=-1 +kerning first=84 second=252 amount=-1 +kerning first=321 second=214 amount=-1 +kerning first=915 second=951 amount=-1 +kerning first=114 second=242 amount=-1 +kerning first=76 second=210 amount=-1 +kerning first=111 second=118 amount=-1 +kerning first=233 second=120 amount=-1 +kerning first=1068 second=1059 amount=-1 +kerning first=1093 second=1089 amount=-1 +kerning first=1059 second=46 amount=-2 +kerning first=321 second=84 amount=-1 +kerning first=922 second=920 amount=-1 +kerning first=70 second=46 amount=-2 +kerning first=89 second=281 amount=-1 +kerning first=1059 second=1086 amount=-1 +kerning first=932 second=948 amount=-1 +kerning first=67 second=79 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=1086 second=1078 amount=-1 +kerning first=934 second=44 amount=-1 +kerning first=932 second=46 amount=-2 +kerning first=961 second=957 amount=-1 +kerning first=114 second=101 amount=-1 +kerning first=260 second=71 amount=-1 +kerning first=1059 second=1105 amount=-1 +kerning first=34 second=111 amount=-2 +kerning first=123 second=74 amount=3 +kerning first=192 second=74 amount=4 +kerning first=918 second=934 amount=-1 +kerning first=902 second=932 amount=-2 +kerning first=1043 second=1076 amount=-2 +kerning first=79 second=260 amount=-1 +kerning first=1043 second=1057 amount=-1 +kerning first=933 second=974 amount=-1 +kerning first=1059 second=1051 amount=-1 +kerning first=39 second=950 amount=-1 +kerning first=950 second=959 amount=-1 +kerning first=44 second=1066 amount=-2 +kerning first=932 second=923 amount=-2 +kerning first=84 second=121 amount=-1 +kerning first=39 second=86 amount=1 +kerning first=940 second=955 amount=1 +kerning first=107 second=99 amount=-1 +kerning first=34 second=1040 amount=-2 +kerning first=1040 second=1066 amount=-1 +kerning first=932 second=943 amount=-1 +kerning first=46 second=1058 amount=-2 +kerning first=39 second=246 amount=-2 +kerning first=1090 second=1076 amount=-1 +kerning first=192 second=210 amount=-1 +kerning first=34 second=940 amount=-1 +kerning first=246 second=39 amount=-1 +kerning first=929 second=46 amount=-4 +kerning first=84 second=67 amount=-1 +kerning first=915 second=973 amount=-1 +kerning first=120 second=113 amount=-1 +kerning first=84 second=113 amount=-2 +kerning first=114 second=113 amount=-1 +kerning first=1058 second=45 amount=-1 +kerning first=935 second=934 amount=-1 +kerning first=1059 second=1083 amount=-1 +kerning first=1043 second=1102 amount=-1 +kerning first=280 second=74 amount=2 +kerning first=79 second=65 amount=-1 +kerning first=929 second=902 amount=-1 +kerning first=39 second=249 amount=-1 +kerning first=1043 second=1081 amount=-1 +kerning first=68 second=260 amount=-1 +kerning first=89 second=71 amount=-1 +kerning first=34 second=232 amount=-2 +kerning first=1043 second=1054 amount=-1 +kerning first=910 second=46 amount=-2 +kerning first=947 second=46 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=933 second=949 amount=-1 +kerning first=1056 second=1051 amount=-2 +kerning first=75 second=81 amount=-1 +kerning first=1060 second=44 amount=-1 +kerning first=87 second=99 amount=-1 +kerning first=34 second=972 amount=-1 +kerning first=34 second=193 amount=-2 +kerning first=281 second=121 amount=-1 +kerning first=1092 second=1078 amount=-1 +kerning first=70 second=193 amount=-1 +kerning first=211 second=193 amount=-1 +kerning first=86 second=261 amount=-1 +kerning first=1059 second=1044 amount=-1 +kerning first=46 second=79 amount=-1 +kerning first=246 second=34 amount=-1 +kerning first=34 second=945 amount=-1 +kerning first=46 second=211 amount=-1 +kerning first=86 second=246 amount=-1 +kerning first=1092 second=1093 amount=-1 +kerning first=923 second=936 amount=-1 +kerning first=281 second=119 amount=-1 +kerning first=46 second=936 amount=-2 +kerning first=39 second=962 amount=-1 +kerning first=1090 second=46 amount=-1 +kerning first=1054 second=46 amount=-1 +kerning first=1058 second=1092 amount=-2 +kerning first=260 second=34 amount=-2 +kerning first=39 second=1089 amount=-2 +kerning first=119 second=34 amount=1 +kerning first=936 second=46 amount=-2 +kerning first=923 second=934 amount=-1 +kerning first=1069 second=1063 amount=-1 +kerning first=84 second=112 amount=-1 +kerning first=89 second=113 amount=-1 +kerning first=68 second=65 amount=-1 +kerning first=1050 second=1095 amount=-1 +kerning first=46 second=1090 amount=-1 +kerning first=915 second=916 amount=-2 +kerning first=260 second=214 amount=-1 +kerning first=46 second=1063 amount=-2 +kerning first=321 second=39 amount=-2 +kerning first=1043 second=1079 amount=-1 +kerning first=34 second=1072 amount=-1 +kerning first=1068 second=39 amount=-1 +kerning first=913 second=39 amount=-2 +kerning first=932 second=913 amount=-2 +kerning first=84 second=111 amount=-2 +kerning first=89 second=249 amount=-1 +kerning first=120 second=111 amount=-1 +kerning first=1057 second=1057 amount=-1 +kerning first=89 second=44 amount=-2 +kerning first=84 second=84 amount=1 +kerning first=1054 second=1044 amount=-1 +kerning first=915 second=956 amount=-1 +kerning first=967 second=44 amount=-1 +kerning first=915 second=944 amount=-1 +kerning first=114 second=281 amount=-1 +kerning first=945 second=955 amount=1 +kerning first=1070 second=1044 amount=-1 +kerning first=262 second=211 amount=-1 +kerning first=34 second=242 amount=-2 +kerning first=913 second=34 amount=-2 +kerning first=321 second=34 amount=-2 +kerning first=1068 second=34 amount=-1 +kerning first=932 second=953 amount=-1 +kerning first=84 second=79 amount=-1 +kerning first=910 second=942 amount=-1 +kerning first=1056 second=1061 amount=-1 +kerning first=1100 second=1090 amount=-1 +kerning first=915 second=966 amount=-2 +kerning first=44 second=214 amount=-1 +kerning first=953 second=39 amount=-1 +kerning first=920 second=913 amount=-1 +kerning first=916 second=39 amount=-2 +kerning first=933 second=46 amount=-2 +kerning first=1098 second=1098 amount=-1 +kerning first=1043 second=1091 amount=-1 +kerning first=89 second=81 amount=-1 +kerning first=1046 second=1057 amount=-1 +kerning first=967 second=962 amount=-1 +kerning first=927 second=44 amount=-1 +kerning first=44 second=1054 amount=-1 +kerning first=933 second=959 amount=-1 +kerning first=192 second=84 amount=-2 +kerning first=86 second=44 amount=-1 +kerning first=84 second=193 amount=-2 +kerning first=1058 second=1075 amount=-1 +kerning first=68 second=196 amount=-1 +kerning first=101 second=121 amount=-1 +kerning first=107 second=233 amount=-1 +kerning first=242 second=121 amount=-1 +kerning first=933 second=954 amount=-1 +kerning first=111 second=120 amount=-1 +kerning first=910 second=953 amount=-1 +kerning first=89 second=103 amount=-1 +kerning first=922 second=927 amount=-1 +kerning first=87 second=111 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=233 second=118 amount=-1 +kerning first=87 second=225 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=65 second=67 amount=-1 +kerning first=80 second=46 amount=-4 +kerning first=39 second=110 amount=-1 +kerning first=1100 second=1095 amount=-1 +kerning first=39 second=261 amount=-1 +kerning first=929 second=916 amount=-1 +kerning first=192 second=89 amount=-2 +kerning first=75 second=71 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=932 second=45 amount=-1 +kerning first=908 second=913 amount=-1 +kerning first=200 second=74 amount=2 +kerning first=214 second=193 amount=-1 +kerning first=44 second=932 amount=-2 +kerning first=84 second=242 amount=-2 +kerning first=120 second=242 amount=-1 +kerning first=46 second=87 amount=-2 +kerning first=932 second=44 amount=-2 +kerning first=1058 second=1097 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=915 second=927 amount=-1 +kerning first=1070 second=1061 amount=-1 +kerning first=910 second=945 amount=-1 +kerning first=87 second=246 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=98 second=118 amount=-1 +kerning first=913 second=936 amount=-1 +kerning first=107 second=243 amount=-1 +kerning first=67 second=67 amount=-1 +kerning first=955 second=34 amount=-2 +kerning first=210 second=192 amount=-1 +kerning first=84 second=101 amount=-2 +kerning first=86 second=46 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=120 second=101 amount=-1 +kerning first=262 second=262 amount=-1 +kerning first=929 second=923 amount=-1 +kerning first=84 second=281 amount=-2 +kerning first=120 second=281 amount=-1 +kerning first=1058 second=1058 amount=1 +kerning first=1068 second=1090 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=914 second=916 amount=-1 +kerning first=39 second=243 amount=-2 +kerning first=39 second=913 amount=-2 +kerning first=912 second=39 amount=-1 +kerning first=1041 second=1063 amount=-1 +kerning first=927 second=46 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=39 second=966 amount=-1 +kerning first=89 second=63 amount=1 +kerning first=34 second=114 amount=-1 +kerning first=933 second=941 amount=-1 +kerning first=260 second=81 amount=-1 +kerning first=1075 second=44 amount=-1 +kerning first=920 second=44 amount=-1 +kerning first=957 second=44 amount=-1 +kerning first=114 second=261 amount=-1 +kerning first=915 second=963 amount=-2 +kerning first=34 second=110 amount=-1 +kerning first=1098 second=34 amount=-2 +kerning first=84 second=324 amount=-1 +kerning first=933 second=971 amount=-1 +kerning first=34 second=281 amount=-2 +kerning first=915 second=937 amount=-1 +kerning first=39 second=347 amount=-1 +kerning first=933 second=945 amount=-1 +kerning first=44 second=211 amount=-1 +kerning first=118 second=39 amount=1 +kerning first=932 second=934 amount=-1 +kerning first=39 second=940 amount=-1 +kerning first=102 second=34 amount=2 +kerning first=89 second=67 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=970 second=39 amount=-1 +kerning first=1082 second=1077 amount=-1 +kerning first=1043 second=1086 amount=-2 +kerning first=39 second=1051 amount=-2 +kerning first=79 second=44 amount=-1 +kerning first=220 second=44 amount=-1 +kerning first=44 second=1095 amount=-2 +kerning first=192 second=79 amount=-1 +kerning first=1043 second=1090 amount=-1 +kerning first=1098 second=1078 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=86 second=243 amount=-1 +kerning first=196 second=214 amount=-1 +kerning first=67 second=71 amount=-1 +kerning first=934 second=902 amount=-1 +kerning first=65 second=79 amount=-1 +kerning first=910 second=949 amount=-1 +kerning first=1043 second=46 amount=-2 +kerning first=84 second=225 amount=-2 +kerning first=89 second=115 amount=-1 +kerning first=950 second=940 amount=-1 +kerning first=233 second=119 amount=-1 +kerning first=321 second=81 amount=-1 +kerning first=1043 second=1051 amount=-1 +kerning first=915 second=959 amount=-2 +kerning first=1040 second=1060 amount=-1 +kerning first=46 second=1066 amount=-2 +kerning first=39 second=252 amount=-1 +kerning first=1098 second=1091 amount=-1 +kerning first=217 second=44 amount=-1 +kerning first=81 second=260 amount=-1 +kerning first=910 second=927 amount=-1 +kerning first=87 second=242 amount=-1 +kerning first=86 second=111 amount=-1 +kerning first=84 second=118 amount=-1 +kerning first=1093 second=1077 amount=-1 +kerning first=1043 second=1078 amount=-1 +kerning first=1043 second=1092 amount=-2 +kerning first=932 second=973 amount=-1 +kerning first=66 second=192 amount=-1 +kerning first=1040 second=1095 amount=-1 +kerning first=932 second=920 amount=-1 +kerning first=262 second=210 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=39 second=1077 amount=-2 +kerning first=915 second=923 amount=-2 +kerning first=214 second=88 amount=-1 +kerning first=76 second=79 amount=-1 +kerning first=933 second=902 amount=-2 +kerning first=193 second=214 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=88 second=214 amount=-1 +kerning first=121 second=39 amount=1 +kerning first=89 second=243 amount=-1 +kerning first=34 second=1089 amount=-2 +kerning first=910 second=971 amount=-1 +kerning first=201 second=74 amount=2 +kerning first=967 second=966 amount=-1 +kerning first=933 second=927 amount=-1 +kerning first=913 second=932 amount=-2 +kerning first=950 second=962 amount=-1 +kerning first=70 second=260 amount=-1 +kerning first=211 second=260 amount=-1 +kerning first=34 second=84 amount=1 +kerning first=65 second=87 amount=-1 +kerning first=34 second=956 amount=-1 +kerning first=1043 second=1103 amount=-1 +kerning first=1079 second=1103 amount=1 +kerning first=44 second=927 amount=-1 +kerning first=1069 second=1058 amount=-1 +kerning first=1040 second=34 amount=-2 +kerning first=1066 second=1063 amount=-1 +kerning first=932 second=951 amount=-1 +kerning first=1056 second=1044 amount=-2 +kerning first=915 second=954 amount=-1 +kerning first=120 second=246 amount=-1 +kerning first=84 second=246 amount=-2 +kerning first=1058 second=1093 amount=-1 +kerning first=107 second=232 amount=-1 +kerning first=34 second=225 amount=-1 +kerning first=1066 second=1059 amount=-1 +kerning first=116 second=34 amount=1 +kerning first=44 second=936 amount=-2 +kerning first=1058 second=1101 amount=-1 +kerning first=39 second=192 amount=-2 +kerning first=1093 second=1086 amount=-1 +kerning first=321 second=67 amount=-1 +kerning first=46 second=210 amount=-1 +kerning first=1082 second=1086 amount=-1 +kerning first=915 second=942 amount=-1 +kerning first=967 second=45 amount=-1 +kerning first=40 second=74 amount=3 +kerning first=935 second=920 amount=-1 +kerning first=34 second=961 amount=-1 +kerning first=262 second=214 amount=-1 +kerning first=959 second=957 amount=-1 +kerning first=39 second=948 amount=-1 +kerning first=89 second=252 amount=-1 +kerning first=193 second=39 amount=-2 +kerning first=119 second=63 amount=1 +kerning first=1040 second=1090 amount=-1 +kerning first=932 second=956 amount=-1 +kerning first=1043 second=1082 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=910 second=966 amount=-1 +kerning first=107 second=224 amount=-1 +kerning first=927 second=932 amount=-1 +kerning first=914 second=44 amount=-1 +kerning first=76 second=87 amount=-1 +kerning first=1050 second=1054 amount=-1 +kerning first=1069 second=44 amount=-1 +kerning first=915 second=941 amount=-1 +kerning first=915 second=968 amount=-1 +kerning first=932 second=916 amount=-2 +kerning first=79 second=193 amount=-1 +kerning first=1101 second=1078 amount=-1 +kerning first=1066 second=1058 amount=-1 +kerning first=1075 second=1083 amount=-1 +kerning first=933 second=963 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=214 second=260 amount=-1 +kerning first=87 second=228 amount=-1 +kerning first=1068 second=1098 amount=-1 +kerning first=950 second=945 amount=-1 +kerning first=65 second=74 amount=4 +kerning first=923 second=920 amount=-1 +kerning first=910 second=923 amount=-2 +kerning first=84 second=260 amount=-2 +kerning first=39 second=1086 amount=-2 +kerning first=1059 second=1095 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=120 second=233 amount=-1 +kerning first=1047 second=44 amount=-1 +kerning first=84 second=233 amount=-2 +kerning first=46 second=920 amount=-1 +kerning first=192 second=71 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=927 second=902 amount=-1 +kerning first=934 second=913 amount=-1 +kerning first=902 second=39 amount=-2 +kerning first=39 second=902 amount=-2 +kerning first=39 second=111 amount=-2 +kerning first=281 second=118 amount=-1 +kerning first=916 second=932 amount=-2 +kerning first=39 second=84 amount=1 +kerning first=192 second=87 amount=-1 +kerning first=1054 second=1051 amount=-1 +kerning first=196 second=81 amount=-1 +kerning first=1058 second=44 amount=-2 +kerning first=84 second=119 amount=-1 +kerning first=44 second=86 amount=-2 +kerning first=34 second=246 amount=-2 +kerning first=87 second=281 amount=-1 +kerning first=936 second=923 amount=-1 +kerning first=932 second=972 amount=-2 +kerning first=923 second=933 amount=-2 +kerning first=68 second=193 amount=-1 +kerning first=46 second=933 amount=-2 +kerning first=121 second=34 amount=1 +kerning first=1091 second=1083 amount=-1 +kerning first=66 second=65 amount=-1 +kerning first=89 second=228 amount=-1 +kerning first=76 second=211 amount=-1 +kerning first=260 second=86 amount=-1 +kerning first=210 second=196 amount=-1 +kerning first=112 second=118 amount=-1 +kerning first=1078 second=1092 amount=-1 +kerning first=99 second=34 amount=1 +kerning first=910 second=962 amount=-1 +kerning first=902 second=34 amount=-2 +kerning first=1043 second=1105 amount=-2 +kerning first=1086 second=1093 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=88 second=262 amount=-1 +kerning first=46 second=934 amount=-1 +kerning first=193 second=262 amount=-1 +kerning first=1101 second=1093 amount=-1 +kerning first=1058 second=1040 amount=-2 +kerning first=89 second=111 amount=-1 +kerning first=908 second=916 amount=-1 +kerning first=87 second=97 amount=-1 +kerning first=1043 second=1099 amount=-1 +kerning first=102 second=39 amount=2 +kerning first=933 second=940 amount=-1 +kerning first=1098 second=39 amount=-2 +kerning first=1060 second=46 amount=-1 +kerning first=86 second=63 amount=1 +kerning first=34 second=913 amount=-2 +kerning first=1091 second=44 amount=-1 +kerning first=44 second=81 amount=-1 +kerning first=1061 second=1095 amount=-1 +kerning first=1057 second=1060 amount=-1 +kerning first=192 second=211 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=954 second=972 amount=-1 +kerning first=107 second=100 amount=-1 +kerning first=107 second=263 amount=-1 +kerning first=65 second=211 amount=-1 +kerning first=76 second=262 amount=-1 +kerning first=913 second=927 amount=-1 +kerning first=114 second=111 amount=-1 +kerning first=45 second=1058 amount=-1 +kerning first=243 second=120 amount=-1 +kerning first=242 second=118 amount=-1 +kerning first=101 second=118 amount=-1 +kerning first=910 second=940 amount=-1 +kerning first=955 second=39 amount=-2 +kerning first=76 second=214 amount=-1 +kerning first=1054 second=1061 amount=-1 +kerning first=193 second=34 amount=-2 +kerning first=908 second=935 amount=-1 +kerning first=1058 second=1089 amount=-2 +kerning first=967 second=46 amount=-1 +kerning first=84 second=250 amount=-1 +kerning first=89 second=46 amount=-2 +kerning first=1043 second=1077 amount=-2 +kerning first=39 second=949 amount=-1 +kerning first=196 second=34 amount=-2 +kerning first=211 second=88 amount=-1 +kerning first=98 second=119 amount=-1 +kerning first=914 second=935 amount=-1 +kerning first=1046 second=1060 amount=-1 +kerning first=920 second=916 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=1098 second=1095 amount=-1 +kerning first=950 second=966 amount=-1 +kerning first=44 second=217 amount=-1 +kerning first=34 second=260 amount=-2 +kerning first=84 second=71 amount=-1 +kerning first=959 second=947 amount=-1 +kerning first=84 second=109 amount=-1 +kerning first=80 second=65 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=34 second=115 amount=-1 +kerning first=39 second=1076 amount=-2 +kerning first=84 second=44 amount=-2 +kerning first=933 second=962 amount=-1 +kerning first=66 second=88 amount=-1 +kerning first=87 second=233 amount=-1 +kerning first=321 second=211 amount=-1 +kerning first=262 second=81 amount=-1 +kerning first=34 second=1051 amount=-2 +kerning first=39 second=941 amount=-1 +kerning first=910 second=972 amount=-1 +kerning first=210 second=193 amount=-1 +kerning first=1058 second=1057 amount=-1 +kerning first=1058 second=1044 amount=-1 +kerning first=34 second=951 amount=-1 +kerning first=39 second=916 amount=-2 +kerning first=950 second=963 amount=-1 +kerning first=915 second=962 amount=-2 +kerning first=1058 second=1082 amount=-1 +kerning first=260 second=262 amount=-1 +kerning first=84 second=228 amount=-2 +kerning first=935 second=927 amount=-1 +kerning first=1100 second=34 amount=-2 +kerning first=1043 second=1101 amount=-1 +kerning first=39 second=109 amount=-1 +kerning first=321 second=210 amount=-1 +kerning first=46 second=927 amount=-1 +kerning first=1058 second=1083 amount=-2 +kerning first=68 second=88 amount=-1 +kerning first=210 second=65 amount=-1 +kerning first=81 second=196 amount=-1 +kerning first=39 second=114 amount=-1 +kerning first=34 second=966 amount=-1 +kerning first=84 second=243 amount=-2 +kerning first=120 second=243 amount=-1 +kerning first=1082 second=1092 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=45 second=1090 amount=-1 +kerning first=915 second=947 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=34 second=224 amount=-2 +kerning first=1068 second=1063 amount=-1 +kerning first=1054 second=1046 amount=-1 +kerning first=1058 second=1098 amount=-1 +kerning first=1091 second=46 amount=-1 +kerning first=1075 second=1076 amount=-1 +kerning first=933 second=913 amount=-2 +kerning first=34 second=87 amount=1 +kerning first=260 second=84 amount=-2 +kerning first=929 second=44 amount=-4 +kerning first=86 second=99 amount=-1 +kerning first=954 second=959 amount=-1 +kerning first=39 second=956 amount=-1 +kerning first=933 second=968 amount=-1 +kerning first=1069 second=1044 amount=-1 +kerning first=120 second=100 amount=-1 +kerning first=84 second=100 amount=-2 +kerning first=107 second=246 amount=-1 +kerning first=91 second=74 amount=3 +kerning first=922 second=934 amount=-1 +kerning first=196 second=74 amount=4 +kerning first=44 second=67 amount=-1 +kerning first=84 second=46 amount=-2 +kerning first=915 second=920 amount=-1 +kerning first=34 second=250 amount=-1 +kerning first=107 second=242 amount=-1 +kerning first=260 second=210 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=70 second=196 amount=-1 +kerning first=34 second=196 amount=-2 +kerning first=211 second=196 amount=-1 +kerning first=1069 second=1059 amount=-1 +kerning first=84 second=115 amount=-2 +kerning first=196 second=89 amount=-2 +kerning first=46 second=214 amount=-1 +kerning first=76 second=71 amount=-1 +kerning first=87 second=243 amount=-1 +kerning first=86 second=97 amount=-1 +kerning first=65 second=39 amount=-2 +kerning first=943 second=39 amount=-1 +kerning first=86 second=232 amount=-1 +kerning first=39 second=225 amount=-1 +kerning first=1054 second=1063 amount=-1 +kerning first=218 second=46 amount=-1 +kerning first=89 second=112 amount=-1 +kerning first=934 second=932 amount=-1 +kerning first=193 second=89 amount=-2 +kerning first=933 second=920 amount=-1 +kerning first=39 second=942 amount=-1 +kerning first=107 second=101 amount=-1 +kerning first=46 second=952 amount=-1 +kerning first=910 second=954 amount=-1 +kerning first=39 second=99 amount=-2 +kerning first=1078 second=1105 amount=-1 +kerning first=933 second=972 amount=-1 +kerning first=85 second=44 amount=-1 +kerning first=121 second=44 amount=-1 +kerning first=910 second=963 amount=-1 +kerning first=910 second=968 amount=-1 +kerning first=232 second=121 amount=-1 +kerning first=1059 second=1092 amount=-1 +kerning first=1074 second=1103 amount=1 +kerning first=84 second=224 amount=-2 +kerning first=932 second=954 amount=-1 +kerning first=120 second=224 amount=-1 +kerning first=118 second=34 amount=1 +kerning first=34 second=228 amount=-1 +kerning first=262 second=79 amount=-1 +kerning first=196 second=67 amount=-1 +kerning first=932 second=967 amount=-1 +kerning first=1058 second=1079 amount=-1 +kerning first=902 second=920 amount=-1 +kerning first=44 second=262 amount=-1 +kerning first=107 second=281 amount=-1 +kerning first=46 second=86 amount=-2 +kerning first=1059 second=1040 amount=-2 +kerning first=950 second=948 amount=-1 +kerning first=84 second=210 amount=-1 +kerning first=44 second=933 amount=-2 +kerning first=34 second=1086 amount=-2 +kerning first=68 second=192 amount=-1 +kerning first=1070 second=44 amount=-1 +kerning first=915 second=44 amount=-2 +kerning first=952 second=44 amount=-1 +kerning first=1100 second=1091 amount=-1 +kerning first=932 second=902 amount=-2 +kerning first=65 second=71 amount=-1 +kerning first=39 second=97 amount=-1 +kerning first=76 second=39 amount=-2 +kerning first=910 second=913 amount=-2 +kerning first=86 second=225 amount=-1 +kerning first=915 second=943 amount=-1 +kerning first=88 second=81 amount=-1 +kerning first=69 second=74 amount=2 +kerning first=45 second=932 amount=-1 +kerning first=193 second=81 amount=-1 +kerning first=923 second=927 amount=-1 +kerning first=1043 second=1100 amount=-1 +kerning first=1061 second=1057 amount=-1 +kerning first=932 second=959 amount=-2 +kerning first=34 second=233 amount=-2 +kerning first=1060 second=1058 amount=-1 +kerning first=243 second=121 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=34 second=1105 amount=-2 +kerning first=912 second=34 amount=-1 +kerning first=923 second=39 amount=-2 +kerning first=34 second=100 amount=-2 +kerning first=34 second=263 amount=-2 +kerning first=84 second=211 amount=-1 +kerning first=89 second=324 amount=-1 +kerning first=1058 second=1074 amount=-1 +kerning first=192 second=39 amount=-2 +kerning first=211 second=46 amount=-1 +kerning first=89 second=378 amount=-1 +kerning first=196 second=262 amount=-1 +kerning first=75 second=67 amount=-1 +kerning first=196 second=210 amount=-1 +kerning first=933 second=923 amount=-2 +kerning first=1043 second=1074 amount=-1 +kerning first=75 second=262 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=88 second=79 amount=-1 +kerning first=34 second=1044 amount=-2 +kerning first=193 second=79 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=79 second=192 amount=-1 +kerning first=916 second=934 amount=-1 +kerning first=932 second=957 amount=-1 +kerning first=936 second=913 amount=-1 +kerning first=1061 second=1054 amount=-1 +kerning first=1066 second=1098 amount=-1 +kerning first=911 second=932 amount=-1 +kerning first=1047 second=46 amount=-1 +kerning first=86 second=233 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=1078 second=1089 amount=-1 +kerning first=937 second=932 amount=-1 +kerning first=1070 second=1058 amount=-1 +kerning first=118 second=44 amount=-1 +kerning first=1050 second=1057 amount=-1 +kerning first=1042 second=44 amount=-1 +kerning first=196 second=84 amount=-2 +kerning first=46 second=71 amount=-1 +kerning first=1060 second=1061 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=192 second=34 amount=-2 +kerning first=233 second=121 amount=-1 +kerning first=44 second=210 amount=-1 +kerning first=932 second=969 amount=-1 +kerning first=65 second=34 amount=-2 +kerning first=114 second=228 amount=-1 +kerning first=915 second=940 amount=-2 +kerning first=943 second=34 amount=-1 +kerning first=217 second=46 amount=-1 +kerning first=1088 second=1093 amount=-1 +kerning first=89 second=250 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=1069 second=1046 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=107 second=113 amount=-1 +kerning first=39 second=260 amount=-2 +kerning first=260 second=89 amount=-2 +kerning first=1068 second=1095 amount=-1 +kerning first=89 second=196 amount=-2 +kerning first=39 second=233 amount=-2 +kerning first=1056 second=44 amount=-4 +kerning first=934 second=916 amount=-1 +kerning first=87 second=224 amount=-1 +kerning first=920 second=935 amount=-1 +kerning first=65 second=214 amount=-1 +kerning first=920 second=46 amount=-1 +kerning first=933 second=948 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=45 second=1098 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=70 second=63 amount=1 +kerning first=34 second=97 amount=-1 +kerning first=1058 second=1091 amount=-1 +kerning first=1058 second=1103 amount=-1 +kerning first=66 second=84 amount=-1 +kerning first=46 second=81 amount=-1 +kerning first=111 second=119 amount=-1 +kerning first=1070 second=1040 amount=-1 +kerning first=44 second=1090 amount=-1 +kerning first=89 second=211 amount=-1 +kerning first=76 second=34 amount=-2 +kerning first=34 second=117 amount=-1 +kerning first=84 second=263 amount=-2 +kerning first=120 second=263 amount=-1 +kerning first=1058 second=1076 amount=-2 +kerning first=39 second=963 amount=-1 +kerning first=39 second=951 amount=-1 +kerning first=39 second=65 amount=-2 +kerning first=67 second=211 amount=-1 +kerning first=45 second=1066 amount=-1 +kerning first=1043 second=1058 amount=1 +kerning first=1091 second=1076 amount=-1 +kerning first=915 second=945 amount=-2 +kerning first=87 second=263 amount=-1 +kerning first=1043 second=1085 amount=-1 +kerning first=1054 second=1040 amount=-1 +kerning first=81 second=193 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=39 second=923 amount=-2 +kerning first=1057 second=1095 amount=-1 +kerning first=1093 second=1095 amount=-1 +kerning first=44 second=920 amount=-1 +kerning first=1090 second=45 amount=-1 +kerning first=933 second=965 amount=-1 +kerning first=114 second=97 amount=-1 +kerning first=914 second=902 amount=-1 +kerning first=34 second=243 amount=-2 +kerning first=1043 second=45 amount=-1 +kerning first=99 second=39 amount=1 +kerning first=914 second=46 amount=-1 +kerning first=1069 second=46 amount=-1 +kerning first=1058 second=1081 amount=-1 +kerning first=89 second=114 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=46 second=1098 amount=-1 +kerning first=908 second=44 amount=-1 +kerning first=1046 second=1063 amount=-1 +kerning first=1058 second=1054 amount=-1 +kerning first=1060 second=1051 amount=-1 +kerning first=193 second=74 amount=4 +kerning first=210 second=84 amount=-1 +kerning first=915 second=972 amount=-2 +kerning first=89 second=260 amount=-2 +kerning first=68 second=44 amount=-1 +kerning first=66 second=193 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=46 second=1057 amount=-1 +kerning first=1066 second=1066 amount=-2 +kerning first=84 second=117 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=1068 second=1058 amount=-1 +kerning first=44 second=220 amount=-1 +kerning first=1102 second=1093 amount=-1 +kerning first=34 second=324 amount=-1 +kerning first=902 second=927 amount=-1 +kerning first=1100 second=39 amount=-2 +kerning first=1058 second=46 amount=-2 +kerning first=260 second=67 amount=-1 +kerning first=39 second=250 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=910 second=920 amount=-1 +kerning first=321 second=262 amount=-1 +kerning first=1058 second=1086 amount=-2 +kerning first=193 second=210 amount=-1 +kerning first=1046 second=1095 amount=-1 +kerning first=88 second=210 amount=-1 +kerning first=1082 second=1095 amount=-1 +kerning first=81 second=88 amount=-1 +kerning first=79 second=88 amount=-1 +kerning first=1059 second=1077 amount=-1 +kerning first=910 second=948 amount=-1 +kerning first=1059 second=1089 amount=-1 +kerning first=39 second=196 amount=-2 +kerning first=196 second=79 amount=-1 +kerning first=932 second=974 amount=-1 +kerning first=923 second=34 amount=-2 +kerning first=34 second=916 amount=-2 +kerning first=1060 second=1046 amount=-1 +kerning first=192 second=214 amount=-1 +kerning first=933 second=943 amount=-1 +kerning first=950 second=45 amount=-1 +kerning first=927 second=913 amount=-1 +kerning first=932 second=947 amount=-1 +kerning first=87 second=100 amount=-1 +kerning first=281 second=120 amount=-1 +kerning first=89 second=65 amount=-2 +kerning first=84 second=63 amount=1 +kerning first=933 second=956 amount=-1 +kerning first=44 second=84 amount=-2 +kerning first=114 second=233 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x2/font-small.fnt b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/font-small.fnt new file mode 100644 index 0000000..1d7a83c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/font-small.fnt @@ -0,0 +1,985 @@ +info face="Vis Open Sans" size=24 bold=0 italic=0 charset="" unicode=0 stretchH=100 smooth=1 aa=1 padding=1,0,0,0 spacing=0,0 +common lineHeight=34 base=26 scaleW=512 scaleH=256 pages=1 packed=0 +page id=0 file="font-small.png" +chars count=279 +char id=32 x=0 y=0 width=0 height=0 xoffset=0 yoffset=26 xadvance=6 page=0 chnl=0 +char id=942 x=0 y=0 width=13 height=29 xoffset=2 yoffset=4 xadvance=15 page=0 chnl=0 +char id=968 x=13 y=0 width=17 height=27 xoffset=1 yoffset=6 xadvance=18 page=0 chnl=0 +char id=946 x=30 y=0 width=13 height=27 xoffset=2 yoffset=6 xadvance=15 page=0 chnl=0 +char id=1092 x=43 y=0 width=16 height=27 xoffset=1 yoffset=6 xadvance=17 page=0 chnl=0 +char id=124 x=59 y=0 width=4 height=27 xoffset=5 yoffset=6 xadvance=13 page=0 chnl=0 +char id=1049 x=63 y=0 width=15 height=26 xoffset=2 yoffset=1 xadvance=18 page=0 chnl=0 +char id=217 x=78 y=0 width=14 height=26 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=0 +char id=210 x=92 y=0 width=18 height=26 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=204 x=110 y=0 width=7 height=26 xoffset=-1 yoffset=1 xadvance=7 page=0 chnl=0 +char id=200 x=117 y=0 width=11 height=26 xoffset=2 yoffset=1 xadvance=13 page=0 chnl=0 +char id=192 x=128 y=0 width=16 height=26 xoffset=0 yoffset=1 xadvance=15 page=0 chnl=0 +char id=218 x=144 y=0 width=14 height=26 xoffset=2 yoffset=1 xadvance=17 page=0 chnl=0 +char id=205 x=158 y=0 width=7 height=26 xoffset=2 yoffset=1 xadvance=7 page=0 chnl=0 +char id=201 x=165 y=0 width=11 height=26 xoffset=2 yoffset=1 xadvance=13 page=0 chnl=0 +char id=193 x=176 y=0 width=16 height=26 xoffset=0 yoffset=1 xadvance=15 page=0 chnl=0 +char id=377 x=192 y=0 width=15 height=26 xoffset=0 yoffset=1 xadvance=14 page=0 chnl=0 +char id=346 x=207 y=0 width=12 height=26 xoffset=1 yoffset=1 xadvance=13 page=0 chnl=0 +char id=211 x=219 y=0 width=18 height=26 xoffset=1 yoffset=1 xadvance=19 page=0 chnl=0 +char id=323 x=237 y=0 width=15 height=26 xoffset=2 yoffset=1 xadvance=18 page=0 chnl=0 +char id=262 x=252 y=0 width=15 height=26 xoffset=1 yoffset=1 xadvance=15 page=0 chnl=0 +char id=106 x=267 y=0 width=9 height=26 xoffset=-2 yoffset=7 xadvance=6 page=0 chnl=0 +char id=958 x=276 y=0 width=11 height=25 xoffset=1 yoffset=6 xadvance=11 page=0 chnl=0 +char id=950 x=287 y=0 width=12 height=25 xoffset=1 yoffset=6 xadvance=12 page=0 chnl=0 +char id=280 x=299 y=0 width=11 height=25 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=260 x=310 y=0 width=17 height=25 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=209 x=327 y=0 width=15 height=25 xoffset=2 yoffset=2 xadvance=18 page=0 chnl=0 +char id=1065 x=342 y=0 width=24 height=24 xoffset=2 yoffset=7 xadvance=25 page=0 chnl=0 +char id=1062 x=366 y=0 width=17 height=24 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=1044 x=383 y=0 width=17 height=24 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 +char id=379 x=400 y=0 width=15 height=24 xoffset=0 yoffset=3 xadvance=14 page=0 chnl=0 +char id=125 x=415 y=0 width=10 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=123 x=425 y=0 width=10 height=24 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=93 x=435 y=0 width=8 height=24 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=91 x=443 y=0 width=8 height=24 xoffset=1 yoffset=7 xadvance=8 page=0 chnl=0 +char id=41 x=451 y=0 width=8 height=24 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=40 x=459 y=0 width=8 height=24 xoffset=0 yoffset=7 xadvance=7 page=0 chnl=0 +char id=81 x=467 y=0 width=18 height=24 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=74 x=485 y=0 width=10 height=24 xoffset=-3 yoffset=7 xadvance=6 page=0 chnl=0 +char id=944 x=495 y=0 width=14 height=23 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=912 x=0 y=29 width=10 height=23 xoffset=-1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=974 x=10 y=29 width=18 height=23 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=973 x=28 y=29 width=14 height=23 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=972 x=42 y=29 width=14 height=23 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=943 x=56 y=29 width=8 height=23 xoffset=1 yoffset=4 xadvance=8 page=0 chnl=0 +char id=941 x=64 y=29 width=11 height=23 xoffset=1 yoffset=4 xadvance=11 page=0 chnl=0 +char id=940 x=75 y=29 width=15 height=23 xoffset=1 yoffset=4 xadvance=15 page=0 chnl=0 +char id=1025 x=90 y=29 width=11 height=23 xoffset=2 yoffset=4 xadvance=13 page=0 chnl=0 +char id=220 x=101 y=29 width=14 height=23 xoffset=2 yoffset=4 xadvance=17 page=0 chnl=0 +char id=214 x=115 y=29 width=18 height=23 xoffset=1 yoffset=4 xadvance=19 page=0 chnl=0 +char id=196 x=133 y=29 width=16 height=23 xoffset=0 yoffset=4 xadvance=15 page=0 chnl=0 +char id=967 x=149 y=29 width=15 height=22 xoffset=-1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=961 x=164 y=29 width=13 height=22 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=956 x=177 y=29 width=12 height=22 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=951 x=189 y=29 width=13 height=22 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=947 x=202 y=29 width=13 height=22 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=1091 x=215 y=29 width=13 height=22 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=1088 x=228 y=29 width=13 height=22 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1081 x=241 y=29 width=12 height=22 xoffset=2 yoffset=5 xadvance=15 page=0 chnl=0 +char id=249 x=253 y=29 width=13 height=22 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=242 x=266 y=29 width=14 height=22 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=236 x=280 y=29 width=7 height=22 xoffset=-1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=232 x=287 y=29 width=12 height=22 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=224 x=299 y=29 width=12 height=22 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=250 x=311 y=29 width=13 height=22 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=237 x=324 y=29 width=7 height=22 xoffset=1 yoffset=5 xadvance=6 page=0 chnl=0 +char id=233 x=331 y=29 width=12 height=22 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=225 x=343 y=29 width=12 height=22 xoffset=1 yoffset=5 xadvance=13 page=0 chnl=0 +char id=378 x=355 y=29 width=12 height=22 xoffset=0 yoffset=5 xadvance=11 page=0 chnl=0 +char id=347 x=367 y=29 width=10 height=22 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=243 x=377 y=29 width=14 height=22 xoffset=1 yoffset=5 xadvance=15 page=0 chnl=0 +char id=324 x=391 y=29 width=13 height=22 xoffset=2 yoffset=5 xadvance=15 page=0 chnl=0 +char id=263 x=404 y=29 width=11 height=22 xoffset=1 yoffset=5 xadvance=11 page=0 chnl=0 +char id=36 x=415 y=29 width=13 height=22 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=64 x=428 y=29 width=21 height=22 xoffset=1 yoffset=7 xadvance=22 page=0 chnl=0 +char id=121 x=449 y=29 width=13 height=22 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=113 x=462 y=29 width=13 height=22 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=112 x=475 y=29 width=13 height=22 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=103 x=488 y=29 width=14 height=22 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=8984 x=0 y=52 width=21 height=21 xoffset=2 yoffset=6 xadvance=24 page=0 chnl=0 +char id=966 x=21 y=52 width=16 height=21 xoffset=1 yoffset=12 xadvance=17 page=0 chnl=0 +char id=948 x=37 y=52 width=14 height=21 xoffset=1 yoffset=6 xadvance=14 page=0 chnl=0 +char id=911 x=51 y=52 width=21 height=21 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 +char id=910 x=72 y=52 width=17 height=21 xoffset=0 yoffset=6 xadvance=17 page=0 chnl=0 +char id=908 x=89 y=52 width=20 height=21 xoffset=0 yoffset=6 xadvance=20 page=0 chnl=0 +char id=906 x=109 y=52 width=8 height=21 xoffset=0 yoffset=6 xadvance=9 page=0 chnl=0 +char id=905 x=117 y=52 width=19 height=21 xoffset=0 yoffset=6 xadvance=19 page=0 chnl=0 +char id=904 x=136 y=52 width=14 height=21 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 +char id=902 x=150 y=52 width=16 height=21 xoffset=0 yoffset=6 xadvance=15 page=0 chnl=0 +char id=223 x=166 y=52 width=13 height=21 xoffset=2 yoffset=6 xadvance=15 page=0 chnl=0 +char id=322 x=179 y=52 width=8 height=21 xoffset=0 yoffset=6 xadvance=6 page=0 chnl=0 +char id=281 x=187 y=52 width=13 height=21 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=261 x=200 y=52 width=13 height=21 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=241 x=213 y=52 width=13 height=21 xoffset=2 yoffset=6 xadvance=15 page=0 chnl=0 +char id=108 x=226 y=52 width=3 height=21 xoffset=2 yoffset=6 xadvance=6 page=0 chnl=0 +char id=107 x=229 y=52 width=12 height=21 xoffset=2 yoffset=6 xadvance=13 page=0 chnl=0 +char id=104 x=241 y=52 width=13 height=21 xoffset=2 yoffset=6 xadvance=15 page=0 chnl=0 +char id=100 x=254 y=52 width=13 height=21 xoffset=1 yoffset=6 xadvance=15 page=0 chnl=0 +char id=98 x=267 y=52 width=13 height=21 xoffset=2 yoffset=6 xadvance=15 page=0 chnl=0 +char id=8679 x=280 y=52 width=13 height=20 xoffset=4 yoffset=7 xadvance=20 page=0 chnl=0 +char id=962 x=293 y=52 width=12 height=20 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=955 x=305 y=52 width=16 height=20 xoffset=-1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=952 x=321 y=52 width=13 height=20 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=937 x=334 y=52 width=20 height=20 xoffset=0 yoffset=7 xadvance=19 page=0 chnl=0 +char id=936 x=354 y=52 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=935 x=372 y=52 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=934 x=387 y=52 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=933 x=405 y=52 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=932 x=419 y=52 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=931 x=433 y=52 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=929 x=448 y=52 width=12 height=20 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=928 x=460 y=52 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=927 x=475 y=52 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=926 x=493 y=52 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=925 x=0 y=73 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=924 x=15 y=73 width=19 height=20 xoffset=2 yoffset=7 xadvance=22 page=0 chnl=0 +char id=923 x=34 y=73 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=922 x=49 y=73 width=14 height=20 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=921 x=63 y=73 width=4 height=20 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=920 x=67 y=73 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=919 x=85 y=73 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=918 x=100 y=73 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=917 x=115 y=73 width=11 height=20 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=916 x=126 y=73 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=915 x=141 y=73 width=11 height=20 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=914 x=152 y=73 width=14 height=20 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=913 x=166 y=73 width=16 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1097 x=182 y=73 width=21 height=20 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=1094 x=203 y=73 width=14 height=20 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1076 x=217 y=73 width=15 height=20 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 +char id=1073 x=232 y=73 width=13 height=20 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=1071 x=245 y=73 width=14 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1070 x=259 y=73 width=23 height=20 xoffset=2 yoffset=7 xadvance=25 page=0 chnl=0 +char id=1069 x=282 y=73 width=15 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1068 x=297 y=73 width=13 height=20 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1067 x=310 y=73 width=17 height=20 xoffset=2 yoffset=7 xadvance=20 page=0 chnl=0 +char id=1066 x=327 y=73 width=17 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 +char id=1064 x=344 y=73 width=22 height=20 xoffset=2 yoffset=7 xadvance=25 page=0 chnl=0 +char id=1063 x=366 y=73 width=14 height=20 xoffset=2 yoffset=7 xadvance=17 page=0 chnl=0 +char id=1061 x=380 y=73 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=1060 x=395 y=73 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=1059 x=413 y=73 width=16 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1058 x=429 y=73 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=1057 x=443 y=73 width=15 height=20 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1056 x=458 y=73 width=12 height=20 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=1055 x=470 y=73 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=1054 x=485 y=73 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=1053 x=0 y=93 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=1052 x=15 y=93 width=19 height=20 xoffset=2 yoffset=7 xadvance=22 page=0 chnl=0 +char id=1051 x=34 y=93 width=16 height=20 xoffset=0 yoffset=7 xadvance=17 page=0 chnl=0 +char id=1050 x=50 y=93 width=14 height=20 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1048 x=64 y=93 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=1047 x=79 y=93 width=14 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=1046 x=93 y=93 width=21 height=20 xoffset=0 yoffset=7 xadvance=20 page=0 chnl=0 +char id=1045 x=114 y=93 width=11 height=20 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=1043 x=125 y=93 width=11 height=20 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=1042 x=136 y=93 width=14 height=20 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=1041 x=150 y=93 width=13 height=20 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=1040 x=163 y=93 width=16 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=321 x=179 y=93 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=380 x=193 y=93 width=12 height=20 xoffset=0 yoffset=7 xadvance=11 page=0 chnl=0 +char id=127 x=205 y=93 width=12 height=20 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=38 x=217 y=93 width=18 height=20 xoffset=1 yoffset=7 xadvance=18 page=0 chnl=0 +char id=35 x=235 y=93 width=17 height=20 xoffset=0 yoffset=7 xadvance=16 page=0 chnl=0 +char id=37 x=252 y=93 width=19 height=20 xoffset=1 yoffset=7 xadvance=20 page=0 chnl=0 +char id=92 x=271 y=93 width=10 height=20 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=47 x=281 y=93 width=10 height=20 xoffset=0 yoffset=7 xadvance=9 page=0 chnl=0 +char id=63 x=291 y=93 width=11 height=20 xoffset=0 yoffset=7 xadvance=10 page=0 chnl=0 +char id=33 x=302 y=93 width=5 height=20 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=57 x=307 y=93 width=13 height=20 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=55 x=320 y=93 width=13 height=20 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=53 x=333 y=93 width=13 height=20 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=52 x=346 y=93 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=50 x=361 y=93 width=13 height=20 xoffset=1 yoffset=7 xadvance=14 page=0 chnl=0 +char id=49 x=374 y=93 width=8 height=20 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=105 x=382 y=93 width=5 height=20 xoffset=1 yoffset=7 xadvance=6 page=0 chnl=0 +char id=102 x=387 y=93 width=12 height=20 xoffset=0 yoffset=7 xadvance=8 page=0 chnl=0 +char id=90 x=399 y=93 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=89 x=414 y=93 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=88 x=428 y=93 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=87 x=443 y=93 width=23 height=20 xoffset=0 yoffset=7 xadvance=22 page=0 chnl=0 +char id=86 x=466 y=93 width=15 height=20 xoffset=0 yoffset=7 xadvance=14 page=0 chnl=0 +char id=85 x=481 y=93 width=14 height=20 xoffset=2 yoffset=7 xadvance=17 page=0 chnl=0 +char id=84 x=495 y=93 width=14 height=20 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=83 x=0 y=113 width=12 height=20 xoffset=1 yoffset=7 xadvance=13 page=0 chnl=0 +char id=82 x=12 y=113 width=14 height=20 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=80 x=26 y=113 width=12 height=20 xoffset=2 yoffset=7 xadvance=14 page=0 chnl=0 +char id=79 x=38 y=113 width=18 height=20 xoffset=1 yoffset=7 xadvance=19 page=0 chnl=0 +char id=78 x=56 y=113 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=77 x=71 y=113 width=19 height=20 xoffset=2 yoffset=7 xadvance=22 page=0 chnl=0 +char id=76 x=90 y=113 width=11 height=20 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=75 x=101 y=113 width=14 height=20 xoffset=2 yoffset=7 xadvance=15 page=0 chnl=0 +char id=73 x=115 y=113 width=4 height=20 xoffset=2 yoffset=7 xadvance=7 page=0 chnl=0 +char id=72 x=119 y=113 width=15 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=71 x=134 y=113 width=16 height=20 xoffset=1 yoffset=7 xadvance=17 page=0 chnl=0 +char id=70 x=150 y=113 width=11 height=20 xoffset=2 yoffset=7 xadvance=12 page=0 chnl=0 +char id=69 x=161 y=113 width=11 height=20 xoffset=2 yoffset=7 xadvance=13 page=0 chnl=0 +char id=68 x=172 y=113 width=16 height=20 xoffset=2 yoffset=7 xadvance=18 page=0 chnl=0 +char id=67 x=188 y=113 width=15 height=20 xoffset=1 yoffset=7 xadvance=15 page=0 chnl=0 +char id=66 x=203 y=113 width=14 height=20 xoffset=2 yoffset=7 xadvance=16 page=0 chnl=0 +char id=65 x=217 y=113 width=16 height=20 xoffset=0 yoffset=7 xadvance=15 page=0 chnl=0 +char id=971 x=233 y=113 width=14 height=19 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=970 x=247 y=113 width=9 height=19 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 +char id=1105 x=256 y=113 width=12 height=19 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=252 x=268 y=113 width=13 height=19 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=246 x=281 y=113 width=14 height=19 xoffset=1 yoffset=8 xadvance=15 page=0 chnl=0 +char id=228 x=295 y=113 width=12 height=19 xoffset=1 yoffset=8 xadvance=13 page=0 chnl=0 +char id=191 x=307 y=113 width=11 height=19 xoffset=0 yoffset=12 xadvance=10 page=0 chnl=0 +char id=48 x=318 y=113 width=13 height=19 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=56 x=331 y=113 width=13 height=19 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=54 x=344 y=113 width=13 height=19 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=51 x=357 y=113 width=13 height=19 xoffset=1 yoffset=8 xadvance=14 page=0 chnl=0 +char id=116 x=370 y=113 width=9 height=19 xoffset=0 yoffset=8 xadvance=8 page=0 chnl=0 +char id=59 x=379 y=113 width=6 height=18 xoffset=0 yoffset=12 xadvance=6 page=0 chnl=0 +char id=8997 x=385 y=113 width=26 height=16 xoffset=1 yoffset=11 xadvance=28 page=0 chnl=0 +char id=969 x=411 y=113 width=18 height=16 xoffset=1 yoffset=11 xadvance=19 page=0 chnl=0 +char id=965 x=429 y=113 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=964 x=443 y=113 width=12 height=16 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=963 x=455 y=113 width=15 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=960 x=470 y=113 width=17 height=16 xoffset=0 yoffset=11 xadvance=16 page=0 chnl=0 +char id=959 x=487 y=113 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=957 x=0 y=133 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=954 x=14 y=133 width=12 height=16 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=953 x=26 y=133 width=8 height=16 xoffset=1 yoffset=11 xadvance=8 page=0 chnl=0 +char id=949 x=34 y=133 width=11 height=16 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=945 x=45 y=133 width=15 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1103 x=60 y=133 width=12 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=1102 x=72 y=133 width=18 height=16 xoffset=2 yoffset=11 xadvance=20 page=0 chnl=0 +char id=1101 x=90 y=133 width=12 height=16 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=1100 x=102 y=133 width=12 height=16 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0 +char id=1099 x=114 y=133 width=15 height=16 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=1098 x=129 y=133 width=17 height=16 xoffset=0 yoffset=11 xadvance=17 page=0 chnl=0 +char id=1096 x=146 y=133 width=18 height=16 xoffset=2 yoffset=11 xadvance=21 page=0 chnl=0 +char id=1095 x=164 y=133 width=13 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1093 x=177 y=133 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=1090 x=191 y=133 width=12 height=16 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=1087 x=203 y=133 width=12 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1086 x=215 y=133 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1085 x=229 y=133 width=12 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1084 x=241 y=133 width=15 height=16 xoffset=2 yoffset=11 xadvance=18 page=0 chnl=0 +char id=1083 x=256 y=133 width=13 height=16 xoffset=0 yoffset=11 xadvance=14 page=0 chnl=0 +char id=1082 x=269 y=133 width=12 height=16 xoffset=1 yoffset=11 xadvance=12 page=0 chnl=0 +char id=1080 x=281 y=133 width=12 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=1079 x=293 y=133 width=12 height=16 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=1078 x=305 y=133 width=19 height=16 xoffset=0 yoffset=11 xadvance=18 page=0 chnl=0 +char id=1077 x=324 y=133 width=12 height=16 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=1075 x=336 y=133 width=9 height=16 xoffset=2 yoffset=11 xadvance=10 page=0 chnl=0 +char id=1074 x=345 y=133 width=13 height=16 xoffset=2 yoffset=11 xadvance=14 page=0 chnl=0 +char id=1072 x=358 y=133 width=12 height=16 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=122 x=370 y=133 width=12 height=16 xoffset=0 yoffset=11 xadvance=11 page=0 chnl=0 +char id=120 x=382 y=133 width=14 height=16 xoffset=0 yoffset=11 xadvance=13 page=0 chnl=0 +char id=119 x=396 y=133 width=20 height=16 xoffset=0 yoffset=11 xadvance=19 page=0 chnl=0 +char id=118 x=416 y=133 width=13 height=16 xoffset=0 yoffset=11 xadvance=12 page=0 chnl=0 +char id=117 x=429 y=133 width=13 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=115 x=442 y=133 width=10 height=16 xoffset=1 yoffset=11 xadvance=11 page=0 chnl=0 +char id=114 x=452 y=133 width=9 height=16 xoffset=2 yoffset=11 xadvance=10 page=0 chnl=0 +char id=111 x=461 y=133 width=14 height=16 xoffset=1 yoffset=11 xadvance=15 page=0 chnl=0 +char id=110 x=475 y=133 width=13 height=16 xoffset=2 yoffset=11 xadvance=15 page=0 chnl=0 +char id=109 x=488 y=133 width=20 height=16 xoffset=2 yoffset=11 xadvance=22 page=0 chnl=0 +char id=101 x=0 y=149 width=12 height=16 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=97 x=12 y=149 width=12 height=16 xoffset=1 yoffset=11 xadvance=13 page=0 chnl=0 +char id=1089 x=24 y=149 width=11 height=15 xoffset=1 yoffset=12 xadvance=11 page=0 chnl=0 +char id=43 x=35 y=149 width=13 height=15 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=58 x=48 y=149 width=5 height=15 xoffset=1 yoffset=12 xadvance=6 page=0 chnl=0 +char id=99 x=53 y=149 width=11 height=15 xoffset=1 yoffset=12 xadvance=11 page=0 chnl=0 +char id=42 x=64 y=149 width=13 height=14 xoffset=0 yoffset=6 xadvance=13 page=0 chnl=0 +char id=94 x=77 y=149 width=14 height=14 xoffset=0 yoffset=7 xadvance=13 page=0 chnl=0 +char id=62 x=91 y=149 width=13 height=14 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=60 x=104 y=149 width=13 height=14 xoffset=1 yoffset=10 xadvance=14 page=0 chnl=0 +char id=61 x=117 y=149 width=13 height=10 xoffset=1 yoffset=12 xadvance=14 page=0 chnl=0 +char id=44 x=130 y=149 width=6 height=9 xoffset=0 yoffset=21 xadvance=6 page=0 chnl=0 +char id=39 x=136 y=149 width=4 height=9 xoffset=1 yoffset=7 xadvance=5 page=0 chnl=0 +char id=34 x=140 y=149 width=9 height=9 xoffset=1 yoffset=7 xadvance=10 page=0 chnl=0 +char id=8226 x=149 y=149 width=8 height=9 xoffset=1 yoffset=12 xadvance=9 page=0 chnl=0 +char id=96 x=157 y=149 width=7 height=7 xoffset=4 yoffset=5 xadvance=14 page=0 chnl=0 +char id=126 x=164 y=149 width=13 height=6 xoffset=1 yoffset=14 xadvance=14 page=0 chnl=0 +char id=903 x=177 y=149 width=5 height=5 xoffset=1 yoffset=15 xadvance=6 page=0 chnl=0 +char id=95 x=182 y=149 width=14 height=5 xoffset=-1 yoffset=26 xadvance=11 page=0 chnl=0 +char id=45 x=196 y=149 width=7 height=5 xoffset=1 yoffset=17 xadvance=8 page=0 chnl=0 +char id=46 x=203 y=149 width=5 height=5 xoffset=1 yoffset=22 xadvance=6 page=0 chnl=0 +kernings count=700 +kerning first=84 second=45 amount=-1 +kerning first=39 second=246 amount=-1 +kerning first=34 second=1076 amount=-2 +kerning first=44 second=67 amount=-1 +kerning first=44 second=81 amount=-1 +kerning first=65 second=87 amount=-1 +kerning first=935 second=934 amount=-1 +kerning first=77 second=105 amount=-2 +kerning first=39 second=114 amount=-1 +kerning first=34 second=115 amount=-1 +kerning first=40 second=74 amount=2 +kerning first=46 second=210 amount=-1 +kerning first=44 second=211 amount=-1 +kerning first=44 second=214 amount=-1 +kerning first=89 second=225 amount=-1 +kerning first=77 second=236 amount=-2 +kerning first=77 second=237 amount=-2 +kerning first=34 second=962 amount=-1 +kerning first=89 second=249 amount=-1 +kerning first=44 second=262 amount=-1 +kerning first=1058 second=1105 amount=-2 +kerning first=89 second=115 amount=-1 +kerning first=68 second=84 amount=-1 +kerning first=1060 second=44 amount=-1 +kerning first=1058 second=1060 amount=-1 +kerning first=46 second=81 amount=-1 +kerning first=39 second=902 amount=-2 +kerning first=932 second=916 amount=-2 +kerning first=934 second=918 amount=-1 +kerning first=915 second=920 amount=-1 +kerning first=44 second=927 amount=-1 +kerning first=44 second=936 amount=-1 +kerning first=915 second=937 amount=-1 +kerning first=34 second=940 amount=-1 +kerning first=932 second=941 amount=-1 +kerning first=932 second=942 amount=-1 +kerning first=910 second=944 amount=-1 +kerning first=932 second=953 amount=-1 +kerning first=34 second=948 amount=-1 +kerning first=915 second=949 amount=-1 +kerning first=915 second=953 amount=-1 +kerning first=910 second=954 amount=-1 +kerning first=910 second=956 amount=-1 +kerning first=915 second=969 amount=-1 +kerning first=910 second=966 amount=-1 +kerning first=910 second=968 amount=-1 +kerning first=910 second=969 amount=-1 +kerning first=910 second=971 amount=-1 +kerning first=910 second=973 amount=-1 +kerning first=932 second=974 amount=-1 +kerning first=39 second=1051 amount=-1 +kerning first=46 second=1054 amount=-1 +kerning first=46 second=1057 amount=-1 +kerning first=1040 second=1063 amount=-1 +kerning first=932 second=966 amount=-2 +kerning first=1058 second=1074 amount=-1 +kerning first=1058 second=1080 amount=-1 +kerning first=39 second=1086 amount=-1 +kerning first=1058 second=1088 amount=-1 +kerning first=46 second=1090 amount=-1 +kerning first=1043 second=1095 amount=-1 +kerning first=1058 second=1098 amount=-1 +kerning first=1043 second=1099 amount=-1 +kerning first=1043 second=1103 amount=-1 +kerning first=34 second=1105 amount=-1 +kerning first=929 second=46 amount=-3 +kerning first=84 second=109 amount=-1 +kerning first=65 second=74 amount=3 +kerning first=34 second=109 amount=-1 +kerning first=39 second=196 amount=-2 +kerning first=932 second=923 amount=-2 +kerning first=34 second=112 amount=-1 +kerning first=46 second=1098 amount=-1 +kerning first=1058 second=1089 amount=-2 +kerning first=89 second=44 amount=-1 +kerning first=79 second=84 amount=-1 +kerning first=967 second=44 amount=-1 +kerning first=321 second=34 amount=-2 +kerning first=933 second=951 amount=-1 +kerning first=1043 second=1094 amount=-1 +kerning first=1043 second=1060 amount=-1 +kerning first=932 second=45 amount=-1 +kerning first=1066 second=1063 amount=-1 +kerning first=910 second=951 amount=-1 +kerning first=34 second=97 amount=-1 +kerning first=932 second=969 amount=-1 +kerning first=933 second=948 amount=-1 +kerning first=193 second=74 amount=3 +kerning first=923 second=39 amount=-2 +kerning first=211 second=84 amount=-1 +kerning first=1058 second=1102 amount=-1 +kerning first=1056 second=1051 amount=-1 +kerning first=260 second=34 amount=-2 +kerning first=119 second=34 amount=1 +kerning first=34 second=114 amount=-1 +kerning first=953 second=39 amount=-1 +kerning first=39 second=115 amount=-1 +kerning first=86 second=193 amount=-1 +kerning first=1043 second=1097 amount=-1 +kerning first=1058 second=1044 amount=-1 +kerning first=34 second=232 amount=-1 +kerning first=80 second=192 amount=-1 +kerning first=927 second=44 amount=-1 +kerning first=913 second=932 amount=-2 +kerning first=86 second=44 amount=-1 +kerning first=89 second=261 amount=-1 +kerning first=84 second=242 amount=-2 +kerning first=39 second=228 amount=-1 +kerning first=1043 second=1075 amount=-1 +kerning first=1058 second=1076 amount=-1 +kerning first=86 second=192 amount=-1 +kerning first=1058 second=45 amount=-1 +kerning first=66 second=46 amount=-1 +kerning first=89 second=196 amount=-1 +kerning first=34 second=347 amount=-1 +kerning first=46 second=211 amount=-1 +kerning first=915 second=973 amount=-1 +kerning first=44 second=79 amount=-1 +kerning first=932 second=956 amount=-1 +kerning first=65 second=84 amount=-2 +kerning first=916 second=932 amount=-2 +kerning first=39 second=961 amount=-1 +kerning first=77 second=233 amount=-2 +kerning first=932 second=913 amount=-2 +kerning first=1090 second=46 amount=-1 +kerning first=1058 second=1099 amount=-1 +kerning first=932 second=902 amount=-2 +kerning first=81 second=44 amount=-1 +kerning first=86 second=260 amount=-1 +kerning first=1058 second=1095 amount=-1 +kerning first=933 second=945 amount=-1 +kerning first=45 second=1066 amount=-1 +kerning first=1042 second=44 amount=-1 +kerning first=89 second=193 amount=-1 +kerning first=933 second=941 amount=-1 +kerning first=84 second=281 amount=-2 +kerning first=46 second=927 amount=-1 +kerning first=46 second=71 amount=-1 +kerning first=1040 second=1058 amount=-2 +kerning first=84 second=232 amount=-2 +kerning first=910 second=953 amount=-1 +kerning first=65 second=39 amount=-2 +kerning first=916 second=936 amount=-1 +kerning first=913 second=34 amount=-2 +kerning first=1043 second=1084 amount=-1 +kerning first=89 second=117 amount=-1 +kerning first=192 second=39 amount=-2 +kerning first=927 second=932 amount=-1 +kerning first=34 second=281 amount=-1 +kerning first=929 second=902 amount=-1 +kerning first=34 second=972 amount=-1 +kerning first=39 second=347 amount=-1 +kerning first=1075 second=1076 amount=-1 +kerning first=89 second=112 amount=-1 +kerning first=39 second=261 amount=-1 +kerning first=80 second=46 amount=-3 +kerning first=932 second=963 amount=-2 +kerning first=910 second=945 amount=-1 +kerning first=77 second=224 amount=-2 +kerning first=1059 second=1051 amount=-1 +kerning first=34 second=1089 amount=-1 +kerning first=70 second=44 amount=-1 +kerning first=211 second=44 amount=-1 +kerning first=46 second=1060 amount=-1 +kerning first=76 second=39 amount=-2 +kerning first=39 second=962 amount=-1 +kerning first=34 second=1092 amount=-1 +kerning first=39 second=225 amount=-1 +kerning first=214 second=84 amount=-1 +kerning first=46 second=920 amount=-1 +kerning first=932 second=940 amount=-2 +kerning first=932 second=944 amount=-1 +kerning first=932 second=934 amount=-1 +kerning first=910 second=974 amount=-1 +kerning first=1059 second=46 amount=-1 +kerning first=89 second=110 amount=-1 +kerning first=210 second=46 amount=-1 +kerning first=947 second=46 amount=-1 +kerning first=34 second=1044 amount=-1 +kerning first=34 second=252 amount=-1 +kerning first=932 second=959 amount=-2 +kerning first=192 second=87 amount=-1 +kerning first=1043 second=1091 amount=-1 +kerning first=916 second=34 amount=-2 +kerning first=953 second=34 amount=-1 +kerning first=89 second=260 amount=-1 +kerning first=910 second=941 amount=-1 +kerning first=34 second=196 amount=-2 +kerning first=934 second=44 amount=-1 +kerning first=39 second=916 amount=-2 +kerning first=34 second=103 amount=-1 +kerning first=44 second=1058 amount=-2 +kerning first=84 second=378 amount=-1 +kerning first=1043 second=1105 amount=-2 +kerning first=1075 second=1083 amount=-1 +kerning first=933 second=971 amount=-1 +kerning first=201 second=74 amount=1 +kerning first=80 second=65 amount=-1 +kerning first=936 second=46 amount=-1 +kerning first=1054 second=46 amount=-1 +kerning first=84 second=99 amount=-2 +kerning first=34 second=1040 amount=-2 +kerning first=933 second=954 amount=-1 +kerning first=910 second=902 amount=-1 +kerning first=932 second=46 amount=-1 +kerning first=192 second=86 amount=-1 +kerning first=1066 second=34 amount=-1 +kerning first=102 second=39 amount=1 +kerning first=193 second=84 amount=-2 +kerning first=1043 second=1081 amount=-1 +kerning first=84 second=196 amount=-2 +kerning first=1098 second=39 amount=-1 +kerning first=933 second=44 amount=-1 +kerning first=39 second=117 amount=-1 +kerning first=39 second=101 amount=-1 +kerning first=913 second=933 amount=-1 +kerning first=76 second=34 amount=-2 +kerning first=46 second=84 amount=-2 +kerning first=39 second=1092 amount=-1 +kerning first=84 second=246 amount=-2 +kerning first=933 second=934 amount=-1 +kerning first=920 second=46 amount=-1 +kerning first=957 second=46 amount=-1 +kerning first=1075 second=46 amount=-1 +kerning first=39 second=109 amount=-1 +kerning first=915 second=45 amount=-1 +kerning first=34 second=225 amount=-1 +kerning first=1058 second=1051 amount=-1 +kerning first=210 second=44 amount=-1 +kerning first=1056 second=1044 amount=-1 +kerning first=910 second=948 amount=-1 +kerning first=39 second=193 amount=-2 +kerning first=947 second=44 amount=-1 +kerning first=910 second=44 amount=-1 +kerning first=34 second=100 amount=-1 +kerning first=922 second=934 amount=-1 +kerning first=84 second=193 amount=-2 +kerning first=955 second=39 amount=-1 +kerning first=932 second=962 amount=-2 +kerning first=80 second=44 amount=-3 +kerning first=913 second=936 amount=-1 +kerning first=1043 second=1040 amount=-2 +kerning first=915 second=966 amount=-2 +kerning first=39 second=263 amount=-1 +kerning first=44 second=934 amount=-1 +kerning first=65 second=86 amount=-1 +kerning first=1058 second=1096 amount=-1 +kerning first=908 second=46 amount=-1 +kerning first=34 second=961 amount=-1 +kerning first=193 second=89 amount=-1 +kerning first=89 second=101 amount=-1 +kerning first=910 second=949 amount=-1 +kerning first=196 second=89 amount=-1 +kerning first=39 second=242 amount=-1 +kerning first=68 second=46 amount=-1 +kerning first=34 second=923 amount=-2 +kerning first=1068 second=1058 amount=-1 +kerning first=933 second=942 amount=-1 +kerning first=84 second=115 amount=-1 +kerning first=39 second=972 amount=-1 +kerning first=39 second=224 amount=-1 +kerning first=34 second=963 amount=-1 +kerning first=910 second=934 amount=-1 +kerning first=1100 second=1095 amount=-1 +kerning first=936 second=902 amount=-1 +kerning first=1043 second=1077 amount=-2 +kerning first=45 second=932 amount=-1 +kerning first=1058 second=1083 amount=-1 +kerning first=39 second=948 amount=-1 +kerning first=933 second=902 amount=-1 +kerning first=1056 second=1040 amount=-1 +kerning first=915 second=943 amount=-1 +kerning first=76 second=89 amount=-1 +kerning first=932 second=954 amount=-1 +kerning first=39 second=111 amount=-1 +kerning first=1070 second=1058 amount=-1 +kerning first=934 second=932 amount=-1 +kerning first=80 second=196 amount=-1 +kerning first=902 second=39 amount=-2 +kerning first=39 second=1076 amount=-2 +kerning first=114 second=34 amount=1 +kerning first=84 second=100 amount=-2 +kerning first=933 second=944 amount=-1 +kerning first=66 second=44 amount=-1 +kerning first=915 second=945 amount=-2 +kerning first=916 second=933 amount=-1 +kerning first=77 second=261 amount=-2 +kerning first=39 second=1040 amount=-2 +kerning first=1043 second=1092 amount=-2 +kerning first=915 second=951 amount=-1 +kerning first=118 second=46 amount=-1 +kerning first=1042 second=46 amount=-1 +kerning first=89 second=224 amount=-1 +kerning first=932 second=968 amount=-1 +kerning first=260 second=89 amount=-1 +kerning first=34 second=101 amount=-1 +kerning first=910 second=942 amount=-1 +kerning first=39 second=232 amount=-1 +kerning first=915 second=913 amount=-2 +kerning first=39 second=103 amount=-1 +kerning first=1058 second=1092 amount=-2 +kerning first=89 second=232 amount=-1 +kerning first=321 second=89 amount=-1 +kerning first=86 second=65 amount=-1 +kerning first=46 second=1066 amount=-2 +kerning first=39 second=97 amount=-1 +kerning first=910 second=962 amount=-1 +kerning first=44 second=920 amount=-1 +kerning first=192 second=74 amount=3 +kerning first=84 second=225 amount=-2 +kerning first=46 second=1095 amount=-1 +kerning first=34 second=916 amount=-2 +kerning first=933 second=966 amount=-1 +kerning first=84 second=261 amount=-2 +kerning first=914 second=46 amount=-1 +kerning first=91 second=74 amount=2 +kerning first=196 second=74 amount=3 +kerning first=1058 second=1090 amount=-1 +kerning first=1058 second=1075 amount=-1 +kerning first=89 second=111 amount=-1 +kerning first=121 second=39 amount=1 +kerning first=39 second=65 amount=-2 +kerning first=1054 second=44 amount=-1 +kerning first=936 second=44 amount=-1 +kerning first=933 second=973 amount=-1 +kerning first=44 second=89 amount=-1 +kerning first=196 second=86 amount=-1 +kerning first=87 second=65 amount=-1 +kerning first=929 second=913 amount=-1 +kerning first=1043 second=44 amount=-1 +kerning first=119 second=44 amount=-1 +kerning first=39 second=110 amount=-1 +kerning first=46 second=214 amount=-1 +kerning first=1058 second=1082 amount=-1 +kerning first=915 second=961 amount=-1 +kerning first=910 second=46 amount=-1 +kerning first=915 second=944 amount=-1 +kerning first=918 second=934 amount=-1 +kerning first=34 second=260 amount=-2 +kerning first=1043 second=1100 amount=-1 +kerning first=69 second=74 amount=1 +kerning first=118 second=39 amount=1 +kerning first=915 second=974 amount=-1 +kerning first=87 second=193 amount=-1 +kerning first=34 second=1083 amount=-2 +kerning first=943 second=39 amount=-1 +kerning first=1043 second=1087 amount=-1 +kerning first=39 second=1077 amount=-1 +kerning first=934 second=933 amount=-1 +kerning first=933 second=943 amount=-1 +kerning first=915 second=941 amount=-1 +kerning first=84 second=380 amount=-1 +kerning first=34 second=261 amount=-1 +kerning first=121 second=46 amount=-1 +kerning first=46 second=1058 amount=-2 +kerning first=89 second=65 amount=-1 +kerning first=87 second=260 amount=-1 +kerning first=910 second=965 amount=-1 +kerning first=915 second=959 amount=-2 +kerning first=260 second=87 amount=-1 +kerning first=1058 second=1097 amount=-1 +kerning first=81 second=46 amount=-1 +kerning first=89 second=109 amount=-1 +kerning first=39 second=963 amount=-1 +kerning first=34 second=117 amount=-1 +kerning first=1043 second=1086 amount=-2 +kerning first=916 second=39 amount=-2 +kerning first=1058 second=1087 amount=-1 +kerning first=84 second=101 amount=-2 +kerning first=84 second=192 amount=-2 +kerning first=118 second=44 amount=-1 +kerning first=902 second=933 amount=-1 +kerning first=933 second=913 amount=-1 +kerning first=1098 second=1091 amount=-1 +kerning first=44 second=1060 amount=-1 +kerning first=1066 second=1058 amount=-1 +kerning first=932 second=945 amount=-2 +kerning first=1056 second=46 amount=-3 +kerning first=934 second=46 amount=-1 +kerning first=46 second=87 amount=-1 +kerning first=933 second=965 amount=-1 +kerning first=70 second=46 amount=-1 +kerning first=211 second=46 amount=-1 +kerning first=1056 second=44 amount=-3 +kerning first=39 second=233 amount=-1 +kerning first=77 second=225 amount=-2 +kerning first=929 second=916 amount=-1 +kerning first=932 second=961 amount=-1 +kerning first=44 second=1063 amount=-2 +kerning first=84 second=250 amount=-1 +kerning first=46 second=89 amount=-1 +kerning first=902 second=936 amount=-1 +kerning first=915 second=965 amount=-1 +kerning first=80 second=193 amount=-1 +kerning first=84 second=224 amount=-2 +kerning first=89 second=243 amount=-1 +kerning first=84 second=263 amount=-2 +kerning first=910 second=972 amount=-1 +kerning first=932 second=971 amount=-1 +kerning first=1098 second=1095 amount=-1 +kerning first=950 second=45 amount=-1 +kerning first=89 second=246 amount=-1 +kerning first=1091 second=46 amount=-1 +kerning first=84 second=103 amount=-2 +kerning first=65 second=34 amount=-2 +kerning first=943 second=34 amount=-1 +kerning first=1054 second=1058 amount=-1 +kerning first=915 second=962 amount=-2 +kerning first=910 second=913 amount=-1 +kerning first=84 second=117 amount=-1 +kerning first=1058 second=1094 amount=-1 +kerning first=908 second=44 amount=-1 +kerning first=1058 second=1100 amount=-1 +kerning first=933 second=940 amount=-1 +kerning first=68 second=44 amount=-1 +kerning first=89 second=233 amount=-1 +kerning first=1043 second=45 amount=-1 +kerning first=910 second=940 amount=-1 +kerning first=1100 second=1091 amount=-1 +kerning first=45 second=1058 amount=-1 +kerning first=933 second=959 amount=-1 +kerning first=79 second=44 amount=-1 +kerning first=44 second=1057 amount=-1 +kerning first=84 second=111 amount=-2 +kerning first=84 second=46 amount=-1 +kerning first=1058 second=1081 amount=-1 +kerning first=1068 second=39 amount=-1 +kerning first=913 second=39 amount=-2 +kerning first=915 second=916 amount=-2 +kerning first=321 second=39 amount=-2 +kerning first=192 second=34 amount=-2 +kerning first=84 second=260 amount=-2 +kerning first=39 second=100 amount=-1 +kerning first=933 second=972 amount=-1 +kerning first=77 second=232 amount=-2 +kerning first=34 second=246 amount=-1 +kerning first=44 second=1054 amount=-1 +kerning first=87 second=192 amount=-1 +kerning first=39 second=113 amount=-1 +kerning first=260 second=84 amount=-2 +kerning first=121 second=34 amount=1 +kerning first=1059 second=44 amount=-1 +kerning first=933 second=949 amount=-1 +kerning first=44 second=933 amount=-1 +kerning first=210 second=84 amount=-1 +kerning first=34 second=65 amount=-2 +kerning first=44 second=1095 amount=-1 +kerning first=214 second=46 amount=-1 +kerning first=1069 second=46 amount=-1 +kerning first=77 second=281 amount=-2 +kerning first=196 second=87 amount=-1 +kerning first=39 second=923 amount=-2 +kerning first=39 second=112 amount=-1 +kerning first=933 second=953 amount=-1 +kerning first=260 second=39 amount=-2 +kerning first=119 second=39 amount=1 +kerning first=1040 second=1066 amount=-1 +kerning first=46 second=79 amount=-1 +kerning first=260 second=74 amount=3 +kerning first=1060 second=46 amount=-1 +kerning first=915 second=968 amount=-1 +kerning first=44 second=84 amount=-2 +kerning first=46 second=936 amount=-1 +kerning first=908 second=932 amount=-1 +kerning first=1090 second=1076 amount=-1 +kerning first=39 second=1083 amount=-2 +kerning first=34 second=1077 amount=-1 +kerning first=923 second=936 amount=-1 +kerning first=34 second=110 amount=-1 +kerning first=89 second=324 amount=-1 +kerning first=932 second=951 amount=-1 +kerning first=80 second=260 amount=-1 +kerning first=910 second=959 amount=-1 +kerning first=1058 second=1091 amount=-1 +kerning first=1043 second=1080 amount=-1 +kerning first=1058 second=46 amount=-1 +kerning first=1100 second=34 amount=-1 +kerning first=193 second=39 amount=-2 +kerning first=34 second=111 amount=-1 +kerning first=932 second=948 amount=-1 +kerning first=44 second=87 amount=-1 +kerning first=1100 second=1098 amount=-1 +kerning first=1090 second=1083 amount=-1 +kerning first=920 second=932 amount=-1 +kerning first=118 second=34 amount=1 +kerning first=1058 second=1103 amount=-1 +kerning first=44 second=1066 amount=-2 +kerning first=39 second=249 amount=-1 +kerning first=923 second=34 amount=-2 +kerning first=936 second=913 amount=-1 +kerning first=89 second=100 amount=-1 +kerning first=39 second=940 amount=-1 +kerning first=89 second=97 amount=-1 +kerning first=84 second=65 amount=-2 +kerning first=1043 second=1085 amount=-1 +kerning first=1040 second=39 amount=-2 +kerning first=1059 second=1044 amount=-1 +kerning first=196 second=84 amount=-2 +kerning first=933 second=974 amount=-1 +kerning first=39 second=966 amount=-1 +kerning first=1058 second=1077 amount=-2 +kerning first=84 second=243 amount=-2 +kerning first=121 second=44 amount=-1 +kerning first=910 second=943 amount=-1 +kerning first=1059 second=1040 amount=-2 +kerning first=39 second=1105 amount=-1 +kerning first=87 second=46 amount=-1 +kerning first=1047 second=46 amount=-1 +kerning first=46 second=86 amount=-1 +kerning first=915 second=942 amount=-1 +kerning first=1070 second=44 amount=-1 +kerning first=915 second=44 amount=-1 +kerning first=1058 second=1084 amount=-1 +kerning first=84 second=110 amount=-1 +kerning first=1043 second=1076 amount=-1 +kerning first=923 second=932 amount=-2 +kerning first=915 second=972 amount=-2 +kerning first=1043 second=1102 amount=-1 +kerning first=910 second=963 amount=-1 +kerning first=34 second=192 amount=-2 +kerning first=196 second=39 amount=-2 +kerning first=66 second=84 amount=-1 +kerning first=46 second=932 amount=-2 +kerning first=46 second=934 amount=-1 +kerning first=46 second=67 amount=-1 +kerning first=34 second=233 amount=-1 +kerning first=1047 second=44 amount=-1 +kerning first=933 second=956 amount=-1 +kerning first=39 second=324 amount=-1 +kerning first=34 second=1051 amount=-1 +kerning first=44 second=210 amount=-1 +kerning first=34 second=263 amount=-1 +kerning first=86 second=196 amount=-1 +kerning first=89 second=252 amount=-1 +kerning first=84 second=114 amount=-1 +kerning first=915 second=956 amount=-1 +kerning first=1066 second=1066 amount=-1 +kerning first=932 second=920 amount=-1 +kerning first=79 second=46 amount=-1 +kerning first=915 second=923 amount=-2 +kerning first=1043 second=1090 amount=-1 +kerning first=280 second=74 amount=1 +kerning first=84 second=97 amount=-2 +kerning first=1043 second=1082 amount=-1 +kerning first=39 second=959 amount=-1 +kerning first=214 second=44 amount=-1 +kerning first=914 second=44 amount=-1 +kerning first=39 second=192 amount=-2 +kerning first=1069 second=44 amount=-1 +kerning first=87 second=44 amount=-1 +kerning first=46 second=1063 amount=-2 +kerning first=1068 second=1066 amount=-1 +kerning first=1060 second=1059 amount=-1 +kerning first=34 second=99 amount=-1 +kerning first=1043 second=1098 amount=-1 +kerning first=1070 second=46 amount=-1 +kerning first=933 second=968 amount=-1 +kerning first=119 second=46 amount=-1 +kerning first=84 second=252 amount=-1 +kerning first=192 second=84 amount=-2 +kerning first=89 second=263 amount=-1 +kerning first=34 second=945 amount=-1 +kerning first=123 second=74 amount=2 +kerning first=933 second=963 amount=-1 +kerning first=77 second=228 amount=-2 +kerning first=1068 second=1063 amount=-1 +kerning first=39 second=913 amount=-2 +kerning first=84 second=233 amount=-2 +kerning first=902 second=34 amount=-2 +kerning first=915 second=954 amount=-1 +kerning first=915 second=940 amount=-2 +kerning first=39 second=250 amount=-1 +kerning first=34 second=113 amount=-1 +kerning first=89 second=242 amount=-1 +kerning first=1058 second=44 amount=-1 +kerning first=44 second=86 amount=-1 +kerning first=89 second=114 amount=-1 +kerning first=34 second=228 amount=-1 +kerning first=34 second=902 amount=-2 +kerning first=193 second=34 amount=-2 +kerning first=932 second=949 amount=-1 +kerning first=1100 second=39 amount=-1 +kerning first=1058 second=1040 amount=-2 +kerning first=44 second=1098 amount=-1 +kerning first=260 second=86 amount=-1 +kerning first=927 second=46 amount=-1 +kerning first=34 second=324 amount=-1 +kerning first=932 second=943 amount=-1 +kerning first=193 second=87 amount=-1 +kerning first=932 second=937 amount=-1 +kerning first=929 second=923 amount=-1 +kerning first=77 second=97 amount=-2 +kerning first=86 second=46 amount=-1 +kerning first=34 second=1086 amount=-1 +kerning first=932 second=965 amount=-1 +kerning first=1066 second=39 amount=-1 +kerning first=1091 second=44 amount=-1 +kerning first=89 second=192 amount=-1 +kerning first=81 second=84 amount=-1 +kerning first=45 second=84 amount=-1 +kerning first=932 second=973 amount=-1 +kerning first=1069 second=1058 amount=-1 +kerning first=84 second=228 amount=-2 +kerning first=923 second=933 amount=-1 +kerning first=1059 second=1060 amount=-1 +kerning first=932 second=927 amount=-1 +kerning first=89 second=347 amount=-1 +kerning first=1058 second=1085 amount=-1 +kerning first=46 second=933 amount=-1 +kerning first=933 second=46 amount=-1 +kerning first=915 second=971 amount=-1 +kerning first=34 second=193 amount=-2 +kerning first=1068 second=34 amount=-1 +kerning first=34 second=249 amount=-1 +kerning first=200 second=74 amount=1 +kerning first=89 second=250 amount=-1 +kerning first=84 second=44 amount=-1 +kerning first=84 second=113 amount=-2 +kerning first=39 second=1089 amount=-1 +kerning first=932 second=44 amount=-1 +kerning first=1043 second=1088 amount=-1 +kerning first=932 second=972 amount=-2 +kerning first=39 second=260 amount=-2 +kerning first=1059 second=1076 amount=-1 +kerning first=1098 second=1098 amount=-1 +kerning first=44 second=71 amount=-1 +kerning first=193 second=86 amount=-1 +kerning first=1098 second=1090 amount=-1 +kerning first=65 second=89 amount=-1 +kerning first=34 second=243 amount=-1 +kerning first=936 second=916 amount=-1 +kerning first=915 second=963 amount=-2 +kerning first=1043 second=1051 amount=-1 +kerning first=39 second=281 amount=-1 +kerning first=39 second=1044 amount=-1 +kerning first=39 second=252 amount=-1 +kerning first=87 second=196 amount=-1 +kerning first=1040 second=34 amount=-2 +kerning first=1043 second=1083 amount=-1 +kerning first=933 second=961 amount=-1 +kerning first=1056 second=1083 amount=-1 +kerning first=933 second=962 amount=-1 +kerning first=114 second=39 amount=1 +kerning first=89 second=113 amount=-1 +kerning first=1075 second=44 amount=-1 +kerning first=920 second=44 amount=-1 +kerning first=915 second=902 amount=-2 +kerning first=89 second=228 amount=-1 +kerning first=84 second=347 amount=-1 +kerning first=1043 second=1096 amount=-1 +kerning first=89 second=46 amount=-1 +kerning first=1043 second=1074 amount=-1 +kerning first=967 second=46 amount=-1 +kerning first=34 second=224 amount=-1 +kerning first=915 second=934 amount=-1 +kerning first=933 second=923 amount=-1 +kerning first=915 second=46 amount=-1 +kerning first=196 second=34 amount=-2 +kerning first=84 second=249 amount=-1 +kerning first=44 second=1090 amount=-1 +kerning first=902 second=932 amount=-2 +kerning first=910 second=916 amount=-1 +kerning first=1098 second=34 amount=-1 +kerning first=89 second=99 amount=-1 +kerning first=915 second=927 amount=-1 +kerning first=34 second=242 amount=-1 +kerning first=46 second=262 amount=-1 +kerning first=933 second=916 amount=-1 +kerning first=34 second=959 amount=-1 +kerning first=44 second=932 amount=-2 +kerning first=1043 second=1089 amount=-2 +kerning first=957 second=44 amount=-1 +kerning first=915 second=948 amount=-1 +kerning first=933 second=969 amount=-1 +kerning first=910 second=961 amount=-1 +kerning first=89 second=281 amount=-1 +kerning first=1056 second=1076 amount=-1 +kerning first=1100 second=1090 amount=-1 +kerning first=1058 second=1086 amount=-2 +kerning first=102 second=34 amount=1 +kerning first=936 second=923 amount=-1 +kerning first=34 second=913 amount=-2 +kerning first=955 second=34 amount=-1 +kerning first=1043 second=1044 amount=-1 +kerning first=84 second=112 amount=-1 +kerning first=84 second=122 amount=-1 +kerning first=39 second=945 amount=-1 +kerning first=1090 second=44 amount=-1 +kerning first=34 second=250 amount=-1 +kerning first=34 second=966 amount=-1 +kerning first=84 second=324 amount=-1 +kerning first=929 second=44 amount=-3 +kerning first=77 second=101 amount=-2 +kerning first=1059 second=1083 amount=-1 +kerning first=1043 second=46 amount=-1 +kerning first=192 second=89 amount=-1 +kerning first=39 second=243 amount=-1 +kerning first=1060 second=1058 amount=-1 +kerning first=910 second=923 amount=-1 +kerning first=39 second=99 amount=-1 diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.atlas b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.atlas new file mode 100644 index 0000000..601fe87 --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.atlas @@ -0,0 +1,710 @@ + +uiskin.png +size: 512,512 +format: RGBA8888 +filter: Nearest,Nearest +repeat: none +border + rotate: false + xy: 508, 102 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +border-circle + rotate: false + xy: 256, 40 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +border-circle-error + rotate: false + xy: 314, 44 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +border-dark-blue + rotate: false + xy: 508, 110 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +border-error + rotate: false + xy: 508, 106 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +button + rotate: false + xy: 427, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-blue + rotate: false + xy: 327, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-down + rotate: false + xy: 327, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-blue-down + rotate: false + xy: 277, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-blue-over + rotate: false + xy: 302, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-over + rotate: false + xy: 352, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-red + rotate: false + xy: 377, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +button-window-bg + rotate: false + xy: 402, 73 + size: 24, 40 + split: 10, 10, 10, 8 + pad: 8, 8, 2, 2 + orig: 24, 40 + offset: 0, 0 + index: -1 +check-down + rotate: false + xy: 343, 44 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +check-down-on + rotate: false + xy: 372, 44 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +check-off + rotate: false + xy: 401, 44 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +textfield + rotate: false + xy: 401, 44 + size: 28, 28 + split: 2, 2, 2, 2 + orig: 28, 28 + offset: 0, 0 + index: -1 +check-on + rotate: false + xy: 430, 44 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +check-on-disabled + rotate: false + xy: 459, 45 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +check-over-off + rotate: false + xy: 66, 36 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +textfield-over + rotate: false + xy: 66, 36 + size: 28, 28 + split: 2, 2, 2, 2 + orig: 28, 28 + offset: 0, 0 + index: -1 +check-over-on + rotate: false + xy: 65, 7 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +color-picker-bar-selector + rotate: false + xy: 489, 85 + size: 14, 28 + orig: 14, 28 + offset: 0, 0 + index: -1 +color-picker-cross + rotate: false + xy: 204, 19 + size: 10, 10 + orig: 10, 10 + offset: 0, 0 + index: -1 +color-picker-selector-horizontal + rotate: false + xy: 22, 27 + size: 6, 1 + orig: 6, 1 + offset: 0, 0 + index: -1 +color-picker-selector-vertical + rotate: false + xy: 1, 1 + size: 1, 6 + orig: 1, 6 + offset: 0, 0 + index: -1 +cursor + rotate: false + xy: 508, 98 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +default + rotate: false + xy: 1, 279 + size: 510, 232 + orig: 512, 256 + offset: 0, 24 + index: -1 +default-pane + rotate: false + xy: 277, 69 + size: 5, 3 + split: 1, 1, 1, 1 + orig: 5, 3 + offset: 0, 0 + index: -1 +default-pane-no-border + rotate: false + xy: 254, 40 + size: 1, 1 + split: 0, 0, 0, 0 + orig: 1, 1 + offset: 0, 0 + index: -1 +default-select + rotate: false + xy: 29, 65 + size: 54, 48 + split: 8, 32, 0, 48 + orig: 54, 48 + offset: 0, 0 + index: -1 +default-select-selection + rotate: false + xy: 508, 94 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +font-small + rotate: false + xy: 1, 114 + size: 509, 164 + orig: 512, 256 + offset: 0, 91 + index: -1 +grey + rotate: false + xy: 93, 65 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +menu-bg + rotate: false + xy: 93, 65 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +icon-arrow-left + rotate: false + xy: 29, 36 + size: 36, 28 + orig: 44, 44 + offset: 4, 8 + index: -1 +icon-arrow-right + rotate: false + xy: 452, 85 + size: 36, 28 + orig: 44, 44 + offset: 4, 8 + index: -1 +icon-close + rotate: false + xy: 1, 8 + size: 20, 20 + orig: 44, 44 + offset: 12, 12 + index: -1 +icon-drive + rotate: false + xy: 452, 74 + size: 36, 10 + orig: 44, 44 + offset: 4, 18 + index: -1 +icon-file-audio + rotate: false + xy: 285, 36 + size: 28, 36 + orig: 44, 44 + offset: 8, 4 + index: -1 +icon-file-image + rotate: false + xy: 95, 38 + size: 26, 30 + orig: 44, 44 + offset: 9, 7 + index: -1 +icon-file-pdf + rotate: false + xy: 29, 1 + size: 28, 34 + orig: 44, 44 + offset: 8, 5 + index: -1 +icon-file-text + rotate: false + xy: 446, 13 + size: 26, 30 + orig: 44, 44 + offset: 9, 7 + index: -1 +icon-folder + rotate: false + xy: 129, 27 + size: 32, 24 + orig: 44, 44 + offset: 6, 12 + index: -1 +icon-folder-new + rotate: false + xy: 185, 39 + size: 35, 29 + orig: 44, 44 + offset: 5, 7 + index: -1 +icon-folder-parent + rotate: false + xy: 384, 19 + size: 32, 24 + orig: 44, 44 + offset: 6, 12 + index: -1 +icon-folder-star + rotate: false + xy: 221, 42 + size: 34, 26 + orig: 44, 44 + offset: 5, 9 + index: -1 +icon-trash + rotate: false + xy: 473, 14 + size: 24, 30 + orig: 44, 44 + offset: 10, 7 + index: -1 +list-selection + rotate: false + xy: 283, 38 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +vis-blue + rotate: false + xy: 283, 38 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +padded-list-selection + rotate: false + xy: 84, 67 + size: 10, 1 + split: 4, 4, 0, 1 + orig: 10, 1 + offset: 0, 0 + index: -1 +progressbar + rotate: false + xy: 504, 81 + size: 1, 32 + orig: 1, 32 + offset: 0, 0 + index: -1 +progressbar-filled + rotate: false + xy: 506, 81 + size: 1, 32 + orig: 1, 32 + offset: 0, 0 + index: -1 +progressbar-filled-vertical + rotate: false + xy: 221, 40 + size: 32, 1 + orig: 32, 1 + offset: 0, 0 + index: -1 +progressbar-vertical + rotate: false + xy: 221, 38 + size: 32, 1 + orig: 32, 1 + offset: 0, 0 + index: -1 +radio-down + rotate: false + xy: 417, 15 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +radio-down-on + rotate: false + xy: 314, 8 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +radio-off + rotate: false + xy: 343, 8 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +radio-on + rotate: false + xy: 254, 11 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +radio-on-disabled + rotate: false + xy: 283, 7 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +radio-over-off + rotate: false + xy: 94, 5 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +radio-over-on + rotate: false + xy: 175, 10 + size: 28, 28 + orig: 28, 28 + offset: 0, 0 + index: -1 +scroll + rotate: false + xy: 349, 37 + size: 34, 6 + split: 4, 4, 2, 2 + orig: 34, 6 + offset: 0, 0 + index: -1 +scroll-horizontal + rotate: false + xy: 58, 1 + size: 6, 34 + split: 2, 2, 0, 34 + pad: -1, -1, 5, 4 + orig: 6, 34 + offset: 0, 0 + index: -1 +scroll-knob-horizontal + rotate: false + xy: 122, 34 + size: 6, 34 + split: 2, 2, 0, 34 + pad: -1, -1, 13, 12 + orig: 6, 34 + offset: 0, 0 + index: -1 +scroll-knob-vertical + rotate: false + xy: 314, 37 + size: 34, 6 + split: 12, 12, 2, 2 + orig: 34, 6 + offset: 0, 0 + index: -1 +select-box-list-bg + rotate: false + xy: 283, 36 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +window-bg + rotate: false + xy: 283, 36 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +select-down + rotate: false + xy: 489, 76 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +select-up + rotate: false + xy: 204, 30 + size: 14, 8 + orig: 14, 8 + offset: 0, 0 + index: -1 +selection + rotate: false + xy: 283, 71 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +separator + rotate: false + xy: 283, 69 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +tree-over + rotate: false + xy: 283, 69 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +separator-menu + rotate: false + xy: 219, 37 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +slider + rotate: false + xy: 312, 27 + size: 1, 8 + orig: 1, 8 + offset: 0, 0 + index: -1 +slider-knob + rotate: false + xy: 185, 69 + size: 22, 44 + orig: 22, 44 + offset: 0, 0 + index: -1 +slider-knob-disabled + rotate: false + xy: 208, 69 + size: 22, 44 + orig: 22, 44 + offset: 0, 0 + index: -1 +slider-knob-down + rotate: false + xy: 231, 69 + size: 22, 44 + orig: 22, 44 + offset: 0, 0 + index: -1 +slider-knob-over + rotate: false + xy: 254, 69 + size: 22, 44 + orig: 22, 44 + offset: 0, 0 + index: -1 +slider-vertical + rotate: false + xy: 84, 65 + size: 8, 1 + orig: 8, 1 + offset: 0, 0 + index: -1 +splitpane + rotate: false + xy: 94, 34 + size: 8, 1 + orig: 8, 1 + offset: 0, 0 + index: -1 +splitpane-over + rotate: false + xy: 95, 36 + size: 8, 1 + orig: 8, 1 + offset: 0, 0 + index: -1 +splitpane-vertical + rotate: false + xy: 312, 18 + size: 1, 8 + orig: 1, 8 + offset: 0, 0 + index: -1 +splitpane-vertical-over + rotate: false + xy: 312, 9 + size: 1, 8 + orig: 1, 8 + offset: 0, 0 + index: -1 +sub-menu + rotate: false + xy: 372, 22 + size: 8, 14 + orig: 8, 14 + offset: 0, 0 + index: -1 +tooltip-bg + rotate: false + xy: 508, 90 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +touchpad-knob + rotate: false + xy: 84, 69 + size: 44, 44 + orig: 44, 44 + offset: 0, 0 + index: -1 +tree-minus + rotate: false + xy: 372, 11 + size: 10, 10 + orig: 16, 16 + offset: 2, 4 + index: -1 +tree-plus + rotate: false + xy: 162, 35 + size: 12, 16 + orig: 16, 16 + offset: 2, 0 + index: -1 +tree-selection + rotate: false + xy: 508, 86 + size: 3, 3 + split: 1, 1, 1, 1 + orig: 3, 3 + offset: 0, 0 + index: -1 +vis-red + rotate: false + xy: 312, 7 + size: 1, 1 + orig: 1, 1 + offset: 0, 0 + index: -1 +white + rotate: false + xy: 508, 82 + size: 3, 3 + orig: 3, 3 + offset: 0, 0 + index: -1 +window + rotate: false + xy: 157, 52 + size: 27, 61 + split: 5, 4, 53, 3 + orig: 27, 61 + offset: 0, 0 + index: -1 +window-noborder + rotate: false + xy: 129, 52 + size: 27, 61 + split: 5, 4, 53, 3 + orig: 27, 61 + offset: 0, 0 + index: -1 +window-resizable + rotate: false + xy: 1, 29 + size: 27, 84 + split: 3, 19, 2, 20 + pad: 5, 5, 50, 7 + orig: 27, 84 + offset: 0, 0 + index: -1 diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.json b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.json new file mode 100644 index 0000000..54aad2c --- /dev/null +++ b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.json @@ -0,0 +1,169 @@ +{ +com.badlogic.gdx.graphics.g2d.BitmapFont: { + default-font: {file: default.fnt }, + small-font: {file: font-small.fnt } +}, +com.badlogic.gdx.graphics.Color: { + black: {a: 1, b: 0, g: 0, r: 0 }, + white: {a: 1, b: 1, g: 1, r: 1 }, + green: {a: 1, b: 0, g: 1, r: 0 }, + red: {a: 1, b: 0, g: 0, r: 1 }, + blue: {a: 1, b: 1, g: 0, r: 0 }, + grey: {a: 1, b: 0.32, g: 0.32, r: 0.32 }, + vis-blue: {a: 1, b: 0.886, g: 0.631, r: 0.105 }, + vis-red: {a: 1, b: 0.047, g: 0, r: 0.862 }, + menuitem: {a: 1, b: 0.65, g: 0.65, r: 0.65 }, + link-label: {a: 1, b: 0.886, g: 0.631, r: 0.105 } +}, +com.badlogic.gdx.scenes.scene2d.ui.Skin$TintedDrawable: { + dialogDim: {name: white, color: {r: 0, g: 0, b: 0, a: 0.45} } +}, +com.badlogic.gdx.scenes.scene2d.ui.Button$ButtonStyle: { + default: {down: button-down, up: button }, + blue: {down: button-blue-down, up: button-blue }, + toggle: {checked: button-down, down: button-down, up: button } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: { + default: {over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, down: button-down, up: button }, + blue: {over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, down: button-blue-down, up: button-blue }, + toggle: {font: default-font, fontColor: white, checked: button-down, down: button-down, up: button, over: button-over, disabled: button, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.ScrollPane$ScrollPaneStyle: { + list: {vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal }, + default: {background: border, vScroll: scroll, vScrollKnob: scroll-knob-vertical, hScroll: scroll-horizontal, hScrollKnob: scroll-knob-horizontal } +}, +com.badlogic.gdx.scenes.scene2d.ui.SelectBox$SelectBoxStyle: { + default: {background: default-select, scrollStyle: default, listStyle: {font: default-font, selection: padded-list-selection, background: select-box-list-bg}, font: default-font, fontColor: white, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.SplitPane$SplitPaneStyle: { + default-vertical: {handle: splitpane-vertical }, + default-horizontal: {handle: splitpane } +}, +com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: { + default: {titleFont: default-font, background: window, titleFontColor: white }, + resizable: {background: window-resizable, titleFont: default-font, titleFontColor: white }, + noborder: {background: window-noborder, titleFont: default-font, titleFontColor: white }, + dialog: {stageBackground: dialogDim, titleFont: default-font, background: window, titleFontColor: white } +}, +com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: { + default-horizontal: {background: progressbar, knob: progressbar-filled, knobBefore: progressbar-filled }, + default-vertical: {background: progressbar-vertical, knob: progressbar-filled-vertical, knobBefore: progressbar-filled-vertical } +}, +com.badlogic.gdx.scenes.scene2d.ui.Slider$SliderStyle: { + default-horizontal: {background: slider, knob: slider-knob, knobOver: slider-knob-over, knobDown: slider-knob-down, disabledKnob: slider-knob-disabled }, + default-vertical: {background: slider-vertical, knob: slider-knob, knobOver: slider-knob-over, knobDown: slider-knob-down, disabledKnob: slider-knob-disabled } +}, +com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: { + default: {font: default-font, fontColor: white }, + link-label: {fontColor: link-label, font: default-font }, + small: {font: small-font, fontColor: white }, + menuitem-shortcut: {font: default-font, fontColor: menuitem } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: { + default: {font: default-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, cursor: cursor, messageFont: default-font, messageFontColor: grey }, + small: {font: small-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, cursor: cursor, messageFont: default-font, messageFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.CheckBox$CheckBoxStyle: { + default: {checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white, disabledFontColor: grey }, + radio: {checkboxOn: radio-on, checkboxOff: radio-off, font: default-font, fontColor: white, disabledFontColor: grey } +}, +com.badlogic.gdx.scenes.scene2d.ui.List$ListStyle: { + default: {fontColorUnselected: white, selection: padded-list-selection, fontColorSelected: white, font: default-font } +}, +com.badlogic.gdx.scenes.scene2d.ui.Touchpad$TouchpadStyle: { + default: {background: default-pane, knob: touchpad-knob } +}, +com.badlogic.gdx.scenes.scene2d.ui.Tree$TreeStyle: { + default: {minus: tree-minus, plus: tree-plus, selection: tree-selection, over: tree-over } +}, +com.badlogic.gdx.scenes.scene2d.ui.TextTooltip$TextTooltipStyle: { + default: {background: default-pane, label: {font: default-font, fontColor: white} } +}, +com.kotcrab.vis.ui.Sizes: { + default: {scaleFactor: 1, spacingBottom: 8, spacingRight: 6, buttonBarSpacing: 10, menuItemIconSize: 22, numberSelectorButtonSize: 12, numberSelectorButtonsWidth: 12, numberSelectorFieldSize: 40, numberSelectorFieldRightPadding: 1 }, + x2: {scaleFactor: 2, spacingBottom: 8, spacingRight: 6, buttonBarSpacing: 10, menuItemIconSize: 44, numberSelectorButtonSize: 24, numberSelectorButtonsWidth: 20, numberSelectorFieldSize: 80, numberSelectorFieldRightPadding: 5 } +}, +com.kotcrab.vis.ui.widget.VisTextField$VisTextFieldStyle: { + default: {focusBorder: border, font: default-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, backgroundOver: textfield-over, errorBorder: border-error, cursor: cursor }, + small: {focusBorder: border, font: small-font, fontColor: white, disabledFontColor: grey, selection: selection, background: textfield, backgroundOver: textfield-over, errorBorder: border-error, cursor: cursor } +}, +com.kotcrab.vis.ui.widget.VisTextButton$VisTextButtonStyle: { + default: {focusBorder: border, down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + toggle: {focusBorder: border, checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey }, + blue: {focusBorder: border-dark-blue, down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + menu-bar: {over: button-down, font: default-font, fontColor: white, down: button-down, up: button, disabled: button, disabledFontColor: grey } +}, +com.kotcrab.vis.ui.widget.VisImageButton$VisImageButtonStyle: { + default: {down: button-down, up: button, over: button-over, disabled: button, focusBorder: border }, + blue: {down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button-blue, focusBorder: border-dark-blue }, + toggle: {checked: button-down, focusBorder: border, down: button-down, up: button, over: button-over, disabled: button }, + close: {down: button-red, up: button, over: button-over, imageUp: icon-close, disabled: button }, + close-active-tab: {down: button-red, imageUp: icon-close, up: button-blue, over: button-blue-over, disabled: button-blue }, + close-window: {up: button-window-bg, down: button-red, over: button-over, imageUp: icon-close, disabled: button } +}, +com.kotcrab.vis.ui.widget.VisImageTextButton$VisImageTextButtonStyle: { + default: {down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, focusBorder: border }, + toggle: {checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey, focusBorder: border }, + blue: {down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey, focusBorder: border-dark-blue }, + default-noborder: {down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + toggle-noborder: {checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey }, + menu-bar: {over: button-down, font: default-font, fontColor: white, down: button-down, up: button, disabled: button, disabledFontColor: grey } +}, +com.kotcrab.vis.ui.widget.VisCheckBox$VisCheckBoxStyle: { + default: {checkboxOver: check-over-off, checkboxOnOver: check-over-on, checkboxOffDown: check-down, checkboxOnDown: check-down-on, checkboxOffDisabled: check-off, checkboxOnDisabled: check-on-disabled, errorBorder: border-error, focusBorder: border, checkboxOn: check-on, checkboxOff: check-off, font: default-font, fontColor: white, disabledFontColor: grey }, + radio: {checkboxOver: radio-over-off, checkboxOnOver: radio-over-on, checkboxOffDown: radio-down, checkboxOnDown: radio-down-on, checkboxOffDisabled: radio-off, checkboxOnDisabled: radio-on-disabled, errorBorder: border-circle-error, focusBorder: border-circle, checkboxOn: radio-on, checkboxOff: radio-off, font: default-font, fontColor: white, disabledFontColor: grey } +}, +com.kotcrab.vis.ui.widget.PopupMenu$PopupMenuStyle: { + noborder: {background: button }, + default: {background: button, border: border } +}, +com.kotcrab.vis.ui.widget.Menu$MenuStyle: { + default: {background: button, border: border, openButtonStyleName: "menu-bar" }, + noborder: {background: button, openButtonStyleName: "menu-bar" } +}, +com.kotcrab.vis.ui.widget.MenuBar$MenuBarStyle: { + default: {background: menu-bg } +}, +com.kotcrab.vis.ui.widget.Separator$SeparatorStyle: { + default: {background: separator, thickness: 4 }, + menu: {background: separator-menu, thickness: 3 } +}, +com.kotcrab.vis.ui.widget.VisSplitPane$VisSplitPaneStyle: { + default-vertical: {handle: splitpane-vertical, handleOver: splitpane-vertical-over }, + default-horizontal: {handle: splitpane, handleOver: splitpane-over } +}, +com.kotcrab.vis.ui.widget.MenuItem$MenuItemStyle: { + default: {subMenu: sub-menu, down: button-down, up: button, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + blue: {down: button-blue-down, up: button-blue, over: button-blue-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey }, + toggle: {checked: button-down, down: button-down, up: button, font: default-font, fontColor: white, over: button-over, disabled: button, disabledFontColor: grey, subMenu: sub-menu } +}, +com.kotcrab.vis.ui.widget.NumberSelector$NumberSelectorStyle: { + default: {down: select-down, up: select-up } +}, +com.kotcrab.vis.ui.widget.Tooltip$TooltipStyle: { + default: {background: tooltip-bg } +}, +com.kotcrab.vis.ui.widget.LinkLabel$LinkLabelStyle: { + default: {fontColor: link-label, underline: white, font: default-font } +}, +com.kotcrab.vis.ui.widget.tabbedpane.TabbedPane$TabbedPaneStyle: { + default: {background: menu-bg, separatorBar: list-selection, buttonStyle: {down: button-down, up: button, checked: button-down, over: button-over, disabled: button, font: default-font, fontColor: white, disabledFontColor: grey} } +}, +com.kotcrab.vis.ui.widget.file.FileChooserStyle: { + default: {highlight: list-selection, popupMenuStyleName: "default", iconArrowLeft: icon-arrow-left, iconArrowRight: icon-arrow-right, iconFolder: icon-folder, iconFolderParent: icon-folder-parent, iconFolderNew: icon-folder-new, iconDrive: icon-drive, iconFolderStar: icon-folder-star, iconTrash: icon-trash, iconFileText: icon-file-text, iconFileImage: icon-file-image, iconFilePdf: icon-file-pdf, iconFileAudio: icon-file-audio } +}, +com.kotcrab.vis.ui.widget.color.ColorPickerWidgetStyle: { + default: {barSelector: color-picker-bar-selector, cross: color-picker-cross, iconArrowRight: icon-arrow-right, verticalSelector: color-picker-selector-vertical, horizontalSelector: color-picker-selector-horizontal } +}, +com.kotcrab.vis.ui.widget.color.ColorPickerStyle: { + default: {pickerStyle: {barSelector: color-picker-bar-selector, cross: color-picker-cross, iconArrowRight: icon-arrow-right, verticalSelector: color-picker-selector-vertical, horizontalSelector: color-picker-selector-horizontal}, titleFont: default-font, background: window, titleFontColor: white } +}, +com.kotcrab.vis.ui.util.form.SimpleFormValidator$FormValidatorStyle: { + default: {errorLabelColor: vis-red, validLabelColor: white }, + smooth: {colorTransitionDuration: 0.3, errorLabelColor: vis-red, validLabelColor: white } +}, +com.kotcrab.vis.ui.util.adapter.SimpleListAdapter$SimpleListAdapterStyle: { + default: {background: window-bg, selection: list-selection } +} + +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.png b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.png new file mode 100644 index 0000000..cc910a8 Binary files /dev/null and b/src/main/resources/omni_power/gdx-skins/vis/skin/x2/uiskin.png differ diff --git a/src/main/resources/omni_power/gui/example.json b/src/main/resources/omni_power/gui/example.json new file mode 100644 index 0000000..57f1cb5 --- /dev/null +++ b/src/main/resources/omni_power/gui/example.json @@ -0,0 +1,48 @@ +{ + "id": "example_ui", + "width": 250, + "height": 200, + "layout": [ + { + "type": "label", + "text": "Test", + "font_scale": 1 + }, + { + "type": "row" + }, + { + "type": "space", + "height": 10 + }, + { + "type": "row" + }, + { + "type": "table", + "layout": [ + { + "type": "item_slot", + "slot": 0 + }, + { + "type": "item_slot", + "slot": 1 + } + ] + }, + { + "type": "row" + }, + { + "type": "item_slot", + "slot": 2, + "output": true + }, + { + "type": "change_ui_text_button", + "text": "Second UI", + "gui_id": "example_ui_2" + } + ] +} \ No newline at end of file diff --git a/src/main/resources/omni_power/gui/example2.json b/src/main/resources/omni_power/gui/example2.json new file mode 100644 index 0000000..bce7cd5 --- /dev/null +++ b/src/main/resources/omni_power/gui/example2.json @@ -0,0 +1,21 @@ +{ + "id": "example_ui_2", + "layout": [ + { + "type": "label", + "text": "Test 2", + "font_scale": 1 + }, + { + "type": "row" + }, + { + "type": "item_slot", + "slot": 0 + }, + { + "type": "item_slot", + "slot": 1 + } + ] +} \ No newline at end of file