A measuring tool for Unreal Engine. Drop a measure actor into your level, pick two anchor points, and get a live, camera-facing distance readout drawn directly in the viewport — complete with a ruler-style line, tick marks, and a units label.
- Two-anchor measurement — measure the distance between any two actors in the level.
- Live editor preview — the line and label update every frame in the viewport, including when you drag the anchors around. No PIE / runtime needed.
- Camera-facing ruler line — a billboarded procedural-mesh line keeps a constant apparent thickness from any viewing angle, with optional tick marks spaced at one display unit each.
- Unit conversion — display in centimeters, meters, kilometers, inches, feet, yards, or miles.
- Configurable label — toggle visibility, set decimal precision, slide its position along the line, and choose its color.
- One-click anchor creation — spawn anchor
TargetPoints straight from the details panel. - Pivot snapping — re-center the actor's pivot on anchor A without moving the anchors in world space.
- In the Content Browser, navigate to MeasureTool Content and drag
BP_MeasureActorinto your level. - Assign the two endpoints you want to measure:
- Set Anchor A and Anchor B in the details panel to any actors already in the level, or
- Click Create Anchor in the details panel to spawn a
TargetPointat the measure actor's location. The first click fills Anchor A, the second fills Anchor B. New anchors are attached to the measure actor and named<Actor>_AnchorA/<Actor>_AnchorB.
- Move the anchors. The line, tick marks, and label update live, and the read-only Distance CM field reflects the raw distance in centimeters.
Tip:
BP_MeasureActoris the intended entry point. The underlying C++ classAMeasureActoris markedAbstractand cannot be placed directly.
All properties are exposed in the Measure category and are keyframable so you can animate them in Sequencer.
| Property | Description |
|---|---|
Anchor A |
First endpoint actor. |
Anchor B |
Second endpoint actor. |
Distance CM |
Read-only measured distance in centimeters. |
| Property | Default | Description |
|---|---|---|
Line Width |
5.0 |
Apparent thickness of the line. |
Line Color |
White | Line color. |
Show Ticks |
true |
Draw tick marks at every display-unit interval. |
Tick Width |
4.0 |
Thickness of each tick mark. |
Tick Length |
25.0 |
Length of each tick mark. |
MIT © 2026 Raphael Gaudin


