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

スクリプト言語

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

Vector2.Scale

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 Scale(a: Vector2, b: Vector2): Vector2;
public static Vector2 Scale(Vector2 a, Vector2 b);
public static def Scale(a as Vector2, b as Vector2) as Vector2

Description

2つのベクトルの各成分を乗算します

b の各成分と b の同じ成分を乗算した結果を取得します。

	// prints (2.0,6.0)
	print (Vector2.Scale (Vector2(1,2), Vector2(2,3)));
using UnityEngine;
using System.Collections;

public class ExampleClass : MonoBehaviour {
    void Example() {
        print(Vector2.Scale(new Vector2(1, 2), new Vector2(2, 3)));
    }
}
import UnityEngine
import System.Collections

public class ExampleClass(MonoBehaviour):

	def Example() as void:
		print(Vector2.Scale(Vector2(1, 2), Vector2(2, 3)))

public function Scale(scale: Vector2): void;
public void Scale(Vector2 scale);
public def Scale(scale as Vector2) as void

Description

このベクトルの各成分と scale/ の同じ成分を乗算します