Descripción

Specifies whether motion vectors should be rendered (if possible).

When set, the camera renders another pass (after opaque but before Image Effects): First, a full screen pass is rendered to reconstruct screen-space motion from the camera movement, then, any moving objects have a custom pass to render their object-specific motion. The buffer uses the RenderTextureFormat.RGHalf format, so this feature only works on platforms where this format is supported.

Motion vectors capture the per-pixel, screen-space motion of objects from one frame to the next. Use this velocity to reconstruct previous positions, calculate blur for motion blur, or implement temporal anti-aliasing.

To access the generated motion vectors, you can simple read the texture sampler: sampler2D_half _CameraMotionVectorsTexture in any opaque Image Effect.

See Also: Renderer.motionVectorGenerationMode, Camera.depthTextureMode, SkinnedMeshRenderer.skinnedMotionVectors, PassType.MotionVectors, SystemInfo.supportsMotionVectors.