Fix typos

This commit is contained in:
Wojtek Figat
2021-07-23 16:25:12 +02:00
parent 46a65f99fa
commit 91be427305
7 changed files with 9 additions and 9 deletions

View File

@@ -592,7 +592,7 @@ namespace FlaxEditor.GUI
public object DefaultValue;
/// <summary>
/// The amount of frames per second of the keyframes animation (optional). Can be sued to restrict the keyframes time values to the given time quantization rate.
/// The amount of frames per second of the keyframes animation (optional). Can be used to restrict the keyframes time values to the given time quantization rate.
/// </summary>
public float? FPS
{

View File

@@ -584,7 +584,7 @@ namespace FlaxEditor.GUI.Timeline
}
/// <summary>
/// Gets or sets a value indicating whether user can sue Play/Pause/Stop buttons, otherwise those should be disabled.
/// Gets or sets a value indicating whether user can use Play/Pause/Stop buttons, otherwise those should be disabled.
/// </summary>
public bool CanPlayPauseStop
{
@@ -1024,12 +1024,12 @@ namespace FlaxEditor.GUI.Timeline
}
/// <summary>
/// Occurs when timeline shows the View context menu. Can be sued to add custom options.
/// Occurs when timeline shows the View context menu. Can be used to add custom options.
/// </summary>
public event Action<ContextMenu.ContextMenu> ShowViewContextMenu;
/// <summary>
/// Called when timeline shows the View context menu. Can be sued to add custom options.
/// Called when timeline shows the View context menu. Can be used to add custom options.
/// </summary>
/// <param name="menu">The menu.</param>
protected virtual void OnShowViewContextMenu(ContextMenu.ContextMenu menu)