Объявление
public static void DrawRay(Ray r);public static void DrawRay(Vector3 from, Vector3 direction);
Описание
Рисует луч, начинающийся с from
до to
+ direction
.
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
void OnDrawGizmosSelected()
{
// Draws a 5 unit long red line in front of the object
Gizmos.color = Color.red;
Vector3 direction = transform.TransformDirection(Vector3.forward) * 5;
Gizmos.DrawRay(transform.position, direction);
}
}