Expose ScrollSpeedWheel and ScrollSpeedClick for scroll bar editing
#946
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user