mirror of
				https://github.com/DerTyp7/fps-citybuild-unity.git
				synced 2025-10-30 20:47:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			295 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using UnityEngine;
 | |
| 
 | |
| [System.Serializable]
 | |
| [CreateAssetMenu(fileName = "Lighting Preset", menuName = "Scriptables/Lighting Preset", order = 1)]
 | |
| public class LightingPreset : ScriptableObject
 | |
| {
 | |
|     public Gradient AmbientColor;
 | |
|     public Gradient DirectionalColor;
 | |
|     public Gradient FogColor;
 | |
| } | 
