Content patch import dialog & server support

This commit is contained in:
Anuken
2025-10-22 06:42:01 -04:00
parent 9f7817f70e
commit 9cc3105518
16 changed files with 373 additions and 28 deletions

View File

@@ -92,7 +92,7 @@ public class Styles{
public static ScrollPaneStyle defaultPane, horizontalPane, smallPane, noBarPane;
public static SliderStyle defaultSlider;
public static LabelStyle defaultLabel, outlineLabel, techLabel;
public static LabelStyle defaultLabel, outlineLabel, techLabel, monoLabel;
public static TextFieldStyle defaultField, nodeField, areaField, nodeArea;
public static CheckBoxStyle defaultCheck;
public static DialogStyle defaultDialog, fullDialog;
@@ -380,6 +380,10 @@ public class Styles{
font = Fonts.tech;
fontColor = Color.white;
}};
monoLabel = new LabelStyle(){{
font = Fonts.monospace;
fontColor = Color.white;
}};
defaultField = new TextFieldStyle(){{
font = Fonts.def;