Version: 2022.3
언어: 한국어
public static void Tetrahedralize ();

설명

Synchronously tetrahedralize the currently loaded LightProbe positions.

Call this function to tetrahedralize the currently loaded LightProbe positions. You should generally only call this function upon receiving a LightProbes.needsRetetrahedralization event.

using UnityEngine;
using UnityEngine.SceneManagement;

public class TetrahedralizeExample : MonoBehaviour { void Start() { // Additively load a Scene containing light probes SceneManager.LoadScene("ExampleScene", LoadSceneMode.Additive);

// Force Unity to synchronously regenerate the tetrahedral tesselation for all loaded Scenes LightProbes.Tetrahedralize(); } }