minesweeper_game/Library/PackageCache/com.unity.render-pipelines.universal@506b3deb0041/Editor/VFXGraph/VFXURPSubOutput.cs
2025-03-15 14:30:26 -04: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