Version: 2022.3
LanguageEnglish
  • C#

RaycastHit2D.normal

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

public Vector2 normal;

Description

The normal vector of the surface hit by the ray.

The normal vector of a surface is the vector that points outward perpendicularly at a given point on that surface. This vector helps in raycasting as a way to determine reflections or ricochets from projectiles or to align a character so that it stands upright on the surface.

using UnityEngine;

public class Example : MonoBehaviour { public GameObject sprite;

void Update() { if (Input.GetMouseButton(0)) { Vector2 worldPoint = Camera.main.ScreenToWorldPoint(Input.mousePosition); RaycastHit2D hit = Physics2D.Raycast(worldPoint, sprite.transform.position);

if (hit.collider != null) { // Draws a line from the normal of the object that you clicked Debug.DrawLine(sprite.transform.position, hit.normal, Color.yellow, 10.0f); } } } }

Note: If a hit starts occuring inside a collider, the collision normal is the opposite direction of the line/ray query.