Overview
A Callout is an interactive tag attached to a point on a scene object. It shows a text label in 3D space, optionally connected to the object with a leader line, and can open text, an image, or a video when the learner taps it. Callouts are the fastest way to annotate models — label parts of a machine, flag inspection points, highlight hazards, or add “tap to learn more” hotspots. They are placed directly in the 3D scene using Callout Mode.Adding a Callout (Callout Mode)
The quickest way to create a callout is with Callout Mode on the ribbon.Select a step
Turn on Callout Mode
Click a surface in the 3D scene
Edit the callout
Turn Callout Mode off

Callout Mode active — the ribbon button is highlighted, a placed 'Callout' tag sits on the model, and the Callout Editor is open on the right
- An Add Callout action on the state’s onEntry
- A Remove Object action on the state’s onExit (so the tag is cleaned up when the state exits)
- A tap transition on the callout that runs the chosen content action (Show Text, Show Image, or Play Video)
Callout Editor
When a callout is selected, the Callout Editor panel shows the full set of options.Tag Visual
Connector Type
Label Style
Content (on tap)
Choose what happens when the learner taps the callout:Anchor Point and Label Transform
- Anchor Point — Position (X / Y / Z) of the point the leader line starts from, relative to the reference object.
- Label Transform — Position, Rotation, and Scale of the label in 3D space. Scale is clamped between 0.01 and 100.
Add Callout Action (Catalog)
Callouts can also be added from the action catalog as Add Callout, but the full object graph — tag, cleanup on exit, and tap content — is produced by Callout Mode. For most workflows, Callout Mode is faster and less error-prone. The Add Callout action shows the same fields as the Callout Editor above:- Label Text (placeholder: Text on the tag)
- Reference Object — the scene object the callout is attached to
- Show Leader Line, Billboard, Billboard Mode
- Anchor Point, Label Transform, Label Style
Example: Label a Machine Part
A learner is inspecting an engine. You want to label the oil filler cap so the learner can see its name and tap it for a short description.Place the callout
Configure the label
Oil Filler Cap. Leave Show Leader Line on, Billboard on, Billboard Mode Full.Add tap content
Oil Filler Cap and the body to Remove to add engine oil. Torque to 8 Nm when reinstalling.Example: Inspection Checklist with Image Callouts
Tag each inspection point with a numbered callout. Tapping a callout shows a reference image of the correct condition.Enter Callout Mode and place the first point
1. Wear Plate.Set the content to Image
Repeat for each point
2, 3, 4 on the other inspection points, each with its own reference image.Turn Callout Mode off
Best Practices
Use Callout Mode, not the raw Add Callout action
Keep labels short
Leave Billboard on for most cases
Use elbow connectors when the label needs to sit off to the side
Stick with VR fonts for VR trainings
Clean up on exit
How It Works Internally
A callout is a scene object whose tap event fires a transition to content:- onEntry:
Add Callout— places the tag - Transition (event: tap on the tag) — runs Show Text, Show Image, or Play Video using the tag’s stable id as the reference
- onExit:
Remove Object— removes the tag so it does not persist into the next state
Related
- Show Panel — A richer, modal info panel (versus a lightweight callout tag)
- Highlight Object — Visually emphasise an object without attaching a tag
- Show Text / Show Image / Play Video — The content actions triggered when a callout is tapped

