-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tscn
More file actions
72 lines (61 loc) · 2.26 KB
/
Copy pathmain.tscn
File metadata and controls
72 lines (61 loc) · 2.26 KB
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
[gd_scene load_steps=4 format=3 uid="uid://cg3hylang5fxn"]
[ext_resource type="Script" path="res://main.gd" id="1_j0gfq"]
[ext_resource type="Texture2D" uid="uid://b3hbt6hh5dykq" path="res://icon.png" id="2_o6582"]
[sub_resource type="StyleBoxFlat" id="StyleBoxFlat_pihwh"]
content_margin_left = 20.0
content_margin_right = 20.0
bg_color = Color(0.111197, 0.111197, 0.111197, 1)
border_width_left = 5
border_width_top = 5
border_width_right = 5
border_width_bottom = 5
[node name="Main" type="Control"]
layout_mode = 3
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
script = ExtResource("1_j0gfq")
[node name="VBoxContainer" type="VBoxContainer" parent="."]
layout_mode = 1
anchors_preset = 15
anchor_right = 1.0
anchor_bottom = 1.0
grow_horizontal = 2
grow_vertical = 2
theme_override_constants/separation = 30
[node name="TextureRect" type="TextureRect" parent="VBoxContainer"]
layout_mode = 2
texture = ExtResource("2_o6582")
stretch_mode = 5
[node name="datetime_picker" type="Button" parent="VBoxContainer"]
custom_minimum_size = Vector2(400, 100)
layout_mode = 2
size_flags_horizontal = 4
theme_override_font_sizes/font_size = 32
text = "show DateTime picker"
[node name="date_picker" type="Button" parent="VBoxContainer"]
custom_minimum_size = Vector2(400, 100)
layout_mode = 2
size_flags_horizontal = 4
theme_override_font_sizes/font_size = 32
text = "show Date picker"
[node name="time_picker" type="Button" parent="VBoxContainer"]
custom_minimum_size = Vector2(400, 100)
layout_mode = 2
size_flags_horizontal = 4
theme_override_font_sizes/font_size = 32
text = "show Time picker"
[node name="Label" type="Label" parent="VBoxContainer"]
layout_mode = 2
theme_override_font_sizes/font_size = 32
text = "-----Console Log-----"
horizontal_alignment = 1
[node name="console" type="Label" parent="VBoxContainer"]
custom_minimum_size = Vector2(0, 300)
layout_mode = 2
theme_override_styles/normal = SubResource("StyleBoxFlat_pihwh")
[connection signal="pressed" from="VBoxContainer/datetime_picker" to="." method="_on_datetime_picker_pressed"]
[connection signal="pressed" from="VBoxContainer/date_picker" to="." method="_on_date_picker_pressed"]
[connection signal="pressed" from="VBoxContainer/time_picker" to="." method="_on_time_picker_pressed"]