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

スクリプト言語

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

Camera.ScreenToWorldPoint

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

Sumbission failed

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

Close

Cancel

Switch to Manual
public function ScreenToWorldPoint(position: Vector3): Vector3;
public Vector3 ScreenToWorldPoint(Vector3 position);
public def ScreenToWorldPoint(position as Vector3) as Vector3

Description

Transform position のスクリーン座標からワールド座標に変換します。

スクリーン座標はピクセル単位で定義されています。画面の左下は(0,0)、右上は is (pixelWidth,pixelHeight). The z position is in world units from the camera.

	// Draw a yellow sphere in the scene view at the position
	// on the near plane of the selected camera that is
	// 100 pixels from lower-left.
	function OnDrawGizmosSelected () {
		var p : Vector3 = camera.ScreenToWorldPoint (Vector3 (100,100,camera.nearClipPlane));
		Gizmos.color = Color.yellow;
		Gizmos.DrawSphere (p, 0.1);
	}
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void OnDrawGizmosSelected() {
        Vector3 p = camera.ScreenToWorldPoint(new Vector3(100, 100, camera.nearClipPlane));
        Gizmos.color = Color.yellow;
        Gizmos.DrawSphere(p, 0.1F);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def OnDrawGizmosSelected() as void:
		p as Vector3 = camera.ScreenToWorldPoint(Vector3(100, 100, camera.nearClipPlane))
		Gizmos.color = Color.yellow
		Gizmos.DrawSphere(p, 0.1F)