Stop Building Walls, Start Building Mountains: The Landscape Sculpt Tool
Stop Building Walls, Start Building Mountains: The Landscape Sculpt Tool
Look, we all love a good wall edit. But have you ever tried to run across a perfectly flat, gray concrete slab and felt your soul leave your body? Yeah, me too. That’s why we’re ditching the basic box and learning how to actually shape the ground beneath your feet.
In this tutorial, we’re going to use the Landscape Sculpt Tool. Think of this tool as your personal god-mode for terrain. You’re not just placing objects anymore; you’re pushing the ground up to make mountains and pulling it down to dig trenches. It’s the difference between a flat arena and an actual map with cover, height advantage, and vibes. By the end of this, you’ll stop building squares and start building worlds.
What You'll Learn
- How to switch from "Builder Mode" to "Sculpt Mode" (the cheat code for terrain).
- The difference between Sculpting (changing height) and Painting (changing texture).
- How to use Brushes and Falloff to make natural-looking hills instead of ugly spikes.
- How to set up your first custom terrain that doesn’t look like a spreadsheet.
How It Works
To understand the Landscape Sculpt Tool, you need to understand that your Fortnite island is built on layers. Think of it like a stack of transparencies or, if you’re old school, layers in Photoshop.
The Landscape Layer Stack
Imagine your terrain is a stack of paper:
- The Base Mesh: This is the raw, flat clay. By default, it’s a boring, flat plane.
- The Sculpt Layer: This is where you push the clay up or pull it down. This changes the geometry (the actual 3D shape). If you raise this layer, you create a hill. If you lower it, you create a crater.
- The Paint Layer: This is the skin on top of the clay. You can paint grass, sand, rock, or snow onto the hills you just made.
Sculpting vs. Painting
- Sculpting is like playing with Play-Doh. You are physically moving the vertices (the points that make up the 3D grid) up and down.
- Painting is like using a spray can. You aren’t moving the ground; you’re just changing what color/texture is visible on it.
The Brush and Falloff
You don’t just click and the ground explodes upward. You use a Brush.
- Size: How wide your brush is. A big brush makes gentle rolling hills. A tiny brush makes sharp, jagged rocks.
- Falloff: This is the secret sauce. Falloff determines how the strength of your brush fades out at the edges.
- Hard Falloff: Like stamping a cookie cutter. The edge is sharp and unnatural.
- Soft Falloff: Like airbrushing. The edge blends smoothly into the flat ground.
For natural terrain, you want Soft Falloff. For a trapdoor or a sharp spike, you might want Hard.
The Scene Graph Connection
In Unreal Engine 6 (and Verse), everything is part of the Scene Graph. The Landscape is a specific Entity (an object in the world) with Components (the data that defines it). The "Sculpt Tool" is just an interface that modifies the vertex data of that Landscape Entity’s Mesh Component. When you sculpt, you aren’t moving individual props; you are editing the fundamental shape of the terrain object itself. This is efficient because the engine only has to render one big mesh instead of a million tiny cubes.
Let's Build It
We aren't writing Verse code for this one. Why? because sculpting is a visual, editor-based action. But understanding how it works under the hood helps you use it better.
Here is the "logic" of the tool, broken down into steps you perform in the UEFN editor.
Step 1: Enter Landscape Mode
- Open your Island in UEFN.
- In the top toolbar, look for the mode selector (it usually says "Place" or "Build").
- Click the dropdown and select Landscape.
- If you don’t have a landscape, click New Landscape and choose a size. (Start with
2048or4096for a good balance of detail and performance).
Step 2: Select the Sculpt Tool
- On the left-hand panel, you’ll see a list of tools. Click Sculpt.
- You’ll see two main buttons: Raise and Lower.
- Raise: Pushes the ground up (creates mountains/hills).
- Lower: Pulls the ground down (creates valleys/ravines).
- Pro Tip: You can hold
Alt(or right-click) to temporarily switch between Raise and Lower without changing the tool.
Step 3: Adjust Your Brush (The "Controller" Settings)
Before you click, adjust these settings in the right-hand panel:
- Brush Size: Start big. If you’re making a mountain range, use a large brush. If you’re making a single rock, use a small one.
- Falloff: Set this to Spherical or Smooth. This ensures your hills look natural, not like a pyramid.
- Strength: This is how hard you press. Start at
0.5or50%. If you go to1.0(100%), you’ll likely break the terrain and create weird spikes.
Step 4: Sculpt Your First Hill
- Move your camera so you’re looking at the flat gray plane.
- Click and hold your left mouse button.
- Drag the mouse slightly. You’ll see the gray plane rise up.
- Keep dragging to build a mound.
- To smooth it out, switch to the Smooth tool (next to Sculpt) and drag over the peak. This blends the sharp points into a natural hill shape.
Step 5: Paint Your Texture
Now that you have a hill, it’s just gray. Let’s make it look like a Fortnite island.
- Switch from Sculpt to Paint in the left panel.
- Select a Material Layer (e.g., "Grass" or "Sand").
- Adjust your brush size again.
- Click and drag over your hill. The gray clay should turn into grass.
- Note: The order of your material layers matters. If you paint Grass on top of Dirt, you see Grass. If you paint Dirt on top of Grass, you see Dirt.
Why This Matters for Verse
When you write Verse code later, you’ll interact with this landscape. For example, you might want to:
- Spawn an explosion that actually deforms the terrain (requires knowing the landscape entity).
- Check if a player is standing on a "high ground" area (requires understanding the height data you just sculpted).
- Trigger an event when a player enters a "valley" (requires understanding the geometry).
You can’t code against a flat plane. You need the shape.
Try It Yourself
Challenge: Create a "Sniper’s Nest."
- Use the Sculpt tool to raise a tall, narrow pillar of terrain. Make it look like a natural rock formation, not a cylinder.
- Use the Smooth tool to round off the edges so it looks like weathered stone.
- Use the Paint tool to cover the top with "Rock" or "Snow" material.
- Place a sniper rifle on top.
Hint: Don’t just raise the ground in one spot. Use multiple clicks with a medium-sized brush, moving around the center point to create a rounded, organic shape. Use the Smooth tool heavily to hide the "pixels" of your sculpting.
Recap
- Landscape Mode is where you leave the box-placing behind and start shaping the world.
- Sculpt changes the height (geometry); Paint changes the look (texture).
- Brush Size and Falloff are your best friends. Soft falloff = natural terrain. Hard falloff = cartoonish spikes.
- The Landscape is a single Entity in the Scene Graph, making it efficient for the engine to render complex terrain.
Now go make some mountains. Your players (and your knees) will thank you.
References
- https://dev.epicgames.com/documentation/en-us/uefn/UE/building-worlds/landscape-outdoor-terrain/editing-landscapes/landscape-sculpt-mode/landscape-sculpt-tool
- https://dev.epicgames.com/documentation/en-us/fortnite/landscape-mode-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/sculpting-the-terrain-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/landscape-mode-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/UE/ue-reference-environments-and-landscapes-in-unreal-editor-for-fortnite
Turn this into a guided course
Add landscape-sculpt-tool to your free study plan — we'll suggest related pages and stitch the lot into one compile-checked, self-guided lesson with worked examples and quizzes.
References
Original tutorial generated by Verse Island from the Verse/UEFN knowledge base, with references to the Epic Games sources above. Code is validated against the knowledge base.