data ui
All checks were successful
/ Auto-Build-App (push) Successful in 2m26s

This commit is contained in:
pietru 2024-09-28 20:39:12 +02:00
parent 51792fe1d4
commit 705636de0d
3459 changed files with 90302 additions and 6 deletions

View file

@ -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

View file

@ -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<String,JsonValue> 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);
}
}

View file

@ -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);
});
}
}

View file

@ -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<slotWidgets.length;i++){
if (slotWidgets[i]==null)
slotWidgets[i]=new ItemSlotWidget(container,container.getSlot(i));
}
background.setWidth(ui_layout.getFloat("width",250));
background.setHeight(ui_layout.getFloat("height",200));
stack.add(background);
stack.add(table);
stack.setBounds(background.getX(), background.getY(), background.getWidth(), background.getHeight());
this.slotActor = stack;
stack.setHeight(stack.getHeight() + 16.0F);
this.init();
}
static void build_ui(JsonValue layout,Table table, CustomScreen screen){
Iterator<JsonValue> 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);
}
}
}

File diff suppressed because it is too large Load diff

View file

@ -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
}
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 37 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 85 KiB

View file

@ -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

View file

@ -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.

View file

@ -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).

View file

@ -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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 149 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 38 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 59 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 B

View file

@ -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

View file

@ -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
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 309 KiB

View file

@ -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

View file

@ -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

View file

@ -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

View file

@ -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).

View file

@ -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.

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 317 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 839 B

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.8 KiB

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 869 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,015 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 966 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 661 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 143 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 748 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 553 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 548 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 114 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 121 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 468 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 541 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 613 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 926 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 142 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 98 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 89 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 262 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 281 B

View file

@ -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

View file

@ -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
}
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 94 KiB

View file

@ -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

View file

@ -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

View file

@ -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.

View file

@ -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/).

Binary file not shown.

After

Width:  |  Height:  |  Size: 49 KiB

Some files were not shown because too many files have changed in this diff Show more