Viewer
    Preparing search index...

    Interface IDraggingParameterProps

    Properties of a dragging parameter.

    interface IDraggingParameterProps {
        activeMode?: "default" | "activeOnStart";
        availableColor?: InteractionEffect;
        draggingColor?: InteractionEffect;
        hover?: boolean;
        hoverColor?: InteractionEffect;
        objects?: IDraggableObject[];
        occludeBySceneGeometry?: boolean;
        prompt?: {
            activeText?: string;
            activeTitle?: string;
            inactiveTitle?: string;
        };
        restrictions?: RestrictionDefinition[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    activeMode?: "default" | "activeOnStart"

    The mode to determine when the parameter is active. (default: 'default')

    availableColor?: InteractionEffect

    The interaction effect on objects when available. (default: '#ffffff')

    draggingColor?: InteractionEffect

    The interaction effect on objects when dragged. (default: '#0d44f0')

    hover?: boolean

    If the objects are hoverable. (default: true)

    hoverColor?: InteractionEffect

    The interaction effect on objects when hovered. (default: '#00ff78')

    objects?: IDraggableObject[]

    The objects that can be dragged.

    For each object, the name filter, the restrictions, the drag anchors, and the drag origin can be defined. The name filter is used to filter the objects that can be dragged with the defined settings. This means that multiple objects can be dragged with different settings, but also multiple objects can be dragged with the same settings.

    occludeBySceneGeometry?: boolean

    When true, interactions are blocked by non-interactive solid geometry in front of the target. (default: false)

    prompt?: { activeText?: string; activeTitle?: string; inactiveTitle?: string }

    A prompt that can be defined which is displayed instead of the default prompt.

    Type Declaration

    • OptionalactiveText?: string

      The text when the parameter is inactive.

    • OptionalactiveTitle?: string

      The title when the parameter is active.

    • OptionalinactiveTitle?: string

      The title when the parameter is inactive.

    restrictions?: RestrictionDefinition[]