Hello, I’m trying to get my editor window size smaller than 100 in Y but it seems in the Unity code 100 is the limit. Is there anyway to get around this?
thanks!
Hello, I’m trying to get my editor window size smaller than 100 in Y but it seems in the Unity code 100 is the limit. Is there anyway to get around this?
thanks!
private void OnEnable()
{
minSize = new Vector2(10,10);
}
worked.