godot-steering-ai-framework/project/demos/seek_and_flee/GUI.tscn
Francois Belair 0e95c24c7f Add GDQuest theme to improved Pursue demo
Changed text boxes to sliders to improve usability. This also involved
adding some simple graphics, since the _draw method is not
anti-aliased and doesn't look great.
2020-01-13 16:15:44 -05:00

143 lines
3.6 KiB
Plaintext

[gd_scene load_steps=3 format=2]
[ext_resource path="res://assets/theme/gdquest.theme" type="Theme" id=1]
[ext_resource path="res://demos/seek_and_flee/GUI.gd" type="Script" id=3]
[node name="GUI" type="PanelContainer"]
anchor_bottom = 1.0
margin_right = 118.0
theme = ExtResource( 1 )
script = ExtResource( 3 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MarginContainer" type="MarginContainer" parent="."]
margin_right = 218.0
margin_bottom = 600.0
custom_constants/margin_right = 20
custom_constants/margin_top = 20
custom_constants/margin_left = 20
custom_constants/margin_bottom = 20
__meta__ = {
"_edit_use_anchors_": false
}
[node name="BehaviorControls" type="VBoxContainer" parent="MarginContainer"]
margin_left = 20.0
margin_top = 20.0
margin_right = 198.0
margin_bottom = 580.0
[node name="Seek" type="CheckBox" parent="MarginContainer/BehaviorControls"]
margin_right = 178.0
margin_bottom = 26.0
focus_mode = 0
pressed = true
enabled_focus_mode = 0
text = "Seek"
[node name="Flee" type="CheckBox" parent="MarginContainer/BehaviorControls"]
margin_top = 34.0
margin_right = 178.0
margin_bottom = 60.0
focus_mode = 0
enabled_focus_mode = 0
text = "Flee"
[node name="MaxAccel" type="Label" parent="MarginContainer/BehaviorControls"]
margin_top = 68.0
margin_right = 178.0
margin_bottom = 94.0
text = "Max accel (2000)"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MaxAccelValue" type="HSlider" parent="MarginContainer/BehaviorControls"]
margin_top = 102.0
margin_right = 178.0
margin_bottom = 118.0
max_value = 250.0
step = 0.5
value = 20.0
[node name="MaxSpeed" type="Label" parent="MarginContainer/BehaviorControls"]
margin_top = 126.0
margin_right = 178.0
margin_bottom = 152.0
text = "Max speed (2000)"
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MaxSpeedValue" type="HSlider" parent="MarginContainer/BehaviorControls"]
margin_top = 160.0
margin_right = 178.0
margin_bottom = 176.0
max_value = 450.0
value = 100.0
[node name="Help" type="VBoxContainer" parent="MarginContainer/BehaviorControls"]
margin_top = 184.0
margin_right = 178.0
margin_bottom = 274.0
[node name="Controls" type="Label" parent="MarginContainer/BehaviorControls/Help"]
margin_right = 178.0
margin_bottom = 26.0
text = "Controls"
[node name="GridContainer" type="GridContainer" parent="MarginContainer/BehaviorControls/Help"]
margin_left = 57.0
margin_top = 34.0
margin_right = 120.0
margin_bottom = 90.0
size_flags_horizontal = 4
columns = 3
[node name="Sep" type="Control" parent="MarginContainer/BehaviorControls/Help/GridContainer"]
margin_right = 15.0
margin_bottom = 26.0
rect_min_size = Vector2( 15, 15 )
[node name="W" type="Label" parent="MarginContainer/BehaviorControls/Help/GridContainer"]
margin_left = 19.0
margin_right = 42.0
margin_bottom = 26.0
rect_min_size = Vector2( 15, 15 )
text = "W"
align = 1
[node name="Sep2" type="Control" parent="MarginContainer/BehaviorControls/Help/GridContainer"]
margin_left = 46.0
margin_right = 63.0
margin_bottom = 26.0
rect_min_size = Vector2( 15, 15 )
[node name="A" type="Label" parent="MarginContainer/BehaviorControls/Help/GridContainer"]
margin_top = 30.0
margin_right = 15.0
margin_bottom = 56.0
rect_min_size = Vector2( 15, 15 )
text = "A"
align = 1
[node name="S" type="Label" parent="MarginContainer/BehaviorControls/Help/GridContainer"]
margin_left = 19.0
margin_top = 30.0
margin_right = 42.0
margin_bottom = 56.0
rect_min_size = Vector2( 15, 15 )
text = "S"
align = 1
[node name="D" type="Label" parent="MarginContainer/BehaviorControls/Help/GridContainer"]
margin_left = 46.0
margin_top = 30.0
margin_right = 63.0
margin_bottom = 56.0
rect_min_size = Vector2( 15, 15 )
text = "D"
align = 1