Class AlembicStreamSettings
This class contains stream reading options for Alembic file import.
Namespace: UnityEngine.Formats.Alembic.Importer
Syntax
public class AlembicStreamSettings : object
Properties
CreateCurveRenderers
If you enabled the importing of Alembic curves, this method automatically creates the AlembicCurveRendering component.
Declaration
public bool CreateCurveRenderers { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
FlipFaces
Enable to invert the orientation of the polygons.
Declaration
public bool FlipFaces { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ImportCameras
Enable or disable the import of Camera data.
Declaration
public bool ImportCameras { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ImportCurves
Enable or disable the import of Curve data.
Declaration
public bool ImportCurves { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ImportMeshes
Enable or disable the import of Mesh data.
Declaration
public bool ImportMeshes { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ImportPoints
Enable or disable the import of Point (particle cloud) data.
Declaration
public bool ImportPoints { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ImportVisibility
Enables or disables the control of the active state of objects.
Declaration
public bool ImportVisibility { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
ImportXform
Enable or disable the import of Transform (Xform) data.
Declaration
public bool ImportXform { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
InterpolateSamples
Enable to linearly interpolate between Alembic samples for which the topology does not change.
Declaration
public bool InterpolateSamples { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Normals
Get or set the Normals computation mode on import.
Declaration
public NormalsMode Normals { get; set; }
Property Value
Type | Description |
---|---|
NormalsMode |
ScaleFactor
The world scale factor to convert between the Alembic file and Unity.
Declaration
public float ScaleFactor { get; set; }
Property Value
Type | Description |
---|---|
Single |
SwapHandedness
Enable to switch the X-axis direction between Left and Right handed coordinate systems.
Declaration
public bool SwapHandedness { get; set; }
Property Value
Type | Description |
---|---|
Boolean |
Tangents
Get or set the Tangents computation mode on import.
Declaration
public TangentsMode Tangents { get; set; }
Property Value
Type | Description |
---|---|
TangentsMode |