Stop Building Half the Map: The Landscape Mirror Tool
Tutorial beginner

Stop Building Half the Map: The Landscape Mirror Tool

Updated beginner

Stop Building Half the Map: The Landscape Mirror Tool

Let’s be real: sculpting a mountain range from scratch is like trying to win a 1v4 clutch while blindfolded. It’s tedious, it’s exhausting, and if you mess up the left side of your island, you now have to manually fix the right side. That’s not building; that’s punishment.

Enter the Landscape Mirror Tool. It’s the ultimate "copy-paste with a twist" button for your terrain. Instead of spending hours making a hill, a cliff, and a valley on one side of your map, you sculpt it once, hit a few buttons, and boom—symmetrical perfection on the other side. It’s like having a twin that does all the hard work for you.

What You'll Learn

  • How to use the Mirror Tool to duplicate terrain features instantly.
  • The difference between a Mirror Point (the axis) and an Operation (the direction).
  • How Smoothing Width prevents your terrain from looking like two separate puzzles smashed together.
  • Why you should never manually sculpt perfect symmetry again.

How It Works

Think of your island as a sheet of paper. If you fold it perfectly in half and paint on one side, the paint bleeds through to the other. The Landscape Mirror Tool does exactly this, but digitally, without the ink mess.

Here is the breakdown of the controls, translated from "Engine Speak" to "Builder Speak":

1. The Mirror Point (The Fold Line)

This is an invisible line running through the center of your landscape. By default, it sits right in the middle of your map.

  • Game Analogy: Imagine a line drawn down the middle of your island. If you’re sculpting a river, the Mirror Point is the bank. Whatever you do on the left bank gets copied to the right bank.
  • Recenter: If you accidentally move this line to the left, click Recenter to snap it back to the exact center of your map. It’s the "Undo" for your axis.

2. The Operation (The Flip)

This is where the magic happens. You don’t just copy; you flip.

  • Minus X to Plus X: This takes everything on the Left (negative X) and flips it over to the Right (positive X).
  • Plus X to Minus X: This takes everything on the Right and flips it to the Left.
  • Game Analogy: Think of this like editing a wall. If you build a ramp on the left, the "Operation" tells the engine to build a mirrored ramp on the right. It’s like looking in a mirror—your left hand becomes the right hand’s reflection.

3. Smoothing Width (The Glue)

If you just copy-paste two halves of a mountain, there might be a tiny ridge or gap right down the middle where they meet. It’ll look like a zipper.

  • What it is: A number that tells the engine how many "vertices" (tiny points on the mesh) to blend together across the mirror line.
  • Game Analogy: Think of it like healing. If the two sides of the mountain are "hurt" (disconnected or jagged) where they meet, the Smoothing Width applies a "healing potion" to blend them into one smooth surface. Higher number = smoother blend, but less precision at the exact center.

4. Apply (The Commit)

Nothing happens until you click Apply. It’s like holding your breath before you jump off the bus. You sculpt, you preview, but the terrain doesn’t actually change until you hit that button.

Let's Build It

We’re going to create a symmetrical "Twin Peaks" island. You’ll sculpt one peak, mirror it, and have a perfect mountain range in seconds.

Step 1: Set the Stage

  1. Open your Island in UEFN.
  2. Go to Landscape Mode (the mountain icon in the top toolbar).
  3. Make sure your Landscape is selected.

Step 2: Sculpt One Side

  1. Select the Sculpt Tool (the brush icon).
  2. Draw a nice, jagged mountain on the Left side of your map (the negative X side). Don’t worry about the right side yet. Let it look messy. Let it look ugly. We’ll fix it.

Step 3: Activate Mirror

  1. In the Landscape Mode toolbar, look for the Mirror button. It usually looks like two triangles facing each other or a split screen icon. Click it.
  2. You’ll see a new panel appear with the settings we discussed.

Step 4: Configure the Mirror

  • Mirror Point: Leave it at the default (center). If your mountain is super off-center, you might need to move this, but for now, center is king.
  • Operation: Select "Minus X to Plus X". This means "Take my left-side mountain and paste it on the right, flipped."
  • Smoothing Width: Set this to 5 or 10. This will ensure the middle of the mountain range doesn’t have a weird crack.

Step 5: Apply and Enjoy

  1. Click Apply.
  2. Watch in awe as the engine instantly generates a perfect, mirrored mountain on the right side.
  3. Now, if you want to tweak the left peak, just sculpt it again and hit Apply. The right side updates automatically.

The Verse Connection: Why This Matters for Coding

You might be thinking, "I’m here to learn Verse, not sculpt rocks." But listen up: Symmetry is data efficiency.

In Verse, when you’re dealing with the Scene Graph (the hierarchy of all objects in your world), duplicated assets eat up memory. If you manually place 100 trees on the left and 100 on the right, you have 200 unique objects. If you use symmetry logic in your code (which mirrors the Landscape Mirror Tool conceptually), you can treat the right side as a "reflection" of the left.

While the Landscape Mirror Tool is an editor feature, the concept is pure Verse logic: Define once, render twice. When you write Verse code that spawns enemies or loot, you’ll use variables to calculate positions. Instead of writing SpawnEnemyAt(100, 0) and SpawnEnemyAt(-100, 0), you’ll learn to use a variable like X_Position and multiply it by -1 to mirror it. The Landscape Mirror Tool is the visual precursor to that coding mindset.

Try It Yourself

Challenge: The "Twin Lakes" Trap.

  1. Sculpt a small, circular pit (a lake bed) on the Left side of your map.
  2. Use the Mirror Tool (Minus X to Plus X) to create a second lake on the Right.
  3. Now, use the Smooth Tool on the left lake to make it look more natural and jagged.
  4. Hit Apply.

Question: Did the right lake change?

  • Yes? Good. You’re using Mirror correctly.
  • No? Did you forget to click Apply after smoothing the left side? Or did you switch the Operation to "Plus X to Minus X"?

Hint: If you want to add a third lake in the exact center, you can’t use the mirror tool for that. You’ll have to sculpt it manually. The mirror tool only handles pairs. Think of it like a duo queue—you can’t solo queue into a mirror operation.

Recap

  • The Landscape Mirror Tool lets you sculpt one side of your terrain and automatically generate the other side.
  • Mirror Point is the axis line; Operation is the direction (Left to Right, or Right to Left).
  • Smoothing Width blends the two sides together so they don’t look like they were glued.
  • This tool saves hours of work and teaches you the fundamental coding concept of symmetry and variable flipping, which you’ll use heavily in Verse.

References

  • https://dev.epicgames.com/documentation/en-us/uefn/UE/ue-reference-environments-and-landscapes-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/fortnite/landscape-mode-in-unreal-editor-for-fortnite
  • https://dev.epicgames.com/documentation/en-us/uefn/UE/building-virtual-worlds/landscape-outdoor-terrain/editing-landscapes/landscape-sculpt-mode/landscape-mirror
  • https://dev.epicgames.com/documentation/en-us/fortnite/36-00-fortnite-ecosystem-updates-and-release-notes

Turn this into a guided course

Add Landscape Mirror 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.

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