Skip to content

Commit 5e7d11f

Browse files
committed
test working
1 parent d3547f6 commit 5e7d11f

File tree

1 file changed

+60
-8
lines changed

1 file changed

+60
-8
lines changed

demo/Main.tscn

Lines changed: 60 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,64 @@
1-
[gd_scene load_steps=2 format=2]
1+
[gd_scene load_steps=4 format=2]
22

3-
[ext_resource path="res://addons/gut/plugin_control.gd" type="Script" id=3]
3+
[ext_resource path="res://database.gd" type="Script" id=1]
4+
[ext_resource path="res://Main.gd" type="Script" id=2]
45

5-
[node name="Gut" type="Control"]
6+
[sub_resource type="StyleBoxFlat" id=1]
7+
content_margin_left = 24.0
8+
content_margin_right = 24.0
9+
content_margin_top = 12.0
10+
content_margin_bottom = 12.0
11+
bg_color = Color( 0, 0, 0, 1 )
12+
13+
[node name="Main" type="Control"]
14+
anchor_right = 1.0
15+
anchor_bottom = 1.0
16+
script = ExtResource( 2 )
17+
__meta__ = {
18+
"_edit_use_anchors_": false
19+
}
20+
21+
[node name="Database" type="Node" parent="."]
22+
script = ExtResource( 1 )
23+
24+
[node name="MarginContainer" type="MarginContainer" parent="."]
625
anchor_right = 1.0
726
anchor_bottom = 1.0
8-
rect_min_size = Vector2( 740, 250 )
9-
script = ExtResource( 3 )
10-
_run_on_load = true
11-
_include_subdirectories = true
12-
_directory1 = "res://tests/unit"
27+
custom_constants/margin_right = 24
28+
custom_constants/margin_top = 24
29+
custom_constants/margin_left = 24
30+
custom_constants/margin_bottom = 24
31+
__meta__ = {
32+
"_edit_use_anchors_": false
33+
}
34+
35+
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer"]
36+
margin_left = 24.0
37+
margin_top = 24.0
38+
margin_right = 1000.0
39+
margin_bottom = 576.0
40+
custom_constants/separation = 24
41+
42+
[node name="Label" type="Label" parent="MarginContainer/VBoxContainer"]
43+
margin_right = 976.0
44+
margin_bottom = 14.0
45+
text = "Godot SQLite Demo"
46+
align = 1
47+
48+
[node name="ScrollContainer" type="ScrollContainer" parent="MarginContainer/VBoxContainer"]
49+
margin_top = 38.0
50+
margin_right = 976.0
51+
margin_bottom = 552.0
52+
size_flags_horizontal = 3
53+
size_flags_vertical = 3
54+
custom_styles/bg = SubResource( 1 )
55+
__meta__ = {
56+
"_edit_use_anchors_": false
57+
}
58+
59+
[node name="VBoxContainer" type="VBoxContainer" parent="MarginContainer/VBoxContainer/ScrollContainer"]
60+
margin_left = 24.0
61+
margin_top = 12.0
62+
margin_right = 952.0
63+
margin_bottom = 12.0
64+
size_flags_horizontal = 3

0 commit comments

Comments
 (0)