gltf_kun 0.0.4

Extensible library for building glTF toolchains.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Provides a way to resolve URIs to buffers during import.

use anyhow::Result;

pub mod file_resolver;

/// Resolves a URI to a buffer.
pub trait Resolver {
    fn resolve(&self, uri: &str) -> Result<Vec<u8>>;
}