unity-asset-yaml 0.2.0

YAML format support for Unity asset parsing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Constants for Unity YAML format
//!
//! This module contains Unity-specific constants used in YAML serialization.

// Re-export from unity-asset-core
pub use unity_asset_core::constants::*;

/// Unity YAML tag URI
pub const UNITY_TAG_URI: &str = "tag:unity3d.com,2011:";

/// Unity YAML version
pub const UNITY_YAML_VERSION: (u32, u32) = (1, 1);

/// Line ending types
pub use unity_asset_core::LineEnding;