13 lines
233 B
C#
13 lines
233 B
C#
|
namespace UnityEngine.PostProcessing
|
||
|
{
|
||
|
public sealed class MinAttribute : PropertyAttribute
|
||
|
{
|
||
|
public readonly float min;
|
||
|
|
||
|
public MinAttribute(float min)
|
||
|
{
|
||
|
this.min = min;
|
||
|
}
|
||
|
}
|
||
|
}
|