Hide Your Loot Before the Storm Hits: The Landscape Visibility Tool
Hide Your Loot Before the Storm Hits: The Landscape Visibility Tool
Look, we’ve all been there. You spend three hours building the perfect secret base, hiding it under a fake rock or inside a hollowed-out mountain. You think you’re clever. Then, a player with a sniper rifle and zero chill spots your base from a mile away because the terrain texture just didn’t quite match the surroundings. It’s not a bug; it’s a visibility problem.
In this tutorial, we’re ditching the complex coding for a second to master the Landscape Visibility Tool. This isn’t Verse code—it’s a core UEFN (Unreal Editor for Fortnite) sculpting tool. But think of it as the ultimate "stealth mode" for your terrain. We’re going to teach you how to paint your landscape so it blends seamlessly with the map, making your bases, traps, and loot drops invisible to anyone who doesn’t know exactly where to look.
What You'll Learn
- The Concept: Understanding why your terrain looks "fake" and how the Visibility Tool fixes it.
- The Mechanic: How to paint transparency onto the ground to hide props and geometry.
- The Build: Creating a "ghost base" where your loot crates and turrets vanish into the grass.
How It Works
The "Storm" Analogy for Visibility
Imagine the Storm in Fortnite. When the Storm hits, things disappear. But in Creative, you can’t just hit a button and make your enemy’s base vanish. You have to paint that disappearance.
Here’s the problem: When you place a building piece (like a wall or a loot crate) on the landscape, the game engine renders two things: the prop (the wall) and the ground (the landscape texture). If the ground texture doesn’t match what’s behind the prop, your brain screams "FAKE." It’s like putting a bright red sticker on a white wall. The sticker is visible, but the contrast makes the wall look weird.
The Landscape Visibility Tool lets you paint "holes" in the landscape. It tells the engine: "Don’t draw the grass here. Instead, draw what’s behind it."
If you paint over a rock, the rock disappears. If you paint over a wall, the wall disappears. This is how you hide your secret bunkers. You don’t delete the bunker; you just paint the ground around it so perfectly that the bunker looks like it’s part of the mountain.
Scene Graph & Layers (The "Why")
In Unreal Engine (and Verse’s future in UE6), everything is a Scene Graph. Think of the Scene Graph as a giant family tree of all the objects in your game.
- Root: The whole island.
- Parent: The Landscape.
- Child: The Grass Texture.
- Sibling: The Rock Prop.
Normally, the Rock is drawn on top of the Grass. The Visibility Tool changes the drawing order (or "z-depth") for that specific patch of grass. It tells the Grass layer to become transparent, allowing the background (sky, distant mountains, or just the next layer of the landscape) to show through.
Why Not Just Delete the Ground?
You could delete the landscape under your base, but then you’d have a floating island. Players would fall through. The Visibility Tool is superior because it maintains the collision (you can still walk on it) but hides the visual clutter. It’s the difference between deleting a wall and painting it the same color as the room.
Let's Build It
We are going to build a Stealth Loot Cave. We’ll place a loot crate in a cave entrance, and then use the Visibility Tool to make the cave entrance blend so well that the crate looks like it’s floating in mid-air or hidden inside the rock.
Note: This tutorial focuses on the Editor Tool, not Verse code. However, understanding how this tool manipulates the landscape is crucial for anyone wanting to write Verse scripts that interact with terrain later.
Step 1: Set Up Your Cave
- Open UEFN and load your island.
- Go to the Landscape mode.
- Use the Sculpt Tool to dig a small hole in the ground. Make it cave-like.
- Place a Loot Crate (or any prop) right at the entrance of the cave.
- Zoom out. Notice how the crate sticks out? It looks like a sticker. It’s visible.
Step 2: Activate the Visibility Tool
- In the Sculpt Mode toolbar, look for the Visibility icon. It usually looks like a brush with a checkerboard pattern (representing transparency).
- Click it to select.
- Your brush cursor will change.
Step 3: Paint the "Invisible" Zone
- Set your brush size to cover the area around the loot crate.
- Paint over the ground immediately around the crate.
- Watch what happens. The ground texture (grass/dirt) will fade away.
- If you painted over the crate, the crate would disappear too! Be careful. You only want to paint the ground around it, or the crate itself if you want it hidden.
Pro Tip: Use a low brush opacity (like 20-30%) and paint in layers. This gives you more control. It’s like applying makeup, not painting a wall.
Step 4: Blend with the Environment
- Now, look at the cave walls. Paint the visibility on the edges of the cave entrance.
- The goal is to make the transition from "cave" to "outside" seamless.
- If you have distant mountains, the visibility tool will let you see through the foreground terrain to the background mountains. This creates depth.
Why This Is Better Than Verse (For Now)
You might think, "Can’t I just write a Verse script to hide the crate?" Yes, but that’s overkill. Verse is for logic (what happens when you click, how much damage, etc.). The Visibility Tool is for presentation (how it looks). Using the right tool for the job is like using a shotgun for close combat and a sniper for long range. Don’t use a sniper to kill a guy in your kitchen.
Try It Yourself
Challenge: Build a "Ghost Ship."
- Place a large ship prop on the landscape.
- Use the Visibility Tool to paint the ground under the ship so it looks like it’s hovering.
- Add a small loot crate on the deck.
- Paint the visibility around the crate so it looks like it’s floating off the deck.
- Hint: Use a very small brush for the crate and a larger brush for the ship’s hull. If you paint too much, you’ll see the sky through the ship!
Recap
The Landscape Visibility Tool is your secret weapon for making terrain look real. It doesn’t delete objects; it hides the ground around them, creating seamless blends and hidden bases. Remember:
- Visibility = Transparency. It paints holes in the landscape texture.
- Use it for stealth. Hide loot, props, and base structures by blending them into the background.
- Layer it. Use low opacity for natural-looking fades.
Now go make some bases that even the snipers can’t spot.
References
- https://dev.epicgames.com/documentation/en-us/uefn/UE/building-virtual-worlds/landscape-outdoor-terrain/editing-landscapes/landscape-sculpt-mode/landscape-visibility-tool
- 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/fortnite/fortnite-tools-mode-in-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/31-00-release-notes-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/31.00-fortnite-ecosystem-updates-and-release-notes-in-creative-and-unreal-editor-for-fortnite
Turn this into a guided course
Add landscape-visibility-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.