Legacy Documentation: Version 2017.1 (Go to current version)
LanguageEnglish
  • C#
  • JS

Script language

Select your preferred scripting language. All code snippets will be displayed in this language.

RaycastHit.point

public Vector3 point;

Description

The impact point in world space where the ray hit the collider.

using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour { public float pokeForce; void Update() { if (Input.GetMouseButtonDown(0)) { RaycastHit hit; Ray ray = Camera.main.ScreenPointToRay(Input.mousePosition); if (Physics.Raycast(ray, out hit)) if (hit.rigidbody != null) hit.rigidbody.AddForceAtPosition(ray.direction * pokeForce, hit.point); } } }

Did you find this page useful? Please give it a rating: