mirror of
				https://github.com/maxartz15/VolumetricLighting.git
				synced 2025-10-31 21:45:59 +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;
 | |
| 	}
 | |
| }
 |