Skip to content

Hide shadow resolution value #3335

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 1, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,14 @@ public enum CloudResolution
/// </summary>
public enum CloudShadowsResolution
{
/// <summary>Size 32</summary>
CloudShadowsResolution32 = 32,
/// <summary>Size 64</summary>
CloudShadowsResolution64 = 64,
VeryLow = 64,
/// <summary>Size 128</summary>
CloudShadowsResolution128 = 128,
Low = 128,
/// <summary>Size 256</summary>
CloudShadowsResolution256 = 256,
Medium = 256,
/// <summary>Size 512</summary>
CloudShadowsResolution512 = 512,
High = 512,
}


Expand Down Expand Up @@ -112,7 +110,7 @@ public class CloudLayer : CloudSettings
/// <summary>Choose the resolution of the texture for the cloud shadows.</summary>
[AdditionalProperty]
[Tooltip("Specifies the resolution of the texture HDRP uses to represent the cloud shadows.")]
public CloudLayerEnumParameter<CloudShadowsResolution> shadowResolution = new CloudLayerEnumParameter<CloudShadowsResolution>(CloudShadowsResolution.CloudShadowsResolution128);
public CloudLayerEnumParameter<CloudShadowsResolution> shadowResolution = new CloudLayerEnumParameter<CloudShadowsResolution>(CloudShadowsResolution.Medium);


/// <summary>
Expand Down