Skip to content
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