We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e2a11 commit 20c3530Copy full SHA for 20c3530
Packages/com.unity.render-pipelines.core/Editor/PathTracing/BakeInputSerialization.cs
@@ -250,6 +250,7 @@ internal struct LightingSettings : IBakeInputVisitable
250
public MixedLightingMode mixedLightingMode;
251
public bool aoEnabled;
252
public float aoDistance;
253
+ public bool useHardwareRayTracing;
254
255
public void Transfer(IBakeInputVisitor visitor)
256
{
@@ -261,6 +262,7 @@ public void Transfer(IBakeInputVisitor visitor)
261
262
visitor.TransferBlittable(ref mixedLightingMode);
263
visitor.TransferBoolean(ref aoEnabled);
264
visitor.TransferBlittable(ref aoDistance);
265
+ visitor.TransferBlittable(ref useHardwareRayTracing);
266
}
267
268
0 commit comments