15 lines
213 B
C#
15 lines
213 B
C#
|
|
using UnityEditor;
|
|||
|
|
|
|||
|
|
namespace GraphicsCat
|
|||
|
|
{
|
|||
|
|
public class SceneViewUtils
|
|||
|
|
{
|
|||
|
|
public static void RepaintAll()
|
|||
|
|
{
|
|||
|
|
#if UNITY_EDITOR
|
|||
|
|
SceneView.RepaintAll();
|
|||
|
|
#endif
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|