add empty drawRay

This commit is contained in:
Ruan Lucas
2023-09-09 09:28:06 -04:00
parent 317384ed28
commit 420e02e3c1

View File

@@ -31,6 +31,18 @@ namespace FlaxEngine
{
}
/// <summary>
/// Draws the line in a direction.
/// </summary>
/// <param name="origin">The start point.</param>
/// <param name="direction">The direction of the line.</param>
/// <param name="color">The color.</param>
/// <param name="duration">The duration (in seconds). Use 0 to draw it only once.</param>
/// <param name="depthTest">If set to <c>true</c> depth test will be performed, otherwise depth will be ignored.</param>
public static void DrawRay(Vector3 origin, Vector3 direction, Color color, float duration = 0.0f, bool depthTest = true)
{
}
/// <summary>
/// Draws the line.
/// </summary>