diff --git a/Source/Editor/CustomEditors/CustomEditorsUtil.cs b/Source/Editor/CustomEditors/CustomEditorsUtil.cs index a40b223b9..4b934cbd6 100644 --- a/Source/Editor/CustomEditors/CustomEditorsUtil.cs +++ b/Source/Editor/CustomEditors/CustomEditorsUtil.cs @@ -63,6 +63,8 @@ namespace FlaxEditor.CustomEditors return new GenericEditor(); if (targetType.IsArray) { + if (targetType.Type.GetArrayRank() != 1) + return new GenericEditor(); // Not-supported multidimensional array return new ArrayEditor(); } var targetTypeType = TypeUtils.GetType(targetType);