ambient_shared_types 0.3.1

Types shared between the host and the guest of the Ambient runtime.
Documentation
mod winit;
pub use crate::winit::*;

mod procedurals;
pub use crate::procedurals::*;

pub mod asset;
pub mod urls;

pub type ComponentIndex = u32;

/// A mapping from enum names to Rust types. Instantiate this with a macro that takes `$(($value:ident, $type:ty)),*`.
#[macro_export]
macro_rules! primitive_component_definitions {
    ($macro_to_instantiate:ident) => {
        $macro_to_instantiate!(
            // Empty types are at the moment no longer supported by the ABI as it is not handled well
            // by languages such as C++.
            // See: <https://github.com/WebAssembly/component-model/commit/e6d50af577a2fc28ed93c18afedef6d3729d98f4>
            (Empty, ()),
            (Bool, bool),
            (EntityId, EntityId),
            (F32, f32),
            (F64, f64),
            (Mat4, Mat4),
            (Quat, Quat),
            (String, String),
            (U8, u8),
            (U16, u16),
            (U32, u32),
            (U64, u64),
            (I8, i8),
            (I16, i16),
            (I32, i32),
            (I64, i64),
            (Vec2, Vec2),
            (Vec3, Vec3),
            (Vec4, Vec4),
            (Uvec2, UVec2),
            (Uvec3, UVec3),
            (Uvec4, UVec4),
            (Ivec2, IVec2),
            (Ivec3, IVec3),
            (Ivec4, IVec4),
            (Duration, Duration),
            (ProceduralMeshHandle, ProceduralMeshHandle),
            (ProceduralTextureHandle, ProceduralTextureHandle),
            (ProceduralSamplerHandle, ProceduralSamplerHandle),
            (ProceduralMaterialHandle, ProceduralMaterialHandle)
        );
    };
}