VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.render-pipelines.universal/Editor/VFXGraph/VFXURPSubOutput.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

12 lines
284 B
C#

#if HAS_VFX_GRAPH
namespace UnityEditor.VFX.URP
{
class VFXURPSubOutput : VFXSRPSubOutput
{
//URP only support motion vector on opaque geometry (with or without ShaderGraph)
public override bool supportsMotionVector => owner.isBlendModeOpaque;
}
}
#endif