Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ai.fluctio.fluctio-sim / EditorUtils / Gui / LabelWidthScope.cs
Size: Mime:
using UnityEditor;
using UnityEngine;

namespace Fluctio.FluctioSim.EditorUtils.Gui
{
	public class LabelWidthScope : GUI.Scope
	{
		private readonly float _originalWidth;
		
		public LabelWidthScope(float newWidth)
		{
			_originalWidth = EditorGUIUtility.labelWidth;
			EditorGUIUtility.labelWidth = newWidth;
		}
		
		protected override void CloseScope()
		{
			EditorGUIUtility.labelWidth = _originalWidth;
		}
	}
}