From 05d29ccce1898ed89c0b650c77242c2fa2805128 Mon Sep 17 00:00:00 2001 From: Sophia Pearson Date: Fri, 20 May 2022 00:45:25 +0200 Subject: texty: initial commit --- Assets/Fonts/VT323-Regular.ttf | 3 +++ Assets/Fonts/VT323Font24.tres | 9 +++++++++ Assets/Styles/GUIBox.tres | 12 ++++++++++++ Assets/Styles/GUIBoxDisabled.tres | 12 ++++++++++++ Assets/Styles/GuiBoxHover.tres | 12 ++++++++++++ Assets/Styles/GuiBoxPressed.tres | 12 ++++++++++++ 6 files changed, 60 insertions(+) create mode 100644 Assets/Fonts/VT323-Regular.ttf create mode 100644 Assets/Fonts/VT323Font24.tres create mode 100644 Assets/Styles/GUIBox.tres create mode 100644 Assets/Styles/GUIBoxDisabled.tres create mode 100644 Assets/Styles/GuiBoxHover.tres create mode 100644 Assets/Styles/GuiBoxPressed.tres (limited to 'Assets') diff --git a/Assets/Fonts/VT323-Regular.ttf b/Assets/Fonts/VT323-Regular.ttf new file mode 100644 index 0000000..01ef3b2 --- /dev/null +++ b/Assets/Fonts/VT323-Regular.ttf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:214c2bbd6f7d1a9787413a01dccdf6134fd1ed7934e425d07c2ad32b1568979a +size 86576 diff --git a/Assets/Fonts/VT323Font24.tres b/Assets/Fonts/VT323Font24.tres new file mode 100644 index 0000000..b2091a5 --- /dev/null +++ b/Assets/Fonts/VT323Font24.tres @@ -0,0 +1,9 @@ +[gd_resource type="DynamicFont" load_steps=2 format=2] + +[sub_resource type="DynamicFontData" id=1] +font_path = "res://Assets/Fonts/VT323-Regular.ttf" + +[resource] +size = 24 +use_filter = true +font_data = SubResource( 1 ) diff --git a/Assets/Styles/GUIBox.tres b/Assets/Styles/GUIBox.tres new file mode 100644 index 0000000..81e3687 --- /dev/null +++ b/Assets/Styles/GUIBox.tres @@ -0,0 +1,12 @@ +[gd_resource type="StyleBoxFlat" format=2] + +[resource] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 8.0 +content_margin_bottom = 8.0 +bg_color = Color( 0.1, 0.1, 0.1, 0.627451 ) +corner_radius_top_left = 8 +corner_radius_top_right = 8 +corner_radius_bottom_right = 8 +corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GUIBoxDisabled.tres b/Assets/Styles/GUIBoxDisabled.tres new file mode 100644 index 0000000..81e3687 --- /dev/null +++ b/Assets/Styles/GUIBoxDisabled.tres @@ -0,0 +1,12 @@ +[gd_resource type="StyleBoxFlat" format=2] + +[resource] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 8.0 +content_margin_bottom = 8.0 +bg_color = Color( 0.1, 0.1, 0.1, 0.627451 ) +corner_radius_top_left = 8 +corner_radius_top_right = 8 +corner_radius_bottom_right = 8 +corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GuiBoxHover.tres b/Assets/Styles/GuiBoxHover.tres new file mode 100644 index 0000000..4681f62 --- /dev/null +++ b/Assets/Styles/GuiBoxHover.tres @@ -0,0 +1,12 @@ +[gd_resource type="StyleBoxFlat" format=2] + +[resource] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 8.0 +content_margin_bottom = 8.0 +bg_color = Color( 0, 0, 0, 0.627451 ) +corner_radius_top_left = 8 +corner_radius_top_right = 8 +corner_radius_bottom_right = 8 +corner_radius_bottom_left = 8 diff --git a/Assets/Styles/GuiBoxPressed.tres b/Assets/Styles/GuiBoxPressed.tres new file mode 100644 index 0000000..cedec54 --- /dev/null +++ b/Assets/Styles/GuiBoxPressed.tres @@ -0,0 +1,12 @@ +[gd_resource type="StyleBoxFlat" format=2] + +[resource] +content_margin_left = 8.0 +content_margin_right = 8.0 +content_margin_top = 8.0 +content_margin_bottom = 8.0 +bg_color = Color( 0, 0, 0, 0.862745 ) +corner_radius_top_left = 8 +corner_radius_top_right = 8 +corner_radius_bottom_right = 8 +corner_radius_bottom_left = 8 -- cgit v1.2.3