Merge pull request #85474 from fire/packedvector4array

Add `PackedVector4Array` Variant type
This commit is contained in:
Rémi Verschelde
2024-05-03 12:25:26 +02:00
79 changed files with 1037 additions and 89 deletions

View File

@@ -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: {
}
}