summaryrefslogtreecommitdiffstats
path: root/editor/editor_properties.cpp
diff options
context:
space:
mode:
authorK. S. Ernest (iFire) Lee <fire@users.noreply.github.com>2024-04-08 07:51:34 -0700
committerRémi Verschelde <rverschelde@gmail.com>2024-05-03 00:58:27 +0200
commitf9b488508ccc294db03d427c15c182864fae74de (patch)
tree4d48dd7b8b85c219faf6ecb8a43a9c3d57f71b38 /editor/editor_properties.cpp
parentb9e022302aa4a5d97f8b25a1db809e64b46b6f96 (diff)
downloadredot-engine-f9b488508ccc294db03d427c15c182864fae74de.tar.gz
Add PackedVector4Array Variant type
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
Diffstat (limited to 'editor/editor_properties.cpp')
-rw-r--r--editor/editor_properties.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/editor/editor_properties.cpp b/editor/editor_properties.cpp
index 2964fb364b..636f52d00d 100644
--- a/editor/editor_properties.cpp
+++ b/editor/editor_properties.cpp
@@ -3934,6 +3934,11 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
editor->setup(Variant::PACKED_COLOR_ARRAY, p_hint_text);
return editor;
} break;
+ case Variant::PACKED_VECTOR4_ARRAY: {
+ EditorPropertyArray *editor = memnew(EditorPropertyArray);
+ editor->setup(Variant::PACKED_VECTOR4_ARRAY, p_hint_text);
+ return editor;
+ } break;
default: {
}
}