mirror of
https://github.com/godotengine/godot.git
synced 2026-01-03 18:11:19 +03:00
Merge pull request #85474 from fire/packedvector4array
Add `PackedVector4Array` Variant type
This commit is contained in:
@@ -3911,6 +3911,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: {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user