mirror of
https://github.com/maxartz15/VolumetricLighting.git
synced 2024-11-10 01:02:55 +01:00
12 lines
160 B
C#
12 lines
160 B
C#
using UnityEngine;
|
|
|
|
public class MinValueAttribute : PropertyAttribute
|
|
{
|
|
public float min;
|
|
|
|
public MinValueAttribute (float min)
|
|
{
|
|
this.min = min;
|
|
}
|
|
}
|