Make Your Island Glow Up: The Main Material Node
Make Your Island Glow Up: The Main Material Node
Ever walk onto your island and see a prop that looks like it was rendered in 2012? Yeah, we’ve all been there. It’s flat, boring, and frankly, it’s embarrassing. But what if you could make that chest pulse with neon energy, or turn the ground into a shimmering pool of lava without writing a single line of complex code?
In this tutorial, we’re going to talk about the Main Material Node. Think of this node as the "skin" of any 3D object in your island. It’s the difference between a cardboard cutout and a living, breathing part of your game world. By the end of this, you’ll know how to change colors, make things transparent, and make objects glow like they’re powered by pure chaos.
What You'll Learn
- What the Main Material Node is: The master control for how an object looks.
- Material Domain: Choosing whether your skin is for a player’s face (UI) or a rock on the ground (World).
- Blend Mode: How to handle transparency (making things see-through or glowing).
- Shading Model: How light interacts with your object (is it shiny, matte, or just... there?).
How It Works
To understand the Main Material Node, you have to stop thinking of objects as solid blocks of geometry and start thinking of them as layers of information.
In Fortnite, every prop, wall, or landscape tile has a "look." That look is defined by a Material. You can think of a Material like a custom skin in the Item Shop. You can take the same base character model (the geometry) and slap a "Galileo" skin on it, or a "Renegade Raider" skin on it. The shape doesn’t change, but the look does completely.
The Main Material Node is the root of that skin. It’s the top-level settings that tell the game engine: "Hey, this isn’t just a gray box. This is a shiny, red, semi-transparent cube that glows when people get close."
The Three Big Settings
When you open the details for a Main Material Node, you’ll see a few settings that matter more than anything else. Let’s break them down using Fortnite mechanics.
1. Material Domain (The "Where" Setting)
This tells the engine where this material will live. It’s like choosing between a Land Claim and a UI Widget.
- World: This is for everything in the 3D game world. Rocks, trees, walls, the storm barrier. If you’re making a prop that players can walk on, this is your setting.
- User Interface (UI): This is for HUD elements, buttons, and images that float on top of the screen. If you’re making a custom health bar or a menu button, you switch this to UI.
- Why it matters: If you try to use a UI material on a rock, the rock will disappear or look broken because the engine is trying to render it like a 2D sticker on your screen.
2. Blend Mode (The "See-Through" Setting)
This controls transparency. It’s the difference between a Solid Wall and a Ghost Trap.
- Opaque: Nothing goes through. It’s like a brick wall. You can’t see behind it.
- Masked: This is your classic "cutout" transparency. Think of a fence or a chain-link fence. You can see through the holes, but the metal bars are solid. It’s binary: you’re either there, or you’re not.
- Translucent: This is smooth transparency. Think of glass, water, or a health potion. You can see through it, and light bends through it. It’s also required for glowing effects. If you want something to emit light (like a neon sign), you almost always need Translucent.
3. Shading Model (The "Light" Setting)
This tells the engine how to react to light sources. It’s the difference between a Lantern and a Lava Floor.
- Standard: This is the default. It reacts to light realistically. A metal ball will have highlights; a rock will look rough. Use this for 90% of your props.
- Unlit: This ignores light entirely. It looks the same bright color whether it’s noon or midnight in the storm. This is perfect for UI elements or glowing effects (like firework trails or neon signs) where you want the object to shine regardless of the environment.
Let's Build It
We’re going to create a simple "Glowing Beacon." Imagine you’re building a battle royale map and you want a marker that players can see from a mile away. It needs to glow, it needs to be semi-transparent, and it needs to ignore the dark storm so it stays visible.
Here is how you set this up in the UEFN Material Editor.
Step 1: Create the Material
- In the Content Browser, right-click and select New Material. Name it
Mat_GlowingBeacon. - Double-click it to open the Material Editor.
Step 2: Configure the Main Material Node
Click on the Main Material Node (it’s usually already there, looking like a big square with inputs). In the Details Panel on the right, change these settings:
- Material Domain: Set to World. (We’re making a 3D object, not a UI button).
- Blend Mode: Set to Translucent. (We want it to look like energy, not solid plastic).
- Shading Model: Set to Unlit. (We want it to glow even in the dark storm).
Step 3: Add the Glow (The "Emissive" Trick)
Now we need to actually make it glow. In Unreal/Verse materials, "glow" is usually handled by the Emissive Color.
- Search for a Constant3Vector node in the node graph.
- Set its value to
(1, 0, 1)— that’s bright purple. - Drag a wire from the RGB output of the Constant3Vector node to the Emissive Color input on the Main Material Node.
Wait, why Emissive? Think of Emissive Color like the screen brightness on your phone. Even if the room is dark, the screen is bright. By plugging into Emissive, we’re telling the engine: "This part of the object generates its own light."
Step 4: Add Transparency (The "Opacity" Trick)
Right now, your beacon is a solid purple block. Let’s make it look like pure energy.
- Search for a Constant node (just one number, not RGB).
- Set its value to
0.5. (0 is invisible, 1 is solid). - Drag a wire from the R output (or just the single output) of the Constant node to the Opacity input on the Main Material Node.
Now, your beacon is a semi-transparent, glowing purple block that will shine even in the darkest parts of the map.
Step 5: Apply It
- Click Apply and Save in the Material Editor.
- Go back to your level. Place a Sphere or a Capsule prop.
- In the Details panel for that prop, find the Material slot.
- Drag your
Mat_GlowingBeaconfrom the content browser into that slot.
Boom. You’ve just made a prop that defies the lighting engine. It’s visible, it’s cool, and it doesn’t care if the storm is closing in.
Try It Yourself
Now that you have a glowing beacon, let’s make it dynamic.
Challenge: Modify your Mat_GlowingBeacon so that it pulses. You want the glow to get brighter and dimmer, like a heartbeat.
Hint: You’ll need to introduce a Time node (which gives you the current game time) and a Sine node (which creates a smooth up-and-down wave). Plug the output of the Sine node into the Emissive Color input, but you’ll need to adjust the values so it doesn’t go negative (which breaks materials).
Don’t worry if it looks weird at first—materials are like recipes; sometimes you just need to tweak the salt.
Recap
- The Main Material Node is the master control for how an object looks.
- Material Domain decides if your material is for the 3D world or the 2D UI.
- Blend Mode controls transparency: Opaque (solid), Masked (cutouts), or Translucent (smooth/transparent).
- Shading Model controls light interaction: Standard (reacts to light) or Unlit (emits its own light).
- To make things glow, use Unlit shading and plug colors into Emissive Color.
References
- https://dev.epicgames.com/documentation/en-us/fortnite/create-light-effects-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/material-assets-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/uefn/editing-landscape-material-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/editing-landscape-material-in-unreal-editor-for-fortnite
- https://dev.epicgames.com/documentation/en-us/fortnite/creating-fireworks-1-create-the-firework-material-and-niagara-emitter-in-unreal-editor-for-fortnite
Turn this into a guided course
Add Using the Main Material Node 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.