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" }
]
};