Class Asset
Metadata about the glTF asset.
Inherited Members
Namespace: Unity.Cloud.Gltfast.Objects
Assembly: Unity.Cloud.Gltfast.dll
Syntax
[MovedFrom(true, "GLTFast.Schema", "glTFast", null)]
public class Asset
Properties
AdditionalProperties
Additional properties on glTF JSON objects. Those properties may have been added by a new, unsupported version of the glTF specification. For extending glTF, please use extensions or extras instead.
Declaration
[JsonIgnore]
public ReadOnlyProperties AdditionalProperties { get; }
Property Value
| Type | Description |
|---|---|
| ReadOnlyProperties |
Copyright
A copyright message suitable for display to credit the content creator.
Declaration
[JsonPropertyName("copyright")]
public string Copyright { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Extensions
JSON object with extension-specific objects.
Declaration
[JsonPropertyName("extensions")]
public AssetExtensions Extensions { get; set; }
Property Value
| Type | Description |
|---|---|
| AssetExtensions |
See Also
Extras
Application-specific data.
Declaration
[JsonPropertyName("extras")]
[JsonConverter(typeof(ExtrasConverter))]
public ExtrasContainer Extras { get; set; }
Property Value
| Type | Description |
|---|---|
| ExtrasContainer |
See Also
Generator
Tool that generated this glTF model. Useful for debugging.
Declaration
[JsonPropertyName("generator")]
public string Generator { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
MinVersion
The minimum glTF version that this asset targets.
Declaration
[JsonPropertyName("minVersion")]
public string MinVersion { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Version
The glTF version.
Declaration
[JsonPropertyName("version")]
public string Version { get; set; }
Property Value
| Type | Description |
|---|---|
| string |