diff --git a/Source/Editor/Options/ViewportOptions.cs b/Source/Editor/Options/ViewportOptions.cs index 5558ac89d..0a8d78c26 100644 --- a/Source/Editor/Options/ViewportOptions.cs +++ b/Source/Editor/Options/ViewportOptions.cs @@ -18,6 +18,13 @@ namespace FlaxEditor.Options [EditorDisplay("General"), EditorOrder(100), Tooltip("The mouse movement sensitivity scale applied when using the viewport camera.")] public float MouseSensitivity { get; set; } = 1.0f; + /// + /// Gets or sets the mouse wheel sensitivity applied to zoom in orthographic mode. + /// + [DefaultValue(1.0f), Limit(0.01f, 100.0f)] + [EditorDisplay("General"), EditorOrder(101), Tooltip("The mouse wheel sensitivity applied to zoom in orthographic mode.")] + public float MouseWheelSensitivity { get; set; } = 1.0f; + /// /// Gets or sets the default movement speed for the viewport camera (must match the dropdown menu values in the viewport). ///