[go: up one dir, main page]

gltf-json 1.3.0

JSON parsing for the gltf crate
Documentation
1
2
3
4
5
6
7
8
9
10
use gltf_derive::Validate;
use serde_derive::{Deserialize, Serialize};

/// A buffer points to binary data representing geometry, animations, or skins.
#[derive(Clone, Debug, Default, Deserialize, Serialize, Validate)]
pub struct Buffer {}

/// A view into a buffer generally representing a subset of the buffer.
#[derive(Clone, Debug, Default, Deserialize, Serialize, Validate)]
pub struct View {}