Merge branch 'limit-cloth-brush' of https://github.com/Tryibion/FlaxEngine into Tryibion-limit-cloth-brush
This commit is contained in:
@@ -18,21 +18,25 @@ namespace FlaxEngine.Tools
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Brush radius (world-space).
|
/// Brush radius (world-space).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Limit(0)]
|
||||||
public float BrushSize = 50.0f;
|
public float BrushSize = 50.0f;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Brush paint intensity.
|
/// Brush paint intensity.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Limit(0)]
|
||||||
public float BrushStrength = 2.0f;
|
public float BrushStrength = 2.0f;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Brush paint falloff. Hardens or softens painting.
|
/// Brush paint falloff. Hardens or softens painting.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Limit(0)]
|
||||||
public float BrushFalloff = 1.5f;
|
public float BrushFalloff = 1.5f;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Value to paint with. Hold Ctrl hey to paint with inverse value (1 - value).
|
/// Value to paint with. Hold Ctrl hey to paint with inverse value (1 - value).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
[Limit(0, 1, 0.01f)]
|
||||||
public float PaintValue = 0.0f;
|
public float PaintValue = 0.0f;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|||||||
Reference in New Issue
Block a user