Interface IPreviewable
Implement this interface in a Component to register properties for previewing purposes, preventing Unity from marking Prefabs or the Scene as modified.
Namespace: Unity.LiveCapture
Assembly: Unity.LiveCapture.dll
Syntax
public interface IPreviewable
Methods
Register(IPropertyPreviewer)
The preview system calls this method before playing animations. Use the specified IPropertyPreviewer to register animated properties.
Declaration
void Register(IPropertyPreviewer previewer)
Parameters
Type | Name | Description |
---|---|---|
IPropertyPreviewer | previewer | The IPropertyPreviewer to register animated properties to. |