Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2023-09-29 16:05:40 -07:00
parent 31cd9e532d
commit 12c164620b
268 changed files with 22464 additions and 18287 deletions

View File

@ -2,22 +2,21 @@ from enum import Enum
class GltfStorage(str, Enum):
"""Describes the storage format of a glTF 2.0 scene.""" # noqa: E501
""" Describes the storage format of a glTF 2.0 scene. """ # noqa: E501
"""# Binary glTF 2.0.
"""# Binary glTF 2.0.
This is a single binary with .glb extension. """ # noqa: E501
BINARY = 'binary'
"""# Standard glTF 2.0.
This is a single binary with .glb extension. """ # noqa: E501
BINARY = "binary"
"""# Standard glTF 2.0.
This is a JSON file with .gltf extension paired with a separate binary blob file with .bin extension. """ # noqa: E501
STANDARD = "standard"
"""# Embedded glTF 2.0.
This is a JSON file with .gltf extension paired with a separate binary blob file with .bin extension. """ # noqa: E501
STANDARD = 'standard'
"""# Embedded glTF 2.0.
Single JSON file with .gltf extension binary data encoded as base64 data URIs.
This is the default setting. """ # noqa: E501
EMBEDDED = "embedded"
This is the default setting. """ # noqa: E501
EMBEDDED = 'embedded'
def __str__(self) -> str:
return str(self.value)
def __str__(self) -> str:
return str(self.value)