Fixed a ton of typos

This commit is contained in:
VNC
2021-01-05 02:13:15 +01:00
parent d715c0c0dd
commit 6ab300025b
73 changed files with 90 additions and 90 deletions

View File

@@ -469,7 +469,7 @@ namespace FlaxEngine.GUI
}
/// <summary>
/// Checks if given point in thi container control space intersects with the child control content.
/// Checks if given point in this container control space intersects with the child control content.
/// Also calculates result location in child control space which can be used to feed control with event at that point.
/// </summary>
/// <param name="child">The child control to check.</param>

View File

@@ -1211,7 +1211,7 @@ namespace FlaxEngine.GUI
}
/// <summary>
/// Action fred when parent control gets changed.
/// Action fired when parent control gets changed.
/// </summary>
protected virtual void OnParentChangedInternal()
{
@@ -1252,9 +1252,9 @@ namespace FlaxEngine.GUI
}
/// <summary>
/// Helper utility function to sets the update callback to the root. Does nothing if value has not been modified. Handles if control ahs no root or parent.
/// Helper utility function to sets the update callback to the root. Does nothing if value has not been modified. Handles if control has no root or parent.
/// </summary>
/// <param name="onUpdate">The cached update callback delegate (field in teh custom control implementation).</param>
/// <param name="onUpdate">The cached update callback delegate (field in the custom control implementation).</param>
/// <param name="value">The value to assign.</param>
protected void SetUpdate(ref UpdateDelegate onUpdate, UpdateDelegate value)
{
@@ -1268,7 +1268,7 @@ namespace FlaxEngine.GUI
}
/// <summary>
/// Action fred when parent control gets resized (also when control gets non-null parent).
/// Action fired when parent control gets resized (also when control gets non-null parent).
/// </summary>
public virtual void OnParentResized()
{

View File

@@ -14,7 +14,7 @@ namespace FlaxEngine.GUI
/// <summary>
/// Gets or sets the padding given to each slot.
/// </summary>
[EditorOrder(0), Tooltip("The padding margin appied to each item slot.")]
[EditorOrder(0), Tooltip("The padding margin applied to each item slot.")]
public Margin SlotPadding
{
get => _slotPadding;

View File

@@ -186,14 +186,14 @@ namespace FlaxEngine
public CanvasRootControl GUI => _guiRoot;
/// <summary>
/// Delegate schema for the callback used to perform custom canvas intersection test. Can be used to implement a canvas tha has a holes or non-rectangular shape.
/// Delegate schema for the callback used to perform custom canvas intersection test. Can be used to implement a canvas that has a holes or non-rectangular shape.
/// </summary>
/// <param name="location">The location of the point to test in coordinates of the canvas root control (see <see cref="GUI"/>).</param>
/// <returns>True if canvas was hit, otherwise false.</returns>
public delegate bool TestCanvasIntersectionDelegate(ref Vector2 location);
/// <summary>
/// The callback used to perform custom canvas intersection test. Can be used to implement a canvas tha has a holes or non-rectangular shape.
/// The callback used to perform custom canvas intersection test. Can be used to implement a canvas that has a holes or non-rectangular shape.
/// </summary>
[HideInEditor]
public TestCanvasIntersectionDelegate TestCanvasIntersection;