Files
CortexCore a379dc5cd3 1
2024-05-13 01:28:33 +08:00

19 lines
453 B
C#

#if (UNITY_EDITOR)
using UnityEngine;
using UnityEditor;
namespace HP.Generics
{
public class TetrahedronCommand : MonoBehaviour
{
[MenuItem("Tools/HP/Tetrahedron Refresh")]
static void FocusCommandWhenKeyUIsPressed()
{
LightProbes.TetrahedralizeAsync();
if (EditorUtility.DisplayDialog("Process Done",
"TetrahedralizeAsync process done.", "Continue")){}
}
}
}
#endif