Files
stas-barecky/Library/PackageCache/com.unity.render-pipelines.universal@66e99ffa09c7/Editor/VFXGraph/VFXURPSubOutput.cs
2026-01-08 20:43:08 +05: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