Version: 2017.1

Ray2D

struct in UnityEngine

매뉴얼로 전환

설명

A ray in 2D space.

A ray is a line segment that extends from a point in space in a specified direction. Rays have a number of uses in Unity but the most common is probably raycasting. This technique involves tracing along the path of a ray from its origin to determine if it intersects with any objects. This is useful for plotting the paths of projectiles, determining lines of sight and implementing many common game mechanics.

See Also: Physics2D.Raycast, Ray class, RaycastHit2D class.

변수

directionThe direction of the ray in world space.
originThe starting point of the ray in world space.

생성자

Ray2DCreates a 2D ray starting at origin along direction.

Public 함수

GetPointGet a point that lies a given distance along a ray.