Version: 2019.4

説明

Vector2 を Vector4 に変換します

Vector2 は暗黙的に Vector4 に変換できます。( Z、W 軸は 0 が設定されます)

using UnityEngine;
using System.Collections.Generic;

public class ExampleScript : MonoBehaviour { void Start() { Renderer renderer = GetComponent<Renderer>();

// Shader vectors are always defined as Vector4. // The value here is converted to a Vector4 from a Vector2. renderer.material.SetVector("_SomeVariable", Vector2.one); } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961