두개 벡터 값을 곱한다 * 연산자가 모호해서 Scale 이 추가 된것이라 볼 수 있다
Multiplies two vectors component-wise.
Every component in the result is a component of a multiplied by the same component of b.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Calculate the two vectors generating a result.
// This will compute Vector3(2, 6, 12)
using UnityEngine;
using System.Collections;
public class ExampleClass : MonoBehaviour
{
void Example()
{
print(Vector3.Scale(new Vector3(1, 2, 3), new Vector3(2, 3, 4)));
}
}
|
ref :
반응형
'게임엔진(GameEngine) > Unity3D' 카테고리의 다른 글
Load prefabs via script and save scene in Unity Editor (0) | 2021.04.28 |
---|---|
부모 자식간의 콜리전 분리 (0) | 2021.04.20 |
Prefab Control, UnpackPrefab completely (0) | 2020.12.20 |
모바일 기기의 Tile Based Rendering(타일 기반 렌더링) (0) | 2020.02.24 |
[InitializeOnLoad] : 에티더 UnityEditor 에디터 스크립트 생성자 호출하기 (0) | 2019.09.07 |