@3dsource/metabox-modular-configurator-api
    Preparing search index...

    Interface ModularConfiguratorVirtualSocketToConnector

    Represents the mapping between virtual sockets and connectors in the modular configurator.

    Represents the mapping between virtual sockets and connectors. Manages component connection points.

    Maps virtual sockets (connection points) to physical connectors on components. Shows which attachment points on a component accept which other component types. Used for validating and visualizing modular assembly connections.

    Access via component.virtualSocketToConnectorsMap. Use to validate user-proposed assemblies in drag-and-drop builder UIs. Before calling SetComponent for a child, verify the parent has a compatible socket. Prevents invalid configurations.

    interface ModularConfiguratorVirtualSocketToConnector {
        __typename: "ModularConfiguratorVirtualSocketToConnector";
        connectorId: string;
        virtualSocketId: string;
    }
    Index

    Properties

    __typename: "ModularConfiguratorVirtualSocketToConnector"

    Represents object typename for the virtual map socket.

    connectorId: string
    virtualSocketId: string