Class ImporterDescription
Metadata and feature support information for a given importer.
Inherited Members
Namespace: SharpAssimp
Assembly: SharpAssimp.dll
Syntax
public sealed class ImporterDescription
Properties
| Edit this page View SourceAuthor
Gets the original author (blank if unknown or assimp team).
Declaration
public string Author { get; }
Property Value
Type | Description |
---|---|
string |
Comments
Gets any implementation comments.
Declaration
public string Comments { get; }
Property Value
Type | Description |
---|---|
string |
FeatureFlags
Gets the features supported by the importer.
Declaration
public ImporterFeatureFlags FeatureFlags { get; }
Property Value
Type | Description |
---|---|
ImporterFeatureFlags |
FileExtensions
Gets the list of file extensions the importer can handle. All entries are lower case and do NOT have a leading dot.
Declaration
public string[] FileExtensions { get; }
Property Value
Type | Description |
---|---|
string[] |
Maintainer
Gets the name of the current maintainer, if empty then the author maintains.
Declaration
public string Maintainer { get; }
Property Value
Type | Description |
---|---|
string |
MaxVersion
Gets the maximum version of the file format supported. If no version scheme, forwards compatible, or importer doesn't care, major/min will be zero.
Declaration
public Version MaxVersion { get; }
Property Value
Type | Description |
---|---|
Version |
MinVersion
Gets the minimum version of the file format supported. If no version scheme, forwards compatible, or importer doesn't care, major/min will be zero.
Declaration
public Version MinVersion { get; }
Property Value
Type | Description |
---|---|
Version |
Name
Gets the name of the importer (e.g. Blender3D Importer)
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
string |