Files
Generic/Library/PackageCache/com.unity.render-pipelines.universal@087c6d6dbb7d/Editor/VFXGraph/VFXURPSubOutput.cs
2025-04-26 21:54:32 +01: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