diff --git a/game/addons/mat_maker_gd/editor/MatMakerGDEditor.tscn b/game/addons/mat_maker_gd/editor/MatMakerGDEditor.tscn index e4286c1b..273eafcc 100644 --- a/game/addons/mat_maker_gd/editor/MatMakerGDEditor.tscn +++ b/game/addons/mat_maker_gd/editor/MatMakerGDEditor.tscn @@ -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 diff --git a/game/addons/mat_maker_gd/nodes/mm_node.gd b/game/addons/mat_maker_gd/nodes/mm_node.gd index 83fbdc0d..debcf6dd 100644 --- a/game/addons/mat_maker_gd/nodes/mm_node.gd +++ b/game/addons/mat_maker_gd/nodes/mm_node.gd @@ -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()