Static Public Member Functions | |
static bool | ExtractGLBResources (byte[] bytes, out string glTFJson, out byte[] binaryBuffer) |
This function takes the full binary data of a glb (version 2) and is able to extract the gltf json and the binary blob from it More... | |
static bool | ExtractGLBResources (string path, out string glTFJson, out byte[] binaryBuffer) |
This function takes the path to a glb (version 2) and is able to extract the gltf json and the binary blob from it More... | |
static bool | IsBinaryGlTF (ref byte[] bytes) |
Function to check if a byte array contains a binary gltf file More... | |
|
static |
This function takes the full binary data of a glb (version 2) and is able to extract the gltf json and the binary blob from it
bytes | Binary contents of glb file |
glTFJson | Resulting gltf |
binaryBuffer | Resulting binary blob |
|
static |
This function takes the path to a glb (version 2) and is able to extract the gltf json and the binary blob from it
path | Path to glb file |
glTFJson | Resulting gltf |
binaryBuffer | Resulting binary blob |
|
static |
Function to check if a byte array contains a binary gltf file
path | binary data |