Expose ScrollSpeedWheel and ScrollSpeedClick for scroll bar editing

#946
This commit is contained in:
Wojtek Figat
2023-02-18 17:05:41 +01:00
parent 89d649c049
commit 8327866205

View File

@@ -146,6 +146,24 @@ namespace FlaxEngine.GUI
}
}
/// <summary>
/// Gets or sets the speed for the scroll on mouse wheel.
/// </summary>
public float ScrollSpeedWheel
{
get => _scrollChange;
set => _scrollChange = value;
}
/// <summary>
/// Gets or sets the speed for the scroll on mouse click.
/// </summary>
public float ScrollSpeedClick
{
get => _clickChange;
set => _clickChange = value;
}
/// <summary>
/// Gets the value slow down.
/// </summary>