comparison · 2026-01-07
Landstamp Pro vs Landscape Stamp Tool: Which UE5 Terrain Tool Do You Need?
Two sibling heightmap-stamping tools built on the same Landscape Patch foundation - one a C++ editor plugin, one a Blueprint pack. Here is how to choose.
Two different jobs, two different tools
If you have been searching for landstamp pro vs landscape stamp tool unreal, the first thing to understand is that these are siblings, not rivals. Both turn greyscale heightmap textures into terrain, both build on Unreal's built-in Landscape Patch system, and both ship the same geological vocabulary - mountains, canyons, rivers, craters, hills, volcanoes and directional paths. What separates them is how you drive that vocabulary and how much control you get over each stamp.
Landstamp Pro is a C++ editor plugin. You place 'Landstamp' actors in the level, each one driving a Landscape Texture Patch that adds, subtracts or replaces height beneath it, and every edit stays editable after placement. It ships a large stamp library, a visual Stamp Browser, and a tool that extracts a heightmap from any static mesh so you can author your own stamps.
Landscape Stamp Tool is a Blueprint-only pack. You drag a tool blueprint into a World Partition level and it morphs the terrain in place - no C++ required. It exposes a focused set of geological tool blueprints derived from a single base, and it is explicitly the lighter, Blueprint-based sibling of Landstamp Pro built on the same underlying approach.
So the real question is not which tool is better in the abstract. It is which workflow fits how you work, which engine versions you are on, and how much per-stamp control you actually need. The rest of this comparison answers that honestly, using only the documented feature sets of each product.
Landstamp Pro: non-destructive patch-based stamping in C++
Landstamp Pro is the heavier of the two, and the extra weight buys you control. Each stamp is an 'ALandstampActor' that exposes BlueprintCallable and CallInEditor functions - 'ApplyToLandscape', 'PreviewStamp', 'ClearPreview', 'FindLandscapeBelow' and 'ResolveTargetLandscape' - so you can preview an edit, commit it, or discard it without ever baking the change permanently into the landscape.
Per stamp you get five blend modes (Additive, Subtractive, Replace, Maximum, Minimum), three falloff shapes (Circle, Rounded Rectangle, Square), and either size-scaled blend-distance presets (from Tiny at 5% through Massive at 75%) or a manual blend distance. Height behaviour is governed by HeightIntensity (a -2 to 2 range where negative values invert the stamp), MaxHeightDisplacement, StampRotation, StampSize in world units and an edge falloff. A 10-level priority system resolves overlaps, so a volcano stamp punched into a mountain range renders predictably on top.
Targeting is automatic by default: a stamp binds to the landscape whose XY footprint contains it, or the nearest one. For overlapping landscapes you can disable auto-targeting and set the TargetLandscape explicitly. The standout authoring feature is mesh-to-heightmap extraction - the FMeshHeightmapExtractor converts any static mesh into a greyscale heightmap stamp with automatic bounds detection, a live 3D preview, axis visualisation and a selectable output resolution of 512, 1K, 2K or 4K. Turn a sculpted rock, a terrain feature or even a logo into a reusable stamp.
Stamps themselves are data-driven 'UStampAsset' records (UPrimaryDataAsset) that store the heightmap texture, thumbnail, category, pack, tags, default blend mode, intensity, scale and an invert-height flag. The Stamp Browser surfaces them as a searchable, categorised thumbnail grid with drag-and-drop placement and a recently-used tracker. The plugin states editor-only overhead and zero runtime cost in packaged builds.
The trade-off is footprint. Landstamp Pro is a large download - its live listing notes the plugin is roughly 1.97 GB, almost entirely because of its 100+ high-resolution heightmap textures up to 4K backing 370+ stamp data assets. It is also Windows 64-bit only, with a Win64 PlatformAllowList on both of its modules.
Landscape Stamp Tool: Blueprint-driven World Partition morphing
Landscape Stamp Tool takes the same idea and strips it down to a no-code workflow. There is no C++ to compile and no actor API to learn. You drop a tool blueprint near your landscape in a World Partition level and it morphs the terrain underneath in place. For Blueprint-only teams that never want to touch native code, that is the entire appeal.
It ships seven geological tool types - Canyon, Crater, Directional (paths, roads and crossings), Hill, Mountain, River and Volcano - all derived from a shared 'BP_StampTool' base, which makes eight tool blueprints in total. Alongside those sit additional asset blueprints (BP_Canyon, BP_Island, BP_Mountain, BP_Volcano, BP_StampAsset, BP_CustomStamp and BP_CustomStampTool), and the product is described as 8 tool blueprints across 15 assets. Multiple tools blend together, so you stack them to compose terrain much as you would with Landstamp Pro.
The texture library is organised hierarchically by tool, then style, then variant - Mountain offers Alpine, Basic, Eroded, Old and Strata; Canyon offers Classic, Both, two Eroded variants and Strata; Volcano comes with and without snow. Each stamp is available at multiple texture sizes (512, 1K, 2K and 4K). The pack also includes the Gaea .terrain source files for the stamp shapes, which is genuinely useful if you want to re-author the source heightfields rather than only consume the bundled textures.
Custom heightmaps are supported through a 'BP_CustomStampTool' and 'BP_CustomStamp', so you are not locked to the shipped library. Priority-based overlap handling and falloff settings are present per the analysis docs, exposed through enumerations such as E_StampPriority, E_TextureSizes, E_MountainType and E_CanyonType. There is a worked demo in 'L_Demo.umap' showing every tool in use. What you do not get, compared with the Pro plugin, is the actor-level preview/apply/clear API, the five named blend modes, the mesh-to-heightmap extractor or the full Stamp Browser.
Feature by feature
The table below compares the two on the facts each product documents. Where a figure is approximate in the source material - the Landscape Stamp Tool's texture count, for instance - it is shown as such rather than rounded into a clean marketing number.
Read the table for capability, but read your own workflow for the decision. The C++ plugin gives you more named, per-stamp control and an authoring pipeline; the Blueprint pack gives you a smaller, code-free footprint that drops straight into a World Partition level.
Which to pick by workflow and budget
Pick Landstamp Pro if you want maximum per-stamp control and a real authoring pipeline. The named blend modes, the 10-level priority system, the preview/apply/clear actor API and especially the mesh-to-heightmap extractor make it the right tool when you intend to compose complex terrain, iterate non-destructively over a long project, and turn your own meshes into reusable stamps. The large stamp library (370+ assets) means you can block out an open world fast before you ever author anything custom. Accept that it is a large, Windows-only, C++ plugin and that it targets the newer engine line.
Pick Landscape Stamp Tool if you are a Blueprint-only or indie developer who wants to sculpt terrain without compiling C++. Dragging BP_MountainTool, BP_CanyonTool or BP_RiverTool into a World Partition level and tuning a few exposed properties is the fastest path from empty landscape to shaped biome when you do not need the Pro plugin's deeper controls. It is the lighter, cheaper sibling, and the included Gaea source files are a bonus if you like to re-author shapes.
On engine support, check carefully before you buy. Landscape Stamp Tool is built for Unreal Engine 5.6 to 5.7 with a separate project per version and is World Partition oriented. Landstamp Pro's authoritative source and live listing state 5.5, 5.6 and 5.7+. Both are Windows tools; do not assume macOS or Linux editor support for either. If you are on an older engine version than these, neither is a clean fit.
If you are torn, decide on two axes. First, code: if you never want to touch C++, the Blueprint pack is the honest answer. Second, authoring: if you need to convert your own meshes into stamps or want the named blend modes and actor-level preview workflow, only Landstamp Pro provides them. Many teams will find that the Blueprint pack covers prototyping and that Landstamp Pro earns its footprint once a project demands custom stamps and non-destructive iteration at scale.
Landstamp Pro vs Landscape Stamp Tool
| Landstamp Pro | Landscape Stamp Tool | |
|---|---|---|
| Type | C++ editor plugin (20 C++ classes, 0 Blueprints) | Blueprint-only pack (no C++ required) |
| Workflow | Place ALandstampActor; Stamp Browser drag-and-drop | Drag tool blueprint into a World Partition level |
| Foundation | Unreal Landscape Patch system | Unreal Landscape Patch system |
| Blend modes | Additive, Subtractive, Replace, Maximum, Minimum | Blends multiple tools (no named blend-mode list) |
| Falloff shapes | Circle, Rounded Rectangle, Square + blend presets | Falloff settings (per analysis docs) |
| Overlap handling | 10-level priority system | Priority-based (E_StampPriority) |
| Preview / apply | PreviewStamp, ApplyToLandscape, ClearPreview (CallInEditor) | In-place morph on drop |
| Custom stamps | Mesh-to-heightmap extractor (512/1K/2K/4K) | BP_CustomStampTool / BP_CustomStamp |
| Stamp library | 370+ stamp assets, 100+ textures up to 4K | ~110 heightmap textures (109 in 5.7 project) |
| Geological types | Mountain, Canyon, Hill, Crater, River, Volcano, Directional, Creatures, Custom | Canyon, Crater, Directional, Hill, Mountain, River, Volcano |
| Engine versions | UE 5.5, 5.6, 5.7+ (per source / live listing) | UE 5.6 - 5.7 (separate project per version) |
| Platform | Windows 64-bit only | Windows |
| Runtime cost | Editor-only; states zero runtime cost in packaged builds | Editor tool (Blueprint) |
Compiled from each product's documented feature set. Approximate figures are marked; do not read them as exact marketing counts.
FAQ
Landstamp Pro vs Landscape Stamp Tool: what is the core difference?
Landstamp Pro is a C++ editor plugin that places editable Landstamp actors with named blend modes, a 10-level priority system, a preview/apply workflow and a mesh-to-heightmap extractor. Landscape Stamp Tool is a Blueprint-only pack you drag into a World Partition level to morph terrain in place with no code. Both build on Unreal's Landscape Patch system.
Do I need C++ knowledge to use either tool?
No for Landscape Stamp Tool - it is entirely Blueprint and requires no code. Landstamp Pro is a C++ plugin, but you typically drive it from the Stamp Browser and the details panel rather than by writing code; its functions are also exposed as CallInEditor and BlueprintCallable.
Can I turn my own meshes into terrain stamps?
With Landstamp Pro, yes - its FMeshHeightmapExtractor converts any static mesh into a greyscale heightmap stamp with automatic bounds detection, a live 3D preview and a selectable 512/1K/2K/4K output resolution. Landscape Stamp Tool supports custom heightmaps via BP_CustomStampTool and BP_CustomStamp, but does not include a mesh-extraction tool.
Which Unreal Engine versions and platforms do they support?
Landstamp Pro's authoritative source and live listing state UE 5.5, 5.6 and 5.7+, Windows 64-bit only. Landscape Stamp Tool targets UE 5.6 to 5.7 with a separate project per version and is built for World Partition, also on Windows. Neither claims confirmed macOS or Linux editor support, so verify your engine version before buying.
Are terrain edits non-destructive in both?
Both build on Unreal's Landscape Patch approach. Landstamp Pro explicitly keeps every stamp editable after placement via Landscape Texture Patches, with preview, apply and clear actions, so you can reposition, rescale or re-blend macro landforms at any time. Landscape Stamp Tool blends stamps in place using the same underlying patch system.
Landstamp Pro
Sculpt production terrains in minutes, not hours. Landstamp Pro is a professional heightmap stamping system for Unreal Engine — combine, layer and blend stamps with precise control and real-time preview, fully non-destructive.