Added missing GUI Property Height override

This commit is contained in:
Anton Zhernosek
2023-05-23 17:04:55 +02:00
committed by GitHub
parent 0b44ae28d5
commit 90b433967e

View File

@@ -232,6 +232,15 @@ namespace Utilities.SerializableData.SerializableFunc.UnityEditorDrawers
return new Rect[] { labelRect, propertyRect }; return new Rect[] { labelRect, propertyRect };
} }
#endregion
#region Property Height Override
public override float GetPropertyHeight(SerializedProperty property, GUIContent label)
{
return 65f;
}
#endregion #endregion
#endregion #endregion
@@ -679,4 +688,4 @@ namespace Utilities.SerializableData.SerializableFunc.UnityEditorDrawers
} }
} }
#endif #endif