Version: 5.5

RayConstructor

매뉴얼로 전환
public Ray (Vector3 origin, Vector3 direction);

설명

Creates a ray starting at origin along direction.

// Create a ray from the transform position along the transform's z-axis
Ray ray = new Ray(transform.position, transform.forward);