Skip to content

Fix HDRP warning due to recent PR #6396

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
Nov 25, 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 @@ -180,7 +180,7 @@ public override int GetHashCode()
/// <summary>Returns interpolated value from the visual environment.</summary>
/// <param name="camera">The camera containing the volume stack to evaluate</param>
/// <returns>The value for this parameter.</returns>
public float GetValue(HDCamera camera)
public virtual float GetValue(HDCamera camera)
{
if (value.mode == WindOverrideMode.Custom)
return value.customValue;
Expand Down Expand Up @@ -239,7 +239,7 @@ public override void Interp(WindParamaterValue from, WindParamaterValue to, floa
/// <summary>Returns interpolated value from the visual environment.</summary>
/// <param name="camera">The camera containing the volume stack to evaluate</param>
/// <returns>The value for this parameter.</returns>
public float GetValue(HDCamera camera)
public override float GetValue(HDCamera camera)
{
// Multiply mode is not supported for wind orientation
if (value.mode == WindOverrideMode.Multiply)
Expand Down