Files
Cielonos/Assets/OtherPlugins/GraphicsCat/Modules/Common/Utils/SceneViewUtils.cs

15 lines
213 B
C#
Raw Normal View History

2025-12-17 04:19:38 -05:00
using UnityEditor;
namespace GraphicsCat
{
public class SceneViewUtils
{
public static void RepaintAll()
{
#if UNITY_EDITOR
SceneView.RepaintAll();
#endif
}
}
}