Enum ErrorCode
Describes an error during the texture import.
Namespace: KtxUnity
Syntax
public enum ErrorCode
Fields
| Name | Description | Value |
|---|---|---|
| Success | Texture import was successful. |
0 |
| UnsupportedVersion | KTX v1 is not supported. |
1 |
| UnsupportedFormat | The GraphicsFormat is unsupported by KTX Unity. |
2 |
| FormatUnsupportedBySystem | The GraphicsFormat is unsupported by the current system. |
3 |
| NotSuperCompressed | Only super-compressed KTX is supported. |
4 |
| OpenUriFailed | Loading from URI returned a WebRequest error. |
5 |
| LoadingFailed | Loading texture data failed. |
6 |
| TranscodeFailed | Transcoding to GraphicsFormat failed. |
7 |
| InvalidLayer | Layer index exceeds layer count. |
8 |
| InvalidLevel | MipMap level exceeds level count. |
9 |
| InvalidFace | Face slice exceeds face count. |
10 |
| InvalidSlice | Face slice exceeds base depth. |
11 |