73 lines
2.1 KiB
Text
73 lines
2.1 KiB
Text
[gd_scene load_steps=2 format=2]
|
|
|
|
[ext_resource path="res://addons/pnhelper/pngui.gd" type="Script" id=1]
|
|
|
|
[node name="Mapping tools" type="Control"]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
script = ExtResource( 1 )
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="Commands" type="VBoxContainer" parent="."]
|
|
anchor_right = 1.0
|
|
anchor_bottom = 1.0
|
|
size_flags_horizontal = 3
|
|
size_flags_vertical = 3
|
|
__meta__ = {
|
|
"_edit_use_anchors_": false
|
|
}
|
|
|
|
[node name="MakeSocket" type="HBoxContainer" parent="Commands"]
|
|
margin_right = 1280.0
|
|
margin_bottom = 20.0
|
|
|
|
[node name="Label" type="Label" parent="Commands/MakeSocket"]
|
|
margin_top = 3.0
|
|
margin_right = 84.0
|
|
margin_bottom = 17.0
|
|
text = "Make socket "
|
|
|
|
[node name="Type" type="OptionButton" parent="Commands/MakeSocket"]
|
|
margin_left = 88.0
|
|
margin_right = 142.0
|
|
margin_bottom = 20.0
|
|
text = "SNK"
|
|
items = [ "SNK", null, false, 0, null, "SRC", null, false, 1, null, "BID", null, false, 2, null ]
|
|
selected = 0
|
|
|
|
[node name="Left" type="Button" parent="Commands/MakeSocket"]
|
|
margin_left = 146.0
|
|
margin_right = 166.0
|
|
margin_bottom = 20.0
|
|
text = "<"
|
|
|
|
[node name="Up" type="Button" parent="Commands/MakeSocket"]
|
|
margin_left = 170.0
|
|
margin_right = 189.0
|
|
margin_bottom = 20.0
|
|
text = "^"
|
|
|
|
[node name="Down" type="Button" parent="Commands/MakeSocket"]
|
|
margin_left = 193.0
|
|
margin_right = 212.0
|
|
margin_bottom = 20.0
|
|
text = "v"
|
|
|
|
[node name="Right" type="Button" parent="Commands/MakeSocket"]
|
|
margin_left = 216.0
|
|
margin_right = 236.0
|
|
margin_bottom = 20.0
|
|
text = ">"
|
|
|
|
[node name="DebugAreas" type="CheckBox" parent="Commands"]
|
|
margin_top = 24.0
|
|
margin_right = 1280.0
|
|
margin_bottom = 48.0
|
|
text = "Show areas"
|
|
[connection signal="pressed" from="Commands/MakeSocket/Left" to="." method="_make_socket" binds= [ "left" ]]
|
|
[connection signal="pressed" from="Commands/MakeSocket/Up" to="." method="_make_socket" binds= [ "up" ]]
|
|
[connection signal="pressed" from="Commands/MakeSocket/Down" to="." method="_make_socket" binds= [ "down" ]]
|
|
[connection signal="pressed" from="Commands/MakeSocket/Right" to="." method="_make_socket" binds= [ "right" ]]
|
|
[connection signal="toggled" from="Commands/DebugAreas" to="." method="_area_debug_modified"]
|