Firstborn/Library/PackageCache/com.unity.terrain-tools@4.0.5/Editor/TerrainTools/BrushControllers/IBrushStrengthController.cs

14 lines
366 B
C#
Raw Normal View History

2023-03-28 13:24:16 -04:00
namespace UnityEditor.TerrainTools
{
/// <summary>
/// An interface that represent the controller for the brush's strength.
/// </summary>
public interface IBrushStrengthController : IBrushController
{
/// <summary>
/// Gets and sets the brush's strength.
/// </summary>
float brushStrength { get; set; }
}
}