The Art of the Hide: Designing Your Prop Hunt Island
The Art of the Hide: Designing Your Prop Hunt Island
So, you’ve got the logic down. You know how to spawn players, grant weapons, and track eliminations. But if you drop that code into a flat, gray concrete box, your island is going to be as boring as a zero-build lobby with no loot.
Designing your island isn’t just about aesthetics; it’s about gameplay integrity. In Prop Hunt, the map is the puzzle. If you don’t design your arena carefully, players will either camp in one corner forever or get stuck in geometry so bad they’ll think the game is broken.
In this tutorial, we’re going to stop thinking like programmers for a second and start thinking like level designers. We’ll cover how to build a functional arena, where to put the "pre-game lobby" (the bus ride equivalent), and how to make sure your props actually look like props.
What You'll Learn
- The Two-Zone Rule: Why every game needs a "Lobby" and an "Arena."
- Prefab Power: Using pre-built structures to save time.
- The Prop-O-Matic Problem: Why your custom meshes might not work (and how to fix it).
- Scene Graph Basics: Understanding where things live in the world so they don’t float into the sky.
How It Works
1. The Two-Zone Rule: Lobby vs. Arena
Think of your island like a match of Battle Royale. You have the Pre-Game Lobby (where you wait, chat, and get ready) and the Game Arena (where the actual action happens).
- The Lobby: This is where players spawn when they first join. It should be safe, spacious, and filled with decorative props that aren’t part of the game. If you put a toilet here, players will try to hide in it before the round even starts, which breaks the game.
- The Arena: This is the playground. This is where the "Hiders" hide and the "Seekers" hunt. This area needs to be dense with objects.
Pro Tip: You can design the arena before or after you set up your Verse devices. I recommend designing the map first, then placing your devices (like the Prop-O-Matic spawner) on top of it. It’s easier to find a good spot for a device if you can see the whole room.
2. Using Prefabs and Galleries
You don’t need to build every wall from scratch. UEFN has Prefabs (pre-made structures like houses, bridges, or rooms) and Galleries (collections of props like chairs, tables, and trash cans).
- Prefabs are like buying a pre-built house in a simulation game. You drop it down, and boom, you have a room.
- Galleries are like your loot pool. You drag and drop individual items to clutter up your arena.
3. The Prop-O-Matic & Static Meshes
Here’s a critical technical detail: The Prop-O-Matic weapon (the gun that lets hiders turn into objects) has a list of "official" Fortnite props it recognizes. If you drag in a random tree from the internet, the Prop-O-Matic might ignore it.
However, you can use any Static Mesh (a 3D object that doesn’t move on its own) as a prop. To make it work, you often need to mark it as a "Fortnite Prop" in the editor settings. This tells the game, "Hey, this chair is fair game for hiding!"
4. Scene Graph: Hierarchy Matters
In programming, we talk about variables and objects. In UEFN, everything is part of the Scene Graph. Think of the Scene Graph as a family tree for your island.
- The Parent: The root of your island.
- The Children: All the props, walls, and devices.
If you parent a chair to a moving platform, the chair moves with the platform. If you parent a wall to the floor, it stays put. Understanding this hierarchy prevents your props from floating in mid-air or sinking into the ground when you move things around.
Let's Build It
We aren’t writing Verse code here—we’re using the visual editor. But we are going to set up the structure so your Verse code can find it later.
Step 1: Set Up Your Island Settings
Before you place a single brick, you need to tell the game how many players can join.
- Open your project in UEFN.
- In the Outliner (the list of all devices on the left), find IslandSettings.
- In the Details Panel (on the right), look for User Options - Game Rules.
- Change Max Players to
16(or whatever you want). - Set Teams to
2(Hiders vs. Seekers).
Why this matters: If you don’t set this, your Verse code won’t know how to divide players into teams. It’s like trying to start a match without pressing "Start."
Step 2: Build the Lobby
- Go to the World Partition (the big gray area).
- Find a safe, flat spot.
- Drag in a Prefab (like a simple house or a walled courtyard).
- Add some Galleries props (benches, plants, signs) to make it look nice.
- Important: Do not add any props that players can hide in here. This is the "safe zone."
Step 3: Design the Arena
- Move to a different area of the map.
- Build or place a structure where you want the game to happen. It could be a warehouse, a mansion, or a park.
- Clutter it up! Use the Galleries tab to drag in dozens of props:
- Chairs
- Tables
- Trash cans
- Teddy bears
- Toilets (classic)
- Make sure there are plenty of hiding spots. If your arena is empty, Seekers will win in 3 seconds.
Step 4: Mark Your Props as "Fortnite Props"
This is the secret sauce.
- Select a prop in your arena (e.g., a chair).
- In the Details Panel, look for Actor settings.
- Find the option Is Fortnite Prop (or similar, depending on your version) and check it.
- Repeat for all props you want the Prop-O-Matic to recognize.
Note: If you don’t do this, the Prop-O-Matic might shoot the chair and nothing happens. The chair will just sit there, judging you.
Step 5: Place Your Spawn Points
Your Verse code will need to know where to put players.
- Place Player Start devices in your Lobby.
- Place Team Start devices in your Arena (one for Hiders, one for Seekers).
- Make sure these are visible in the Outliner so your Verse code can find them by name.
Try It Yourself
Challenge: Build a "Mini Arena" that is only 50x50 units wide. Fill it with at least 10 different props from the Gallery. Then, try to hide in three different spots and see if you can spot yourself from the Seeker’s perspective.
Hint: If you can’t spot yourself, your arena is too cluttered. If you spot yourself too easily, add more props. Balance is key.
Recap
- Lobby vs. Arena: Keep them separate. Lobby is for waiting; Arena is for hiding.
- Prefabs & Galleries: Use them to build fast and clutter your arena.
- Static Meshes: Mark your props as "Fortnite Props" so the Prop-O-Matic works.
- Island Settings: Set Max Players and Teams before you start coding.
Now that your island is ready, it’s time to bring it to life with Verse. In the next tutorial, we’ll set up the devices that actually start the round and grant the Prop-O-Matic. Until then, keep those toilets polished.
References
- https://dev.epicgames.com/documentation/en-us/fortnite/prop-hunt-07-designing-your-island-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/prop-hunt-01-creating-a-new-project-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/prop-hunt-template-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/verse-prop-hunt-template-7-designing-your-island-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/verse-prop-hunt-template-1-creating-a-new-project-in-unreal-editor-for-fortnite
Turn this into a guided course
Add prop-hunt-07-designing-your-island-in-unreal-editor-for-fortnite 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
- prop-hunt-07-designing-your-island-in-unreal-editor-for-fortnite ↗
- prop-hunt-01-creating-a-new-project-in-unreal-editor-for-fortnite ↗
- prop-hunt-template-in-unreal-editor-for-fortnite ↗
- verse-prop-hunt-template-7-designing-your-island-in-unreal-editor-for-fortnite ↗
- 1. Creating a New Project ↗
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.