forked from GDQuest/learn-gdscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUIPractice.tscn
103 lines (88 loc) · 3.17 KB
/
UIPractice.tscn
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[gd_scene load_steps=9 format=2]
[ext_resource path="res://ui/components/CodeEditor.tscn" type="PackedScene" id=1]
[ext_resource path="res://ui/theme/gdscript_app_theme.tres" type="Theme" id=2]
[ext_resource path="res://ui/components/PracticeInfoPanel.tscn" type="PackedScene" id=3]
[ext_resource path="res://ui/components/GameView.tscn" type="PackedScene" id=4]
[ext_resource path="res://ui/components/OutputConsole.tscn" type="PackedScene" id=5]
[ext_resource path="res://ui/theme/panel_game.tres" type="StyleBox" id=7]
[ext_resource path="res://ui/UIPractice.gd" type="Script" id=8]
[ext_resource path="res://ui/theme/fonts/font_text_bold.tres" type="DynamicFont" id=9]
[node name="UIPractice" type="HBoxContainer"]
pause_mode = 2
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 2 )
custom_constants/separation = 8
script = ExtResource( 8 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Margin" type="MarginContainer" parent="."]
margin_right = 1920.0
margin_bottom = 1080.0
mouse_filter = 2
size_flags_horizontal = 3
[node name="Layout" type="HBoxContainer" parent="Margin"]
margin_left = 20.0
margin_top = 20.0
margin_right = 1900.0
margin_bottom = 1060.0
[node name="Control" type="Control" parent="Margin/Layout"]
margin_right = 623.0
margin_bottom = 1040.0
rect_min_size = Vector2( 623, 0 )
[node name="PracticeInfoPanel" parent="Margin/Layout/Control" instance=ExtResource( 3 )]
anchor_left = 1.0
margin_left = -623.0
size_flags_stretch_ratio = 2.0
[node name="CodeEditor" parent="Margin/Layout" instance=ExtResource( 1 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 639.0
margin_right = 1251.0
margin_bottom = 1040.0
[node name="Output" type="VBoxContainer" parent="Margin/Layout"]
margin_left = 1267.0
margin_right = 1880.0
margin_bottom = 1040.0
size_flags_horizontal = 3
[node name="GameAnchors" type="Control" parent="Margin/Layout/Output"]
margin_right = 613.0
margin_bottom = 682.0
size_flags_vertical = 3
size_flags_stretch_ratio = 2.0
[node name="GameContainer" type="PanelContainer" parent="Margin/Layout/Output/GameAnchors"]
anchor_right = 1.0
anchor_bottom = 1.0
custom_styles/panel = ExtResource( 7 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MarginContainer" type="MarginContainer" parent="Margin/Layout/Output/GameAnchors/GameContainer"]
margin_left = 8.0
margin_top = 8.0
margin_right = 605.0
margin_bottom = 674.0
custom_constants/margin_right = 12
custom_constants/margin_top = 12
custom_constants/margin_left = 12
custom_constants/margin_bottom = 60
[node name="GameView" parent="Margin/Layout/Output/GameAnchors/GameContainer/MarginContainer" instance=ExtResource( 4 )]
[node name="Label" type="Label" parent="Margin/Layout/Output/GameAnchors/GameContainer"]
margin_left = 8.0
margin_top = 626.0
margin_right = 605.0
margin_bottom = 674.0
rect_min_size = Vector2( 0, 48 )
size_flags_vertical = 8
custom_colors/font_color = Color( 0.188235, 0.188235, 0.286275, 1 )
custom_fonts/font = ExtResource( 9 )
text = "GDQuestBoy"
align = 1
[node name="Console" parent="Margin/Layout/Output" instance=ExtResource( 5 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 698.0
margin_right = 613.0
margin_bottom = 1040.0
[node name="Tween" type="Tween" parent="."]