Version: 5.6

Ray2DConstructor

매뉴얼로 전환
public Ray2D (Vector2 origin, Vector2 direction);

파라미터

Vector2 origin
Vector2 direction

설명

Creates a 2D ray starting at origin along direction.

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