お好みのスクリプト言語を選択すると、サンプルコードがその言語で表示されます。
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ワールド空間のTransformの青軸
// Set's the rigidbody velocity to be // along the blue axis of the transform rigidbody.velocity = transform.forward * 10;
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { void Example() { rigidbody.velocity = transform.forward * 10; } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): def Example() as void: rigidbody.velocity = (transform.forward * 10)
他の例:
// Computes the angle between the target transform and this object var angleBetween = 0.0; var target : Transform; function Update () { var targetDir = target.position - transform.position; angleBetween = Vector3.Angle (transform.forward, targetDir); }
using UnityEngine; using System.Collections; public class ExampleClass : MonoBehaviour { public float angleBetween = 0.0F; public Transform target; void Update() { Vector3 targetDir = target.position - transform.position; angleBetween = Vector3.Angle(transform.forward, targetDir); } }
import UnityEngine import System.Collections public class ExampleClass(MonoBehaviour): public angleBetween as float = 0.0F public target as Transform def Update() as void: targetDir as Vector3 = (target.position - transform.position) angleBetween = Vector3.Angle(transform.forward, targetDir)