2023-08-30 15:59:51 -07:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class FbxStorage(str, Enum):
|
2023-09-29 16:05:40 -07:00
|
|
|
""" Describes the storage format of an FBX file. """ # noqa: E501
|
|
|
|
"""# ASCII FBX encoding. """ # noqa: E501
|
|
|
|
ASCII = 'ascii'
|
|
|
|
"""# Binary FBX encoding. """ # noqa: E501
|
|
|
|
BINARY = 'binary'
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return str(self.value)
|