Files

24 lines
418 B
C#
Raw Permalink Normal View History

2022-01-22 20:13:49 -08:00
// Alloy Physical Shader Framework
// Copyright 2013-2017 RUST LLC.
// http://www.alloy.rustltd.com/
using UnityEngine;
public class MinValueAttribute : PropertyAttribute {
public float Min;
public MinValueAttribute(float min) {
Min = min;
}
}
public class MaxValueAttribute : PropertyAttribute {
public float Max;
public MaxValueAttribute(float min) {
Max = min;
}
}