summaryrefslogtreecommitdiff
path: root/scenes/LegallyDistinctPaperclipAssistant/window.tscn
diff options
context:
space:
mode:
authorjacob janzen <53062115+JacobJanzen@users.noreply.github.com>2024-11-16 14:16:06 -0600
committerGitHub <noreply@github.com>2024-11-16 14:16:06 -0600
commitaacf95aab9f2bec6c9f8676960122bcfa440bb9f (patch)
tree3e9cfeb768765bf14cce2dbdfa07d78adefadac4 /scenes/LegallyDistinctPaperclipAssistant/window.tscn
parent606c1714c654cb247a70c23b335a0aeca91c4c52 (diff)
add clippy (#3)
Diffstat (limited to 'scenes/LegallyDistinctPaperclipAssistant/window.tscn')
-rw-r--r--scenes/LegallyDistinctPaperclipAssistant/window.tscn73
1 files changed, 73 insertions, 0 deletions
diff --git a/scenes/LegallyDistinctPaperclipAssistant/window.tscn b/scenes/LegallyDistinctPaperclipAssistant/window.tscn
new file mode 100644
index 0000000..cfea78b
--- /dev/null
+++ b/scenes/LegallyDistinctPaperclipAssistant/window.tscn
@@ -0,0 +1,73 @@
+[gd_scene load_steps=7 format=3 uid="uid://bbg7lnak6kup7"]
+
+[ext_resource type="Texture2D" uid="uid://b1t8f4nb5aahv" path="res://scenes/LegallyDistinctPaperclipAssistant/LDPA_angy.png" id="1_bqw21"]
+[ext_resource type="Script" path="res://scenes/LegallyDistinctPaperclipAssistant/paperclip.gd" id="1_mbnc6"]
+[ext_resource type="Texture2D" uid="uid://bdwx62dyof0fb" path="res://scenes/LegallyDistinctPaperclipAssistant/LDPA_hapi.png" id="2_stani"]
+[ext_resource type="Texture2D" uid="uid://bv0ecc0g1i45s" path="res://scenes/LegallyDistinctPaperclipAssistant/LDPA_normal.png" id="3_dw2nh"]
+[ext_resource type="Theme" uid="uid://ve18rbkeiwti" path="res://UI/text.tres" id="5_8ck3a"]
+
+[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_a5dhw"]
+bg_color = Color(0.980392, 0.980392, 0.8, 1)
+border_width_left = 5
+border_width_top = 5
+border_width_right = 5
+border_width_bottom = 5
+border_color = Color(0, 0, 0, 1)
+corner_radius_top_left = 20
+corner_radius_top_right = 20
+corner_radius_bottom_right = 20
+corner_radius_bottom_left = 20
+
+[node name="Window" type="Window"]
+transparent_bg = true
+position = Vector2i(0, 36)
+size = Vector2i(1000, 600)
+unresizable = true
+borderless = true
+transparent = true
+script = ExtResource("1_mbnc6")
+
+[node name="Panel" type="Panel" parent="."]
+custom_minimum_size = Vector2(600, 200)
+offset_left = 400.0
+offset_right = 1000.0
+offset_bottom = 200.0
+mouse_filter = 2
+theme_override_styles/panel = SubResource("StyleBoxFlat_a5dhw")
+
+[node name="Label" type="Label" parent="."]
+offset_left = 420.0
+offset_top = 15.0
+offset_right = 1491.0
+offset_bottom = 99.0
+theme = ExtResource("5_8ck3a")
+theme_override_font_sizes/font_size = 25
+text = "Hi, I'm your legally
+distinct paperclip
+assistant, Clippette..."
+
+[node name="Angy" type="Sprite2D" parent="."]
+visible = false
+position = Vector2(250, 350)
+texture = ExtResource("1_bqw21")
+
+[node name="Hapi" type="Sprite2D" parent="."]
+visible = false
+position = Vector2(250, 350)
+texture = ExtResource("2_stani")
+
+[node name="Normal" type="Sprite2D" parent="."]
+position = Vector2(250, 350)
+texture = ExtResource("3_dw2nh")
+
+[node name="Paperclips" type="Node2D" parent="."]
+
+[node name="TextureButton" type="TextureButton" parent="."]
+offset_right = 1000.0
+offset_bottom = 600.0
+
+[node name="Timer" type="Timer" parent="."]
+wait_time = 0.25
+
+[connection signal="button_up" from="TextureButton" to="." method="_on_texture_button_button_up"]
+[connection signal="timeout" from="Timer" to="." method="_on_timer_timeout"]