mirror of
https://github.com/muskit/H3VR-TNH-Quality-of-Life-Improvements.git
synced 2026-06-03 04:34:26 -07:00
Initial commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user