You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
305 B
C#

namespace UnityEngine.Polybrush
{
/// <summary>
/// Describes different mesh painting modes.
/// </summary>
internal enum PaintMode
{
// A brush with radius and falloff.
Brush,
// Fill hovered polygons with a uniform color.
Fill,
// Flood fill the entire selection
Flood
}
}