Skip to main content

Enumeration: HotspotBlockType

Defines the content types available for hotspot information blocks in 3D models.

Hotspots are interactive points on 3D models that reveal additional information when clicked. The HotspotBlockType enum determines what kind of content is displayed when a user interacts with a hotspot, allowing for rich, multi-format product presentations.

Example

// Creating a text information hotspot
const textHotspot = {
position: new Vector3(1, 2, 3),
blockType: HotspotBlockType.TEXT,
content: "<p>This premium finish is scratch-resistant and UV-stable.</p>"
};

// Creating a document download hotspot for specifications
const specHotspot = {
position: new Vector3(0, 1, 2),
blockType: HotspotBlockType.DOCUMENT,
documents: [
{ fileName: "Technical Specs.pdf", s3Path: "docs/spec_12345.pdf" }
]
};

Enumeration Members

DOCUMENT

DOCUMENT: "DOCUMENT"

Document download block.

Provides downloadable files related to the product, such as specification sheets, manuals, CAD files, or certificates. Helps deliver technical documentation to customers.


GALLERY: "GALLERY"

Image and video gallery block.

Displays a collection of images and/or videos in a gallery format. Perfect for showing product details, variations, or demonstrations from multiple angles or in different contexts.


TEXT

TEXT: "TEXT"

Rich text content block.

Displays formatted HTML text that can include styling, links, and basic formatting. Ideal for product descriptions, feature highlights, or usage instructions.