Merge pull request #53278 from Geometror/fix-editor-property-array-color

This commit is contained in:
Rémi Verschelde 2021-10-01 07:53:35 +02:00 committed by GitHub
commit df57aa670a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -3574,7 +3574,7 @@ EditorProperty *EditorInspectorDefaultPlugin::get_editor_for_property(Object *p_
case Variant::PACKED_COLOR_ARRAY: {
EditorPropertyArray *editor = memnew(EditorPropertyArray);
editor->setup(Variant::PACKED_COLOR_ARRAY);
return editor;
} break;
default: {
}