Skip to content

Commit

Permalink
fix(Cast): correct type in raycast hit validity tooltip
Browse files Browse the repository at this point in the history
The word Valid was spelt incorrectly.
  • Loading branch information
thestonefox committed May 11, 2024
1 parent 261c5aa commit acc3b49
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Runtime/Cast/PointsCast.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,11 @@ public RuleContainer TargetPointValidity
targetPointValidity = value;
}
}
[Tooltip("Allows to optionally determine if the raycast hit of the cast is valud based on the set rules.")]
[Tooltip("Allows to optionally determine if the raycast hit of the cast is valid based on the set rules.")]
[SerializeField]
private RuleContainer raycastHitValidity;
/// <summary>
/// Allows to optionally determine if the raycast hit of the cast is valud based on the set rules.
/// Allows to optionally determine if the raycast hit of the cast is valid based on the set rules.
/// </summary>
public RuleContainer RaycastHitValidity
{
Expand Down

0 comments on commit acc3b49

Please sign in to comment.