Version: 2021.3
언어: 한국어
public Vector3 center ;

설명

The center of the box area in which reflections will be applied to the objects. Measured in the probes's local space.

using UnityEngine;

public class Example : MonoBehaviour { void Start() { ReflectionProbe probe = GetComponent<ReflectionProbe>(); // Reset the center to the transform's position probe.center = Vector3.zero; } }