private void DisplayHeightPropertyIntMinMax(string label, int minValue, int maxValue, HeightLayerProperty heightLayerProperty)
 {
     using (new GUILayout.HorizontalScope(baseSkin.FindStyle("HeightLayerProperty")))
     {
         DisplayHeightPropertyRandomButton(heightLayerProperty);
         heightLayerProperty.SetInt(GUIMinMaxIntField(label, heightLayerProperty.Int, minValue, maxValue));
         GUILayout.FlexibleSpace();
     }
 }