@masatomakino/threejs-interactive-object
    Preparing search index...

    Interface InteractiveMeshParameters

    Configuration parameters for creating interactive mesh objects.

    Defines the required and optional parameters for constructing any interactive mesh. The geometry parameter is currently optional but should typically be provided. The material parameter is required for proper visual state management.

    interface InteractiveMeshParameters {
        geo?: BufferGeometry<NormalBufferAttributes, BufferGeometryEventMap>;
        material: StateMaterialSet;
    }
    Index

    Properties

    Properties

    geo?: BufferGeometry<NormalBufferAttributes, BufferGeometryEventMap>

    Three.js BufferGeometry. Currently optional but typically required for proper rendering.

    Required StateMaterialSet for managing visual states (normal, over, down, selected, etc.)