CharacterController2D.DrawRay C# (CSharp) Method

DrawRay() private method

private DrawRay ( Vector3 start, Vector3 dir, Color color ) : void
start Vector3
dir Vector3
color Color
return void
	private void DrawRay( Vector3 start, Vector3 dir, Color color )
	{
		Debug.DrawRay( start, dir, color );
	}