版本:Unity 6 (6000.0)
语言英语
  • C#

RaycastHit.point

建议更改

成功!

感谢您帮助我们提高 Unity 文档质量。尽管我们无法接受所有投稿,但我们确实会阅读每位用户建议的更改并视情况进行更新。

关闭

提交失败

由于某些原因,无法提交您建议的更改。请在几分钟后</a>重试。感谢您花时间帮助我们提高 Unity 文档的质量。

关闭

取消

public Vector3 point;

说明

射线击中碰撞器的世界空间中的冲击点。

using UnityEngine;

public class Example : MonoBehaviour { // Apply a force to a rigidbody in the Scene at the point // where it is clicked.

// The force with which the target is "poked" when hit. float pokeForce;

void Update() { if (Input.GetMouseButtonDown(0)) { RaycastHit hit; var ray = Camera.main.ScreenPointToRay(Input.mousePosition);

if (Physics.Raycast(ray, out hit)) { if (hit.rigidbody != null) { hit.rigidbody.AddForceAtPosition(ray.direction * pokeForce, hit.point); } } } } }

其他资源: Physics.RaycastPhysics.Linecast