MVFv3 API Documentation
    Preparing search index...

    Type Alias TraversabilityExtensionSchema

    The Traversability extension adds two properties to the root of the bundle, walkable and nonwalkable, which are Records of FloorId to WalkableGeometries and NonWalkableGeometries objects.

    This describes which geometries can be walked on/through, and which cannot.

    type TraversabilityExtensionSchema = {
        walkable: Partial<
            { [x: `f_${string}`]: Partial<{ [x: `g_${string}`]: {} }> },
        >;
        nonwalkable: Partial<
            { [x: `f_${string}`]: Partial<{ [x: `g_${string}`]: {} }> },
        >;
    }
    Index

    Properties

    walkable: Partial<{ [x: `f_${string}`]: Partial<{ [x: `g_${string}`]: {} }> }>
    nonwalkable: Partial<
        { [x: `f_${string}`]: Partial<{ [x: `g_${string}`]: {} }> },
    >