Version: 2020.1
언어: 한국어
public Vector3[] probePositions ;

설명

Editor only function to access and modify probe positions.

Probe positions are specified in local space relative to the parent object.

At runtime this function will return an empty Vector3 array and setting it will have no effect.

using UnityEngine;
using UnityEditor;

public class ExampleScript : EditorWindow { private LightProbeGroup lightProbes = null;

[MenuItem("Example/Set Probe Positions")] static void Init() { var window = GetWindowWithRect<ExampleScript>(new Rect(0, 0, 350, 50)); window.Show(); }

void OnGUI() { lightProbes = (LightProbeGroup)EditorGUILayout.ObjectField( "Find Dependency", // string lightProbes, // Object typeof(LightProbeGroup), // Type true);

if (lightProbes) { if (GUILayout.Button("Set Probe Positions")) { Vector3[] positions = new Vector3[4]; positions[0] = new Vector3(0.0f, 0.0f, 0.0f); positions[1] = new Vector3(1.0f, 0.0f, 0.0f); positions[2] = new Vector3(0.0f, 1.0f, 0.0f); positions[3] = new Vector3(1.0f, 1.0f, 1.0f); lightProbes.probePositions = positions; } } else { EditorGUILayout.LabelField("Missing:", "Please select an object first!"); } } }
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961