API ReferenceSandbox.MovieMaker

IComponentCapturerclass

When added to a `Sandbox.MovieMaker.MovieRecorderOptions`, handles how to capture the properties of a particular component type.

objectIComponentCapturer
Namespace
Sandbox.MovieMaker
Assembly
Sandbox.Engine
Declaration
public abstract interface Sandbox.MovieMaker.IComponentCapturer

Methods2

Showing 2 methods

public virtual void Capture(Sandbox.MovieMaker.IMovieTrackRecorder recorder, Sandbox.Component component)PUBLICVIRTUAL

Handle capturing the properties of the given `component` instance. Find properties to capture using `Sandbox.MovieMaker.IMovieTrackRecorder.Property(System.String)`, then call `Sandbox.MovieMaker.IMovieTrackRecorder.Capture` on them.

ParameterTypeDescription
recorderIMovieTrackRecorder
componentComponent
Returns:void

public virtual bool SupportsType(System.Type componentType)PUBLICVIRTUAL

Returns true if this recorder can handle the given `componentType`.

ParameterTypeDescription
componentTypeType
Returns:bool

On this page