Files
Cielonos/Assets/OtherPlugins/GraphicsCat/Modules/Common/Utils/SceneViewUtils.cs
SoulliesOfficial d15957c719 更新
2025-12-17 04:19:38 -05:00

15 lines
213 B
C#

using UnityEditor;
namespace GraphicsCat
{
public class SceneViewUtils
{
public static void RepaintAll()
{
#if UNITY_EDITOR
SceneView.RepaintAll();
#endif
}
}
}