mirror of
https://github.com/maxartz15/VolumetricLighting.git
synced 2025-06-30 22:46:04 +02: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;
|
|
}
|
|
}
|