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

スクリプト言語

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

Vector3.operator /

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

public static function operator /(a: Vector3, d: float): Vector3;
public static Vector3 operator /(Vector3 a, float d);
public static def operator /(a as Vector3, d as float) as Vector3

Description

数字でVectorを除法します

aa の各成分を除法します

	// make the vector twice shorter: prints (0.5,1.0,1.5)
	print (Vector3(1,2,3) / 2.0);
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        print(new Vector3(1, 2, 3) / 2.0F);
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		print((Vector3(1, 2, 3) / 2.0F))