summaryrefslogtreecommitdiff
path: root/scenes/LegallyDistinctPaperclipAssistant/window.tscn
blob: cfea78b73b3f3d6aaae3e9d79f9d776009b8d278 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
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"]