言語: 日本語
  • C#
  • JS
  • Boo

スクリプト言語

お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。

RaycastHit.point

public var point: Vector3;

Description

衝突したオブジェクトのワールド座標

	// 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.
	var pokeForce: float;
	
	function Update () {
		if (Input.GetMouseButtonDown(0)) {
			var hit: RaycastHit;
			var ray = Camera.main.ScreenPointToRay(Input.mousePosition);
			
			if (Physics.Raycast(ray, hit)) {
				if (hit.rigidbody != null)
					hit.rigidbody.AddForceAtPosition(ray.direction * pokeForce, hit.point);
			}
		}
	}