Stop Building Flat Maps: How to Sculpt Your Own Fortnite Island with Landscape Manage Mode
Tutorial beginner

Stop Building Flat Maps: How to Sculpt Your Own Fortnite Island with Landscape Manage Mode

Updated beginner

Stop Building Flat Maps: How to Sculpt Your Own Fortnite Island with Landscape Manage Mode

Look, we’ve all been there. You spawn into your island, and it’s just… flat. Or worse, it’s the default grey blob that looks like a low-poly rock from 2012. You want hills? Valleys? A natural-looking drop-off for your snipers? You don’t need to manually stack thousands of walls to create a mountain (seriously, don’t do that; your frame rate will hate you).

You need Landscape Mode, specifically the Manage tab. Think of this as the "Base Map" of your island. Before you can paint grass or sculpt cliffs, you have to lay down the canvas. In this tutorial, we’re going to set up a proper terrain grid that’s large enough for a full match, shaped correctly, and ready for your chaos. No coding required yet—just pure, unadulterated terrain domination.

What You'll Learn

  • What Landscape Mode is and why it’s better than stacking props.
  • The difference between Manage (the blueprint) and Sculpt (the clay).
  • How to set up a Landscape Component so your island doesn’t vanish when you reload.
  • How to size your terrain to fit your game mode (duel vs. squad).

How It Works

In Fortnite Creative, the default island is just a giant, flat box. It works for a quick duel, but if you want a proper battle royale experience with cover, elevation, and natural flow, you need a Landscape.

Here’s the analogy: Imagine you’re building a fort.

  • Stacking Props is like building a wall out of individual bricks. You can do it, but it takes forever, and if you move one brick, the whole thing might look weird.
  • Landscape Mode is like having a giant sheet of high-quality clay. You stretch it, pull it, and smooth it out. It’s one continuous piece of geometry.

Landscape Mode in UEFN has two main tabs you’ll care about:

  1. Manage: This is where you define the rules of your terrain. How big is it? Where does it sit? What’s its resolution? Think of this as setting the size of your battle bus flight path before the game starts. It’s a one-time setup.
  2. Sculpt: This is where you actually change the height. You raise mountains, dig trenches, and smooth out valleys.

We are focusing on Manage because if you skip this step, you’re trying to sculpt air. You need to tell the engine, "I want a 4km x 4km piece of land," before it lets you touch the dirt.

Key Concept: The Landscape Component

In UEFN, a Landscape isn’t just a magic layer; it’s an Actor (a game object) in the scene. When you create a new landscape, you are creating a specific object in your world hierarchy. If you don’t set it up right in Manage mode, your terrain might be too small, too low-res (pixelated hills), or not anchored correctly to the map origin.

Let's Build It

We’re going to create a "Mid-Size Battle Royale" terrain. Not too huge (which takes forever to edit), not too small (which feels cramped). We’ll set it up to cover a standard 2048x2048 unit area, which is the sweet spot for most custom islands.

Step 1: Open Landscape Mode

  1. In the top toolbar of UEFN, look for the Mode dropdown (usually says "Transform" or "Place").
  2. Select Landscape.
  3. You’ll see a new panel appear on the left side of the screen with tabs: Manage, Sculpt, Paint, etc.

Step 2: The Manage Tab Setup

Click the Manage tab. This is your command center. You’ll see a button that says New. Click it.

A dialog box will pop up. This is where we configure our terrain’s "stats."

  • Component Size: This defines the physical size of your terrain in Unreal Units (meters).

    • Game Analogy: Think of this as the Zone Size. If you set this too small, the storm closes in too fast. If it’s too big, you’ll never reach the center.
    • Recommendation: For a standard island, set this to 2048. This gives you a 2km x 2km square of playable land. It’s big enough for squads, small enough to edit without crying.
  • Section Size: This controls the resolution.

    • Game Analogy: This is your Graphics Quality. Higher section size = smoother hills but more lag. Lower section size = blocky, pixelated mountains.
    • Recommendation: Set this to 513. This is the standard balance. It allows for detailed sculpting without melting your GPU.
  • Spline Component Size: Leave this default (usually 65).

    • Note: Splines are for roads and fences. We’ll get to those later.
  • Origin Offset: This is where the center of your landscape sits on the map.

    • Recommendation: Keep it at 0, 0. This anchors your terrain to the center of the map. If you move this, your whole island shifts away from the default spawn points, which can cause spawning glitches if you’re not careful.

Step 3: Apply and Verify

Click OK.

You should now see a large, grey grid appear in your viewport. That’s your raw, un-sculpted terrain. It’s flat, but it’s there.

Pro Tip: If you don’t see it, press F to focus your camera on the selected landscape component. If it’s still invisible, check the Outliner (the list of all objects in your scene) and make sure the new Landscape Actor is visible (the eye icon is open).

Step 4: Why This Matters for Verse (Coming Soon)

You might be thinking, "I’m here for Verse, not dirt." But hear me out. When we eventually write Verse code to detect if a player is "on a hill" or "in a valley," the engine needs a defined terrain to calculate that. A Landscape Component provides the Heightmap (a grid of height data) that Verse can read. If you skip Manage mode, you have no heightmap. No heightmap = no elevation logic = your "high ground advantage" script does nothing.

Let's Build It: The Code View

While Manage mode is mostly UI-based, understanding how the Landscape is represented in the Scene Graph helps you manage it. In Verse, a Landscape is an Actor.

Here’s a conceptual look at how you’d reference it in Verse (we won’t run this yet, but it shows the structure):

# This is a simplified example of how a Landscape is treated in the scene graph.
# In Manage mode, you created an Actor. In Verse, you find that Actor.

using { /Fortnite.com/Devices }
using { /Verse.org/Simulation }

# We define a struct to hold our landscape settings
# Think of this like a "Loadout" for your terrain
struct TerrainSettings {
    ComponentSize: int = 2048
    SectionSize: int = 513
}

# When you create a Landscape in Manage mode, UEFN generates an Actor.
# To interact with it in Verse, you'd typically get a reference to it.
# For now, just know: The grey grid you see IS the Actor.

# Example: Getting the landscape component (pseudo-code for understanding)
# landscape_actor := GetLandscapeActor() 
# height_at_position := landscape_actor.GetHeight(Vector2{X:100, Y:100})

# The key takeaway: Manage mode sets the Actor's properties.
# Verse reads those properties.

Walkthrough of the Setup:

  1. ComponentSize: 2048: This matches the setting you picked in the Manage dialog. It tells the engine, "This terrain object is 2048 units wide."
  2. SectionSize: 513: This determines the resolution. In Verse, when you ask for height data, the engine interpolates between these sections. Higher section size = more accurate height checks, but more memory usage.
  3. The Actor: The grey grid in your viewport is the physical manifestation of this data. If you move the Actor in the Outliner, the whole terrain moves.

Try It Yourself

Challenge: Create a "Tiny Island" for a 1v1 Duel map.

  1. Open Landscape Mode -> Manage.
  2. Create a New Landscape.
  3. Change the Component Size to 256.
  4. Change the Section Size to 33.
  5. Click OK.

What to look for:

  • Compare the size of your new tiny landscape to the default flat box.
  • Try to Sculpt it. Notice how blocky the hills look? That’s because of the low Section Size (33).
  • Now, delete it, create a new one with Component Size: 1024 and Section Size: 257, and sculpt again. Notice the difference in smoothness?

Hint: If your tiny landscape is too small to see, zoom out in the viewport. You might need to press F to focus on it again.

Recap

  • Landscape Mode is your terrain editor. Manage is for setup, Sculpt is for shaping.
  • Component Size controls how big your island is. Section Size controls how smooth the hills are.
  • Always set up your Landscape in Manage mode first. It creates the Actor that Verse and the engine need to calculate height, collisions, and visibility.
  • Don’t stack walls for mountains. Use Landscape. Your frame rate will thank you.

Now that you have a proper terrain, you can start sculpting actual hills in the next step. But remember: no terrain, no game. You just built the stage. Now go make it interesting.

References

  • https://dev.epicgames.com/documentation/en-us/uefn/UE/building-virtual-worlds/landscape-outdoor-terrain/editing-landscapes/landscape-manage-mode
  • https://dev.epicgames.com/documentation/en-us/uefn/landscape-mode-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/landscape-mode-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/fortnite/38-10-fortnite-ecosystem-updates-and-release-notes
  • https://dev.epicgames.com/documentation/en-us/uefn/UE/ue-reference-environments-and-landscapes-in-unreal-editor-for-fortnite

Verse source files

Turn this into a guided course

Add landscape-manage-mode 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.

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.

Comments

    Sign in to vote, comment, or suggest an edit. Sign in