KINDNICK_URP/Assets/External/VRMTools/KeepSceneViewActive.cs
2025-04-25 21:14:54 +09:00

16 lines
303 B
C#

using UnityEditor;
using UnityEngine;
namespace VRMTools
{
public class KeepSceneViewActive : MonoBehaviour
{
void Start()
{
if (Application.isEditor)
{
SceneView.FocusWindowIfItsOpen(typeof(SceneView));
}
}
}
}