post processing
[WindSway-HDRP.git] / Library / PackageCache / com.unity.render-pipelines.high-definition@4.10.0-preview / Runtime / Core / Textures / TextureSettings.cs
blobfed63946de58248e2a7dbe1ae123849601f92c30
1 namespace UnityEngine.Experimental.Rendering
3 [System.Serializable]
4 public class TextureSettings
6 public const int kDefaultSpotCookieSize = 128;
7 public const int kDefaultPointCookieSize = 512;
8 public const int kDefaultReflectionCubemapSize = 128;
10 public int spotCookieSize = kDefaultSpotCookieSize;
11 public int pointCookieSize = kDefaultPointCookieSize;
12 public int reflectionCubemapSize = kDefaultReflectionCubemapSize;