Fix wrong default value type.

This commit is contained in:
Chandler Cox
2024-03-15 09:25:19 -05:00
parent c6bb8f1784
commit 7ec490443e

View File

@@ -383,7 +383,7 @@ namespace FlaxEngine.GUI
/// <summary>
/// Gets or sets the shear transform angles (x, y). Defined in degrees. Shearing happens relative to the control pivot point.
/// </summary>
[DefaultValue(0.0f)]
[DefaultValue(typeof(Float2), "0,0")]
[ExpandGroups, EditorDisplay("Transform"), EditorOrder(1040), Tooltip("The shear transform angles (x, y). Defined in degrees. Shearing happens relative to the control pivot point.")]
public Float2 Shear
{