UIRectEditor.IsCommon C# (CSharp) Method

IsCommon() static protected method

Whether the specified relative offset is a common value (0, 0.5, or 1)
static protected IsCommon ( float relative ) : bool
relative float
return bool
	static protected bool IsCommon (float relative) { return (relative == 0f || relative == 0.5f || relative == 1f); }