Added universal slot type.

This commit is contained in:
Relintai 2021-10-04 15:10:38 +02:00
parent 679e992ef8
commit e8a3874cfb
2 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,7 @@ script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
slot_colors = PoolColorArray( 0.905882, 0.0627451, 0.0627451, 1, 0.431373, 0.0352941, 0.0352941, 1, 0.827451, 0.376471, 0.376471, 1, 0.0431373, 0.478431, 0.427451, 1, 0.352941, 0.0352941, 0.341176, 1 )
slot_colors = PoolColorArray( 0.905882, 0.0627451, 0.0627451, 1, 0.431373, 0.0352941, 0.0352941, 1, 0.827451, 0.376471, 0.376471, 1, 0.0431373, 0.478431, 0.427451, 1, 0.352941, 0.0352941, 0.341176, 1, 0.372549, 0.372549, 0.372549, 1 )
[node name="VBoxContainer" type="VBoxContainer" parent="."]
margin_right = 1024.0

View File

@ -9,6 +9,7 @@ enum SlotTypes {
SLOT_TYPE_FLOAT = 2,
SLOT_TYPE_VECTOR2 = 3,
SLOT_TYPE_VECTOR3 = 4,
SLOT_TYPE_UNIVERSAL = 5,
}
export(Vector2) var graph_position : Vector2 = Vector2()