Firstborn/Library/PackageCache/com.unity.terrain-tools@4.0.3/Editor/TerrainTools/BrushControllers/IBrushStrengthController.cs
Schaken-Mods b486678290 Library -Artifacts
Library -Artifacts
2023-03-28 12:24:16 -05:00

14 lines
366 B
C#

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; }
}
}